diff --git a/backend/port_sentiment_info_to_parsed_courses.py b/backend/port_sentiment_info_to_parsed_courses.py new file mode 100644 index 000000000..85815fb80 --- /dev/null +++ b/backend/port_sentiment_info_to_parsed_courses.py @@ -0,0 +1,134 @@ +import os +import json +import argparse +import subprocess +import os +import json +import shutil + +""" +This file runs sentiment classification on CourseTable data as follows: + +Args +- target_data_path: Path to the desired folder containing .json files for courses that must be updated with sentiment analysis resulst from specified years +- sentiment_data_path: Path to folder containing .json files equipped with sentiment analysis results +- years_to_port: List containing integers representing what years of sentiment info to include in the given .json files for parsed courses + +Processing +- Consider each .json file in 'data_path' +- For each item (representing a single course) in the .json: + - Retrieve the relevant course evaluation files for the year(s) specified + - Store result as a new field(s) in the json course_objectect + +Result +- Updated .json files with new sentiment field for each course's json course_objectect, written in-place. + +Notes +- This file assumes sentiment_classification.py has already been run on the course evaluation data. +""" + +# Main function to loop over all JSON course_objectects for the given year +def main(args): + + # Look at all parsed course files + for filename in os.listdir(args.target_data_path): + # import ipdb; ipdb.set_trace() + + # Consider each file for the relevant years & load + if filename.endswith(".json") and int(filename[:4]) in args.years_to_port: + print("On year", filename) + + season_file_path = os.path.join(args.target_data_path, filename) + with open(season_file_path, 'r') as f: + season_course = json.load(f) + + # Consider each course in the relevant year/season + count = 0 + for course_object in season_course: + reviews_missing = True + + season_code = course_object.get("season_code", "") + crns = course_object.get("crns") + count += 1 + + # Identify the CRN of the course + for crn in crns: + print(f"On: {season_code}-{crn} / index {count}") + + # Inspect if there are any json entries for that course in the specified season + grep_cmd = f"ls {args.sentiment_data_path} | grep {season_code}-{crn}" + try: # if so, write the sentiment data to the file + grep_output = subprocess.check_output(grep_cmd, shell=True).decode().strip().split("\n") + season_filename = grep_output[0] + sentiment_file_path = os.path.join(args.sentiment_data_path, season_filename) + with open(sentiment_file_path, 'r') as sentiment_file: + sentiment_json = json.load(sentiment_file) + course_object["sentiment_info"] = sentiment_json["sentiment_info"] + print(f"Finished {season_code}-{crn}") + reviews_missing = False + break + except: # if no matches found, continue + continue + if reviews_missing: + course_object["sentiment_info"] = { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } + + with open(season_file_path, 'w') as f: + json.dump(season_course, f, indent=4) + + +############################################################ +############ RUN SENTIMENT CLASSIFICATION HERE ############# +############################################################ + +if __name__ == "__main__": + + parser = argparse.ArgumentParser() + + # Specify the folder path where JSON files are located + parser.add_argument("--target_data_path", + type=str, + default="data/parsed_courses", + help="Folder where the .json files that need sentiment info copied over are located.") + + parser.add_argument("--sentiment_data_path", + type=str, + default="data/course_evals", + help="Folder where the .json files with sentiment info are located.") + + parser.add_argument("--years_to_port", + nargs="*", # 0 or more values expected => creates a list + type=int, + default = [2023], # other options: YC401, YC403 + help="Specify what years of sentiment info to include in the parsed course data .json files.") + + args = parser.parse_args() + + main(args) + diff --git a/data/.gitignore b/data/.gitignore index 4a9744124..24ad47927 100644 --- a/data/.gitignore +++ b/data/.gitignore @@ -2,5 +2,4 @@ data/course_embeddings/ data/course_json_cache/ data/demand_stats/ -data/season_courses/ -data/parsed_courses/ \ No newline at end of file +data/season_courses/ \ No newline at end of file diff --git a/data/parsed_courses/202301.json b/data/parsed_courses/202301.json index 4a0e8c14b..4aa556f05 100644 --- a/data/parsed_courses/202301.json +++ b/data/parsed_courses/202301.json @@ -35,7 +35,7 @@ "9:00", "10:15", "WALL81 201 - 81 Wall Street 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ], "Thursday": [ @@ -43,7 +43,7 @@ "9:00", "10:15", "WALL81 201 - 81 Wall Street 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -54,17 +54,148 @@ "Hu" ], "flags": [ - "YC English: 20th\/21st Century" + "YC English: 20th/21st Century" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85693\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85693/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986006617546082, + 0.9987785220146179, + 0.9988621473312378, + 0.9988322854042053, + 0.9982118606567383, + 0.9988395571708679, + 0.9861804842948914, + 0.9986314177513123, + 0.9987465143203735, + 0.9988929629325867, + 0.9989351630210876 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988524913787842, + 0.9987836480140686, + 0.9978904128074646, + 0.9989093542098999, + 0.998837411403656, + 0.9989245533943176, + 0.9988868832588196, + 0.9986953139305115, + 0.998927652835846, + 0.9989042282104492, + 0.9988539218902588 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989150762557983, + 0.9988399147987366, + 0.9981381893157959, + 0.9984466433525085, + 0.9989060163497925, + 0.9989049434661865, + 0.9988247752189636, + 0.9988698363304138, + 0.9988956451416016, + 0.998932421207428, + 0.9989375472068787 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 33, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 33 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -109,7 +240,35 @@ "syllabus_url": "", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -146,7 +305,7 @@ "13:00", "14:15", "HQ 133 - Humanities Quadrangle 133", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -154,7 +313,7 @@ "13:00", "14:15", "HQ 133 - Humanities Quadrangle 133", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -168,10 +327,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83276\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83276/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -203,7 +390,7 @@ "16:00", "16:50", "HQ 209 - Humanities Quadrangle 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -222,7 +409,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -260,7 +475,7 @@ "14:30", "15:20", "LC 102 - Linsly-Chittenden Hall 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -268,7 +483,7 @@ "14:30", "15:20", "LC 102 - Linsly-Chittenden Hall 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -284,10 +499,321 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84147\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84147/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986913800239563, + 0.9986904263496399, + 0.9987797141075134, + 0.998854398727417, + 0.9988725781440735, + 0.998903751373291, + 0.9987421631813049, + 0.9988934397697449, + 0.9988289475440979, + 0.9985400438308716, + 0.9986283779144287, + 0.9988020658493042, + 0.9987558126449585, + 0.9986885190010071, + 0.998813271522522, + 0.9987174272537231, + 0.9987516403198242, + 0.8490079045295715, + 0.9988856911659241, + 0.9988844990730286, + 0.9988133907318115, + 0.998935878276825, + 0.9988085031509399, + 0.9987151622772217, + 0.9986936450004578, + 0.9988887906074524, + 0.9987313151359558, + 0.997093915939331, + 0.9988958835601807, + 0.9900445938110352, + 0.9989199638366699, + 0.9988301396369934, + 0.9988982677459717, + 0.9988898634910583, + 0.9986876845359802, + 0.9986883997917175, + 0.9989290833473206, + 0.9986760020256042, + 0.970655083656311, + 0.9989155530929565 + ], + "sentiment_counts": { + "POSITIVE": 38, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.95, + "NEGATIVE": 0.05 + }, + "sentiment_overall": [ + "POSITIVE", + 0.95 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989155530929565, + 0.9989047050476074, + 0.9988481998443604, + 0.9989181756973267, + 0.9987902045249939, + 0.9989309906959534, + 0.9989109039306641, + 0.9756149053573608, + 0.9989312291145325, + 0.9977986216545105, + 0.9988996982574463, + 0.9989299178123474, + 0.9988743662834167, + 0.9989354014396667, + 0.9980315566062927, + 0.9987574815750122, + 0.9977694749832153, + 0.9988327622413635, + 0.9989213943481445, + 0.9989134073257446, + 0.9989190101623535, + 0.9985322952270508, + 0.9988942742347717, + 0.9988683462142944, + 0.9983951449394226, + 0.9989210367202759, + 0.998908519744873, + 0.9989258646965027, + 0.9988771080970764, + 0.9989370703697205, + 0.9988235831260681, + 0.9987289309501648, + 0.9984416365623474, + 0.9988263249397278, + 0.9981259703636169, + 0.9940698146820068 + ], + "sentiment_counts": { + "POSITIVE": 36, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988334774971008, + 0.9989014863967896, + 0.9988974332809448, + 0.9988797307014465, + 0.9987371563911438, + 0.9988866448402405, + 0.9987863898277283, + 0.9989109039306641, + 0.9989062547683716, + 0.9985590577125549, + 0.998900294303894, + 0.9988014698028564, + 0.9988897442817688, + 0.9989005327224731, + 0.9989374279975891, + 0.9988834261894226, + 0.9988207221031189, + 0.9988640546798706, + 0.9989126920700073, + 0.9986893534660339, + 0.9983124732971191, + 0.998857855796814, + 0.998906135559082, + 0.9989317059516907, + 0.9966038465499878, + 0.9989309906959534, + 0.9989216327667236, + 0.9988331198692322, + 0.9989187717437744, + 0.9988582134246826, + 0.9989032745361328, + 0.9988841414451599, + 0.9981436729431152, + 0.9989232420921326, + 0.9988061189651489, + 0.9989045858383179, + 0.998921275138855, + 0.9989157915115356, + 0.998854398727417, + 0.9988805651664734, + 0.998906135559082, + 0.9989325404167175, + 0.9989205598831177, + 0.9988501071929932, + 0.9986504912376404, + 0.9988605976104736 + ], + "sentiment_counts": { + "POSITIVE": 46, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 120, + "final_proportion": 0.9836065573770492, + "final_counts": { + "POSITIVE": 120, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9836065573770492, + "NEGATIVE": 0.01639344262295082 + } + } }, { "season_code": "202301", @@ -319,7 +845,7 @@ "16:00", "16:50", "HQ 213 - Humanities Quadrangle 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -338,7 +864,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -370,7 +924,7 @@ "16:30", "17:20", "WALL53 208 - 53 Wall Street 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/559554" + "https://map.yale.edu/?id=1910#!m/559554" ] ] }, @@ -389,7 +943,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -421,7 +1003,7 @@ "9:25", "10:15", "HQ C65 - Humanities Quadrangle C65", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -440,7 +1022,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -472,7 +1082,7 @@ "10:30", "11:20", "HQ 313 - Humanities Quadrangle 313", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -491,7 +1101,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -523,7 +1161,7 @@ "13:30", "14:20", "WLH 007 - William L. Harkness Hall 007", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -542,7 +1180,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -574,7 +1240,7 @@ "16:00", "16:50", "WALL81 101 - 81 Wall Street 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -593,7 +1259,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -632,7 +1326,7 @@ "10:30", "11:20", "WALL53 AUD - 53 Wall Street AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/559554" + "https://map.yale.edu/?id=1910#!m/559554" ] ], "Thursday": [ @@ -640,7 +1334,7 @@ "10:30", "11:20", "WALL53 AUD - 53 Wall Street AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/559554" + "https://map.yale.edu/?id=1910#!m/559554" ] ] }, @@ -661,10 +1355,279 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83787\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83787/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989020824432373, + 0.9982200264930725, + 0.9979315996170044, + 0.9984152317047119, + 0.9988815188407898, + 0.9987626075744629, + 0.9985306262969971, + 0.9980157613754272, + 0.9978541731834412, + 0.9986346364021301, + 0.9989012479782104, + 0.9835135340690613, + 0.9984681010246277, + 0.9987140893936157, + 0.998831570148468, + 0.9977523684501648, + 0.9949361085891724, + 0.998715877532959, + 0.9978220462799072, + 0.9986718893051147, + 0.998816728591919, + 0.9981309771537781, + 0.9987673759460449, + 0.9988505840301514, + 0.9984118938446045, + 0.9987666606903076, + 0.998783528804779, + 0.9983091354370117, + 0.9986559152603149, + 0.9988646507263184 + ], + "sentiment_counts": { + "POSITIVE": 28, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.9333333333333333, + "NEGATIVE": 0.06666666666666667 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9333333333333333 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9990130662918091, + 0.999504566192627, + 0.9984152317047119, + 0.9995008707046509, + 0.9986315369606018, + 0.998721182346344, + 0.9991198182106018, + 0.9989039897918701, + 0.996553897857666, + 0.9977604150772095, + 0.9988743662834167, + 0.9989368319511414, + 0.9988803267478943, + 0.9985742568969727, + 0.9985694885253906, + 0.9876213669776917, + 0.9899699091911316, + 0.9988962411880493, + 0.9989005327224731, + 0.9995015859603882, + 0.9988722205162048, + 0.998909592628479, + 0.9988873600959778, + 0.9966509938240051, + 0.9994663596153259, + 0.9987519979476929, + 0.996585488319397, + 0.9985295534133911, + 0.9986647367477417, + 0.999500036239624, + 0.9939508438110352, + 0.9982873797416687 + ], + "sentiment_counts": { + "NEGATIVE": 15, + "POSITIVE": 17 + }, + "sentiment_distribution": { + "NEGATIVE": 0.46875, + "POSITIVE": 0.53125 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989180564880371, + 0.9966559410095215, + 0.9995113611221313, + 0.997117280960083, + 0.9984152317047119, + 0.9995068311691284, + 0.9974791407585144, + 0.9988237023353577, + 0.9994764924049377, + 0.9980016350746155, + 0.9988163709640503, + 0.9857620000839233, + 0.9974468946456909, + 0.997117280960083, + 0.9982800483703613, + 0.9988102912902832, + 0.9988534450531006, + 0.9987898468971252, + 0.9989326596260071, + 0.9974592328071594, + 0.9987229704856873, + 0.9989144802093506, + 0.9982049465179443, + 0.9993675351142883, + 0.9961845278739929, + 0.9989049434661865, + 0.9986286163330078, + 0.9989244341850281, + 0.999467670917511, + 0.997117280960083, + 0.9979928731918335, + 0.9963659048080444, + 0.9984989166259766, + 0.9955228567123413, + 0.998916745185852, + 0.998801589012146, + 0.999512791633606, + 0.9980016350746155, + 0.9975739121437073 + ], + "sentiment_counts": { + "POSITIVE": 25, + "NEGATIVE": 14 + }, + "sentiment_distribution": { + "POSITIVE": 0.6410256410256411, + "NEGATIVE": 0.358974358974359 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6410256410256411 + ] + }, + "final_label": "POSITIVE", + "final_count": 70, + "final_proportion": 0.693069306930693, + "final_counts": { + "POSITIVE": 70, + "NEGATIVE": 31 + }, + "final_distribution": { + "POSITIVE": 0.693069306930693, + "NEGATIVE": 0.3069306930693069 + } + } }, { "season_code": "202301", @@ -702,7 +1665,7 @@ "13:00", "14:15", "LORIA B50 - Loria Center B50", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ], "Thursday": [ @@ -710,7 +1673,7 @@ "13:00", "14:15", "LORIA B50 - Loria Center B50", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -727,10 +1690,61 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84243\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84243/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988672733306885 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.998907208442688 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 2, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 2 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -769,7 +1783,7 @@ "16:00", "17:15", "WLH 114 - William L. Harkness Hall 114", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -777,7 +1791,7 @@ "16:00", "17:15", "WLH 114 - William L. Harkness Hall 114", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -793,10 +1807,143 @@ "classnotes": "", "final_exam": "Thursday, May 4, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84867\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84867/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987815022468567, + 0.998894989490509, + 0.9988275170326233, + 0.9988464117050171, + 0.9989252686500549, + 0.9989128112792969, + 0.9989368319511414, + 0.998456597328186, + 0.9988987445831299, + 0.9989182949066162 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989011287689209, + 0.9976363182067871, + 0.9989342093467712, + 0.9989225268363953, + 0.9822700619697571, + 0.998871386051178, + 0.9988910555839539, + 0.9988943934440613, + 0.998921275138855, + 0.9972112774848938, + 0.9988940358161926, + 0.9989288449287415 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985517859458923, + 0.9988458156585693, + 0.9989181756973267, + 0.9989210367202759, + 0.998481810092926, + 0.998938262462616, + 0.9979693293571472, + 0.9988540410995483, + 0.9994710087776184, + 0.9989180564880371, + 0.9989054203033447 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9090909090909091 + ] + }, + "final_label": "POSITIVE", + "final_count": 32, + "final_proportion": 0.9696969696969697, + "final_counts": { + "POSITIVE": 32, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9696969696969697, + "NEGATIVE": 0.030303030303030304 + } + } }, { "season_code": "202301", @@ -829,7 +1976,7 @@ "16:00", "16:50", "WLH 210 - William L. Harkness Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -848,7 +1995,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -881,7 +2056,7 @@ "17:00", "17:50", "WLH 001 - William L. Harkness Hall 001", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -900,7 +2075,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -960,7 +2163,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -1020,7 +2251,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -1080,7 +2339,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -1140,7 +2427,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -1174,7 +2489,7 @@ "15:30", "16:20", "WLH 002 - William L. Harkness Hall 002", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -1193,7 +2508,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -1227,7 +2570,7 @@ "16:30", "17:20", "WLH 002 - William L. Harkness Hall 002", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -1246,7 +2589,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -1307,7 +2678,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -1368,7 +2767,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -1408,7 +2835,7 @@ "10:30", "11:20", "WLH 207 - William L. Harkness Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -1416,7 +2843,7 @@ "10:30", "11:20", "WLH 207 - William L. Harkness Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -1427,7 +2854,7 @@ "Hu" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -1435,10 +2862,131 @@ "classnotes": "", "final_exam": "Wednesday, May 10, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83279\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83279/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988565444946289, + 0.9988932013511658, + 0.9986244440078735, + 0.9989213943481445, + 0.9987640380859375, + 0.9988493919372559, + 0.9988866448402405 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9978806972503662, + 0.9990952014923096, + 0.9989263415336609, + 0.9980321526527405, + 0.9963645339012146, + 0.9988352656364441, + 0.998491644859314, + 0.9989197254180908, + 0.9888995289802551, + 0.9984050393104553, + 0.9918504357337952 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 8 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2727272727272727, + "POSITIVE": 0.7272727272727273 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7272727272727273 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9976517558097839, + 0.9988802075386047, + 0.997117280960083, + 0.9946708083152771, + 0.9989094734191895, + 0.9988920092582703, + 0.9989240765571594, + 0.9995013475418091, + 0.9987043142318726 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 21, + "final_proportion": 0.7777777777777778, + "final_counts": { + "POSITIVE": 21, + "NEGATIVE": 6 + }, + "final_distribution": { + "POSITIVE": 0.7777777777777778, + "NEGATIVE": 0.2222222222222222 + } + } }, { "season_code": "202301", @@ -1477,7 +3025,7 @@ "13:30", "14:20", "OML 202 - Osborn Memorial Laboratories 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/559958" + "https://map.yale.edu/?id=1910#!m/559958" ] ], "Wednesday": [ @@ -1485,7 +3033,7 @@ "13:30", "14:20", "OML 202 - Osborn Memorial Laboratories 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/559958" + "https://map.yale.edu/?id=1910#!m/559958" ] ] }, @@ -1502,10 +3050,275 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84670\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84670/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982264637947083, + 0.9985517859458923, + 0.9993465542793274, + 0.9975343942642212, + 0.9988056421279907, + 0.998863935470581, + 0.9976440072059631, + 0.9988914132118225, + 0.9974128603935242, + 0.998838484287262, + 0.998860239982605, + 0.9409608840942383, + 0.9987435936927795, + 0.9988237023353577, + 0.998591959476471, + 0.9988712668418884, + 0.9988905787467957, + 0.998802661895752, + 0.9988399147987366, + 0.9968575239181519, + 0.9988548755645752, + 0.9988563060760498, + 0.9989118576049805, + 0.9988085031509399, + 0.9988617897033691, + 0.9986061453819275, + 0.9987288117408752, + 0.9988276362419128, + 0.9978190660476685, + 0.9989109039306641 + ], + "sentiment_counts": { + "POSITIVE": 28, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.9333333333333333, + "NEGATIVE": 0.06666666666666667 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9333333333333333 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.5999741554260254, + 0.9986794590950012, + 0.9984666109085083, + 0.9785497784614563, + 0.9988765120506287, + 0.9925668239593506, + 0.9976440072059631, + 0.9985331296920776, + 0.9962865114212036, + 0.9994906187057495, + 0.9980740547180176, + 0.9988952279090881, + 0.9995101690292358, + 0.9994722008705139, + 0.9988584518432617, + 0.998932421207428, + 0.9989016056060791, + 0.998593270778656, + 0.9974863529205322, + 0.9994951486587524, + 0.9978663325309753, + 0.998913049697876, + 0.998992383480072, + 0.9985253214836121, + 0.9988422989845276, + 0.9988816380500793, + 0.9987220168113708, + 0.9988982677459717, + 0.996577799320221, + 0.9988672733306885, + 0.9983401298522949, + 0.9988977909088135 + ], + "sentiment_counts": { + "NEGATIVE": 13, + "POSITIVE": 19 + }, + "sentiment_distribution": { + "NEGATIVE": 0.40625, + "POSITIVE": 0.59375 + }, + "sentiment_overall": [ + "POSITIVE", + 0.59375 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9994028806686401, + 0.9987646341323853, + 0.9970054030418396, + 0.9980652928352356, + 0.9987955093383789, + 0.9976440072059631, + 0.997117280960083, + 0.9989199638366699, + 0.998845100402832, + 0.998903751373291, + 0.9989113807678223, + 0.9995028972625732, + 0.9968119263648987, + 0.9983124732971191, + 0.9919800758361816, + 0.9994557499885559, + 0.997620165348053, + 0.9980016350746155, + 0.9988995790481567, + 0.9987837672233582, + 0.9994828701019287, + 0.9994860887527466, + 0.999517560005188, + 0.9989118576049805, + 0.9957135915756226, + 0.9989168643951416, + 0.9988975524902344, + 0.9989035129547119, + 0.9849973917007446, + 0.9975152015686035, + 0.998855710029602, + 0.9988061189651489, + 0.9993597865104675, + 0.9984826445579529, + 0.9988068342208862, + 0.9988791346549988, + 0.9904679656028748 + ], + "sentiment_counts": { + "NEGATIVE": 13, + "POSITIVE": 24 + }, + "sentiment_distribution": { + "NEGATIVE": 0.35135135135135137, + "POSITIVE": 0.6486486486486487 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6486486486486487 + ] + }, + "final_label": "POSITIVE", + "final_count": 71, + "final_proportion": 0.7171717171717171, + "final_counts": { + "POSITIVE": 71, + "NEGATIVE": 28 + }, + "final_distribution": { + "POSITIVE": 0.7171717171717171, + "NEGATIVE": 0.2828282828282828 + } + } }, { "season_code": "202301", @@ -1538,7 +3351,7 @@ "9:25", "10:15", "RKZ 102 - Rosenkranz Hall 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -1555,7 +3368,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -1588,7 +3429,7 @@ "10:30", "11:20", "RKZ 102 - Rosenkranz Hall 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -1605,7 +3446,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -1638,7 +3507,7 @@ "14:30", "15:20", "WLH 011 - William L. Harkness Hall 011", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -1655,7 +3524,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -1688,7 +3585,7 @@ "17:00", "17:50", "WLH 013 - William L. Harkness Hall 013", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -1705,7 +3602,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -1738,7 +3663,7 @@ "9:25", "10:15", "RKZ 05 - Rosenkranz Hall 05", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -1755,7 +3680,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -1788,7 +3741,7 @@ "10:30", "11:20", "RKZ 05 - Rosenkranz Hall 05", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -1805,7 +3758,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -1838,7 +3819,7 @@ "13:30", "14:20", "RKZ 02 - Rosenkranz Hall 02", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -1855,7 +3836,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -1888,7 +3897,7 @@ "14:30", "15:20", "RKZ 02 - Rosenkranz Hall 02", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -1905,7 +3914,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -1938,7 +3975,7 @@ "14:30", "15:20", "LC 103 - Linsly-Chittenden Hall 103", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -1955,7 +3992,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -1988,7 +4053,7 @@ "16:00", "16:50", "RKZ 05 - Rosenkranz Hall 05", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -2005,7 +4070,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -2038,7 +4131,7 @@ "19:00", "19:50", "WLH 009 - William L. Harkness Hall 009", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -2055,12 +4148,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "Historiographic narrative of United States history over the past century and critical\/methodological practices of thinking historically and of identifying ways in which our present has been conditioned by historical legacies, both momentous and subtle. Topics include the New Deal, WWII, the arms race, Reaganomics, and 9\/11 in terms of their lasting influence on American conditions in the present.", + "description": "Historiographic narrative of United States history over the past century and critical/methodological practices of thinking historically and of identifying ways in which our present has been conditioned by historical legacies, both momentous and subtle. Topics include the New Deal, WWII, the arms race, Reaganomics, and 9/11 in terms of their lasting influence on American conditions in the present.", "short_title": "The History of Right Now", "title": "The History of Right Now", "school": "YC", @@ -2089,7 +4210,7 @@ "Hu" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -2100,12 +4221,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse\/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", + "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", "short_title": "Sickness and Health in Africa...", "title": "Sickness and Health in African American History", "school": "YC", @@ -2140,7 +4289,7 @@ "13:30", "14:20", "YSB MARSH - Yale Science Building MARSH", - "https:\/\/map.yale.edu\/?id=1910#!m\/563700" + "https://map.yale.edu/?id=1910#!m/563700" ] ], "Thursday": [ @@ -2148,7 +4297,7 @@ "13:30", "14:20", "YSB MARSH - Yale Science Building MARSH", - "https:\/\/map.yale.edu\/?id=1910#!m\/563700" + "https://map.yale.edu/?id=1910#!m/563700" ] ] }, @@ -2168,15 +4317,1032 @@ "classnotes": "This course is full and we are no longer accepting instructor permission requests. Thank you!", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83282\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "", - "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse\/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", + "syllabus_url": "https://yale.instructure.com/courses/83282/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988340735435486, + 0.9986395239830017, + 0.9986968636512756, + 0.9989031553268433, + 0.9988620281219482, + 0.9988137483596802, + 0.9969080090522766, + 0.9983807802200317, + 0.9987789988517761, + 0.9987564086914062, + 0.9984493255615234, + 0.9986536502838135, + 0.9982695579528809, + 0.9982789754867554, + 0.9989293217658997, + 0.9946243166923523, + 0.9987239241600037, + 0.9980498552322388, + 0.998616099357605, + 0.9987815022468567, + 0.9968481659889221, + 0.9988880753517151, + 0.9988828301429749, + 0.9989162683486938, + 0.9989081621170044, + 0.9987485408782959, + 0.9989271759986877, + 0.9989168643951416, + 0.9984915256500244, + 0.9989184141159058, + 0.9989076852798462, + 0.9988468885421753, + 0.9985731840133667, + 0.9989288449287415, + 0.9986717700958252, + 0.9950319528579712, + 0.9988815188407898, + 0.9988020658493042, + 0.994141161441803, + 0.9968734383583069, + 0.9988811612129211, + 0.9978400468826294, + 0.9986481070518494, + 0.9988192915916443, + 0.9986947178840637, + 0.9989357590675354, + 0.9987982511520386, + 0.9985961318016052, + 0.9988431930541992, + 0.9987500905990601, + 0.9988921284675598, + 0.9988847374916077, + 0.9986405968666077, + 0.9964800477027893, + 0.9986070990562439, + 0.9984385371208191, + 0.9980556964874268, + 0.9986239671707153, + 0.9987909197807312, + 0.9988508224487305, + 0.9979257583618164, + 0.9989352822303772, + 0.9989070892333984, + 0.998741090297699, + 0.998672366142273, + 0.9984409213066101, + 0.9989080429077148, + 0.9989086389541626, + 0.9988235831260681, + 0.9985793828964233, + 0.9988088607788086, + 0.9986900687217712, + 0.9745175242424011, + 0.9828008413314819, + 0.9988285899162292, + 0.9988735318183899, + 0.998863935470581, + 0.9988976716995239, + 0.9986427426338196, + 0.9988811612129211, + 0.9984429478645325, + 0.9986421465873718, + 0.9986189603805542, + 0.9988147020339966, + 0.9950065612792969, + 0.9988425970077515, + 0.9986833930015564, + 0.9989243149757385, + 0.9989123344421387, + 0.9988893866539001, + 0.9988316893577576, + 0.9983320832252502, + 0.9987965822219849, + 0.9985906481742859, + 0.9987419247627258, + 0.9986976385116577, + 0.9986771941184998, + 0.9988052845001221, + 0.9988552331924438, + 0.998722493648529, + 0.9986487030982971, + 0.998903751373291, + 0.9989225268363953, + 0.9988188147544861, + 0.9827929735183716, + 0.9989330172538757, + 0.9986029267311096, + 0.9986230134963989, + 0.9988352656364441, + 0.9988930821418762, + 0.9988430738449097, + 0.9985798597335815, + 0.9985494017601013, + 0.9988065958023071, + 0.9989227652549744, + 0.9986359477043152, + 0.998755693435669, + 0.9989282488822937, + 0.9988858103752136, + 0.9986497759819031, + 0.9989180564880371, + 0.9986276626586914, + 0.9987366795539856, + 0.9988987445831299, + 0.9989117383956909, + 0.9984443783760071, + 0.9987707734107971, + 0.9986522793769836, + 0.9987888932228088, + 0.998904824256897, + 0.9988356232643127, + 0.9987788796424866, + 0.9989029169082642, + 0.9988052845001221 + ], + "sentiment_counts": { + "POSITIVE": 132, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.9850746268656716, + "NEGATIVE": 0.014925373134328358 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9850746268656716 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989101886749268, + 0.9985139966011047, + 0.9989320635795593, + 0.9986590147018433, + 0.998939573764801, + 0.9988256096839905, + 0.9988693594932556, + 0.9989269375801086, + 0.9988569021224976, + 0.9989309906959534, + 0.9988852143287659, + 0.9989275336265564, + 0.998847484588623, + 0.9986892342567444, + 0.9986897110939026, + 0.9985847473144531, + 0.9989288449287415, + 0.9988588094711304, + 0.9989238381385803, + 0.9989116191864014, + 0.9989094734191895, + 0.9989234805107117, + 0.9989333748817444, + 0.9989383816719055, + 0.9989296793937683, + 0.9989339709281921, + 0.9988177418708801, + 0.998874843120575, + 0.9989140033721924, + 0.9988942742347717, + 0.9989244341850281, + 0.9988756775856018, + 0.9989215135574341, + 0.9988221526145935, + 0.9985874891281128, + 0.9989200830459595, + 0.9989151954650879, + 0.9989259839057922, + 0.9988903403282166, + 0.9988194108009338, + 0.9988852143287659, + 0.9989200830459595, + 0.9988514184951782, + 0.9988941550254822, + 0.9989367127418518, + 0.9989240765571594, + 0.9989283680915833, + 0.998916506767273, + 0.9987910389900208, + 0.9989217519760132, + 0.9989098310470581, + 0.9989373087882996, + 0.9988885521888733, + 0.9989268183708191, + 0.9989142417907715, + 0.9989210367202759, + 0.9987784028053284, + 0.9988576173782349, + 0.9986928105354309, + 0.9988359808921814, + 0.9989284873008728, + 0.9988395571708679, + 0.9989044666290283, + 0.998880922794342, + 0.9988688826560974, + 0.9989117383956909, + 0.9988538026809692, + 0.9989325404167175, + 0.9989030361175537, + 0.9989042282104492, + 0.9988289475440979, + 0.9988977909088135, + 0.9988352656364441, + 0.9987223744392395, + 0.9989356398582458, + 0.9987284541130066, + 0.9989343285560608, + 0.9989288449287415, + 0.9989168643951416, + 0.998934805393219, + 0.9986547231674194, + 0.9989112615585327, + 0.9989155530929565, + 0.9989089965820312, + 0.9989166259765625, + 0.9989354014396667, + 0.9989245533943176, + 0.9988939166069031, + 0.9989140033721924, + 0.9989355206489563, + 0.9987800717353821, + 0.9989000558853149, + 0.9989272952079773, + 0.998875081539154, + 0.9986833930015564, + 0.9989184141159058, + 0.9986955523490906, + 0.9988547563552856, + 0.9989318251609802, + 0.9989166259765625, + 0.9989308714866638, + 0.9981245398521423, + 0.9984752535820007, + 0.9986801743507385, + 0.9986653327941895, + 0.9989244341850281, + 0.9971017241477966, + 0.998755931854248, + 0.9986880421638489, + 0.998789370059967, + 0.9989027976989746, + 0.9989237189292908, + 0.9989036321640015, + 0.9968572854995728, + 0.9989172220230103, + 0.9988908171653748, + 0.9987608194351196, + 0.9994779229164124, + 0.9989295601844788, + 0.998917818069458, + 0.9989301562309265, + 0.9988760352134705, + 0.9989249110221863, + 0.9967356324195862, + 0.9989045858383179, + 0.998923122882843, + 0.99893718957901, + 0.9984885454177856, + 0.9989292025566101, + 0.9989392161369324, + 0.9974145889282227, + 0.9989198446273804, + 0.9988732933998108, + 0.998925507068634, + 0.9987367987632751, + 0.9988483190536499, + 0.9985429048538208, + 0.9988239407539368, + 0.998930037021637, + 0.9989349246025085, + 0.9989305138587952, + 0.9989393353462219, + 0.9989190101623535, + 0.9988657236099243, + 0.9988666772842407, + 0.9988998174667358, + 0.9989162683486938 + ], + "sentiment_counts": { + "POSITIVE": 144, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.9795918367346939, + "NEGATIVE": 0.02040816326530612 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9795918367346939 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983974099159241, + 0.9888043999671936, + 0.998786985874176, + 0.9986128807067871, + 0.9989315867424011, + 0.9988334774971008, + 0.9987927675247192, + 0.9989320635795593, + 0.9963850975036621, + 0.997117280960083, + 0.9988308548927307, + 0.9980233907699585, + 0.9974019527435303, + 0.9983333945274353, + 0.9989299178123474, + 0.9984614849090576, + 0.9988381266593933, + 0.9987615346908569, + 0.9982694387435913, + 0.9989383816719055, + 0.9986180067062378, + 0.9989035129547119, + 0.9988532066345215, + 0.9987928867340088, + 0.998872697353363, + 0.9902652502059937, + 0.9988453388214111, + 0.9987645149230957, + 0.9989226460456848, + 0.9989016056060791, + 0.9989362359046936, + 0.9985417127609253, + 0.9988675117492676, + 0.9988947510719299, + 0.9989292025566101, + 0.9988635778427124, + 0.9988839030265808, + 0.9989066123962402, + 0.9988988637924194, + 0.9988574981689453, + 0.9989055395126343, + 0.9989317059516907, + 0.9984641075134277, + 0.9987357258796692, + 0.9988387227058411, + 0.9989053010940552, + 0.9988917708396912, + 0.9987099170684814, + 0.9989288449287415, + 0.998921275138855, + 0.9989187717437744, + 0.9988780617713928, + 0.9986422657966614, + 0.9988622665405273, + 0.9988786578178406, + 0.998932421207428, + 0.9989190101623535, + 0.9982553124427795, + 0.9982553124427795, + 0.9985672235488892, + 0.9986905455589294, + 0.9988991022109985, + 0.9987295269966125, + 0.998909592628479, + 0.9988479614257812, + 0.9988248944282532, + 0.9989368319511414, + 0.9989263415336609, + 0.9989081621170044, + 0.9988775849342346, + 0.9989221096038818, + 0.9989272952079773, + 0.9989270567893982, + 0.9988561868667603, + 0.9988903403282166, + 0.9988571405410767, + 0.9963590502738953, + 0.9982553124427795, + 0.9981878399848938, + 0.9983333945274353, + 0.9988864064216614, + 0.9980168342590332, + 0.9987473487854004, + 0.9988362193107605, + 0.9987902045249939, + 0.9984739422798157, + 0.9989058971405029, + 0.9986993074417114, + 0.9989184141159058, + 0.9989271759986877, + 0.9986972212791443, + 0.9989074468612671, + 0.998891294002533, + 0.9982694387435913, + 0.9989138841629028, + 0.9994202852249146, + 0.9989217519760132, + 0.9989379048347473, + 0.9984965324401855, + 0.9984285235404968, + 0.9985841512680054, + 0.9988813996315002, + 0.9989080429077148, + 0.9987743496894836, + 0.9989148378372192, + 0.9989377856254578, + 0.9988741278648376, + 0.9989117383956909, + 0.998400866985321, + 0.997117280960083, + 0.9987142086029053, + 0.9988915324211121, + 0.99891197681427, + 0.998900294303894, + 0.9988792538642883, + 0.998932421207428, + 0.9987950325012207, + 0.9989086389541626, + 0.9989376664161682, + 0.9989032745361328, + 0.9989134073257446, + 0.9989307522773743, + 0.9989053010940552, + 0.998904824256897, + 0.998918890953064, + 0.9988715052604675, + 0.9989161491394043, + 0.9988309741020203, + 0.9988928437232971, + 0.9969774484634399, + 0.9987527132034302, + 0.9989199638366699, + 0.9988387227058411, + 0.9989400506019592, + 0.998762845993042, + 0.9978189468383789, + 0.9989193677902222, + 0.9989359974861145, + 0.9988927245140076, + 0.9989250302314758, + 0.9989191293716431, + 0.9987592697143555, + 0.9987151622772217, + 0.998938262462616, + 0.9988916516304016, + 0.9987849593162537, + 0.9986801743507385, + 0.9989303946495056, + 0.9988600015640259, + 0.9988922476768494, + 0.9989261031150818, + 0.9989068508148193, + 0.9989346861839294, + 0.9984594583511353, + 0.9986693859100342, + 0.9989142417907715, + 0.9988985061645508, + 0.9988681077957153, + 0.9989017248153687, + 0.9942962527275085, + 0.9989299178123474, + 0.998896598815918, + 0.9988757967948914, + 0.998881995677948, + 0.9989005327224731, + 0.9939151406288147, + 0.9989147186279297, + 0.9989296793937683, + 0.9983274340629578, + 0.9989288449287415, + 0.9989246726036072, + 0.9985185265541077, + 0.9988113641738892, + 0.998828113079071, + 0.9988791346549988, + 0.9989120960235596, + 0.9989370703697205, + 0.993130624294281, + 0.997875452041626, + 0.9989209175109863, + 0.9989101886749268, + 0.9988956451416016, + 0.9987995624542236, + 0.9988664388656616, + 0.9986214637756348, + 0.9988986253738403, + 0.9988881945610046, + 0.9987167119979858, + 0.9979366064071655, + 0.9989270567893982, + 0.9988871216773987, + 0.9988478422164917, + 0.9988928437232971, + 0.9989187717437744 + ], + "sentiment_counts": { + "POSITIVE": 192, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.9896907216494846, + "NEGATIVE": 0.010309278350515464 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9896907216494846 + ] + }, + "final_label": "POSITIVE", + "final_count": 468, + "final_proportion": 0.9852631578947368, + "final_counts": { + "POSITIVE": 468, + "NEGATIVE": 7 + }, + "final_distribution": { + "POSITIVE": 0.9852631578947368, + "NEGATIVE": 0.014736842105263158 + } + } + }, + { + "season_code": "202301", + "requirements": "", + "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", "short_title": "Sickness and Health in Africa...", "title": "Sickness and Health in African American History", "school": "YC", @@ -2205,7 +5371,7 @@ "15:30", "16:20", "WLH 013 - William L. Harkness Hall 013", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -2222,12 +5388,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse\/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", + "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", "short_title": "Sickness and Health in Africa...", "title": "Sickness and Health in African American History", "school": "YC", @@ -2256,7 +5450,7 @@ "19:00", "19:50", "WLH 003 - William L. Harkness Hall 003", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -2273,12 +5467,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse\/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", + "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", "short_title": "Sickness and Health in Africa...", "title": "Sickness and Health in African American History", "school": "YC", @@ -2307,7 +5529,7 @@ "14:30", "15:20", "WTS A42 - Watson Center 60 Sachem Street A42", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -2324,12 +5546,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse\/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", + "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", "short_title": "Sickness and Health in Africa...", "title": "Sickness and Health in African American History", "school": "YC", @@ -2358,7 +5608,7 @@ "9:25", "10:15", "WALL81 101 - 81 Wall Street 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -2375,12 +5625,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse\/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", + "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", "short_title": "Sickness and Health in Africa...", "title": "Sickness and Health in African American History", "school": "YC", @@ -2409,7 +5687,7 @@ "16:30", "17:20", "WLH 013 - William L. Harkness Hall 013", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -2426,12 +5704,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse\/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", + "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", "short_title": "Sickness and Health in Africa...", "title": "Sickness and Health in African American History", "school": "YC", @@ -2460,7 +5766,7 @@ "20:00", "20:50", "WLH 003 - William L. Harkness Hall 003", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -2477,12 +5783,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse\/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", + "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", "short_title": "Sickness and Health in Africa...", "title": "Sickness and Health in African American History", "school": "YC", @@ -2511,7 +5845,7 @@ "15:30", "16:20", "WLH 006 - William L. Harkness Hall 006", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -2528,12 +5862,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse\/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", + "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", "short_title": "Sickness and Health in Africa...", "title": "Sickness and Health in African American History", "school": "YC", @@ -2562,7 +5924,7 @@ "16:30", "17:20", "WLH 006 - William L. Harkness Hall 006", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -2579,12 +5941,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse\/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", + "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", "short_title": "Sickness and Health in Africa...", "title": "Sickness and Health in African American History", "school": "YC", @@ -2613,7 +6003,7 @@ "19:00", "19:50", "BM 013 - Bingham Hall 013", - "https:\/\/map.yale.edu\/?id=1910#!m\/559569" + "https://map.yale.edu/?id=1910#!m/559569" ] ] }, @@ -2630,12 +6020,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse\/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", + "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", "short_title": "Sickness and Health in Africa...", "title": "Sickness and Health in African American History", "school": "YC", @@ -2664,7 +6082,7 @@ "14:30", "15:20", "WTS B39 - Watson Center 60 Sachem Street B39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -2681,12 +6099,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse\/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", + "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", "short_title": "Sickness and Health in Africa...", "title": "Sickness and Health in African American History", "school": "YC", @@ -2715,7 +6161,7 @@ "15:30", "16:20", "WLH 006 - William L. Harkness Hall 006", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -2732,12 +6178,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse\/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", + "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", "short_title": "Sickness and Health in Africa...", "title": "Sickness and Health in African American History", "school": "YC", @@ -2766,7 +6240,7 @@ "19:00", "19:50", "WLH 002 - William L. Harkness Hall 002", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -2783,12 +6257,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse\/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", + "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", "short_title": "Sickness and Health in Africa...", "title": "Sickness and Health in African American History", "school": "YC", @@ -2817,7 +6319,7 @@ "16:30", "17:20", "WLH 006 - William L. Harkness Hall 006", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -2834,12 +6336,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse\/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", + "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", "short_title": "Sickness and Health in Africa...", "title": "Sickness and Health in African American History", "school": "YC", @@ -2868,7 +6398,7 @@ "20:00", "20:50", "WLH 002 - William L. Harkness Hall 002", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -2885,12 +6415,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse\/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", + "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", "short_title": "Sickness and Health in Africa...", "title": "Sickness and Health in African American History", "school": "YC", @@ -2919,7 +6477,7 @@ "15:30", "16:20", "WLH 009 - William L. Harkness Hall 009", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -2936,12 +6494,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse\/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", + "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", "short_title": "Sickness and Health in Africa...", "title": "Sickness and Health in African American History", "school": "YC", @@ -2970,7 +6556,7 @@ "9:25", "10:15", "BM 013 - Bingham Hall 013", - "https:\/\/map.yale.edu\/?id=1910#!m\/559569" + "https://map.yale.edu/?id=1910#!m/559569" ] ] }, @@ -2987,12 +6573,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse\/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", + "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", "short_title": "Sickness and Health in Africa...", "title": "Sickness and Health in African American History", "school": "YC", @@ -3021,7 +6635,7 @@ "19:00", "19:50", "WLH 006 - William L. Harkness Hall 006", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -3038,12 +6652,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse\/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", + "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", "short_title": "Sickness and Health in Africa...", "title": "Sickness and Health in African American History", "school": "YC", @@ -3072,7 +6714,7 @@ "15:30", "16:20", "WLH 203 - William L. Harkness Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -3089,12 +6731,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse\/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", + "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", "short_title": "Sickness and Health in Africa...", "title": "Sickness and Health in African American History", "school": "YC", @@ -3123,7 +6793,7 @@ "19:00", "19:50", "WLH 011 - William L. Harkness Hall 011", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -3140,12 +6810,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse\/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", + "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", "short_title": "Sickness and Health in Africa...", "title": "Sickness and Health in African American History", "school": "YC", @@ -3174,7 +6872,7 @@ "14:30", "15:20", "ESC 110 - Environmental Sciences Center 110", - "https:\/\/map.yale.edu\/?id=1910#!m\/560020" + "https://map.yale.edu/?id=1910#!m/560020" ] ] }, @@ -3191,12 +6889,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse\/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", + "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", "short_title": "Sickness and Health in Africa...", "title": "Sickness and Health in African American History", "school": "YC", @@ -3225,7 +6951,7 @@ "15:30", "16:20", "WLH 007 - William L. Harkness Hall 007", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -3242,12 +6968,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse\/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", + "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", "short_title": "Sickness and Health in Africa...", "title": "Sickness and Health in African American History", "school": "YC", @@ -3301,12 +7055,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse\/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", + "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", "short_title": "Sickness and Health in Africa...", "title": "Sickness and Health in African American History", "school": "YC", @@ -3335,7 +7117,7 @@ "20:00", "20:50", "WLH 011 - William L. Harkness Hall 011", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -3352,12 +7134,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse\/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", + "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", "short_title": "Sickness and Health in Africa...", "title": "Sickness and Health in African American History", "school": "YC", @@ -3386,7 +7196,7 @@ "16:30", "17:20", "WLH 009 - William L. Harkness Hall 009", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -3403,12 +7213,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse\/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", + "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", "short_title": "Sickness and Health in Africa...", "title": "Sickness and Health in African American History", "school": "YC", @@ -3437,7 +7275,7 @@ "19:00", "19:50", "WLH 210 - William L. Harkness Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -3454,12 +7292,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse\/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", + "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", "short_title": "Sickness and Health in Africa...", "title": "Sickness and Health in African American History", "school": "YC", @@ -3488,7 +7354,7 @@ "10:30", "11:20", "WALL81 101 - 81 Wall Street 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -3505,12 +7371,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse\/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", + "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", "short_title": "Sickness and Health in Africa...", "title": "Sickness and Health in African American History", "school": "YC", @@ -3539,7 +7433,7 @@ "16:30", "17:20", "WLH 203 - William L. Harkness Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -3556,12 +7450,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse\/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", + "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", "short_title": "Sickness and Health in Africa...", "title": "Sickness and Health in African American History", "school": "YC", @@ -3615,12 +7537,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse\/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", + "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", "short_title": "Sickness and Health in Africa...", "title": "Sickness and Health in African American History", "school": "YC", @@ -3649,7 +7599,7 @@ "16:30", "17:20", "WLH 007 - William L. Harkness Hall 007", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -3666,7 +7616,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -3704,7 +7682,7 @@ "10:30", "11:20", "WLH 201 - William L. Harkness Hall 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -3712,7 +7690,7 @@ "10:30", "11:20", "WLH 201 - William L. Harkness Hall 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -3735,10 +7713,299 @@ "classnotes": "", "final_exam": "Wednesday, May 10, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85860\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/85860/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988357424736023, + 0.998641312122345, + 0.9988828301429749, + 0.995060384273529, + 0.9989118576049805, + 0.9988993406295776, + 0.9984632730484009, + 0.9988316893577576, + 0.9984533786773682, + 0.9987635612487793, + 0.9988839030265808, + 0.9989274144172668, + 0.9988388419151306, + 0.9987737536430359, + 0.9989125728607178, + 0.9988518953323364, + 0.9984373450279236, + 0.9984844326972961, + 0.9989367127418518, + 0.9988859295845032, + 0.9987726807594299, + 0.9988346695899963, + 0.9943361878395081, + 0.998738706111908, + 0.9985645413398743, + 0.9988736510276794, + 0.9989018440246582, + 0.994705855846405, + 0.9988963603973389, + 0.9989107847213745, + 0.9989262223243713, + 0.9989262223243713, + 0.9988491535186768 + ], + "sentiment_counts": { + "POSITIVE": 32, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9696969696969697, + "NEGATIVE": 0.030303030303030304 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9696969696969697 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9945210218429565, + 0.998977541923523, + 0.9987581968307495, + 0.9995009899139404, + 0.9989125728607178, + 0.9988717436790466, + 0.6535438895225525, + 0.9986972212791443, + 0.9988390803337097, + 0.9987088441848755, + 0.9988541603088379, + 0.9989056587219238, + 0.9988213181495667, + 0.9988105297088623, + 0.9988644123077393, + 0.9989338517189026, + 0.9862333536148071, + 0.9988151788711548, + 0.9994993209838867, + 0.9989124536514282, + 0.9982929825782776, + 0.9980018734931946, + 0.9964787364006042, + 0.9865348935127258, + 0.998699426651001, + 0.9975727200508118, + 0.9987725615501404, + 0.9989487528800964, + 0.9948786497116089, + 0.9994681477546692, + 0.998933732509613, + 0.998879611492157, + 0.997542142868042, + 0.998907208442688, + 0.9987366795539856, + 0.9988222718238831, + 0.9988883137702942, + 0.9975486397743225 + ], + "sentiment_counts": { + "NEGATIVE": 9, + "POSITIVE": 29 + }, + "sentiment_distribution": { + "NEGATIVE": 0.23684210526315788, + "POSITIVE": 0.7631578947368421 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7631578947368421 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986477494239807, + 0.9988870024681091, + 0.9985597729682922, + 0.9988859295845032, + 0.998868465423584, + 0.9989282488822937, + 0.9812535643577576, + 0.9992520213127136, + 0.9988492727279663, + 0.9989251494407654, + 0.9989367127418518, + 0.9989005327224731, + 0.997117280960083, + 0.9777986407279968, + 0.998895525932312, + 0.9989218711853027, + 0.9989049434661865, + 0.9988542795181274, + 0.9987670183181763, + 0.9988763928413391, + 0.9984995126724243, + 0.9988112449645996, + 0.9976409673690796, + 0.9988024234771729, + 0.9988839030265808, + 0.9988822340965271, + 0.9987996816635132, + 0.9987679123878479, + 0.9988431930541992, + 0.9992881417274475, + 0.997117280960083, + 0.997117280960083, + 0.9989060163497925, + 0.9989323019981384, + 0.997117280960083, + 0.9989238381385803, + 0.9989296793937683, + 0.9989234805107117, + 0.9988788962364197, + 0.9989063739776611 + ], + "sentiment_counts": { + "POSITIVE": 35, + "NEGATIVE": 5 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "final_label": "POSITIVE", + "final_count": 96, + "final_proportion": 0.8648648648648649, + "final_counts": { + "POSITIVE": 96, + "NEGATIVE": 15 + }, + "final_distribution": { + "POSITIVE": 0.8648648648648649, + "NEGATIVE": 0.13513513513513514 + } + } }, { "season_code": "202301", @@ -3777,7 +8044,7 @@ "13:30", "14:20", "LORIA 351 - Loria Center 351", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ], "Wednesday": [ @@ -3785,7 +8052,7 @@ "13:30", "14:20", "LORIA 351 - Loria Center 351", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -3802,10 +8069,89 @@ "classnotes": "", "final_exam": "Tuesday, May 9, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86013\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86013/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987807869911194, + 0.9987756609916687, + 0.9989203214645386 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989007711410522 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989268183708191, + 0.9988956451416016, + 0.9935749173164368 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 7 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -3838,7 +8184,7 @@ "15:30", "16:20", "LORIA 259 - Loria Center 259", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -3855,7 +8201,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -3888,7 +8262,7 @@ "17:00", "17:50", "LORIA 259 - Loria Center 259", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -3905,7 +8279,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -3945,15 +8347,43 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83283\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "", - "description": "This production course explores strategies of archive aesthetics and community storytelling in film and media. It allows students to create projects that draw from archives\u2014including news sources, personal narratives, and found archives\u2014to produce collaborative community storytelling. Conducted as a production workshop, the course explores the use of archives in constructing real and fictive narratives across a variety of disciplines, such as\u2014participants create and develop autobiographies, biographies, or fiction-based projects, tailored to their own work in film\/new media around Natalie Goldberg\u2019s concept that \"our lives are at once ordinary and mythical.\"", + "syllabus_url": "https://yale.instructure.com/courses/83283/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } + }, + { + "season_code": "202301", + "requirements": "", + "description": "This production course explores strategies of archive aesthetics and community storytelling in film and media. It allows students to create projects that draw from archives\u2014including news sources, personal narratives, and found archives\u2014to produce collaborative community storytelling. Conducted as a production workshop, the course explores the use of archives in constructing real and fictive narratives across a variety of disciplines, such as\u2014participants create and develop autobiographies, biographies, or fiction-based projects, tailored to their own work in film/new media around Natalie Goldberg\u2019s concept that \"our lives are at once ordinary and mythical.\"", "short_title": "Archive Aesthetics and Commun...", "title": "Archive Aesthetics and Community Storytelling", "school": "YC", @@ -3986,7 +8416,7 @@ "19:30", "22:30", "HQ L02 - Humanities Quadrangle L02", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Tuesday": [ @@ -3994,7 +8424,7 @@ "15:30", "18:20", "CCAM 103 - Center for Collab Arts & Media 103", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -4011,10 +8441,141 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84041\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84041/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989268183708191, + 0.9988923668861389, + 0.998816967010498, + 0.9977096319198608, + 0.9966937303543091, + 0.9989249110221863, + 0.9989006519317627 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9960164427757263, + 0.9989074468612671, + 0.9988766312599182, + 0.9986780285835266, + 0.9942988157272339, + 0.998923122882843, + 0.9988258481025696, + 0.9965846538543701, + 0.9988459348678589, + 0.9987757802009583, + 0.9989134073257446, + 0.9988939166069031 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9166666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987510442733765, + 0.9989301562309265, + 0.9989277720451355, + 0.9974592328071594, + 0.9976686835289001, + 0.9989135265350342, + 0.9986288547515869, + 0.9985287189483643, + 0.9994567036628723, + 0.9902106523513794, + 0.9989025592803955, + 0.9982336759567261, + 0.9988942742347717 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9230769230769231, + "NEGATIVE": 0.07692307692307693 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9230769230769231 + ] + }, + "final_label": "POSITIVE", + "final_count": 30, + "final_proportion": 0.9375, + "final_counts": { + "POSITIVE": 30, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9375, + "NEGATIVE": 0.0625 + } + } }, { "season_code": "202301", @@ -4052,7 +8613,7 @@ "11:35", "12:50", "WALL81 301 - 81 Wall Street 301", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ], "Wednesday": [ @@ -4060,7 +8621,7 @@ "11:35", "12:50", "WALL81 301 - 81 Wall Street 301", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -4069,7 +8630,7 @@ "Hu" ], "flags": [ - "YC English: 18th\/19th Century ", + "YC English: 18th/19th Century ", "YC English: Junior Seminar" ], "regnotes": "", @@ -4077,10 +8638,111 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83289\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83289/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988834261894226, + 0.9986984729766846, + 0.9909817576408386, + 0.9922723770141602, + 0.9989001750946045, + 0.9977837204933167 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989211559295654, + 0.9988718628883362, + 0.998814582824707, + 0.9962582588195801, + 0.9989333748817444, + 0.9988905787467957 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989332556724548, + 0.9989173412322998, + 0.9988560676574707, + 0.9987591505050659, + 0.9988998174667358 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 0.9411764705882353, + "final_counts": { + "POSITIVE": 16, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9411764705882353, + "NEGATIVE": 0.058823529411764705 + } + } }, { "season_code": "202301", @@ -4119,7 +8781,7 @@ "14:30", "15:45", "WALL81 101 - 81 Wall Street 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ], "Thursday": [ @@ -4127,7 +8789,7 @@ "14:30", "15:45", "WALL81 101 - 81 Wall Street 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -4141,10 +8803,95 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85878\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85878/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988853335380554, + 0.9988697171211243, + 0.9988394379615784 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989312291145325, + 0.9988176226615906, + 0.9989012479782104 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988285899162292, + 0.997117280960083, + 0.9989375472068787, + 0.9989257454872131 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 10 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -4184,7 +8931,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -4222,7 +8997,7 @@ "13:00", "14:15", "WLH 116 - William L. Harkness Hall 116", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -4230,7 +9005,7 @@ "13:00", "14:15", "WLH 116 - William L. Harkness Hall 116", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -4246,10 +9021,143 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84577\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84577/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988963603973389, + 0.998891294002533, + 0.9988719820976257, + 0.9985796213150024, + 0.9987778067588806, + 0.998794674873352, + 0.9988616704940796, + 0.9989092350006104, + 0.9988827109336853, + 0.9988958835601807, + 0.9986910223960876, + 0.9987898468971252 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987154006958008, + 0.9988105297088623, + 0.9988968372344971, + 0.9986318945884705, + 0.9989011287689209, + 0.9988954067230225, + 0.9989376664161682, + 0.9989120960235596, + 0.9988653659820557, + 0.9966912269592285 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989138841629028, + 0.9981060028076172, + 0.9988640546798706, + 0.998921275138855, + 0.9988908171653748, + 0.9989068508148193, + 0.9989057779312134, + 0.9988403916358948, + 0.9989225268363953, + 0.9989142417907715, + 0.9980040192604065 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 32, + "final_proportion": 0.9696969696969697, + "final_counts": { + "POSITIVE": 32, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9696969696969697, + "NEGATIVE": 0.030303030303030304 + } + } }, { "season_code": "202301", @@ -4288,7 +9196,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -4329,7 +9265,7 @@ "13:30", "15:20", "WLH 209 - William L. Harkness Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -4345,10 +9281,111 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84122\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84122/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988210797309875, + 0.9989069700241089, + 0.9988895058631897, + 0.9987397789955139, + 0.9989055395126343 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987258315086365, + 0.9988890290260315, + 0.9988699555397034, + 0.9986448884010315, + 0.9987479448318481, + 0.998298704624176 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988559484481812, + 0.9989215135574341, + 0.9988529682159424, + 0.9983460903167725, + 0.995510458946228, + 0.9989089965820312, + 0.9974592328071594 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 18 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -4386,7 +9423,7 @@ "15:30", "17:20", "WALL81 401 - 81 Wall Street 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -4395,7 +9432,7 @@ "Hu" ], "flags": [ - "YC English: 20th\/21st Century", + "YC English: 20th/21st Century", "YC English: Junior Seminar" ], "regnotes": "", @@ -4403,15 +9440,112 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85879\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85879/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "", - "description": "This course combines in-depth engagement of texts in black feminist theory with a wide-ranging survey of significant sculpture, painting, performance, photography, and installation art made by black women in the 19th to 21st centuries. We engage the ways that black women disturb, dissolve, and give definition to the conceptions of gender and racialization that shape the modern human. Theoretical concepts representing the singular modes of dispossession that ensnare black femininity, as well as black femininity's re\/production of the modern world\u2014concepts such as black flesh, ungendering, fungibility, black mater, plasticity\u2014are applied to analysis of artworks and the artworks in turn flesh out these concepts. We utilize formal analysis and art historical context to interrogate the ways that black female artists illuminate, critique, and intervene on not only constructions of blackness, gender, and sexuality but also art historical categories and ideologies. Through the figure of the black woman and black feminist theory, the class probes the role that the aesthetic can play in illuminating the violent aporias of hegemonic gendered and racial constructions while being attentive to its limits. Artists studied include Edmonia Lewis, Meta Warrick Fuller, Lois Mailou Jones, Kara Walker, Alma Thomas,\u00a0Faith Ringgold, Senga Nengudi, Beverly Buchanan, Adrian Piper,\u00a0Lorna Simpson, Martine Syms, and more. The class makes extensive use of the Yale University Art Gallery's holdings.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988988637924194, + 0.998790442943573, + 0.9987694621086121, + 0.9987491369247437, + 0.9988765120506287 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988473653793335, + 0.9988240599632263, + 0.9988239407539368, + 0.9989196062088013 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989277720451355, + 0.9982553124427795, + 0.9989303946495056, + 0.9982860684394836, + 0.9988473653793335, + 0.9989225268363953, + 0.9979793429374695 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 16 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } + }, + { + "season_code": "202301", + "requirements": "", + "description": "This course combines in-depth engagement of texts in black feminist theory with a wide-ranging survey of significant sculpture, painting, performance, photography, and installation art made by black women in the 19th to 21st centuries. We engage the ways that black women disturb, dissolve, and give definition to the conceptions of gender and racialization that shape the modern human. Theoretical concepts representing the singular modes of dispossession that ensnare black femininity, as well as black femininity's re/production of the modern world\u2014concepts such as black flesh, ungendering, fungibility, black mater, plasticity\u2014are applied to analysis of artworks and the artworks in turn flesh out these concepts. We utilize formal analysis and art historical context to interrogate the ways that black female artists illuminate, critique, and intervene on not only constructions of blackness, gender, and sexuality but also art historical categories and ideologies. Through the figure of the black woman and black feminist theory, the class probes the role that the aesthetic can play in illuminating the violent aporias of hegemonic gendered and racial constructions while being attentive to its limits. Artists studied include Edmonia Lewis, Meta Warrick Fuller, Lois Mailou Jones, Kara Walker, Alma Thomas,\u00a0Faith Ringgold, Senga Nengudi, Beverly Buchanan, Adrian Piper,\u00a0Lorna Simpson, Martine Syms, and more. The class makes extensive use of the Yale University Art Gallery's holdings.", "short_title": "Visual Art and Black Feminist...", "title": "Visual Art and Black Feminist Theory", "school": "YC", @@ -4446,7 +9580,7 @@ "13:30", "15:20", "WLH 006 - William L. Harkness Hall 006", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -4462,10 +9596,101 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85880\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85880/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987030029296875, + 0.9987471103668213, + 0.998915433883667, + 0.9988490343093872 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9934101700782776, + 0.9985740184783936, + 0.9989018440246582 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9883019328117371, + 0.9983124732971191, + 0.9989066123962402, + 0.9988566637039185, + 0.9989107847213745 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 4 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2, + "POSITIVE": 0.8 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 0.8333333333333334, + "final_counts": { + "POSITIVE": 10, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + } + } }, { "season_code": "202301", @@ -4505,7 +9730,7 @@ "13:30", "15:20", "HQ C03 - Humanities Quadrangle C03", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -4522,10 +9747,113 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84032\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84032/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987165927886963, + 0.9989297986030579, + 0.9989022016525269, + 0.9987567663192749 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989044666290283, + 0.9987654685974121, + 0.9982131719589233, + 0.9987983703613281, + 0.9989168643951416, + 0.9988625049591064 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988883137702942, + 0.9989199638366699, + 0.9995104074478149, + 0.9989161491394043, + 0.9987264275550842, + 0.9988746047019958, + 0.998871386051178, + 0.998908281326294 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 0.9444444444444444, + "final_counts": { + "POSITIVE": 17, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9444444444444444, + "NEGATIVE": 0.05555555555555555 + } + } }, { "season_code": "202301", @@ -4563,7 +9891,7 @@ "13:30", "15:20", "WALL81 201 - 81 Wall Street 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ], "Saturday": [ @@ -4571,7 +9899,7 @@ "19:00", "22:00", "HQ 127 - Humanities Quadrangle 127", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -4589,10 +9917,109 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85841\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85841/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988237023353577, + 0.9962582588195801, + 0.998925507068634, + 0.9989169836044312, + 0.9988961219787598 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989369511604309, + 0.9988805651664734, + 0.9962582588195801, + 0.9987672567367554, + 0.9988778233528137, + 0.9989050626754761 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9980652928352356, + 0.998849630355835, + 0.9988816380500793, + 0.9994797110557556, + 0.9969326257705688 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.4, + "POSITIVE": 0.6 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 0.6875, + "final_counts": { + "POSITIVE": 11, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.6875, + "NEGATIVE": 0.3125 + } + } }, { "season_code": "202301", @@ -4632,7 +10059,7 @@ "9:25", "11:15", "WALL81 201 - 81 Wall Street 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -4648,10 +10075,135 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83303\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83303/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988480806350708, + 0.9989012479782104, + 0.9989172220230103, + 0.9986692667007446, + 0.9986727237701416, + 0.9987316727638245, + 0.9988932013511658, + 0.9989190101623535, + 0.9988895058631897 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.998233437538147, + 0.9988462924957275, + 0.9989042282104492, + 0.9988855719566345, + 0.9989101886749268, + 0.9989123344421387, + 0.9989299178123474, + 0.9989319443702698, + 0.9989330172538757, + 0.9888333082199097 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988939166069031, + 0.9986318945884705, + 0.9989064931869507, + 0.9986655712127686, + 0.9985539317131042, + 0.998836100101471, + 0.9989390969276428, + 0.9989014863967896, + 0.9986961483955383, + 0.9986067414283752 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 28, + "final_proportion": 0.9655172413793104, + "final_counts": { + "POSITIVE": 28, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9655172413793104, + "NEGATIVE": 0.034482758620689655 + } + } }, { "season_code": "202301", @@ -4689,7 +10241,7 @@ "13:00", "14:15", "WALL81 101 - 81 Wall Street 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ], "Thursday": [ @@ -4697,7 +10249,7 @@ "13:00", "14:15", "WALL81 101 - 81 Wall Street 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -4708,7 +10260,7 @@ "Hu" ], "flags": [ - "YC English: 20th\/21st Century", + "YC English: 20th/21st Century", "YC English: Junior Seminar" ], "regnotes": "", @@ -4716,10 +10268,115 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85873\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85873/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.99885094165802, + 0.9988707900047302, + 0.9988459348678589, + 0.9989080429077148, + 0.9988571405410767, + 0.9987119436264038 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989129304885864, + 0.9989066123962402, + 0.9983868598937988, + 0.9989094734191895, + 0.9989210367202759, + 0.998893678188324, + 0.9986422657966614 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989295601844788, + 0.9989019632339478, + 0.9989066123962402, + 0.9989245533943176, + 0.9989067316055298, + 0.9989092350006104, + 0.9988833069801331 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 20 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -4758,7 +10415,7 @@ "9:25", "11:15", "HQ C03 - Humanities Quadrangle C03", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -4774,10 +10431,103 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85444\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85444/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988112449645996, + 0.9988905787467957, + 0.9988864064216614, + 0.9978811144828796 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989191293716431, + 0.9989144802093506, + 0.9989323019981384, + 0.9946439266204834 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988698363304138, + 0.9988847374916077, + 0.9989292025566101, + 0.9989120960235596, + 0.998765230178833 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 0.8461538461538461, + "final_counts": { + "POSITIVE": 11, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8461538461538461, + "NEGATIVE": 0.15384615384615385 + } + } }, { "season_code": "202301", @@ -4815,7 +10565,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -4852,7 +10630,7 @@ "15:30", "17:20", "WALL81 201 - 81 Wall Street 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -4869,10 +10647,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83308\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83308/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -4912,7 +10718,7 @@ "15:30", "17:20", "LC 213 - Linsly-Chittenden Hall 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -4923,7 +10729,7 @@ "Hu" ], "flags": [ - "YC English: 20th\/21st Century", + "YC English: 20th/21st Century", "YC English: Senior Seminar" ], "regnotes": "", @@ -4931,15 +10737,120 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84033\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84033/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "", - "description": "This course examines a series of transnational literary texts and films that illuminate how the displaced\u2014migrants, exiles, and refugees\u2014 remake home away from their native countries. The twentieth and twenty-first centuries have produced massive displacements due to wars, genocides, racial, ethnic and religious conflicts, economic and climate change, among other factors. Our course focuses on several texts that explore questions of home, nation, and self in the context of specific historical events such as the Holocaust, civil rights movements in the U.S., internment, the Indian partition, African decolonization, and Middle Eastern\/Arab ethno-religious conflicts and wars. We examine these events alongside the shifting legal and political policies and categories related to asylum, humanitarian parole, refugee, and illegal alien status. Exploring themes such as nostalgia, longing, trauma, and memory, we look at the possibilities and limitations of creating, contesting, and imagining home in the diaspora. Our objective is to debate and develop the ethical, political, geographic, and imaginative articulations of home in an era of mass displacements and geo-political crises. We examine how notions of home are imagined alongside and against categories of race, gender, and sexuality.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988672733306885, + 0.9989069700241089, + 0.9989054203033447, + 0.9988871216773987, + 0.9988522529602051 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988466501235962, + 0.9988954067230225, + 0.9988530874252319, + 0.9989056587219238, + 0.9989100694656372, + 0.9989363551139832, + 0.9988939166069031 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.99883633852005, + 0.9988934397697449, + 0.9979865550994873, + 0.9989062547683716, + 0.9981436729431152, + 0.9989215135574341, + 0.9989238381385803, + 0.9989191293716431 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 20 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } + }, + { + "season_code": "202301", + "requirements": "", + "description": "This course examines a series of transnational literary texts and films that illuminate how the displaced\u2014migrants, exiles, and refugees\u2014 remake home away from their native countries. The twentieth and twenty-first centuries have produced massive displacements due to wars, genocides, racial, ethnic and religious conflicts, economic and climate change, among other factors. Our course focuses on several texts that explore questions of home, nation, and self in the context of specific historical events such as the Holocaust, civil rights movements in the U.S., internment, the Indian partition, African decolonization, and Middle Eastern/Arab ethno-religious conflicts and wars. We examine these events alongside the shifting legal and political policies and categories related to asylum, humanitarian parole, refugee, and illegal alien status. Exploring themes such as nostalgia, longing, trauma, and memory, we look at the possibilities and limitations of creating, contesting, and imagining home in the diaspora. Our objective is to debate and develop the ethical, political, geographic, and imaginative articulations of home in an era of mass displacements and geo-political crises. We examine how notions of home are imagined alongside and against categories of race, gender, and sexuality.", "short_title": "The Displaced: Migrant and Re...", "title": "The Displaced: Migrant and Refugee Narratives of the 20th and 21st Centuries", "school": "YC", @@ -4977,7 +10888,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -5014,7 +10953,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -5057,7 +11024,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -5095,12 +11090,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "The course explores recent trends and historiography on several problems through the middle of the nineteenth century: sectionalism, expansion; slavery and the Old South; northern society and reform movements; Civil War causation; the meaning of the Confederacy; why the North won the Civil War; the political, constitutional, and social meanings of emancipation and Reconstruction; violence in Reconstruction society; the relationships between social\/cultural and military\/political history; problems in historical memory; the tension between narrative and analytical history writing; and the ways in which race and gender have reshaped research and interpretive agendas.", + "description": "The course explores recent trends and historiography on several problems through the middle of the nineteenth century: sectionalism, expansion; slavery and the Old South; northern society and reform movements; Civil War causation; the meaning of the Confederacy; why the North won the Civil War; the political, constitutional, and social meanings of emancipation and Reconstruction; violence in Reconstruction society; the relationships between social/cultural and military/political history; problems in historical memory; the tension between narrative and analytical history writing; and the ways in which race and gender have reshaped research and interpretive agendas.", "short_title": "Readings in Nineteenth-Centur...", "title": "Readings in Nineteenth-Century America", "school": "GS", @@ -5134,7 +11157,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -5173,7 +11224,7 @@ "13:30", "15:20", "HQ 109 - Humanities Quadrangle 109", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -5188,10 +11239,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83326\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83326/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -5229,7 +11308,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -5266,7 +11373,7 @@ "19:00", "20:50", "HQ 109 - Humanities Quadrangle 109", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -5281,7 +11388,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -5318,7 +11453,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -5355,7 +11518,7 @@ "17:30", "19:00", "WALL81 201 - 81 Wall Street 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -5367,10 +11530,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83338\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83338/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -5410,10 +11601,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85897\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85897/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -5452,7 +11671,7 @@ "9:00", "10:15", "ESC 100 - Environmental Sciences Center 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560020" + "https://map.yale.edu/?id=1910#!m/560020" ] ], "Wednesday": [ @@ -5460,7 +11679,7 @@ "9:00", "10:15", "ESC 100 - Environmental Sciences Center 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560020" + "https://map.yale.edu/?id=1910#!m/560020" ] ] }, @@ -5476,10 +11695,119 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84609\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84609/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.995905876159668, + 0.9987812638282776, + 0.9976149797439575, + 0.9988930821418762, + 0.9987735152244568, + 0.9988510608673096, + 0.9995098114013672 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 5 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2857142857142857, + "POSITIVE": 0.7142857142857143 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7142857142857143 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9984551668167114, + 0.9987862706184387, + 0.9981393814086914, + 0.9986888766288757, + 0.9988916516304016, + 0.9989103078842163, + 0.9994902610778809 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.7142857142857143, + "NEGATIVE": 0.2857142857142857 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7142857142857143 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988629817962646, + 0.9991113543510437, + 0.98674076795578, + 0.9993696808815002, + 0.9924942255020142, + 0.9989033937454224, + 0.9995038509368896 + ], + "sentiment_counts": { + "NEGATIVE": 6, + "POSITIVE": 1 + }, + "sentiment_distribution": { + "NEGATIVE": 0.8571428571428571, + "POSITIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.8571428571428571 + ] + }, + "final_label": "neutral", + "final_count": 11, + "final_proportion": 0.5, + "final_counts": { + "NEGATIVE": 10, + "POSITIVE": 11 + }, + "final_distribution": { + "NEGATIVE": 0.47619047619047616, + "POSITIVE": 0.5238095238095238 + } + } }, { "season_code": "202301", @@ -5518,7 +11846,7 @@ "11:35", "12:50", "LC 204 - Linsly-Chittenden Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -5526,7 +11854,7 @@ "11:35", "12:50", "LC 204 - Linsly-Chittenden Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -5537,17 +11865,112 @@ "Hu" ], "flags": [ - "YC English: 20th\/21st Century" + "YC English: 20th/21st Century" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83859\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83859/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989272952079773, + 0.9987183809280396, + 0.9989292025566101, + 0.9988992214202881, + 0.998879611492157 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989216327667236, + 0.9989234805107117, + 0.9988752007484436, + 0.9988736510276794, + 0.9988607168197632 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989120960235596, + 0.9989216327667236, + 0.998894989490509, + 0.9989330172538757, + 0.9989041090011597 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 15 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -5585,7 +12008,7 @@ "13:00", "14:15", "PWG - PWG", - "https:\/\/map.yale.edu\/?id=1910#!m\/559944" + "https://map.yale.edu/?id=1910#!m/559944" ] ], "Thursday": [ @@ -5593,7 +12016,7 @@ "13:00", "14:15", "PWG - PWG", - "https:\/\/map.yale.edu\/?id=1910#!m\/559944" + "https://map.yale.edu/?id=1910#!m/559944" ] ] }, @@ -5605,10 +12028,131 @@ "classnotes": ": TTh 10:30am-12:20pm in PWG 5TH-FL - Payne Whitney Gymnasium 5TH-FL", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84935\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84935/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989225268363953, + 0.9989136457443237, + 0.9979599714279175, + 0.9988886713981628, + 0.998854398727417, + 0.9984899759292603, + 0.9987700581550598, + 0.9988594055175781, + 0.9988656044006348 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988768696784973, + 0.998763918876648, + 0.9989286065101624, + 0.9988524913787842, + 0.998884379863739, + 0.9989307522773743, + 0.9984837174415588 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989197254180908, + 0.9980745315551758, + 0.9987118244171143, + 0.9988671541213989, + 0.9988582134246826, + 0.9988917708396912, + 0.9991201758384705, + 0.9988930821418762, + 0.9989111423492432, + 0.9989073276519775, + 0.9989145994186401 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9090909090909091 + ] + }, + "final_label": "POSITIVE", + "final_count": 26, + "final_proportion": 0.9629629629629629, + "final_counts": { + "POSITIVE": 26, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9629629629629629, + "NEGATIVE": 0.037037037037037035 + } + } }, { "season_code": "202301", @@ -5652,7 +12196,7 @@ "14:30", "15:45", "HQ C03 - Humanities Quadrangle C03", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -5660,7 +12204,7 @@ "14:30", "15:45", "HQ C03 - Humanities Quadrangle C03", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -5674,10 +12218,105 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83286\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83286/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988073110580444, + 0.998848557472229, + 0.9987161159515381, + 0.9988049268722534 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998894989490509, + 0.9967054724693298, + 0.9984285235404968, + 0.9988842606544495, + 0.9989232420921326, + 0.9984130859375 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987163543701172, + 0.9909997582435608, + 0.9967576861381531, + 0.9988337159156799 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 0.7857142857142857, + "final_counts": { + "POSITIVE": 11, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.7857142857142857, + "NEGATIVE": 0.21428571428571427 + } + } }, { "season_code": "202301", @@ -5715,7 +12354,7 @@ "9:25", "11:15", "HQ 129 - Humanities Quadrangle 129", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -5726,11 +12365,94 @@ "rp_attr": "", "classnotes": "", "final_exam": "HTBA", - "course_home_url": "https:\/\/yale.instructure.com\/courses\/87326", + "course_home_url": "https://yale.instructure.com/courses/87326", "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981356859207153, + 0.9989211559295654, + 0.998865008354187 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989315867424011, + 0.9989266991615295 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988976716995239, + 0.9984686970710754, + 0.9984412789344788, + 0.9988657236099243 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 9 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -5764,7 +12486,7 @@ "15:30", "16:20", "WLH 002 - William L. Harkness Hall 002", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -5783,7 +12505,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -5817,7 +12567,7 @@ "16:30", "17:20", "WLH 002 - William L. Harkness Hall 002", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -5836,7 +12586,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -5897,7 +12675,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -5958,7 +12764,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -5998,7 +12832,7 @@ "10:30", "11:20", "WLH 207 - William L. Harkness Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -6006,7 +12840,7 @@ "10:30", "11:20", "WLH 207 - William L. Harkness Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -6017,7 +12851,7 @@ "Hu" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -6025,10 +12859,131 @@ "classnotes": "", "final_exam": "Wednesday, May 10, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83279\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83279/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988565444946289, + 0.9988932013511658, + 0.9986244440078735, + 0.9989213943481445, + 0.9987640380859375, + 0.9988493919372559, + 0.9988866448402405 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9978806972503662, + 0.9990952014923096, + 0.9989263415336609, + 0.9980321526527405, + 0.9963645339012146, + 0.9988352656364441, + 0.998491644859314, + 0.9989197254180908, + 0.9888995289802551, + 0.9984050393104553, + 0.9918504357337952 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 8 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2727272727272727, + "POSITIVE": 0.7272727272727273 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7272727272727273 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9976517558097839, + 0.9988802075386047, + 0.997117280960083, + 0.9946708083152771, + 0.9989094734191895, + 0.9988920092582703, + 0.9989240765571594, + 0.9995013475418091, + 0.9987043142318726 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 21, + "final_proportion": 0.7777777777777778, + "final_counts": { + "POSITIVE": 21, + "NEGATIVE": 6 + }, + "final_distribution": { + "POSITIVE": 0.7777777777777778, + "NEGATIVE": 0.2222222222222222 + } + } }, { "season_code": "202301", @@ -6067,7 +13022,7 @@ "13:30", "15:20", "LC 209 - Linsly-Chittenden Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -6083,10 +13038,91 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85441\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85441/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981787204742432, + 0.9988449811935425 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988112449645996, + 0.9989196062088013 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9995088577270508, + 0.9986069798469543, + 0.9985492825508118 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 0.8571428571428571, + "final_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + } + } }, { "season_code": "202301", @@ -6125,7 +13161,7 @@ "13:30", "14:20", "LORIA 351 - Loria Center 351", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ], "Wednesday": [ @@ -6133,7 +13169,7 @@ "13:30", "14:20", "LORIA 351 - Loria Center 351", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -6150,10 +13186,89 @@ "classnotes": "", "final_exam": "Tuesday, May 9, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86013\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86013/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987807869911194, + 0.9987756609916687, + 0.9989203214645386 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989007711410522 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989268183708191, + 0.9988956451416016, + 0.9935749173164368 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 7 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -6186,7 +13301,7 @@ "15:30", "16:20", "LORIA 259 - Loria Center 259", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -6203,7 +13318,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -6236,7 +13379,7 @@ "17:00", "17:50", "LORIA 259 - Loria Center 259", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -6253,12 +13396,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "Learn about the application of advanced quantitative research methods through research on African politics and development topics. Students develop their proficiency to critically engage social science research while also learning how to implement these techniques. The class begins with a discussion of research in developing contexts, including discussions of data availability and using research to support policy-making, followed by an overview of causal inference. Next, students are introduced to several prominent research design techniques including time series analysis, regression discontinuity design, difference-in-difference methods, instrumental variables analysis and various experimental designs. Each week students discuss papers using these methods on topics related to ethnic favoritism and clientelism, conflict and economic growth, rural\/ urban politics and voter turnout in the African context. Students learn to implement some of these analyses using R statistical software and data from African sources such as Afrobarometer and Statistics South Africa.", + "description": "Learn about the application of advanced quantitative research methods through research on African politics and development topics. Students develop their proficiency to critically engage social science research while also learning how to implement these techniques. The class begins with a discussion of research in developing contexts, including discussions of data availability and using research to support policy-making, followed by an overview of causal inference. Next, students are introduced to several prominent research design techniques including time series analysis, regression discontinuity design, difference-in-difference methods, instrumental variables analysis and various experimental designs. Each week students discuss papers using these methods on topics related to ethnic favoritism and clientelism, conflict and economic growth, rural/ urban politics and voter turnout in the African context. Students learn to implement some of these analyses using R statistical software and data from African sources such as Afrobarometer and Statistics South Africa.", "short_title": "Causal Inference and African ...", "title": "Causal Inference and African Politics", "school": "YC", @@ -6291,7 +13462,7 @@ "13:00", "14:15", "WTS A46 - Watson Center 60 Sachem Street A46", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -6299,7 +13470,7 @@ "13:00", "14:15", "WTS A46 - Watson Center 60 Sachem Street A46", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -6313,10 +13484,89 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84187\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84187/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989235997200012, + 0.9935652613639832 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988514184951782, + 0.9987741112709045 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989216327667236, + 0.9987987279891968, + 0.9988746047019958 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 7 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -6357,7 +13607,7 @@ "13:00", "14:15", "WLH 113 - William L. Harkness Hall 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -6365,7 +13615,7 @@ "13:00", "14:15", "WLH 113 - William L. Harkness Hall 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -6379,10 +13629,143 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86173\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/86173/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987286925315857, + 0.9987770915031433, + 0.9988585710525513, + 0.9987416863441467, + 0.9989053010940552, + 0.9986703395843506, + 0.9985929131507874, + 0.9988076686859131, + 0.9987892508506775, + 0.9989145994186401, + 0.997857391834259 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989179372787476, + 0.9988939166069031, + 0.9982935786247253, + 0.9988971948623657, + 0.9989332556724548, + 0.9989209175109863, + 0.9988062381744385, + 0.9750773310661316, + 0.9988754391670227, + 0.9989145994186401, + 0.9987932443618774, + 0.9983556866645813 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9166666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988995790481567, + 0.9981922507286072, + 0.9989373087882996, + 0.9988808035850525, + 0.9989155530929565, + 0.998898983001709, + 0.9988975524902344, + 0.9989354014396667, + 0.9902792572975159, + 0.999200165271759 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "final_label": "POSITIVE", + "final_count": 31, + "final_proportion": 0.9393939393939394, + "final_counts": { + "POSITIVE": 31, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9393939393939394, + "NEGATIVE": 0.06060606060606061 + } + } }, { "season_code": "202301", @@ -6421,7 +13804,7 @@ "11:35", "12:25", "LC 101 - Linsly-Chittenden Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -6429,7 +13812,7 @@ "11:35", "12:25", "LC 101 - Linsly-Chittenden Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -6452,10 +13835,235 @@ "classnotes": "", "final_exam": "Monday, May 8, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84152\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84152/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987562894821167, + 0.9988101720809937, + 0.998812198638916, + 0.9987877011299133, + 0.9989226460456848, + 0.9986705780029297, + 0.992493212223053, + 0.9987874627113342, + 0.9981644749641418, + 0.9986024498939514, + 0.9988968372344971, + 0.9988287091255188, + 0.9988141059875488, + 0.9988805651664734, + 0.9989277720451355, + 0.9989349246025085, + 0.9989283680915833, + 0.9987395405769348, + 0.998838484287262, + 0.998607337474823, + 0.9973012804985046, + 0.998441755771637, + 0.9985637068748474 + ], + "sentiment_counts": { + "POSITIVE": 23, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989344477653503, + 0.9977486729621887, + 0.9988313317298889, + 0.9903234243392944, + 0.9988895058631897, + 0.9988394379615784, + 0.9977655410766602, + 0.9989011287689209, + 0.9977489113807678, + 0.9989079236984253, + 0.967765212059021, + 0.9988524913787842, + 0.9962761402130127, + 0.9992448091506958, + 0.9988967180252075, + 0.9988719820976257, + 0.9988642930984497, + 0.9988962411880493, + 0.9988676309585571, + 0.9988985061645508, + 0.9985074400901794, + 0.998654842376709, + 0.9987982511520386, + 0.9949601888656616, + 0.9984134435653687 + ], + "sentiment_counts": { + "POSITIVE": 23, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.92, + "NEGATIVE": 0.08 + }, + "sentiment_overall": [ + "POSITIVE", + 0.92 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998842716217041, + 0.9988793730735779, + 0.9989176988601685, + 0.9987180233001709, + 0.9984157085418701, + 0.9985045194625854, + 0.9989129304885864, + 0.9987353682518005, + 0.997117280960083, + 0.9989315867424011, + 0.9987334609031677, + 0.9989283680915833, + 0.9988105297088623, + 0.9989203214645386, + 0.9988334774971008, + 0.9987239241600037, + 0.9986592531204224, + 0.9988738894462585, + 0.9994937181472778, + 0.9989111423492432, + 0.9989197254180908, + 0.9982553124427795, + 0.9987375140190125, + 0.9989107847213745, + 0.9989123344421387, + 0.9987045526504517, + 0.9988260865211487, + 0.9966247081756592, + 0.9988939166069031, + 0.9989058971405029, + 0.9988914132118225 + ], + "sentiment_counts": { + "POSITIVE": 30, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.967741935483871, + "NEGATIVE": 0.03225806451612903 + }, + "sentiment_overall": [ + "POSITIVE", + 0.967741935483871 + ] + }, + "final_label": "POSITIVE", + "final_count": 76, + "final_proportion": 0.9620253164556962, + "final_counts": { + "POSITIVE": 76, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.9620253164556962, + "NEGATIVE": 0.0379746835443038 + } + } }, { "season_code": "202301", @@ -6488,7 +14096,7 @@ "16:00", "16:50", "LC 210 - Linsly-Chittenden Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -6505,7 +14113,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -6538,7 +14174,7 @@ "17:00", "17:50", "LC 210 - Linsly-Chittenden Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -6555,7 +14191,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -6588,7 +14252,7 @@ "19:00", "19:50", "LC 213 - Linsly-Chittenden Hall 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -6605,7 +14269,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -6638,7 +14330,7 @@ "10:30", "11:20", "HQ 401 - Humanities Quadrangle 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -6655,7 +14347,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -6693,7 +14413,7 @@ "9:25", "10:15", "WLH 211 - William L. Harkness Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -6701,7 +14421,7 @@ "9:25", "10:15", "WLH 211 - William L. Harkness Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -6715,10 +14435,89 @@ "classnotes": "", "final_exam": "Tuesday, May 9, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84156\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84156/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988722205162048, + 0.9988704323768616 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.998871386051178, + 0.9994980096817017 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9987930059432983, + 0.9977242350578308 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "final_label": "POSITIVE", + "final_count": 4, + "final_proportion": 0.6666666666666666, + "final_counts": { + "POSITIVE": 4, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + } + } }, { "season_code": "202301", @@ -6750,7 +14549,7 @@ "17:00", "17:50", "WTS A42 - Watson Center 60 Sachem Street A42", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -6767,7 +14566,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -6799,7 +14626,7 @@ "19:00", "19:50", "WLH 009 - William L. Harkness Hall 009", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -6816,12 +14643,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "The peculiar nature of Portugal as a colonial power produced a very distinct history in the five Portuguese-speaking African countries, namely Angola, Guin\u00e9-Bissau (Guinea-Bissau), Mo\u00e7ambique (Mozambique), and the Atlantic islands of Cabo-Verde (Cape Verde) and S\u00e3o Tom\u00e9 e Pr\u00edncipe. Lusophone Africa is a lose term that refers to the world created by Portugal\u2019s colonialism in Africa. This course explores this distinct history through the lens of culture and politics. Focusing on the long twentieth-century, we consider Lusophone Africa as a study unit, dissecting its disparate societies, cultures, and political trajectories, while remaining anchored in the general context of Africa. Military conquest, colonial rule, race\/lusotropicalism, nationalism, and liberation struggle are some of the core themes of the course.\u00a0We begin with a brief assessment of Portugal\u2019s efforts to retain its colonial enclaves amid the voracious expansion of British, French, Belgian, and German presence in Africa in the late 19th century. But our focus is on the twentieth-century, from the establishment of the colonial administration in the early 1900s to the fall of the Portuguese empire in 1974. We dedicate a good portion of the term to exploring the multiple ways (cultural and political) in which Africans responded to Portugal\u2019s encroachment and how they navigated the color bar that came to dictate their social mobility under colonial rule. We end with the multifaceted longings for self-determination that led to the longest and bloodiest liberation wars in Africa.\u00a0Our readings include scholarly essays (old and recent), primary sources, literary works (novels, poetry and short stories), photographs, music and films. We become acquainted with Portuguese-speaking African voices, faces, and places. Lu\u00eds Bernardo Honwana\u2019s collection of short stories in\u00a0We Killed Mangy Dog and Other Stories\u00a0(1964) and Zez\u00e9 Gamboa\u2019s film\u00a0The Great Kilapy\u00a0(2012) carry us through the important theme of race and race relations. While cautious in situating the discussion of race in its historical context, these and other materials challenge us to think about race relations and emancipation in our time.", + "description": "The peculiar nature of Portugal as a colonial power produced a very distinct history in the five Portuguese-speaking African countries, namely Angola, Guin\u00e9-Bissau (Guinea-Bissau), Mo\u00e7ambique (Mozambique), and the Atlantic islands of Cabo-Verde (Cape Verde) and S\u00e3o Tom\u00e9 e Pr\u00edncipe. Lusophone Africa is a lose term that refers to the world created by Portugal\u2019s colonialism in Africa. This course explores this distinct history through the lens of culture and politics. Focusing on the long twentieth-century, we consider Lusophone Africa as a study unit, dissecting its disparate societies, cultures, and political trajectories, while remaining anchored in the general context of Africa. Military conquest, colonial rule, race/lusotropicalism, nationalism, and liberation struggle are some of the core themes of the course.\u00a0We begin with a brief assessment of Portugal\u2019s efforts to retain its colonial enclaves amid the voracious expansion of British, French, Belgian, and German presence in Africa in the late 19th century. But our focus is on the twentieth-century, from the establishment of the colonial administration in the early 1900s to the fall of the Portuguese empire in 1974. We dedicate a good portion of the term to exploring the multiple ways (cultural and political) in which Africans responded to Portugal\u2019s encroachment and how they navigated the color bar that came to dictate their social mobility under colonial rule. We end with the multifaceted longings for self-determination that led to the longest and bloodiest liberation wars in Africa.\u00a0Our readings include scholarly essays (old and recent), primary sources, literary works (novels, poetry and short stories), photographs, music and films. We become acquainted with Portuguese-speaking African voices, faces, and places. Lu\u00eds Bernardo Honwana\u2019s collection of short stories in\u00a0We Killed Mangy Dog and Other Stories\u00a0(1964) and Zez\u00e9 Gamboa\u2019s film\u00a0The Great Kilapy\u00a0(2012) carry us through the important theme of race and race relations. While cautious in situating the discussion of race in its historical context, these and other materials challenge us to think about race relations and emancipation in our time.", "short_title": "Culture and Politics in Lusop...", "title": "Culture and Politics in Lusophone Africa, 1885-1992", "school": "YC", @@ -6854,7 +14709,7 @@ "13:30", "15:20", "HQ 317 - Humanities Quadrangle 317", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -6873,10 +14728,103 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84162\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84162/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988481998443604, + 0.9988793730735779, + 0.998910665512085, + 0.9986259937286377, + 0.9987245202064514 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989155530929565, + 0.9989134073257446, + 0.9989193677902222, + 0.9980341792106628, + 0.9989042282104492 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988823533058167, + 0.9982553124427795, + 0.9989373087882996, + 0.9988514184951782 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 14 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -6914,7 +14862,7 @@ "10:30", "11:20", "LC 211 - Linsly-Chittenden Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -6922,7 +14870,7 @@ "10:30", "11:20", "LC 211 - Linsly-Chittenden Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -6936,10 +14884,179 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84682\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84682/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987910389900208, + 0.9988688826560974, + 0.9972422122955322, + 0.9985758066177368, + 0.9987579584121704, + 0.9989088773727417, + 0.9988604784011841, + 0.9973220229148865, + 0.9988985061645508, + 0.9988924860954285, + 0.9987435936927795, + 0.9986060261726379, + 0.9988760352134705, + 0.998907208442688, + 0.998820960521698, + 0.9987034797668457, + 0.9989174604415894, + 0.9989064931869507 + ], + "sentiment_counts": { + "POSITIVE": 18, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987861514091492, + 0.9988094568252563, + 0.9988623857498169, + 0.9988717436790466, + 0.9988842606544495, + 0.9989064931869507, + 0.9986580610275269, + 0.998916506767273, + 0.9989266991615295, + 0.9988003969192505, + 0.9987733960151672, + 0.9989122152328491, + 0.9994982481002808, + 0.9988453388214111, + 0.9988454580307007, + 0.9989355206489563 + ], + "sentiment_counts": { + "POSITIVE": 14, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982762336730957, + 0.9980693459510803, + 0.9989257454872131, + 0.9988240599632263, + 0.9988741278648376, + 0.9985396862030029, + 0.9989216327667236, + 0.998914361000061, + 0.9981603026390076, + 0.9988679885864258, + 0.9989356398582458, + 0.9989073276519775, + 0.9989114999771118, + 0.999488115310669, + 0.9988590478897095, + 0.999495267868042, + 0.9989365935325623 + ], + "sentiment_counts": { + "POSITIVE": 15, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8823529411764706, + "NEGATIVE": 0.11764705882352941 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8823529411764706 + ] + }, + "final_label": "POSITIVE", + "final_count": 47, + "final_proportion": 0.9215686274509803, + "final_counts": { + "POSITIVE": 47, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.9215686274509803, + "NEGATIVE": 0.0784313725490196 + } + } }, { "season_code": "202301", @@ -6971,7 +15088,7 @@ "9:25", "10:15", "WTS A35 - Watson Center 60 Sachem Street A35", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -6988,7 +15105,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -7020,7 +15165,7 @@ "10:30", "11:20", "WTS A35 - Watson Center 60 Sachem Street A35", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -7037,7 +15182,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -7085,7 +15258,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -7123,7 +15324,7 @@ "13:30", "15:20", "WLH 001 - William L. Harkness Hall 001", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -7146,10 +15347,137 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84169\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84169/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985640645027161, + 0.9989367127418518, + 0.9982323050498962, + 0.9988573789596558, + 0.9988158941268921, + 0.9976891279220581, + 0.9988183379173279, + 0.9987140893936157 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989114999771118, + 0.9992039799690247, + 0.9929284453392029, + 0.9989000558853149, + 0.9988652467727661, + 0.9989062547683716, + 0.9987396597862244, + 0.9989100694656372, + 0.9989317059516907, + 0.9988303780555725 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988718628883362, + 0.9981794357299805, + 0.9988988637924194, + 0.9987340569496155, + 0.9989336133003235, + 0.9982768297195435, + 0.9988942742347717, + 0.9989362359046936, + 0.9988498687744141, + 0.9989053010940552, + 0.9989327788352966, + 0.9989001750946045 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 27, + "final_proportion": 0.9, + "final_counts": { + "POSITIVE": 27, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + } + } }, { "season_code": "202301", @@ -7190,7 +15518,7 @@ "13:30", "15:20", "WLH 209 - William L. Harkness Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -7206,10 +15534,111 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84122\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84122/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988210797309875, + 0.9989069700241089, + 0.9988895058631897, + 0.9987397789955139, + 0.9989055395126343 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987258315086365, + 0.9988890290260315, + 0.9988699555397034, + 0.9986448884010315, + 0.9987479448318481, + 0.998298704624176 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988559484481812, + 0.9989215135574341, + 0.9988529682159424, + 0.9983460903167725, + 0.995510458946228, + 0.9989089965820312, + 0.9974592328071594 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 18 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -7247,7 +15676,7 @@ "10:30", "12:20", "PWG 5TH-FL - Payne Whitney Gymnasium 5TH-FL", - "https:\/\/map.yale.edu\/?id=1910#!m\/559944" + "https://map.yale.edu/?id=1910#!m/559944" ] ], "Thursday": [ @@ -7255,7 +15684,7 @@ "10:30", "12:20", "PWG 5TH-FL - Payne Whitney Gymnasium 5TH-FL", - "https:\/\/map.yale.edu\/?id=1910#!m\/559944" + "https://map.yale.edu/?id=1910#!m/559944" ] ] }, @@ -7269,10 +15698,123 @@ "classnotes": "PWG 5th floor ", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84945\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84945/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988532066345215, + 0.9988420605659485, + 0.998838484287262, + 0.9988746047019958, + 0.9987643957138062, + 0.9988104104995728, + 0.99892657995224, + 0.9988783001899719 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989262223243713, + 0.998810887336731, + 0.9989323019981384, + 0.9987967014312744, + 0.998883068561554, + 0.9989137649536133, + 0.9989010095596313, + 0.998229444026947 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989114999771118, + 0.9989271759986877, + 0.9987034797668457, + 0.9988638162612915, + 0.9988788962364197, + 0.9989137649536133, + 0.9989031553268433, + 0.9989035129547119 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 24, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 24 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -7318,7 +15860,7 @@ "13:30", "15:20", "WLH 202 - William L. Harkness Hall 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -7338,10 +15880,93 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84127\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84127/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998846173286438, + 0.9987742304801941, + 0.9987353682518005 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989000558853149, + 0.9988996982574463, + 0.9988102912902832 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989320635795593, + 0.9989295601844788, + 0.9988728165626526 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 9 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -7381,7 +16006,7 @@ "15:30", "17:20", "LC 213 - Linsly-Chittenden Hall 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -7392,7 +16017,7 @@ "Hu" ], "flags": [ - "YC English: 20th\/21st Century", + "YC English: 20th/21st Century", "YC English: Senior Seminar" ], "regnotes": "", @@ -7400,10 +16025,115 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84033\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84033/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988672733306885, + 0.9989069700241089, + 0.9989054203033447, + 0.9988871216773987, + 0.9988522529602051 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988466501235962, + 0.9988954067230225, + 0.9988530874252319, + 0.9989056587219238, + 0.9989100694656372, + 0.9989363551139832, + 0.9988939166069031 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.99883633852005, + 0.9988934397697449, + 0.9979865550994873, + 0.9989062547683716, + 0.9981436729431152, + 0.9989215135574341, + 0.9989238381385803, + 0.9989191293716431 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 20 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -7443,15 +16173,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87965\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87965/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "It is time to \"reopen and reimagine Africa.\" This course requires students to research and redesign policies that will help African nations emerge economically stronger and with a population that is better educated and healthier by 2050. Similarly, students examine, analyze, and support and\/or criticize the long-term policies of African nations. This requires students to engage with up-and-coming African scholars, businesspersons, educators, and policy makers to ensure that the recommendations are not conceived in a vacuum. This course also has to examine the obstacles and challenges of great-power competition among the United States, PRC, Russia, and the EU on Africa when designing alternative or status quo policies.", + "description": "It is time to \"reopen and reimagine Africa.\" This course requires students to research and redesign policies that will help African nations emerge economically stronger and with a population that is better educated and healthier by 2050. Similarly, students examine, analyze, and support and/or criticize the long-term policies of African nations. This requires students to engage with up-and-coming African scholars, businesspersons, educators, and policy makers to ensure that the recommendations are not conceived in a vacuum. This course also has to examine the obstacles and challenges of great-power competition among the United States, PRC, Russia, and the EU on Africa when designing alternative or status quo policies.", "short_title": "Reopening and Reimagining Africa", "title": "Reopening and Reimagining Africa", "school": "GS", @@ -7484,7 +16242,7 @@ "13:30", "15:20", "HQ 229 - Humanities Quadrangle 229", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -7496,10 +16254,38 @@ "classnotes": "Open enrollment. Permission of instructor not required.", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85075\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/85075/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -7537,7 +16323,7 @@ "9:25", "11:15", "WTS A39 - Watson Center 60 Sachem Street A39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -7549,10 +16335,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85089\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85089/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -7590,7 +16404,7 @@ "13:30", "15:20", "SDQ BUSH-S104 - Sterling Divinity Quadrangle BUSH-S104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -7602,10 +16416,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87077\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87077/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -7643,7 +16485,7 @@ "15:30", "17:20", "WLH 112 - William L. Harkness Hall 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -7655,10 +16497,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85092\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85092/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -7696,7 +16566,7 @@ "13:30", "15:20", "HQ C15 - Humanities Quadrangle C15", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -7708,10 +16578,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84222\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84222/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -7750,7 +16648,7 @@ "9:25", "11:15", "HQ 109 - Humanities Quadrangle 109", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -7762,10 +16660,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84166\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84166/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -7802,7 +16728,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -7839,7 +16793,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -7885,7 +16867,7 @@ "13:30", "15:20", "WLH 202 - William L. Harkness Hall 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -7900,10 +16882,93 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84127\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84127/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998846173286438, + 0.9987742304801941, + 0.9987353682518005 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989000558853149, + 0.9988996982574463, + 0.9988102912902832 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989320635795593, + 0.9989295601844788, + 0.9988728165626526 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 9 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -7940,7 +17005,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -7978,7 +17071,7 @@ "9:00", "10:15", "WLH 205 - William L. Harkness Hall 205", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -7986,7 +17079,7 @@ "9:00", "10:15", "WLH 205 - William L. Harkness Hall 205", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -8000,15 +17093,43 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83347\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "", - "description": "The peculiar nature of Portugal as a colonial power produced a very distinct history in the five Portuguese-speaking African countries, namely Angola, Guin\u00e9-Bissau (Guinea-Bissau), Mo\u00e7ambique (Mozambique), and the Atlantic islands of Cabo-Verde (Cape Verde) and S\u00e3o Tom\u00e9 e Pr\u00edncipe. Lusophone Africa is a lose term that refers to the world created by Portugal\u2019s colonialism in Africa. This course explores this distinct history through the lens of culture and politics. Focusing on the long twentieth-century, we consider Lusophone Africa as a study unit, dissecting its disparate societies, cultures, and political trajectories, while remaining anchored in the general context of Africa. Military conquest, colonial rule, race\/lusotropicalism, nationalism, and liberation struggle are some of the core themes of the course.\u00a0We begin with a brief assessment of Portugal\u2019s efforts to retain its colonial enclaves amid the voracious expansion of British, French, Belgian, and German presence in Africa in the late 19th century. But our focus is on the twentieth-century, from the establishment of the colonial administration in the early 1900s to the fall of the Portuguese empire in 1974. We dedicate a good portion of the term to exploring the multiple ways (cultural and political) in which Africans responded to Portugal\u2019s encroachment and how they navigated the color bar that came to dictate their social mobility under colonial rule. We end with the multifaceted longings for self-determination that led to the longest and bloodiest liberation wars in Africa.\u00a0Our readings include scholarly essays (old and recent), primary sources, literary works (novels, poetry and short stories), photographs, music and films. We become acquainted with Portuguese-speaking African voices, faces, and places. Lu\u00eds Bernardo Honwana\u2019s collection of short stories in\u00a0We Killed Mangy Dog and Other Stories\u00a0(1964) and Zez\u00e9 Gamboa\u2019s film\u00a0The Great Kilapy\u00a0(2012) carry us through the important theme of race and race relations. While cautious in situating the discussion of race in its historical context, these and other materials challenge us to think about race relations and emancipation in our time.", + "syllabus_url": "https://yale.instructure.com/courses/83347/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } + }, + { + "season_code": "202301", + "requirements": "", + "description": "The peculiar nature of Portugal as a colonial power produced a very distinct history in the five Portuguese-speaking African countries, namely Angola, Guin\u00e9-Bissau (Guinea-Bissau), Mo\u00e7ambique (Mozambique), and the Atlantic islands of Cabo-Verde (Cape Verde) and S\u00e3o Tom\u00e9 e Pr\u00edncipe. Lusophone Africa is a lose term that refers to the world created by Portugal\u2019s colonialism in Africa. This course explores this distinct history through the lens of culture and politics. Focusing on the long twentieth-century, we consider Lusophone Africa as a study unit, dissecting its disparate societies, cultures, and political trajectories, while remaining anchored in the general context of Africa. Military conquest, colonial rule, race/lusotropicalism, nationalism, and liberation struggle are some of the core themes of the course.\u00a0We begin with a brief assessment of Portugal\u2019s efforts to retain its colonial enclaves amid the voracious expansion of British, French, Belgian, and German presence in Africa in the late 19th century. But our focus is on the twentieth-century, from the establishment of the colonial administration in the early 1900s to the fall of the Portuguese empire in 1974. We dedicate a good portion of the term to exploring the multiple ways (cultural and political) in which Africans responded to Portugal\u2019s encroachment and how they navigated the color bar that came to dictate their social mobility under colonial rule. We end with the multifaceted longings for self-determination that led to the longest and bloodiest liberation wars in Africa.\u00a0Our readings include scholarly essays (old and recent), primary sources, literary works (novels, poetry and short stories), photographs, music and films. We become acquainted with Portuguese-speaking African voices, faces, and places. Lu\u00eds Bernardo Honwana\u2019s collection of short stories in\u00a0We Killed Mangy Dog and Other Stories\u00a0(1964) and Zez\u00e9 Gamboa\u2019s film\u00a0The Great Kilapy\u00a0(2012) carry us through the important theme of race and race relations. While cautious in situating the discussion of race in its historical context, these and other materials challenge us to think about race relations and emancipation in our time.", "short_title": "Culture and Politics in Lusop...", "title": "Culture and Politics in Lusophone Africa, 1885-1992", "school": "YC", @@ -8044,7 +17165,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -8082,7 +17231,7 @@ "9:00", "10:15", "WLH 205 - William L. Harkness Hall 205", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -8090,7 +17239,7 @@ "9:00", "10:15", "WLH 205 - William L. Harkness Hall 205", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -8102,10 +17251,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83347\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83347/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -8142,7 +17319,7 @@ "13:30", "15:20", "SML 323 - Sterling Memorial Library 323", - "https:\/\/map.yale.edu\/?id=1910#!m\/563698" + "https://map.yale.edu/?id=1910#!m/563698" ] ] }, @@ -8154,10 +17331,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83357\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83357/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -8195,7 +17400,7 @@ "13:00", "14:15", "BASSLB L71 - Bass Library L71", - "https:\/\/map.yale.edu\/?id=1910#!m\/564574" + "https://map.yale.edu/?id=1910#!m/564574" ] ], "Wednesday": [ @@ -8203,7 +17408,7 @@ "13:00", "14:15", "BASSLB L71 - Bass Library L71", - "https:\/\/map.yale.edu\/?id=1910#!m\/564574" + "https://map.yale.edu/?id=1910#!m/564574" ] ] }, @@ -8212,7 +17417,7 @@ "Hu" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: First-Year Sem", "YC AMST: Gateway Courses", "YC History: United States", @@ -8227,10 +17432,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84095\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84095/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -8269,7 +17502,7 @@ "14:30", "15:45", "LC 105 - Linsly-Chittenden Hall 105", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -8277,7 +17510,7 @@ "14:30", "15:45", "LC 105 - Linsly-Chittenden Hall 105", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -8287,17 +17520,136 @@ ], "flags": [ "YC AMST: First-Year Sem", - "YC English: 18th\/19th Century " + "YC English: 18th/19th Century " ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83864\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83864/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989175796508789, + 0.9986910223960876, + 0.9987429976463318, + 0.9987626075744629, + 0.9989041090011597, + 0.9988994598388672, + 0.9988794922828674, + 0.9988011121749878, + 0.9988583326339722 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994024038314819, + 0.9987537860870361, + 0.9988158941268921, + 0.9989157915115356, + 0.9971063733100891, + 0.9989058971405029, + 0.9981903433799744, + 0.9989369511604309, + 0.9986433386802673 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 7 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2222222222222222, + "POSITIVE": 0.7777777777777778 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7777777777777778 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988930821418762, + 0.9988705515861511, + 0.998765230178833, + 0.998934805393219, + 0.9980506896972656, + 0.9988742470741272, + 0.9988773465156555, + 0.9989223480224609 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 24, + "final_proportion": 0.9230769230769231, + "final_counts": { + "POSITIVE": 24, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9230769230769231, + "NEGATIVE": 0.07692307692307693 + } + } }, { "season_code": "202301", @@ -8342,7 +17694,35 @@ "syllabus_url": "", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -8375,7 +17755,7 @@ "14:30", "15:20", "WLH 004 - William L. Harkness Hall 004", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -8394,7 +17774,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -8427,7 +17835,7 @@ "15:30", "16:20", "WLH 115 - William L. Harkness Hall 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -8446,7 +17854,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -8479,7 +17915,7 @@ "16:00", "16:50", "WLH 004 - William L. Harkness Hall 004", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -8498,7 +17934,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -8537,7 +18001,7 @@ "11:35", "12:50", "WLH 119 - William L. Harkness Hall 119", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -8545,7 +18009,7 @@ "11:35", "12:50", "WLH 119 - William L. Harkness Hall 119", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -8554,7 +18018,7 @@ "Hu" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC History: United States", "YC History: Cultural History", @@ -8570,10 +18034,195 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84120\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84120/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988976716995239, + 0.9981581568717957, + 0.9988256096839905, + 0.998914361000061, + 0.9988784193992615, + 0.9988855719566345, + 0.9988792538642883, + 0.9988859295845032, + 0.9988511800765991, + 0.9988211989402771, + 0.9818598628044128, + 0.9986016154289246, + 0.9989354014396667, + 0.9988081455230713, + 0.9987228512763977, + 0.9985349178314209, + 0.9987442493438721, + 0.9987358450889587 + ], + "sentiment_counts": { + "POSITIVE": 18, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9976886510848999, + 0.999294638633728, + 0.9989166259765625, + 0.9830789566040039, + 0.9989305138587952, + 0.998824417591095, + 0.9987088441848755, + 0.9988985061645508, + 0.9995061159133911, + 0.9976128339767456, + 0.9986706972122192, + 0.9961349964141846, + 0.9979481101036072, + 0.9986960291862488, + 0.9988349080085754, + 0.9995013475418091, + 0.9995057582855225, + 0.9989029169082642, + 0.9983946681022644 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 6 + }, + "sentiment_distribution": { + "POSITIVE": 0.6842105263157895, + "NEGATIVE": 0.3157894736842105 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6842105263157895 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989209175109863, + 0.9924600720405579, + 0.9964550733566284, + 0.9989292025566101, + 0.9989263415336609, + 0.9988822340965271, + 0.9989282488822937, + 0.9988425970077515, + 0.9989334940910339, + 0.9994993209838867, + 0.9986735582351685, + 0.9988254904747009, + 0.9992857575416565, + 0.9973172545433044, + 0.9988986253738403, + 0.9987059831619263, + 0.9989305138587952, + 0.9987673759460449, + 0.9980136156082153, + 0.9989374279975891, + 0.9994974136352539, + 0.9984540939331055 + ], + "sentiment_counts": { + "POSITIVE": 18, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.8181818181818182, + "NEGATIVE": 0.18181818181818182 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8181818181818182 + ] + }, + "final_label": "POSITIVE", + "final_count": 49, + "final_proportion": 0.8305084745762712, + "final_counts": { + "POSITIVE": 49, + "NEGATIVE": 10 + }, + "final_distribution": { + "POSITIVE": 0.8305084745762712, + "NEGATIVE": 0.1694915254237288 + } + } }, { "season_code": "202301", @@ -8606,7 +18255,7 @@ "10:30", "11:20", "LC 210 - Linsly-Chittenden Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -8625,7 +18274,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -8658,7 +18335,7 @@ "11:35", "12:25", "LC 212 - Linsly-Chittenden Hall 212", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -8677,7 +18354,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -8711,7 +18416,7 @@ "15:30", "16:20", "WLH 002 - William L. Harkness Hall 002", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -8730,7 +18435,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -8764,7 +18497,7 @@ "16:30", "17:20", "WLH 002 - William L. Harkness Hall 002", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -8783,7 +18516,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -8844,7 +18605,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -8905,7 +18694,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -8945,7 +18762,7 @@ "10:30", "11:20", "WLH 207 - William L. Harkness Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -8953,7 +18770,7 @@ "10:30", "11:20", "WLH 207 - William L. Harkness Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -8964,7 +18781,7 @@ "Hu" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -8972,10 +18789,131 @@ "classnotes": "", "final_exam": "Wednesday, May 10, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83279\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83279/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988565444946289, + 0.9988932013511658, + 0.9986244440078735, + 0.9989213943481445, + 0.9987640380859375, + 0.9988493919372559, + 0.9988866448402405 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9978806972503662, + 0.9990952014923096, + 0.9989263415336609, + 0.9980321526527405, + 0.9963645339012146, + 0.9988352656364441, + 0.998491644859314, + 0.9989197254180908, + 0.9888995289802551, + 0.9984050393104553, + 0.9918504357337952 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 8 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2727272727272727, + "POSITIVE": 0.7272727272727273 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7272727272727273 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9976517558097839, + 0.9988802075386047, + 0.997117280960083, + 0.9946708083152771, + 0.9989094734191895, + 0.9988920092582703, + 0.9989240765571594, + 0.9995013475418091, + 0.9987043142318726 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 21, + "final_proportion": 0.7777777777777778, + "final_counts": { + "POSITIVE": 21, + "NEGATIVE": 6 + }, + "final_distribution": { + "POSITIVE": 0.7777777777777778, + "NEGATIVE": 0.2222222222222222 + } + } }, { "season_code": "202301", @@ -9014,7 +18952,7 @@ "9:25", "11:15", "LC 213 - Linsly-Chittenden Hall 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -9023,7 +18961,7 @@ "Hu" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC English: Creative Writing" ], @@ -9032,10 +18970,117 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84298\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84298/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987819790840149, + 0.9988090991973877, + 0.998837411403656, + 0.9989269375801086, + 0.9988377690315247, + 0.9989253878593445, + 0.9983886480331421 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989109039306641, + 0.9989126920700073, + 0.9988999366760254, + 0.9989186525344849, + 0.9989385008811951, + 0.9989142417907715, + 0.998909592628479 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982553124427795, + 0.9989036321640015, + 0.9989383816719055, + 0.9988756775856018, + 0.9989141225814819, + 0.9989344477653503, + 0.9985232949256897 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 21, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 21 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -9073,7 +19118,7 @@ "15:30", "17:20", "HQ 123 - Humanities Quadrangle 123", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -9082,7 +19127,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC Urban Studies: Elective" ], @@ -9091,10 +19136,113 @@ "classnotes": "Please send a brief email describing your interest in the course to kristin.hankins@yale.edu.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85924\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85924/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988977909088135, + 0.9987658262252808, + 0.9989099502563477, + 0.9988794922828674, + 0.9989153146743774 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988860487937927, + 0.9989259839057922, + 0.9945061802864075, + 0.9989246726036072, + 0.9988216757774353 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981784820556641, + 0.9981922507286072, + 0.998907208442688, + 0.9973631501197815, + 0.9523453116416931, + 0.998935878276825, + 0.998817503452301, + 0.9989043474197388 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 6 + }, + "sentiment_distribution": { + "NEGATIVE": 0.25, + "POSITIVE": 0.75 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 0.8888888888888888, + "final_counts": { + "POSITIVE": 16, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + } + } }, { "season_code": "202301", @@ -9132,7 +19280,7 @@ "13:30", "14:20", "HQ L02 - Humanities Quadrangle L02", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -9140,7 +19288,7 @@ "13:30", "14:20", "HQ L02 - Humanities Quadrangle L02", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -9149,7 +19297,7 @@ "Hu" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC History: United States", "YC Hist: Lecture Courses" @@ -9159,10 +19307,209 @@ "classnotes": "", "final_exam": "Tuesday, May 9, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85437\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/85437/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998650848865509, + 0.9988651275634766, + 0.9953464865684509, + 0.9988678693771362, + 0.998870313167572, + 0.9995046854019165, + 0.9994913339614868, + 0.9987381100654602, + 0.9777122735977173, + 0.9986141920089722, + 0.9915369749069214, + 0.9960952401161194, + 0.9980641007423401, + 0.9989124536514282, + 0.9989161491394043, + 0.9989332556724548, + 0.9988885521888733, + 0.9989281296730042 + ], + "sentiment_counts": { + "POSITIVE": 14, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.7777777777777778, + "NEGATIVE": 0.2222222222222222 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7777777777777778 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9995027780532837, + 0.9995092153549194, + 0.999229907989502, + 0.9977614879608154, + 0.9994871616363525, + 0.998869001865387, + 0.9994908571243286, + 0.9988732933998108, + 0.9994874000549316, + 0.9995101690292358, + 0.9995046854019165, + 0.9957003593444824, + 0.9967719912528992, + 0.9995079040527344, + 0.9995086193084717, + 0.9984155893325806, + 0.9994732737541199, + 0.9994638562202454, + 0.9987758994102478, + 0.9995065927505493, + 0.9989227652549744, + 0.9994751811027527, + 0.9989338517189026, + 0.998896598815918, + 0.9978325963020325 + ], + "sentiment_counts": { + "NEGATIVE": 17, + "POSITIVE": 8 + }, + "sentiment_distribution": { + "NEGATIVE": 0.68, + "POSITIVE": 0.32 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.68 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9966368675231934, + 0.9995102882385254, + 0.9994988441467285, + 0.9987887740135193, + 0.8382492065429688, + 0.9988510608673096, + 0.9989306330680847, + 0.9989216327667236, + 0.9995131492614746, + 0.9995089769363403, + 0.9994780421257019, + 0.9992399215698242, + 0.9975749850273132, + 0.9922950267791748, + 0.9995018243789673, + 0.9980016350746155, + 0.9995025396347046, + 0.9995095729827881, + 0.9989333748817444, + 0.9995073080062866, + 0.9989153146743774, + 0.99882572889328, + 0.998297393321991 + ], + "sentiment_counts": { + "NEGATIVE": 17, + "POSITIVE": 6 + }, + "sentiment_distribution": { + "NEGATIVE": 0.7391304347826086, + "POSITIVE": 0.2608695652173913 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.7391304347826086 + ] + }, + "final_label": "NEGATIVE", + "final_count": 38, + "final_proportion": 0.5757575757575758, + "final_counts": { + "POSITIVE": 28, + "NEGATIVE": 38 + }, + "final_distribution": { + "POSITIVE": 0.42424242424242425, + "NEGATIVE": 0.5757575757575758 + } + } }, { "season_code": "202301", @@ -9194,7 +19541,7 @@ "13:30", "14:20", "HQ 229 - Humanities Quadrangle 229", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -9211,7 +19558,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -9243,7 +19618,7 @@ "14:30", "15:20", "HQ 229 - Humanities Quadrangle 229", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -9260,7 +19635,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -9292,7 +19695,7 @@ "13:30", "14:20", "WALL53 208 - 53 Wall Street 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/559554" + "https://map.yale.edu/?id=1910#!m/559554" ] ] }, @@ -9309,7 +19712,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -9341,7 +19772,7 @@ "14:30", "15:20", "WALL53 208 - 53 Wall Street 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/559554" + "https://map.yale.edu/?id=1910#!m/559554" ] ] }, @@ -9358,7 +19789,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -9397,7 +19856,7 @@ "9:25", "11:15", "HQ C64 - Humanities Quadrangle C64", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -9406,7 +19865,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -9414,10 +19873,127 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84023\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84023/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989288449287415, + 0.9987844824790955, + 0.9989166259765625, + 0.9989097118377686, + 0.99863201379776, + 0.998916506767273, + 0.9987566471099854, + 0.9988452196121216 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998921275138855, + 0.9989266991615295, + 0.9986843466758728, + 0.9988682270050049, + 0.9988901019096375, + 0.9964128136634827, + 0.9989172220230103 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989333748817444, + 0.997117280960083, + 0.9989145994186401, + 0.998802900314331, + 0.9988590478897095, + 0.9989140033721924, + 0.9988597631454468, + 0.99883633852005, + 0.9988880753517151, + 0.9989270567893982, + 0.9989181756973267 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 26, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 26 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -9457,7 +20033,7 @@ "11:35", "12:50", "WLH 201 - William L. Harkness Hall 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -9465,7 +20041,7 @@ "11:35", "12:50", "WLH 201 - William L. Harkness Hall 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -9475,7 +20051,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -9483,10 +20059,287 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83362\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83362/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9944273233413696, + 0.9988986253738403, + 0.9989239573478699, + 0.998918890953064, + 0.9987027645111084, + 0.9981843829154968, + 0.998914361000061, + 0.9987805485725403, + 0.9987607002258301, + 0.9988158941268921, + 0.9989057779312134, + 0.998930037021637, + 0.9988939166069031, + 0.998790442943573, + 0.9987103939056396, + 0.9910886287689209, + 0.9987867474555969, + 0.9995083808898926, + 0.998880922794342, + 0.9995052814483643, + 0.9988871216773987, + 0.9986042380332947, + 0.9989161491394043, + 0.998835027217865, + 0.9988269209861755, + 0.9988269209861755, + 0.9986566305160522, + 0.9989162683486938, + 0.9985319375991821, + 0.9986377358436584 + ], + "sentiment_counts": { + "POSITIVE": 28, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.9333333333333333, + "NEGATIVE": 0.06666666666666667 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9333333333333333 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986831545829773, + 0.9986336827278137, + 0.9988625049591064, + 0.9989078044891357, + 0.9986060261726379, + 0.9988481998443604, + 0.9986518025398254, + 0.9994981288909912, + 0.9986425042152405, + 0.9995063543319702, + 0.9985685348510742, + 0.9988466501235962, + 0.9989294409751892, + 0.9938819408416748, + 0.9987922310829163, + 0.9988736510276794, + 0.9968108534812927, + 0.9988744854927063, + 0.999502420425415, + 0.9988064765930176, + 0.9988455772399902, + 0.9994230270385742, + 0.9811413884162903, + 0.9995037317276001, + 0.9988105297088623, + 0.9934137463569641, + 0.9987344145774841, + 0.937844455242157, + 0.9987655878067017, + 0.9974685907363892, + 0.9469312429428101, + 0.9989070892333984, + 0.9988446235656738, + 0.9988981485366821, + 0.999242901802063, + 0.9976551532745361 + ], + "sentiment_counts": { + "POSITIVE": 27, + "NEGATIVE": 9 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981409311294556, + 0.9966179728507996, + 0.9983184337615967, + 0.9982252717018127, + 0.9949954748153687, + 0.9988924860954285, + 0.9987180233001709, + 0.9975698590278625, + 0.9961349964141846, + 0.9983940720558167, + 0.9983274340629578, + 0.9968445301055908, + 0.998736560344696, + 0.9988449811935425, + 0.9989351630210876, + 0.998920202255249, + 0.9989142417907715, + 0.998741090297699, + 0.9987003803253174, + 0.9985774755477905, + 0.7381450533866882, + 0.9989122152328491, + 0.9989204406738281, + 0.9980016350746155, + 0.998401939868927, + 0.999508261680603, + 0.9989388585090637, + 0.9989350438117981, + 0.9994799494743347, + 0.9988722205162048, + 0.9925923943519592, + 0.9953004121780396, + 0.9989240765571594, + 0.9987947940826416, + 0.9989268183708191, + 0.9988850951194763, + 0.9988704323768616, + 0.9984244108200073, + 0.9988484382629395 + ], + "sentiment_counts": { + "POSITIVE": 32, + "NEGATIVE": 7 + }, + "sentiment_distribution": { + "POSITIVE": 0.8205128205128205, + "NEGATIVE": 0.1794871794871795 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8205128205128205 + ] + }, + "final_label": "POSITIVE", + "final_count": 87, + "final_proportion": 0.8285714285714286, + "final_counts": { + "POSITIVE": 87, + "NEGATIVE": 18 + }, + "final_distribution": { + "POSITIVE": 0.8285714285714286, + "NEGATIVE": 0.17142857142857143 + } + } }, { "season_code": "202301", @@ -9520,7 +20373,7 @@ "9:25", "10:15", "WLH 204 - William L. Harkness Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -9538,7 +20391,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -9572,7 +20453,7 @@ "11:35", "12:25", "HQ C03 - Humanities Quadrangle C03", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -9590,7 +20471,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -9624,7 +20533,7 @@ "11:35", "12:25", "HQ 225 - Humanities Quadrangle 225", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -9642,7 +20551,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -9676,7 +20613,7 @@ "13:30", "14:20", "HQ 225 - Humanities Quadrangle 225", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -9694,7 +20631,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -9728,7 +20693,7 @@ "15:30", "16:20", "HQ C03 - Humanities Quadrangle C03", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -9746,7 +20711,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -9780,7 +20773,7 @@ "16:30", "17:20", "HQ C03 - Humanities Quadrangle C03", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -9798,7 +20791,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -9831,7 +20852,7 @@ ], "flags": [ "YC AMST: Gateway Courses", - "YC English: 20th\/21st Century", + "YC English: 20th/21st Century", "YC English: Junior Seminar" ], "regnotes": "", @@ -9842,7 +20863,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -9880,7 +20929,7 @@ "9:25", "11:15", "LC 213 - Linsly-Chittenden Hall 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -9889,9 +20938,9 @@ "Hu" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", - "YC English: 20th\/21st Century", + "YC English: 20th/21st Century", "YC English: Junior Seminar" ], "regnotes": "", @@ -9899,10 +20948,93 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83371\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83371/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982315897941589, + 0.998418927192688 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9980140924453735, + 0.9989123344421387, + 0.9954847097396851 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998816728591919, + 0.9985755681991577, + 0.9988188147544861 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 0.875, + "final_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + } + } }, { "season_code": "202301", @@ -9941,7 +21073,7 @@ "13:30", "15:20", "WLH 210 - William L. Harkness Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -9950,7 +21082,7 @@ "Hu" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -9958,10 +21090,89 @@ "classnotes": "Please send an email describing your interest in this course to hector.peralta@yale.edu.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83376\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83376/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988231062889099, + 0.9988419413566589 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987760186195374, + 0.9986621141433716, + 0.9988853335380554 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989235997200012, + 0.998609185218811 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 7 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -10001,7 +21212,7 @@ "16:00", "17:15", "HQ 225 - Humanities Quadrangle 225", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -10009,7 +21220,7 @@ "16:00", "17:15", "HQ 225 - Humanities Quadrangle 225", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -10018,7 +21229,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -10026,10 +21237,111 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85734\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85734/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987499713897705, + 0.9987164735794067, + 0.9988082647323608, + 0.9987187385559082 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984831213951111, + 0.9989250302314758, + 0.9989160299301147, + 0.9987025260925293, + 0.9989237189292908, + 0.998938262462616 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989321827888489, + 0.9989129304885864, + 0.9989251494407654, + 0.998212456703186, + 0.9988704323768616, + 0.9989181756973267, + 0.9989356398582458, + 0.9988330006599426 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 18 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -10068,7 +21380,7 @@ "13:30", "15:20", "HQ C01 - Humanities Quadrangle C01", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -10078,7 +21390,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC GLBL: Elective" ], @@ -10087,10 +21399,103 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85291\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85291/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989148378372192, + 0.9989301562309265, + 0.9988470077514648 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989328980445862, + 0.9989349246025085, + 0.9988600015640259, + 0.9985889792442322, + 0.9986955523490906 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987051486968994, + 0.9989172220230103, + 0.9988988637924194, + 0.9994789958000183, + 0.9984238147735596 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 0.9230769230769231, + "final_counts": { + "POSITIVE": 12, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9230769230769231, + "NEGATIVE": 0.07692307692307693 + } + } }, { "season_code": "202301", @@ -10129,7 +21534,7 @@ "11:35", "12:50", "HQ C07 - Humanities Quadrangle C07", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -10137,7 +21542,7 @@ "11:35", "12:50", "HQ C07 - Humanities Quadrangle C07", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -10146,7 +21551,7 @@ "Hu" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -10154,15 +21559,116 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83381\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83381/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "", - "description": "Historiographic narrative of United States history over the past century and critical\/methodological practices of thinking historically and of identifying ways in which our present has been conditioned by historical legacies, both momentous and subtle. Topics include the New Deal, WWII, the arms race, Reaganomics, and 9\/11 in terms of their lasting influence on American conditions in the present.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989016056060791, + 0.9987323880195618, + 0.9989314675331116, + 0.9989388585090637, + 0.9988126754760742, + 0.9891110062599182, + 0.9988378882408142 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988805651664734, + 0.9988908171653748, + 0.9989149570465088, + 0.9987832903862, + 0.9987952709197998 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989142417907715, + 0.998839795589447, + 0.9989023208618164, + 0.9981922507286072, + 0.9988651275634766, + 0.9989197254180908 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 18 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } + }, + { + "season_code": "202301", + "requirements": "", + "description": "Historiographic narrative of United States history over the past century and critical/methodological practices of thinking historically and of identifying ways in which our present has been conditioned by historical legacies, both momentous and subtle. Topics include the New Deal, WWII, the arms race, Reaganomics, and 9/11 in terms of their lasting influence on American conditions in the present.", "short_title": "The History of Right Now", "title": "The History of Right Now", "school": "YC", @@ -10191,7 +21697,7 @@ "Hu" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -10202,7 +21708,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -10242,7 +21776,7 @@ "13:30", "15:20", "HQ C03 - Humanities Quadrangle C03", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -10259,15 +21793,118 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84032\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84032/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "", - "description": "This course combines in-depth engagement of texts in black feminist theory with a wide-ranging survey of significant sculpture, painting, performance, photography, and installation art made by black women in the 19th to 21st centuries. We engage the ways that black women disturb, dissolve, and give definition to the conceptions of gender and racialization that shape the modern human. Theoretical concepts representing the singular modes of dispossession that ensnare black femininity, as well as black femininity's re\/production of the modern world\u2014concepts such as black flesh, ungendering, fungibility, black mater, plasticity\u2014are applied to analysis of artworks and the artworks in turn flesh out these concepts. We utilize formal analysis and art historical context to interrogate the ways that black female artists illuminate, critique, and intervene on not only constructions of blackness, gender, and sexuality but also art historical categories and ideologies. Through the figure of the black woman and black feminist theory, the class probes the role that the aesthetic can play in illuminating the violent aporias of hegemonic gendered and racial constructions while being attentive to its limits. Artists studied include Edmonia Lewis, Meta Warrick Fuller, Lois Mailou Jones, Kara Walker, Alma Thomas,\u00a0Faith Ringgold, Senga Nengudi, Beverly Buchanan, Adrian Piper,\u00a0Lorna Simpson, Martine Syms, and more. The class makes extensive use of the Yale University Art Gallery's holdings.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987165927886963, + 0.9989297986030579, + 0.9989022016525269, + 0.9987567663192749 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989044666290283, + 0.9987654685974121, + 0.9982131719589233, + 0.9987983703613281, + 0.9989168643951416, + 0.9988625049591064 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988883137702942, + 0.9989199638366699, + 0.9995104074478149, + 0.9989161491394043, + 0.9987264275550842, + 0.9988746047019958, + 0.998871386051178, + 0.998908281326294 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 0.9444444444444444, + "final_counts": { + "POSITIVE": 17, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9444444444444444, + "NEGATIVE": 0.05555555555555555 + } + } + }, + { + "season_code": "202301", + "requirements": "", + "description": "This course combines in-depth engagement of texts in black feminist theory with a wide-ranging survey of significant sculpture, painting, performance, photography, and installation art made by black women in the 19th to 21st centuries. We engage the ways that black women disturb, dissolve, and give definition to the conceptions of gender and racialization that shape the modern human. Theoretical concepts representing the singular modes of dispossession that ensnare black femininity, as well as black femininity's re/production of the modern world\u2014concepts such as black flesh, ungendering, fungibility, black mater, plasticity\u2014are applied to analysis of artworks and the artworks in turn flesh out these concepts. We utilize formal analysis and art historical context to interrogate the ways that black female artists illuminate, critique, and intervene on not only constructions of blackness, gender, and sexuality but also art historical categories and ideologies. Through the figure of the black woman and black feminist theory, the class probes the role that the aesthetic can play in illuminating the violent aporias of hegemonic gendered and racial constructions while being attentive to its limits. Artists studied include Edmonia Lewis, Meta Warrick Fuller, Lois Mailou Jones, Kara Walker, Alma Thomas,\u00a0Faith Ringgold, Senga Nengudi, Beverly Buchanan, Adrian Piper,\u00a0Lorna Simpson, Martine Syms, and more. The class makes extensive use of the Yale University Art Gallery's holdings.", "short_title": "Visual Art and Black Feminist...", "title": "Visual Art and Black Feminist Theory", "school": "YC", @@ -10302,7 +21939,7 @@ "13:30", "15:20", "WLH 006 - William L. Harkness Hall 006", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -10318,10 +21955,101 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85880\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85880/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987030029296875, + 0.9987471103668213, + 0.998915433883667, + 0.9988490343093872 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9934101700782776, + 0.9985740184783936, + 0.9989018440246582 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9883019328117371, + 0.9983124732971191, + 0.9989066123962402, + 0.9988566637039185, + 0.9989107847213745 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 4 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2, + "POSITIVE": 0.8 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 0.8333333333333334, + "final_counts": { + "POSITIVE": 10, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + } + } }, { "season_code": "202301", @@ -10361,7 +22089,7 @@ "9:25", "11:15", "WALL81 201 - 81 Wall Street 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -10377,10 +22105,135 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83303\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83303/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988480806350708, + 0.9989012479782104, + 0.9989172220230103, + 0.9986692667007446, + 0.9986727237701416, + 0.9987316727638245, + 0.9988932013511658, + 0.9989190101623535, + 0.9988895058631897 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.998233437538147, + 0.9988462924957275, + 0.9989042282104492, + 0.9988855719566345, + 0.9989101886749268, + 0.9989123344421387, + 0.9989299178123474, + 0.9989319443702698, + 0.9989330172538757, + 0.9888333082199097 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988939166069031, + 0.9986318945884705, + 0.9989064931869507, + 0.9986655712127686, + 0.9985539317131042, + 0.998836100101471, + 0.9989390969276428, + 0.9989014863967896, + 0.9986961483955383, + 0.9986067414283752 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 28, + "final_proportion": 0.9655172413793104, + "final_counts": { + "POSITIVE": 28, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9655172413793104, + "NEGATIVE": 0.034482758620689655 + } + } }, { "season_code": "202301", @@ -10423,7 +22276,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -10460,7 +22341,7 @@ "9:25", "11:15", "HQ 123 - Humanities Quadrangle 123", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -10478,10 +22359,107 @@ "classnotes": "Please send an email to kristin.hankins@yale.edu describing your interest in this course.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85982\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85982/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998925507068634, + 0.9988383650779724, + 0.9989243149757385, + 0.9989210367202759, + 0.9988946318626404 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988831877708435, + 0.998913049697876, + 0.9989275336265564, + 0.9989226460456848, + 0.9989340901374817 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998724639415741, + 0.9987747073173523, + 0.9984865188598633, + 0.9989035129547119, + 0.9986761212348938, + 0.9989338517189026 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 16 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -10519,7 +22497,7 @@ "10:30", "12:20", "PWG 8TH-FL - Payne Whitney Gymnasium 8TH-FL", - "https:\/\/map.yale.edu\/?id=1910#!m\/559944" + "https://map.yale.edu/?id=1910#!m/559944" ] ] }, @@ -10533,10 +22511,105 @@ "classnotes": "Payne Whitney Gym 8th floor, room 802? ", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84949\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84949/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988483190536499, + 0.998846173286438, + 0.9988086223602295, + 0.9988640546798706, + 0.9989047050476074 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989377856254578, + 0.9977728724479675, + 0.998801589012146, + 0.9986128807067871, + 0.9989328980445862 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985913634300232, + 0.9988846182823181, + 0.9988859295845032, + 0.9984466433525085, + 0.9989134073257446 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 15 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -10574,7 +22647,7 @@ "13:30", "15:20", "HQ C11 - Humanities Quadrangle C11", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -10600,10 +22673,119 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84159\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84159/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986571073532104, + 0.9986770749092102, + 0.998874843120575, + 0.9989238381385803, + 0.9989232420921326 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.998908281326294, + 0.9988724589347839, + 0.9988952875137329, + 0.9988856911659241, + 0.9988139867782593, + 0.993047297000885, + 0.998924195766449, + 0.9965834021568298 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988671541213989, + 0.9989104270935059, + 0.9984447360038757, + 0.9989243149757385, + 0.9989368319511414, + 0.9984751343727112, + 0.9989200830459595, + 0.9989151954650879 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 0.9047619047619048, + "final_counts": { + "POSITIVE": 19, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9047619047619048, + "NEGATIVE": 0.09523809523809523 + } + } }, { "season_code": "202301", @@ -10641,7 +22823,7 @@ "13:30", "15:20", "LC 213 - Linsly-Chittenden Hall 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -10651,7 +22833,7 @@ ], "flags": [ "YC AMST: Junior Seminars", - "YC English: 20th\/21st Century", + "YC English: 20th/21st Century", "YC English: Junior Seminar" ], "regnotes": "", @@ -10659,10 +22841,95 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83277\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83277/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9994540810585022, + 0.9984342455863953, + 0.999257504940033 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 1 + }, + "sentiment_distribution": { + "NEGATIVE": 0.6666666666666666, + "POSITIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.6666666666666666 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.998863697052002, + 0.9988842606544495, + 0.9994994401931763 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9994906187057495, + 0.9987939596176147, + 0.9995080232620239 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 1 + }, + "sentiment_distribution": { + "NEGATIVE": 0.6666666666666666, + "POSITIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.6666666666666666 + ] + }, + "final_label": "NEGATIVE", + "final_count": 5, + "final_proportion": 0.5555555555555556, + "final_counts": { + "NEGATIVE": 5, + "POSITIVE": 4 + }, + "final_distribution": { + "NEGATIVE": 0.5555555555555556, + "POSITIVE": 0.4444444444444444 + } + } }, { "season_code": "202301", @@ -10700,7 +22967,7 @@ "15:30", "17:20", "ELM294 303 - Broadway Rehearsal Lofts 303", - "https:\/\/map.yale.edu\/?id=1910#!m\/559982" + "https://map.yale.edu/?id=1910#!m/559982" ] ] }, @@ -10718,10 +22985,97 @@ "classnotes": " 294 Elm Street Room 303", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84947\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84947/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988250136375427, + 0.9988709092140198, + 0.99873286485672, + 0.998930037021637 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9987097978591919, + 0.9989081621170044, + 0.9988627433776855, + 0.9994937181472778 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989074468612671, + 0.997117280960083 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 0.9, + "final_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + } + } }, { "season_code": "202301", @@ -10760,7 +23114,7 @@ "9:25", "11:15", "HQ C03 - Humanities Quadrangle C03", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -10776,10 +23130,103 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85444\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85444/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988112449645996, + 0.9988905787467957, + 0.9988864064216614, + 0.9978811144828796 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989191293716431, + 0.9989144802093506, + 0.9989323019981384, + 0.9946439266204834 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988698363304138, + 0.9988847374916077, + 0.9989292025566101, + 0.9989120960235596, + 0.998765230178833 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 0.8461538461538461, + "final_counts": { + "POSITIVE": 11, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8461538461538461, + "NEGATIVE": 0.15384615384615385 + } + } }, { "season_code": "202301", @@ -10821,7 +23268,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -10861,7 +23336,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -10898,7 +23401,7 @@ "13:30", "15:20", "DC 215 - Davenport College 215", - "https:\/\/map.yale.edu\/?id=1910#!m\/560004" + "https://map.yale.edu/?id=1910#!m/560004" ] ] }, @@ -10915,10 +23418,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83280\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83280/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -10961,7 +23492,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -10999,7 +23558,7 @@ "13:30", "15:20", "SA10 105 - 10 Sachem Street 105", - "https:\/\/map.yale.edu\/?id=1910#!m\/559538" + "https://map.yale.edu/?id=1910#!m/559538" ] ] }, @@ -11017,10 +23576,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83339\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83339/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -11060,10 +23647,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83283\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83283/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -11106,7 +23721,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -11144,7 +23787,7 @@ "9:25", "11:15", "HQ C07 - Humanities Quadrangle C07", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -11168,10 +23811,107 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84138\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84138/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998764157295227, + 0.9978411197662354, + 0.9974895715713501, + 0.9984826445579529, + 0.9989262223243713 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9968435764312744, + 0.9988378882408142, + 0.9988467693328857, + 0.998907208442688, + 0.9987995624542236 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989043474197388, + 0.9988406300544739, + 0.9988792538642883, + 0.9986971020698547, + 0.9988584518432617, + 0.9988861680030823 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 16 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -11214,7 +23954,7 @@ "13:30", "15:20", "WLH 203 - William L. Harkness Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -11232,10 +23972,103 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85108\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85108/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987395405769348, + 0.9988908171653748, + 0.9986171722412109, + 0.9986900687217712 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989182949066162, + 0.9989043474197388, + 0.9984216690063477, + 0.996428906917572 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989389777183533, + 0.9987634420394897, + 0.9988518953323364, + 0.9986575841903687, + 0.998894989490509 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 0.9230769230769231, + "final_counts": { + "POSITIVE": 12, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9230769230769231, + "NEGATIVE": 0.07692307692307693 + } + } }, { "season_code": "202301", @@ -11275,7 +24108,7 @@ "19:00", "22:00", "HQ 127 - Humanities Quadrangle 127", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -11283,7 +24116,7 @@ "10:30", "13:20", "CCAM 110 - Center for Collab Arts & Media 110", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -11299,10 +24132,38 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85399\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/85399/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -11343,7 +24204,7 @@ "13:30", "15:20", "WLH 209 - William L. Harkness Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -11359,10 +24220,111 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84122\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84122/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988210797309875, + 0.9989069700241089, + 0.9988895058631897, + 0.9987397789955139, + 0.9989055395126343 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987258315086365, + 0.9988890290260315, + 0.9988699555397034, + 0.9986448884010315, + 0.9987479448318481, + 0.998298704624176 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988559484481812, + 0.9989215135574341, + 0.9988529682159424, + 0.9983460903167725, + 0.995510458946228, + 0.9989089965820312, + 0.9974592328071594 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 18 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -11403,7 +24365,7 @@ "15:30", "17:20", "RKZ 102 - Rosenkranz Hall 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -11419,10 +24381,83 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84667\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84667/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9919912219047546 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.99886155128479 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9943179488182068, + 0.9956592917442322 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 4, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 4 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -11459,18 +24494,46 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Consult with the American Studies DUS prior to registration.\nAn application form and a brief prospectus is due the last day of the add\/drop period by 5pm via email to the American Studies DUS and undergraduate registrar. ", + "classnotes": "Consult with the American Studies DUS prior to registration.\nAn application form and a brief prospectus is due the last day of the add/drop period by 5pm via email to the American Studies DUS and undergraduate registrar. ", "final_exam": "No regular final examination", "course_home_url": "", "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course examines a series of transnational literary texts and films that illuminate how the displaced\u2014migrants, exiles, and refugees\u2014 remake home away from their native countries. The twentieth and twenty-first centuries have produced massive displacements due to wars, genocides, racial, ethnic and religious conflicts, economic and climate change, among other factors. Our course focuses on several texts that explore questions of home, nation, and self in the context of specific historical events such as the Holocaust, civil rights movements in the U.S., internment, the Indian partition, African decolonization, and Middle Eastern\/Arab ethno-religious conflicts and wars. We examine these events alongside the shifting legal and political policies and categories related to asylum, humanitarian parole, refugee, and illegal alien status. Exploring themes such as nostalgia, longing, trauma, and memory, we look at the possibilities and limitations of creating, contesting, and imagining home in the diaspora. Our objective is to debate and develop the ethical, political, geographic, and imaginative articulations of home in an era of mass displacements and geo-political crises. We examine how notions of home are imagined alongside and against categories of race, gender, and sexuality.", + "description": "This course examines a series of transnational literary texts and films that illuminate how the displaced\u2014migrants, exiles, and refugees\u2014 remake home away from their native countries. The twentieth and twenty-first centuries have produced massive displacements due to wars, genocides, racial, ethnic and religious conflicts, economic and climate change, among other factors. Our course focuses on several texts that explore questions of home, nation, and self in the context of specific historical events such as the Holocaust, civil rights movements in the U.S., internment, the Indian partition, African decolonization, and Middle Eastern/Arab ethno-religious conflicts and wars. We examine these events alongside the shifting legal and political policies and categories related to asylum, humanitarian parole, refugee, and illegal alien status. Exploring themes such as nostalgia, longing, trauma, and memory, we look at the possibilities and limitations of creating, contesting, and imagining home in the diaspora. Our objective is to debate and develop the ethical, political, geographic, and imaginative articulations of home in an era of mass displacements and geo-political crises. We examine how notions of home are imagined alongside and against categories of race, gender, and sexuality.", "short_title": "The Displaced: Migrant and Re...", "title": "The Displaced: Migrant and Refugee Narratives of the 20th and 21st Centuries", "school": "YC", @@ -11508,7 +24571,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -11545,13 +24636,41 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Consult with the American Studies DUS prior to registration. \nA senior essay application form and a brief prospectus is due by 5pm the last day of the add\/drop period via email to the American Studies DUS and undergraduate registrar.", + "classnotes": "Consult with the American Studies DUS prior to registration. \nA senior essay application form and a brief prospectus is due by 5pm the last day of the add/drop period via email to the American Studies DUS and undergraduate registrar.", "final_exam": "No regular final examination", "course_home_url": "", "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -11588,7 +24707,7 @@ "13:30", "15:20", "HQ C05 - Humanities Quadrangle C05", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -11599,18 +24718,115 @@ ], "regnotes": "", "rp_attr": "", - "classnotes": "Register for this course as part of the AMST 493\/494 sequence.", + "classnotes": "Register for this course as part of the AMST 493/494 sequence.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83302\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83302/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "", - "description": "This graduate seminar explores how nature has been constructed, reorganized, and mobilized in the modern museum, while introducing graduate students to museum studies and museum practice. With history of science\/science studies at its disciplinary core, the course also incorporates methodologies and readings from cultural history, history of art, anthropology, museum studies, critical heritage studies, and art practice. We examine Yale\u2019s museums and collections as sites for forging and defining relations between nature and culture, between the natural and the unnatural, and between human and environment. The course builds toward historically informed discussions of questions about decolonization, repatriation, and repair circulating in current public discourse around natural history museums. Our most sustained engagement will be with the Yale Peabody Museum of Natural History, and the history of natural history in the United States since 1800. The course has a varied format, incorporating seminar discussions of readings, site visits to museums on and off campus, and workshops with Peabody collections and staff. This course helps to build an ongoing dialogue between graduate students and museum staff as the Peabody rethinks its displays for its current renovation, and is intended to lead to a student-curated exhibition at the Peabody in 2024.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989140033721924, + 0.9961957931518555, + 0.9989376664161682, + 0.9989190101623535 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989044666290283, + 0.9963801503181458, + 0.9989302754402161, + 0.9987154006958008, + 0.9971482157707214, + 0.9994266033172607 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989134073257446, + 0.9989151954650879, + 0.9988858103752136, + 0.998928964138031, + 0.9989176988601685 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 0.8666666666666667, + "final_counts": { + "POSITIVE": 13, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8666666666666667, + "NEGATIVE": 0.13333333333333333 + } + } + }, + { + "season_code": "202301", + "requirements": "", + "description": "This graduate seminar explores how nature has been constructed, reorganized, and mobilized in the modern museum, while introducing graduate students to museum studies and museum practice. With history of science/science studies at its disciplinary core, the course also incorporates methodologies and readings from cultural history, history of art, anthropology, museum studies, critical heritage studies, and art practice. We examine Yale\u2019s museums and collections as sites for forging and defining relations between nature and culture, between the natural and the unnatural, and between human and environment. The course builds toward historically informed discussions of questions about decolonization, repatriation, and repair circulating in current public discourse around natural history museums. Our most sustained engagement will be with the Yale Peabody Museum of Natural History, and the history of natural history in the United States since 1800. The course has a varied format, incorporating seminar discussions of readings, site visits to museums on and off campus, and workshops with Peabody collections and staff. This course helps to build an ongoing dialogue between graduate students and museum staff as the Peabody rethinks its displays for its current renovation, and is intended to lead to a student-curated exhibition at the Peabody in 2024.", "short_title": "Nature and the Modern Museum", "title": "Nature and the Modern Museum", "school": "GS", @@ -11645,7 +24861,7 @@ "13:30", "15:20", "ESC 100 - Environmental Sciences Center 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560020" + "https://map.yale.edu/?id=1910#!m/560020" ] ] }, @@ -11660,10 +24876,17 @@ "classnotes": "Classroom Location: ESC 100 ", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84274\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84274/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -11701,7 +24924,7 @@ "14:30", "16:30", "HQ 327 - Humanities Quadrangle 327", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -11716,7 +24939,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -11754,7 +25005,7 @@ "15:30", "17:20", "WLH 208 - William L. Harkness Hall 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -11766,15 +25017,162 @@ "classnotes": "Instructor permission required. Preferred proficiency in Spanish.", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87109\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87109/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "", - "description": "This readings courses immerses students in the critical\/radical tradition of human geography, which investigates how power relations and structural inequalities are spatially produced, contested, and transformed. Topics include the relationship between geography\u2019s development as a discipline and histories of imperialism; indigenous geographies and spatial persistence; spatial theories of capitalism and uneven development; feminist and queer geographies; geographies of blackness, white supremacy, and settler colonialism; gentrification and urban change; critical geographic information science and counter-mapping; and new approaches to landscape and region.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988917708396912, + 0.9988516569137573, + 0.9988903403282166, + 0.9987475872039795, + 0.9988583326339722, + 0.9988800883293152, + 0.9989253878593445, + 0.9989075660705566, + 0.9988868832588196, + 0.998927652835846 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987742304801941, + 0.9986374974250793, + 0.9989356398582458, + 0.9988753199577332, + 0.998227059841156, + 0.998900294303894, + 0.9972379207611084, + 0.9989120960235596, + 0.998648464679718, + 0.9988059997558594, + 0.9985864162445068, + 0.9988881945610046, + 0.9842084050178528, + 0.9985851049423218, + 0.9989078044891357 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986079335212708, + 0.9988734126091003, + 0.9988981485366821, + 0.9989333748817444, + 0.9989216327667236, + 0.9983287453651428, + 0.9986995458602905, + 0.9988420605659485, + 0.9988583326339722, + 0.9962838292121887, + 0.9991474151611328, + 0.9980564713478088, + 0.9989008903503418, + 0.9989357590675354, + 0.9988182187080383 + ], + "sentiment_counts": { + "POSITIVE": 14, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9333333333333333, + "NEGATIVE": 0.06666666666666667 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9333333333333333 + ] + }, + "final_label": "POSITIVE", + "final_count": 36, + "final_proportion": 0.9, + "final_counts": { + "POSITIVE": 36, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + } + } + }, + { + "season_code": "202301", + "requirements": "", + "description": "This readings courses immerses students in the critical/radical tradition of human geography, which investigates how power relations and structural inequalities are spatially produced, contested, and transformed. Topics include the relationship between geography\u2019s development as a discipline and histories of imperialism; indigenous geographies and spatial persistence; spatial theories of capitalism and uneven development; feminist and queer geographies; geographies of blackness, white supremacy, and settler colonialism; gentrification and urban change; critical geographic information science and counter-mapping; and new approaches to landscape and region.", "short_title": "Critical Human Geography", "title": "Critical Human Geography", "school": "GS", @@ -11806,7 +25204,7 @@ "9:25", "11:15", "HQ C07 - Humanities Quadrangle C07", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -11818,10 +25216,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83316\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83316/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -11877,10 +25303,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83321\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83321/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -11919,7 +25373,7 @@ "13:30", "15:20", "HQ 109 - Humanities Quadrangle 109", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -11934,15 +25388,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83326\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83326/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "The course explores recent trends and historiography on several problems through the middle of the nineteenth century: sectionalism, expansion; slavery and the Old South; northern society and reform movements; Civil War causation; the meaning of the Confederacy; why the North won the Civil War; the political, constitutional, and social meanings of emancipation and Reconstruction; violence in Reconstruction society; the relationships between social\/cultural and military\/political history; problems in historical memory; the tension between narrative and analytical history writing; and the ways in which race and gender have reshaped research and interpretive agendas.", + "description": "The course explores recent trends and historiography on several problems through the middle of the nineteenth century: sectionalism, expansion; slavery and the Old South; northern society and reform movements; Civil War causation; the meaning of the Confederacy; why the North won the Civil War; the political, constitutional, and social meanings of emancipation and Reconstruction; violence in Reconstruction society; the relationships between social/cultural and military/political history; problems in historical memory; the tension between narrative and analytical history writing; and the ways in which race and gender have reshaped research and interpretive agendas.", "short_title": "Readings in Nineteenth-Centur...", "title": "Readings in Nineteenth-Century America", "school": "GS", @@ -11976,12 +25458,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "In official and unofficial discourses in the United States, diagnoses of Islam\u2019s various \"crises\" are ubiquitous, and Muslim \"hearts and minds\" are viewed as the \"other\" front in the War on Terror. Since 9\/11, the U.S. State Department has made the reform of Islam an explicit national interest, pouring billions of dollars into USAID projects in Muslim-majority countries, initiating curriculum development programs for madrasas in South Asia, and establishing the Arabic Radio Sawa and the satellite TV station Al-Hurra to propagate the U.S. administration\u2019s political views as well as what it terms a \"liberal\" strain of Islam. Muslim Americans are also consumed by debates about the \"crisis\" of Islam, a crisis of religious authority in which the nature and rapidity of change in the measures of authority are felt to be too difficult to assimilate. This course maps out the various and deeply politically charged contemporary debates about the \"crisis of Islam\" and the question of Islamic reform through an examination of official U.S. policy, transnational pulp Islamic literature, fatwas and essays authored by internationally renowned Muslim jurists and scholars, and historical and ethnographic works that take up the category of crisis as an interpretive device.", + "description": "In official and unofficial discourses in the United States, diagnoses of Islam\u2019s various \"crises\" are ubiquitous, and Muslim \"hearts and minds\" are viewed as the \"other\" front in the War on Terror. Since 9/11, the U.S. State Department has made the reform of Islam an explicit national interest, pouring billions of dollars into USAID projects in Muslim-majority countries, initiating curriculum development programs for madrasas in South Asia, and establishing the Arabic Radio Sawa and the satellite TV station Al-Hurra to propagate the U.S. administration\u2019s political views as well as what it terms a \"liberal\" strain of Islam. Muslim Americans are also consumed by debates about the \"crisis\" of Islam, a crisis of religious authority in which the nature and rapidity of change in the measures of authority are felt to be too difficult to assimilate. This course maps out the various and deeply politically charged contemporary debates about the \"crisis of Islam\" and the question of Islamic reform through an examination of official U.S. policy, transnational pulp Islamic literature, fatwas and essays authored by internationally renowned Muslim jurists and scholars, and historical and ethnographic works that take up the category of crisis as an interpretive device.", "short_title": "Interrogating the Crisis of I...", "title": "Interrogating the Crisis of Islam", "school": "GS", @@ -12015,7 +25525,7 @@ "13:30", "15:20", "WLH 004 - William L. Harkness Hall 004", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -12030,10 +25540,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83331\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83331/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -12072,7 +25610,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -12113,7 +25679,7 @@ "15:30", "17:20", "RKZ 102 - Rosenkranz Hall 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -12125,10 +25691,83 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84667\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84667/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9919912219047546 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.99886155128479 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9943179488182068, + 0.9956592917442322 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 4, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 4 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -12166,7 +25805,7 @@ "9:25", "11:15", "HQ C15 - Humanities Quadrangle C15", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -12178,10 +25817,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84210\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84210/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -12224,7 +25891,7 @@ "13:30", "15:20", "WLH 203 - William L. Harkness Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -12239,15 +25906,108 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85108\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85108/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987395405769348, + 0.9988908171653748, + 0.9986171722412109, + 0.9986900687217712 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989182949066162, + 0.9989043474197388, + 0.9984216690063477, + 0.996428906917572 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989389777183533, + 0.9987634420394897, + 0.9988518953323364, + 0.9986575841903687, + 0.998894989490509 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 0.9230769230769231, + "final_counts": { + "POSITIVE": 12, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9230769230769231, + "NEGATIVE": 0.07692307692307693 + } + } }, { "season_code": "202301", "requirements": "Although the course is open to all graduate students at Yale, it is designed to train graduate students in the WGSS combined Ph.D. and certificate programs in particular.", - "description": "This seminar is designed for graduate students developing research projects that center feminist, queer, decolonial\/postcolonial, and critical race methodologies. Taking an epistemological approach that centers \"encounter\" in its multiple scales and fronts, the course is designed to bridge the disciplinary divides across the humanities and social sciences. As such, it begins with the interdisciplinary insight that any research method can be used in a feminist, queer, decolonial\/postcolonial, and critical race manner\u2014and maybe can even be used to counter-disciplinary ends. While the course engages a wide variety of methods\u2014from ethnographic, historiographic\/archival, and geographic, to literary, media, textual analysis, and cultural studies, and to political theory\u2014this does not unfold as part of a practicum. Students do not experiment with a ready-made \"toolkit.\" For the most part, we critically engage book-length projects that exemplify counter-disciplinary methodologies. Ultimately, students reflect hermeneutically on how method and theory relate in these texts. Foucault has theorized these kinds of reflections as a practice of \"the archaeology of knowledge,\" and the seminar channels it for its potential to lay bare the discursive formations that have rendered only certain Eurocentric, supremacist, and patriarchal preoccupations as legitimate objects of inquiry as well as for its potential to explore the relationship of power to knowledge, the ethics of representation, questions of accountability, and the relationship between disciplinarity and interdisciplinarity.", + "description": "This seminar is designed for graduate students developing research projects that center feminist, queer, decolonial/postcolonial, and critical race methodologies. Taking an epistemological approach that centers \"encounter\" in its multiple scales and fronts, the course is designed to bridge the disciplinary divides across the humanities and social sciences. As such, it begins with the interdisciplinary insight that any research method can be used in a feminist, queer, decolonial/postcolonial, and critical race manner\u2014and maybe can even be used to counter-disciplinary ends. While the course engages a wide variety of methods\u2014from ethnographic, historiographic/archival, and geographic, to literary, media, textual analysis, and cultural studies, and to political theory\u2014this does not unfold as part of a practicum. Students do not experiment with a ready-made \"toolkit.\" For the most part, we critically engage book-length projects that exemplify counter-disciplinary methodologies. Ultimately, students reflect hermeneutically on how method and theory relate in these texts. Foucault has theorized these kinds of reflections as a practice of \"the archaeology of knowledge,\" and the seminar channels it for its potential to lay bare the discursive formations that have rendered only certain Eurocentric, supremacist, and patriarchal preoccupations as legitimate objects of inquiry as well as for its potential to explore the relationship of power to knowledge, the ethics of representation, questions of accountability, and the relationship between disciplinarity and interdisciplinarity.", "short_title": "Methods in Gender and Sexuali...", "title": "Methods in Gender and Sexuality Studies", "school": "GS", @@ -12280,7 +26040,7 @@ "13:30", "15:20", "WLH 014 - William L. Harkness Hall 014", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -12292,10 +26052,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84934\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84934/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -12348,10 +26136,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85246\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85246/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -12393,7 +26209,7 @@ "13:30", "15:20", "HQ C64 - Humanities Quadrangle C64", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -12408,10 +26224,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84212\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84212/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -12448,7 +26292,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -12485,7 +26357,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -12522,7 +26422,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -12559,7 +26487,7 @@ "13:30", "15:20", "HQ 327 - Humanities Quadrangle 327", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -12571,10 +26499,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83356\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83356/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -12613,7 +26569,7 @@ "13:30", "15:20", "HQ 209 - Humanities Quadrangle 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -12627,10 +26583,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83280\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83280/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -12668,12 +26652,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "The course work and practicum\/micro-credential lead to a significant project to be approved by the DGS or assistant DGS (an exhibition, documentary, research paper, etc.) and to be presented in a public forum on its completion.", + "description": "The course work and practicum/micro-credential lead to a significant project to be approved by the DGS or assistant DGS (an exhibition, documentary, research paper, etc.) and to be presented in a public forum on its completion.", "short_title": "Public Humanities Capstone Pr...", "title": "Public Humanities Capstone Project", "school": "GS", @@ -12706,7 +26718,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -12745,7 +26785,7 @@ "11:35", "12:50", "WTS A53 - Watson Center 60 Sachem Street A53", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -12753,7 +26793,7 @@ "11:35", "12:50", "WTS A53 - Watson Center 60 Sachem Street A53", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -12767,10 +26807,179 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83377\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83377/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9948464632034302, + 0.9982507824897766, + 0.9963141083717346, + 0.9982019662857056, + 0.9983668923377991, + 0.9977389574050903, + 0.9987146854400635, + 0.998765230178833, + 0.9987815022468567, + 0.9913017153739929, + 0.998819887638092, + 0.9986207485198975, + 0.9988828301429749 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9230769230769231, + "NEGATIVE": 0.07692307692307693 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9230769230769231 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998881995677948, + 0.9989153146743774, + 0.9980708956718445, + 0.9988847374916077, + 0.9988052845001221, + 0.9994705319404602, + 0.9993419051170349, + 0.9969468712806702, + 0.998849630355835, + 0.9986109733581543, + 0.9987082481384277, + 0.9968881011009216, + 0.9988484382629395, + 0.9995112419128418, + 0.9995059967041016, + 0.9988731741905212 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 6 + }, + "sentiment_distribution": { + "POSITIVE": 0.625, + "NEGATIVE": 0.375 + }, + "sentiment_overall": [ + "POSITIVE", + 0.625 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988201260566711, + 0.9989193677902222, + 0.9988200068473816, + 0.9987913966178894, + 0.9984990358352661, + 0.9980016350746155, + 0.9989326596260071, + 0.9987144470214844, + 0.9986056685447693, + 0.9988431930541992, + 0.9980402588844299, + 0.997117280960083, + 0.9979859590530396, + 0.9988790154457092, + 0.997117280960083, + 0.9985122084617615, + 0.997117280960083, + 0.9908491373062134, + 0.9967213273048401, + 0.9984230995178223, + 0.9995108842849731, + 0.9985857009887695 + ], + "sentiment_counts": { + "POSITIVE": 18, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.8181818181818182, + "NEGATIVE": 0.18181818181818182 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8181818181818182 + ] + }, + "final_label": "POSITIVE", + "final_count": 40, + "final_proportion": 0.7843137254901961, + "final_counts": { + "POSITIVE": 40, + "NEGATIVE": 11 + }, + "final_distribution": { + "POSITIVE": 0.7843137254901961, + "NEGATIVE": 0.21568627450980393 + } + } }, { "season_code": "202301", @@ -12808,7 +27017,7 @@ "9:00", "10:15", "HQ 207 - Humanities Quadrangle 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -12816,7 +27025,7 @@ "9:00", "10:15", "HQ 207 - Humanities Quadrangle 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -12825,17 +27034,136 @@ ], "areas": [], "flags": [ - "YC Math: Algebra\/Number Theory" + "YC Math: Algebra/Number Theory" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "Monday, May 8, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84411\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84411/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985333681106567, + 0.9988006353378296, + 0.9989180564880371, + 0.9949824810028076, + 0.9952164888381958, + 0.9438489675521851, + 0.9978262782096863, + 0.9987988471984863 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988730549812317, + 0.9987461566925049, + 0.9989206790924072, + 0.9934950470924377, + 0.9989345669746399, + 0.9987359642982483, + 0.9987940788269043, + 0.9988021850585938 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987236857414246, + 0.9917808175086975, + 0.9989230036735535, + 0.9989338517189026, + 0.9988025426864624, + 0.9987727999687195, + 0.997117280960083, + 0.9852764010429382, + 0.9982774257659912, + 0.9982653260231018 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 25, + "final_proportion": 0.9615384615384616, + "final_counts": { + "POSITIVE": 25, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9615384615384616, + "NEGATIVE": 0.038461538461538464 + } + } }, { "season_code": "202301", @@ -12873,7 +27201,7 @@ "14:30", "15:45", "WTS A48 - Watson Center 60 Sachem Street A48", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -12881,7 +27209,7 @@ "14:30", "15:45", "WTS A48 - Watson Center 60 Sachem Street A48", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -12890,17 +27218,118 @@ ], "areas": [], "flags": [ - "YC Math: Algebra\/Number Theory" + "YC Math: Algebra/Number Theory" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "Monday, May 8, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84415\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84415/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9921532273292542, + 0.9984467625617981, + 0.9987290501594543, + 0.9987710118293762, + 0.9966170191764832 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9995028972625732, + 0.9988980293273926, + 0.9994925260543823, + 0.9983339905738831, + 0.997317373752594, + 0.9988710284233093, + 0.9994649291038513, + 0.9987812638282776 + ], + "sentiment_counts": { + "NEGATIVE": 5, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.625, + "POSITIVE": 0.375 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.625 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.999487042427063, + 0.9987112283706665, + 0.9987603425979614, + 0.9995025396347046 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 0.5882352941176471, + "final_counts": { + "POSITIVE": 10, + "NEGATIVE": 7 + }, + "final_distribution": { + "POSITIVE": 0.5882352941176471, + "NEGATIVE": 0.4117647058823529 + } + } }, { "season_code": "202301", @@ -12949,17 +27378,45 @@ ], "areas": [], "flags": [ - "YC Math: Algebra\/Number Theory" + "YC Math: Algebra/Number Theory" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "Monday, May 8, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84417\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84417/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -12997,7 +27454,7 @@ "11:35", "12:50", "WTS A30 - Watson Center 60 Sachem Street A30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -13005,7 +27462,7 @@ "11:35", "12:50", "WTS A30 - Watson Center 60 Sachem Street A30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -13014,17 +27471,150 @@ ], "areas": [], "flags": [ - "YC Math: Algebra\/Number Theory" + "YC Math: Algebra/Number Theory" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "Monday, May 8, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84420\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84420/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986065030097961, + 0.9987767338752747, + 0.9984695315361023, + 0.9987785220146179, + 0.9977103471755981, + 0.9988738894462585, + 0.9976143836975098, + 0.998704195022583, + 0.9995030164718628, + 0.9928072690963745, + 0.9976473450660706 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9090909090909091 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9987335801124573, + 0.998938262462616, + 0.9988571405410767, + 0.998884379863739, + 0.9988402724266052, + 0.9989342093467712, + 0.99891197681427, + 0.9988369345664978, + 0.9983844757080078, + 0.9991432428359985 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989007711410522, + 0.9988998174667358, + 0.998927652835846, + 0.9988768696784973, + 0.9983108043670654, + 0.9988935589790344, + 0.9984727501869202, + 0.9986710548400879, + 0.9995065927505493, + 0.9939270615577698, + 0.9968462586402893, + 0.9970671534538269 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9166666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 30, + "final_proportion": 0.9090909090909091, + "final_counts": { + "POSITIVE": 30, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + } + } }, { "season_code": "202301", @@ -13062,7 +27652,7 @@ "11:35", "12:50", "DL 220 - Dunham Laboratory 220", - "https:\/\/map.yale.edu\/?id=1910#!m\/560005" + "https://map.yale.edu/?id=1910#!m/560005" ] ], "Thursday": [ @@ -13070,7 +27660,7 @@ "11:35", "12:50", "DL 220 - Dunham Laboratory 220", - "https:\/\/map.yale.edu\/?id=1910#!m\/560005" + "https://map.yale.edu/?id=1910#!m/560005" ] ] }, @@ -13079,18 +27669,369 @@ ], "areas": [], "flags": [ - "YC Math: Stat\/Applied Math", - "YC Math: Algebra\/Number Theory" + "YC Math: Stat/Applied Math", + "YC Math: Algebra/Number Theory" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "Monday, May 8, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84431\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84431/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9904443621635437, + 0.99863201379776, + 0.9987670183181763, + 0.9947414398193359, + 0.998676598072052, + 0.9914700388908386, + 0.9886142015457153, + 0.8047314882278442, + 0.9989005327224731, + 0.9977495074272156, + 0.9979719519615173, + 0.9989092350006104, + 0.9986637830734253, + 0.9988277554512024, + 0.9984056353569031, + 0.9988623857498169, + 0.9989354014396667, + 0.9975097179412842, + 0.9988585710525513, + 0.9986057877540588, + 0.9886991381645203, + 0.998664379119873, + 0.9936472773551941, + 0.998752236366272, + 0.9918889403343201, + 0.9986854195594788, + 0.9986735582351685, + 0.9987969398498535, + 0.9987707734107971, + 0.9984480142593384, + 0.9975245594978333, + 0.9972994923591614, + 0.9986388087272644, + 0.9987296462059021, + 0.9988722205162048, + 0.9985520243644714, + 0.9985646605491638, + 0.9987213015556335, + 0.9959010481834412, + 0.9984657764434814, + 0.9988584518432617, + 0.9988555908203125, + 0.9988818764686584, + 0.998764157295227, + 0.9975184202194214, + 0.998749852180481 + ], + "sentiment_counts": { + "POSITIVE": 44, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.9565217391304348, + "NEGATIVE": 0.043478260869565216 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9565217391304348 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988856911659241, + 0.9989012479782104, + 0.9988802075386047, + 0.9988848567008972, + 0.9994783997535706, + 0.9987699389457703, + 0.9984830021858215, + 0.9989216327667236, + 0.9989033937454224, + 0.9989325404167175, + 0.9951255917549133, + 0.9955624341964722, + 0.9988840222358704, + 0.9988757967948914, + 0.9989352822303772, + 0.995827853679657, + 0.9989131689071655, + 0.9988929629325867, + 0.9988306164741516, + 0.9989325404167175, + 0.9989281296730042, + 0.9987465143203735, + 0.9987980127334595, + 0.9989283680915833, + 0.9988644123077393, + 0.9988930821418762, + 0.9988160133361816, + 0.9989286065101624, + 0.9988646507263184, + 0.9988654851913452, + 0.9987357258796692, + 0.998755931854248, + 0.9989245533943176, + 0.9989370703697205, + 0.9988380074501038, + 0.999497652053833, + 0.9989328980445862, + 0.998852014541626, + 0.9987766146659851, + 0.9989194869995117, + 0.9988013505935669, + 0.9989142417907715, + 0.9989020824432373, + 0.9989334940910339 + ], + "sentiment_counts": { + "POSITIVE": 41, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.9318181818181818, + "NEGATIVE": 0.06818181818181818 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9318181818181818 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989209175109863, + 0.9988107681274414, + 0.998921275138855, + 0.9987151622772217, + 0.9989124536514282, + 0.9968801736831665, + 0.9890275001525879, + 0.998938262462616, + 0.9988638162612915, + 0.9986359477043152, + 0.9989326596260071, + 0.9987150430679321, + 0.9989375472068787, + 0.9973760843276978, + 0.9988844990730286, + 0.9974592328071594, + 0.9863173365592957, + 0.9989326596260071, + 0.982941210269928, + 0.9947656393051147, + 0.9988848567008972, + 0.9987531900405884, + 0.9930906295776367, + 0.9989381432533264, + 0.9986844658851624, + 0.9989368319511414, + 0.9987107515335083, + 0.997597873210907, + 0.998891294002533, + 0.9934681057929993, + 0.9988332390785217, + 0.9988161325454712, + 0.998909592628479, + 0.9988788962364197, + 0.9989031553268433, + 0.9989174604415894, + 0.9982115030288696, + 0.9987837672233582, + 0.9989338517189026, + 0.9989389777183533, + 0.9978479146957397, + 0.9988381266593933, + 0.9986912608146667, + 0.998802900314331, + 0.9989247918128967, + 0.9989380240440369, + 0.9988491535186768, + 0.9989197254180908, + 0.9987998008728027, + 0.998836100101471, + 0.9988534450531006, + 0.9989218711853027 + ], + "sentiment_counts": { + "POSITIVE": 45, + "NEGATIVE": 7 + }, + "sentiment_distribution": { + "POSITIVE": 0.8653846153846154, + "NEGATIVE": 0.1346153846153846 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8653846153846154 + ] + }, + "final_label": "POSITIVE", + "final_count": 130, + "final_proportion": 0.9154929577464789, + "final_counts": { + "POSITIVE": 130, + "NEGATIVE": 12 + }, + "final_distribution": { + "POSITIVE": 0.9154929577464789, + "NEGATIVE": 0.08450704225352113 + } + } }, { "season_code": "202301", @@ -13128,7 +28069,7 @@ "10:30", "11:20", "LOM 205 - Leet Oliver Memorial Hall 205", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ], "Wednesday": [ @@ -13136,7 +28077,7 @@ "10:30", "11:20", "LOM 205 - Leet Oliver Memorial Hall 205", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ], "Friday": [ @@ -13144,7 +28085,7 @@ "10:30", "11:20", "LOM 205 - Leet Oliver Memorial Hall 205", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ] }, @@ -13153,17 +28094,134 @@ ], "areas": [], "flags": [ - "YC Math: Stat\/Applied Math" + "YC Math: Stat/Applied Math" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "Friday, May 5, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84437\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84437/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984560012817383, + 0.9983121156692505, + 0.9967139959335327, + 0.9985547661781311, + 0.9987884163856506, + 0.9983951449394226, + 0.9987804293632507, + 0.9875671863555908, + 0.9988885521888733 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989340901374817, + 0.9987840056419373, + 0.9988580942153931, + 0.9988131523132324, + 0.9989373087882996, + 0.9989269375801086, + 0.9987234473228455, + 0.9988987445831299, + 0.9989209175109863 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989064931869507, + 0.998913049697876, + 0.9987630844116211, + 0.9989225268363953, + 0.998933732509613, + 0.9989011287689209, + 0.998921275138855, + 0.9989226460456848 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 26, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 26 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -13201,7 +28259,7 @@ "14:30", "15:45", "LOM 200 - Leet Oliver Memorial Hall 200", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ], "Thursday": [ @@ -13209,7 +28267,7 @@ "13:00", "14:15", "LOM 200 - Leet Oliver Memorial Hall 200", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ] }, @@ -13223,10 +28281,38 @@ "classnotes": "", "final_exam": "Wednesday, May 10, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84362\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84362/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -13266,7 +28352,7 @@ "13:00", "14:15", "HLH17 113 - 17 Hillhouse Avenue 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Wednesday": [ @@ -13274,7 +28360,7 @@ "13:00", "14:15", "HLH17 113 - 17 Hillhouse Avenue 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -13288,10 +28374,127 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84861\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84861/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9980587363243103, + 0.9984630346298218, + 0.9982831478118896, + 0.9987316727638245, + 0.9981970191001892, + 0.9985663294792175, + 0.9988743662834167, + 0.9988284707069397 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9995023012161255, + 0.98758465051651, + 0.9937825798988342, + 0.9938900470733643, + 0.9994920492172241, + 0.9892695546150208, + 0.9989323019981384, + 0.998658299446106 + ], + "sentiment_counts": { + "NEGATIVE": 5, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.625, + "POSITIVE": 0.375 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.625 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9995115995407104, + 0.9989097118377686, + 0.9964709281921387, + 0.9994955062866211, + 0.9989919066429138, + 0.9950960278511047, + 0.9872927665710449, + 0.9986440539360046, + 0.9989023208618164 + ], + "sentiment_counts": { + "NEGATIVE": 6, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.6666666666666666, + "POSITIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 0.56, + "final_counts": { + "POSITIVE": 14, + "NEGATIVE": 11 + }, + "final_distribution": { + "POSITIVE": 0.56, + "NEGATIVE": 0.44 + } + } }, { "season_code": "202301", @@ -13330,7 +28533,7 @@ "9:00", "10:15", "DL 220 - Dunham Laboratory 220", - "https:\/\/map.yale.edu\/?id=1910#!m\/560005" + "https://map.yale.edu/?id=1910#!m/560005" ] ], "Thursday": [ @@ -13338,7 +28541,7 @@ "9:00", "10:15", "DL 220 - Dunham Laboratory 220", - "https:\/\/map.yale.edu\/?id=1910#!m\/560005" + "https://map.yale.edu/?id=1910#!m/560005" ] ] }, @@ -13354,10 +28557,303 @@ "classnotes": "", "final_exam": "Tuesday, May 9, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84868\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84868/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9972146153450012, + 0.9986032843589783, + 0.9988893866539001, + 0.9988510608673096, + 0.9985225796699524, + 0.9983002543449402, + 0.9988652467727661, + 0.9898099899291992, + 0.9992445707321167, + 0.9920052886009216, + 0.9987414479255676, + 0.9760897159576416, + 0.9987826943397522, + 0.9984800219535828, + 0.9988573789596558, + 0.9983896017074585, + 0.998235821723938, + 0.9987473487854004, + 0.9982333183288574, + 0.9988610744476318, + 0.9989168643951416, + 0.9978594183921814, + 0.9931400418281555, + 0.9987677335739136, + 0.9986691474914551, + 0.9851320385932922, + 0.9988324046134949, + 0.9988439083099365, + 0.9966937303543091, + 0.9976420402526855, + 0.9988634586334229, + 0.9951695799827576, + 0.9932605624198914, + 0.9970062375068665, + 0.9936577677726746, + 0.9938263297080994, + 0.9859583973884583 + ], + "sentiment_counts": { + "POSITIVE": 33, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.8918918918918919, + "NEGATIVE": 0.10810810810810811 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8918918918918919 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987388253211975, + 0.9988862872123718, + 0.99892657995224, + 0.9915080070495605, + 0.9986177682876587, + 0.9987738728523254, + 0.9994997978210449, + 0.9974984526634216, + 0.9989005327224731, + 0.9958497285842896, + 0.9988101720809937, + 0.9994945526123047, + 0.9989196062088013, + 0.9989062547683716, + 0.9985552430152893, + 0.9995036125183105, + 0.9988731741905212, + 0.9988899827003479, + 0.9973130822181702, + 0.9988895058631897, + 0.9988656044006348, + 0.9974741339683533, + 0.9935489296913147, + 0.998909592628479, + 0.998802661895752, + 0.9989271759986877, + 0.9929023385047913, + 0.997677743434906, + 0.9985538125038147, + 0.9988089799880981, + 0.9987558126449585, + 0.9994994401931763, + 0.998582124710083, + 0.9989243149757385, + 0.9987986087799072, + 0.9760571718215942, + 0.9984179735183716, + 0.9987449645996094 + ], + "sentiment_counts": { + "POSITIVE": 29, + "NEGATIVE": 9 + }, + "sentiment_distribution": { + "POSITIVE": 0.7631578947368421, + "NEGATIVE": 0.23684210526315788 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7631578947368421 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.997117280960083, + 0.9989218711853027, + 0.9988334774971008, + 0.9986544847488403, + 0.9989162683486938, + 0.9985482096672058, + 0.9995025396347046, + 0.9979844093322754, + 0.9987157583236694, + 0.9988908171653748, + 0.998939573764801, + 0.9976805448532104, + 0.9989168643951416, + 0.9974602460861206, + 0.998548686504364, + 0.9994789958000183, + 0.9988813996315002, + 0.9988935589790344, + 0.9987651109695435, + 0.99853515625, + 0.997117280960083, + 0.999484658241272, + 0.9988988637924194, + 0.9989138841629028, + 0.9983429908752441, + 0.9984143972396851, + 0.9983841180801392, + 0.9988598823547363, + 0.9863346815109253, + 0.9986371397972107, + 0.9992784857749939, + 0.9994975328445435, + 0.9974592328071594, + 0.9988756775856018, + 0.994895875453949, + 0.9989218711853027, + 0.9965543746948242, + 0.9983201622962952 + ], + "sentiment_counts": { + "POSITIVE": 30, + "NEGATIVE": 8 + }, + "sentiment_distribution": { + "POSITIVE": 0.7894736842105263, + "NEGATIVE": 0.21052631578947367 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7894736842105263 + ] + }, + "final_label": "POSITIVE", + "final_count": 92, + "final_proportion": 0.8141592920353983, + "final_counts": { + "POSITIVE": 92, + "NEGATIVE": 21 + }, + "final_distribution": { + "POSITIVE": 0.8141592920353983, + "NEGATIVE": 0.18584070796460178 + } + } }, { "season_code": "202301", @@ -13397,7 +28893,7 @@ "11:35", "12:50", "HLH17 05 - 17 Hillhouse Avenue 05", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Thursday": [ @@ -13405,7 +28901,7 @@ "11:35", "12:50", "HLH17 05 - 17 Hillhouse Avenue 05", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -13419,10 +28915,161 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84876\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84876/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998568058013916, + 0.9988627433776855, + 0.9987685084342957, + 0.998754620552063, + 0.9946622252464294, + 0.9970614314079285, + 0.998843789100647, + 0.9987886548042297, + 0.9988092184066772, + 0.9988441467285156, + 0.9988687634468079, + 0.9985740184783936, + 0.9989031553268433 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998921275138855, + 0.9986627101898193, + 0.9940459728240967, + 0.9988405108451843, + 0.99858558177948, + 0.9988741278648376, + 0.9988069534301758, + 0.9988125562667847, + 0.9987701773643494, + 0.9989302754402161, + 0.99882572889328, + 0.9989101886749268, + 0.9927527904510498, + 0.9988667964935303, + 0.9988458156585693 + ], + "sentiment_counts": { + "POSITIVE": 14, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9333333333333333, + "NEGATIVE": 0.06666666666666667 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9333333333333333 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989182949066162, + 0.9980598092079163, + 0.9989286065101624, + 0.9814826846122742, + 0.9988265633583069, + 0.9986445307731628, + 0.9986481070518494, + 0.9787508249282837, + 0.9892027974128723, + 0.9988951086997986, + 0.9988790154457092, + 0.9989151954650879, + 0.9988663196563721, + 0.99888676404953 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9285714285714286, + "NEGATIVE": 0.07142857142857142 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9285714285714286 + ] + }, + "final_label": "POSITIVE", + "final_count": 40, + "final_proportion": 0.9523809523809523, + "final_counts": { + "POSITIVE": 40, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9523809523809523, + "NEGATIVE": 0.047619047619047616 + } + } }, { "season_code": "202301", @@ -13462,10 +29109,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83382\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83382/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -13505,10 +29180,105 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83275\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83275/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9941592216491699, + 0.9994876384735107, + 0.9986810088157654, + 0.9987686276435852 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987040758132935, + 0.9995008707046509, + 0.9989365935325623, + 0.995822548866272, + 0.9977353811264038 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9447558522224426, + 0.9910607933998108, + 0.9973119497299194, + 0.988612711429596, + 0.9965988993644714 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 4 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2, + "POSITIVE": 0.8 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 0.7857142857142857, + "final_counts": { + "POSITIVE": 11, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.7857142857142857, + "NEGATIVE": 0.21428571428571427 + } + } }, { "season_code": "202301", @@ -13551,7 +29321,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -13591,7 +29389,7 @@ "14:30", "15:45", "DL 220 - Dunham Laboratory 220", - "https:\/\/map.yale.edu\/?id=1910#!m\/560005" + "https://map.yale.edu/?id=1910#!m/560005" ] ], "Wednesday": [ @@ -13599,7 +29397,7 @@ "14:30", "15:45", "DL 220 - Dunham Laboratory 220", - "https:\/\/map.yale.edu\/?id=1910#!m\/560005" + "https://map.yale.edu/?id=1910#!m/560005" ] ] }, @@ -13611,10 +29409,261 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83743\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83743/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994625449180603, + 0.9986692667007446, + 0.9977267384529114, + 0.9958676099777222, + 0.998542070388794, + 0.997101366519928, + 0.9987678527832031, + 0.9951832890510559, + 0.9984068274497986, + 0.9987257122993469, + 0.9974414110183716, + 0.995819091796875, + 0.9982781410217285, + 0.9988355040550232, + 0.9972833395004272, + 0.9989116191864014, + 0.9982863068580627, + 0.9988540410995483, + 0.9984550476074219, + 0.9986552000045776, + 0.9955099821090698, + 0.9984970092773438, + 0.998772919178009, + 0.9987083673477173, + 0.9986257553100586, + 0.9938303828239441, + 0.9983738660812378, + 0.9969460368156433, + 0.9984185695648193, + 0.9987848401069641 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 27 + }, + "sentiment_distribution": { + "NEGATIVE": 0.1, + "POSITIVE": 0.9 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9995125532150269, + 0.9988347887992859, + 0.9985306262969971, + 0.9986801743507385, + 0.996660590171814, + 0.9995052814483643, + 0.9940515160560608, + 0.9995088577270508, + 0.9994838237762451, + 0.9985206723213196, + 0.9986639022827148, + 0.9988993406295776, + 0.9994993209838867, + 0.9988382458686829, + 0.9994832277297974, + 0.999346911907196, + 0.9994809031486511, + 0.9944530129432678, + 0.9985024929046631, + 0.9982832670211792, + 0.9941102862358093, + 0.9985215067863464, + 0.9987959861755371, + 0.9994221925735474, + 0.9987170696258545, + 0.9995049238204956, + 0.9822172522544861, + 0.9727941155433655, + 0.998855471611023, + 0.9988963603973389, + 0.9964511394500732 + ], + "sentiment_counts": { + "NEGATIVE": 14, + "POSITIVE": 17 + }, + "sentiment_distribution": { + "NEGATIVE": 0.45161290322580644, + "POSITIVE": 0.5483870967741935 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9995059967041016, + 0.9985914826393127, + 0.9974592328071594, + 0.9988071918487549, + 0.9995059967041016, + 0.9978850483894348, + 0.9995064735412598, + 0.9988580942153931, + 0.995029628276825, + 0.9987230896949768, + 0.9985194802284241, + 0.9978187084197998, + 0.9954947233200073, + 0.9971222281455994, + 0.9988207221031189, + 0.9981922507286072, + 0.9972677230834961, + 0.998528242111206, + 0.9988859295845032, + 0.9989175796508789, + 0.9994513392448425, + 0.9988551139831543, + 0.9931928515434265, + 0.9984241724014282, + 0.9987173080444336, + 0.9988511800765991, + 0.9946998357772827, + 0.9987109899520874, + 0.9784175753593445, + 0.9988406300544739, + 0.9988346695899963 + ], + "sentiment_counts": { + "NEGATIVE": 8, + "POSITIVE": 23 + }, + "sentiment_distribution": { + "NEGATIVE": 0.25806451612903225, + "POSITIVE": 0.7419354838709677 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7419354838709677 + ] + }, + "final_label": "POSITIVE", + "final_count": 67, + "final_proportion": 0.7282608695652174, + "final_counts": { + "NEGATIVE": 25, + "POSITIVE": 67 + }, + "final_distribution": { + "NEGATIVE": 0.2717391304347826, + "POSITIVE": 0.7282608695652174 + } + } }, { "season_code": "202301", @@ -13652,7 +29701,7 @@ "14:30", "15:45", "AKW 200 - Arthur K. Watson Hall 200", - "https:\/\/map.yale.edu\/?id=1910#!m\/560119" + "https://map.yale.edu/?id=1910#!m/560119" ] ], "Wednesday": [ @@ -13660,7 +29709,7 @@ "14:30", "15:45", "AKW 200 - Arthur K. Watson Hall 200", - "https:\/\/map.yale.edu\/?id=1910#!m\/560119" + "https://map.yale.edu/?id=1910#!m/560119" ] ] }, @@ -13672,10 +29721,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83727\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83727/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -13713,7 +29790,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -13766,7 +29871,7 @@ "14:30", "15:45", "BASS 405 - Bass Center 405", - "https:\/\/map.yale.edu\/?id=1910#!m\/560102" + "https://map.yale.edu/?id=1910#!m/560102" ] ], "Thursday": [ @@ -13774,7 +29879,7 @@ "14:30", "15:45", "BASS 405 - Bass Center 405", - "https:\/\/map.yale.edu\/?id=1910#!m\/560102" + "https://map.yale.edu/?id=1910#!m/560102" ] ] }, @@ -13786,10 +29891,139 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84491\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84491/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988125562667847, + 0.9983453750610352, + 0.9986456036567688, + 0.9986985921859741, + 0.9977982044219971, + 0.9903422594070435, + 0.9986554384231567, + 0.9956871867179871, + 0.9983854293823242, + 0.9988418221473694, + 0.9961655139923096 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9090909090909091 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988546371459961, + 0.9924356341362, + 0.9994757771492004, + 0.998830258846283, + 0.9947176575660706, + 0.9983822107315063, + 0.9951450228691101, + 0.9986005425453186, + 0.9987438321113586, + 0.9995054006576538, + 0.9988664388656616 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.7272727272727273, + "NEGATIVE": 0.2727272727272727 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7272727272727273 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984412789344788, + 0.966108500957489, + 0.9989063739776611, + 0.9985975623130798, + 0.9945812821388245, + 0.9985987544059753, + 0.9927737712860107, + 0.9988572597503662, + 0.9988515377044678 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "final_label": "POSITIVE", + "final_count": 26, + "final_proportion": 0.8387096774193549, + "final_counts": { + "POSITIVE": 26, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.8387096774193549, + "NEGATIVE": 0.16129032258064516 + } + } }, { "season_code": "202301", @@ -13827,7 +30061,7 @@ "16:00", "17:15", "LOM 214 - Leet Oliver Memorial Hall 214", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ], "Thursday": [ @@ -13835,7 +30069,7 @@ "16:00", "17:15", "LOM 214 - Leet Oliver Memorial Hall 214", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ] }, @@ -13847,10 +30081,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85147\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85147/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -13893,7 +30155,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -13931,7 +30221,7 @@ "11:35", "12:50", "CO493 103 - 493 College Street 103", - "https:\/\/map.yale.edu\/?id=1910#!m\/560001" + "https://map.yale.edu/?id=1910#!m/560001" ] ], "Thursday": [ @@ -13939,7 +30229,7 @@ "11:35", "12:50", "CO493 103 - 493 College Street 103", - "https:\/\/map.yale.edu\/?id=1910#!m\/560001" + "https://map.yale.edu/?id=1910#!m/560001" ] ] }, @@ -13953,10 +30243,81 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85662\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85662/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986972212791443 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988433122634888 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.998927891254425 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 3, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 3 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -13993,7 +30354,7 @@ "9:00", "10:15", "WLH 117 - William L. Harkness Hall 117", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -14001,7 +30362,7 @@ "9:00", "10:15", "WLH 117 - William L. Harkness Hall 117", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -14017,10 +30378,163 @@ "classnotes": "", "final_exam": "Saturday, May 6, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83288\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83288/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988036155700684, + 0.9986696243286133, + 0.9987770915031433, + 0.9988598823547363, + 0.9989010095596313, + 0.9985260963439941, + 0.9989031553268433, + 0.9988937973976135, + 0.9989210367202759, + 0.9988390803337097, + 0.9988783001899719, + 0.9987558126449585, + 0.9989118576049805, + 0.9988631010055542, + 0.9987003803253174 + ], + "sentiment_counts": { + "POSITIVE": 15, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9941533207893372, + 0.9988433122634888, + 0.9988391995429993, + 0.998348593711853, + 0.9987725615501404, + 0.9988386034965515, + 0.998705267906189, + 0.9989161491394043, + 0.998896598815918, + 0.9988434314727783, + 0.9989094734191895, + 0.9988921284675598, + 0.9988805651664734, + 0.9989196062088013 + ], + "sentiment_counts": { + "POSITIVE": 14, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994966983795166, + 0.993684709072113, + 0.998807430267334, + 0.9988706707954407, + 0.9988767504692078, + 0.9989288449287415, + 0.998819887638092, + 0.9988638162612915, + 0.9989326596260071, + 0.9988038539886475, + 0.9988996982574463, + 0.9989343285560608, + 0.9988848567008972, + 0.99893718957901 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 13 + }, + "sentiment_distribution": { + "NEGATIVE": 0.07142857142857142, + "POSITIVE": 0.9285714285714286 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9285714285714286 + ] + }, + "final_label": "POSITIVE", + "final_count": 42, + "final_proportion": 0.9767441860465116, + "final_counts": { + "POSITIVE": 42, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9767441860465116, + "NEGATIVE": 0.023255813953488372 + } + } }, { "season_code": "202301", @@ -14051,7 +30565,7 @@ "10:30", "11:20", "WLH 113 - William L. Harkness Hall 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -14068,7 +30582,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -14099,7 +30641,7 @@ "11:35", "12:25", "WTS B51 - Watson Center 60 Sachem Street B51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -14116,7 +30658,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -14147,7 +30717,7 @@ "9:25", "10:15", "WTS B51 - Watson Center 60 Sachem Street B51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -14164,7 +30734,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -14195,7 +30793,7 @@ "16:00", "16:50", "WTS A68 - Watson Center 60 Sachem Street A68", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -14212,7 +30810,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -14243,7 +30869,7 @@ "13:30", "14:20", "WTS B51 - Watson Center 60 Sachem Street B51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -14260,7 +30886,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -14291,7 +30945,7 @@ "15:30", "16:20", "WALL53 208 - 53 Wall Street 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/559554" + "https://map.yale.edu/?id=1910#!m/559554" ] ] }, @@ -14308,7 +30962,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -14345,7 +31027,7 @@ "14:30", "15:45", "WTS A30 - Watson Center 60 Sachem Street A30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -14353,7 +31035,7 @@ "14:30", "15:45", "WTS A30 - Watson Center 60 Sachem Street A30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -14369,10 +31051,113 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83292\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83292/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998556911945343, + 0.9986513257026672, + 0.9987655878067017, + 0.9989264607429504, + 0.9989078044891357 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998936116695404, + 0.9995006322860718, + 0.9560685157775879, + 0.9988431930541992 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988529682159424, + 0.9988976716995239, + 0.9989169836044312, + 0.9985727071762085, + 0.9989266991615295, + 0.9988976716995239, + 0.9983124732971191, + 0.9988695979118347, + 0.9989093542098999 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 0.9444444444444444, + "final_counts": { + "POSITIVE": 17, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9444444444444444, + "NEGATIVE": 0.05555555555555555 + } + } }, { "season_code": "202301", @@ -14409,7 +31194,7 @@ "11:35", "12:50", "WTS A30 - Watson Center 60 Sachem Street A30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -14417,7 +31202,7 @@ "11:35", "12:50", "WTS A30 - Watson Center 60 Sachem Street A30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -14431,10 +31216,119 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85881\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85881/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986259937286377, + 0.9951633214950562, + 0.9987655878067017, + 0.9988985061645508, + 0.9988056421279907, + 0.9989109039306641 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988524913787842, + 0.9949600696563721, + 0.998794436454773, + 0.998792290687561, + 0.996397078037262, + 0.9976242184638977, + 0.9988942742347717 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.996203601360321, + 0.9978505373001099, + 0.9994010925292969, + 0.99866783618927, + 0.9989269375801086, + 0.9988505840301514, + 0.9989163875579834, + 0.9995001554489136 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 0.8571428571428571, + "final_counts": { + "POSITIVE": 18, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + } + } }, { "season_code": "202301", @@ -14473,7 +31367,7 @@ "13:30", "15:20", "LC 209 - Linsly-Chittenden Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -14489,10 +31383,91 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85441\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85441/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981787204742432, + 0.9988449811935425 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988112449645996, + 0.9989196062088013 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9995088577270508, + 0.9986069798469543, + 0.9985492825508118 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 0.8571428571428571, + "final_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + } + } }, { "season_code": "202301", @@ -14529,7 +31504,7 @@ "14:30", "15:45", "WTS A60 - Watson Center 60 Sachem Street A60", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -14537,7 +31512,7 @@ "14:30", "15:45", "WTS A60 - Watson Center 60 Sachem Street A60", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -14551,10 +31526,205 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83295\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83295/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988749623298645, + 0.9989157915115356, + 0.9987919926643372, + 0.9988571405410767, + 0.997036337852478, + 0.9973844885826111, + 0.9988287091255188, + 0.9988987445831299, + 0.9987813830375671, + 0.998874843120575, + 0.9876048564910889, + 0.9986483454704285, + 0.998710036277771, + 0.9988767504692078, + 0.9988836646080017, + 0.9986305236816406, + 0.998823344707489, + 0.9988589286804199, + 0.9989112615585327, + 0.998927652835846, + 0.9987938404083252, + 0.9987682700157166 + ], + "sentiment_counts": { + "POSITIVE": 22, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989344477653503, + 0.9989297986030579, + 0.9890676140785217, + 0.9989381432533264, + 0.9988681077957153, + 0.9927299618721008, + 0.9835104942321777, + 0.9988875985145569, + 0.9988523721694946, + 0.9989379048347473, + 0.9988879561424255, + 0.9989269375801086, + 0.9988094568252563, + 0.998895525932312, + 0.9987826943397522, + 0.9989287257194519, + 0.9989209175109863, + 0.9994751811027527, + 0.998779833316803 + ], + "sentiment_counts": { + "POSITIVE": 16, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.8421052631578947, + "NEGATIVE": 0.15789473684210525 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8421052631578947 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988259673118591, + 0.998883068561554, + 0.9987892508506775, + 0.9989026784896851, + 0.9976440072059631, + 0.9988614320755005, + 0.9988051652908325, + 0.9969099164009094, + 0.9987952709197998, + 0.9988553524017334, + 0.998897910118103, + 0.9982709884643555, + 0.9989394545555115, + 0.9989277720451355, + 0.9988616704940796, + 0.9983903169631958, + 0.9987890124320984, + 0.9988781809806824, + 0.9989270567893982, + 0.998923122882843, + 0.9988460540771484, + 0.9989246726036072, + 0.9989262223243713 + ], + "sentiment_counts": { + "POSITIVE": 22, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9565217391304348, + "NEGATIVE": 0.043478260869565216 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9565217391304348 + ] + }, + "final_label": "POSITIVE", + "final_count": 60, + "final_proportion": 0.9375, + "final_counts": { + "POSITIVE": 60, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.9375, + "NEGATIVE": 0.0625 + } + } }, { "season_code": "202301", @@ -14590,10 +31760,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83300\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83300/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -14657,10 +31855,125 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87548\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/87548/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9986750483512878, + 0.9988946318626404, + 0.9986155033111572, + 0.9989252686500549, + 0.9987770915031433, + 0.9988803267478943, + 0.9988634586334229, + 0.9992882609367371 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989194869995117, + 0.9989013671875, + 0.9994693398475647, + 0.9988810420036316, + 0.9953291416168213, + 0.8878962993621826 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989206790924072, + 0.9987196922302246, + 0.9888995289802551, + 0.997117280960083, + 0.9988771080970764, + 0.9908608198165894, + 0.9989114999771118, + 0.9989238381385803, + 0.9988667964935303, + 0.9995095729827881 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 0.8333333333333334, + "final_counts": { + "POSITIVE": 20, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + } + } }, { "season_code": "202301", @@ -14699,7 +32012,7 @@ "10:30", "11:20", "WALL53 AUD - 53 Wall Street AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/559554" + "https://map.yale.edu/?id=1910#!m/559554" ] ], "Wednesday": [ @@ -14707,7 +32020,7 @@ "10:30", "11:20", "WALL53 AUD - 53 Wall Street AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/559554" + "https://map.yale.edu/?id=1910#!m/559554" ] ] }, @@ -14724,10 +32037,425 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84301\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84301/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989299178123474, + 0.9989270567893982, + 0.9987040758132935, + 0.9986178874969482, + 0.9983515739440918, + 0.9989331364631653, + 0.9986147880554199, + 0.9988495111465454, + 0.9989032745361328, + 0.998913049697876, + 0.9976812601089478, + 0.9989338517189026, + 0.9980559349060059, + 0.9987653493881226, + 0.9989036321640015, + 0.9983876943588257, + 0.9987586736679077, + 0.998809814453125, + 0.998754620552063, + 0.9986563920974731, + 0.9988502264022827, + 0.9988983869552612, + 0.9989294409751892, + 0.998893678188324, + 0.9988231062889099, + 0.9988514184951782, + 0.9988755583763123, + 0.9988946318626404, + 0.9989020824432373, + 0.9984809756278992, + 0.9988265633583069, + 0.9988288283348083, + 0.9988980293273926, + 0.9985200762748718, + 0.9988293051719666, + 0.9989159107208252, + 0.998218834400177, + 0.9986300468444824, + 0.9988031387329102, + 0.998924195766449, + 0.9987465143203735, + 0.9988443851470947, + 0.9987773299217224, + 0.9988628625869751, + 0.9986258745193481, + 0.9987885355949402, + 0.9984702467918396, + 0.9988866448402405, + 0.9985070824623108, + 0.9988640546798706, + 0.9989114999771118, + 0.9988663196563721, + 0.9987837672233582 + ], + "sentiment_counts": { + "POSITIVE": 53, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988957643508911, + 0.998507559299469, + 0.9988139867782593, + 0.9988749623298645, + 0.9989029169082642, + 0.9989017248153687, + 0.9989352822303772, + 0.9989385008811951, + 0.9989055395126343, + 0.9992756247520447, + 0.998898983001709, + 0.9988547563552856, + 0.998809814453125, + 0.9989244341850281, + 0.9988590478897095, + 0.9976262450218201, + 0.9987931251525879, + 0.9984152317047119, + 0.9988620281219482, + 0.9932077527046204, + 0.9989162683486938, + 0.9989318251609802, + 0.9989333748817444, + 0.9989387392997742, + 0.998892605304718, + 0.9989320635795593, + 0.9988131523132324, + 0.9988865256309509, + 0.998869001865387, + 0.9989006519317627, + 0.9982866644859314, + 0.9988147020339966, + 0.9988935589790344, + 0.9989103078842163, + 0.9989393353462219, + 0.9988767504692078, + 0.9988114833831787, + 0.9989151954650879, + 0.9696354269981384, + 0.998915433883667, + 0.9989098310470581, + 0.9988934397697449, + 0.9989369511604309, + 0.9987194538116455, + 0.9989114999771118, + 0.9995015859603882, + 0.9988596439361572, + 0.9989171028137207, + 0.9989269375801086, + 0.998918890953064, + 0.9987429976463318 + ], + "sentiment_counts": { + "POSITIVE": 48, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.9411764705882353, + "NEGATIVE": 0.058823529411764705 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9411764705882353 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989251494407654, + 0.9987576007843018, + 0.9988538026809692, + 0.9987697005271912, + 0.9989213943481445, + 0.9988566637039185, + 0.9946840405464172, + 0.9987020492553711, + 0.9989042282104492, + 0.998742401599884, + 0.9986594915390015, + 0.998920202255249, + 0.9989261031150818, + 0.9988788962364197, + 0.9924303889274597, + 0.9989374279975891, + 0.9989197254180908, + 0.9983333945274353, + 0.9893378019332886, + 0.9989377856254578, + 0.9988186955451965, + 0.9974592328071594, + 0.9989359974861145, + 0.9989064931869507, + 0.9974592328071594, + 0.9922722578048706, + 0.9988862872123718, + 0.9988952875137329, + 0.9988642930984497, + 0.997117280960083, + 0.9989030361175537, + 0.9978070855140686, + 0.9988833069801331, + 0.9989175796508789, + 0.9989056587219238, + 0.9989230036735535, + 0.9982553124427795, + 0.9989340901374817, + 0.998863935470581, + 0.9988999366760254, + 0.997117280960083, + 0.9988697171211243, + 0.9975022673606873, + 0.9982553124427795, + 0.9989243149757385, + 0.9987970590591431, + 0.9978901743888855, + 0.9989350438117981, + 0.9989237189292908, + 0.9985508322715759, + 0.9988566637039185, + 0.9989039897918701, + 0.9988991022109985, + 0.9988752007484436, + 0.9989314675331116, + 0.9986849427223206, + 0.9987533092498779, + 0.9986975193023682, + 0.9989213943481445, + 0.9989330172538757, + 0.9989295601844788, + 0.997117280960083, + 0.9985619187355042, + 0.9987754225730896, + 0.9988873600959778, + 0.9989193677902222, + 0.9989206790924072, + 0.9988893866539001, + 0.998902440071106, + 0.998927652835846 + ], + "sentiment_counts": { + "POSITIVE": 69, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9857142857142858, + "NEGATIVE": 0.014285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9857142857142858 + ] + }, + "final_label": "POSITIVE", + "final_count": 170, + "final_proportion": 0.9770114942528736, + "final_counts": { + "POSITIVE": 170, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.9770114942528736, + "NEGATIVE": 0.022988505747126436 + } + } }, { "season_code": "202301", @@ -14760,7 +32488,7 @@ "13:30", "14:20", "LORIA B50 - Loria Center B50", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -14778,7 +32506,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -14811,7 +32567,7 @@ "15:30", "16:20", "LORIA 360 - Loria Center 360", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -14829,7 +32585,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -14862,7 +32646,7 @@ "14:30", "15:20", "HQ 401 - Humanities Quadrangle 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -14880,7 +32664,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -14913,7 +32725,7 @@ "16:30", "17:20", "WLH 001 - William L. Harkness Hall 001", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -14931,7 +32743,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -14964,7 +32804,7 @@ "9:25", "10:15", "HQ 227 - Humanities Quadrangle 227", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -14982,7 +32822,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -15015,7 +32883,7 @@ "10:30", "11:20", "HQ 129 - Humanities Quadrangle 129", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -15033,7 +32901,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -15066,7 +32962,7 @@ "15:30", "16:20", "CO493 106 - 493 College Street 106", - "https:\/\/map.yale.edu\/?id=1910#!m\/560001" + "https://map.yale.edu/?id=1910#!m/560001" ] ] }, @@ -15084,7 +32980,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -15117,7 +33041,7 @@ "14:30", "15:20", "HQ 113 - Humanities Quadrangle 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -15135,7 +33059,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -15168,7 +33120,7 @@ "16:00", "16:50", "HQ 313 - Humanities Quadrangle 313", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -15186,7 +33138,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -15223,7 +33203,7 @@ "11:35", "12:50", "OML 202 - Osborn Memorial Laboratories 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/559958" + "https://map.yale.edu/?id=1910#!m/559958" ] ], "Thursday": [ @@ -15231,7 +33211,7 @@ "11:35", "12:50", "OML 202 - Osborn Memorial Laboratories 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/559958" + "https://map.yale.edu/?id=1910#!m/559958" ] ] }, @@ -15249,10 +33229,261 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83310\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83310/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984071850776672, + 0.9985729455947876, + 0.9988081455230713, + 0.9987466335296631, + 0.9983285069465637, + 0.9988753199577332, + 0.9988042116165161, + 0.9983459711074829, + 0.9986798167228699, + 0.9987724423408508, + 0.9989362359046936, + 0.9975743889808655, + 0.998319685459137, + 0.9980862140655518, + 0.9988126754760742, + 0.9985516667366028, + 0.9986446499824524, + 0.9988825917243958, + 0.9985981583595276, + 0.998875081539154, + 0.9985045194625854, + 0.9989020824432373, + 0.9989184141159058, + 0.998641312122345, + 0.998767614364624, + 0.9988190531730652, + 0.9988811612129211, + 0.9987924098968506 + ], + "sentiment_counts": { + "POSITIVE": 27, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9642857142857143, + "NEGATIVE": 0.03571428571428571 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9642857142857143 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988242983818054, + 0.999508261680603, + 0.9976067543029785, + 0.9988253712654114, + 0.997890055179596, + 0.9930211901664734, + 0.9988600015640259, + 0.9985992312431335, + 0.999488115310669, + 0.9985696077346802, + 0.9987562894821167, + 0.9986212253570557, + 0.9980528354644775, + 0.9988466501235962, + 0.9991169571876526, + 0.9939404726028442, + 0.9957322478294373, + 0.9551090598106384, + 0.9982927441596985, + 0.9984266757965088, + 0.9987738728523254, + 0.9988541603088379, + 0.9989200830459595, + 0.9984466433525085, + 0.998715877532959, + 0.9987164735794067, + 0.9989345669746399, + 0.987820029258728, + 0.9989013671875, + 0.997856080532074, + 0.9988930821418762, + 0.9965446591377258 + ], + "sentiment_counts": { + "POSITIVE": 26, + "NEGATIVE": 6 + }, + "sentiment_distribution": { + "POSITIVE": 0.8125, + "NEGATIVE": 0.1875 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8125 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989209175109863, + 0.9973178505897522, + 0.9995063543319702, + 0.9978546500205994, + 0.9988687634468079, + 0.9876596331596375, + 0.9988736510276794, + 0.9989303946495056, + 0.9923105239868164, + 0.9981270432472229, + 0.9976333379745483, + 0.9988196492195129, + 0.9988349080085754, + 0.9988391995429993, + 0.9989385008811951, + 0.9994930028915405, + 0.9995132684707642, + 0.9921665191650391, + 0.9985299110412598, + 0.9985299110412598, + 0.9989187717437744, + 0.998887836933136, + 0.9995096921920776, + 0.9947063326835632, + 0.998868465423584, + 0.9994634985923767, + 0.9989182949066162, + 0.9802964925765991, + 0.9984560012817383, + 0.9983274340629578, + 0.9988631010055542, + 0.968969464302063 + ], + "sentiment_counts": { + "POSITIVE": 22, + "NEGATIVE": 10 + }, + "sentiment_distribution": { + "POSITIVE": 0.6875, + "NEGATIVE": 0.3125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6875 + ] + }, + "final_label": "POSITIVE", + "final_count": 75, + "final_proportion": 0.8152173913043478, + "final_counts": { + "POSITIVE": 75, + "NEGATIVE": 17 + }, + "final_distribution": { + "POSITIVE": 0.8152173913043478, + "NEGATIVE": 0.18478260869565216 + } + } }, { "season_code": "202301", @@ -15283,7 +33514,7 @@ "15:30", "16:20", "WLH 003 - William L. Harkness Hall 003", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -15301,7 +33532,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -15332,7 +33591,7 @@ "16:30", "17:20", "WLH 003 - William L. Harkness Hall 003", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -15350,7 +33609,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -15381,7 +33668,7 @@ "10:30", "11:20", "WLH 114 - William L. Harkness Hall 114", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -15399,7 +33686,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -15430,7 +33745,7 @@ "14:30", "15:20", "BM 013 - Bingham Hall 013", - "https:\/\/map.yale.edu\/?id=1910#!m\/559569" + "https://map.yale.edu/?id=1910#!m/559569" ] ] }, @@ -15448,7 +33763,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -15479,7 +33822,7 @@ "15:30", "16:20", "WALL53 208 - 53 Wall Street 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/559554" + "https://map.yale.edu/?id=1910#!m/559554" ] ] }, @@ -15497,7 +33840,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -15528,7 +33899,7 @@ "16:30", "17:20", "BM 013 - Bingham Hall 013", - "https:\/\/map.yale.edu\/?id=1910#!m\/559569" + "https://map.yale.edu/?id=1910#!m/559569" ] ] }, @@ -15546,7 +33917,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -15585,7 +33984,7 @@ "13:30", "15:20", "SA10 01 - 10 Sachem Street 01", - "https:\/\/map.yale.edu\/?id=1910#!m\/559538" + "https://map.yale.edu/?id=1910#!m/559538" ] ] }, @@ -15602,10 +34001,117 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86005\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86005/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9977040886878967, + 0.9986901879310608, + 0.9975624084472656, + 0.9988803267478943, + 0.9986735582351685, + 0.9947828650474548, + 0.9975582361221313 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988598823547363, + 0.9989280104637146, + 0.9986972212791443, + 0.9989343285560608, + 0.9989162683486938, + 0.998908519744873, + 0.9950602650642395 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985231757164001, + 0.9988294243812561, + 0.9989194869995117, + 0.9988699555397034, + 0.9986100196838379, + 0.9988880753517151, + 0.9989027976989746 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 21, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 21 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -15645,7 +34151,7 @@ "13:30", "15:20", "HLH51 101 - 51 Hillhouse Avenue 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559970" + "https://map.yale.edu/?id=1910#!m/559970" ] ] }, @@ -15659,10 +34165,113 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85858\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85858/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988495111465454, + 0.9987010955810547, + 0.9989287257194519, + 0.9986043572425842, + 0.9986427426338196, + 0.9987878203392029 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987851977348328, + 0.9917744994163513, + 0.9989333748817444, + 0.998877227306366, + 0.9946964979171753, + 0.9937738180160522 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988516569137573, + 0.9991742968559265, + 0.9981574416160583, + 0.9989123344421387, + 0.998915433883667, + 0.9988719820976257 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 0.9444444444444444, + "final_counts": { + "POSITIVE": 17, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9444444444444444, + "NEGATIVE": 0.05555555555555555 + } + } }, { "season_code": "202301", @@ -15701,7 +34310,7 @@ "13:00", "14:15", "WTS A30 - Watson Center 60 Sachem Street A30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -15709,7 +34318,7 @@ "13:00", "14:15", "WTS A30 - Watson Center 60 Sachem Street A30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -15723,10 +34332,119 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83343\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83343/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9872118830680847, + 0.9992852807044983, + 0.9988271594047546, + 0.9988572597503662, + 0.9988453388214111, + 0.9989243149757385, + 0.998908281326294 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986711740493774, + 0.99748295545578, + 0.9988803267478943, + 0.9942684173583984, + 0.9988736510276794, + 0.9986440539360046 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985231757164001, + 0.9983184337615967, + 0.9995049238204956, + 0.9977774024009705, + 0.9989275336265564, + 0.9988977909088135, + 0.9987228512763977, + 0.9989044666290283 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 0.8095238095238095, + "final_counts": { + "POSITIVE": 17, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.8095238095238095, + "NEGATIVE": 0.19047619047619047 + } + } }, { "season_code": "202301", @@ -15764,7 +34482,7 @@ "14:30", "15:45", "WTS A30 - Watson Center 60 Sachem Street A30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -15772,7 +34490,7 @@ "14:30", "15:45", "WTS A30 - Watson Center 60 Sachem Street A30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -15790,10 +34508,111 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83315\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83315/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9978244304656982, + 0.9987460374832153, + 0.9989169836044312, + 0.9976183772087097, + 0.9988695979118347 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985314607620239, + 0.9989288449287415, + 0.9987679123878479, + 0.9989326596260071, + 0.9974073767662048, + 0.9988002777099609 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9969443678855896, + 0.9985358715057373, + 0.9958186745643616, + 0.9988970756530762, + 0.9910891056060791, + 0.9986177682876587 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 0.9411764705882353, + "final_counts": { + "POSITIVE": 16, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9411764705882353, + "NEGATIVE": 0.058823529411764705 + } + } }, { "season_code": "202301", @@ -15831,7 +34650,7 @@ "9:25", "11:15", "LC 204 - Linsly-Chittenden Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -15845,10 +34664,113 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87465\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87465/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987485408782959, + 0.9989070892333984, + 0.9989240765571594, + 0.9988183379173279, + 0.9989124536514282, + 0.9988000392913818, + 0.9988564252853394 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989354014396667, + 0.9983715415000916, + 0.9917507767677307, + 0.9988986253738403, + 0.9955440163612366 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.99891197681427, + 0.9989180564880371, + 0.9988638162612915, + 0.9981265664100647, + 0.9985613226890564, + 0.9955592155456543 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 0.9444444444444444, + "final_counts": { + "POSITIVE": 17, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9444444444444444, + "NEGATIVE": 0.05555555555555555 + } + } }, { "season_code": "202301", @@ -15885,7 +34807,7 @@ "13:30", "15:20", "WTS A32 - Watson Center 60 Sachem Street A32", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -15904,15 +34826,96 @@ "classnotes": "Please request permission via the registration system. Do not email the instructor directly. ", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83320\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83320/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "", - "description": "This seminar centers the analytics and methods that feminist and queer ethnographic analyses have brought to the fore to revisit a cluster of topical issues, this year assembled around the theme:\u00a0Family, Community, Nation. As a site in which personhood is distributed and contested, the \"family\" is one of the building blocks of social scientific analysis\u2014along with \"community\" and \"nation.\" Seen as ideological lynchpins for the reproduction of the social order, processes of family-making\u2014like marriage, divorce, childbirth, and intergenerational flows\u2014have been codified differently across historical and cultural contexts. This course engages the feminist and queer ethnographies that revealed the political hierarchies that emerge from seemingly natural categories and distinctions of kinship. We trace the gendered, sexualized, class-making, and racialized concepts, processes, and implicit understandings of family-making that chart the public and private spheres of community and national terrains. Students grapple with the processes of naturalization and denaturalization through which the \"political\" is mobilized and dyads like kin\/kith, blood\/soil, human\/nonhuman, citizen\/noncitizen, us\/them, are made to appear. We also engage with feminist and queer methodologies that conjure up speculative fabulations for, what Saidiya Hartman has called, \"the radical hope for living otherwise.\" We do so at a time when the global Covid-19 pandemic has demanded the resurgence of the state, tested community ties, transformed family arrangements, and isolated most of the world\u2019s population within domestic domains.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9980672001838684, + 0.9979491829872131, + 0.9988692402839661 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9926022887229919, + 0.9989081621170044 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987125396728516, + 0.9989068508148193, + 0.9988994598388672 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 8, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 8 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } + }, + { + "season_code": "202301", + "requirements": "", + "description": "This seminar centers the analytics and methods that feminist and queer ethnographic analyses have brought to the fore to revisit a cluster of topical issues, this year assembled around the theme:\u00a0Family, Community, Nation. As a site in which personhood is distributed and contested, the \"family\" is one of the building blocks of social scientific analysis\u2014along with \"community\" and \"nation.\" Seen as ideological lynchpins for the reproduction of the social order, processes of family-making\u2014like marriage, divorce, childbirth, and intergenerational flows\u2014have been codified differently across historical and cultural contexts. This course engages the feminist and queer ethnographies that revealed the political hierarchies that emerge from seemingly natural categories and distinctions of kinship. We trace the gendered, sexualized, class-making, and racialized concepts, processes, and implicit understandings of family-making that chart the public and private spheres of community and national terrains. Students grapple with the processes of naturalization and denaturalization through which the \"political\" is mobilized and dyads like kin/kith, blood/soil, human/nonhuman, citizen/noncitizen, us/them, are made to appear. We also engage with feminist and queer methodologies that conjure up speculative fabulations for, what Saidiya Hartman has called, \"the radical hope for living otherwise.\" We do so at a time when the global Covid-19 pandemic has demanded the resurgence of the state, tested community ties, transformed family arrangements, and isolated most of the world\u2019s population within domestic domains.", "short_title": "Feminist & Queer Ethnographie...", "title": "Feminist & Queer Ethnographies: Family, Community, Nation", "school": "YC", @@ -15945,7 +34948,7 @@ "13:30", "15:20", "BASSLB L73 - Bass Library L73", - "https:\/\/map.yale.edu\/?id=1910#!m\/564574" + "https://map.yale.edu/?id=1910#!m/564574" ] ] }, @@ -15963,10 +34966,113 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84921\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84921/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989281296730042, + 0.9986660480499268, + 0.9987420439720154, + 0.9989140033721924, + 0.9988369345664978, + 0.9989176988601685 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989232420921326, + 0.9988742470741272, + 0.9989340901374817, + 0.9989264607429504, + 0.9989203214645386, + 0.9989318251609802 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989386200904846, + 0.9987698197364807, + 0.998928964138031, + 0.9989368319511414, + 0.998808741569519, + 0.9989356398582458, + 0.9982445240020752 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 19 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -16005,7 +35111,7 @@ "15:30", "17:20", "SA10 105 - 10 Sachem Street 105", - "https:\/\/map.yale.edu\/?id=1910#!m\/559538" + "https://map.yale.edu/?id=1910#!m/559538" ] ] }, @@ -16014,7 +35120,7 @@ "So" ], "flags": [ - "YC EVST: Core Human\/Social Sci", + "YC EVST: Core Human/Social Sci", "YC EVST: Advanced Seminar", "YC GLBL: Elective" ], @@ -16023,10 +35129,157 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83325\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83325/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.99860018491745, + 0.9989238381385803, + 0.9988252520561218, + 0.9988376498222351, + 0.9989175796508789, + 0.9989101886749268, + 0.9988933205604553, + 0.9988798499107361, + 0.9986162185668945, + 0.998915433883667, + 0.9987706542015076, + 0.9988420605659485, + 0.9988958835601807 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998677670955658, + 0.9987567663192749, + 0.9986740350723267, + 0.9988020658493042, + 0.9989363551139832, + 0.9989389777183533, + 0.9988321661949158, + 0.9988962411880493, + 0.9948179125785828, + 0.7278205752372742, + 0.9979246854782104, + 0.9989235997200012, + 0.9985648989677429 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981452226638794, + 0.9989356398582458, + 0.9988096952438354, + 0.9987229704856873, + 0.9989365935325623, + 0.9983274340629578, + 0.9982132911682129, + 0.9988000392913818, + 0.9988648891448975, + 0.9839995503425598, + 0.998340368270874, + 0.9988783001899719, + 0.998056173324585, + 0.9989100694656372, + 0.9989136457443237 + ], + "sentiment_counts": { + "POSITIVE": 15, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 41, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 41 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -16064,7 +35317,7 @@ "15:30", "17:20", "HLH51 101 - 51 Hillhouse Avenue 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559970" + "https://map.yale.edu/?id=1910#!m/559970" ] ] }, @@ -16083,10 +35336,107 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85058\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85058/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985764026641846, + 0.9987956285476685, + 0.9989218711853027, + 0.9978227615356445 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9994862079620361, + 0.9989314675331116, + 0.9989390969276428, + 0.9987194538116455, + 0.9995059967041016 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.4, + "POSITIVE": 0.6 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9987275004386902, + 0.9989138841629028, + 0.9989287257194519, + 0.9988885521888733, + 0.9988777041435242, + 0.9992969036102295 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 0.8, + "final_counts": { + "POSITIVE": 12, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + } + } }, { "season_code": "202301", @@ -16130,7 +35480,7 @@ "15:30", "17:20", "WLH 001 - William L. Harkness Hall 001", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -16140,7 +35490,7 @@ "So" ], "flags": [ - "YC EVST: Core Human\/Social Sci", + "YC EVST: Core Human/Social Sci", "YC EVST: Advanced Seminar" ], "regnotes": "", @@ -16148,10 +35498,97 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83975\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83975/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9911019802093506, + 0.9986314177513123 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 1 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9995094537734985, + 0.9995040893554688, + 0.9995088577270508, + 0.9989113807678223, + 0.998471200466156 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.6, + "POSITIVE": 0.4 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.6 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9992269277572632, + 0.9988889098167419, + 0.9989245533943176 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "neutral", + "final_count": 0.5, + "final_proportion": 0.5, + "final_counts": { + "NEGATIVE": 5, + "POSITIVE": 5 + }, + "final_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + } + } }, { "season_code": "202301", @@ -16188,7 +35625,7 @@ "13:30", "15:20", "SA10 105 - 10 Sachem Street 105", - "https:\/\/map.yale.edu\/?id=1910#!m\/559538" + "https://map.yale.edu/?id=1910#!m/559538" ] ] }, @@ -16202,10 +35639,115 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83330\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83330/assignments/syllabus", "fysem": false, "sysem": true, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988341927528381, + 0.9988682270050049, + 0.9988721013069153, + 0.9988998174667358, + 0.9989321827888489, + 0.9988706707954407 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988980293273926, + 0.9988752007484436, + 0.9988254904747009, + 0.9987553358078003, + 0.9989171028137207, + 0.9989062547683716 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988933205604553, + 0.9987627267837524, + 0.9987229704856873, + 0.9913040399551392, + 0.9976186156272888, + 0.9988321661949158, + 0.9989162683486938 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 0.9473684210526315, + "final_counts": { + "POSITIVE": 18, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9473684210526315, + "NEGATIVE": 0.05263157894736842 + } + } }, { "season_code": "202301", @@ -16243,7 +35785,7 @@ "13:30", "15:20", "WTS A38 - Watson Center 60 Sachem Street A38", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -16257,10 +35799,107 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83334\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83334/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989198446273804, + 0.9987810254096985, + 0.9987131357192993, + 0.9989207983016968, + 0.997076153755188 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9138732552528381, + 0.9987136125564575, + 0.9984669089317322, + 0.9994803071022034, + 0.9988909363746643 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.6, + "POSITIVE": 0.4 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.6 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988582134246826, + 0.9988800883293152, + 0.9977320432662964, + 0.9987396597862244, + 0.9989261031150818 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 0.8, + "final_counts": { + "POSITIVE": 12, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + } + } }, { "season_code": "202301", @@ -16298,7 +35937,7 @@ "13:30", "15:20", "SA10 105 - 10 Sachem Street 105", - "https:\/\/map.yale.edu\/?id=1910#!m\/559538" + "https://map.yale.edu/?id=1910#!m/559538" ] ] }, @@ -16316,10 +35955,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83339\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83339/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -16356,7 +36023,7 @@ "13:30", "15:20", "WTS A38 - Watson Center 60 Sachem Street A38", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -16370,10 +36037,105 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83345\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83345/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987264275550842, + 0.9989327788352966, + 0.9979744553565979, + 0.9988881945610046, + 0.9988598823547363 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989327788352966, + 0.9989132881164551, + 0.9972654581069946, + 0.998786985874176, + 0.998928964138031 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998867392539978, + 0.9989328980445862, + 0.9950439929962158, + 0.9988939166069031, + 0.9984851479530334 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 15 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -16407,7 +36169,7 @@ "So" ], "flags": [ - "PH: Global Health, Ethics\/Humanities\/History" + "PH: Global Health, Ethics/Humanities/History" ], "regnotes": "", "rp_attr": "", @@ -16417,7 +36179,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -16459,7 +36249,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -16499,7 +36317,7 @@ "13:30", "15:20", "SA10 212 - 10 Sachem Street 212", - "https:\/\/map.yale.edu\/?id=1910#!m\/559538" + "https://map.yale.edu/?id=1910#!m/559538" ] ] }, @@ -16516,10 +36334,121 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83350\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83350/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986164569854736, + 0.9987657070159912, + 0.9988741278648376, + 0.9924817681312561, + 0.9988127946853638, + 0.9982458353042603, + 0.9988241791725159 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9937246441841125, + 0.9988215565681458, + 0.998542308807373, + 0.964423418045044, + 0.9921485185623169, + 0.9986310601234436, + 0.9984278678894043 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988898634910583, + 0.9989259839057922, + 0.9984762072563171, + 0.9973636269569397, + 0.9989331364631653, + 0.9988589286804199, + 0.9926319122314453, + 0.9987291693687439 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 0.9090909090909091, + "final_counts": { + "POSITIVE": 20, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + } + } }, { "season_code": "202301", @@ -16559,7 +36488,7 @@ "15:30", "17:20", "WTS A42 - Watson Center 60 Sachem Street A42", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -16573,10 +36502,101 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85925\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85925/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998740017414093, + 0.9988700747489929, + 0.9989150762557983, + 0.9988407492637634 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994848966598511, + 0.9989103078842163, + 0.9989309906959534, + 0.9989262223243713 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.25, + "POSITIVE": 0.75 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986028075218201, + 0.9989032745361328, + 0.9979208111763, + 0.9989252686500549 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 0.9166666666666666, + "final_counts": { + "POSITIVE": 11, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + } + } }, { "season_code": "202301", @@ -16613,7 +36633,7 @@ "9:25", "11:15", "SA10 105 - 10 Sachem Street 105", - "https:\/\/map.yale.edu\/?id=1910#!m\/559538" + "https://map.yale.edu/?id=1910#!m/559538" ] ] }, @@ -16630,15 +36650,114 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83354\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83354/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "", - "description": "In the decade since the 2011 Arab uprisings, the challenges facing the Middle East have been profound. They include\u00a0various forms of war and displacement, political and economic instability, social upheaval and societal rupture. Indeed, by 2015, millions of Middle Eastern men, women, and children had been driven from their homes by conflict.\u00a0This advanced undergraduate\/graduate seminar is designed to explore some of the most important contemporary cultural and political shifts that are shaping life across the Middle East and North Africa (MENA). The course aims for broad regional coverage, with particular focus on a variety of important Middle Eastern nation-states (e.g., Egypt, Lebanon, Palestine, Saudi Arabia, Turkey, Iran). Students should emerge from the course with a keener sense of Middle Eastern regional histories and contemporary social issues, as described by a new generation of leading scholars in the field of Middle East Studies and particularly Middle East Anthropology. This course is thus designed for students in Anthropology, Modern Middle East Studies, and Global Affairs, but also from the disciplines of Sociology, History, Political Science, Near Eastern Languages and Cultures, and the like. The course is also intended for students in the CMES Graduate Certificate Program.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988542795181274, + 0.9988951086997986, + 0.9989193677902222, + 0.9988477230072021, + 0.9984229803085327, + 0.9988434314727783 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989011287689209, + 0.9989362359046936, + 0.9987353682518005, + 0.9988149404525757, + 0.9989284873008728 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989299178123474, + 0.9989073276519775, + 0.9989089965820312, + 0.9988763928413391, + 0.9988454580307007, + 0.9989075660705566 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 17 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } + }, + { + "season_code": "202301", + "requirements": "", + "description": "In the decade since the 2011 Arab uprisings, the challenges facing the Middle East have been profound. They include\u00a0various forms of war and displacement, political and economic instability, social upheaval and societal rupture. Indeed, by 2015, millions of Middle Eastern men, women, and children had been driven from their homes by conflict.\u00a0This advanced undergraduate/graduate seminar is designed to explore some of the most important contemporary cultural and political shifts that are shaping life across the Middle East and North Africa (MENA). The course aims for broad regional coverage, with particular focus on a variety of important Middle Eastern nation-states (e.g., Egypt, Lebanon, Palestine, Saudi Arabia, Turkey, Iran). Students should emerge from the course with a keener sense of Middle Eastern regional histories and contemporary social issues, as described by a new generation of leading scholars in the field of Middle East Studies and particularly Middle East Anthropology. This course is thus designed for students in Anthropology, Modern Middle East Studies, and Global Affairs, but also from the disciplines of Sociology, History, Political Science, Near Eastern Languages and Cultures, and the like. The course is also intended for students in the CMES Graduate Certificate Program.", "short_title": "Culture and Politics in the C...", "title": "Culture and Politics in the Contemporary Middle East", "school": "YC", @@ -16672,7 +36791,7 @@ "13:30", "15:20", "WLH 203 - William L. Harkness Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -16692,10 +36811,111 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83359\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83359/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989182949066162, + 0.9988021850585938, + 0.998894989490509, + 0.998931348323822, + 0.9988157749176025, + 0.9989368319511414 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988887906074524, + 0.9989286065101624, + 0.9988834261894226, + 0.9989385008811951, + 0.9978532195091248, + 0.9988975524902344 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989039897918701, + 0.9989308714866638, + 0.9988272786140442, + 0.9989381432533264, + 0.9987731575965881, + 0.9989261031150818 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 18 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -16735,7 +36955,7 @@ "19:00", "20:50", "SA10 105 - 10 Sachem Street 105", - "https:\/\/map.yale.edu\/?id=1910#!m\/559538" + "https://map.yale.edu/?id=1910#!m/559538" ] ] }, @@ -16753,10 +36973,95 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83364\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83364/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988497495651245, + 0.993707001209259, + 0.9986910223960876 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989217519760132, + 0.99512779712677, + 0.9975886344909668 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998704195022583, + 0.997117280960083, + 0.9988823533058167, + 0.9988119602203369 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 10 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -16797,7 +37102,7 @@ "11:35", "12:50", "SA10 10 - 10 Sachem Street 10", - "https:\/\/map.yale.edu\/?id=1910#!m\/559538" + "https://map.yale.edu/?id=1910#!m/559538" ] ], "Thursday": [ @@ -16805,7 +37110,7 @@ "11:35", "12:50", "SA10 10 - 10 Sachem Street 10", - "https:\/\/map.yale.edu\/?id=1910#!m\/559538" + "https://map.yale.edu/?id=1910#!m/559538" ] ] }, @@ -16822,10 +37127,131 @@ "classnotes": "Instructor permission is required. Students should request permission via YCS November 14-17. Those who are granted permission to take the class will be informed via YCS by November 28th.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83369\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83369/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998174786567688, + 0.996889054775238, + 0.9988119602203369, + 0.9981677532196045, + 0.9972032308578491, + 0.9986656904220581, + 0.9987412095069885, + 0.9011431336402893 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989271759986877, + 0.9979870319366455, + 0.9989193677902222, + 0.9989039897918701, + 0.99885094165802, + 0.998734176158905, + 0.9989025592803955, + 0.998918890953064, + 0.996712327003479 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988792538642883, + 0.997117280960083, + 0.998920202255249, + 0.9987585544586182, + 0.9982049465179443, + 0.9989253878593445, + 0.9988766312599182, + 0.9718582630157471, + 0.9974592328071594, + 0.9989252686500549, + 0.9988194108009338 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 28, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 28 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -16863,7 +37289,7 @@ "9:25", "11:15", "SA10 118 - 10 Sachem Street 118", - "https:\/\/map.yale.edu\/?id=1910#!m\/559538" + "https://map.yale.edu/?id=1910#!m/559538" ] ] }, @@ -16884,10 +37310,101 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86004\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86004/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998908281326294, + 0.9988870024681091, + 0.9985242486000061, + 0.9989007711410522, + 0.9988377690315247 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989075660705566, + 0.9989190101623535, + 0.9987810254096985 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982553124427795, + 0.9989116191864014, + 0.9987605810165405, + 0.998907208442688, + 0.9988779425621033 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 13 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -16930,7 +37447,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -16973,7 +37518,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -17011,7 +37584,7 @@ "9:25", "11:15", "HLH51 101 - 51 Hillhouse Avenue 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559970" + "https://map.yale.edu/?id=1910#!m/559970" ] ] }, @@ -17027,10 +37600,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85056\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85056/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -17067,12 +37668,91 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "", - "description": "What is Digitization of Cultural Heritage? What are its merits, challenges, and best practices? The course highlighst the documentation and interpretation of archaeological artifacts, in particular artifacts from Western Asia. The primary goal of the course is the use of new technologies in computer graphics, including 3D imaging, to support current research in archaeology and anthropology. The course does put particular emphasis on the best practices of digitizing artifacts in collections. The prime study subjects are the artifacts housed in the Yale Babylonian Collection (https:\/\/babylonian-collection.yale.edu). For some background information on the Collection see\u00a0here. Students engage directly with the artifacts while practicing the various imaging techniques.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9942827224731445, + 0.9980302453041077, + 0.9987316727638245 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9861326217651367, + 0.998920202255249 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998831570148468, + 0.9988251328468323 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 7 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } + }, + { + "season_code": "202301", + "requirements": "", + "description": "What is Digitization of Cultural Heritage? What are its merits, challenges, and best practices? The course highlighst the documentation and interpretation of archaeological artifacts, in particular artifacts from Western Asia. The primary goal of the course is the use of new technologies in computer graphics, including 3D imaging, to support current research in archaeology and anthropology. The course does put particular emphasis on the best practices of digitizing artifacts in collections. The prime study subjects are the artifacts housed in the Yale Babylonian Collection (https://babylonian-collection.yale.edu). For some background information on the Collection see\u00a0here. Students engage directly with the artifacts while practicing the various imaging techniques.", "short_title": "Imaging Ancient Worlds in Mus...", "title": "Imaging Ancient Worlds in Museum Collections", "school": "YC", @@ -17112,7 +37792,7 @@ "9:00", "10:15", "HQ 209 - Humanities Quadrangle 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -17120,7 +37800,7 @@ "9:00", "10:15", "HQ 209 - Humanities Quadrangle 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -17132,10 +37812,85 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84622\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84622/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983617663383484, + 0.9967058300971985 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987242817878723, + 0.994070827960968 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.998894989490509 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 5, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 5 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -17182,7 +37937,7 @@ "9:25", "11:15", "PH 401 - Phelps Hall 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -17194,10 +37949,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84198\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84198/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -17237,7 +38020,7 @@ "15:30", "17:20", "WTS A42 - Watson Center 60 Sachem Street A42", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -17249,10 +38032,101 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85925\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85925/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998740017414093, + 0.9988700747489929, + 0.9989150762557983, + 0.9988407492637634 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994848966598511, + 0.9989103078842163, + 0.9989309906959534, + 0.9989262223243713 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.25, + "POSITIVE": 0.75 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986028075218201, + 0.9989032745361328, + 0.9979208111763, + 0.9989252686500549 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 0.9166666666666666, + "final_counts": { + "POSITIVE": 11, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + } + } }, { "season_code": "202301", @@ -17296,7 +38170,7 @@ "14:30", "15:45", "HQ C03 - Humanities Quadrangle C03", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -17304,7 +38178,7 @@ "14:30", "15:45", "HQ C03 - Humanities Quadrangle C03", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -17316,10 +38190,105 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83286\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83286/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988073110580444, + 0.998848557472229, + 0.9987161159515381, + 0.9988049268722534 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998894989490509, + 0.9967054724693298, + 0.9984285235404968, + 0.9988842606544495, + 0.9989232420921326, + 0.9984130859375 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987163543701172, + 0.9909997582435608, + 0.9967576861381531, + 0.9988337159156799 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 0.7857142857142857, + "final_counts": { + "POSITIVE": 11, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.7857142857142857, + "NEGATIVE": 0.21428571428571427 + } + } }, { "season_code": "202301", @@ -17356,7 +38325,7 @@ "15:30", "17:20", "SA10 105 - 10 Sachem Street 105", - "https:\/\/map.yale.edu\/?id=1910#!m\/559538" + "https://map.yale.edu/?id=1910#!m/559538" ] ] }, @@ -17368,15 +38337,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83299\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83299/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This interdisciplinary seminar is designed to introduce students to some of the most pressing contemporary cultural and political issues shaping life in the Middle East and North Africa. The course aims for broad regional coverage, with particular focus on several important nation-states (e.g., Egypt, Saudi Arabia, Afghanistan, Iran, Iraq) and Western interventions in them. Students should emerge with a keener sense of Middle Eastern regional histories and contemporary social issues, as described by leading scholars in the field of Middle Eastern studies and particularly Middle Eastern anthropology. Following a historical introduction, the course is organized around three core themes\u2014Islam, politics, modernity\u2014with movement from the macropolitical level of Islamic discourse and state politics to the most intimate domains of gender, family life, and contemporary youth culture. Through reading, thinking, talking, and writing about a series of book-length monographs, students gain broad exposure to a number of exigent issues in the Middle Eastern region, as well as to the ethnographic methodologies and critical theories of Middle East anthropologists. Students are graded on seminar participation, leadership of seminar discussions, two review\/analysis papers, and a comparative written review of three books. Required for Council on Middle East Studies (CMES) graduate certificate students. Recommended for Middle East concentrators in other disciplines.", + "description": "This interdisciplinary seminar is designed to introduce students to some of the most pressing contemporary cultural and political issues shaping life in the Middle East and North Africa. The course aims for broad regional coverage, with particular focus on several important nation-states (e.g., Egypt, Saudi Arabia, Afghanistan, Iran, Iraq) and Western interventions in them. Students should emerge with a keener sense of Middle Eastern regional histories and contemporary social issues, as described by leading scholars in the field of Middle Eastern studies and particularly Middle Eastern anthropology. Following a historical introduction, the course is organized around three core themes\u2014Islam, politics, modernity\u2014with movement from the macropolitical level of Islamic discourse and state politics to the most intimate domains of gender, family life, and contemporary youth culture. Through reading, thinking, talking, and writing about a series of book-length monographs, students gain broad exposure to a number of exigent issues in the Middle Eastern region, as well as to the ethnographic methodologies and critical theories of Middle East anthropologists. Students are graded on seminar participation, leadership of seminar discussions, two review/analysis papers, and a comparative written review of three books. Required for Council on Middle East Studies (CMES) graduate certificate students. Recommended for Middle East concentrators in other disciplines.", "short_title": "Culture and Politics in the C...", "title": "Culture and Politics in the Contemporary Middle East", "school": "GS", @@ -17410,7 +38407,7 @@ "13:30", "15:20", "WLH 203 - William L. Harkness Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -17426,10 +38423,111 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83359\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83359/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989182949066162, + 0.9988021850585938, + 0.998894989490509, + 0.998931348323822, + 0.9988157749176025, + 0.9989368319511414 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988887906074524, + 0.9989286065101624, + 0.9988834261894226, + 0.9989385008811951, + 0.9978532195091248, + 0.9988975524902344 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989039897918701, + 0.9989308714866638, + 0.9988272786140442, + 0.9989381432533264, + 0.9987731575965881, + 0.9989261031150818 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 18 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -17469,7 +38567,7 @@ "13:30", "15:20", "HLH51 101 - 51 Hillhouse Avenue 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559970" + "https://map.yale.edu/?id=1910#!m/559970" ] ] }, @@ -17483,10 +38581,113 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85858\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85858/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988495111465454, + 0.9987010955810547, + 0.9989287257194519, + 0.9986043572425842, + 0.9986427426338196, + 0.9987878203392029 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987851977348328, + 0.9917744994163513, + 0.9989333748817444, + 0.998877227306366, + 0.9946964979171753, + 0.9937738180160522 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988516569137573, + 0.9991742968559265, + 0.9981574416160583, + 0.9989123344421387, + 0.998915433883667, + 0.9988719820976257 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 0.9444444444444444, + "final_counts": { + "POSITIVE": 17, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9444444444444444, + "NEGATIVE": 0.05555555555555555 + } + } }, { "season_code": "202301", @@ -17524,7 +38725,7 @@ "13:30", "15:20", "WTS A38 - Watson Center 60 Sachem Street A38", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -17538,10 +38739,107 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83334\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83334/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989198446273804, + 0.9987810254096985, + 0.9987131357192993, + 0.9989207983016968, + 0.997076153755188 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9138732552528381, + 0.9987136125564575, + 0.9984669089317322, + 0.9994803071022034, + 0.9988909363746643 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.6, + "POSITIVE": 0.4 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.6 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988582134246826, + 0.9988800883293152, + 0.9977320432662964, + 0.9987396597862244, + 0.9989261031150818 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 0.8, + "final_counts": { + "POSITIVE": 12, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + } + } }, { "season_code": "202301", @@ -17581,7 +38879,7 @@ "13:30", "15:20", "SA10 212 - 10 Sachem Street 212", - "https:\/\/map.yale.edu\/?id=1910#!m\/559538" + "https://map.yale.edu/?id=1910#!m/559538" ] ] }, @@ -17595,10 +38893,121 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83350\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83350/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986164569854736, + 0.9987657070159912, + 0.9988741278648376, + 0.9924817681312561, + 0.9988127946853638, + 0.9982458353042603, + 0.9988241791725159 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9937246441841125, + 0.9988215565681458, + 0.998542308807373, + 0.964423418045044, + 0.9921485185623169, + 0.9986310601234436, + 0.9984278678894043 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988898634910583, + 0.9989259839057922, + 0.9984762072563171, + 0.9973636269569397, + 0.9989331364631653, + 0.9988589286804199, + 0.9926319122314453, + 0.9987291693687439 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 0.9090909090909091, + "final_counts": { + "POSITIVE": 20, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + } + } }, { "season_code": "202301", @@ -17636,7 +39045,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -17673,7 +39110,7 @@ "13:30", "15:20", "SA10 220 - 10 Sachem Street 220", - "https:\/\/map.yale.edu\/?id=1910#!m\/559538" + "https://map.yale.edu/?id=1910#!m/559538" ] ] }, @@ -17687,10 +39124,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86145\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86145/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -17728,7 +39193,7 @@ "10:00", "11:50", "LEPH 101 - Laboratory of EPH 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ], "Friday": [ @@ -17736,7 +39201,7 @@ "13:00", "13:50", "CO47 106A - 47 College Street (CLP) 106A", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ] }, @@ -17751,10 +39216,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84842\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84842/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -17798,7 +39291,7 @@ "15:30", "17:20", "WLH 001 - William L. Harkness Hall 001", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -17810,10 +39303,97 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83975\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83975/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9911019802093506, + 0.9986314177513123 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 1 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9995094537734985, + 0.9995040893554688, + 0.9995088577270508, + 0.9989113807678223, + 0.998471200466156 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.6, + "POSITIVE": 0.4 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.6 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9992269277572632, + 0.9988889098167419, + 0.9989245533943176 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "neutral", + "final_count": 0.5, + "final_proportion": 0.5, + "final_counts": { + "NEGATIVE": 5, + "POSITIVE": 5 + }, + "final_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + } + } }, { "season_code": "202301", @@ -17853,14 +39433,14 @@ "19:00", "20:50", "SA10 105 - 10 Sachem Street 105", - "https:\/\/map.yale.edu\/?id=1910#!m\/559538" + "https://map.yale.edu/?id=1910#!m/559538" ] ] }, "skills": [], "areas": [], "flags": [ - "PH: Global Health, Psychosocial\/Social and behavioral\/Anthropology", + "PH: Global Health, Psychosocial/Social and behavioral/Anthropology", "YC GLHTH: Health & Societies", "YC GLHTH: Perf, Rep & Health" ], @@ -17869,10 +39449,95 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83364\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83364/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988497495651245, + 0.993707001209259, + 0.9986910223960876 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989217519760132, + 0.99512779712677, + 0.9975886344909668 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998704195022583, + 0.997117280960083, + 0.9988823533058167, + 0.9988119602203369 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 10 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -17932,10 +39597,125 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87548\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87548/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9986750483512878, + 0.9988946318626404, + 0.9986155033111572, + 0.9989252686500549, + 0.9987770915031433, + 0.9988803267478943, + 0.9988634586334229, + 0.9992882609367371 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989194869995117, + 0.9989013671875, + 0.9994693398475647, + 0.9988810420036316, + 0.9953291416168213, + 0.8878962993621826 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989206790924072, + 0.9987196922302246, + 0.9888995289802551, + 0.997117280960083, + 0.9988771080970764, + 0.9908608198165894, + 0.9989114999771118, + 0.9989238381385803, + 0.9988667964935303, + 0.9995095729827881 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 0.8333333333333334, + "final_counts": { + "POSITIVE": 20, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + } + } }, { "season_code": "202301", @@ -17973,7 +39753,7 @@ "9:25", "11:15", "SA10 118 - 10 Sachem Street 118", - "https:\/\/map.yale.edu\/?id=1910#!m\/559538" + "https://map.yale.edu/?id=1910#!m/559538" ] ] }, @@ -17988,10 +39768,101 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86004\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86004/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998908281326294, + 0.9988870024681091, + 0.9985242486000061, + 0.9989007711410522, + 0.9988377690315247 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989075660705566, + 0.9989190101623535, + 0.9987810254096985 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982553124427795, + 0.9989116191864014, + 0.9987605810165405, + 0.998907208442688, + 0.9988779425621033 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 13 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -18034,7 +39905,7 @@ "13:30", "15:20", "WLH 203 - William L. Harkness Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -18049,10 +39920,103 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85108\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85108/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987395405769348, + 0.9988908171653748, + 0.9986171722412109, + 0.9986900687217712 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989182949066162, + 0.9989043474197388, + 0.9984216690063477, + 0.996428906917572 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989389777183533, + 0.9987634420394897, + 0.9988518953323364, + 0.9986575841903687, + 0.998894989490509 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 0.9230769230769231, + "final_counts": { + "POSITIVE": 12, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9230769230769231, + "NEGATIVE": 0.07692307692307693 + } + } }, { "season_code": "202301", @@ -18091,7 +40055,7 @@ "13:30", "15:20", "SA10 01 - 10 Sachem Street 01", - "https:\/\/map.yale.edu\/?id=1910#!m\/559538" + "https://map.yale.edu/?id=1910#!m/559538" ] ] }, @@ -18103,10 +40067,117 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86005\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86005/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9977040886878967, + 0.9986901879310608, + 0.9975624084472656, + 0.9988803267478943, + 0.9986735582351685, + 0.9947828650474548, + 0.9975582361221313 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988598823547363, + 0.9989280104637146, + 0.9986972212791443, + 0.9989343285560608, + 0.9989162683486938, + 0.998908519744873, + 0.9950602650642395 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985231757164001, + 0.9988294243812561, + 0.9989194869995117, + 0.9988699555397034, + 0.9986100196838379, + 0.9988880753517151, + 0.9989027976989746 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 21, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 21 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -18151,7 +40222,7 @@ "9:00", "10:15", "HQ 209 - Humanities Quadrangle 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -18159,7 +40230,7 @@ "9:00", "10:15", "HQ 209 - Humanities Quadrangle 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -18171,10 +40242,85 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84622\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84622/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983617663383484, + 0.9967058300971985 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987242817878723, + 0.994070827960968 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.998894989490509 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 5, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 5 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -18212,7 +40358,7 @@ "9:25", "11:15", "HLH51 101 - 51 Hillhouse Avenue 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559970" + "https://map.yale.edu/?id=1910#!m/559970" ] ] }, @@ -18224,10 +40370,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83318\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83318/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -18267,7 +40441,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -18317,10 +40519,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85058\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85058/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -18364,12 +40594,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "In official and unofficial discourses in the United States, diagnoses of Islam\u2019s various \"crises\" are ubiquitous, and Muslim \"hearts and minds\" are viewed as the \"other\" front in the War on Terror. Since 9\/11, the U.S. State Department has made the reform of Islam an explicit national interest, pouring billions of dollars into USAID projects in Muslim-majority countries, initiating curriculum development programs for madrasas in South Asia, and establishing the Arabic Radio Sawa and the satellite TV station Al-Hurra to propagate the U.S. administration\u2019s political views as well as what it terms a \"liberal\" strain of Islam. Muslim Americans are also consumed by debates about the \"crisis\" of Islam, a crisis of religious authority in which the nature and rapidity of change in the measures of authority are felt to be too difficult to assimilate. This course maps out the various and deeply politically charged contemporary debates about the \"crisis of Islam\" and the question of Islamic reform through an examination of official U.S. policy, transnational pulp Islamic literature, fatwas and essays authored by internationally renowned Muslim jurists and scholars, and historical and ethnographic works that take up the category of crisis as an interpretive device.", + "description": "In official and unofficial discourses in the United States, diagnoses of Islam\u2019s various \"crises\" are ubiquitous, and Muslim \"hearts and minds\" are viewed as the \"other\" front in the War on Terror. Since 9/11, the U.S. State Department has made the reform of Islam an explicit national interest, pouring billions of dollars into USAID projects in Muslim-majority countries, initiating curriculum development programs for madrasas in South Asia, and establishing the Arabic Radio Sawa and the satellite TV station Al-Hurra to propagate the U.S. administration\u2019s political views as well as what it terms a \"liberal\" strain of Islam. Muslim Americans are also consumed by debates about the \"crisis\" of Islam, a crisis of religious authority in which the nature and rapidity of change in the measures of authority are felt to be too difficult to assimilate. This course maps out the various and deeply politically charged contemporary debates about the \"crisis of Islam\" and the question of Islamic reform through an examination of official U.S. policy, transnational pulp Islamic literature, fatwas and essays authored by internationally renowned Muslim jurists and scholars, and historical and ethnographic works that take up the category of crisis as an interpretive device.", "short_title": "Interrogating the Crisis of I...", "title": "Interrogating the Crisis of Islam", "school": "GS", @@ -18403,7 +40661,7 @@ "13:30", "15:20", "WLH 004 - William L. Harkness Hall 004", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -18418,15 +40676,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83331\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83331/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This graduate seminar explores how nature has been constructed, reorganized, and mobilized in the modern museum, while introducing graduate students to museum studies and museum practice. With history of science\/science studies at its disciplinary core, the course also incorporates methodologies and readings from cultural history, history of art, anthropology, museum studies, critical heritage studies, and art practice. We examine Yale\u2019s museums and collections as sites for forging and defining relations between nature and culture, between the natural and the unnatural, and between human and environment. The course builds toward historically informed discussions of questions about decolonization, repatriation, and repair circulating in current public discourse around natural history museums. Our most sustained engagement will be with the Yale Peabody Museum of Natural History, and the history of natural history in the United States since 1800. The course has a varied format, incorporating seminar discussions of readings, site visits to museums on and off campus, and workshops with Peabody collections and staff. This course helps to build an ongoing dialogue between graduate students and museum staff as the Peabody rethinks its displays for its current renovation, and is intended to lead to a student-curated exhibition at the Peabody in 2024.", + "description": "This graduate seminar explores how nature has been constructed, reorganized, and mobilized in the modern museum, while introducing graduate students to museum studies and museum practice. With history of science/science studies at its disciplinary core, the course also incorporates methodologies and readings from cultural history, history of art, anthropology, museum studies, critical heritage studies, and art practice. We examine Yale\u2019s museums and collections as sites for forging and defining relations between nature and culture, between the natural and the unnatural, and between human and environment. The course builds toward historically informed discussions of questions about decolonization, repatriation, and repair circulating in current public discourse around natural history museums. Our most sustained engagement will be with the Yale Peabody Museum of Natural History, and the history of natural history in the United States since 1800. The course has a varied format, incorporating seminar discussions of readings, site visits to museums on and off campus, and workshops with Peabody collections and staff. This course helps to build an ongoing dialogue between graduate students and museum staff as the Peabody rethinks its displays for its current renovation, and is intended to lead to a student-curated exhibition at the Peabody in 2024.", "short_title": "Nature and the Modern Museum", "title": "Nature and the Modern Museum", "school": "GS", @@ -18461,7 +40747,7 @@ "13:30", "15:20", "ESC 100 - Environmental Sciences Center 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560020" + "https://map.yale.edu/?id=1910#!m/560020" ] ] }, @@ -18476,10 +40762,17 @@ "classnotes": "Classroom Location: ESC 100 ", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84274\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84274/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -18529,10 +40822,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85056\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85056/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -18569,7 +40890,7 @@ "13:30", "15:20", "SA10 212 - 10 Sachem Street 212", - "https:\/\/map.yale.edu\/?id=1910#!m\/559538" + "https://map.yale.edu/?id=1910#!m/559538" ] ] }, @@ -18583,10 +40904,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83332\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83332/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -18627,7 +40976,7 @@ "11:35", "12:50", "SA10 10 - 10 Sachem Street 10", - "https:\/\/map.yale.edu\/?id=1910#!m\/559538" + "https://map.yale.edu/?id=1910#!m/559538" ] ], "Thursday": [ @@ -18635,7 +40984,7 @@ "11:35", "12:50", "SA10 10 - 10 Sachem Street 10", - "https:\/\/map.yale.edu\/?id=1910#!m\/559538" + "https://map.yale.edu/?id=1910#!m/559538" ] ] }, @@ -18647,10 +40996,131 @@ "classnotes": "Instructor permission is required. Students should request permission via YCS November 14-17. Those who are granted permission to take the class will be informed via YCS by November 28th.", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83369\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83369/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998174786567688, + 0.996889054775238, + 0.9988119602203369, + 0.9981677532196045, + 0.9972032308578491, + 0.9986656904220581, + 0.9987412095069885, + 0.9011431336402893 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989271759986877, + 0.9979870319366455, + 0.9989193677902222, + 0.9989039897918701, + 0.99885094165802, + 0.998734176158905, + 0.9989025592803955, + 0.998918890953064, + 0.996712327003479 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988792538642883, + 0.997117280960083, + 0.998920202255249, + 0.9987585544586182, + 0.9982049465179443, + 0.9989253878593445, + 0.9988766312599182, + 0.9718582630157471, + 0.9974592328071594, + 0.9989252686500549, + 0.9988194108009338 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 28, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 28 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -18687,7 +41157,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -18730,7 +41228,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -18773,7 +41299,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -18810,7 +41364,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -18847,7 +41429,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -18890,7 +41500,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -18933,7 +41571,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -18976,7 +41642,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -19016,10 +41710,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87186\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87186/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -19056,7 +41778,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -19096,7 +41846,7 @@ "15:30", "17:20", "HQ C64 - Humanities Quadrangle C64", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -19108,10 +41858,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84237\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84237/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -19150,7 +41928,7 @@ "11:35", "12:50", "AKW 100 - Arthur K. Watson Hall 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560119" + "https://map.yale.edu/?id=1910#!m/560119" ] ], "Thursday": [ @@ -19158,7 +41936,7 @@ "11:35", "12:50", "AKW 100 - Arthur K. Watson Hall 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560119" + "https://map.yale.edu/?id=1910#!m/560119" ] ] }, @@ -19172,10 +41950,123 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83358\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83358/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998678982257843, + 0.9988253712654114, + 0.9981560111045837, + 0.9971610307693481, + 0.9988269209861755, + 0.9988566637039185, + 0.9987723231315613 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988560676574707, + 0.9994902610778809, + 0.9989180564880371, + 0.9987769722938538, + 0.9919111132621765, + 0.9988262057304382, + 0.998561441898346, + 0.9995086193084717 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.625, + "NEGATIVE": 0.375 + }, + "sentiment_overall": [ + "POSITIVE", + 0.625 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988988637924194, + 0.9988322854042053, + 0.9995063543319702, + 0.998895525932312, + 0.9987786412239075, + 0.9959132075309753, + 0.9984059929847717, + 0.9995064735412598 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 0.7391304347826086, + "final_counts": { + "POSITIVE": 17, + "NEGATIVE": 6 + }, + "final_distribution": { + "POSITIVE": 0.7391304347826086, + "NEGATIVE": 0.2608695652173913 + } + } }, { "season_code": "202301", @@ -19216,7 +42107,7 @@ "14:30", "15:45", "AKW 100 - Arthur K. Watson Hall 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560119" + "https://map.yale.edu/?id=1910#!m/560119" ] ], "Wednesday": [ @@ -19224,7 +42115,7 @@ "14:30", "15:45", "AKW 100 - Arthur K. Watson Hall 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560119" + "https://map.yale.edu/?id=1910#!m/560119" ] ] }, @@ -19242,10 +42133,129 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83363\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83363/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987213015556335, + 0.9988129138946533, + 0.9972946047782898, + 0.9988101720809937, + 0.998798131942749, + 0.9989086389541626, + 0.9989030361175537, + 0.9988982677459717, + 0.9988283514976501 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987598657608032, + 0.9988417029380798, + 0.973635733127594, + 0.9989319443702698, + 0.9908389449119568, + 0.9988753199577332, + 0.9980974793434143, + 0.998778760433197, + 0.9978864789009094 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989151954650879, + 0.9989174604415894, + 0.8070329427719116, + 0.9989311099052429, + 0.9989210367202759, + 0.9989100694656372, + 0.9988678693771362, + 0.9988464117050171 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "final_label": "POSITIVE", + "final_count": 24, + "final_proportion": 0.9230769230769231, + "final_counts": { + "POSITIVE": 24, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9230769230769231, + "NEGATIVE": 0.07692307692307693 + } + } }, { "season_code": "202301", @@ -19283,7 +42293,7 @@ "11:35", "12:50", "DAVIES AUD - Davies Auditorium, Becton Ctr AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ], "Thursday": [ @@ -19291,7 +42301,7 @@ "11:35", "12:50", "DAVIES AUD - Davies Auditorium, Becton Ctr AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ] }, @@ -19307,10 +42317,359 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83368\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83368/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989153146743774, + 0.9989057779312134, + 0.9988552331924438, + 0.9988993406295776, + 0.998871386051178, + 0.9988459348678589, + 0.998214840888977, + 0.9779897332191467, + 0.9989103078842163, + 0.9930235147476196, + 0.9989280104637146, + 0.9988728165626526, + 0.9988495111465454, + 0.9988757967948914, + 0.998918890953064, + 0.9983419179916382, + 0.9988262057304382, + 0.9988844990730286, + 0.9988765120506287, + 0.9982179999351501, + 0.9988070726394653, + 0.9988848567008972, + 0.9966233968734741, + 0.9984645843505859, + 0.9985353946685791, + 0.9970498085021973, + 0.9985270500183105, + 0.9819514751434326, + 0.99891197681427, + 0.9988985061645508, + 0.8832660913467407, + 0.998291552066803, + 0.9987541437149048, + 0.9989173412322998, + 0.9987418055534363, + 0.9986371397972107, + 0.9988548755645752, + 0.9987035989761353, + 0.9988677501678467, + 0.9988582134246826, + 0.9989109039306641, + 0.9987488985061646, + 0.9986473917961121, + 0.9987128973007202, + 0.9988698363304138, + 0.9987252354621887 + ], + "sentiment_counts": { + "POSITIVE": 43, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.9347826086956522, + "NEGATIVE": 0.06521739130434782 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9347826086956522 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988775849342346, + 0.998932421207428, + 0.988899290561676, + 0.9989232420921326, + 0.9989232420921326, + 0.9964659214019775, + 0.9978381991386414, + 0.9988033771514893, + 0.9988799691200256, + 0.9994600415229797, + 0.9989334940910339, + 0.9906508922576904, + 0.9995018243789673, + 0.9989122152328491, + 0.9986048340797424, + 0.9989216327667236, + 0.99886155128479, + 0.9970941543579102, + 0.9989205598831177, + 0.998673677444458, + 0.9982043504714966, + 0.9979245662689209, + 0.9987924098968506, + 0.9084958434104919, + 0.9988961219787598, + 0.9978524446487427, + 0.992294192314148, + 0.9987964630126953, + 0.9989135265350342, + 0.9911216497421265, + 0.9989050626754761, + 0.9989114999771118, + 0.9988804459571838, + 0.9987297654151917, + 0.998788058757782, + 0.9981719255447388, + 0.9985281229019165, + 0.9989033937454224, + 0.9987635612487793, + 0.9988107681274414, + 0.9980893731117249, + 0.9988827109336853 + ], + "sentiment_counts": { + "POSITIVE": 33, + "NEGATIVE": 9 + }, + "sentiment_distribution": { + "POSITIVE": 0.7857142857142857, + "NEGATIVE": 0.21428571428571427 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7857142857142857 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988942742347717, + 0.998928964138031, + 0.9988741278648376, + 0.9994499087333679, + 0.9989076852798462, + 0.9989101886749268, + 0.9987014532089233, + 0.998714804649353, + 0.9988790154457092, + 0.9988957643508911, + 0.9994803071022034, + 0.9985325336456299, + 0.9972110390663147, + 0.9988357424736023, + 0.9980121850967407, + 0.9988791346549988, + 0.998910665512085, + 0.9987541437149048, + 0.9913222789764404, + 0.9987654685974121, + 0.9988669157028198, + 0.9989138841629028, + 0.9989224672317505, + 0.9989211559295654, + 0.970970094203949, + 0.9981295466423035, + 0.9994320273399353, + 0.9994992017745972, + 0.9982553124427795, + 0.9994959831237793, + 0.9995076656341553, + 0.9987545013427734, + 0.9981772899627686, + 0.9989089965820312, + 0.9980016350746155, + 0.9988201260566711, + 0.9988518953323364, + 0.9989092350006104, + 0.998930037021637, + 0.9988184571266174, + 0.9983212351799011, + 0.9975237250328064, + 0.9933712482452393, + 0.9984159469604492, + 0.9988962411880493, + 0.9987118244171143, + 0.9988478422164917, + 0.9962424039840698, + 0.9994693398475647, + 0.9986588954925537, + 0.9987978935241699, + 0.998536229133606, + 0.9988275170326233 + ], + "sentiment_counts": { + "POSITIVE": 40, + "NEGATIVE": 13 + }, + "sentiment_distribution": { + "POSITIVE": 0.7547169811320755, + "NEGATIVE": 0.24528301886792453 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7547169811320755 + ] + }, + "final_label": "POSITIVE", + "final_count": 116, + "final_proportion": 0.8226950354609929, + "final_counts": { + "POSITIVE": 116, + "NEGATIVE": 25 + }, + "final_distribution": { + "POSITIVE": 0.8226950354609929, + "NEGATIVE": 0.1773049645390071 + } + } }, { "season_code": "202301", @@ -19349,7 +42708,7 @@ "11:35", "12:50", "WTS A51 - Watson Center 60 Sachem Street A51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -19357,7 +42716,7 @@ "11:35", "12:50", "WTS A51 - Watson Center 60 Sachem Street A51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -19371,10 +42730,179 @@ "classnotes": "textbook\n Calculus: Multivariable (ISBN 978-1-119-93781-4) \n", "final_exam": "Saturday, May 6, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83887\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83887/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984341263771057, + 0.9976792931556702, + 0.9989381432533264, + 0.99887615442276, + 0.7012736797332764, + 0.9988503456115723, + 0.9987236857414246, + 0.9981949925422668, + 0.9989223480224609, + 0.9943140745162964, + 0.9977756142616272, + 0.9839734435081482, + 0.9980827569961548, + 0.9980795383453369, + 0.9991384744644165, + 0.9988754391670227, + 0.9985950589179993 + ], + "sentiment_counts": { + "POSITIVE": 15, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8823529411764706, + "NEGATIVE": 0.11764705882352941 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8823529411764706 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9986124038696289, + 0.9983215928077698, + 0.9988666772842407, + 0.9989286065101624, + 0.9988422989845276, + 0.9987391829490662, + 0.9992073178291321, + 0.9987900853157043, + 0.9987670183181763, + 0.9988253712654114, + 0.9989181756973267, + 0.99882572889328, + 0.9976824522018433, + 0.6885560750961304, + 0.9988304972648621, + 0.9988489151000977, + 0.993559718132019 + ], + "sentiment_counts": { + "POSITIVE": 14, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.8235294117647058, + "NEGATIVE": 0.17647058823529413 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8235294117647058 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9710614085197449, + 0.9986631870269775, + 0.9994926452636719, + 0.9989053010940552, + 0.9989359974861145, + 0.9985585808753967, + 0.9983965754508972, + 0.988770604133606, + 0.9985834360122681, + 0.9987687468528748, + 0.997875452041626, + 0.9988200068473816, + 0.9988094568252563, + 0.9969737529754639, + 0.9983073472976685, + 0.9924652576446533, + 0.9940859079360962 + ], + "sentiment_counts": { + "POSITIVE": 14, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.8235294117647058, + "NEGATIVE": 0.17647058823529413 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8235294117647058 + ] + }, + "final_label": "POSITIVE", + "final_count": 43, + "final_proportion": 0.8431372549019608, + "final_counts": { + "POSITIVE": 43, + "NEGATIVE": 8 + }, + "final_distribution": { + "POSITIVE": 0.8431372549019608, + "NEGATIVE": 0.1568627450980392 + } + } }, { "season_code": "202301", @@ -19412,7 +42940,7 @@ "11:35", "12:50", "ML 211 - Mason Laboratory 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ], "Thursday": [ @@ -19420,7 +42948,7 @@ "11:35", "12:50", "ML 211 - Mason Laboratory 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ] }, @@ -19434,10 +42962,259 @@ "classnotes": "", "final_exam": "Monday, May 8, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83893\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83893/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9908725619316101, + 0.9981634020805359, + 0.9988418221473694, + 0.9994912147521973, + 0.9987603425979614, + 0.99866783618927, + 0.9986836314201355, + 0.9981167316436768, + 0.9950734972953796, + 0.9985313415527344, + 0.9982492923736572, + 0.9994109869003296, + 0.9939504861831665, + 0.9987788796424866, + 0.998478353023529, + 0.9944361448287964, + 0.9983538389205933, + 0.9972732663154602, + 0.9921776652336121, + 0.9994487166404724, + 0.9995098114013672, + 0.9962131977081299, + 0.9986760020256042, + 0.9986900687217712, + 0.9986729621887207, + 0.9984511137008667, + 0.9987616539001465, + 0.9926486611366272, + 0.9985912442207336, + 0.9994866847991943, + 0.9987529516220093 + ], + "sentiment_counts": { + "NEGATIVE": 9, + "POSITIVE": 22 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2903225806451613, + "POSITIVE": 0.7096774193548387 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7096774193548387 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9864892959594727, + 0.9979957342147827, + 0.9994332194328308, + 0.9995028972625732, + 0.9995096921920776, + 0.9995018243789673, + 0.9994839429855347, + 0.9899978041648865, + 0.9969835877418518, + 0.9963592886924744, + 0.999131977558136, + 0.9970347881317139, + 0.9988836646080017, + 0.998916745185852, + 0.9994747042655945, + 0.9982472658157349, + 0.998883068561554, + 0.987809419631958, + 0.9995090961456299, + 0.9986023306846619, + 0.9995021820068359, + 0.998913049697876, + 0.9989105463027954, + 0.9898220300674438, + 0.9992983341217041, + 0.9988215565681458, + 0.9853377342224121, + 0.9988719820976257 + ], + "sentiment_counts": { + "POSITIVE": 15, + "NEGATIVE": 13 + }, + "sentiment_distribution": { + "POSITIVE": 0.5357142857142857, + "NEGATIVE": 0.4642857142857143 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984349608421326, + 0.9980941414833069, + 0.9994509816169739, + 0.9992973804473877, + 0.9994997978210449, + 0.9409475922584534, + 0.9846077561378479, + 0.9948868155479431, + 0.9994990825653076, + 0.9960150122642517, + 0.9986887574195862, + 0.9831666350364685, + 0.999495267868042, + 0.9982333183288574, + 0.9967807531356812, + 0.9987943172454834, + 0.9987890124320984, + 0.999444305896759, + 0.9986403584480286, + 0.9983944296836853, + 0.9995028972625732, + 0.9991440773010254, + 0.9995090961456299, + 0.9988030195236206, + 0.9986432194709778, + 0.9983991980552673, + 0.9994781613349915, + 0.993513822555542, + 0.9961925745010376, + 0.9965425133705139, + 0.9994577765464783, + 0.9988124370574951 + ], + "sentiment_counts": { + "NEGATIVE": 17, + "POSITIVE": 15 + }, + "sentiment_distribution": { + "NEGATIVE": 0.53125, + "POSITIVE": 0.46875 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "final_label": "POSITIVE", + "final_count": 52, + "final_proportion": 0.5714285714285714, + "final_counts": { + "NEGATIVE": 39, + "POSITIVE": 52 + }, + "final_distribution": { + "NEGATIVE": 0.42857142857142855, + "POSITIVE": 0.5714285714285714 + } + } }, { "season_code": "202301", @@ -19478,7 +43255,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -19516,7 +43321,7 @@ "15:30", "17:20", "BCT 227 - Becton Center 227", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ] }, @@ -19529,11 +43334,106 @@ "rp_attr": "This course meets during the Reading Period: the week between the last week of classes and finals week. Meets Reading Period", "classnotes": "Because this is a limited enrollment course, when you request permission to register, please e-mail peter.schiffer@yale.edu with \u201ccourse permission\u201d in the subject line. In the e-mail please describe your research experience and your reason for interest in this class in approximately 2 to 4 sentences.", "final_exam": "No regular final examination", - "course_home_url": "https:\/\/yale.instructure.com\/courses\/83379", + "course_home_url": "https://yale.instructure.com/courses/83379", "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9976958632469177, + 0.9989345669746399, + 0.9988589286804199, + 0.9987210631370544, + 0.9987533092498779, + 0.9988111257553101 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989193677902222, + 0.9989080429077148, + 0.998915433883667, + 0.9981393814086914, + 0.9989200830459595 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989250302314758, + 0.9981096982955933, + 0.9988192915916443, + 0.9986822009086609 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 15 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -19572,7 +43472,7 @@ "13:00", "14:15", "ML 104 - Mason Laboratory 104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ], "Thursday": [ @@ -19580,7 +43480,7 @@ "13:00", "14:15", "ML 104 - Mason Laboratory 104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ] }, @@ -19596,10 +43496,38 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86475\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/86475/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -19640,7 +43568,7 @@ "11:35", "12:50", "BCT 408A - Becton Center 408A", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ], "Wednesday": [ @@ -19648,7 +43576,7 @@ "11:35", "12:50", "BCT 408A - Becton Center 408A", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ] }, @@ -19664,14 +43592,91 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83383\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83383/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "Prerequisites: physics and quantum mechanics\/physical chemistry courses for physical science and engineering majors, or by permission of instructor.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9919009804725647, + 0.9978255033493042 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986433386802673, + 0.9989079236984253 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981049299240112, + 0.9987448453903198 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 6 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } + }, + { + "season_code": "202301", + "requirements": "Prerequisites: physics and quantum mechanics/physical chemistry courses for physical science and engineering majors, or by permission of instructor.", "description": "Introduction to concepts of advanced x-ray and electron-based techniques used for understanding the electronic, structural, and chemical behavior of materials. Students learn from world-leading experts on fundamentals and practical applications of various diffraction, spectroscopy, and microscopy methods. Course highlights the use of synchrotrons in practical experiments.", "short_title": "Advanced Synchrotron Techniqu...", "title": "Advanced Synchrotron Techniques and Electron Spectroscopy of Materials", @@ -19708,7 +43713,7 @@ "13:30", "15:20", "BCT 408A - Becton Center 408A", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ] }, @@ -19724,15 +43729,98 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83386\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83386/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.980558454990387, + 0.9988019466400146, + 0.9935812950134277 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988067150115967, + 0.998853325843811, + 0.9988487958908081, + 0.9988963603973389 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998740017414093, + 0.9984889030456543 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 9 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", "requirements": "Permission of the faculty adviser and of the director of undergraduate studies is required.", - "description": "Faculty-supervised individual or small-group projects with emphasis on research (laboratory or theory). Students are expected to consult the director of undergraduate studies and appropriate faculty members to discuss ideas and suggestions for suitable topics. This course may be taken more than once, is graded pass\/fail, is limited to Applied Physics majors, and does not count toward the senior requirement.", + "description": "Faculty-supervised individual or small-group projects with emphasis on research (laboratory or theory). Students are expected to consult the director of undergraduate studies and appropriate faculty members to discuss ideas and suggestions for suitable topics. This course may be taken more than once, is graded pass/fail, is limited to Applied Physics majors, and does not count toward the senior requirement.", "short_title": "Special Projects", "title": "Special Projects", "school": "YC", @@ -19770,7 +43858,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -19810,10 +43926,89 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83390\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83390/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9974043965339661, + 0.9988505840301514 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988371729850769, + 0.9986370205879211, + 0.9988569021224976, + 0.9986376166343689 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982553124427795 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 7 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -19854,7 +44049,7 @@ "11:35", "12:50", "BCT 408A - Becton Center 408A", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ], "Wednesday": [ @@ -19862,7 +44057,7 @@ "11:35", "12:50", "BCT 408A - Becton Center 408A", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ] }, @@ -19874,10 +44069,87 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83383\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83383/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9919009804725647, + 0.9978255033493042 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986433386802673, + 0.9989079236984253 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981049299240112, + 0.9987448453903198 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 6 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -19915,7 +44187,7 @@ "15:30", "16:45", "SPL 57 - Sloane Physics Laboratory 57", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ] }, @@ -19927,10 +44199,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84661\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84661/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -19968,7 +44268,7 @@ "11:35", "12:50", "SPL 63 - Sloane Physics Laboratory 63", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ], "Thursday": [ @@ -19976,7 +44276,7 @@ "11:35", "12:50", "SPL 63 - Sloane Physics Laboratory 63", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ] }, @@ -19988,10 +44288,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84669\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84669/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -20029,7 +44357,7 @@ "15:30", "17:20", "BCT 227 - Becton Center 227", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ] }, @@ -20040,11 +44368,106 @@ "rp_attr": "", "classnotes": "Because this is a limited enrollment course, when you request permission to register, please e-mail peter.schiffer@yale.edu with \u201ccourse permission\u201d in the subject line. In the e-mail please describe your research experience and your reason for interest in this class in approximately 2 to 4 sentences.", "final_exam": "", - "course_home_url": "https:\/\/yale.instructure.com\/courses\/83379", + "course_home_url": "https://yale.instructure.com/courses/83379", "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9976958632469177, + 0.9989345669746399, + 0.9988589286804199, + 0.9987210631370544, + 0.9987533092498779, + 0.9988111257553101 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989193677902222, + 0.9989080429077148, + 0.998915433883667, + 0.9981393814086914, + 0.9989200830459595 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989250302314758, + 0.9981096982955933, + 0.9988192915916443, + 0.9986822009086609 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 15 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -20085,7 +44508,7 @@ "13:30", "15:20", "BCT 408A - Becton Center 408A", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ] }, @@ -20097,15 +44520,98 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83386\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83386/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "", - "description": "An advanced course covering the concepts and techniques of radio-frequency design and their application in making microwave measurements. The course begins with a review of lumped element and transmission line circuits, network analysis, and design of passive elements, including filters and impedance transformers. We continue with a treatment of passive and active components such as couplers, circulators, amplifiers, and modulators. Finally, we employ this understanding for the design of microwave measurement systems and techniques for modulation and signal recovery, to analyze the performance of heterodyne\/homodyne receivers and radiometers.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.980558454990387, + 0.9988019466400146, + 0.9935812950134277 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988067150115967, + 0.998853325843811, + 0.9988487958908081, + 0.9988963603973389 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998740017414093, + 0.9984889030456543 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 9 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } + }, + { + "season_code": "202301", + "requirements": "", + "description": "An advanced course covering the concepts and techniques of radio-frequency design and their application in making microwave measurements. The course begins with a review of lumped element and transmission line circuits, network analysis, and design of passive elements, including filters and impedance transformers. We continue with a treatment of passive and active components such as couplers, circulators, amplifiers, and modulators. Finally, we employ this understanding for the design of microwave measurement systems and techniques for modulation and signal recovery, to analyze the performance of heterodyne/homodyne receivers and radiometers.", "short_title": "Techniques of Microwave Measu...", "title": "Techniques of Microwave Measurement and RF Design", "school": "GS", @@ -20138,7 +44644,7 @@ "14:30", "15:45", "BCT 508 - Becton Center 508", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ], "Thursday": [ @@ -20146,7 +44652,7 @@ "14:30", "15:45", "BCT 508 - Becton Center 508", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ] }, @@ -20158,10 +44664,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83392\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83392/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -20204,7 +44738,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -20242,7 +44804,7 @@ "9:25", "10:15", "WTS B52 - Watson Center 60 Sachem Street B52", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Tuesday": [ @@ -20250,7 +44812,7 @@ "9:25", "10:15", "WTS B52 - Watson Center 60 Sachem Street B52", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -20258,7 +44820,7 @@ "9:25", "10:15", "WTS B52 - Watson Center 60 Sachem Street B52", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -20266,7 +44828,7 @@ "9:25", "10:15", "WTS B52 - Watson Center 60 Sachem Street B52", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Friday": [ @@ -20274,7 +44836,7 @@ "9:25", "10:15", "WTS B52 - Watson Center 60 Sachem Street B52", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -20288,10 +44850,123 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83395\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83395/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988974332809448, + 0.9966546297073364, + 0.9982603192329407, + 0.9989098310470581, + 0.9988783001899719, + 0.9987525939941406, + 0.998454213142395, + 0.9988333582878113 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988982677459717, + 0.988191545009613, + 0.9989044666290283, + 0.9985693693161011, + 0.9926266074180603, + 0.998924195766449, + 0.9987083673477173, + 0.9989190101623535, + 0.9981650710105896 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9966603517532349, + 0.9989197254180908, + 0.9968240261077881, + 0.9989342093467712, + 0.9974719882011414, + 0.9988403916358948 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 5 + }, + "sentiment_distribution": { + "NEGATIVE": 0.16666666666666666, + "POSITIVE": 0.8333333333333334 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 21, + "final_proportion": 0.9130434782608695, + "final_counts": { + "POSITIVE": 21, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9130434782608695, + "NEGATIVE": 0.08695652173913043 + } + } }, { "season_code": "202301", @@ -20329,7 +45004,7 @@ "10:30", "11:20", "WTS B52 - Watson Center 60 Sachem Street B52", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Tuesday": [ @@ -20337,7 +45012,7 @@ "10:30", "11:20", "WTS B52 - Watson Center 60 Sachem Street B52", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -20345,7 +45020,7 @@ "10:30", "11:20", "WTS B52 - Watson Center 60 Sachem Street B52", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -20353,7 +45028,7 @@ "10:30", "11:20", "WTS B52 - Watson Center 60 Sachem Street B52", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Friday": [ @@ -20361,7 +45036,7 @@ "10:30", "11:20", "WTS B52 - Watson Center 60 Sachem Street B52", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -20375,10 +45050,121 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83290\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83290/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9820798635482788, + 0.9986949563026428, + 0.9984986782073975, + 0.9986942410469055, + 0.9983875751495361, + 0.9917069673538208 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9994983673095703, + 0.998862624168396, + 0.9992308616638184, + 0.9987038373947144, + 0.9956743121147156, + 0.9988784193992615, + 0.9975205063819885, + 0.9989218711853027 + ], + "sentiment_counts": { + "NEGATIVE": 4, + "POSITIVE": 4 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9936010241508484, + 0.9976162910461426, + 0.9994937181472778, + 0.9984291195869446, + 0.9989169836044312, + 0.998318076133728, + 0.9987708926200867, + 0.9880725145339966 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 0.7272727272727273, + "final_counts": { + "POSITIVE": 16, + "NEGATIVE": 6 + }, + "final_distribution": { + "POSITIVE": 0.7272727272727273, + "NEGATIVE": 0.2727272727272727 + } + } }, { "season_code": "202301", @@ -20416,7 +45202,7 @@ "13:00", "14:15", "HQ 129 - Humanities Quadrangle 129", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -20424,7 +45210,7 @@ "13:00", "14:15", "HQ 129 - Humanities Quadrangle 129", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -20438,10 +45224,38 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86250\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/86250/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -20479,7 +45293,7 @@ "11:35", "12:25", "HQ 317 - Humanities Quadrangle 317", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Tuesday": [ @@ -20487,7 +45301,7 @@ "11:35", "12:25", "HQ 317 - Humanities Quadrangle 317", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -20495,7 +45309,7 @@ "11:35", "12:25", "HQ 317 - Humanities Quadrangle 317", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -20503,7 +45317,7 @@ "11:35", "12:25", "HQ 317 - Humanities Quadrangle 317", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Friday": [ @@ -20511,7 +45325,7 @@ "11:35", "12:25", "HQ 317 - Humanities Quadrangle 317", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -20525,10 +45339,99 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83301\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83301/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988150596618652, + 0.9987748265266418, + 0.9905318021774292 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9983243346214294, + 0.9987881779670715, + 0.9988970756530762, + 0.9984196424484253 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988324046134949, + 0.9988203644752502, + 0.99852055311203, + 0.9988910555839539 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 8, + "final_proportion": 0.7272727272727273, + "final_counts": { + "POSITIVE": 8, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.7272727272727273, + "NEGATIVE": 0.2727272727272727 + } + } }, { "season_code": "202301", @@ -20566,7 +45469,7 @@ "10:30", "11:20", "WTS B31 - Watson Center 60 Sachem Street B31", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Tuesday": [ @@ -20574,7 +45477,7 @@ "10:30", "11:20", "WTS B31 - Watson Center 60 Sachem Street B31", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -20582,7 +45485,7 @@ "10:30", "11:20", "WTS B31 - Watson Center 60 Sachem Street B31", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -20590,7 +45493,7 @@ "10:30", "11:20", "WTS B31 - Watson Center 60 Sachem Street B31", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Friday": [ @@ -20598,7 +45501,7 @@ "10:30", "11:20", "WTS B31 - Watson Center 60 Sachem Street B31", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -20612,10 +45515,93 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85109\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85109/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983963370323181, + 0.9988313317298889, + 0.9986392855644226 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9965389966964722, + 0.9988822340965271, + 0.9989149570465088 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988068342208862, + 0.9988790154457092, + 0.9988294243812561 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 9 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -20653,7 +45639,7 @@ "11:35", "12:50", "HQ C05 - Humanities Quadrangle C05", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -20661,7 +45647,7 @@ "11:35", "12:50", "HQ C05 - Humanities Quadrangle C05", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -20675,15 +45661,106 @@ "classnotes": "", "final_exam": "Monday, May 8, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83305\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83305/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9967279434204102, + 0.9983622431755066, + 0.9986648559570312, + 0.9988099336624146 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988518953323364, + 0.9918192625045776, + 0.9989151954650879, + 0.9989116191864014 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9975444674491882, + 0.9873928427696228, + 0.9972314238548279, + 0.998927891254425 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 0.8333333333333334, + "final_counts": { + "POSITIVE": 10, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + } + } }, { "season_code": "202301", "requirements": "Prerequisite: ARBC 156.", - "description": "A continuation of Intermediate Classical Arabic grammar and morphology\u00a0that builds on the\u00a0skills acquired\u00a0in\u00a0ARBC 156\/511, with emphasis on vocabulary, grammar, and reading skills and strategies. Readings drawn from a variety of genres, such as biography, history, hadith, and poetry.\"\u00a0 Previously ARBC 159.", + "description": "A continuation of Intermediate Classical Arabic grammar and morphology\u00a0that builds on the\u00a0skills acquired\u00a0in\u00a0ARBC 156/511, with emphasis on vocabulary, grammar, and reading skills and strategies. Readings drawn from a variety of genres, such as biography, history, hadith, and poetry.\"\u00a0 Previously ARBC 159.", "short_title": "Intermediate Classical Arabic II", "title": "Intermediate Classical Arabic II", "school": "YC", @@ -20716,7 +45793,7 @@ "14:30", "15:45", "WLH 012 - William L. Harkness Hall 012", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -20724,7 +45801,7 @@ "14:30", "15:45", "WLH 012 - William L. Harkness Hall 012", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -20740,10 +45817,38 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85150\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/85150/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -20781,7 +45886,7 @@ "13:00", "14:15", "HQ 123 - Humanities Quadrangle 123", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -20789,7 +45894,7 @@ "13:00", "14:15", "HQ 123 - Humanities Quadrangle 123", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -20805,10 +45910,38 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85412\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/85412/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -20846,7 +45979,7 @@ "9:25", "10:15", "WTS B52 - Watson Center 60 Sachem Street B52", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Tuesday": [ @@ -20854,7 +45987,7 @@ "9:25", "10:15", "WTS B52 - Watson Center 60 Sachem Street B52", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -20862,7 +45995,7 @@ "9:25", "10:15", "WTS B52 - Watson Center 60 Sachem Street B52", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -20870,7 +46003,7 @@ "9:25", "10:15", "WTS B52 - Watson Center 60 Sachem Street B52", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Friday": [ @@ -20878,7 +46011,7 @@ "9:25", "10:15", "WTS B52 - Watson Center 60 Sachem Street B52", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -20890,10 +46023,123 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83395\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83395/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988974332809448, + 0.9966546297073364, + 0.9982603192329407, + 0.9989098310470581, + 0.9988783001899719, + 0.9987525939941406, + 0.998454213142395, + 0.9988333582878113 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988982677459717, + 0.988191545009613, + 0.9989044666290283, + 0.9985693693161011, + 0.9926266074180603, + 0.998924195766449, + 0.9987083673477173, + 0.9989190101623535, + 0.9981650710105896 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9966603517532349, + 0.9989197254180908, + 0.9968240261077881, + 0.9989342093467712, + 0.9974719882011414, + 0.9988403916358948 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 5 + }, + "sentiment_distribution": { + "NEGATIVE": 0.16666666666666666, + "POSITIVE": 0.8333333333333334 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 21, + "final_proportion": 0.9130434782608695, + "final_counts": { + "POSITIVE": 21, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9130434782608695, + "NEGATIVE": 0.08695652173913043 + } + } }, { "season_code": "202301", @@ -20931,7 +46177,7 @@ "10:30", "11:20", "WTS B52 - Watson Center 60 Sachem Street B52", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Tuesday": [ @@ -20939,7 +46185,7 @@ "10:30", "11:20", "WTS B52 - Watson Center 60 Sachem Street B52", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -20947,7 +46193,7 @@ "10:30", "11:20", "WTS B52 - Watson Center 60 Sachem Street B52", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -20955,7 +46201,7 @@ "10:30", "11:20", "WTS B52 - Watson Center 60 Sachem Street B52", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Friday": [ @@ -20963,7 +46209,7 @@ "10:30", "11:20", "WTS B52 - Watson Center 60 Sachem Street B52", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -20975,10 +46221,121 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83290\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83290/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9820798635482788, + 0.9986949563026428, + 0.9984986782073975, + 0.9986942410469055, + 0.9983875751495361, + 0.9917069673538208 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9994983673095703, + 0.998862624168396, + 0.9992308616638184, + 0.9987038373947144, + 0.9956743121147156, + 0.9988784193992615, + 0.9975205063819885, + 0.9989218711853027 + ], + "sentiment_counts": { + "NEGATIVE": 4, + "POSITIVE": 4 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9936010241508484, + 0.9976162910461426, + 0.9994937181472778, + 0.9984291195869446, + 0.9989169836044312, + 0.998318076133728, + 0.9987708926200867, + 0.9880725145339966 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 0.7272727272727273, + "final_counts": { + "POSITIVE": 16, + "NEGATIVE": 6 + }, + "final_distribution": { + "POSITIVE": 0.7272727272727273, + "NEGATIVE": 0.2727272727272727 + } + } }, { "season_code": "202301", @@ -21016,7 +46373,7 @@ "11:35", "12:25", "HQ 317 - Humanities Quadrangle 317", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Tuesday": [ @@ -21024,7 +46381,7 @@ "11:35", "12:25", "HQ 317 - Humanities Quadrangle 317", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -21032,7 +46389,7 @@ "11:35", "12:25", "HQ 317 - Humanities Quadrangle 317", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -21040,7 +46397,7 @@ "11:35", "12:25", "HQ 317 - Humanities Quadrangle 317", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Friday": [ @@ -21048,7 +46405,7 @@ "11:35", "12:25", "HQ 317 - Humanities Quadrangle 317", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -21060,10 +46417,99 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83301\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83301/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988150596618652, + 0.9987748265266418, + 0.9905318021774292 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9983243346214294, + 0.9987881779670715, + 0.9988970756530762, + 0.9984196424484253 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988324046134949, + 0.9988203644752502, + 0.99852055311203, + 0.9988910555839539 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 8, + "final_proportion": 0.7272727272727273, + "final_counts": { + "POSITIVE": 8, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.7272727272727273, + "NEGATIVE": 0.2727272727272727 + } + } }, { "season_code": "202301", @@ -21101,7 +46547,7 @@ "10:30", "11:20", "WTS B31 - Watson Center 60 Sachem Street B31", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Tuesday": [ @@ -21109,7 +46555,7 @@ "10:30", "11:20", "WTS B31 - Watson Center 60 Sachem Street B31", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -21117,7 +46563,7 @@ "10:30", "11:20", "WTS B31 - Watson Center 60 Sachem Street B31", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -21125,7 +46571,7 @@ "10:30", "11:20", "WTS B31 - Watson Center 60 Sachem Street B31", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Friday": [ @@ -21133,7 +46579,7 @@ "10:30", "11:20", "WTS B31 - Watson Center 60 Sachem Street B31", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -21145,10 +46591,93 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85109\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85109/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983963370323181, + 0.9988313317298889, + 0.9986392855644226 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9965389966964722, + 0.9988822340965271, + 0.9989149570465088 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988068342208862, + 0.9988790154457092, + 0.9988294243812561 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 9 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -21186,7 +46715,7 @@ "11:35", "12:50", "HQ C05 - Humanities Quadrangle C05", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -21194,7 +46723,7 @@ "11:35", "12:50", "HQ C05 - Humanities Quadrangle C05", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -21206,15 +46735,106 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83305\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83305/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "ARBC 156\/511 or permission from instructor.", - "description": "A continuation of Intermediate Classical Arabic grammar and morphology that builds on the skills acquired in ARBC 156\/511, with emphasis on vocabulary, grammar, and reading skills and strategies. Readings drawn from a variety of genres, such as biography, history, hadith, and poetry.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9967279434204102, + 0.9983622431755066, + 0.9986648559570312, + 0.9988099336624146 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988518953323364, + 0.9918192625045776, + 0.9989151954650879, + 0.9989116191864014 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9975444674491882, + 0.9873928427696228, + 0.9972314238548279, + 0.998927891254425 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 0.8333333333333334, + "final_counts": { + "POSITIVE": 10, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + } + } + }, + { + "season_code": "202301", + "requirements": "ARBC 156/511 or permission from instructor.", + "description": "A continuation of Intermediate Classical Arabic grammar and morphology that builds on the skills acquired in ARBC 156/511, with emphasis on vocabulary, grammar, and reading skills and strategies. Readings drawn from a variety of genres, such as biography, history, hadith, and poetry.", "short_title": "Intermediate Classical Arabic II", "title": "Intermediate Classical Arabic II", "school": "GS", @@ -21247,7 +46867,7 @@ "14:30", "15:45", "WLH 012 - William L. Harkness Hall 012", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -21255,7 +46875,7 @@ "14:30", "15:45", "WLH 012 - William L. Harkness Hall 012", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -21267,10 +46887,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85150\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85150/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -21308,7 +46956,7 @@ "13:00", "14:15", "HQ 129 - Humanities Quadrangle 129", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -21316,7 +46964,7 @@ "13:00", "14:15", "HQ 129 - Humanities Quadrangle 129", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -21328,10 +46976,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86250\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86250/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -21368,7 +47044,7 @@ "15:30", "17:20", "HQ 129 - Humanities Quadrangle 129", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -21382,10 +47058,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83329\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83329/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -21423,7 +47127,7 @@ "13:00", "14:15", "HQ 123 - Humanities Quadrangle 123", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -21431,7 +47135,7 @@ "13:00", "14:15", "HQ 123 - Humanities Quadrangle 123", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -21443,10 +47147,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85412\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85412/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -21485,7 +47217,7 @@ "9:00", "10:15", "ESC 100 - Environmental Sciences Center 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560020" + "https://map.yale.edu/?id=1910#!m/560020" ] ], "Wednesday": [ @@ -21493,7 +47225,7 @@ "9:00", "10:15", "ESC 100 - Environmental Sciences Center 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560020" + "https://map.yale.edu/?id=1910#!m/560020" ] ] }, @@ -21509,10 +47241,119 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84609\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84609/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.995905876159668, + 0.9987812638282776, + 0.9976149797439575, + 0.9988930821418762, + 0.9987735152244568, + 0.9988510608673096, + 0.9995098114013672 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 5 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2857142857142857, + "POSITIVE": 0.7142857142857143 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7142857142857143 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9984551668167114, + 0.9987862706184387, + 0.9981393814086914, + 0.9986888766288757, + 0.9988916516304016, + 0.9989103078842163, + 0.9994902610778809 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.7142857142857143, + "NEGATIVE": 0.2857142857142857 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7142857142857143 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988629817962646, + 0.9991113543510437, + 0.98674076795578, + 0.9993696808815002, + 0.9924942255020142, + 0.9989033937454224, + 0.9995038509368896 + ], + "sentiment_counts": { + "NEGATIVE": 6, + "POSITIVE": 1 + }, + "sentiment_distribution": { + "NEGATIVE": 0.8571428571428571, + "POSITIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.8571428571428571 + ] + }, + "final_label": "neutral", + "final_count": 11, + "final_proportion": 0.5, + "final_counts": { + "NEGATIVE": 10, + "POSITIVE": 11 + }, + "final_distribution": { + "NEGATIVE": 0.47619047619047616, + "POSITIVE": 0.5238095238095238 + } + } }, { "season_code": "202301", @@ -21551,7 +47392,7 @@ "9:00", "10:15", "HQ 127 - Humanities Quadrangle 127", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -21559,7 +47400,7 @@ "9:00", "10:15", "HQ 127 - Humanities Quadrangle 127", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -21574,10 +47415,103 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84612\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84612/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988387227058411, + 0.998810887336731, + 0.9989144802093506, + 0.9988585710525513 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988695979118347, + 0.9989066123962402, + 0.9987351298332214, + 0.9982700347900391, + 0.9988608360290527 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986628293991089, + 0.9986855387687683, + 0.9981655478477478, + 0.9989280104637146, + 0.9988676309585571 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 14 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -21615,7 +47549,7 @@ "10:30", "11:20", "LORIA 250 - Loria Center 250", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ], "Thursday": [ @@ -21623,7 +47557,7 @@ "10:30", "11:20", "LORIA 250 - Loria Center 250", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -21637,10 +47571,237 @@ "classnotes": "", "final_exam": "Wednesday, May 10, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84230\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84230/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983633160591125, + 0.9988439083099365, + 0.9987447261810303, + 0.9988932013511658, + 0.9987266659736633, + 0.9987027645111084, + 0.9987888932228088, + 0.9977971315383911, + 0.998842716217041, + 0.9986085295677185, + 0.9989272952079773, + 0.998856782913208, + 0.9988189339637756, + 0.9987820982933044, + 0.9987651109695435, + 0.9988901019096375, + 0.998921275138855, + 0.9971346855163574, + 0.9988757967948914, + 0.9988006353378296, + 0.9987351298332214, + 0.9989129304885864, + 0.9989191293716431, + 0.9987803101539612, + 0.9987647533416748, + 0.9988459348678589 + ], + "sentiment_counts": { + "POSITIVE": 26, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.99837327003479, + 0.9986346364021301, + 0.9945698380470276, + 0.9989328980445862, + 0.9989323019981384, + 0.9987226128578186, + 0.9989262223243713, + 0.9994440674781799, + 0.9994282126426697, + 0.9986463189125061, + 0.9988687634468079, + 0.9989303946495056, + 0.9989257454872131, + 0.9988937973976135, + 0.9989029169082642, + 0.998836100101471, + 0.998910665512085, + 0.9988489151000977, + 0.9989333748817444, + 0.9989160299301147, + 0.9986649751663208, + 0.9966357350349426, + 0.9989357590675354, + 0.9989277720451355, + 0.9987632036209106, + 0.9987083673477173 + ], + "sentiment_counts": { + "POSITIVE": 24, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.9230769230769231, + "NEGATIVE": 0.07692307692307693 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9230769230769231 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994741082191467, + 0.9970184564590454, + 0.9985466599464417, + 0.9988595247268677, + 0.998918890953064, + 0.9982553124427795, + 0.9893251657485962, + 0.9995032548904419, + 0.9989041090011597, + 0.9985309839248657, + 0.9989302754402161, + 0.99891197681427, + 0.9989268183708191, + 0.9985820055007935, + 0.9980016350746155, + 0.9988948702812195, + 0.9989150762557983, + 0.9989246726036072, + 0.998914361000061, + 0.9989197254180908, + 0.9986078143119812, + 0.9982553124427795, + 0.9989246726036072, + 0.9989093542098999, + 0.9976135492324829, + 0.9989314675331116, + 0.9989368319511414, + 0.9989073276519775 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 25 + }, + "sentiment_distribution": { + "NEGATIVE": 0.10714285714285714, + "POSITIVE": 0.8928571428571429 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8928571428571429 + ] + }, + "final_label": "POSITIVE", + "final_count": 75, + "final_proportion": 0.9375, + "final_counts": { + "POSITIVE": 75, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.9375, + "NEGATIVE": 0.0625 + } + } }, { "season_code": "202301", @@ -21672,7 +47833,7 @@ "14:30", "15:20", "WALL53 B-04 - 53 Wall Street B-04", - "https:\/\/map.yale.edu\/?id=1910#!m\/559554" + "https://map.yale.edu/?id=1910#!m/559554" ] ] }, @@ -21689,7 +47850,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -21721,7 +47910,7 @@ "15:30", "16:20", "WALL53 B-04 - 53 Wall Street B-04", - "https:\/\/map.yale.edu\/?id=1910#!m\/559554" + "https://map.yale.edu/?id=1910#!m/559554" ] ] }, @@ -21738,7 +47927,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -21770,7 +47987,7 @@ "9:25", "10:15", "WTS B62 - Watson Center 60 Sachem Street B62", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -21787,7 +48004,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -21819,7 +48064,7 @@ "10:30", "11:20", "WLH 205 - William L. Harkness Hall 205", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -21836,7 +48081,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -21868,7 +48141,7 @@ "11:35", "12:25", "WTS B62 - Watson Center 60 Sachem Street B62", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -21885,7 +48158,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -21917,7 +48218,7 @@ "13:30", "14:20", "HQ 123 - Humanities Quadrangle 123", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -21934,7 +48235,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -21978,7 +48307,7 @@ "14:30", "15:45", "HQ C03 - Humanities Quadrangle C03", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -21986,7 +48315,7 @@ "14:30", "15:45", "HQ C03 - Humanities Quadrangle C03", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -22000,10 +48329,105 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83286\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83286/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988073110580444, + 0.998848557472229, + 0.9987161159515381, + 0.9988049268722534 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998894989490509, + 0.9967054724693298, + 0.9984285235404968, + 0.9988842606544495, + 0.9989232420921326, + 0.9984130859375 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987163543701172, + 0.9909997582435608, + 0.9967576861381531, + 0.9988337159156799 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 0.7857142857142857, + "final_counts": { + "POSITIVE": 11, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.7857142857142857, + "NEGATIVE": 0.21428571428571427 + } + } }, { "season_code": "202301", @@ -22067,10 +48491,125 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87548\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/87548/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9986750483512878, + 0.9988946318626404, + 0.9986155033111572, + 0.9989252686500549, + 0.9987770915031433, + 0.9988803267478943, + 0.9988634586334229, + 0.9992882609367371 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989194869995117, + 0.9989013671875, + 0.9994693398475647, + 0.9988810420036316, + 0.9953291416168213, + 0.8878962993621826 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989206790924072, + 0.9987196922302246, + 0.9888995289802551, + 0.997117280960083, + 0.9988771080970764, + 0.9908608198165894, + 0.9989114999771118, + 0.9989238381385803, + 0.9988667964935303, + 0.9995095729827881 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 0.8333333333333334, + "final_counts": { + "POSITIVE": 20, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + } + } }, { "season_code": "202301", @@ -22110,7 +48649,7 @@ "13:30", "15:20", "HLH51 101 - 51 Hillhouse Avenue 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559970" + "https://map.yale.edu/?id=1910#!m/559970" ] ] }, @@ -22124,10 +48663,113 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85858\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85858/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988495111465454, + 0.9987010955810547, + 0.9989287257194519, + 0.9986043572425842, + 0.9986427426338196, + 0.9987878203392029 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987851977348328, + 0.9917744994163513, + 0.9989333748817444, + 0.998877227306366, + 0.9946964979171753, + 0.9937738180160522 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988516569137573, + 0.9991742968559265, + 0.9981574416160583, + 0.9989123344421387, + 0.998915433883667, + 0.9988719820976257 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 0.9444444444444444, + "final_counts": { + "POSITIVE": 17, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9444444444444444, + "NEGATIVE": 0.05555555555555555 + } + } }, { "season_code": "202301", @@ -22166,7 +48808,7 @@ "13:00", "14:15", "WTS A30 - Watson Center 60 Sachem Street A30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -22174,7 +48816,7 @@ "13:00", "14:15", "WTS A30 - Watson Center 60 Sachem Street A30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -22188,10 +48830,119 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83343\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83343/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9872118830680847, + 0.9992852807044983, + 0.9988271594047546, + 0.9988572597503662, + 0.9988453388214111, + 0.9989243149757385, + 0.998908281326294 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986711740493774, + 0.99748295545578, + 0.9988803267478943, + 0.9942684173583984, + 0.9988736510276794, + 0.9986440539360046 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985231757164001, + 0.9983184337615967, + 0.9995049238204956, + 0.9977774024009705, + 0.9989275336265564, + 0.9988977909088135, + 0.9987228512763977, + 0.9989044666290283 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 0.8095238095238095, + "final_counts": { + "POSITIVE": 17, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.8095238095238095, + "NEGATIVE": 0.19047619047619047 + } + } }, { "season_code": "202301", @@ -22229,7 +48980,7 @@ "14:30", "15:45", "WTS A30 - Watson Center 60 Sachem Street A30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -22237,7 +48988,7 @@ "14:30", "15:45", "WTS A30 - Watson Center 60 Sachem Street A30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -22255,10 +49006,111 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83315\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83315/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9978244304656982, + 0.9987460374832153, + 0.9989169836044312, + 0.9976183772087097, + 0.9988695979118347 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985314607620239, + 0.9989288449287415, + 0.9987679123878479, + 0.9989326596260071, + 0.9974073767662048, + 0.9988002777099609 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9969443678855896, + 0.9985358715057373, + 0.9958186745643616, + 0.9988970756530762, + 0.9910891056060791, + 0.9986177682876587 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 0.9411764705882353, + "final_counts": { + "POSITIVE": 16, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9411764705882353, + "NEGATIVE": 0.058823529411764705 + } + } }, { "season_code": "202301", @@ -22296,7 +49148,7 @@ "15:30", "17:20", "HLH51 101 - 51 Hillhouse Avenue 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559970" + "https://map.yale.edu/?id=1910#!m/559970" ] ] }, @@ -22315,10 +49167,107 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85058\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85058/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985764026641846, + 0.9987956285476685, + 0.9989218711853027, + 0.9978227615356445 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9994862079620361, + 0.9989314675331116, + 0.9989390969276428, + 0.9987194538116455, + 0.9995059967041016 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.4, + "POSITIVE": 0.6 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9987275004386902, + 0.9989138841629028, + 0.9989287257194519, + 0.9988885521888733, + 0.9988777041435242, + 0.9992969036102295 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 0.8, + "final_counts": { + "POSITIVE": 12, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + } + } }, { "season_code": "202301", @@ -22362,7 +49311,7 @@ "15:30", "17:20", "WLH 001 - William L. Harkness Hall 001", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -22372,7 +49321,7 @@ "So" ], "flags": [ - "YC EVST: Core Human\/Social Sci", + "YC EVST: Core Human/Social Sci", "YC EVST: Advanced Seminar" ], "regnotes": "", @@ -22380,10 +49329,97 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83975\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83975/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9911019802093506, + 0.9986314177513123 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 1 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9995094537734985, + 0.9995040893554688, + 0.9995088577270508, + 0.9989113807678223, + 0.998471200466156 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.6, + "POSITIVE": 0.4 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.6 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9992269277572632, + 0.9988889098167419, + 0.9989245533943176 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "neutral", + "final_count": 0.5, + "final_proportion": 0.5, + "final_counts": { + "NEGATIVE": 5, + "POSITIVE": 5 + }, + "final_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + } + } }, { "season_code": "202301", @@ -22426,7 +49462,7 @@ "9:00", "10:15", "ESC 110 - Environmental Sciences Center 110", - "https:\/\/map.yale.edu\/?id=1910#!m\/560020" + "https://map.yale.edu/?id=1910#!m/560020" ] ], "Thursday": [ @@ -22434,7 +49470,7 @@ "9:00", "10:15", "ESC 110 - Environmental Sciences Center 110", - "https:\/\/map.yale.edu\/?id=1910#!m\/560020" + "https://map.yale.edu/?id=1910#!m/560020" ] ] }, @@ -22455,10 +49491,135 @@ "classnotes": "", "final_exam": "Tuesday, May 9, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83986\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83986/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9972192049026489, + 0.998807430267334, + 0.9986886382102966, + 0.9978384375572205, + 0.9989041090011597, + 0.9988611936569214, + 0.99888676404953, + 0.9980066418647766, + 0.9988403916358948, + 0.9986371397972107 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989226460456848, + 0.9989256262779236, + 0.9994869232177734, + 0.998843789100647, + 0.9989340901374817, + 0.998659610748291, + 0.9988831877708435, + 0.9985139966011047, + 0.9989125728607178 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.7777777777777778, + "NEGATIVE": 0.2222222222222222 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7777777777777778 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986080527305603, + 0.9988961219787598, + 0.9972487092018127, + 0.9985396862030029, + 0.9989063739776611, + 0.9989249110221863, + 0.99869304895401, + 0.9989124536514282, + 0.9989282488822937, + 0.9988740086555481 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 27, + "final_proportion": 0.9310344827586207, + "final_counts": { + "POSITIVE": 27, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9310344827586207, + "NEGATIVE": 0.06896551724137931 + } + } }, { "season_code": "202301", @@ -22500,7 +49661,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -22541,7 +49730,7 @@ "11:35", "12:50", "SA10 10 - 10 Sachem Street 10", - "https:\/\/map.yale.edu\/?id=1910#!m\/559538" + "https://map.yale.edu/?id=1910#!m/559538" ] ], "Thursday": [ @@ -22549,7 +49738,7 @@ "11:35", "12:50", "SA10 10 - 10 Sachem Street 10", - "https:\/\/map.yale.edu\/?id=1910#!m\/559538" + "https://map.yale.edu/?id=1910#!m/559538" ] ] }, @@ -22566,10 +49755,131 @@ "classnotes": "Instructor permission is required. Students should request permission via YCS November 14-17. Those who are granted permission to take the class will be informed via YCS by November 28th.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83369\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83369/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998174786567688, + 0.996889054775238, + 0.9988119602203369, + 0.9981677532196045, + 0.9972032308578491, + 0.9986656904220581, + 0.9987412095069885, + 0.9011431336402893 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989271759986877, + 0.9979870319366455, + 0.9989193677902222, + 0.9989039897918701, + 0.99885094165802, + 0.998734176158905, + 0.9989025592803955, + 0.998918890953064, + 0.996712327003479 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988792538642883, + 0.997117280960083, + 0.998920202255249, + 0.9987585544586182, + 0.9982049465179443, + 0.9989253878593445, + 0.9988766312599182, + 0.9718582630157471, + 0.9974592328071594, + 0.9989252686500549, + 0.9988194108009338 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 28, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 28 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -22607,7 +49917,7 @@ "9:25", "11:15", "HLH51 101 - 51 Hillhouse Avenue 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559970" + "https://map.yale.edu/?id=1910#!m/559970" ] ] }, @@ -22623,15 +49933,43 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85056\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85056/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "What is Digitization of Cultural Heritage? What are its merits, challenges, and best practices? The course highlighst the documentation and interpretation of archaeological artifacts, in particular artifacts from Western Asia. The primary goal of the course is the use of new technologies in computer graphics, including 3D imaging, to support current research in archaeology and anthropology. The course does put particular emphasis on the best practices of digitizing artifacts in collections. The prime study subjects are the artifacts housed in the Yale Babylonian Collection (https:\/\/babylonian-collection.yale.edu). For some background information on the Collection see\u00a0here. Students engage directly with the artifacts while practicing the various imaging techniques.", + "description": "What is Digitization of Cultural Heritage? What are its merits, challenges, and best practices? The course highlighst the documentation and interpretation of archaeological artifacts, in particular artifacts from Western Asia. The primary goal of the course is the use of new technologies in computer graphics, including 3D imaging, to support current research in archaeology and anthropology. The course does put particular emphasis on the best practices of digitizing artifacts in collections. The prime study subjects are the artifacts housed in the Yale Babylonian Collection (https://babylonian-collection.yale.edu). For some background information on the Collection see\u00a0here. Students engage directly with the artifacts while practicing the various imaging techniques.", "short_title": "Imaging Ancient Worlds in Mus...", "title": "Imaging Ancient Worlds in Museum Collections", "school": "YC", @@ -22671,7 +50009,7 @@ "9:00", "10:15", "HQ 209 - Humanities Quadrangle 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -22679,7 +50017,7 @@ "9:00", "10:15", "HQ 209 - Humanities Quadrangle 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -22691,10 +50029,85 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84622\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84622/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983617663383484, + 0.9967058300971985 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987242817878723, + 0.994070827960968 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.998894989490509 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 5, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 5 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -22741,7 +50154,7 @@ "9:25", "11:15", "PH 401 - Phelps Hall 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -22753,10 +50166,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84198\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84198/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -22800,7 +50241,7 @@ "14:30", "15:45", "HQ C03 - Humanities Quadrangle C03", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -22808,7 +50249,7 @@ "14:30", "15:45", "HQ C03 - Humanities Quadrangle C03", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -22820,10 +50261,105 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83286\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83286/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988073110580444, + 0.998848557472229, + 0.9987161159515381, + 0.9988049268722534 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998894989490509, + 0.9967054724693298, + 0.9984285235404968, + 0.9988842606544495, + 0.9989232420921326, + 0.9984130859375 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987163543701172, + 0.9909997582435608, + 0.9967576861381531, + 0.9988337159156799 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 0.7857142857142857, + "final_counts": { + "POSITIVE": 11, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.7857142857142857, + "NEGATIVE": 0.21428571428571427 + } + } }, { "season_code": "202301", @@ -22863,7 +50399,7 @@ "13:30", "15:20", "HLH51 101 - 51 Hillhouse Avenue 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559970" + "https://map.yale.edu/?id=1910#!m/559970" ] ] }, @@ -22877,10 +50413,113 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85858\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85858/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988495111465454, + 0.9987010955810547, + 0.9989287257194519, + 0.9986043572425842, + 0.9986427426338196, + 0.9987878203392029 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987851977348328, + 0.9917744994163513, + 0.9989333748817444, + 0.998877227306366, + 0.9946964979171753, + 0.9937738180160522 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988516569137573, + 0.9991742968559265, + 0.9981574416160583, + 0.9989123344421387, + 0.998915433883667, + 0.9988719820976257 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 0.9444444444444444, + "final_counts": { + "POSITIVE": 17, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9444444444444444, + "NEGATIVE": 0.05555555555555555 + } + } }, { "season_code": "202301", @@ -22918,7 +50557,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -22962,7 +50629,7 @@ "15:30", "17:20", "WLH 001 - William L. Harkness Hall 001", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -22974,10 +50641,97 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83975\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83975/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9911019802093506, + 0.9986314177513123 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 1 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9995094537734985, + 0.9995040893554688, + 0.9995088577270508, + 0.9989113807678223, + 0.998471200466156 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.6, + "POSITIVE": 0.4 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.6 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9992269277572632, + 0.9988889098167419, + 0.9989245533943176 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "neutral", + "final_count": 0.5, + "final_proportion": 0.5, + "final_counts": { + "NEGATIVE": 5, + "POSITIVE": 5 + }, + "final_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + } + } }, { "season_code": "202301", @@ -23037,10 +50791,125 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87548\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87548/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9986750483512878, + 0.9988946318626404, + 0.9986155033111572, + 0.9989252686500549, + 0.9987770915031433, + 0.9988803267478943, + 0.9988634586334229, + 0.9992882609367371 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989194869995117, + 0.9989013671875, + 0.9994693398475647, + 0.9988810420036316, + 0.9953291416168213, + 0.8878962993621826 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989206790924072, + 0.9987196922302246, + 0.9888995289802551, + 0.997117280960083, + 0.9988771080970764, + 0.9908608198165894, + 0.9989114999771118, + 0.9989238381385803, + 0.9988667964935303, + 0.9995095729827881 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 0.8333333333333334, + "final_counts": { + "POSITIVE": 20, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + } + } }, { "season_code": "202301", @@ -23079,7 +50948,7 @@ "13:30", "15:20", "SA10 01 - 10 Sachem Street 01", - "https:\/\/map.yale.edu\/?id=1910#!m\/559538" + "https://map.yale.edu/?id=1910#!m/559538" ] ] }, @@ -23091,10 +50960,117 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86005\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86005/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9977040886878967, + 0.9986901879310608, + 0.9975624084472656, + 0.9988803267478943, + 0.9986735582351685, + 0.9947828650474548, + 0.9975582361221313 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988598823547363, + 0.9989280104637146, + 0.9986972212791443, + 0.9989343285560608, + 0.9989162683486938, + 0.998908519744873, + 0.9950602650642395 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985231757164001, + 0.9988294243812561, + 0.9989194869995117, + 0.9988699555397034, + 0.9986100196838379, + 0.9988880753517151, + 0.9989027976989746 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 21, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 21 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -23139,7 +51115,7 @@ "9:00", "10:15", "HQ 209 - Humanities Quadrangle 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -23147,7 +51123,7 @@ "9:00", "10:15", "HQ 209 - Humanities Quadrangle 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -23159,10 +51135,85 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84622\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84622/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983617663383484, + 0.9967058300971985 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987242817878723, + 0.994070827960968 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.998894989490509 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 5, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 5 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -23200,7 +51251,7 @@ "9:25", "11:15", "HLH51 101 - 51 Hillhouse Avenue 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559970" + "https://map.yale.edu/?id=1910#!m/559970" ] ] }, @@ -23212,10 +51263,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83318\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83318/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -23255,7 +51334,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -23305,10 +51412,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85058\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85058/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -23352,7 +51487,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -23395,7 +51558,7 @@ "9:00", "10:15", "ESC 110 - Environmental Sciences Center 110", - "https:\/\/map.yale.edu\/?id=1910#!m\/560020" + "https://map.yale.edu/?id=1910#!m/560020" ] ], "Thursday": [ @@ -23403,7 +51566,7 @@ "9:00", "10:15", "ESC 110 - Environmental Sciences Center 110", - "https:\/\/map.yale.edu\/?id=1910#!m\/560020" + "https://map.yale.edu/?id=1910#!m/560020" ] ] }, @@ -23417,10 +51580,135 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83986\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83986/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9972192049026489, + 0.998807430267334, + 0.9986886382102966, + 0.9978384375572205, + 0.9989041090011597, + 0.9988611936569214, + 0.99888676404953, + 0.9980066418647766, + 0.9988403916358948, + 0.9986371397972107 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989226460456848, + 0.9989256262779236, + 0.9994869232177734, + 0.998843789100647, + 0.9989340901374817, + 0.998659610748291, + 0.9988831877708435, + 0.9985139966011047, + 0.9989125728607178 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.7777777777777778, + "NEGATIVE": 0.2222222222222222 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7777777777777778 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986080527305603, + 0.9988961219787598, + 0.9972487092018127, + 0.9985396862030029, + 0.9989063739776611, + 0.9989249110221863, + 0.99869304895401, + 0.9989124536514282, + 0.9989282488822937, + 0.9988740086555481 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 27, + "final_proportion": 0.9310344827586207, + "final_counts": { + "POSITIVE": 27, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9310344827586207, + "NEGATIVE": 0.06896551724137931 + } + } }, { "season_code": "202301", @@ -23470,10 +51758,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85056\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85056/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -23514,7 +51830,7 @@ "11:35", "12:50", "SA10 10 - 10 Sachem Street 10", - "https:\/\/map.yale.edu\/?id=1910#!m\/559538" + "https://map.yale.edu/?id=1910#!m/559538" ] ], "Thursday": [ @@ -23522,7 +51838,7 @@ "11:35", "12:50", "SA10 10 - 10 Sachem Street 10", - "https:\/\/map.yale.edu\/?id=1910#!m\/559538" + "https://map.yale.edu/?id=1910#!m/559538" ] ] }, @@ -23534,10 +51850,131 @@ "classnotes": "Instructor permission is required. Students should request permission via YCS November 14-17. Those who are granted permission to take the class will be informed via YCS by November 28th.", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83369\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83369/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998174786567688, + 0.996889054775238, + 0.9988119602203369, + 0.9981677532196045, + 0.9972032308578491, + 0.9986656904220581, + 0.9987412095069885, + 0.9011431336402893 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989271759986877, + 0.9979870319366455, + 0.9989193677902222, + 0.9989039897918701, + 0.99885094165802, + 0.998734176158905, + 0.9989025592803955, + 0.998918890953064, + 0.996712327003479 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988792538642883, + 0.997117280960083, + 0.998920202255249, + 0.9987585544586182, + 0.9982049465179443, + 0.9989253878593445, + 0.9988766312599182, + 0.9718582630157471, + 0.9974592328071594, + 0.9989252686500549, + 0.9988194108009338 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 28, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 28 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -23612,10 +52049,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86480\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86480/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -23687,7 +52152,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -23747,10 +52240,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86482\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86482/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -23813,7 +52334,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -23876,7 +52425,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -23942,7 +52519,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -24002,10 +52607,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86486\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86486/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -24071,7 +52704,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -24134,10 +52795,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86488\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86488/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -24200,7 +52889,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -24263,7 +52980,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -24323,10 +53068,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86491\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86491/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -24363,7 +53136,7 @@ "9:00", "10:50", "RDH SB04 - Rudolph Hall SB04", - "https:\/\/map.yale.edu\/?id=1910#!m\/559534" + "https://map.yale.edu/?id=1910#!m/559534" ] ] }, @@ -24372,13 +53145,41 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Architecture courses will be open for registration on January 12 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. (\u201cBlue Form.\u201d)\u201d.\n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https:\/\/www.architecture.yale.edu\/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on Yale SIS. \n", + "classnotes": "Architecture courses will be open for registration on January 12 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. (\u201cBlue Form.\u201d)\u201d.\n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https://www.architecture.yale.edu/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on Yale SIS. \n", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86492\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86492/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -24415,7 +53216,7 @@ "9:00", "11:30", "RDH HASTINGS - Rudolph Hall HASTINGS", - "https:\/\/map.yale.edu\/?id=1910#!m\/559534" + "https://map.yale.edu/?id=1910#!m/559534" ] ] }, @@ -24424,13 +53225,41 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Architecture courses will be open for registration on January 12 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. (\u201cBlue Form.\u201d)\u201d.\n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https:\/\/www.architecture.yale.edu\/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on Yale SIS. \n", + "classnotes": "Architecture courses will be open for registration on January 12 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. (\u201cBlue Form.\u201d)\u201d.\n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https://www.architecture.yale.edu/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on Yale SIS. \n", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86493\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86493/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -24467,7 +53296,7 @@ "9:00", "10:50", "RDH 7-FL - Rudolph Hall 7-FL", - "https:\/\/map.yale.edu\/?id=1910#!m\/559534" + "https://map.yale.edu/?id=1910#!m/559534" ] ] }, @@ -24476,13 +53305,41 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Architecture courses will be open for registration on January 12 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. (\u201cBlue Form.\u201d)\u201d.\n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https:\/\/www.architecture.yale.edu\/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on Yale SIS. \n", + "classnotes": "Architecture courses will be open for registration on January 12 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. (\u201cBlue Form.\u201d)\u201d.\n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https://www.architecture.yale.edu/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on Yale SIS. \n", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86494\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86494/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -24519,7 +53376,7 @@ "11:00", "12:50", "LORIA B51 - Loria Center B51", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -24528,13 +53385,41 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Architecture courses will be open for registration on January 12 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. (\u201cBlue Form.\u201d)\u201d.\n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https:\/\/www.architecture.yale.edu\/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on Yale SIS. \n", + "classnotes": "Architecture courses will be open for registration on January 12 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. (\u201cBlue Form.\u201d)\u201d.\n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https://www.architecture.yale.edu/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on Yale SIS. \n", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86495\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86495/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -24571,7 +53456,7 @@ "11:00", "12:50", "RDH 212 - Rudolph Hall 212", - "https:\/\/map.yale.edu\/?id=1910#!m\/559534" + "https://map.yale.edu/?id=1910#!m/559534" ] ] }, @@ -24580,13 +53465,41 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Architecture courses will be open for registration on January 12 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. (\u201cBlue Form.\u201d)\u201d.\n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https:\/\/www.architecture.yale.edu\/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on Yale SIS. \n", + "classnotes": "Architecture courses will be open for registration on January 12 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. (\u201cBlue Form.\u201d)\u201d.\n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https://www.architecture.yale.edu/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on Yale SIS. \n", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86496\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86496/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -24623,7 +53536,7 @@ "11:00", "12:50", "RDH 706 - Rudolph Hall 706", - "https:\/\/map.yale.edu\/?id=1910#!m\/559534" + "https://map.yale.edu/?id=1910#!m/559534" ] ] }, @@ -24632,18 +53545,46 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Architecture courses will be open for registration on January 12 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. (\u201cBlue Form.\u201d)\u201d.\n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https:\/\/www.architecture.yale.edu\/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on Yale SIS. \n", + "classnotes": "Architecture courses will be open for registration on January 12 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. (\u201cBlue Form.\u201d)\u201d.\n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https://www.architecture.yale.edu/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on Yale SIS. \n", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86497\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86497/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This seminar explores how architects might use a wider array of communication processes\u2014from text to image, from moving image to network and beyond\u2014to describe, develop, and release their ideas strategically. The inquiry includes, but goes beyond, graphic tools to explore alternate models of knowledge creation; it is akin to research but is more open-ended in terms of its methodologies and possible outcomes. Architecture in this sense is seen in the context of a wide variety of other subjects. This seminar is structured in three parts, each one looking at a different communication medium and its effects: moving image, printed pamphlet, and a single surface\/function web graphic. Each of these media implies different ideas of duration, attention, audience, and distribution and is explored through a series of activities: illustrated talks, readings, precedent studies, and three projects developed by each student.", + "description": "This seminar explores how architects might use a wider array of communication processes\u2014from text to image, from moving image to network and beyond\u2014to describe, develop, and release their ideas strategically. The inquiry includes, but goes beyond, graphic tools to explore alternate models of knowledge creation; it is akin to research but is more open-ended in terms of its methodologies and possible outcomes. Architecture in this sense is seen in the context of a wide variety of other subjects. This seminar is structured in three parts, each one looking at a different communication medium and its effects: moving image, printed pamphlet, and a single surface/function web graphic. Each of these media implies different ideas of duration, attention, audience, and distribution and is explored through a series of activities: illustrated talks, readings, precedent studies, and three projects developed by each student.", "short_title": "Graphic Inquiry", "title": "Graphic Inquiry", "school": "AC", @@ -24675,7 +53616,7 @@ "11:00", "12:50", "RDH 706 - Rudolph Hall 706", - "https:\/\/map.yale.edu\/?id=1910#!m\/559534" + "https://map.yale.edu/?id=1910#!m/559534" ] ] }, @@ -24684,13 +53625,41 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Architecture courses will be open for registration on January 12 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. (\u201cBlue Form.\u201d)\u201d.\n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https:\/\/www.architecture.yale.edu\/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on Yale SIS. \n", + "classnotes": "Architecture courses will be open for registration on January 12 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. (\u201cBlue Form.\u201d)\u201d.\n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https://www.architecture.yale.edu/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on Yale SIS. \n", "final_exam": "", "course_home_url": "", "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -24733,7 +53702,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -24776,7 +53773,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -24813,7 +53838,7 @@ "13:30", "15:20", "RDH 7-FL - Rudolph Hall 7-FL", - "https:\/\/map.yale.edu\/?id=1910#!m\/559534" + "https://map.yale.edu/?id=1910#!m/559534" ] ] }, @@ -24825,10 +53850,135 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83360\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83360/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998803973197937, + 0.9987754225730896, + 0.9988347887992859, + 0.9988943934440613, + 0.9987492561340332, + 0.9974119067192078, + 0.9988671541213989, + 0.9987033605575562, + 0.9988168478012085, + 0.9987930059432983 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988130331039429, + 0.9989318251609802, + 0.9989302754402161, + 0.9989057779312134, + 0.9989079236984253, + 0.9987983703613281, + 0.9987584352493286, + 0.9994975328445435, + 0.9989039897918701, + 0.997866690158844 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986850619316101, + 0.9989380240440369, + 0.9989306330680847, + 0.9989193677902222, + 0.9989141225814819, + 0.9989016056060791, + 0.9988425374031067, + 0.998934805393219, + 0.9985396862030029 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 28, + "final_proportion": 0.9655172413793104, + "final_counts": { + "POSITIVE": 28, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9655172413793104, + "NEGATIVE": 0.034482758620689655 + } + } }, { "season_code": "202301", @@ -24868,13 +54018,13 @@ "9:25", "10:15", "LORIA B51 - Loria Center B51", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ], [ "10:30", "13:00", "LORIA B51 - Loria Center B51", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -24888,10 +54038,147 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83365\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83365/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987012147903442, + 0.9988470077514648, + 0.9989247918128967, + 0.9988085031509399, + 0.9986974596977234, + 0.998773992061615, + 0.9986690282821655, + 0.9987781643867493, + 0.9971119165420532, + 0.9988719820976257, + 0.9989099502563477, + 0.9988804459571838 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989374279975891, + 0.9989145994186401, + 0.9989134073257446, + 0.9986950755119324, + 0.998932421207428, + 0.9987718462944031, + 0.9987732768058777, + 0.9934205412864685, + 0.9989280104637146, + 0.9988961219787598 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984814524650574, + 0.998796820640564, + 0.9989349246025085, + 0.9989249110221863, + 0.9988969564437866, + 0.9986938834190369, + 0.9988290667533875, + 0.998677670955658, + 0.9988481998443604, + 0.9988588094711304, + 0.9988258481025696, + 0.9985271692276001, + 0.998856782913208 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 34, + "final_proportion": 0.9714285714285714, + "final_counts": { + "POSITIVE": 34, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9714285714285714, + "NEGATIVE": 0.02857142857142857 + } + } }, { "season_code": "202301", @@ -24929,7 +54216,7 @@ "11:35", "13:25", "RDH HASTINGS - Rudolph Hall HASTINGS", - "https:\/\/map.yale.edu\/?id=1910#!m\/559534" + "https://map.yale.edu/?id=1910#!m/559534" ] ] }, @@ -24945,10 +54232,207 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83370\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83370/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.999494194984436, + 0.9988981485366821, + 0.9988541603088379, + 0.9988018274307251, + 0.9988952875137329, + 0.9989190101623535, + 0.9967448711395264, + 0.9986553192138672, + 0.9989230036735535, + 0.9982903599739075, + 0.9986934065818787, + 0.998892605304718, + 0.9989097118377686, + 0.9988113641738892, + 0.9989091157913208, + 0.9989272952079773, + 0.9988783001899719, + 0.9988648891448975, + 0.9988711476325989, + 0.9989062547683716 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 19 + }, + "sentiment_distribution": { + "NEGATIVE": 0.05, + "POSITIVE": 0.95 + }, + "sentiment_overall": [ + "POSITIVE", + 0.95 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984197616577148, + 0.9988722205162048, + 0.998916506767273, + 0.9989005327224731, + 0.9988994598388672, + 0.991051435470581, + 0.9970266222953796, + 0.998816728591919, + 0.9988901019096375, + 0.998917818069458, + 0.9989271759986877, + 0.9988825917243958, + 0.9989859461784363, + 0.9984124898910522, + 0.9988498687744141, + 0.9989364743232727, + 0.9988985061645508, + 0.9989193677902222, + 0.998863697052002, + 0.9971926808357239, + 0.9989312291145325 + ], + "sentiment_counts": { + "NEGATIVE": 4, + "POSITIVE": 17 + }, + "sentiment_distribution": { + "NEGATIVE": 0.19047619047619047, + "POSITIVE": 0.8095238095238095 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8095238095238095 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9990018010139465, + 0.9989074468612671, + 0.9989023208618164, + 0.9989332556724548, + 0.9989091157913208, + 0.998855471611023, + 0.9957283139228821, + 0.9211229681968689, + 0.9988908171653748, + 0.9988118410110474, + 0.9988355040550232, + 0.9988871216773987, + 0.9989400506019592, + 0.9989179372787476, + 0.9989323019981384, + 0.995484471321106, + 0.998924195766449, + 0.998916506767273, + 0.9981960654258728, + 0.9987370371818542, + 0.9955852031707764, + 0.9989122152328491, + 0.9988355040550232, + 0.9989246726036072 + ], + "sentiment_counts": { + "NEGATIVE": 4, + "POSITIVE": 20 + }, + "sentiment_distribution": { + "NEGATIVE": 0.16666666666666666, + "POSITIVE": 0.8333333333333334 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 56, + "final_proportion": 0.8615384615384616, + "final_counts": { + "NEGATIVE": 9, + "POSITIVE": 56 + }, + "final_distribution": { + "NEGATIVE": 0.13846153846153847, + "POSITIVE": 0.8615384615384616 + } + } }, { "season_code": "202301", @@ -24985,13 +54469,13 @@ "9:00", "10:50", "LORIA 351 - Loria Center 351", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ], [ "11:00", "12:30", "LORIA 351 - Loria Center 351", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ], "Wednesday": [ @@ -24999,7 +54483,7 @@ "9:00", "10:50", "LORIA 351 - Loria Center 351", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -25014,7 +54498,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -25083,7 +54595,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -25126,13 +54666,13 @@ "11:30", "13:00", "RDH HASTINGS - Rudolph Hall HASTINGS", - "https:\/\/map.yale.edu\/?id=1910#!m\/559534" + "https://map.yale.edu/?id=1910#!m/559534" ], [ "14:00", "17:00", "LORIA 259 - Loria Center 259", - "https:\/\/map.yale.edu\/?id=1910#!m\/559534" + "https://map.yale.edu/?id=1910#!m/559534" ] ] }, @@ -25147,7 +54687,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -25193,13 +54761,13 @@ "11:30", "13:00", "", - "https:\/\/map.yale.edu\/?id=1910#!m\/559534" + "https://map.yale.edu/?id=1910#!m/559534" ], [ "14:00", "17:00", "RDH 706 - Rudolph Hall 706", - "https:\/\/map.yale.edu\/?id=1910#!m\/559534" + "https://map.yale.edu/?id=1910#!m/559534" ] ] }, @@ -25214,7 +54782,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -25260,13 +54856,13 @@ "11:30", "13:00", "", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ], [ "14:00", "17:00", "LORIA 258 - Loria Center 258", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -25281,7 +54877,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -25327,13 +54951,13 @@ "11:30", "13:00", "", - "https:\/\/map.yale.edu\/?id=1910#!m\/559534" + "https://map.yale.edu/?id=1910#!m/559534" ], [ "14:00", "17:00", "RDH 322 - Rudolph Hall 322", - "https:\/\/map.yale.edu\/?id=1910#!m\/559534" + "https://map.yale.edu/?id=1910#!m/559534" ] ] }, @@ -25348,7 +54972,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -25394,13 +55046,13 @@ "11:30", "13:00", "", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ], [ "14:00", "17:00", "LORIA 360 - Loria Center 360", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -25415,7 +55067,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -25461,13 +55141,13 @@ "11:30", "13:00", "", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ], [ "14:00", "17:00", "LORIA 351 - Loria Center 351", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -25482,7 +55162,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -25525,13 +55233,13 @@ "11:30", "13:00", "", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ], [ "14:00", "18:00", "LORIA B51 - Loria Center B51", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -25546,7 +55254,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -25583,7 +55319,7 @@ "11:00", "12:50", "LORIA 360 - Loria Center 360", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -25592,13 +55328,41 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Architecture courses will be open for registration on January 12 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. (\u201cBlue Form.\u201d)\u201d.\n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https:\/\/www.architecture.yale.edu\/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on Yale SIS. \n", + "classnotes": "Architecture courses will be open for registration on January 12 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. (\u201cBlue Form.\u201d)\u201d.\n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https://www.architecture.yale.edu/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on Yale SIS. \n", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86508\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86508/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -25635,7 +55399,7 @@ "14:00", "15:50", "CCAM 103 - Center for Collab Arts & Media 103", - "https:\/\/map.yale.edu\/?id=1910#!m\/560098" + "https://map.yale.edu/?id=1910#!m/560098" ] ] }, @@ -25644,13 +55408,41 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Architecture courses will be open for registration on January 12 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. (\u201cBlue Form.\u201d)\u201d.\n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https:\/\/www.architecture.yale.edu\/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on Yale SIS. \n", + "classnotes": "Architecture courses will be open for registration on January 12 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. (\u201cBlue Form.\u201d)\u201d.\n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https://www.architecture.yale.edu/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on Yale SIS. \n", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86509\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86509/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -25687,7 +55479,7 @@ "14:20", "16:10", "LORIA B50 - Loria Center B50", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -25696,13 +55488,41 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Architecture courses will be open for registration on January 12 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. (\u201cBlue Form.\u201d)\u201d.\n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https:\/\/www.architecture.yale.edu\/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on Yale SIS. \n", + "classnotes": "Architecture courses will be open for registration on January 12 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. (\u201cBlue Form.\u201d)\u201d.\n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https://www.architecture.yale.edu/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on Yale SIS. \n", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86510\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86510/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -25742,7 +55562,7 @@ "11:00", "12:50", "CCAM 103 - Center for Collab Arts & Media 103", - "https:\/\/map.yale.edu\/?id=1910#!m\/560098" + "https://map.yale.edu/?id=1910#!m/560098" ] ] }, @@ -25751,13 +55571,41 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Architecture courses will be open for registration on January 12 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. (\u201cBlue Form.\u201d)\u201d.\n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https:\/\/www.architecture.yale.edu\/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on Yale SIS. \n", + "classnotes": "Architecture courses will be open for registration on January 12 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. (\u201cBlue Form.\u201d)\u201d.\n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https://www.architecture.yale.edu/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on Yale SIS. \n", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86511\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86511/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -25794,7 +55642,7 @@ "11:00", "12:50", "RDH 212 - Rudolph Hall 212", - "https:\/\/map.yale.edu\/?id=1910#!m\/559534" + "https://map.yale.edu/?id=1910#!m/559534" ] ] }, @@ -25803,13 +55651,41 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Architecture courses will be open for registration on January 12 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. (\u201cBlue Form.\u201d)\u201d.\n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https:\/\/www.architecture.yale.edu\/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on Yale SIS. \n", + "classnotes": "Architecture courses will be open for registration on January 12 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. (\u201cBlue Form.\u201d)\u201d.\n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https://www.architecture.yale.edu/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on Yale SIS. \n", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86512\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86512/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -25846,7 +55722,7 @@ "11:00", "12:50", "RDH 706 - Rudolph Hall 706", - "https:\/\/map.yale.edu\/?id=1910#!m\/559534" + "https://map.yale.edu/?id=1910#!m/559534" ] ] }, @@ -25855,13 +55731,41 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Architecture courses will be open for registration on January 12 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. (\u201cBlue Form.\u201d)\u201d.\n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https:\/\/www.architecture.yale.edu\/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on Yale SIS. \n", + "classnotes": "Architecture courses will be open for registration on January 12 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. (\u201cBlue Form.\u201d)\u201d.\n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https://www.architecture.yale.edu/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on Yale SIS. \n", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86513\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86513/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -25898,7 +55802,7 @@ "11:00", "12:50", "RDH SB07 - Rudolph Hall SB07", - "https:\/\/map.yale.edu\/?id=1910#!m\/559534" + "https://map.yale.edu/?id=1910#!m/559534" ] ] }, @@ -25907,13 +55811,41 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Architecture courses will be open for registration on January 12 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. (\u201cBlue Form.\u201d)\u201d.\n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https:\/\/www.architecture.yale.edu\/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on Yale SIS. \n", + "classnotes": "Architecture courses will be open for registration on January 12 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. (\u201cBlue Form.\u201d)\u201d.\n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https://www.architecture.yale.edu/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on Yale SIS. \n", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86514\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86514/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -25953,7 +55885,7 @@ "11:00", "12:50", "RDH 604 - Rudolph Hall 604", - "https:\/\/map.yale.edu\/?id=1910#!m\/559534" + "https://map.yale.edu/?id=1910#!m/559534" ] ] }, @@ -25962,13 +55894,41 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Architecture courses will be open for registration on January 12 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. (\u201cBlue Form.\u201d)\u201d.\n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https:\/\/www.architecture.yale.edu\/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on Yale SIS. \n", + "classnotes": "Architecture courses will be open for registration on January 12 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. (\u201cBlue Form.\u201d)\u201d.\n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https://www.architecture.yale.edu/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on Yale SIS. \n", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86515\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86515/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -26011,7 +55971,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -26054,7 +56042,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -26091,7 +56107,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -26128,7 +56172,7 @@ "13:30", "15:20", "RDH 705 - Rudolph Hall 705", - "https:\/\/map.yale.edu\/?id=1910#!m\/559534" + "https://map.yale.edu/?id=1910#!m/559534" ] ], "Wednesday": [ @@ -26136,7 +56180,7 @@ "13:30", "15:20", "RDH 705 - Rudolph Hall 705", - "https:\/\/map.yale.edu\/?id=1910#!m\/559534" + "https://map.yale.edu/?id=1910#!m/559534" ] ], "Friday": [ @@ -26144,7 +56188,7 @@ "13:30", "15:20", "RDH 705 - Rudolph Hall 705", - "https:\/\/map.yale.edu\/?id=1910#!m\/559534" + "https://map.yale.edu/?id=1910#!m/559534" ] ] }, @@ -26156,10 +56200,97 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85214\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85214/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987928867340088, + 0.99891197681427, + 0.9986600875854492 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988441467285156, + 0.9988051652908325, + 0.9895437955856323, + 0.9986976385116577 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989269375801086, + 0.9995014667510986, + 0.9987624883651733 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 0.9, + "final_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + } + } }, { "season_code": "202301", @@ -26196,7 +56327,7 @@ "11:00", "12:30", "RDH HASTINGS - Rudolph Hall HASTINGS", - "https:\/\/map.yale.edu\/?id=1910#!m\/559534" + "https://map.yale.edu/?id=1910#!m/559534" ] ] }, @@ -26205,13 +56336,41 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Architecture courses will be open for registration on January 12 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. (\u201cBlue Form.\u201d)\u201d.\n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https:\/\/www.architecture.yale.edu\/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on Yale SIS. \n", + "classnotes": "Architecture courses will be open for registration on January 12 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. (\u201cBlue Form.\u201d)\u201d.\n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https://www.architecture.yale.edu/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on Yale SIS. \n", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86516\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86516/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -26254,7 +56413,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -26297,7 +56484,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -26335,7 +56550,7 @@ "13:30", "14:20", "LORIA 250 - Loria Center 250", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ], "Thursday": [ @@ -26343,7 +56558,7 @@ "13:30", "14:20", "LORIA 250 - Loria Center 250", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -26361,10 +56576,197 @@ "classnotes": "", "final_exam": "Sunday, May 7, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84247\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84247/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989343285560608, + 0.9988504648208618, + 0.9962563514709473, + 0.9988486766815186, + 0.9989031553268433, + 0.9988505840301514, + 0.9986708164215088, + 0.9989235997200012, + 0.9987183809280396, + 0.998724639415741, + 0.998706579208374, + 0.9988276362419128, + 0.9987008571624756, + 0.9988861680030823, + 0.9988823533058167, + 0.9988368153572083, + 0.998803973197937, + 0.9988728165626526, + 0.9987857937812805, + 0.9987633228302002 + ], + "sentiment_counts": { + "POSITIVE": 20, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988037347793579, + 0.9989131689071655, + 0.9989110231399536, + 0.9988991022109985, + 0.9989148378372192, + 0.9989238381385803, + 0.9986780285835266, + 0.998915433883667, + 0.998778760433197, + 0.9989180564880371, + 0.9989036321640015, + 0.9984006285667419, + 0.998914361000061, + 0.9987983703613281, + 0.998823344707489, + 0.9986989498138428, + 0.996812641620636, + 0.9983301758766174 + ], + "sentiment_counts": { + "POSITIVE": 18, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989288449287415, + 0.998893678188324, + 0.9982798099517822, + 0.9989270567893982, + 0.9988471269607544, + 0.9989330172538757, + 0.9974592328071594, + 0.9988605976104736, + 0.9980168342590332, + 0.9989079236984253, + 0.9989080429077148, + 0.9985999464988708, + 0.9987595081329346, + 0.9988610744476318, + 0.9968560934066772, + 0.9989230036735535, + 0.998910665512085, + 0.9986488223075867, + 0.9989197254180908, + 0.9982250332832336, + 0.9988434314727783, + 0.9988749623298645 + ], + "sentiment_counts": { + "POSITIVE": 21, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9545454545454546, + "NEGATIVE": 0.045454545454545456 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9545454545454546 + ] + }, + "final_label": "POSITIVE", + "final_count": 59, + "final_proportion": 0.9833333333333333, + "final_counts": { + "POSITIVE": 59, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9833333333333333, + "NEGATIVE": 0.016666666666666666 + } + } }, { "season_code": "202301", @@ -26396,7 +56798,7 @@ "14:30", "15:20", "LORIA 259 - Loria Center 259", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -26413,7 +56815,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -26445,7 +56875,7 @@ "16:00", "16:50", "LORIA 258 - Loria Center 258", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -26462,7 +56892,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -26494,7 +56952,7 @@ "15:30", "16:20", "LORIA B51 - Loria Center B51", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -26511,7 +56969,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -26543,7 +57029,7 @@ "11:35", "12:25", "LORIA 259 - Loria Center 259", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -26560,7 +57046,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -26597,7 +57111,7 @@ "14:00", "15:50", "RDH 212 - Rudolph Hall 212", - "https:\/\/map.yale.edu\/?id=1910#!m\/559534" + "https://map.yale.edu/?id=1910#!m/559534" ] ] }, @@ -26606,13 +57120,41 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Architecture courses will be open for registration on January 12 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. (\u201cBlue Form.\u201d)\u201d.\n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https:\/\/www.architecture.yale.edu\/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on Yale SIS. \n", + "classnotes": "Architecture courses will be open for registration on January 12 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. (\u201cBlue Form.\u201d)\u201d.\n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https://www.architecture.yale.edu/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on Yale SIS. \n", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86519\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86519/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -26652,7 +57194,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -26693,7 +57263,7 @@ "19:00", "22:00", "HQ L02 - Humanities Quadrangle L02", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -26701,7 +57271,7 @@ "9:25", "11:15", "HQ 113 - Humanities Quadrangle 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -26713,10 +57283,89 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84021\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84021/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988338351249695, + 0.9989303946495056 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9975897073745728, + 0.9981322884559631 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9953613877296448, + 0.9988667964935303, + 0.9989263415336609 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 7 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -26753,7 +57402,7 @@ "9:00", "10:50", "RDH 706 - Rudolph Hall 706", - "https:\/\/map.yale.edu\/?id=1910#!m\/559534" + "https://map.yale.edu/?id=1910#!m/559534" ] ] }, @@ -26762,18 +57411,46 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Architecture courses will be open for registration on January 12 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. (\u201cBlue Form.\u201d)\u201d.\n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https:\/\/www.architecture.yale.edu\/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on Yale SIS. \n", + "classnotes": "Architecture courses will be open for registration on January 12 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. (\u201cBlue Form.\u201d)\u201d.\n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https://www.architecture.yale.edu/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on Yale SIS. \n", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86520\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86520/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "Ever since the UN declared shelter a \"human right\" in 1951, the number of refugee camps has escalated. Across the globe, NGOs, humanitarian organizations, and architects have been involved in designing provisional housing for refugees\u2014a term that covers peoples displaced by ethnic, political, economic, and environmental reasons, both within and beyond their countries. Initially designed as temporary solutions, many are now the size of cities, in some cases with populations that have soared to half a million people. The number of refugees worldwide, currently set at about sixty-five million, is expected to grow rapidly, given the accelerating climate crisis. The camps themselves fall into different typologies. News organizations frequently report on the more recent ones\u2014in Kenya, Syria, Jordan, Turkey, Bangladesh, Vietnam, and Pakistan. Older camps such as the Palestinian ones or Dadaab (Kenya), have become a permanent home to several generations of residents who, though born in the host country, are nevertheless stateless and thus extremely vulnerable. Less visible, but equally ubiquitous, are detention and internment facilities established by liberal democracies in Europe and Australia and at the U.S.\/Mexico border. This seminar analyzes refugee camps and detention centers from a transnational perspective, probing the limits and problems evident in different cases, as well as the state of exception and extraterritoriality that applies to all of them. It also studies disaster relief housing around the globe, sometimes built with the help of refugees. What metrics should we use to judge successful design?", + "description": "Ever since the UN declared shelter a \"human right\" in 1951, the number of refugee camps has escalated. Across the globe, NGOs, humanitarian organizations, and architects have been involved in designing provisional housing for refugees\u2014a term that covers peoples displaced by ethnic, political, economic, and environmental reasons, both within and beyond their countries. Initially designed as temporary solutions, many are now the size of cities, in some cases with populations that have soared to half a million people. The number of refugees worldwide, currently set at about sixty-five million, is expected to grow rapidly, given the accelerating climate crisis. The camps themselves fall into different typologies. News organizations frequently report on the more recent ones\u2014in Kenya, Syria, Jordan, Turkey, Bangladesh, Vietnam, and Pakistan. Older camps such as the Palestinian ones or Dadaab (Kenya), have become a permanent home to several generations of residents who, though born in the host country, are nevertheless stateless and thus extremely vulnerable. Less visible, but equally ubiquitous, are detention and internment facilities established by liberal democracies in Europe and Australia and at the U.S./Mexico border. This seminar analyzes refugee camps and detention centers from a transnational perspective, probing the limits and problems evident in different cases, as well as the state of exception and extraterritoriality that applies to all of them. It also studies disaster relief housing around the globe, sometimes built with the help of refugees. What metrics should we use to judge successful design?", "short_title": "From Shigeru Ban to Ikea: Des...", "title": "From Shigeru Ban to Ikea: Designing Refugee Camps", "school": "AC", @@ -26805,7 +57482,7 @@ "15:00", "16:50", "RDH 211 - Rudolph Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/559534" + "https://map.yale.edu/?id=1910#!m/559534" ] ] }, @@ -26814,13 +57491,41 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Architecture courses will be open for registration on January 12 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. (\u201cBlue Form.\u201d)\u201d.\n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https:\/\/www.architecture.yale.edu\/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on Yale SIS. \n", + "classnotes": "Architecture courses will be open for registration on January 12 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. (\u201cBlue Form.\u201d)\u201d.\n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https://www.architecture.yale.edu/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on Yale SIS. \n", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86521\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86521/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -26863,7 +57568,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -26906,7 +57639,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -26943,7 +57704,7 @@ "13:30", "15:20", "RDH 212 - Rudolph Hall 212", - "https:\/\/map.yale.edu\/?id=1910#!m\/559534" + "https://map.yale.edu/?id=1910#!m/559534" ] ] }, @@ -26960,10 +57721,93 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85215\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85215/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988999366760254, + 0.998917818069458, + 0.9988105297088623 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988749623298645, + 0.9989325404167175, + 0.9989086389541626 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988735318183899, + 0.9988352656364441, + 0.9989092350006104 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 9 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -27000,7 +57844,7 @@ "15:30", "17:20", "LORIA 358 - Loria Center 358", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -27016,10 +57860,101 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86209\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86209/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989117383956909, + 0.998711347579956, + 0.9988248944282532, + 0.9988151788711548 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.998794436454773, + 0.9988973140716553, + 0.9974531531333923, + 0.9829020500183105 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989174604415894, + 0.9987612962722778, + 0.9966487288475037, + 0.9988296627998352 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 0.8333333333333334, + "final_counts": { + "POSITIVE": 10, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + } + } }, { "season_code": "202301", @@ -27057,7 +57992,7 @@ "9:25", "11:15", "LORIA 258 - Loria Center 258", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -27069,10 +58004,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84277\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84277/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -27109,7 +58072,7 @@ "9:00", "10:50", "RDH 322 - Rudolph Hall 322", - "https:\/\/map.yale.edu\/?id=1910#!m\/559534" + "https://map.yale.edu/?id=1910#!m/559534" ] ] }, @@ -27118,13 +58081,41 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Architecture courses will be open for registration on January 12 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. (\u201cBlue Form.\u201d)\u201d.\n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https:\/\/www.architecture.yale.edu\/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on Yale SIS. \n", + "classnotes": "Architecture courses will be open for registration on January 12 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. (\u201cBlue Form.\u201d)\u201d.\n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https://www.architecture.yale.edu/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on Yale SIS. \n", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86522\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86522/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -27161,7 +58152,7 @@ "13:30", "15:20", "RDH 211 - Rudolph Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/559534" + "https://map.yale.edu/?id=1910#!m/559534" ] ] }, @@ -27176,10 +58167,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83385\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83385/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -27216,7 +58235,7 @@ "11:00", "12:50", "LORIA B50 - Loria Center B50", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -27225,13 +58244,41 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Architecture courses will be open for registration on January 12 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. (\u201cBlue Form.\u201d)\u201d.\n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https:\/\/www.architecture.yale.edu\/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on Yale SIS. \n", + "classnotes": "Architecture courses will be open for registration on January 12 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. (\u201cBlue Form.\u201d)\u201d.\n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https://www.architecture.yale.edu/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on Yale SIS. \n", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86523\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86523/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -27268,7 +58315,7 @@ "14:00", "15:50", "RDH 706 - Rudolph Hall 706", - "https:\/\/map.yale.edu\/?id=1910#!m\/559534" + "https://map.yale.edu/?id=1910#!m/559534" ] ] }, @@ -27277,13 +58324,41 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Architecture courses will be open for registration on January 12 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. (\u201cBlue Form.\u201d)\u201d.\n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https:\/\/www.architecture.yale.edu\/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on Yale SIS. \n", + "classnotes": "Architecture courses will be open for registration on January 12 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. (\u201cBlue Form.\u201d)\u201d.\n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https://www.architecture.yale.edu/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on Yale SIS. \n", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86524\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86524/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -27323,7 +58398,7 @@ "11:00", "12:50", "RDH 212 - Rudolph Hall 212", - "https:\/\/map.yale.edu\/?id=1910#!m\/559534" + "https://map.yale.edu/?id=1910#!m/559534" ] ] }, @@ -27332,13 +58407,41 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Architecture courses will be open for registration on January 12 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. (\u201cBlue Form.\u201d)\u201d.\n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https:\/\/www.architecture.yale.edu\/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on Yale SIS. \n", + "classnotes": "Architecture courses will be open for registration on January 12 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. (\u201cBlue Form.\u201d)\u201d.\n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https://www.architecture.yale.edu/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on Yale SIS. \n", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86525\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86525/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -27388,15 +58491,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84290\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84290/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "Throughout the nineteenth and twentieth centuries, architects, planners, landscape architects, artists, and designers understood and reacted to the specific conditions of their historical and geographical place within Latin America. In this way, they developed new yet fluid relationships with those and which each other that produced work ranging from the individual work of art, to buildings, cities, and possible utopias. How this production was made, theorized, and developed expresses alternate conceptions of and reactions to the specific forms of modernity developed there. The goal of this course is to engage in broad dialogues with historical case studies throughout Latin America during this period that show how the creation of ideas, works, space, and place was part of a critical practice with\/in \"alternative modernities;\" self-conscious and original, yet operating under a progressive spirit.\u00a0 We look at the self-reflexive practices and negotiations within\/through modern art, architecture, and utopias in Latin America\u2014as operations of vernacularization, transculturation or creolization, denaturalization, and deterritorialization\u2014as fundamental works, problems, and didactic exercises intent on producing new knowledge and directions central to its socio-cultural development and to its architectural and artistic expressions.", + "description": "Throughout the nineteenth and twentieth centuries, architects, planners, landscape architects, artists, and designers understood and reacted to the specific conditions of their historical and geographical place within Latin America. In this way, they developed new yet fluid relationships with those and which each other that produced work ranging from the individual work of art, to buildings, cities, and possible utopias. How this production was made, theorized, and developed expresses alternate conceptions of and reactions to the specific forms of modernity developed there. The goal of this course is to engage in broad dialogues with historical case studies throughout Latin America during this period that show how the creation of ideas, works, space, and place was part of a critical practice with/in \"alternative modernities;\" self-conscious and original, yet operating under a progressive spirit.\u00a0 We look at the self-reflexive practices and negotiations within/through modern art, architecture, and utopias in Latin America\u2014as operations of vernacularization, transculturation or creolization, denaturalization, and deterritorialization\u2014as fundamental works, problems, and didactic exercises intent on producing new knowledge and directions central to its socio-cultural development and to its architectural and artistic expressions.", "short_title": "Latin American Modernity: Arc...", "title": "Latin American Modernity: Architecture, Art, and Utopia", "school": "AC", @@ -27428,7 +58559,7 @@ "11:00", "12:50", "RDH 706 - Rudolph Hall 706", - "https:\/\/map.yale.edu\/?id=1910#!m\/559534" + "https://map.yale.edu/?id=1910#!m/559534" ] ] }, @@ -27437,13 +58568,41 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Architecture courses will be open for registration on January 12 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. (\u201cBlue Form.\u201d)\u201d.\n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https:\/\/www.architecture.yale.edu\/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on Yale SIS. \n", + "classnotes": "Architecture courses will be open for registration on January 12 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. (\u201cBlue Form.\u201d)\u201d.\n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https://www.architecture.yale.edu/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on Yale SIS. \n", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86526\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86526/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -27474,7 +58633,7 @@ "11:00", "12:50", "LORIA 259 - Loria Center 259", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -27483,13 +58642,41 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Architecture courses will be open for registration on January 12 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. (\u201cBlue Form.\u201d)\u201d.\n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https:\/\/www.architecture.yale.edu\/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on Yale SIS. \n\n\n", + "classnotes": "Architecture courses will be open for registration on January 12 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. (\u201cBlue Form.\u201d)\u201d.\n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https://www.architecture.yale.edu/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on Yale SIS. \n\n\n", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86527\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86527/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -27526,7 +58713,7 @@ "9:00", "10:50", "RDH 322 - Rudolph Hall 322", - "https:\/\/map.yale.edu\/?id=1910#!m\/559534" + "https://map.yale.edu/?id=1910#!m/559534" ] ] }, @@ -27535,13 +58722,41 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Architecture courses will be open for registration on January 12 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. (\u201cBlue Form.\u201d)\u201d.\n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https:\/\/www.architecture.yale.edu\/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on Yale SIS. \n", + "classnotes": "Architecture courses will be open for registration on January 12 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. (\u201cBlue Form.\u201d)\u201d.\n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https://www.architecture.yale.edu/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on Yale SIS. \n", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86528\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86528/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -27578,7 +58793,7 @@ "9:25", "11:15", "RDH 211 - Rudolph Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/559534" + "https://map.yale.edu/?id=1910#!m/559534" ] ] }, @@ -27598,10 +58813,97 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86252\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86252/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998894989490509, + 0.9987830519676208, + 0.9894106984138489 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988648891448975, + 0.9988846182823181, + 0.998870313167572, + 0.9988842606544495 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989340901374817, + 0.9988985061645508, + 0.9988794922828674, + 0.9989145994186401 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 11 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -27638,7 +58940,7 @@ "15:30", "17:20", "RDH 706 - Rudolph Hall 706", - "https:\/\/map.yale.edu\/?id=1910#!m\/559534" + "https://map.yale.edu/?id=1910#!m/559534" ] ] }, @@ -27655,10 +58957,109 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86260\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86260/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989135265350342, + 0.9977103471755981, + 0.9969280362129211, + 0.985247015953064, + 0.9988671541213989 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.6, + "NEGATIVE": 0.4 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9921504259109497, + 0.9987585544586182, + 0.9979333877563477, + 0.9987747073173523 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989218711853027, + 0.9982553124427795, + 0.9987848401069641, + 0.9988484382629395, + 0.9989005327224731, + 0.9988635778427124, + 0.9988873600959778 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 0.875, + "final_counts": { + "POSITIVE": 14, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + } + } }, { "season_code": "202301", @@ -27699,7 +59100,7 @@ "10:30", "11:20", "LORIA 351 - Loria Center 351", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ], "Thursday": [ @@ -27707,7 +59108,7 @@ "10:30", "11:20", "LORIA 351 - Loria Center 351", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -27728,10 +59129,193 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83387\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83387/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985113739967346, + 0.9993385672569275, + 0.9989054203033447, + 0.9987413287162781, + 0.9988246560096741, + 0.9989179372787476, + 0.9987403750419617, + 0.9988346695899963, + 0.998862624168396, + 0.9988658428192139, + 0.9988833069801331, + 0.9987567663192749, + 0.9987362027168274, + 0.9983325600624084, + 0.991707980632782, + 0.9995017051696777, + 0.9976261258125305 + ], + "sentiment_counts": { + "POSITIVE": 15, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8823529411764706, + "NEGATIVE": 0.11764705882352941 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8823529411764706 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981862902641296, + 0.9988204836845398, + 0.9995107650756836, + 0.9989113807678223, + 0.9987157583236694, + 0.9995076656341553, + 0.9887896776199341, + 0.9989262223243713, + 0.9988092184066772, + 0.9994956254959106, + 0.9995019435882568, + 0.9973430037498474, + 0.9980487823486328, + 0.9912784695625305, + 0.9981743097305298, + 0.9986567497253418, + 0.9995007514953613, + 0.9941630959510803 + ], + "sentiment_counts": { + "NEGATIVE": 8, + "POSITIVE": 10 + }, + "sentiment_distribution": { + "NEGATIVE": 0.4444444444444444, + "POSITIVE": 0.5555555555555556 + }, + "sentiment_overall": [ + "POSITIVE", + 0.5555555555555556 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.986362636089325, + 0.9980016350746155, + 0.9976667165756226, + 0.9995057582855225, + 0.9995101690292358, + 0.998887836933136, + 0.998101532459259, + 0.9941808581352234, + 0.9926744103431702, + 0.9988856911659241, + 0.9986157417297363, + 0.9989258646965027, + 0.9995089769363403, + 0.9994294047355652, + 0.9989312291145325, + 0.9978559613227844, + 0.9989157915115356, + 0.9986143112182617, + 0.998832643032074, + 0.9982798099517822, + 0.9995107650756836, + 0.9995071887969971, + 0.999388575553894 + ], + "sentiment_counts": { + "POSITIVE": 14, + "NEGATIVE": 9 + }, + "sentiment_distribution": { + "POSITIVE": 0.6086956521739131, + "NEGATIVE": 0.391304347826087 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6086956521739131 + ] + }, + "final_label": "POSITIVE", + "final_count": 39, + "final_proportion": 0.6724137931034483, + "final_counts": { + "POSITIVE": 39, + "NEGATIVE": 19 + }, + "final_distribution": { + "POSITIVE": 0.6724137931034483, + "NEGATIVE": 0.3275862068965517 + } + } }, { "season_code": "202301", @@ -27765,7 +59349,7 @@ "13:30", "14:20", "RDH 211 - Rudolph Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/559534" + "https://map.yale.edu/?id=1910#!m/559534" ] ] }, @@ -27782,7 +59366,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -27816,7 +59428,7 @@ "17:00", "17:50", "WLH 114 - William L. Harkness Hall 114", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -27833,7 +59445,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -27867,7 +59507,7 @@ "16:00", "16:50", "RDH 211 - Rudolph Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/559534" + "https://map.yale.edu/?id=1910#!m/559534" ] ] }, @@ -27884,7 +59524,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -27918,7 +59586,7 @@ "14:30", "15:20", "RDH 211 - Rudolph Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/559534" + "https://map.yale.edu/?id=1910#!m/559534" ] ] }, @@ -27935,7 +59603,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -27973,7 +59669,7 @@ "9:25", "11:15", "LC 213 - Linsly-Chittenden Hall 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -27989,18 +59685,127 @@ ], "regnotes": "", "rp_attr": "", - "classnotes": "See the English department website for a list of creative writing and journalism courses that require the submission of an application by noon on November 4. https:\/\/english.yale.edu\/undergraduate\/courses\/creative-writing-journalism-courses", + "classnotes": "See the English department website for a list of creative writing and journalism courses that require the submission of an application by noon on November 4. https://english.yale.edu/undergraduate/courses/creative-writing-journalism-courses", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84040\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84040/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "", - "description": "This lecture course researches global infrastructure space as a medium of polity. More than networks of pipes and wires under the ground, this infrastructure space is a visible, enveloping urban medium filled with repeatable spatial formulas and spatial products. Lectures visit the networks of trade, communication, tourism, labor, air, rail, highway, oil, hydrology, finance, standard making, and activism. Case studies travel around the world to, for instance, free trade zones in Dubai, IT campuses in South Asia, high-speed rail in Saudi Arabia, cable\/satellite networks in Africa, highways in India, a resort in the DPRK, golf courses in China, ISO standards, and automated ports. More than a survey of physical networks and shared protocols, the course also repositions spatial variables in global governance. Infrastructure space may constitute a de facto parliament of decision-making\u2014an intensely spatial extrastatecraft that often spins around irrational desires. Each week, readings, with both evidence and discursive commentary, accompany two lectures and a discussion section.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989367127418518, + 0.9987649917602539, + 0.9986981153488159, + 0.9979945421218872, + 0.9988258481025696, + 0.9988551139831543 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989179372787476, + 0.9983956217765808, + 0.9989168643951416, + 0.9988569021224976, + 0.9986911416053772, + 0.9987801909446716, + 0.9989328980445862, + 0.9989144802093506 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987812638282776, + 0.9985294342041016, + 0.9988330006599426, + 0.9982055425643921, + 0.998896598815918, + 0.9989392161369324, + 0.9988792538642883 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 0.9523809523809523, + "final_counts": { + "POSITIVE": 20, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9523809523809523, + "NEGATIVE": 0.047619047619047616 + } + } + }, + { + "season_code": "202301", + "requirements": "", + "description": "This lecture course researches global infrastructure space as a medium of polity. More than networks of pipes and wires under the ground, this infrastructure space is a visible, enveloping urban medium filled with repeatable spatial formulas and spatial products. Lectures visit the networks of trade, communication, tourism, labor, air, rail, highway, oil, hydrology, finance, standard making, and activism. Case studies travel around the world to, for instance, free trade zones in Dubai, IT campuses in South Asia, high-speed rail in Saudi Arabia, cable/satellite networks in Africa, highways in India, a resort in the DPRK, golf courses in China, ISO standards, and automated ports. More than a survey of physical networks and shared protocols, the course also repositions spatial variables in global governance. Infrastructure space may constitute a de facto parliament of decision-making\u2014an intensely spatial extrastatecraft that often spins around irrational desires. Each week, readings, with both evidence and discursive commentary, accompany two lectures and a discussion section.", "short_title": "Globalization Space", "title": "Globalization Space", "school": "AC", @@ -28036,7 +59841,7 @@ "10:30", "11:20", "LORIA 351 - Loria Center 351", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ], "Thursday": [ @@ -28044,7 +59849,7 @@ "10:30", "11:20", "LORIA 351 - Loria Center 351", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -28058,10 +59863,193 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83387\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83387/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985113739967346, + 0.9993385672569275, + 0.9989054203033447, + 0.9987413287162781, + 0.9988246560096741, + 0.9989179372787476, + 0.9987403750419617, + 0.9988346695899963, + 0.998862624168396, + 0.9988658428192139, + 0.9988833069801331, + 0.9987567663192749, + 0.9987362027168274, + 0.9983325600624084, + 0.991707980632782, + 0.9995017051696777, + 0.9976261258125305 + ], + "sentiment_counts": { + "POSITIVE": 15, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8823529411764706, + "NEGATIVE": 0.11764705882352941 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8823529411764706 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981862902641296, + 0.9988204836845398, + 0.9995107650756836, + 0.9989113807678223, + 0.9987157583236694, + 0.9995076656341553, + 0.9887896776199341, + 0.9989262223243713, + 0.9988092184066772, + 0.9994956254959106, + 0.9995019435882568, + 0.9973430037498474, + 0.9980487823486328, + 0.9912784695625305, + 0.9981743097305298, + 0.9986567497253418, + 0.9995007514953613, + 0.9941630959510803 + ], + "sentiment_counts": { + "NEGATIVE": 8, + "POSITIVE": 10 + }, + "sentiment_distribution": { + "NEGATIVE": 0.4444444444444444, + "POSITIVE": 0.5555555555555556 + }, + "sentiment_overall": [ + "POSITIVE", + 0.5555555555555556 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.986362636089325, + 0.9980016350746155, + 0.9976667165756226, + 0.9995057582855225, + 0.9995101690292358, + 0.998887836933136, + 0.998101532459259, + 0.9941808581352234, + 0.9926744103431702, + 0.9988856911659241, + 0.9986157417297363, + 0.9989258646965027, + 0.9995089769363403, + 0.9994294047355652, + 0.9989312291145325, + 0.9978559613227844, + 0.9989157915115356, + 0.9986143112182617, + 0.998832643032074, + 0.9982798099517822, + 0.9995107650756836, + 0.9995071887969971, + 0.999388575553894 + ], + "sentiment_counts": { + "POSITIVE": 14, + "NEGATIVE": 9 + }, + "sentiment_distribution": { + "POSITIVE": 0.6086956521739131, + "NEGATIVE": 0.391304347826087 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6086956521739131 + ] + }, + "final_label": "POSITIVE", + "final_count": 39, + "final_proportion": 0.6724137931034483, + "final_counts": { + "POSITIVE": 39, + "NEGATIVE": 19 + }, + "final_distribution": { + "POSITIVE": 0.6724137931034483, + "NEGATIVE": 0.3275862068965517 + } + } }, { "season_code": "202301", @@ -28098,7 +60086,7 @@ "11:00", "12:50", "RDH 212 - Rudolph Hall 212", - "https:\/\/map.yale.edu\/?id=1910#!m\/559534" + "https://map.yale.edu/?id=1910#!m/559534" ] ] }, @@ -28110,13 +60098,41 @@ ], "regnotes": "", "rp_attr": "", - "classnotes": "Architecture courses will be open for registration on January 12 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. (\u201cBlue Form.\u201d)\u201d.\n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https:\/\/www.architecture.yale.edu\/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on Yale SIS. \n", + "classnotes": "Architecture courses will be open for registration on January 12 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. (\u201cBlue Form.\u201d)\u201d.\n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https://www.architecture.yale.edu/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on Yale SIS. \n", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86531\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86531/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -28153,7 +60169,7 @@ "15:00", "18:00", "RDH 706 - Rudolph Hall 706", - "https:\/\/map.yale.edu\/?id=1910#!m\/559534" + "https://map.yale.edu/?id=1910#!m/559534" ] ] }, @@ -28162,13 +60178,41 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Architecture courses will be open for registration on January 12 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. (\u201cBlue Form.\u201d)\u201d.\n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https:\/\/www.architecture.yale.edu\/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on Yale SIS. \n", + "classnotes": "Architecture courses will be open for registration on January 12 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. (\u201cBlue Form.\u201d)\u201d.\n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https://www.architecture.yale.edu/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on Yale SIS. \n", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86532\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86532/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -28205,7 +60249,7 @@ "11:00", "12:50", "RDH 322 - Rudolph Hall 322", - "https:\/\/map.yale.edu\/?id=1910#!m\/559534" + "https://map.yale.edu/?id=1910#!m/559534" ] ] }, @@ -28214,13 +60258,41 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Architecture courses will be open for registration on January 12 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. (\u201cBlue Form.\u201d)\u201d.\n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https:\/\/www.architecture.yale.edu\/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on Yale SIS. \n", + "classnotes": "Architecture courses will be open for registration on January 12 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. (\u201cBlue Form.\u201d)\u201d.\n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https://www.architecture.yale.edu/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on Yale SIS. \n", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86533\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86533/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -28257,7 +60329,7 @@ "11:00", "12:50", "RDH 706 - Rudolph Hall 706", - "https:\/\/map.yale.edu\/?id=1910#!m\/559534" + "https://map.yale.edu/?id=1910#!m/559534" ] ] }, @@ -28266,18 +60338,46 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Architecture courses will be open for registration on January 12 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. (\u201cBlue Form.\u201d)\u201d.\n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https:\/\/www.architecture.yale.edu\/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on Yale SIS. \n\n", + "classnotes": "Architecture courses will be open for registration on January 12 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. (\u201cBlue Form.\u201d)\u201d.\n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https://www.architecture.yale.edu/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on Yale SIS. \n\n", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86534\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86534/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "Over the next decade, cities and human settlements will remain a critical lever for addressing the climate crisis and ecological collapse. Contemporary urbanization differs from historical patterns of urban growth in its scale and rate of global change, touching on such dimensions as food and agriculture, land use, biodiversity, water, energy, governance, and more. Large-scale urban expansion of new and growing cities as well as continued development of established cities present opportunities for a new conceptualization of the built environment in the context of sustainability. As cities dominate the globe, the intersection between architecture and environmental action must be redefined. This course is designed for students who seek new terrain for architectural thought within the context of evolving environmental challenges. The course is run as a colloquium and workshop. Invited guests forging new work in the built environment will share not only their current research and practice but also their methods of work. Student-moderated discussions with our guests will present the opportunity for students to build the skills to critically position themselves within the discourse of urbanization, architecture, and environmental action. Concurrently, students will workshop individual or group projects operating at the intersection of the built and natural environments resulting in a project proposal of each student\u2019s choosing. In the short-term, students will build research skills and cultivate critical thinking. In the long-term, students will build the foundations for their future professional \/ academic trajectory by forging new methods of practice or research in urbanization and architecture. Students from all programs are encouraged to enroll and no design work is required. Projects can be historical, analytical, speculative, policy-oriented, etc. The only requirements is for the proposed project to interrogate the intersection between the built and natural environments and open new avenues for cross-disciplinary work about built form as a critical lever for global sustainability.", + "description": "Over the next decade, cities and human settlements will remain a critical lever for addressing the climate crisis and ecological collapse. Contemporary urbanization differs from historical patterns of urban growth in its scale and rate of global change, touching on such dimensions as food and agriculture, land use, biodiversity, water, energy, governance, and more. Large-scale urban expansion of new and growing cities as well as continued development of established cities present opportunities for a new conceptualization of the built environment in the context of sustainability. As cities dominate the globe, the intersection between architecture and environmental action must be redefined. This course is designed for students who seek new terrain for architectural thought within the context of evolving environmental challenges. The course is run as a colloquium and workshop. Invited guests forging new work in the built environment will share not only their current research and practice but also their methods of work. Student-moderated discussions with our guests will present the opportunity for students to build the skills to critically position themselves within the discourse of urbanization, architecture, and environmental action. Concurrently, students will workshop individual or group projects operating at the intersection of the built and natural environments resulting in a project proposal of each student\u2019s choosing. In the short-term, students will build research skills and cultivate critical thinking. In the long-term, students will build the foundations for their future professional / academic trajectory by forging new methods of practice or research in urbanization and architecture. Students from all programs are encouraged to enroll and no design work is required. Projects can be historical, analytical, speculative, policy-oriented, etc. The only requirements is for the proposed project to interrogate the intersection between the built and natural environments and open new avenues for cross-disciplinary work about built form as a critical lever for global sustainability.", "short_title": "The Environmental Project: Re...", "title": "The Environmental Project: Research, Methods & Discourse", "school": "AC", @@ -28310,7 +60410,7 @@ "11:00", "12:50", "LORIA 260 - Loria Center 260", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -28319,13 +60419,41 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Architecture courses will be open for registration on January 12 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. (\u201cBlue Form.\u201d)\u201d.\n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https:\/\/www.architecture.yale.edu\/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on Yale SIS. \n", + "classnotes": "Architecture courses will be open for registration on January 12 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. (\u201cBlue Form.\u201d)\u201d.\n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https://www.architecture.yale.edu/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on Yale SIS. \n", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86535\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86535/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -28362,7 +60490,7 @@ "14:00", "15:50", "RDH 322 - Rudolph Hall 322", - "https:\/\/map.yale.edu\/?id=1910#!m\/559534" + "https://map.yale.edu/?id=1910#!m/559534" ] ] }, @@ -28371,13 +60499,41 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Architecture courses will be open for registration on January 12 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. (\u201cBlue Form.\u201d)\u201d.\n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https:\/\/www.architecture.yale.edu\/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on Yale SIS. \n", + "classnotes": "Architecture courses will be open for registration on January 12 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. (\u201cBlue Form.\u201d)\u201d.\n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https://www.architecture.yale.edu/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on Yale SIS. \n", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86536\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86536/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -28414,7 +60570,7 @@ "11:00", "12:50", "RDH 211 - Rudolph Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/559534" + "https://map.yale.edu/?id=1910#!m/559534" ] ] }, @@ -28423,13 +60579,41 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Architecture courses will be open for registration on January 12 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. (\u201cBlue Form.\u201d)\u201d.\n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https:\/\/www.architecture.yale.edu\/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on Yale SIS. \n", + "classnotes": "Architecture courses will be open for registration on January 12 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. (\u201cBlue Form.\u201d)\u201d.\n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https://www.architecture.yale.edu/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on Yale SIS. \n", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86537\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86537/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -28475,7 +60659,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -28518,7 +60730,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -28561,7 +60801,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -28604,7 +60872,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -28647,7 +60943,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -28684,7 +61008,7 @@ "11:00", "12:50", "RDH 211 - Rudolph Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/559534" + "https://map.yale.edu/?id=1910#!m/559534" ] ] }, @@ -28693,13 +61017,41 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Architecture courses will be open for registration on January 12 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. (\u201cBlue Form.\u201d)\u201d.\n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https:\/\/www.architecture.yale.edu\/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on Yale SIS. \n", + "classnotes": "Architecture courses will be open for registration on January 12 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. (\u201cBlue Form.\u201d)\u201d.\n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https://www.architecture.yale.edu/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on Yale SIS. \n", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86538\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86538/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -28736,7 +61088,7 @@ "11:00", "12:50", "RDH 322 - Rudolph Hall 322", - "https:\/\/map.yale.edu\/?id=1910#!m\/559534" + "https://map.yale.edu/?id=1910#!m/559534" ] ] }, @@ -28745,13 +61097,41 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Architecture courses will be open for registration on January 12 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. (\u201cBlue Form.\u201d)\u201d.\n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https:\/\/www.architecture.yale.edu\/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on Yale SIS. \n", + "classnotes": "Architecture courses will be open for registration on January 12 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. (\u201cBlue Form.\u201d)\u201d.\n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https://www.architecture.yale.edu/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on Yale SIS. \n", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86540\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86540/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -28794,7 +61174,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -28837,7 +61245,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -28878,10 +61314,83 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83393\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83393/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987967014312744 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988664388656616 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998542070388794, + 0.9987367987632751 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 4, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 4 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -28918,7 +61427,7 @@ "13:30", "15:20", "", - "https:\/\/map.yale.edu\/?id=1910#!m\/559534" + "https://map.yale.edu/?id=1910#!m/559534" ] ], "Wednesday": [ @@ -28926,7 +61435,7 @@ "13:30", "15:20", "", - "https:\/\/map.yale.edu\/?id=1910#!m\/559534" + "https://map.yale.edu/?id=1910#!m/559534" ] ], "Friday": [ @@ -28934,7 +61443,7 @@ "13:30", "15:20", "", - "https:\/\/map.yale.edu\/?id=1910#!m\/559534" + "https://map.yale.edu/?id=1910#!m/559534" ] ] }, @@ -28949,14 +61458,93 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9977307915687561, + 0.9988683462142944 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9944648146629333, + 0.9982245564460754, + 0.99853515625 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9961904287338257, + 0.9988736510276794 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 7 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", "requirements": "", "description": "Required in, and limited to, Ph.D. first year, spring term, History and Theory track.) Content to be announced.", - "short_title": "Ph.D. Seminar: History\/Theory II", - "title": "Ph.D. Seminar: History\/Theory II", + "short_title": "Ph.D. Seminar: History/Theory II", + "title": "Ph.D. Seminar: History/Theory II", "school": "GS", "credits": 1.0, "extra_info": "ACTIVE", @@ -28998,17 +61586,45 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83397\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83397/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", "description": "Required in, and limited to, Ph.D. second year, spring term, History and Theory track.", - "short_title": "Ph.D. Seminar: History\/Theory IV", - "title": "Ph.D. Seminar: History\/Theory IV", + "short_title": "Ph.D. Seminar: History/Theory IV", + "title": "Ph.D. Seminar: History/Theory IV", "school": "GS", "credits": 1.0, "extra_info": "ACTIVE", @@ -29038,7 +61654,7 @@ "14:00", "16:00", "", - "https:\/\/map.yale.edu\/?id=1910#!m\/559534" + "https://map.yale.edu/?id=1910#!m/559534" ] ] }, @@ -29053,7 +61669,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -29090,7 +61734,7 @@ "14:00", "16:00", "", - "https:\/\/map.yale.edu\/?id=1910#!m\/559534" + "https://map.yale.edu/?id=1910#!m/559534" ] ] }, @@ -29105,7 +61749,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -29148,7 +61820,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -29191,7 +61891,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -29228,7 +61956,7 @@ "14:00", "17:00", "GREEN 210 - Green Hall (1156 Chapel) 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ] }, @@ -29242,10 +61970,119 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83419\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83419/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989136457443237, + 0.9987972974777222, + 0.9987539052963257, + 0.9988769888877869, + 0.9988852143287659, + 0.9988049268722534, + 0.9987503290176392, + 0.9972119927406311 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988514184951782, + 0.9988731741905212, + 0.9989266991615295, + 0.998607337474823, + 0.9989288449287415, + 0.9989217519760132, + 0.9980615973472595 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987313151359558, + 0.9988716244697571, + 0.9989368319511414, + 0.9988683462142944, + 0.998908519744873, + 0.9989284873008728, + 0.9986761212348938 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 22, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 22 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -29282,7 +62119,7 @@ "13:00", "14:15", "GREEN 209 - Green Hall (1156 Chapel) 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ], "Thursday": [ @@ -29290,7 +62127,7 @@ "13:00", "14:15", "GREEN 209 - Green Hall (1156 Chapel) 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ] }, @@ -29302,10 +62139,111 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83422\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83422/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988842606544495, + 0.9988211989402771, + 0.9988235831260681, + 0.9988206028938293, + 0.9989233613014221, + 0.9988839030265808 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986935257911682, + 0.9989287257194519, + 0.9988860487937927, + 0.9988481998443604, + 0.9988136291503906, + 0.9988836646080017 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988825917243958, + 0.998927652835846, + 0.9983088970184326, + 0.9986494183540344, + 0.9989175796508789, + 0.9988811612129211 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 18 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -29342,7 +62280,7 @@ "13:30", "16:30", "EDG36 023 - 36 Edgewood Ave. Sculpture Bld 023", - "https:\/\/map.yale.edu\/?id=1910#!m\/560028" + "https://map.yale.edu/?id=1910#!m/560028" ] ] }, @@ -29356,15 +62294,154 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83425\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83425/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "", - "description": "Introduction to the art and historical development of letterpress printing and to the evolution of private presses. Survey of hand printing; practical study of press operations using antique platen presses and the cylinder proof press. Material qualities of printed matter, connections between content and typographic form, and word\/image relationships. This course can not be taken after ART 006, CSYC 331, CSYC 310, or CSYC 401. Open to Yale College students only.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989345669746399, + 0.9988539218902588, + 0.9973909258842468, + 0.998916506767273, + 0.9987831711769104, + 0.9887388944625854, + 0.9987478256225586, + 0.9962420463562012, + 0.9797747731208801, + 0.9988442659378052, + 0.9987051486968994, + 0.9989136457443237, + 0.998715877532959, + 0.998870313167572 + ], + "sentiment_counts": { + "POSITIVE": 14, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994925260543823, + 0.9989213943481445, + 0.998727023601532, + 0.998908519744873, + 0.9989326596260071, + 0.9994803071022034, + 0.9983891248703003, + 0.9988837838172913, + 0.9994033575057983, + 0.99439537525177, + 0.9988100528717041 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 8 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2727272727272727, + "POSITIVE": 0.7272727272727273 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7272727272727273 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988896250724792, + 0.9988325238227844, + 0.9987581968307495, + 0.9988217949867249, + 0.9989041090011597, + 0.9988256096839905, + 0.9988656044006348, + 0.9989027976989746, + 0.9989232420921326, + 0.9989263415336609, + 0.9989340901374817 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 33, + "final_proportion": 0.9166666666666666, + "final_counts": { + "POSITIVE": 33, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + } + } + }, + { + "season_code": "202301", + "requirements": "", + "description": "Introduction to the art and historical development of letterpress printing and to the evolution of private presses. Survey of hand printing; practical study of press operations using antique platen presses and the cylinder proof press. Material qualities of printed matter, connections between content and typographic form, and word/image relationships. This course can not be taken after ART 006, CSYC 331, CSYC 310, or CSYC 401. Open to Yale College students only.", "short_title": "Art of the Printed Word", "title": "Art of the Printed Word", "school": "YC", @@ -29413,12 +62490,97 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985429048538208, + 0.9989259839057922, + 0.9989099502563477 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988573789596558, + 0.9988694787025452, + 0.9989318251609802 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.997117280960083, + 0.9989302754402161, + 0.9989122152328491, + 0.99891197681427 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 10 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", "requirements": "Enrollment limited to 12. Recommended to be taken before ART 120\u2013125.", - "description": "Concepts of space, form, weight, mass, and design in sculpture are explored and applied through basic techniques of construction and material, including gluing and fastening, mass\/weight distribution, hanging\/mounting, and surface\/finishing. Hands-on application of sculptural techniques and review of sculptural ideas, from sculpture as a unified object to sculpture as a fragmentary process.\u00a0The shops and classroom studio are available during days and evenings throughout the week.", + "description": "Concepts of space, form, weight, mass, and design in sculpture are explored and applied through basic techniques of construction and material, including gluing and fastening, mass/weight distribution, hanging/mounting, and surface/finishing. Hands-on application of sculptural techniques and review of sculptural ideas, from sculpture as a unified object to sculpture as a fragmentary process.\u00a0The shops and classroom studio are available during days and evenings throughout the week.", "short_title": "Sculpture Basics", "title": "Sculpture Basics", "school": "YC", @@ -29450,7 +62612,7 @@ "13:30", "15:20", "EDG36 119 - 36 Edgewood Ave. Sculpture Bld 119", - "https:\/\/map.yale.edu\/?id=1910#!m\/560028" + "https://map.yale.edu/?id=1910#!m/560028" ] ], "Wednesday": [ @@ -29458,7 +62620,7 @@ "13:30", "15:20", "EDG36 119 - 36 Edgewood Ave. Sculpture Bld 119", - "https:\/\/map.yale.edu\/?id=1910#!m\/560028" + "https://map.yale.edu/?id=1910#!m/560028" ] ] }, @@ -29472,15 +62634,110 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83429\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83429/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988356232643127, + 0.9984966516494751, + 0.998380184173584, + 0.9983412027359009 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998773992061615, + 0.997643768787384, + 0.9989182949066162, + 0.9989055395126343 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988921284675598, + 0.9976268410682678, + 0.9987712502479553, + 0.9989215135574341, + 0.9989268183708191, + 0.9989327788352966 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 0.9285714285714286, + "final_counts": { + "POSITIVE": 13, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9285714285714286, + "NEGATIVE": 0.07142857142857142 + } + } }, { "season_code": "202301", "requirements": "No prior drawing experience necessary. Open to all undergraduates. Required for Art majors.", - "description": "An introduction to the language of visual expression, using studio projects to explore the fundamental principles of visual art. Students acquire a working knowledge of visual syntax applicable to the study of art history, popular culture, and art. Projects address all four major concentrations (graphic design, printing\/printmaking, photography, and sculpture).", + "description": "An introduction to the language of visual expression, using studio projects to explore the fundamental principles of visual art. Students acquire a working knowledge of visual syntax applicable to the study of art history, popular culture, and art. Projects address all four major concentrations (graphic design, printing/printmaking, photography, and sculpture).", "short_title": "Visual Thinking", "title": "Visual Thinking", "school": "YC", @@ -29512,7 +62769,7 @@ "10:30", "12:20", "GREEN G01 - Green Hall (1156 Chapel) G01", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ], "Wednesday": [ @@ -29520,7 +62777,7 @@ "10:30", "12:20", "GREEN G01 - Green Hall (1156 Chapel) G01", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ] }, @@ -29534,10 +62791,133 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83432\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83432/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989104270935059, + 0.9987947940826416, + 0.998816728591919, + 0.9988596439361572, + 0.9985008239746094, + 0.9988371729850769, + 0.9987313151359558, + 0.9988933205604553, + 0.9988911747932434, + 0.9987585544586182 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989319443702698, + 0.9989105463027954, + 0.9989390969276428, + 0.9989262223243713, + 0.998936116695404, + 0.9989281296730042, + 0.9942333102226257, + 0.9989305138587952 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982163310050964, + 0.9989389777183533, + 0.9989070892333984, + 0.9989132881164551, + 0.9987332224845886, + 0.9987149238586426, + 0.9988248944282532, + 0.9985311031341553, + 0.9989349246025085, + 0.9989022016525269, + 0.9989282488822937 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 29, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 29 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -29574,7 +62954,7 @@ "13:30", "15:20", "GREEN G01 - Green Hall (1156 Chapel) G01", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ], "Wednesday": [ @@ -29582,7 +62962,7 @@ "13:30", "15:20", "GREEN G01 - Green Hall (1156 Chapel) G01", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ] }, @@ -29596,10 +62976,155 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83435\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83435/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986045956611633, + 0.9974506497383118, + 0.992158055305481, + 0.9988670349121094, + 0.9983288645744324, + 0.9989087581634521, + 0.9988141059875488, + 0.9986777901649475, + 0.9988710284233093, + 0.9988400340080261, + 0.9987754225730896, + 0.9988813996315002, + 0.9987310767173767, + 0.9988321661949158 + ], + "sentiment_counts": { + "POSITIVE": 14, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987334609031677, + 0.9988924860954285, + 0.9988445043563843, + 0.9988730549812317, + 0.9989004135131836, + 0.9988930821418762, + 0.9987887740135193, + 0.9983232617378235, + 0.9989084005355835, + 0.9988524913787842, + 0.9988382458686829, + 0.998815655708313 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989344477653503, + 0.9988609552383423, + 0.9981794357299805, + 0.9988914132118225, + 0.9988632202148438, + 0.9983910322189331, + 0.9980766773223877, + 0.998930037021637, + 0.9974592328071594, + 0.9988545179367065, + 0.9989180564880371, + 0.9989142417907715, + 0.9989060163497925, + 0.9989336133003235 + ], + "sentiment_counts": { + "POSITIVE": 14, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 40, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 40 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -29636,7 +63161,7 @@ "10:30", "12:20", "GREEN G01 - Green Hall (1156 Chapel) G01", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ], "Thursday": [ @@ -29644,7 +63169,7 @@ "10:30", "12:20", "GREEN G01 - Green Hall (1156 Chapel) G01", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ] }, @@ -29658,10 +63183,119 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83438\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83438/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988235831260681, + 0.9989386200904846, + 0.9988812804222107, + 0.998683750629425, + 0.9978298544883728, + 0.9957862496376038, + 0.9988248944282532, + 0.9988042116165161 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989044666290283, + 0.9986900687217712, + 0.9821316003799438, + 0.9988107681274414, + 0.9884047508239746, + 0.9989277720451355 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9972577691078186, + 0.9989293217658997, + 0.9989393353462219, + 0.9924765229225159, + 0.9989235997200012, + 0.9988483190536499, + 0.998890221118927 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 0.9523809523809523, + "final_counts": { + "POSITIVE": 20, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9523809523809523, + "NEGATIVE": 0.047619047619047616 + } + } }, { "season_code": "202301", @@ -29698,7 +63332,7 @@ "13:30", "15:20", "GREEN G01 - Green Hall (1156 Chapel) G01", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ], "Thursday": [ @@ -29706,7 +63340,7 @@ "13:30", "15:20", "GREEN G01 - Green Hall (1156 Chapel) G01", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ] }, @@ -29720,10 +63354,169 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83441\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83441/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9979967474937439, + 0.9989186525344849, + 0.99812251329422, + 0.9986201524734497, + 0.9988995790481567, + 0.9988961219787598, + 0.998819887638092, + 0.9987001419067383, + 0.9989318251609802, + 0.9988559484481812, + 0.9988232254981995, + 0.9989343285560608, + 0.9988755583763123, + 0.9987775683403015, + 0.9985342025756836 + ], + "sentiment_counts": { + "POSITIVE": 15, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988899827003479, + 0.9989142417907715, + 0.9989262223243713, + 0.9988971948623657, + 0.9989261031150818, + 0.9989330172538757, + 0.9988835453987122, + 0.9971388578414917, + 0.9989234805107117, + 0.9956823587417603, + 0.9988646507263184, + 0.9986796975135803, + 0.9989075660705566, + 0.9949465394020081, + 0.9989227652549744 + ], + "sentiment_counts": { + "POSITIVE": 14, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9333333333333333, + "NEGATIVE": 0.06666666666666667 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9333333333333333 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989336133003235, + 0.9989331364631653, + 0.99893718957901, + 0.9988879561424255, + 0.9988666772842407, + 0.9989111423492432, + 0.9989120960235596, + 0.998916745185852, + 0.9989262223243713, + 0.9989305138587952, + 0.9989138841629028, + 0.9988901019096375, + 0.9989349246025085, + 0.9984143972396851, + 0.9985600113868713, + 0.9982553124427795 + ], + "sentiment_counts": { + "POSITIVE": 16, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 45, + "final_proportion": 0.9782608695652174, + "final_counts": { + "POSITIVE": 45, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9782608695652174, + "NEGATIVE": 0.021739130434782608 + } + } }, { "season_code": "202301", @@ -29760,7 +63553,7 @@ "8:25", "12:20", "EDG36 023 - 36 Edgewood Ave. Sculpture Bld 023", - "https:\/\/map.yale.edu\/?id=1910#!m\/560028" + "https://map.yale.edu/?id=1910#!m/560028" ] ] }, @@ -29774,10 +63567,95 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83448\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83448/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989054203033447, + 0.9988019466400146, + 0.9985342025756836 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989296793937683, + 0.9988313317298889, + 0.9989006519317627 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989036321640015, + 0.9988895058631897, + 0.9990596175193787 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 0.7777777777777778, + "final_counts": { + "POSITIVE": 7, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.7777777777777778, + "NEGATIVE": 0.2222222222222222 + } + } }, { "season_code": "202301", @@ -29814,7 +63692,7 @@ "10:30", "12:20", "GREEN 207 - Green Hall (1156 Chapel) 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ], "Wednesday": [ @@ -29822,7 +63700,7 @@ "10:30", "12:20", "GREEN 207 - Green Hall (1156 Chapel) 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ] }, @@ -29836,10 +63714,127 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83451\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83451/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989120960235596, + 0.9988927245140076, + 0.9989091157913208, + 0.9988802075386047, + 0.9988607168197632, + 0.9988691210746765, + 0.9987196922302246, + 0.9989239573478699 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989030361175537, + 0.9945077300071716, + 0.9988964796066284, + 0.9989398121833801, + 0.9989001750946045, + 0.9989140033721924, + 0.9952151775360107, + 0.9989019632339478, + 0.998923122882843 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988332390785217, + 0.9988247752189636, + 0.9988656044006348, + 0.9989339709281921, + 0.9989176988601685, + 0.9989018440246582, + 0.996536135673523, + 0.9988999366760254, + 0.9989309906959534 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 26, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 26 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -29876,7 +63871,7 @@ "10:30", "12:20", "GREEN 207 - Green Hall (1156 Chapel) 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ], "Thursday": [ @@ -29884,7 +63879,7 @@ "10:30", "12:20", "GREEN 207 - Green Hall (1156 Chapel) 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ] }, @@ -29898,10 +63893,135 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83453\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83453/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989141225814819, + 0.9988676309585571, + 0.9989198446273804, + 0.9812163710594177, + 0.9988654851913452, + 0.6323761940002441, + 0.9988504648208618, + 0.9989223480224609, + 0.9988646507263184, + 0.9987521171569824 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989026784896851, + 0.9987885355949402, + 0.9989181756973267, + 0.9940768480300903, + 0.9988127946853638, + 0.9988621473312378, + 0.9974521994590759, + 0.9884765148162842, + 0.9989210367202759 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.7777777777777778, + "NEGATIVE": 0.2222222222222222 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7777777777777778 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986838698387146, + 0.9988982677459717, + 0.9987949132919312, + 0.9989297986030579, + 0.9988504648208618, + 0.9922915101051331, + 0.9988284707069397, + 0.9988971948623657, + 0.9983518123626709, + 0.9985970854759216 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 27, + "final_proportion": 0.9310344827586207, + "final_counts": { + "POSITIVE": 27, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9310344827586207, + "NEGATIVE": 0.06896551724137931 + } + } }, { "season_code": "202301", @@ -29938,7 +64058,7 @@ "10:30", "12:20", "GREEN 210 - Green Hall (1156 Chapel) 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ], "Thursday": [ @@ -29946,7 +64066,7 @@ "10:30", "12:20", "GREEN 210 - Green Hall (1156 Chapel) 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ] }, @@ -29960,10 +64080,139 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83457\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83457/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987313151359558, + 0.9986107349395752, + 0.9988584518432617, + 0.9988985061645508, + 0.9989283680915833, + 0.9988498687744141, + 0.9989303946495056, + 0.9987409710884094, + 0.9988034963607788, + 0.997418999671936 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988566637039185, + 0.9988044500350952, + 0.9986597299575806, + 0.9975601434707642, + 0.9989308714866638, + 0.9989193677902222, + 0.9989128112792969, + 0.9989126920700073, + 0.9985570311546326, + 0.9988951086997986 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982122182846069, + 0.9989223480224609, + 0.9983460903167725, + 0.9988657236099243, + 0.9989355206489563, + 0.9907850027084351, + 0.9989320635795593, + 0.9988507032394409, + 0.9981436729431152, + 0.9988083839416504, + 0.9986547231674194 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9090909090909091 + ] + }, + "final_label": "POSITIVE", + "final_count": 29, + "final_proportion": 0.9354838709677419, + "final_counts": { + "POSITIVE": 29, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9354838709677419, + "NEGATIVE": 0.06451612903225806 + } + } }, { "season_code": "202301", @@ -30000,7 +64249,7 @@ "13:30", "15:20", "GREEN 210 - Green Hall (1156 Chapel) 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ], "Friday": [ @@ -30008,7 +64257,7 @@ "13:30", "15:20", "GREEN 210 - Green Hall (1156 Chapel) 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ] }, @@ -30022,10 +64271,125 @@ "classnotes": "Instructor: Luiza Dale.", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83460\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83460/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9966537952423096, + 0.9986820816993713, + 0.9987053871154785, + 0.9980297684669495, + 0.9988977909088135, + 0.9987240433692932, + 0.9988749623298645, + 0.998784601688385, + 0.9989217519760132 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989224672317505, + 0.9979682564735413, + 0.9988459348678589, + 0.9989142417907715, + 0.9985332489013672, + 0.9988813996315002, + 0.9987977743148804, + 0.9989326596260071 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988538026809692, + 0.997117280960083, + 0.9988904595375061, + 0.9989180564880371, + 0.998414158821106, + 0.99891197681427, + 0.9987630844116211, + 0.9989110231399536 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 25, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 25 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -30062,7 +64426,7 @@ "13:30", "15:20", "GREEN G47 - Green Hall (1156 Chapel) G47", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ], "Friday": [ @@ -30070,7 +64434,7 @@ "13:30", "15:20", "GREEN G47 - Green Hall (1156 Chapel) G47", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ] }, @@ -30084,10 +64448,117 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83464\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83464/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987016916275024, + 0.9988669157028198, + 0.9985581040382385, + 0.9976135492324829, + 0.9988975524902344, + 0.9987909197807312, + 0.9983705878257751 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988501071929932, + 0.9988927245140076, + 0.9985527396202087, + 0.9986780285835266, + 0.9970928430557251, + 0.9985758066177368 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988994598388672, + 0.998918890953064, + 0.9984281063079834, + 0.998866081237793, + 0.998908519744873, + 0.9989081621170044, + 0.9988609552383423, + 0.9930190443992615 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 21, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 21 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -30124,7 +64595,7 @@ "10:30", "12:20", "GREEN B01 - Green Hall (1156 Chapel) B01", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ], "Wednesday": [ @@ -30132,7 +64603,7 @@ "10:30", "12:20", "GREEN B01 - Green Hall (1156 Chapel) B01", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ] }, @@ -30146,10 +64617,133 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83467\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83467/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981228709220886, + 0.9826578497886658, + 0.9988945126533508, + 0.9986611604690552, + 0.9755321741104126, + 0.9988458156585693, + 0.9982916712760925, + 0.9986088871955872, + 0.9984586238861084 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988958835601807, + 0.9987871050834656, + 0.9987488985061646, + 0.998889148235321, + 0.9988422989845276, + 0.9989073276519775, + 0.9988927245140076, + 0.9989210367202759, + 0.9989271759986877 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989280104637146, + 0.9988957643508911, + 0.9988576173782349, + 0.9988076686859131, + 0.9985182881355286, + 0.9988861680030823, + 0.9989339709281921, + 0.9974592328071594, + 0.9988890290260315, + 0.9982553124427795, + 0.9988665580749512 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 29, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 29 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -30186,7 +64780,7 @@ "13:30", "15:20", "GREEN B01 - Green Hall (1156 Chapel) B01", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ], "Thursday": [ @@ -30194,7 +64788,7 @@ "13:30", "15:20", "GREEN B01 - Green Hall (1156 Chapel) B01", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ] }, @@ -30208,10 +64802,121 @@ "classnotes": "Instructor: Brian Orozco.", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83470\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83470/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988704323768616, + 0.9988980293273926, + 0.9989224672317505, + 0.998791515827179, + 0.9987947940826416, + 0.9988700747489929, + 0.9988837838172913 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988076686859131, + 0.9970418810844421, + 0.99882572889328, + 0.9989355206489563, + 0.9987778067588806, + 0.9989217519760132, + 0.9989157915115356, + 0.9989153146743774 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989219903945923, + 0.9988952279090881, + 0.9980792999267578, + 0.998934805393219, + 0.9989219903945923, + 0.998934805393219, + 0.9989219903945923, + 0.998868465423584 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 23, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 23 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -30249,7 +64954,7 @@ "13:30", "17:20", "EDG36 023 - 36 Edgewood Ave. Sculpture Bld 023", - "https:\/\/map.yale.edu\/?id=1910#!m\/560028" + "https://map.yale.edu/?id=1910#!m/560028" ] ] }, @@ -30263,10 +64968,115 @@ "classnotes": "Instructor: Luchina Fisher", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83473\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83473/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987059831619263, + 0.9989215135574341, + 0.9987737536430359, + 0.9987257122993469, + 0.9988501071929932, + 0.9988240599632263, + 0.9987313151359558 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984973669052124, + 0.9982321858406067, + 0.9994956254959106, + 0.9988755583763123, + 0.9988369345664978, + 0.9989387392997742 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988994598388672, + 0.9982553124427795, + 0.9994051456451416, + 0.9988328814506531, + 0.9987418055534363, + 0.9988914132118225 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 0.8947368421052632, + "final_counts": { + "POSITIVE": 17, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8947368421052632, + "NEGATIVE": 0.10526315789473684 + } + } }, { "season_code": "202301", @@ -30303,7 +65113,7 @@ "13:30", "17:20", "GREEN 210 - Green Hall (1156 Chapel) 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ] }, @@ -30312,13 +65122,102 @@ "flags": [], "regnotes": "", "rp_attr": "This course meets during the Reading Period: the week between the last week of classes and finals week. Meets Reading Period", - "classnotes": "Instructor permission required: Please briefly describe why you want to take this class. What is driving your interest? What do you hope to learn \u2014 formally, conceptually, and\/or technically? What kind of video work are you ultimately hoping to make? In addition, please list a film or video work that you love and briefly discuss why you chose it. This can be anything from a short YouTube video to an epic cinema work to a video art installation. If possible, include a link to the work.", + "classnotes": "Instructor permission required: Please briefly describe why you want to take this class. What is driving your interest? What do you hope to learn \u2014 formally, conceptually, and/or technically? What kind of video work are you ultimately hoping to make? In addition, please list a film or video work that you love and briefly discuss why you chose it. This can be anything from a short YouTube video to an epic cinema work to a video art installation. If possible, include a link to the work.", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83475\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83475/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989172220230103, + 0.9988413453102112, + 0.9987936019897461, + 0.998928964138031 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988694787025452, + 0.9989393353462219, + 0.9985979199409485, + 0.998932421207428 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989225268363953, + 0.9988775849342346, + 0.9989081621170044, + 0.998915433883667 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 12 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -30357,7 +65256,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -30394,7 +65321,7 @@ "10:30", "12:20", "GREEN C014 - Green Hall (1156 Chapel) C014", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ], "Thursday": [ @@ -30402,7 +65329,7 @@ "10:30", "12:20", "GREEN C014 - Green Hall (1156 Chapel) C014", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ] }, @@ -30414,10 +65341,113 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83478\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83478/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998863935470581, + 0.9969242215156555, + 0.998840868473053, + 0.9987164735794067, + 0.9986773133277893, + 0.9988166093826294 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989293217658997, + 0.9989125728607178, + 0.9988131523132324, + 0.9986661672592163, + 0.9984795451164246, + 0.9987466335296631 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989375472068787, + 0.997117280960083, + 0.9989100694656372, + 0.9988440275192261, + 0.9988853335380554, + 0.9711715579032898, + 0.9987633228302002 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 19 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -30454,7 +65484,7 @@ "15:30", "17:20", "GREEN G01 - Green Hall (1156 Chapel) G01", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ], "Thursday": [ @@ -30462,7 +65492,7 @@ "15:30", "17:20", "GREEN G01 - Green Hall (1156 Chapel) G01", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ] }, @@ -30474,10 +65504,107 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83455\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83455/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984830021858215, + 0.9987959861755371, + 0.9929184317588806, + 0.9984787106513977, + 0.9982519745826721 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988947510719299, + 0.9989252686500549, + 0.9989284873008728, + 0.9989314675331116 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9974592328071594, + 0.9989345669746399, + 0.998389720916748, + 0.997117280960083, + 0.9989185333251953, + 0.9988753199577332, + 0.9988200068473816 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 16 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -30514,7 +65641,7 @@ "8:25", "12:20", "GREEN 210 - Green Hall (1156 Chapel) 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ] }, @@ -30526,10 +65653,99 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83462\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83462/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987758994102478, + 0.9989029169082642, + 0.9989035129547119, + 0.998894989490509 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998881995677948, + 0.998891294002533, + 0.9989394545555115, + 0.9989069700241089 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9973583817481995, + 0.9987819790840149, + 0.9989066123962402, + 0.9988839030265808 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 12 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -30566,7 +65782,7 @@ "8:25", "12:20", "GREEN 210 - Green Hall (1156 Chapel) 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ] }, @@ -30578,10 +65794,63 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83468\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83468/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9972935318946838, + 0.9989068508148193 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989333748817444 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 3, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 3 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -30618,7 +65887,7 @@ "15:30", "17:20", "GREEN 210 - Green Hall (1156 Chapel) 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ] }, @@ -30632,10 +65901,115 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83471\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83471/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998903751373291, + 0.9989137649536133, + 0.9985400438308716, + 0.9989275336265564, + 0.9988749623298645, + 0.9988985061645508, + 0.9987022876739502 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998910665512085, + 0.9988946318626404, + 0.9987020492553711, + 0.9984293580055237, + 0.998853325843811 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989050626754761, + 0.9987786412239075, + 0.9988246560096741, + 0.9989302754402161, + 0.9989354014396667, + 0.9988299012184143, + 0.9988216757774353, + 0.9984606504440308 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 20 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -30672,7 +66046,7 @@ "13:30", "17:20", "GREEN 209 - Green Hall (1156 Chapel) 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ] }, @@ -30684,10 +66058,99 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83474\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83474/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998819887638092, + 0.9783970713615417, + 0.9988316893577576, + 0.9988358616828918 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989301562309265, + 0.9989217519760132, + 0.9989393353462219 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989263415336609, + 0.9989321827888489, + 0.9986602067947388, + 0.9988853335380554, + 0.9989171028137207 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 12 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -30743,10 +66206,117 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84266\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84266/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989239573478699, + 0.9988425374031067, + 0.9986924529075623, + 0.998308539390564, + 0.9975590705871582, + 0.9988552331924438 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994994401931763, + 0.9988288283348083, + 0.9987685084342957, + 0.9989232420921326, + 0.9989364743232727 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 4 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2, + "POSITIVE": 0.8 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.99893718957901, + 0.9987789988517761, + 0.9989321827888489, + 0.9989219903945923, + 0.9987764954566956, + 0.9982798099517822, + 0.9989295601844788, + 0.9989228844642639, + 0.9989299178123474 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 0.95, + "final_counts": { + "POSITIVE": 19, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.95, + "NEGATIVE": 0.05 + } + } }, { "season_code": "202301", @@ -30783,7 +66353,7 @@ "10:30", "12:20", "GREEN 211 - Green Hall (1156 Chapel) 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ], "Wednesday": [ @@ -30791,7 +66361,7 @@ "10:30", "12:20", "GREEN 211 - Green Hall (1156 Chapel) 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ] }, @@ -30803,10 +66373,129 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83477\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83477/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987545013427734, + 0.9988916516304016, + 0.9989101886749268, + 0.9988352656364441, + 0.9985015392303467, + 0.9989334940910339, + 0.9988799691200256, + 0.9986655712127686, + 0.998934805393219 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988798499107361, + 0.9954432249069214, + 0.9989168643951416, + 0.9988467693328857, + 0.9907804131507874, + 0.9987596273422241, + 0.9988467693328857, + 0.9977242350578308 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998931348323822, + 0.9987931251525879, + 0.9987167119979858, + 0.9988892674446106, + 0.9960893392562866, + 0.9988995790481567, + 0.9987800717353821, + 0.9988127946853638, + 0.998786985874176 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 25, + "final_proportion": 0.9615384615384616, + "final_counts": { + "POSITIVE": 25, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9615384615384616, + "NEGATIVE": 0.038461538461538464 + } + } }, { "season_code": "202301", @@ -30843,7 +66532,7 @@ "13:30", "15:20", "GREEN B01 - Green Hall (1156 Chapel) B01", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ], "Wednesday": [ @@ -30851,7 +66540,7 @@ "13:30", "15:20", "GREEN B01 - Green Hall (1156 Chapel) B01", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ] }, @@ -30863,10 +66552,91 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83479\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83479/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986795783042908, + 0.9969310164451599 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985091090202332, + 0.9988822340965271 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9896053075790405, + 0.9980371594429016, + 0.9987636804580688 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 0.8571428571428571, + "final_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + } + } }, { "season_code": "202301", @@ -30904,7 +66674,7 @@ "13:30", "17:20", "HQ 307 - Humanities Quadrangle 307", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -30918,10 +66688,95 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83480\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83480/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987738728523254, + 0.9989066123962402 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986646175384521, + 0.9989315867424011, + 0.9909951090812683 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994078874588013, + 0.9948681592941284, + 0.9988642930984497, + 0.9988452196121216 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.25, + "POSITIVE": 0.75 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 8, + "final_proportion": 0.8888888888888888, + "final_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + } + } }, { "season_code": "202301", @@ -30959,7 +66814,7 @@ "8:25", "12:20", "EDG36 023 - 36 Edgewood Ave. Sculpture Bld 023", - "https:\/\/map.yale.edu\/?id=1910#!m\/560028" + "https://map.yale.edu/?id=1910#!m/560028" ] ] }, @@ -30978,7 +66833,100 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988390803337097, + 0.9987114667892456, + 0.9987195730209351, + 0.9988120794296265 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989245533943176, + 0.9988880753517151, + 0.998412013053894, + 0.998638927936554 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986826777458191, + 0.9985713958740234, + 0.9995083808898926, + 0.9988490343093872, + 0.998340368270874 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 0.8461538461538461, + "final_counts": { + "POSITIVE": 11, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8461538461538461, + "NEGATIVE": 0.15384615384615385 + } + } }, { "season_code": "202301", @@ -31015,7 +66963,7 @@ "13:30", "17:20", "EDG36 115 - 36 Edgewood Ave. Sculpture Bld 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/560028" + "https://map.yale.edu/?id=1910#!m/560028" ] ] }, @@ -31029,10 +66977,81 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83482\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83482/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989247918128967 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989182949066162 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989118576049805 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 3, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 3 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -31069,7 +67088,7 @@ "13:30", "17:20", "GREEN 210 - Green Hall (1156 Chapel) 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ] }, @@ -31081,10 +67100,97 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83484\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83484/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998765230178833, + 0.9988691210746765, + 0.9988667964935303, + 0.9988413453102112 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988340735435486, + 0.9989297986030579, + 0.9988687634468079 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.997117280960083, + 0.9979233145713806, + 0.9988762736320496, + 0.9987240433692932 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 11 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -31121,7 +67227,7 @@ "10:30", "12:20", "GREEN G47 - Green Hall (1156 Chapel) G47", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ], "Thursday": [ @@ -31129,7 +67235,7 @@ "10:30", "12:20", "GREEN G47 - Green Hall (1156 Chapel) G47", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ] }, @@ -31141,10 +67247,121 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83485\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83485/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989332556724548, + 0.9811696410179138, + 0.9985929131507874, + 0.9972350001335144, + 0.9988353848457336, + 0.998892605304718, + 0.9987601041793823 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987924098968506, + 0.9982936978340149, + 0.9986735582351685, + 0.9987525939941406, + 0.9985004663467407, + 0.9988062381744385 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989051818847656, + 0.9980213642120361, + 0.9988802075386047, + 0.9984753727912903, + 0.9988428354263306, + 0.998713493347168, + 0.9975699782371521, + 0.9989342093467712, + 0.9989016056060791 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 21, + "final_proportion": 0.9545454545454546, + "final_counts": { + "POSITIVE": 21, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9545454545454546, + "NEGATIVE": 0.045454545454545456 + } + } }, { "season_code": "202301", @@ -31181,7 +67398,7 @@ "19:00", "20:50", "GREEN B03 - Green Hall (1156 Chapel) B03", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ] }, @@ -31195,10 +67412,63 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83488\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83488/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988679885864258 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982553124427795, + 0.9982909560203552 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 3, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 3 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -31235,7 +67505,7 @@ "15:30", "17:20", "GREEN G01 - Green Hall (1156 Chapel) G01", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ], "Wednesday": [ @@ -31243,7 +67513,7 @@ "15:30", "17:20", "GREEN G01 - Green Hall (1156 Chapel) G01", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ] }, @@ -31255,10 +67525,61 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83489\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83489/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981843829154968 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987908005714417 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 2, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 2 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -31295,7 +67616,7 @@ "13:30", "17:20", "GREEN 211 - Green Hall (1156 Chapel) 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ] }, @@ -31309,10 +67630,103 @@ "classnotes": "Instructor: Greg Parma Smith", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83492\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83492/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9962582588195801, + 0.9987221360206604, + 0.9986953139305115, + 0.9988712668418884, + 0.9989295601844788 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 4 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2, + "POSITIVE": 0.8 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9962582588195801, + 0.9988213181495667, + 0.998757004737854, + 0.9914098381996155 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9962582588195801, + 0.998856782913208, + 0.9984391331672668, + 0.9976357221603394 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.25, + "POSITIVE": 0.75 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 0.6923076923076923, + "final_counts": { + "NEGATIVE": 4, + "POSITIVE": 9 + }, + "final_distribution": { + "NEGATIVE": 0.3076923076923077, + "POSITIVE": 0.6923076923076923 + } + } }, { "season_code": "202301", @@ -31349,7 +67763,7 @@ "13:30", "17:20", "GREEN 207 - Green Hall (1156 Chapel) 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ] }, @@ -31363,10 +67777,91 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87306\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87306/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989162683486938, + 0.9988507032394409 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983502626419067, + 0.9987385869026184 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 1 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.996917724609375, + 0.9989107847213745, + 0.9982694387435913 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 0.8571428571428571, + "final_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + } + } }, { "season_code": "202301", @@ -31404,7 +67899,7 @@ "8:25", "12:20", "PH 310 - Phelps Hall 310", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -31418,10 +67913,81 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83494\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83494/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987990856170654 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988911747932434 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988629817962646 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 3, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 3 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -31458,7 +68024,7 @@ "13:30", "17:20", "EDG36 123 - 36 Edgewood Ave. Sculpture Bld 123", - "https:\/\/map.yale.edu\/?id=1910#!m\/560028" + "https://map.yale.edu/?id=1910#!m/560028" ] ] }, @@ -31473,7 +68039,94 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998837411403656, + 0.9989272952079773 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9974340796470642, + 0.9959617257118225, + 0.9966975450515747, + 0.9988633394241333 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9972322583198547, + 0.9977989792823792, + 0.9988679885864258, + 0.9987616539001465 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.25, + "POSITIVE": 0.75 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 0.9, + "final_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + } + } }, { "season_code": "202301", @@ -31510,7 +68163,7 @@ "13:30", "15:20", "GREEN C014 - Green Hall (1156 Chapel) C014", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ], "Thursday": [ @@ -31518,7 +68171,7 @@ "13:30", "15:20", "GREEN C014 - Green Hall (1156 Chapel) C014", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ] }, @@ -31530,10 +68183,17 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83500\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83500/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -31570,7 +68230,7 @@ "8:25", "12:20", "GREEN 210 - Green Hall (1156 Chapel) 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ] }, @@ -31582,10 +68242,97 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83505\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83505/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987592697143555, + 0.9987311959266663, + 0.99893718957901, + 0.9987322688102722 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989005327224731, + 0.9988157749176025, + 0.9988679885864258 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989086389541626, + 0.9988498687744141, + 0.9988970756530762, + 0.9988671541213989 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 11 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -31625,10 +68372,83 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83510\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83510/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988038539886475 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988871216773987, + 0.9957002401351929 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.997117280960083 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 4, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 4 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -31668,10 +68488,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83516\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83516/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -31708,7 +68556,7 @@ "9:25", "11:15", "GREEN B03 - Green Hall (1156 Chapel) B03", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ] }, @@ -31720,15 +68568,116 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83522\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83522/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "", - "description": "Pit crits are the core of the program in painting\/printmaking. The beginning of each weekly session is an all-community meeting with students, the DGS, graduate coordinator, and those faculty members attending the crit. Two-hour critiques follow in the Pit; the fall term is devoted to developing the work of second-year students and the spring term to first-year students. A core group of faculty members as well as a rotation of visiting critics are present to encourage but not dominate the conversation: the most lively and productive critiques happen when students engage fully with each other. Be prepared to listen and contribute. Note: Pit crits are for current Yale students, staff, and invited faculty and guests only; no outside guests or audio\/video recording are permitted.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987865090370178, + 0.9987500905990601, + 0.9988910555839539, + 0.9988699555397034, + 0.9987640380859375 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9978218078613281, + 0.9986971020698547, + 0.9988633394241333, + 0.9988210797309875, + 0.9989627599716187 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.997117280960083, + 0.9967820644378662, + 0.9969083666801453, + 0.9956166744232178, + 0.9987841248512268, + 0.9987583160400391, + 0.9972079396247864 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 0.8823529411764706, + "final_counts": { + "POSITIVE": 15, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8823529411764706, + "NEGATIVE": 0.11764705882352941 + } + } + }, + { + "season_code": "202301", + "requirements": "", + "description": "Pit crits are the core of the program in painting/printmaking. The beginning of each weekly session is an all-community meeting with students, the DGS, graduate coordinator, and those faculty members attending the crit. Two-hour critiques follow in the Pit; the fall term is devoted to developing the work of second-year students and the spring term to first-year students. A core group of faculty members as well as a rotation of visiting critics are present to encourage but not dominate the conversation: the most lively and productive critiques happen when students engage fully with each other. Be prepared to listen and contribute. Note: Pit crits are for current Yale students, staff, and invited faculty and guests only; no outside guests or audio/video recording are permitted.", "short_title": "Pit Crit", "title": "Pit Crit", "school": "AT", @@ -31772,18 +68721,46 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Enrollment limited to MFA Painting\/Printmaking 1st-year students only.", + "classnotes": "Enrollment limited to MFA Painting/Printmaking 1st-year students only.", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85749\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85749/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "The course supports the 2023 Thesis exhibition through development of programmatic and publication-based elements that extend the show to audiences beyond Yale, as well as attending to the logistics of the gallery presentation. Studio visits initiate conversations about the installation of physical work in addition to considering the documentation\/recording possibilities that allow the work to interface with dynamic platforms online and in print. The course introduces technology and media resources at CCAM and the Institute for the Preservation of Cultural Heritage at West Campus in addition to biweekly studio visits and group planning meetings. Editorial support is provided in order to enfold students\u2019 writings and research with documents of time-based or site-specific work in an innovative and collectively designed publication. Enrollment limited to second-year students in painting\/printmaking.", + "description": "The course supports the 2023 Thesis exhibition through development of programmatic and publication-based elements that extend the show to audiences beyond Yale, as well as attending to the logistics of the gallery presentation. Studio visits initiate conversations about the installation of physical work in addition to considering the documentation/recording possibilities that allow the work to interface with dynamic platforms online and in print. The course introduces technology and media resources at CCAM and the Institute for the Preservation of Cultural Heritage at West Campus in addition to biweekly studio visits and group planning meetings. Editorial support is provided in order to enfold students\u2019 writings and research with documents of time-based or site-specific work in an innovative and collectively designed publication. Enrollment limited to second-year students in painting/printmaking.", "short_title": "Thesis 2023", "title": "Thesis 2023", "school": "AT", @@ -31815,7 +68792,7 @@ "16:00", "19:00", "GREEN C220 - Green Hall (1156 Chapel) C220", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ] }, @@ -31824,13 +68801,41 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Meets 6x for 1.5 credits: dates 2\/2, 2\/16, 3\/2, 3\/30, 4\/13, 4\/27. Enrollment limited to MFA Painting\/Printmaking 2nd-year students only.", + "classnotes": "Meets 6x for 1.5 credits: dates 2/2, 2/16, 3/2, 3/30, 4/13, 4/27. Enrollment limited to MFA Painting/Printmaking 2nd-year students only.", "final_exam": "", "course_home_url": "", "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -31876,13 +68881,41 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Class location: 353 Crown, Room C220. Meets 6x for 1.5 credits: dates 1\/30, 2\/13, 2\/27, 3\/27, 4\/10, 4\/24. Permission of instructor required; interested students should respond to survey form by Wednesday, January 4, 11:59pm. Instructor will notify students with permissions to enroll by January 10. https:\/\/yalesurvey.ca1.qualtrics.com\/jfe\/form\/SV_5bCxvOdtwEi6N4a", + "classnotes": "Class location: 353 Crown, Room C220. Meets 6x for 1.5 credits: dates 1/30, 2/13, 2/27, 3/27, 4/10, 4/24. Permission of instructor required; interested students should respond to survey form by Wednesday, January 4, 11:59pm. Instructor will notify students with permissions to enroll by January 10. https://yalesurvey.ca1.qualtrics.com/jfe/form/SV_5bCxvOdtwEi6N4a", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85751\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85751/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -31919,7 +68952,7 @@ "13:30", "17:20", "GREEN C220 - Green Hall (1156 Chapel) C220", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ] }, @@ -31928,13 +68961,41 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Instructor: Ryan Sluggett. Permission of instructor required; interested students should respond to survey form by Wednesday, January 4, 11:59pm. Instructor will notify students with permissions to enroll by January 10. https:\/\/yalesurvey.ca1.qualtrics.com\/jfe\/form\/SV_3wauDbLKw8lysTQ", + "classnotes": "Instructor: Ryan Sluggett. Permission of instructor required; interested students should respond to survey form by Wednesday, January 4, 11:59pm. Instructor will notify students with permissions to enroll by January 10. https://yalesurvey.ca1.qualtrics.com/jfe/form/SV_3wauDbLKw8lysTQ", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85752\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85752/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -31971,13 +69032,41 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Enrollment limited to MFA Painting\/Printmaking students only.", + "classnotes": "Enrollment limited to MFA Painting/Printmaking students only.", "final_exam": "", "course_home_url": "", "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -32014,7 +69103,7 @@ "15:00", "18:00", "GREEN C014 - Green Hall (1156 Chapel) C014", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ] }, @@ -32023,13 +69112,41 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Permission of instructor required; interested students should respond to survey form by Wednesday, January 4, 11:59pm. Instructor will notify students with permissions to enroll by January 10. https:\/\/yalesurvey.ca1.qualtrics.com\/jfe\/form\/SV_brPWepYb9v49nFk", + "classnotes": "Permission of instructor required; interested students should respond to survey form by Wednesday, January 4, 11:59pm. Instructor will notify students with permissions to enroll by January 10. https://yalesurvey.ca1.qualtrics.com/jfe/form/SV_brPWepYb9v49nFk", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85754\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85754/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -32066,7 +69183,7 @@ "14:00", "17:00", "GREEN C220 - Green Hall (1156 Chapel) C220", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ] }, @@ -32075,18 +69192,46 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Permission of instructor required; interested students should respond to survey form by Wednesday, January 4, 11:59pm. Instructor will notify students with permissions to enroll by January 10. https:\/\/yalesurvey.ca1.qualtrics.com\/jfe\/form\/SV_3dTWQDCZl7z7qoC", + "classnotes": "Permission of instructor required; interested students should respond to survey form by Wednesday, January 4, 11:59pm. Instructor will notify students with permissions to enroll by January 10. https://yalesurvey.ca1.qualtrics.com/jfe/form/SV_3dTWQDCZl7z7qoC", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85755\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85755/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This critique\/seminar course sets a goal of enrolling participants in equal amount from the four graduate programs in the School of Art. The aim of this is to instill basic interdisciplinary tenets to those who seek to broaden the foundation of their work. By critique and analysis of each participant\u2019s work, we attempt to break down the boundaries of medium and area. In using, and sometimes explaining, their field\u2019s language and jargon as critique occurs, each participant loosens the shackles of the medium that, for some, keeps them in their lane without the joy and expansiveness of swerving. The instructor acts both as a critic of the presented work and an interlocutor within the critique situation. The course is limited to 12 participants. Permission of instructor required.", + "description": "This critique/seminar course sets a goal of enrolling participants in equal amount from the four graduate programs in the School of Art. The aim of this is to instill basic interdisciplinary tenets to those who seek to broaden the foundation of their work. By critique and analysis of each participant\u2019s work, we attempt to break down the boundaries of medium and area. In using, and sometimes explaining, their field\u2019s language and jargon as critique occurs, each participant loosens the shackles of the medium that, for some, keeps them in their lane without the joy and expansiveness of swerving. The instructor acts both as a critic of the presented work and an interlocutor within the critique situation. The course is limited to 12 participants. Permission of instructor required.", "short_title": "Eden is Burning", "title": "Eden is Burning", "school": "AT", @@ -32118,7 +69263,7 @@ "10:00", "13:00", "EDG36 204 - 36 Edgewood Ave. Sculpture Bld 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560028" + "https://map.yale.edu/?id=1910#!m/560028" ] ] }, @@ -32127,13 +69272,41 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Permission of instructor required; interested students should respond to survey form by Wednesday, January 4, 11:59pm. Instructor will notify students with permissions to enroll by January 10. https:\/\/yalesurvey.ca1.qualtrics.com\/jfe\/form\/SV_bNm1hz9mPL8DyPI", + "classnotes": "Permission of instructor required; interested students should respond to survey form by Wednesday, January 4, 11:59pm. Instructor will notify students with permissions to enroll by January 10. https://yalesurvey.ca1.qualtrics.com/jfe/form/SV_bNm1hz9mPL8DyPI", "final_exam": "", "course_home_url": "", "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -32173,7 +69346,7 @@ "10:00", "13:00", "EDG36 204 - 36 Edgewood Ave. Sculpture Bld 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560028" + "https://map.yale.edu/?id=1910#!m/560028" ] ] }, @@ -32182,13 +69355,41 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Permission of instructor required; interested students should respond to survey form by Wednesday, January 4, 11:59pm. Instructor will notify students with permissions to enroll by January 10. https:\/\/yalesurvey.ca1.qualtrics.com\/jfe\/form\/SV_0U3Ch1MQ0LvHBc2", + "classnotes": "Permission of instructor required; interested students should respond to survey form by Wednesday, January 4, 11:59pm. Instructor will notify students with permissions to enroll by January 10. https://yalesurvey.ca1.qualtrics.com/jfe/form/SV_0U3Ch1MQ0LvHBc2", "final_exam": "", "course_home_url": "", "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -32225,7 +69426,7 @@ "12:00", "15:30", "EDG36 204 - 36 Edgewood Ave. Sculpture Bld 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560028" + "https://map.yale.edu/?id=1910#!m/560028" ] ] }, @@ -32240,7 +69441,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -32283,7 +69512,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -32323,7 +69580,7 @@ "13:30", "17:30", "GREEN 107 - Green Hall (1156 Chapel) 107", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ] }, @@ -32338,7 +69595,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -32378,7 +69663,7 @@ "13:30", "18:30", "GREEN 107 - Green Hall (1156 Chapel) 107", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ] }, @@ -32393,7 +69678,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -32436,7 +69749,7 @@ "13:30", "18:30", "GREEN 107 - Green Hall (1156 Chapel) 107", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ] }, @@ -32451,7 +69764,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -32500,7 +69841,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -32546,13 +69915,41 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Meets in Room 109, Green Hall. This course corresponds to ART 743 Type Design\/Letterform taught by Tobias Frere-Jones in the Fall semester. Each course is limited to 12 students; if the number of pre-registrants exceeds the number of available spots, first-time applicants are prioritized over students who have taken the respective other course. Permission of instructor required; interested students should respond to survey form by Wednesday, January 4, 11:59pm. Instructor will notify students with permissions to enroll by January 10. https:\/\/yalesurvey.ca1.qualtrics.com\/jfe\/form\/SV_8zTKR1ogc6XqN5s", + "classnotes": "Meets in Room 109, Green Hall. This course corresponds to ART 743 Type Design/Letterform taught by Tobias Frere-Jones in the Fall semester. Each course is limited to 12 students; if the number of pre-registrants exceeds the number of available spots, first-time applicants are prioritized over students who have taken the respective other course. Permission of instructor required; interested students should respond to survey form by Wednesday, January 4, 11:59pm. Instructor will notify students with permissions to enroll by January 10. https://yalesurvey.ca1.qualtrics.com/jfe/form/SV_8zTKR1ogc6XqN5s", "final_exam": "", "course_home_url": "", "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -32589,7 +69986,7 @@ "15:00", "19:00", "GREEN 107 - Green Hall (1156 Chapel) 107", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ] }, @@ -32598,13 +69995,41 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Permission of instructor required; interested students should respond to survey form by Wednesday, January 4, 11:59pm. Instructor will notify students with permissions to enroll by January 10. https:\/\/yalesurvey.ca1.qualtrics.com\/jfe\/form\/SV_3IWzhjhqsahvdps", + "classnotes": "Permission of instructor required; interested students should respond to survey form by Wednesday, January 4, 11:59pm. Instructor will notify students with permissions to enroll by January 10. https://yalesurvey.ca1.qualtrics.com/jfe/form/SV_3IWzhjhqsahvdps", "final_exam": "", "course_home_url": "", "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -32641,7 +70066,7 @@ "10:00", "14:00", "GREEN 109 - Green Hall (1156 Chapel) 109", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ] }, @@ -32650,18 +70075,46 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Meets 6x for 1.5 credits: dates 2\/10, 3\/3, 3\/10, 3\/31, 4\/14, 4\/28. Permission of instructor required; interested students should respond to survey form by Wednesday, January 4, 11:59pm. Instructor will notify students with permissions to enroll by January 10. https:\/\/yalesurvey.ca1.qualtrics.com\/jfe\/form\/SV_1C73H485BxVFfkW", + "classnotes": "Meets 6x for 1.5 credits: dates 2/10, 3/3, 3/10, 3/31, 4/14, 4/28. Permission of instructor required; interested students should respond to survey form by Wednesday, January 4, 11:59pm. Instructor will notify students with permissions to enroll by January 10. https://yalesurvey.ca1.qualtrics.com/jfe/form/SV_1C73H485BxVFfkW", "final_exam": "", "course_home_url": "", "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is part studio, part conversation about producing and researching work through the poetics of citation, collage, and bootlegging. Students develop a journal practice where they archive ephemera from their online and their offline life including references as to what they\u2019re inspired by. Throughout the term, we ideate and iterate work from references in their personal archives. Along with producing personal work, students break into smaller groups to generate new ideas and projects based on their group\u2019s mission, inspirations, and aims. As groups share work with the class during the term, they can, if inspired, bootleg, sample, reference, and\/or cite each other. Web work, digital tools, and concepts of appropriation from sharing platforms are thematic in coursework, although final projects do not have to be technology-based.", + "description": "This course is part studio, part conversation about producing and researching work through the poetics of citation, collage, and bootlegging. Students develop a journal practice where they archive ephemera from their online and their offline life including references as to what they\u2019re inspired by. Throughout the term, we ideate and iterate work from references in their personal archives. Along with producing personal work, students break into smaller groups to generate new ideas and projects based on their group\u2019s mission, inspirations, and aims. As groups share work with the class during the term, they can, if inspired, bootleg, sample, reference, and/or cite each other. Web work, digital tools, and concepts of appropriation from sharing platforms are thematic in coursework, although final projects do not have to be technology-based.", "short_title": "Collage Poetics", "title": "Collage Poetics", "school": "AT", @@ -32693,7 +70146,7 @@ "14:00", "17:00", "GREEN 109 - Green Hall (1156 Chapel) 109", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ] }, @@ -32702,13 +70155,41 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Instructor: Ritu Ghiya. Permission of instructor required; interested students should respond to survey form by Wednesday, January 4, 11:59pm. Instructor will notify students with permissions to enroll by January 10. https:\/\/yalesurvey.ca1.qualtrics.com\/jfe\/form\/SV_5BkUhT8gp82SQUC", + "classnotes": "Instructor: Ritu Ghiya. Permission of instructor required; interested students should respond to survey form by Wednesday, January 4, 11:59pm. Instructor will notify students with permissions to enroll by January 10. https://yalesurvey.ca1.qualtrics.com/jfe/form/SV_5BkUhT8gp82SQUC", "final_exam": "", "course_home_url": "", "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -32745,7 +70226,7 @@ "14:00", "17:00", "GREEN 109 - Green Hall (1156 Chapel) 109", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ] }, @@ -32754,13 +70235,41 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Permission of instructor required; interested students should respond to survey form by Wednesday, January 4, 11:59pm. Instructor will notify students with permissions to enroll by January 10. https:\/\/yalesurvey.ca1.qualtrics.com\/jfe\/form\/SV_9WYfHiXFWnSV1Pw", + "classnotes": "Permission of instructor required; interested students should respond to survey form by Wednesday, January 4, 11:59pm. Instructor will notify students with permissions to enroll by January 10. https://yalesurvey.ca1.qualtrics.com/jfe/form/SV_9WYfHiXFWnSV1Pw", "final_exam": "", "course_home_url": "", "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -32797,7 +70306,7 @@ "10:00", "13:40", "GREEN G10 - Green Hall (1156 Chapel) G10", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ] }, @@ -32806,20 +70315,48 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Instructor: Mark Steinmetz. Meets 5x for 1.5 credits: dates 3\/27, 4\/3, 4\/10, 4\/17, 4\/24. Permission of instructor required; interested students should respond to survey form by Wednesday, January 4, 11:59pm. Instructor will notify students with permissions to enroll by January 10. https:\/\/yalesurvey.ca1.qualtrics.com\/jfe\/form\/SV_9S6uMsuUiwgssd0", + "classnotes": "Instructor: Mark Steinmetz. Meets 5x for 1.5 credits: dates 3/27, 4/3, 4/10, 4/17, 4/24. Permission of instructor required; interested students should respond to survey form by Wednesday, January 4, 11:59pm. Instructor will notify students with permissions to enroll by January 10. https://yalesurvey.ca1.qualtrics.com/jfe/form/SV_9S6uMsuUiwgssd0", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85767\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85767/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", "description": "This seminar examines what it means to photograph within one\u2019s own community. Topics will include community, historical context, moral and ethical issues, collaborations, and experimentation.", - "short_title": "Insider\/Outside", - "title": "Insider\/Outside", + "short_title": "Insider/Outside", + "title": "Insider/Outside", "school": "AT", "credits": 0.0, "extra_info": "CANCELLED", @@ -32849,7 +70386,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -32892,7 +70457,7 @@ "10:00", "13:00", "GREEN G10 - Green Hall (1156 Chapel) G10", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ] }, @@ -32901,13 +70466,41 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Open to graduate and undergraduate students. Instructors: Matthew Leifheit, Alissa Bennett, and Tyler Mitchell. Permission of instructor required; interested students should respond to survey form by Wednesday, January 4, 11:59pm. Instructor will notify students with permissions to enroll by January 10. https:\/\/yalesurvey.ca1.qualtrics.com\/jfe\/form\/SV_2fA35WM6zRoZK7k", + "classnotes": "Open to graduate and undergraduate students. Instructors: Matthew Leifheit, Alissa Bennett, and Tyler Mitchell. Permission of instructor required; interested students should respond to survey form by Wednesday, January 4, 11:59pm. Instructor will notify students with permissions to enroll by January 10. https://yalesurvey.ca1.qualtrics.com/jfe/form/SV_2fA35WM6zRoZK7k", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85769\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85769/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -32944,7 +70537,7 @@ "14:00", "17:00", "GREEN G10 - Green Hall (1156 Chapel) G10", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ] }, @@ -32953,13 +70546,41 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Permission of instructor required; interested students should respond to survey form by Wednesday, January 4, 11:59pm. Instructor will notify students with permissions to enroll by January 10. https:\/\/yalesurvey.ca1.qualtrics.com\/jfe\/form\/SV_0rIDgNnOm6IGkE6", + "classnotes": "Permission of instructor required; interested students should respond to survey form by Wednesday, January 4, 11:59pm. Instructor will notify students with permissions to enroll by January 10. https://yalesurvey.ca1.qualtrics.com/jfe/form/SV_0rIDgNnOm6IGkE6", "final_exam": "", "course_home_url": "", "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -32996,7 +70617,7 @@ "15:30", "18:30", "GREEN G10 - Green Hall (1156 Chapel) G10", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ] }, @@ -33011,7 +70632,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -33048,7 +70697,7 @@ "15:00", "17:30", "GREEN G10 - Green Hall (1156 Chapel) G10", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ] }, @@ -33063,7 +70712,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -33100,7 +70777,7 @@ "16:00", "19:00", "GREEN G10 - Green Hall (1156 Chapel) G10", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ] }, @@ -33115,7 +70792,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -33161,18 +70866,46 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Meets 6x for 1.5 credits: dates 1\/26, 2\/9, 2\/23, 3\/9, 4\/6, 4\/20. Permission of instructor required; interested students should respond to survey form by Wednesday, January 4, 11:59pm. Instructor will notify students with permissions to enroll by January 10. https:\/\/yalesurvey.ca1.qualtrics.com\/jfe\/form\/SV_9ZkLbg3n8b62jHg", + "classnotes": "Meets 6x for 1.5 credits: dates 1/26, 2/9, 2/23, 3/9, 4/6, 4/20. Permission of instructor required; interested students should respond to survey form by Wednesday, January 4, 11:59pm. Instructor will notify students with permissions to enroll by January 10. https://yalesurvey.ca1.qualtrics.com/jfe/form/SV_9ZkLbg3n8b62jHg", "final_exam": "", "course_home_url": "", "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course provides an overview of artists who as \"curators\" have lent or lend to the rethinking of conventional forms of exhibition making. Their artistic investigations constitute artist practice as a field of inquiry that extends beyond the production of objects of various media to interstitial approaches that reflect the artist\u2019s engagement with art history, philosophy, anthropology, politics, activism\u2014the world and universe at large. The Artist as Curator addresses the meta framework for the creation and artist experience in reclaiming research and life practices that are all too often deemed peripheral as to an artist\u2019s process as legitimate to the consideration of the art work. Since the development of curatorial studies graduate programs (M.A. Curating) in United States and international institutions in the late 1980s, the role of the curator has been professionalized as an external exhibition choreographer, conceptualizer, organizer, and interpreter of the artist\u2019s process. This mediation has privileged this external curatorial voice and yet, it has side tracked the relationship(s) the artist has to\/with a particular set of conditions and communities. that makes art possible. This course encourages students to recognize the wider set of practices they defer to in an effort to convey a picture of what is it to \"work\" and \"think\" through one\u2019s practice that recognizes ambivalence, investigation, options, fluctuation, divergence, and the engagement of other fields of knowledge to enrich one\u2019s perspective and vocabulary with respect to practice. The course navigates through historical and contemporary cases and contexts\u2014to include, but not be limited to, dialogue between Duchamp and Picabia, Asger Jorn and Jacqueline de Jong (The Situationist Enclave), the early initiatives of Claes Oldenburg (Ray Gun Theatre), Jonas Mekas (Anthology Film Archive), Trisha Brown (The Judson Theatre and the Grand. Union), Lygia Clark and Helio Oiticica (Tropicalia), Tucuman Arde, Vivian Brown (Where We At), David Hammons, Rene Gabri and Ayreen Anastas (16 Beaver Group), RAQs Media Collective among others\u2014to provide an overview of artists who engage and enlarge communities and audiences in tandem with generating alternative formats for the participatory experience. The course also addresses the changing institutional conditions that, over time, have contributed to the changing ways in which artists intervene as institutional actors\/curators\u00a0 by looking at the projects of: Amy Silman (Re-reading the MoMA collection); Carol Bove (Harry Smith at the Whitney); and, more recently, Sohrad Mohebbi and the 58th Carnegie International. The course takes a deep dive into exhibition through documents, visuals, readings, through artist studio and other location visits. Throughout the course, the students are encouraged to build their own curatorial projects forward for discussion.", + "description": "This course provides an overview of artists who as \"curators\" have lent or lend to the rethinking of conventional forms of exhibition making. Their artistic investigations constitute artist practice as a field of inquiry that extends beyond the production of objects of various media to interstitial approaches that reflect the artist\u2019s engagement with art history, philosophy, anthropology, politics, activism\u2014the world and universe at large. The Artist as Curator addresses the meta framework for the creation and artist experience in reclaiming research and life practices that are all too often deemed peripheral as to an artist\u2019s process as legitimate to the consideration of the art work. Since the development of curatorial studies graduate programs (M.A. Curating) in United States and international institutions in the late 1980s, the role of the curator has been professionalized as an external exhibition choreographer, conceptualizer, organizer, and interpreter of the artist\u2019s process. This mediation has privileged this external curatorial voice and yet, it has side tracked the relationship(s) the artist has to/with a particular set of conditions and communities. that makes art possible. This course encourages students to recognize the wider set of practices they defer to in an effort to convey a picture of what is it to \"work\" and \"think\" through one\u2019s practice that recognizes ambivalence, investigation, options, fluctuation, divergence, and the engagement of other fields of knowledge to enrich one\u2019s perspective and vocabulary with respect to practice. The course navigates through historical and contemporary cases and contexts\u2014to include, but not be limited to, dialogue between Duchamp and Picabia, Asger Jorn and Jacqueline de Jong (The Situationist Enclave), the early initiatives of Claes Oldenburg (Ray Gun Theatre), Jonas Mekas (Anthology Film Archive), Trisha Brown (The Judson Theatre and the Grand. Union), Lygia Clark and Helio Oiticica (Tropicalia), Tucuman Arde, Vivian Brown (Where We At), David Hammons, Rene Gabri and Ayreen Anastas (16 Beaver Group), RAQs Media Collective among others\u2014to provide an overview of artists who engage and enlarge communities and audiences in tandem with generating alternative formats for the participatory experience. The course also addresses the changing institutional conditions that, over time, have contributed to the changing ways in which artists intervene as institutional actors/curators\u00a0 by looking at the projects of: Amy Silman (Re-reading the MoMA collection); Carol Bove (Harry Smith at the Whitney); and, more recently, Sohrad Mohebbi and the 58th Carnegie International. The course takes a deep dive into exhibition through documents, visuals, readings, through artist studio and other location visits. Throughout the course, the students are encouraged to build their own curatorial projects forward for discussion.", "short_title": "The Artist as Curator", "title": "The Artist as Curator", "school": "AT", @@ -33204,7 +70937,7 @@ "10:00", "13:00", "GREEN C220 - Green Hall (1156 Chapel) C220", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ] }, @@ -33213,18 +70946,46 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Permission of instructor required; interested students should respond to survey form by Wednesday, January 4, 11:59pm. Instructor will notify students with permissions to enroll by January 10. https:\/\/yalesurvey.ca1.qualtrics.com\/jfe\/form\/SV_bClurX6PI0YB4JE", + "classnotes": "Permission of instructor required; interested students should respond to survey form by Wednesday, January 4, 11:59pm. Instructor will notify students with permissions to enroll by January 10. https://yalesurvey.ca1.qualtrics.com/jfe/form/SV_bClurX6PI0YB4JE", "final_exam": "", "course_home_url": "", "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This biweekly course (part workshop, part seminar, part primer) is intended for artists whose work currently engages, or who wish to engage, Latin-based typography in all its variant guises: letterforms, phrases, and texts as applied to divergent mediums and substrates, using analog or digital processes, from micro to macro scales, across differing durations. Classes combine critiques of ongoing studio work, a series of informal lectures, and reading discussions, all framed within a broad context of intertwined art and design typographic histories, conventions, and methodologies. Additionally, a set of typographic prompts encourages specific yet open-ended individual or collaborative explorations. This course prioritizes graduate students in painting\/printmaking, sculpture, photography, and architecture.", + "description": "This biweekly course (part workshop, part seminar, part primer) is intended for artists whose work currently engages, or who wish to engage, Latin-based typography in all its variant guises: letterforms, phrases, and texts as applied to divergent mediums and substrates, using analog or digital processes, from micro to macro scales, across differing durations. Classes combine critiques of ongoing studio work, a series of informal lectures, and reading discussions, all framed within a broad context of intertwined art and design typographic histories, conventions, and methodologies. Additionally, a set of typographic prompts encourages specific yet open-ended individual or collaborative explorations. This course prioritizes graduate students in painting/printmaking, sculpture, photography, and architecture.", "short_title": "Interdisciplinary Typography ...", "title": "Interdisciplinary Typography Workshop", "school": "AT", @@ -33256,7 +71017,7 @@ "10:00", "13:00", "GREEN C220 - Green Hall (1156 Chapel) C220", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ] }, @@ -33265,13 +71026,41 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Meets 6x for 1.5 credits: dates 1\/23, 2\/6, 2\/20, 3\/6, 4\/3, 4\/17. Permission of instructor required; interested students should respond to survey form by Wednesday, January 4, 11:59pm. Instructor will notify students with permissions to enroll by January 10. https:\/\/yalesurvey.ca1.qualtrics.com\/jfe\/form\/SV_0SPrwr5mpzr7sCW", + "classnotes": "Meets 6x for 1.5 credits: dates 1/23, 2/6, 2/20, 3/6, 4/3, 4/17. Permission of instructor required; interested students should respond to survey form by Wednesday, January 4, 11:59pm. Instructor will notify students with permissions to enroll by January 10. https://yalesurvey.ca1.qualtrics.com/jfe/form/SV_0SPrwr5mpzr7sCW", "final_exam": "", "course_home_url": "", "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -33308,7 +71097,7 @@ "9:25", "10:15", "HLH17 113 - 17 Hillhouse Avenue 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Tuesday": [ @@ -33316,7 +71105,7 @@ "9:25", "10:15", "HLH17 113 - 17 Hillhouse Avenue 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Wednesday": [ @@ -33324,7 +71113,7 @@ "9:25", "10:15", "HLH17 113 - 17 Hillhouse Avenue 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Thursday": [ @@ -33332,7 +71121,7 @@ "9:25", "10:15", "HLH17 113 - 17 Hillhouse Avenue 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Friday": [ @@ -33340,7 +71129,7 @@ "9:25", "10:15", "HLH17 113 - 17 Hillhouse Avenue 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -33354,10 +71143,113 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83536\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83536/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998552143573761, + 0.9988241791725159, + 0.9987201690673828, + 0.9988597631454468, + 0.9988238215446472, + 0.9988443851470947 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.99875807762146, + 0.9979076385498047, + 0.9988530874252319, + 0.9987687468528748, + 0.9987791180610657, + 0.9984266757965088, + 0.9989172220230103 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988285899162292, + 0.9989008903503418, + 0.998875081539154, + 0.9989365935325623, + 0.9981436729431152, + 0.9989232420921326 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 19 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -33394,7 +71286,7 @@ "9:25", "10:15", "HLH17 03 - 17 Hillhouse Avenue 03", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Tuesday": [ @@ -33402,7 +71294,7 @@ "9:25", "10:15", "HLH17 03 - 17 Hillhouse Avenue 03", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Wednesday": [ @@ -33410,7 +71302,7 @@ "9:25", "10:15", "HLH17 03 - 17 Hillhouse Avenue 03", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Thursday": [ @@ -33418,7 +71310,7 @@ "9:25", "10:15", "HLH17 03 - 17 Hillhouse Avenue 03", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Friday": [ @@ -33426,7 +71318,7 @@ "9:25", "10:15", "HLH17 03 - 17 Hillhouse Avenue 03", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -33440,10 +71332,91 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83540\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83540/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984598159790039, + 0.9988337159156799 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988657236099243, + 0.9989187717437744, + 0.9989011287689209 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988909363746643, + 0.9984294772148132, + 0.9988844990730286 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 8, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 8 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -33480,7 +71453,7 @@ "9:25", "10:15", "DOW B-21 - Dow Hall B-21", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ], "Tuesday": [ @@ -33488,7 +71461,7 @@ "9:25", "10:15", "DOW B-21 - Dow Hall B-21", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ], "Wednesday": [ @@ -33496,7 +71469,7 @@ "9:25", "10:15", "DOW B-21 - Dow Hall B-21", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ], "Thursday": [ @@ -33504,7 +71477,7 @@ "9:25", "10:15", "DOW B-21 - Dow Hall B-21", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ], "Friday": [ @@ -33512,7 +71485,7 @@ "9:25", "10:15", "", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ] }, @@ -33526,10 +71499,109 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83483\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83483/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988535642623901, + 0.9988194108009338, + 0.9987562894821167, + 0.9987725615501404, + 0.9986968636512756 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994415640830994, + 0.9982372522354126, + 0.9989295601844788, + 0.9991115927696228, + 0.9988546371459961 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.6, + "POSITIVE": 0.4 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.6 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9992181062698364, + 0.9988574981689453, + 0.9989228844642639, + 0.9988558292388916, + 0.9988000392913818, + 0.9984222650527954 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 5 + }, + "sentiment_distribution": { + "NEGATIVE": 0.16666666666666666, + "POSITIVE": 0.8333333333333334 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 0.75, + "final_counts": { + "POSITIVE": 12, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + } + } }, { "season_code": "202301", @@ -33566,7 +71638,7 @@ "10:30", "11:20", "HLH17 113 - 17 Hillhouse Avenue 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Tuesday": [ @@ -33574,7 +71646,7 @@ "10:30", "11:20", "HLH17 113 - 17 Hillhouse Avenue 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Wednesday": [ @@ -33582,7 +71654,7 @@ "10:30", "11:20", "HLH17 113 - 17 Hillhouse Avenue 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Thursday": [ @@ -33590,7 +71662,7 @@ "10:30", "11:20", "HLH17 113 - 17 Hillhouse Avenue 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Friday": [ @@ -33598,7 +71670,7 @@ "10:30", "11:20", "HLH17 113 - 17 Hillhouse Avenue 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -33612,10 +71684,127 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83486\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83486/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984606504440308, + 0.9988025426864624, + 0.9987009763717651, + 0.9989216327667236, + 0.9986875653266907, + 0.9988413453102112, + 0.9988724589347839, + 0.9987887740135193, + 0.9988756775856018 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9975576400756836, + 0.9985230565071106, + 0.9986672401428223, + 0.995668888092041, + 0.998933732509613, + 0.9916701316833496, + 0.9988705515861511 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.7142857142857143, + "NEGATIVE": 0.2857142857142857 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7142857142857143 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988717436790466, + 0.9981922507286072, + 0.9988875985145569, + 0.998340368270874, + 0.9983287453651428, + 0.9988642930984497, + 0.9989068508148193, + 0.9988970756530762, + 0.998812198638916 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 23, + "final_proportion": 0.92, + "final_counts": { + "POSITIVE": 23, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.92, + "NEGATIVE": 0.08 + } + } }, { "season_code": "202301", @@ -33652,7 +71841,7 @@ "10:30", "11:20", "HLH17 03 - 17 Hillhouse Avenue 03", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Tuesday": [ @@ -33660,7 +71849,7 @@ "10:30", "11:20", "HLH17 03 - 17 Hillhouse Avenue 03", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Wednesday": [ @@ -33668,7 +71857,7 @@ "10:30", "11:20", "HLH17 03 - 17 Hillhouse Avenue 03", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Thursday": [ @@ -33676,7 +71865,7 @@ "10:30", "11:20", "HLH17 03 - 17 Hillhouse Avenue 03", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Friday": [ @@ -33684,7 +71873,7 @@ "10:30", "11:20", "HLH17 03 - 17 Hillhouse Avenue 03", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -33698,10 +71887,143 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83487\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83487/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987622499465942, + 0.9989309906959534, + 0.9988724589347839, + 0.9989340901374817, + 0.9986818432807922, + 0.998914361000061, + 0.9989105463027954, + 0.9988250136375427, + 0.9989100694656372, + 0.998749852180481 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989295601844788, + 0.9989350438117981, + 0.9988204836845398, + 0.9989159107208252, + 0.9980542659759521, + 0.9989174604415894, + 0.998914361000061, + 0.9989257454872131, + 0.9988980293273926, + 0.9970113039016724, + 0.9989030361175537, + 0.9986053109169006 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9166666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985818862915039, + 0.9989210367202759, + 0.9987647533416748, + 0.9988749623298645, + 0.9988725781440735, + 0.9989192485809326, + 0.9988456964492798, + 0.9989238381385803, + 0.9988738894462585, + 0.9988884329795837, + 0.9989221096038818 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 32, + "final_proportion": 0.9696969696969697, + "final_counts": { + "POSITIVE": 32, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9696969696969697, + "NEGATIVE": 0.030303030303030304 + } + } }, { "season_code": "202301", @@ -33738,7 +72060,7 @@ "10:30", "11:20", "DOW B-21 - Dow Hall B-21", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ], "Tuesday": [ @@ -33746,7 +72068,7 @@ "10:30", "11:20", "DOW B-21 - Dow Hall B-21", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ], "Wednesday": [ @@ -33754,7 +72076,7 @@ "10:30", "11:20", "DOW B-21 - Dow Hall B-21", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ], "Thursday": [ @@ -33762,7 +72084,7 @@ "10:30", "11:20", "DOW B-21 - Dow Hall B-21", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ], "Friday": [ @@ -33770,7 +72092,7 @@ "10:30", "11:20", "", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ] }, @@ -33784,10 +72106,105 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83490\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83490/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988246560096741, + 0.9987562894821167, + 0.9986729621887207, + 0.9987540245056152 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9960528612136841, + 0.9985765218734741, + 0.9989196062088013, + 0.9989142417907715 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.25, + "POSITIVE": 0.75 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994420409202576, + 0.9994975328445435, + 0.9988173842430115, + 0.9989097118377686, + 0.9988811612129211, + 0.9987622499465942 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 4 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 0.7857142857142857, + "final_counts": { + "POSITIVE": 11, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.7857142857142857, + "NEGATIVE": 0.21428571428571427 + } + } }, { "season_code": "202301", @@ -33824,7 +72241,7 @@ "11:35", "12:25", "DL 316 - Dunham Laboratory 316", - "https:\/\/map.yale.edu\/?id=1910#!m\/560005" + "https://map.yale.edu/?id=1910#!m/560005" ] ], "Tuesday": [ @@ -33832,7 +72249,7 @@ "11:35", "12:25", "DL 316 - Dunham Laboratory 316", - "https:\/\/map.yale.edu\/?id=1910#!m\/560005" + "https://map.yale.edu/?id=1910#!m/560005" ] ], "Wednesday": [ @@ -33840,7 +72257,7 @@ "11:35", "12:25", "DL 316 - Dunham Laboratory 316", - "https:\/\/map.yale.edu\/?id=1910#!m\/560005" + "https://map.yale.edu/?id=1910#!m/560005" ] ], "Thursday": [ @@ -33848,7 +72265,7 @@ "11:35", "12:25", "DL 316 - Dunham Laboratory 316", - "https:\/\/map.yale.edu\/?id=1910#!m\/560005" + "https://map.yale.edu/?id=1910#!m/560005" ] ], "Friday": [ @@ -33856,7 +72273,7 @@ "11:35", "12:25", "DL 316 - Dunham Laboratory 316", - "https:\/\/map.yale.edu\/?id=1910#!m\/560005" + "https://map.yale.edu/?id=1910#!m/560005" ] ] }, @@ -33870,10 +72287,95 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85707\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85707/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.99886155128479, + 0.9988574981689453, + 0.9987773299217224 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987336993217468, + 0.9986308217048645, + 0.9989210367202759 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988219141960144, + 0.9982553124427795, + 0.9987102746963501, + 0.9989144802093506 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 10 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -33910,7 +72412,7 @@ "11:35", "12:25", "HLH17 03 - 17 Hillhouse Avenue 03", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Tuesday": [ @@ -33918,7 +72420,7 @@ "11:35", "12:25", "HLH17 03 - 17 Hillhouse Avenue 03", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Wednesday": [ @@ -33926,7 +72428,7 @@ "11:35", "12:25", "HLH17 03 - 17 Hillhouse Avenue 03", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Thursday": [ @@ -33934,7 +72436,7 @@ "11:35", "12:25", "HLH17 03 - 17 Hillhouse Avenue 03", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Friday": [ @@ -33942,7 +72444,7 @@ "11:35", "12:25", "HLH17 03 - 17 Hillhouse Avenue 03", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -33956,10 +72458,97 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85708\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85708/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988774657249451, + 0.9988663196563721, + 0.9988846182823181 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998872697353363, + 0.9989292025566101, + 0.9988665580749512 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989217519760132, + 0.9987647533416748, + 0.9989401698112488, + 0.9988852143287659, + 0.9989240765571594 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 11 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -34039,7 +72628,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -34076,7 +72693,7 @@ "10:30", "11:20", "HQ 307 - Humanities Quadrangle 307", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Tuesday": [ @@ -34084,7 +72701,7 @@ "10:30", "11:20", "HQ 307 - Humanities Quadrangle 307", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -34092,7 +72709,7 @@ "10:30", "11:20", "HQ 307 - Humanities Quadrangle 307", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -34100,7 +72717,7 @@ "10:30", "11:20", "HQ 307 - Humanities Quadrangle 307", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Friday": [ @@ -34108,7 +72725,7 @@ "10:30", "11:20", "HQ 307 - Humanities Quadrangle 307", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -34122,10 +72739,131 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83502\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83502/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982593655586243, + 0.998553454875946, + 0.9898730516433716, + 0.9987642765045166, + 0.998893678188324, + 0.9949939846992493, + 0.9962292313575745, + 0.9972026348114014, + 0.998838484287262 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989350438117981, + 0.9986476302146912, + 0.9968469738960266, + 0.9994729161262512, + 0.9987732768058777, + 0.9988687634468079, + 0.9988553524017334, + 0.9988368153572083 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989338517189026, + 0.997117280960083, + 0.998932421207428, + 0.9987825751304626, + 0.9982553124427795, + 0.9989169836044312, + 0.9983147382736206, + 0.9989053010940552, + 0.9988829493522644, + 0.9989094734191895 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 25, + "final_proportion": 0.9259259259259259, + "final_counts": { + "POSITIVE": 25, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9259259259259259, + "NEGATIVE": 0.07407407407407407 + } + } }, { "season_code": "202301", @@ -34162,7 +72900,7 @@ "11:35", "12:25", "DOW B-21 - Dow Hall B-21", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ], "Tuesday": [ @@ -34170,7 +72908,7 @@ "11:35", "12:25", "DOW B-21 - Dow Hall B-21", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ], "Wednesday": [ @@ -34178,7 +72916,7 @@ "11:35", "12:25", "DOW B-21 - Dow Hall B-21", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ], "Thursday": [ @@ -34186,7 +72924,7 @@ "11:35", "12:25", "DOW B-21 - Dow Hall B-21", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ], "Friday": [ @@ -34194,7 +72932,7 @@ "11:35", "12:25", "", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ] }, @@ -34208,15 +72946,102 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83507\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83507/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988740086555481, + 0.9988934397697449, + 0.9988921284675598, + 0.996557891368866 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987367987632751, + 0.9989312291145325, + 0.9988922476768494, + 0.9923931360244751 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985283613204956, + 0.9987449645996094, + 0.9989327788352966 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 11 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", "requirements": "Prerequisite: ASL 140 or advanced ASL proficiency.", - "description": "This course acquaints students with knowledge of d\/Deaf and Hard of Hearing (DHH) people by surveying critical issues in how DHH people have been perceived and portrayed throughout history, how DHH and hearing people have advocated together for their civil rights, and how sign language studies, performance arts, and media have been instrumental in promoting these rights. As part of their studies, students create an ASL media or performance arts production that is reflective of this process. Students complete the course with a greater understanding of factors impacting language studies in the Deaf community, awareness of their own roles as members of the ASL community, and the ability to address sociocultural issues in tandem with Deaf communities and broader sign language communities.", + "description": "This course acquaints students with knowledge of d/Deaf and Hard of Hearing (DHH) people by surveying critical issues in how DHH people have been perceived and portrayed throughout history, how DHH and hearing people have advocated together for their civil rights, and how sign language studies, performance arts, and media have been instrumental in promoting these rights. As part of their studies, students create an ASL media or performance arts production that is reflective of this process. Students complete the course with a greater understanding of factors impacting language studies in the Deaf community, awareness of their own roles as members of the ASL community, and the ability to address sociocultural issues in tandem with Deaf communities and broader sign language communities.", "short_title": "Critical Issues Facing Deaf P...", "title": "Critical Issues Facing Deaf People in Society", "school": "YC", @@ -34248,7 +73073,7 @@ "11:35", "12:50", "HQ 309 - Humanities Quadrangle 309", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -34256,7 +73081,7 @@ "11:35", "12:50", "HQ 309 - Humanities Quadrangle 309", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -34270,10 +73095,107 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85851\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85851/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987596273422241, + 0.9987919926643372, + 0.9978229999542236, + 0.998566210269928, + 0.9986257553100586 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989232420921326, + 0.9986392855644226, + 0.9988240599632263, + 0.9994995594024658, + 0.9988627433776855 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989309906959534, + 0.9974529147148132, + 0.9989135265350342, + 0.9888914823532104, + 0.998902440071106 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 0.9333333333333333, + "final_counts": { + "POSITIVE": 14, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9333333333333333, + "NEGATIVE": 0.06666666666666667 + } + } }, { "season_code": "202301", @@ -34310,7 +73232,7 @@ "13:00", "14:15", "LUCE 101 - Luce Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ], "Wednesday": [ @@ -34318,7 +73240,7 @@ "13:00", "14:15", "LUCE 101 - Luce Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ] }, @@ -34334,10 +73256,147 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83511\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83511/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986391663551331, + 0.9961825013160706, + 0.9987205862998962, + 0.9986555576324463, + 0.9989116191864014, + 0.9989129304885864, + 0.9985952973365784, + 0.9986818432807922, + 0.9985815286636353 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9903551340103149, + 0.9993396401405334, + 0.9988070726394653, + 0.9988717436790466, + 0.9989290833473206, + 0.9988043308258057, + 0.9992081522941589, + 0.9992942810058594, + 0.9977781176567078, + 0.9988831877708435, + 0.9995019435882568, + 0.9933746457099915, + 0.9988634586334229 + ], + "sentiment_counts": { + "NEGATIVE": 7, + "POSITIVE": 6 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5384615384615384, + "POSITIVE": 0.46153846153846156 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985345602035522, + 0.9985567927360535, + 0.9988757967948914, + 0.9971991777420044, + 0.9980093836784363, + 0.9988190531730652, + 0.9988584518432617, + 0.9995039701461792, + 0.998039186000824, + 0.9917791485786438, + 0.9993626475334167, + 0.9929753541946411, + 0.998332679271698 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.7692307692307693, + "NEGATIVE": 0.23076923076923078 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7692307692307693 + ] + }, + "final_label": "POSITIVE", + "final_count": 25, + "final_proportion": 0.7142857142857143, + "final_counts": { + "POSITIVE": 25, + "NEGATIVE": 10 + }, + "final_distribution": { + "POSITIVE": 0.7142857142857143, + "NEGATIVE": 0.2857142857142857 + } + } }, { "season_code": "202301", @@ -34374,7 +73433,7 @@ "16:00", "17:15", "OML 202 - Osborn Memorial Laboratories 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/559958" + "https://map.yale.edu/?id=1910#!m/559958" ] ], "Thursday": [ @@ -34382,7 +73441,7 @@ "16:00", "17:15", "OML 202 - Osborn Memorial Laboratories 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/559958" + "https://map.yale.edu/?id=1910#!m/559958" ] ] }, @@ -34396,10 +73455,319 @@ "classnotes": "", "final_exam": "Wednesday, May 10, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83515\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83515/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989056587219238, + 0.9976255297660828, + 0.9985081553459167, + 0.9987908005714417, + 0.9979616403579712, + 0.998812198638916, + 0.998392641544342, + 0.9984369874000549, + 0.9985270500183105, + 0.9988527297973633, + 0.9989022016525269, + 0.9987924098968506, + 0.9984241724014282, + 0.9981880784034729, + 0.9988085031509399, + 0.998768150806427, + 0.9988846182823181, + 0.9985222220420837, + 0.9983178377151489, + 0.9989244341850281, + 0.9987473487854004, + 0.9978877902030945, + 0.9994869232177734, + 0.9983887672424316, + 0.9989066123962402, + 0.9987412095069885, + 0.9988211989402771, + 0.9988552331924438, + 0.9952735304832458, + 0.9988277554512024, + 0.9989105463027954, + 0.9988534450531006, + 0.9988460540771484, + 0.9985705614089966, + 0.9987568855285645, + 0.998728334903717, + 0.9986101388931274 + ], + "sentiment_counts": { + "POSITIVE": 34, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.918918918918919, + "NEGATIVE": 0.08108108108108109 + }, + "sentiment_overall": [ + "POSITIVE", + 0.918918918918919 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9960173964500427, + 0.9986144304275513, + 0.9989230036735535, + 0.998728334903717, + 0.9979958534240723, + 0.9766740202903748, + 0.9967818260192871, + 0.9968442916870117, + 0.9989011287689209, + 0.9988903403282166, + 0.998820960521698, + 0.9994986057281494, + 0.9989312291145325, + 0.999442994594574, + 0.9980506896972656, + 0.9959392547607422, + 0.9989043474197388, + 0.9988904595375061, + 0.9994608759880066, + 0.996187150478363, + 0.9988904595375061, + 0.9994586110115051, + 0.9989603757858276, + 0.9994291663169861, + 0.9989013671875, + 0.9986818432807922, + 0.9977155923843384, + 0.9986103773117065, + 0.9986934065818787, + 0.9994860887527466, + 0.9994977712631226, + 0.9988493919372559, + 0.9864253997802734, + 0.9975684285163879, + 0.9989086389541626, + 0.9989093542098999, + 0.9994729161262512, + 0.9966901540756226, + 0.9987189769744873, + 0.9988573789596558 + ], + "sentiment_counts": { + "POSITIVE": 24, + "NEGATIVE": 16 + }, + "sentiment_distribution": { + "POSITIVE": 0.6, + "NEGATIVE": 0.4 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988250136375427, + 0.998863697052002, + 0.9985033273696899, + 0.9989041090011597, + 0.9995108842849731, + 0.9989033937454224, + 0.9989132881164551, + 0.9993849992752075, + 0.9983489513397217, + 0.9986587762832642, + 0.9989352822303772, + 0.99886155128479, + 0.9988910555839539, + 0.9982663989067078, + 0.9995032548904419, + 0.9994930028915405, + 0.9987735152244568, + 0.9982553124427795, + 0.9988774657249451, + 0.9987550973892212, + 0.9989368319511414, + 0.9994935989379883, + 0.9986088871955872, + 0.9988539218902588, + 0.9994837045669556, + 0.9995098114013672, + 0.9836109280586243, + 0.9988958835601807, + 0.9988675117492676, + 0.99888676404953, + 0.9978840947151184, + 0.9987754225730896, + 0.7159518003463745, + 0.9987702965736389, + 0.9987494945526123, + 0.9982206225395203, + 0.9988640546798706, + 0.997753918170929, + 0.997117280960083, + 0.998915433883667, + 0.999473512172699, + 0.998462438583374, + 0.9992049336433411, + 0.9842796325683594 + ], + "sentiment_counts": { + "POSITIVE": 32, + "NEGATIVE": 12 + }, + "sentiment_distribution": { + "POSITIVE": 0.7272727272727273, + "NEGATIVE": 0.2727272727272727 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7272727272727273 + ] + }, + "final_label": "POSITIVE", + "final_count": 90, + "final_proportion": 0.743801652892562, + "final_counts": { + "POSITIVE": 90, + "NEGATIVE": 31 + }, + "final_distribution": { + "POSITIVE": 0.743801652892562, + "NEGATIVE": 0.256198347107438 + } + } }, { "season_code": "202301", @@ -34436,7 +73804,7 @@ "13:00", "14:15", "WTS A51 - Watson Center 60 Sachem Street A51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -34444,7 +73812,7 @@ "13:00", "14:15", "WTS A51 - Watson Center 60 Sachem Street A51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -34460,10 +73828,167 @@ "classnotes": "", "final_exam": "Tuesday, May 9, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83519\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83519/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987381100654602, + 0.9986212253570557, + 0.998833954334259, + 0.997717022895813, + 0.9980267882347107, + 0.9986276626586914, + 0.9987291693687439, + 0.9987517595291138, + 0.998816728591919, + 0.9987921118736267, + 0.9989058971405029, + 0.9987291693687439, + 0.9987683892250061 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998867392539978, + 0.9988677501678467, + 0.9987051486968994, + 0.9995067119598389, + 0.9982445240020752, + 0.9970762729644775, + 0.9989211559295654, + 0.9977853298187256, + 0.9988375306129456, + 0.9985029697418213, + 0.9993688464164734, + 0.9989173412322998, + 0.9989295601844788, + 0.9988712668418884, + 0.9988518953323364 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 5 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988836646080017, + 0.9973421692848206, + 0.9962124824523926, + 0.9989076852798462, + 0.9869634509086609, + 0.9986826777458191, + 0.9986974596977234, + 0.9988282322883606, + 0.9981682300567627, + 0.9988073110580444, + 0.9986531734466553, + 0.9982301592826843, + 0.9987194538116455, + 0.9989235997200012, + 0.9989235997200012, + 0.9988909363746643, + 0.9989114999771118 + ], + "sentiment_counts": { + "POSITIVE": 15, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8823529411764706, + "NEGATIVE": 0.11764705882352941 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8823529411764706 + ] + }, + "final_label": "POSITIVE", + "final_count": 38, + "final_proportion": 0.8444444444444444, + "final_counts": { + "POSITIVE": 38, + "NEGATIVE": 7 + }, + "final_distribution": { + "POSITIVE": 0.8444444444444444, + "NEGATIVE": 0.15555555555555556 + } + } }, { "season_code": "202301", @@ -34500,7 +74025,7 @@ "9:00", "10:15", "WTS B60 - Watson Center 60 Sachem Street B60", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -34508,7 +74033,7 @@ "9:00", "10:15", "WTS B60 - Watson Center 60 Sachem Street B60", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -34524,15 +74049,126 @@ "classnotes": "", "final_exam": "Tuesday, May 9, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83524\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83524/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9986029267311096, + 0.9985398054122925, + 0.9988341927528381, + 0.9988013505935669, + 0.9948896169662476, + 0.9984740614891052 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9967106580734253, + 0.995377779006958, + 0.9987298846244812, + 0.9988679885864258, + 0.9972001314163208, + 0.9926322102546692, + 0.9888275861740112, + 0.9930908679962158 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.625, + "NEGATIVE": 0.375 + }, + "sentiment_overall": [ + "POSITIVE", + 0.625 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994450211524963, + 0.9991126656532288, + 0.9800682663917542, + 0.9994970560073853, + 0.9986757636070251, + 0.9995107650756836, + 0.9905043244361877, + 0.995550274848938 + ], + "sentiment_counts": { + "NEGATIVE": 4, + "POSITIVE": 4 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 0.6363636363636364, + "final_counts": { + "POSITIVE": 14, + "NEGATIVE": 8 + }, + "final_distribution": { + "POSITIVE": 0.6363636363636364, + "NEGATIVE": 0.36363636363636365 + } + } }, { "season_code": "202301", "requirements": "Prerequisite: ASTR 255 or permission of instructor. Some basic programming experience in Python is strongly recommended.", - "description": "Scientific computer programming in Astrophysics with a focus on the Python Programming language. Algorithms and workflows for reducing and analyzing Astrophysical datasets, both observational and computational. Emphasis is placed on best coding practices, including readability, version control, documentation, and computational efficiency.\u00a0Weekly lectures, in-depth tutorial\/workshops, and invited outside expert guest speakers.\u00a0Students complete a programming project based on real astrophysical datasets.", + "description": "Scientific computer programming in Astrophysics with a focus on the Python Programming language. Algorithms and workflows for reducing and analyzing Astrophysical datasets, both observational and computational. Emphasis is placed on best coding practices, including readability, version control, documentation, and computational efficiency.\u00a0Weekly lectures, in-depth tutorial/workshops, and invited outside expert guest speakers.\u00a0Students complete a programming project based on real astrophysical datasets.", "short_title": "Scientific Computing in Astro...", "title": "Scientific Computing in Astrophysics", "school": "YC", @@ -34564,7 +74200,7 @@ "10:30", "11:20", "WTS B74 - Watson Center 60 Sachem Street B74", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -34572,7 +74208,7 @@ "10:30", "11:20", "WTS B74 - Watson Center 60 Sachem Street B74", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Friday": [ @@ -34580,7 +74216,7 @@ "10:30", "11:20", "WTS B74 - Watson Center 60 Sachem Street B74", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -34594,10 +74230,113 @@ "classnotes": "", "final_exam": "Friday, May 5, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83529\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83529/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986544847488403, + 0.9989222288131714, + 0.9975634813308716, + 0.9968871474266052, + 0.9988817572593689, + 0.9987530708312988, + 0.9988038539886475 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985378980636597, + 0.9989150762557983, + 0.9989339709281921, + 0.9988688826560974, + 0.9989266991615295 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988635778427124, + 0.9988349080085754, + 0.9989283680915833, + 0.9987272620201111, + 0.9980455636978149, + 0.998935878276825, + 0.9989120960235596 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 19 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -34640,7 +74379,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -34683,7 +74450,58 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988799691200256 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989211559295654 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 2, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 2 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -34726,7 +74544,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -34763,7 +74609,7 @@ "13:00", "14:15", "WTS A38 - Watson Center 60 Sachem Street A38", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -34771,7 +74617,7 @@ "13:00", "14:15", "WTS A38 - Watson Center 60 Sachem Street A38", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -34783,10 +74629,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83543\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83543/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -34823,7 +74697,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -34860,7 +74762,7 @@ "11:35", "12:50", "WTS A35 - Watson Center 60 Sachem Street A35", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -34868,7 +74770,7 @@ "11:35", "12:50", "WTS A35 - Watson Center 60 Sachem Street A35", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -34880,10 +74782,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83550\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83550/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -34926,7 +74856,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -34963,7 +74921,7 @@ "13:30", "15:15", "WTS A51 - Watson Center 60 Sachem Street A51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -34978,7 +74936,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -35021,12 +75007,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course meets the NIH requirement that students receive training in the responsible conduct of research at least every four years. The course has two components: (1) one large-group session is held for all fourth-year BBS students; the main topics are scientific misconduct and authorship; and (2) each Ph.D. program will subsequently host additional sessions just for fourth-year students in its program. Attendance is taken, and students who attend both components of the course receive a grade of Satisfactory. The course is graded Satisfactory\/Unsatisfactory.", + "description": "This course meets the NIH requirement that students receive training in the responsible conduct of research at least every four years. The course has two components: (1) one large-group session is held for all fourth-year BBS students; the main topics are scientific misconduct and authorship; and (2) each Ph.D. program will subsequently host additional sessions just for fourth-year students in its program. Attendance is taken, and students who attend both components of the course receive a grade of Satisfactory. The course is graded Satisfactory/Unsatisfactory.", "short_title": "RCR Refresher for Senior BBS ...", "title": "RCR Refresher for Senior BBS Students", "school": "GS", @@ -35062,10 +75076,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85102\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85102/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -35109,10 +75151,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83562\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83562/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -35149,7 +75219,7 @@ "13:00", "14:15", "WLH 207 - William L. Harkness Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -35157,7 +75227,7 @@ "13:00", "14:15", "WLH 207 - William L. Harkness Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -35171,10 +75241,173 @@ "classnotes": "", "final_exam": "Sunday, May 7, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83566\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83566/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9970781803131104, + 0.9900591969490051, + 0.9988195300102234, + 0.9987030029296875, + 0.9987780451774597, + 0.9988780617713928, + 0.9987133741378784, + 0.9988590478897095, + 0.991293728351593, + 0.9986458420753479, + 0.9517309665679932, + 0.9982312321662903, + 0.998671293258667, + 0.9979391694068909, + 0.998734176158905, + 0.9988721013069153, + 0.9932481050491333 + ], + "sentiment_counts": { + "POSITIVE": 15, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8823529411764706, + "NEGATIVE": 0.11764705882352941 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8823529411764706 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9995014667510986, + 0.9988729357719421, + 0.9989131689071655, + 0.9990679621696472, + 0.9989263415336609, + 0.9989172220230103, + 0.9987816214561462, + 0.9950083494186401, + 0.998916506767273, + 0.9995005130767822, + 0.9972578883171082, + 0.9942757487297058, + 0.9987426400184631, + 0.9994990825653076 + ], + "sentiment_counts": { + "NEGATIVE": 6, + "POSITIVE": 8 + }, + "sentiment_distribution": { + "NEGATIVE": 0.42857142857142855, + "POSITIVE": 0.5714285714285714 + }, + "sentiment_overall": [ + "POSITIVE", + 0.5714285714285714 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9980016350746155, + 0.9988681077957153, + 0.9758267998695374, + 0.9964002370834351, + 0.9987755417823792, + 0.9988791346549988, + 0.9988762736320496, + 0.9962676167488098, + 0.9988395571708679, + 0.9971379041671753, + 0.9936906099319458, + 0.9988271594047546, + 0.9976363182067871, + 0.999496579170227, + 0.997117280960083, + 0.9991063475608826, + 0.9972568154335022 + ], + "sentiment_counts": { + "NEGATIVE": 6, + "POSITIVE": 11 + }, + "sentiment_distribution": { + "NEGATIVE": 0.35294117647058826, + "POSITIVE": 0.6470588235294118 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6470588235294118 + ] + }, + "final_label": "POSITIVE", + "final_count": 34, + "final_proportion": 0.7083333333333334, + "final_counts": { + "POSITIVE": 34, + "NEGATIVE": 14 + }, + "final_distribution": { + "POSITIVE": 0.7083333333333334, + "NEGATIVE": 0.2916666666666667 + } + } }, { "season_code": "202301", @@ -35205,7 +75438,7 @@ "19:00", "19:50", "HLH17 03 - 17 Hillhouse Avenue 03", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -35222,7 +75455,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -35253,7 +75514,7 @@ "19:00", "19:50", "HLH17 03 - 17 Hillhouse Avenue 03", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -35270,7 +75531,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -35309,7 +75598,7 @@ "9:00", "10:15", "WTS A30 - Watson Center 60 Sachem Street A30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -35317,7 +75606,7 @@ "9:00", "10:15", "WTS A30 - Watson Center 60 Sachem Street A30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -35331,10 +75620,145 @@ "classnotes": "", "final_exam": "Saturday, May 6, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83570\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83570/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982261061668396, + 0.9980424642562866, + 0.9987554550170898, + 0.9987717270851135, + 0.9987782835960388, + 0.9986363053321838, + 0.9986666440963745, + 0.9986757636070251, + 0.9988289475440979 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9934213757514954, + 0.998795747756958, + 0.9986681938171387, + 0.9494472742080688, + 0.9988514184951782, + 0.9989281296730042, + 0.9994989633560181, + 0.9988086223602295, + 0.9988332390785217, + 0.9986687898635864, + 0.9988106489181519, + 0.9955262541770935, + 0.9985602498054504, + 0.9986577033996582 + ], + "sentiment_counts": { + "NEGATIVE": 4, + "POSITIVE": 10 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2857142857142857, + "POSITIVE": 0.7142857142857143 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7142857142857143 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.999455988407135, + 0.9984502792358398, + 0.99607914686203, + 0.998892605304718, + 0.9921370148658752, + 0.9989142417907715, + 0.9995051622390747, + 0.9995021820068359, + 0.9994909763336182, + 0.998869001865387, + 0.9985986351966858 + ], + "sentiment_counts": { + "NEGATIVE": 6, + "POSITIVE": 5 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5454545454545454, + "POSITIVE": 0.45454545454545453 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "final_label": "POSITIVE", + "final_count": 24, + "final_proportion": 0.7058823529411765, + "final_counts": { + "POSITIVE": 24, + "NEGATIVE": 10 + }, + "final_distribution": { + "POSITIVE": 0.7058823529411765, + "NEGATIVE": 0.29411764705882354 + } + } }, { "season_code": "202301", @@ -35366,7 +75790,7 @@ "19:00", "19:50", "WTS A68 - Watson Center 60 Sachem Street A68", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -35383,7 +75807,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -35415,7 +75867,7 @@ "19:00", "19:50", "WTS A38 - Watson Center 60 Sachem Street A38", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -35432,7 +75884,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -35472,7 +75952,7 @@ "11:35", "12:50", "WTS A74 - Watson Center 60 Sachem Street A74", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -35480,7 +75960,7 @@ "11:35", "12:50", "WTS A74 - Watson Center 60 Sachem Street A74", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -35494,10 +75974,133 @@ "classnotes": "", "final_exam": "Monday, May 8, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83575\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83575/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9964145421981812, + 0.9969371557235718, + 0.9988386034965515, + 0.9988898634910583, + 0.9987201690673828, + 0.9972997307777405, + 0.9985278844833374, + 0.9987107515335083, + 0.9988864064216614 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.999460756778717, + 0.9943089485168457, + 0.9988736510276794, + 0.9987945556640625, + 0.9988793730735779, + 0.9988144636154175, + 0.997581958770752, + 0.9988829493522644, + 0.9988957643508911 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 7 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2222222222222222, + "POSITIVE": 0.7777777777777778 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7777777777777778 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984642267227173, + 0.9988962411880493, + 0.9992351531982422, + 0.9988710284233093, + 0.9890572428703308, + 0.9989020824432373, + 0.9989319443702698, + 0.9995006322860718, + 0.9985619187355042, + 0.997484564781189 + ], + "sentiment_counts": { + "NEGATIVE": 4, + "POSITIVE": 6 + }, + "sentiment_distribution": { + "NEGATIVE": 0.4, + "POSITIVE": 0.6 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6 + ] + }, + "final_label": "POSITIVE", + "final_count": 22, + "final_proportion": 0.7857142857142857, + "final_counts": { + "POSITIVE": 22, + "NEGATIVE": 6 + }, + "final_distribution": { + "POSITIVE": 0.7857142857142857, + "NEGATIVE": 0.21428571428571427 + } + } }, { "season_code": "202301", @@ -35545,10 +76148,125 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83579\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83579/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.978727400302887, + 0.9978965520858765, + 0.9981112480163574, + 0.9988380074501038, + 0.998175859451294, + 0.998784601688385, + 0.9985369443893433 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 6 + }, + "sentiment_distribution": { + "NEGATIVE": 0.14285714285714285, + "POSITIVE": 0.8571428571428571 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.999504566192627, + 0.9992444515228271, + 0.9994775652885437, + 0.9988753199577332, + 0.9992031455039978, + 0.9988141059875488, + 0.9937784075737, + 0.9959230422973633, + 0.9988855719566345 + ], + "sentiment_counts": { + "NEGATIVE": 4, + "POSITIVE": 5 + }, + "sentiment_distribution": { + "NEGATIVE": 0.4444444444444444, + "POSITIVE": 0.5555555555555556 + }, + "sentiment_overall": [ + "POSITIVE", + 0.5555555555555556 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9980091452598572, + 0.982864260673523, + 0.9987290501594543, + 0.9957439303398132, + 0.9987039566040039, + 0.9930611252784729, + 0.9980576634407043, + 0.9989272952079773 + ], + "sentiment_counts": { + "NEGATIVE": 4, + "POSITIVE": 4 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 0.625, + "final_counts": { + "NEGATIVE": 9, + "POSITIVE": 15 + }, + "final_distribution": { + "NEGATIVE": 0.375, + "POSITIVE": 0.625 + } + } }, { "season_code": "202301", @@ -35579,7 +76297,7 @@ "13:00", "17:00", "WLH 014 - William L. Harkness Hall 014", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -35596,7 +76314,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -35627,7 +76373,7 @@ "13:00", "17:00", "AKW 100 - Arthur K. Watson Hall 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560119" + "https://map.yale.edu/?id=1910#!m/560119" ] ] }, @@ -35644,7 +76390,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -35685,7 +76459,7 @@ "15:30", "17:20", "SML 120C - Sterling Memorial Library 120C", - "https:\/\/map.yale.edu\/?id=1910#!m\/563698" + "https://map.yale.edu/?id=1910#!m/563698" ] ] }, @@ -35703,10 +76477,129 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83824\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83824/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988324046134949, + 0.9988773465156555, + 0.997459352016449, + 0.9987677335739136, + 0.998906135559082, + 0.9969339370727539, + 0.9988306164741516, + 0.9988940358161926, + 0.9988102912902832 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989144802093506, + 0.9988527297973633, + 0.9989206790924072, + 0.9989308714866638, + 0.9943407773971558, + 0.9986618757247925, + 0.9988669157028198 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989175796508789, + 0.9987472295761108, + 0.9985164999961853, + 0.9989124536514282, + 0.9984503984451294, + 0.9987162351608276, + 0.9989246726036072, + 0.9989194869995117, + 0.9988082647323608, + 0.9988492727279663, + 0.9988958835601807 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 27, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 27 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -35748,7 +76641,7 @@ "16:00", "17:15", "BCT 107 - Becton Center 107", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ], "Wednesday": [ @@ -35756,7 +76649,7 @@ "16:00", "17:15", "BCT 107 - Becton Center 107", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ] }, @@ -35768,10 +76661,189 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83918\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83918/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988884329795837, + 0.9987467527389526, + 0.9989126920700073, + 0.9988974332809448, + 0.9986911416053772, + 0.9987965822219849, + 0.9988775849342346, + 0.9987812638282776, + 0.9970787763595581, + 0.9988975524902344, + 0.9988909363746643, + 0.9984408020973206, + 0.9989093542098999, + 0.9988975524902344, + 0.9961948394775391, + 0.9988802075386047, + 0.9987797141075134, + 0.998815655708313, + 0.9989262223243713 + ], + "sentiment_counts": { + "POSITIVE": 19, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989058971405029, + 0.9989045858383179, + 0.992607831954956, + 0.99888676404953, + 0.9987735152244568, + 0.9989114999771118, + 0.9986045956611633, + 0.9987698197364807, + 0.9988709092140198, + 0.998856782913208, + 0.9994332194328308, + 0.9974697828292847, + 0.9844639897346497, + 0.9988527297973633, + 0.9988264441490173, + 0.9987998008728027, + 0.9989141225814819 + ], + "sentiment_counts": { + "POSITIVE": 15, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8823529411764706, + "NEGATIVE": 0.11764705882352941 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8823529411764706 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989001750946045, + 0.997817873954773, + 0.9988651275634766, + 0.9985816478729248, + 0.9989206790924072, + 0.9989334940910339, + 0.9988627433776855, + 0.9988340735435486, + 0.9989185333251953, + 0.9985446929931641, + 0.998915433883667, + 0.9988859295845032, + 0.998873770236969, + 0.9987025260925293, + 0.9988766312599182, + 0.998810887336731, + 0.9989173412322998, + 0.9988746047019958, + 0.9988998174667358, + 0.9989182949066162 + ], + "sentiment_counts": { + "POSITIVE": 20, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 54, + "final_proportion": 0.9642857142857143, + "final_counts": { + "POSITIVE": 54, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9642857142857143, + "NEGATIVE": 0.03571428571428571 + } + } }, { "season_code": "202301", @@ -35810,7 +76882,7 @@ "13:00", "14:15", "HLH17 115 - 17 Hillhouse Avenue 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Wednesday": [ @@ -35818,7 +76890,7 @@ "13:00", "14:15", "HLH17 115 - 17 Hillhouse Avenue 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -35835,10 +76907,131 @@ "classnotes": "", "final_exam": "Tuesday, May 9, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83583\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83583/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982351064682007, + 0.9989233613014221, + 0.9986218214035034, + 0.9987925291061401, + 0.9988555908203125, + 0.995819091796875, + 0.9987886548042297, + 0.9989272952079773 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998798131942749, + 0.9989222288131714, + 0.9986710548400879, + 0.998903751373291, + 0.9988493919372559, + 0.9988844990730286, + 0.9986717700958252, + 0.9989041090011597, + 0.9988871216773987 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988312125205994, + 0.9986433386802673, + 0.9988918900489807, + 0.9978691339492798, + 0.9989333748817444, + 0.9978603720664978, + 0.9944349527359009, + 0.9989134073257446, + 0.9989190101623535, + 0.9989129304885864 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 26, + "final_proportion": 0.9629629629629629, + "final_counts": { + "POSITIVE": 26, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9629629629629629, + "NEGATIVE": 0.037037037037037035 + } + } }, { "season_code": "202301", @@ -35875,7 +77068,7 @@ "11:35", "12:50", "WTS B74 - Watson Center 60 Sachem Street B74", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -35883,7 +77076,7 @@ "11:35", "12:50", "WTS B74 - Watson Center 60 Sachem Street B74", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -35897,15 +77090,124 @@ "classnotes": "", "final_exam": "Saturday, May 6, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83586\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83586/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9896864295005798, + 0.9966940879821777, + 0.9984834790229797, + 0.9984360337257385, + 0.9978798627853394, + 0.9989192485809326, + 0.9984081387519836, + 0.9988920092582703 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988445043563843, + 0.9989105463027954, + 0.998918890953064, + 0.9988682270050049, + 0.9989307522773743, + 0.998847484588623 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988981485366821, + 0.9988477230072021, + 0.9989259839057922, + 0.9988642930984497, + 0.998723566532135, + 0.9989380240440369, + 0.9989032745361328, + 0.9956586360931396 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 22, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 22 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", "requirements": "Prerequisites: CHEM 161, 165, or 167 (or CHEM 112, 114, or 118); MCDB 120, or BIOL 101 and 102; or equivalents.", - "description": "Study of the interactions between tissues and biomaterials, with an emphasis on the importance of molecular- and cellular-level events in dictating the performance and longevity of clinically relevant devices. Attention to specific areas such as biomaterials for tissue engineering and the importance of stem\/progenitor cells, as well as biomaterial-mediated gene and drug delivery.", + "description": "Study of the interactions between tissues and biomaterials, with an emphasis on the importance of molecular- and cellular-level events in dictating the performance and longevity of clinically relevant devices. Attention to specific areas such as biomaterials for tissue engineering and the importance of stem/progenitor cells, as well as biomaterial-mediated gene and drug delivery.", "short_title": "Biomaterial-Tissue Interactions", "title": "Biomaterial-Tissue Interactions", "school": "YC", @@ -35939,7 +77241,7 @@ "9:00", "10:15", "GR109 ROSENFELD - 109 Grove Street ROSENFELD", - "https:\/\/map.yale.edu\/?id=1910#!m\/560109" + "https://map.yale.edu/?id=1910#!m/560109" ] ], "Thursday": [ @@ -35947,7 +77249,7 @@ "9:00", "10:15", "GR109 ROSENFELD - 109 Grove Street ROSENFELD", - "https:\/\/map.yale.edu\/?id=1910#!m\/560109" + "https://map.yale.edu/?id=1910#!m/560109" ] ] }, @@ -35961,10 +77263,173 @@ "classnotes": "", "final_exam": "Tuesday, May 9, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83398\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83398/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988099336624146, + 0.9987118244171143, + 0.9986279010772705, + 0.9936205744743347, + 0.9978612065315247, + 0.9986523985862732, + 0.9985289573669434, + 0.9988441467285156, + 0.9808270931243896, + 0.9985437393188477, + 0.9967505931854248, + 0.9986782670021057, + 0.9987407326698303, + 0.9986328482627869 + ], + "sentiment_counts": { + "POSITIVE": 14, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9994599223136902, + 0.9988892674446106, + 0.9988734126091003, + 0.9994027614593506, + 0.9968274235725403, + 0.997668445110321, + 0.9988721013069153, + 0.9988349080085754, + 0.998449444770813, + 0.9980111122131348, + 0.9911053776741028, + 0.9985089898109436, + 0.9983434677124023, + 0.9988825917243958, + 0.9987339377403259, + 0.9984373450279236, + 0.9994755387306213 + ], + "sentiment_counts": { + "NEGATIVE": 4, + "POSITIVE": 13 + }, + "sentiment_distribution": { + "NEGATIVE": 0.23529411764705882, + "POSITIVE": 0.7647058823529411 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7647058823529411 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9816270470619202, + 0.9989243149757385, + 0.9994673132896423, + 0.9975169897079468, + 0.9984714388847351, + 0.997117280960083, + 0.998829185962677, + 0.9989288449287415, + 0.9988935589790344, + 0.9995110034942627, + 0.9972569346427917, + 0.9987109899520874, + 0.9988420605659485, + 0.9988729357719421, + 0.9989044666290283, + 0.9988370537757874, + 0.9994608759880066 + ], + "sentiment_counts": { + "NEGATIVE": 4, + "POSITIVE": 13 + }, + "sentiment_distribution": { + "NEGATIVE": 0.23529411764705882, + "POSITIVE": 0.7647058823529411 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7647058823529411 + ] + }, + "final_label": "POSITIVE", + "final_count": 40, + "final_proportion": 0.8333333333333334, + "final_counts": { + "POSITIVE": 40, + "NEGATIVE": 8 + }, + "final_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + } + } }, { "season_code": "202301", @@ -36002,7 +77467,7 @@ "13:00", "14:15", "WTS A48 - Watson Center 60 Sachem Street A48", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -36010,7 +77475,7 @@ "13:00", "14:15", "WTS A48 - Watson Center 60 Sachem Street A48", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -36026,10 +77491,119 @@ "classnotes": "", "final_exam": "Sunday, May 7, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83400\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83400/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9974295496940613, + 0.9976099729537964, + 0.9984604120254517, + 0.9984546899795532, + 0.9988836646080017, + 0.9904500842094421, + 0.9988289475440979, + 0.9968218803405762 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9948950409889221, + 0.9988282322883606, + 0.9984575510025024, + 0.9994239807128906, + 0.9982303977012634, + 0.9989176988601685, + 0.9988076686859131 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.7142857142857143, + "NEGATIVE": 0.2857142857142857 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7142857142857143 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9966024160385132, + 0.9988927245140076, + 0.999488115310669, + 0.9987666606903076, + 0.99893718957901, + 0.9987449645996094 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 0.8571428571428571, + "final_counts": { + "POSITIVE": 18, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + } + } }, { "season_code": "202301", @@ -36087,7 +77661,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -36125,7 +77727,7 @@ "13:00", "14:15", "HLH17 03 - 17 Hillhouse Avenue 03", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Thursday": [ @@ -36133,7 +77735,7 @@ "13:00", "14:15", "HLH17 03 - 17 Hillhouse Avenue 03", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -36147,10 +77749,143 @@ "classnotes": "", "final_exam": "Sunday, May 7, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83401\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83401/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986501336097717, + 0.9989213943481445, + 0.9988137483596802, + 0.9968516230583191, + 0.9988898634910583, + 0.9987149238586426, + 0.9987413287162781, + 0.99261075258255, + 0.9987421631813049, + 0.9988389611244202, + 0.9953122138977051 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989116191864014, + 0.9941645264625549, + 0.998934805393219, + 0.9988962411880493, + 0.9988152980804443, + 0.9988129138946533, + 0.9974353909492493, + 0.9989107847213745, + 0.9988219141960144, + 0.9988998174667358, + 0.9989352822303772 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989272952079773, + 0.9988431930541992, + 0.9989087581634521, + 0.9988929629325867, + 0.9989297986030579, + 0.9989004135131836, + 0.9979156851768494, + 0.9987726807594299, + 0.998414158821106, + 0.998832643032074, + 0.9989218711853027, + 0.998829185962677 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 34, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 34 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -36188,7 +77923,7 @@ "15:30", "17:20", "WTS A72 - Watson Center 60 Sachem Street A72", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -36204,10 +77939,38 @@ "classnotes": "", "final_exam": "Thursday, May 4, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83403\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83403/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -36245,7 +78008,7 @@ "13:00", "14:15", "HLH17 111 - 17 Hillhouse Avenue 111", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Wednesday": [ @@ -36253,7 +78016,7 @@ "13:00", "14:15", "HLH17 111 - 17 Hillhouse Avenue 111", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -36267,10 +78030,105 @@ "classnotes": "", "final_exam": "Tuesday, May 9, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83406\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83406/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9980886578559875, + 0.9988924860954285, + 0.9988449811935425, + 0.9916457533836365, + 0.9887624382972717 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989203214645386, + 0.9987576007843018, + 0.9988517761230469, + 0.9987911581993103 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998893678188324, + 0.998908281326294, + 0.9985602498054504, + 0.9988583326339722, + 0.9989097118377686 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 0.9285714285714286, + "final_counts": { + "POSITIVE": 13, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9285714285714286, + "NEGATIVE": 0.07142857142857142 + } + } }, { "season_code": "202301", @@ -36309,7 +78167,7 @@ "16:00", "17:15", "HLH17 05 - 17 Hillhouse Avenue 05", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Wednesday": [ @@ -36317,7 +78175,7 @@ "16:00", "17:15", "HLH17 05 - 17 Hillhouse Avenue 05", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -36331,10 +78189,87 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84547\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84547/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989162683486938, + 0.9983019828796387 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989301562309265, + 0.9987325072288513 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987786412239075, + 0.9987937211990356 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 6 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -36387,7 +78322,7 @@ "14:30", "15:45", "BASS 405 - Bass Center 405", - "https:\/\/map.yale.edu\/?id=1910#!m\/560102" + "https://map.yale.edu/?id=1910#!m/560102" ] ], "Thursday": [ @@ -36395,7 +78330,7 @@ "14:30", "15:45", "BASS 405 - Bass Center 405", - "https:\/\/map.yale.edu\/?id=1910#!m\/560102" + "https://map.yale.edu/?id=1910#!m/560102" ] ] }, @@ -36409,10 +78344,139 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84491\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84491/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988125562667847, + 0.9983453750610352, + 0.9986456036567688, + 0.9986985921859741, + 0.9977982044219971, + 0.9903422594070435, + 0.9986554384231567, + 0.9956871867179871, + 0.9983854293823242, + 0.9988418221473694, + 0.9961655139923096 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9090909090909091 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988546371459961, + 0.9924356341362, + 0.9994757771492004, + 0.998830258846283, + 0.9947176575660706, + 0.9983822107315063, + 0.9951450228691101, + 0.9986005425453186, + 0.9987438321113586, + 0.9995054006576538, + 0.9988664388656616 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.7272727272727273, + "NEGATIVE": 0.2727272727272727 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7272727272727273 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984412789344788, + 0.966108500957489, + 0.9989063739776611, + 0.9985975623130798, + 0.9945812821388245, + 0.9985987544059753, + 0.9927737712860107, + 0.9988572597503662, + 0.9988515377044678 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "final_label": "POSITIVE", + "final_count": 26, + "final_proportion": 0.8387096774193549, + "final_counts": { + "POSITIVE": 26, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.8387096774193549, + "NEGATIVE": 0.16129032258064516 + } + } }, { "season_code": "202301", @@ -36450,7 +78514,7 @@ "16:00", "17:15", "HLH17 113 - 17 Hillhouse Avenue 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Wednesday": [ @@ -36458,7 +78522,7 @@ "16:00", "17:15", "HLH17 113 - 17 Hillhouse Avenue 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -36474,10 +78538,93 @@ "classnotes": "", "final_exam": "Thursday, May 4, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83408\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83408/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989023208618164, + 0.9985733032226562, + 0.9986081719398499, + 0.9970933198928833 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988765120506287, + 0.9596354365348816 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981922507286072, + 0.9981922507286072, + 0.997117280960083 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 9 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -36515,7 +78662,7 @@ "16:00", "17:15", "HLH17 115 - 17 Hillhouse Avenue 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Wednesday": [ @@ -36523,7 +78670,7 @@ "16:00", "17:15", "HLH17 115 - 17 Hillhouse Avenue 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -36537,15 +78684,43 @@ "classnotes": "", "final_exam": "Thursday, May 4, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83411\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83411/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "Permission of both the instructor and the director of undergraduate studies is required.", - "description": "Faculty-supervised individual or small-group projects with emphasis on research (laboratory or theory), engineering design, or tutorial study. Students are expected to consult the director of undergraduate studies and appropriate faculty members about ideas and suggestions for suitable topics. This course, offered pass\/fail, can be taken at any time during a student's career, and may be taken more than once. For the Senior Project, see BENG 473, 474.", + "description": "Faculty-supervised individual or small-group projects with emphasis on research (laboratory or theory), engineering design, or tutorial study. Students are expected to consult the director of undergraduate studies and appropriate faculty members about ideas and suggestions for suitable topics. This course, offered pass/fail, can be taken at any time during a student's career, and may be taken more than once. For the Senior Project, see BENG 473, 474.", "short_title": "Special Projects", "title": "Special Projects", "school": "YC", @@ -36580,10 +78755,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83417\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83417/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -36623,10 +78826,115 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83421\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83421/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9946804642677307, + 0.9988769888877869, + 0.998814582824707, + 0.9984051585197449, + 0.9988778233528137, + 0.9986444115638733, + 0.998771607875824 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9979583024978638, + 0.9988837838172913, + 0.9969831109046936, + 0.9983671307563782, + 0.9989131689071655 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982208609580994, + 0.9983185529708862, + 0.9988582134246826, + 0.9893038272857666, + 0.993492066860199, + 0.9982931017875671, + 0.9955139756202698 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 0.8947368421052632, + "final_counts": { + "POSITIVE": 17, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8947368421052632, + "NEGATIVE": 0.10526315789473684 + } + } }, { "season_code": "202301", @@ -36671,7 +78979,7 @@ "15:30", "17:20", "WLH 116 - William L. Harkness Hall 116", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -36687,15 +78995,150 @@ "classnotes": "", "final_exam": "Thursday, May 4, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83424\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83424/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984152317047119, + 0.9988691210746765, + 0.9983434677124023, + 0.9987943172454834, + 0.9988088607788086, + 0.9988570213317871, + 0.9988594055175781, + 0.9988573789596558, + 0.9988619089126587, + 0.9986060261726379, + 0.99543297290802 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.8711649179458618, + 0.9984152317047119, + 0.9917279481887817, + 0.9985619187355042, + 0.9985988736152649, + 0.9988551139831543, + 0.99378901720047, + 0.9988489151000977, + 0.9856882095336914, + 0.9988940358161926, + 0.998847246170044, + 0.9988923668861389, + 0.998746395111084 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 11 + }, + "sentiment_distribution": { + "NEGATIVE": 0.15384615384615385, + "POSITIVE": 0.8461538461538461 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8461538461538461 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984152317047119, + 0.99775630235672, + 0.9987223744392395, + 0.9987455606460571, + 0.9971369504928589, + 0.998694121837616, + 0.9964320659637451, + 0.9989017248153687, + 0.9987584352493286, + 0.9982553124427795 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 32, + "final_proportion": 0.9411764705882353, + "final_counts": { + "POSITIVE": 32, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9411764705882353, + "NEGATIVE": 0.058823529411764705 + } + } }, { "season_code": "202301", "requirements": "The first of four modules in a yearlong foundational biology sequence; meets for the first half of the term.", - "description": "The study of life at the molecular level. Topics include the three-dimensional structures and function of large biological molecules, the human genome, and the design of antiviral drugs to treat HIV\/AIDS.", + "description": "The study of life at the molecular level. Topics include the three-dimensional structures and function of large biological molecules, the human genome, and the design of antiviral drugs to treat HIV/AIDS.", "short_title": "Biochemistry and Biophysics", "title": "Biochemistry and Biophysics", "school": "YC", @@ -36730,7 +79173,7 @@ "11:35", "12:50", "YSB MARSH - Yale Science Building MARSH", - "https:\/\/map.yale.edu\/?id=1910#!m\/563700" + "https://map.yale.edu/?id=1910#!m/563700" ] ], "Wednesday": [ @@ -36738,7 +79181,7 @@ "11:35", "12:50", "YSB MARSH - Yale Science Building MARSH", - "https:\/\/map.yale.edu\/?id=1910#!m\/563700" + "https://map.yale.edu/?id=1910#!m/563700" ] ] }, @@ -36752,15 +79195,240 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83427\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83427/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.8296014666557312, + 0.996268093585968, + 0.998855471611023, + 0.9982991814613342, + 0.9988254904747009, + 0.9986470341682434, + 0.9987917542457581, + 0.9987518787384033, + 0.9923974871635437, + 0.9988607168197632, + 0.9986911416053772, + 0.9968826770782471, + 0.9975095987319946, + 0.9958599209785461, + 0.9988759160041809, + 0.9989299178123474, + 0.9987194538116455, + 0.9989038705825806, + 0.9962051510810852, + 0.9988704323768616, + 0.9970743656158447, + 0.9985895752906799, + 0.998701810836792, + 0.9988517761230469, + 0.998885452747345, + 0.9987818598747253 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 24 + }, + "sentiment_distribution": { + "NEGATIVE": 0.07692307692307693, + "POSITIVE": 0.9230769230769231 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9230769230769231 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.99641352891922, + 0.9989033937454224, + 0.996581494808197, + 0.9988347887992859, + 0.9977681636810303, + 0.9968922734260559, + 0.9828174114227295, + 0.9986847043037415, + 0.9983189702033997, + 0.9987494945526123, + 0.9994681477546692, + 0.9985119700431824, + 0.9876817464828491, + 0.9940046668052673, + 0.9959802627563477, + 0.9981018900871277, + 0.9994761347770691, + 0.9995067119598389, + 0.9988786578178406, + 0.9968083500862122, + 0.9988970756530762, + 0.9982162117958069, + 0.9987437129020691, + 0.9994927644729614, + 0.9994913339614868, + 0.9988502264022827, + 0.9994679093360901, + 0.9995094537734985, + 0.998703122138977 + ], + "sentiment_counts": { + "POSITIVE": 16, + "NEGATIVE": 13 + }, + "sentiment_distribution": { + "POSITIVE": 0.5517241379310345, + "NEGATIVE": 0.4482758620689655 + }, + "sentiment_overall": [ + "POSITIVE", + 0.5517241379310345 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9946817755699158, + 0.9988592863082886, + 0.997117280960083, + 0.9987319111824036, + 0.9983640313148499, + 0.9975525736808777, + 0.9989055395126343, + 0.9971814155578613, + 0.9968637228012085, + 0.9994899034500122, + 0.9983490705490112, + 0.985612690448761, + 0.998895525932312, + 0.998619556427002, + 0.9944234490394592, + 0.9938647150993347, + 0.9995113611221313, + 0.9952375888824463, + 0.9986756443977356, + 0.9995132684707642, + 0.9989120960235596, + 0.9995023012161255, + 0.9875494241714478, + 0.9962894916534424 + ], + "sentiment_counts": { + "POSITIVE": 16, + "NEGATIVE": 8 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 56, + "final_proportion": 0.7088607594936709, + "final_counts": { + "NEGATIVE": 23, + "POSITIVE": 56 + }, + "final_distribution": { + "NEGATIVE": 0.2911392405063291, + "POSITIVE": 0.7088607594936709 + } + } }, { "season_code": "202301", "requirements": "The first of four modules in a yearlong foundational biology sequence; meets for the first half of the term.", - "description": "The study of life at the molecular level. Topics include the three-dimensional structures and function of large biological molecules, the human genome, and the design of antiviral drugs to treat HIV\/AIDS.", + "description": "The study of life at the molecular level. Topics include the three-dimensional structures and function of large biological molecules, the human genome, and the design of antiviral drugs to treat HIV/AIDS.", "short_title": "Biochemistry and Biophysics", "title": "Biochemistry and Biophysics", "school": "YC", @@ -36786,7 +79454,7 @@ "15:30", "16:20", "WTS B39 - Watson Center 60 Sachem Street B39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -36803,12 +79471,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "The first of four modules in a yearlong foundational biology sequence; meets for the first half of the term.", - "description": "The study of life at the molecular level. Topics include the three-dimensional structures and function of large biological molecules, the human genome, and the design of antiviral drugs to treat HIV\/AIDS.", + "description": "The study of life at the molecular level. Topics include the three-dimensional structures and function of large biological molecules, the human genome, and the design of antiviral drugs to treat HIV/AIDS.", "short_title": "Biochemistry and Biophysics", "title": "Biochemistry and Biophysics", "school": "YC", @@ -36834,7 +79530,7 @@ "19:00", "19:50", "LORIA 360 - Loria Center 360", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -36851,12 +79547,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "The first of four modules in a yearlong foundational biology sequence; meets for the first half of the term.", - "description": "The study of life at the molecular level. Topics include the three-dimensional structures and function of large biological molecules, the human genome, and the design of antiviral drugs to treat HIV\/AIDS.", + "description": "The study of life at the molecular level. Topics include the three-dimensional structures and function of large biological molecules, the human genome, and the design of antiviral drugs to treat HIV/AIDS.", "short_title": "Biochemistry and Biophysics", "title": "Biochemistry and Biophysics", "school": "YC", @@ -36882,7 +79606,7 @@ "19:00", "19:50", "WTS B39 - Watson Center 60 Sachem Street B39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -36899,12 +79623,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "The first of four modules in a yearlong foundational biology sequence; meets for the first half of the term.", - "description": "The study of life at the molecular level. Topics include the three-dimensional structures and function of large biological molecules, the human genome, and the design of antiviral drugs to treat HIV\/AIDS.", + "description": "The study of life at the molecular level. Topics include the three-dimensional structures and function of large biological molecules, the human genome, and the design of antiviral drugs to treat HIV/AIDS.", "short_title": "Biochemistry and Biophysics", "title": "Biochemistry and Biophysics", "school": "YC", @@ -36930,7 +79682,7 @@ "9:25", "10:15", "LORIA B50 - Loria Center B50", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -36947,12 +79699,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "The first of four modules in a yearlong foundational biology sequence; meets for the first half of the term.", - "description": "The study of life at the molecular level. Topics include the three-dimensional structures and function of large biological molecules, the human genome, and the design of antiviral drugs to treat HIV\/AIDS.", + "description": "The study of life at the molecular level. Topics include the three-dimensional structures and function of large biological molecules, the human genome, and the design of antiviral drugs to treat HIV/AIDS.", "short_title": "Biochemistry and Biophysics", "title": "Biochemistry and Biophysics", "school": "YC", @@ -36978,7 +79758,7 @@ "10:30", "11:20", "LC 104 - Linsly-Chittenden Hall 104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -36995,12 +79775,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "The first of four modules in a yearlong foundational biology sequence; meets for the first half of the term.", - "description": "The study of life at the molecular level. Topics include the three-dimensional structures and function of large biological molecules, the human genome, and the design of antiviral drugs to treat HIV\/AIDS.", + "description": "The study of life at the molecular level. Topics include the three-dimensional structures and function of large biological molecules, the human genome, and the design of antiviral drugs to treat HIV/AIDS.", "short_title": "Biochemistry and Biophysics", "title": "Biochemistry and Biophysics", "school": "YC", @@ -37026,7 +79834,7 @@ "10:30", "11:20", "WTS B30 - Watson Center 60 Sachem Street B30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -37043,12 +79851,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "The first of four modules in a yearlong foundational biology sequence; meets for the first half of the term.", - "description": "The study of life at the molecular level. Topics include the three-dimensional structures and function of large biological molecules, the human genome, and the design of antiviral drugs to treat HIV\/AIDS.", + "description": "The study of life at the molecular level. Topics include the three-dimensional structures and function of large biological molecules, the human genome, and the design of antiviral drugs to treat HIV/AIDS.", "short_title": "Biochemistry and Biophysics", "title": "Biochemistry and Biophysics", "school": "YC", @@ -37074,7 +79910,7 @@ "10:30", "11:20", "LC 210 - Linsly-Chittenden Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -37091,12 +79927,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "The first of four modules in a yearlong foundational biology sequence; meets for the first half of the term.", - "description": "The study of life at the molecular level. Topics include the three-dimensional structures and function of large biological molecules, the human genome, and the design of antiviral drugs to treat HIV\/AIDS.", + "description": "The study of life at the molecular level. Topics include the three-dimensional structures and function of large biological molecules, the human genome, and the design of antiviral drugs to treat HIV/AIDS.", "short_title": "Biochemistry and Biophysics", "title": "Biochemistry and Biophysics", "school": "YC", @@ -37122,7 +79986,7 @@ "19:00", "19:50", "WTS B31 - Watson Center 60 Sachem Street B31", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -37139,12 +80003,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "The first of four modules in a yearlong foundational biology sequence; meets for the first half of the term.", - "description": "The study of life at the molecular level. Topics include the three-dimensional structures and function of large biological molecules, the human genome, and the design of antiviral drugs to treat HIV\/AIDS.", + "description": "The study of life at the molecular level. Topics include the three-dimensional structures and function of large biological molecules, the human genome, and the design of antiviral drugs to treat HIV/AIDS.", "short_title": "Biochemistry and Biophysics", "title": "Biochemistry and Biophysics", "school": "YC", @@ -37170,7 +80062,7 @@ "11:35", "12:25", "WTS B60 - Watson Center 60 Sachem Street B60", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -37187,12 +80079,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "The first of four modules in a yearlong foundational biology sequence; meets for the first half of the term.", - "description": "The study of life at the molecular level. Topics include the three-dimensional structures and function of large biological molecules, the human genome, and the design of antiviral drugs to treat HIV\/AIDS.", + "description": "The study of life at the molecular level. Topics include the three-dimensional structures and function of large biological molecules, the human genome, and the design of antiviral drugs to treat HIV/AIDS.", "short_title": "Biochemistry and Biophysics", "title": "Biochemistry and Biophysics", "school": "YC", @@ -37218,7 +80138,7 @@ "11:35", "12:25", "CO493 106 - 493 College Street 106", - "https:\/\/map.yale.edu\/?id=1910#!m\/560001" + "https://map.yale.edu/?id=1910#!m/560001" ] ] }, @@ -37235,12 +80155,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "The first of four modules in a yearlong foundational biology sequence; meets for the first half of the term.", - "description": "The study of life at the molecular level. Topics include the three-dimensional structures and function of large biological molecules, the human genome, and the design of antiviral drugs to treat HIV\/AIDS.", + "description": "The study of life at the molecular level. Topics include the three-dimensional structures and function of large biological molecules, the human genome, and the design of antiviral drugs to treat HIV/AIDS.", "short_title": "Biochemistry and Biophysics", "title": "Biochemistry and Biophysics", "school": "YC", @@ -37266,7 +80214,7 @@ "11:35", "12:25", "WTS A46 - Watson Center 60 Sachem Street A46", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -37283,12 +80231,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "The first of four modules in a yearlong foundational biology sequence; meets for the first half of the term.", - "description": "The study of life at the molecular level. Topics include the three-dimensional structures and function of large biological molecules, the human genome, and the design of antiviral drugs to treat HIV\/AIDS.", + "description": "The study of life at the molecular level. Topics include the three-dimensional structures and function of large biological molecules, the human genome, and the design of antiviral drugs to treat HIV/AIDS.", "short_title": "Biochemistry and Biophysics", "title": "Biochemistry and Biophysics", "school": "YC", @@ -37314,7 +80290,7 @@ "11:35", "12:25", "CO493 208 - 493 College Street 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560001" + "https://map.yale.edu/?id=1910#!m/560001" ] ] }, @@ -37331,12 +80307,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "The second of four modules in a yearlong foundational biology sequence; meets for the second half of the term. Prerequisite: BIOL 101.", - "description": "The study of cell biology and membrane physiology. Topics include organization and functional properties of biological membranes, membrane physiology and signaling, rough endoplasmic reticulum and synthesis of membrane\/secretory membrane proteins, endocytosis, the cytoskeleton, and cell division.", + "description": "The study of cell biology and membrane physiology. Topics include organization and functional properties of biological membranes, membrane physiology and signaling, rough endoplasmic reticulum and synthesis of membrane/secretory membrane proteins, endocytosis, the cytoskeleton, and cell division.", "short_title": "Principles of Cell Biology", "title": "Principles of Cell Biology", "school": "YC", @@ -37371,7 +80375,7 @@ "11:35", "12:50", "YSB MARSH - Yale Science Building MARSH", - "https:\/\/map.yale.edu\/?id=1910#!m\/563700" + "https://map.yale.edu/?id=1910#!m/563700" ] ], "Wednesday": [ @@ -37379,7 +80383,7 @@ "11:35", "12:50", "YSB MARSH - Yale Science Building MARSH", - "https:\/\/map.yale.edu\/?id=1910#!m\/563700" + "https://map.yale.edu/?id=1910#!m/563700" ] ] }, @@ -37393,15 +80397,566 @@ "classnotes": "", "final_exam": "Saturday, May 6, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83430\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83430/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994438290596008, + 0.9988020658493042, + 0.9987449645996094, + 0.9976308345794678, + 0.998505711555481, + 0.9985337257385254, + 0.9872971773147583, + 0.9932818412780762, + 0.9982196688652039, + 0.9986831545829773, + 0.998362123966217, + 0.998776376247406, + 0.9989089965820312, + 0.998113751411438, + 0.87318354845047, + 0.998736560344696, + 0.9986494183540344, + 0.9987691044807434, + 0.9983465671539307, + 0.9987978935241699, + 0.9984966516494751, + 0.9989122152328491, + 0.9987799525260925, + 0.9939925074577332, + 0.9981665015220642, + 0.9986509680747986, + 0.9984997510910034, + 0.9984861016273499, + 0.9987726807594299, + 0.9988815188407898, + 0.9987668991088867, + 0.9982277750968933, + 0.9986945986747742, + 0.9988296627998352, + 0.9988768696784973, + 0.9987457990646362, + 0.9983865022659302, + 0.998681366443634, + 0.9994144439697266, + 0.9987859129905701, + 0.9987543821334839, + 0.9985489249229431, + 0.9980280995368958, + 0.9942265748977661, + 0.9979909658432007, + 0.9986880421638489, + 0.9987229704856873, + 0.9987903237342834, + 0.9952186942100525, + 0.9987786412239075, + 0.9986996650695801, + 0.9985151886940002, + 0.9987315535545349, + 0.9988424181938171, + 0.9988605976104736, + 0.9712386727333069, + 0.9986974596977234, + 0.9988481998443604, + 0.9980485439300537, + 0.9986311793327332, + 0.9985925555229187, + 0.9987095594406128, + 0.9988307356834412, + 0.9859601259231567, + 0.9987529516220093, + 0.9988561868667603, + 0.9988476037979126, + 0.9982503056526184, + 0.9954289197921753, + 0.9935547709465027, + 0.9985448122024536, + 0.9994890689849854, + 0.9987345337867737, + 0.9988058805465698, + 0.9988584518432617 + ], + "sentiment_counts": { + "NEGATIVE": 9, + "POSITIVE": 66 + }, + "sentiment_distribution": { + "NEGATIVE": 0.12, + "POSITIVE": 0.88 + }, + "sentiment_overall": [ + "POSITIVE", + 0.88 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9995099306106567, + 0.998777449131012, + 0.9980911612510681, + 0.9979161620140076, + 0.9994596838951111, + 0.998600423336029, + 0.9985635876655579, + 0.9957233667373657, + 0.9994660019874573, + 0.9974061846733093, + 0.9995063543319702, + 0.9988390803337097, + 0.9960364699363708, + 0.9994238615036011, + 0.9987695813179016, + 0.9988312125205994, + 0.9994814991950989, + 0.990786075592041, + 0.9988834261894226, + 0.9994571805000305, + 0.9994934797286987, + 0.998874843120575, + 0.9995087385177612, + 0.9994693398475647, + 0.9965105652809143, + 0.9989036321640015, + 0.9975636005401611, + 0.9955624341964722, + 0.9928916692733765, + 0.9990000128746033, + 0.9983677268028259, + 0.9953382015228271, + 0.9973824620246887, + 0.9976844787597656, + 0.9994949102401733, + 0.9977049231529236, + 0.9988331198692322, + 0.9993461966514587, + 0.996191143989563, + 0.998843789100647, + 0.999387264251709, + 0.9994648098945618, + 0.9989295601844788, + 0.998714804649353, + 0.998902440071106, + 0.9994675517082214, + 0.999489426612854, + 0.998516857624054, + 0.9994834661483765, + 0.9955393671989441, + 0.9985281229019165, + 0.9978345036506653, + 0.9989155530929565, + 0.9988573789596558, + 0.9987338185310364, + 0.9988610744476318, + 0.9894746541976929, + 0.9969327449798584, + 0.9988629817962646, + 0.9975935816764832, + 0.9985554814338684, + 0.9753785729408264, + 0.9988366961479187, + 0.9947808384895325, + 0.9988390803337097, + 0.9968736171722412, + 0.9981768131256104, + 0.9995057582855225, + 0.9982458353042603, + 0.9156244397163391, + 0.9988487958908081, + 0.9851729869842529, + 0.9988663196563721, + 0.9989226460456848, + 0.9836259484291077, + 0.9743966460227966, + 0.9951596856117249, + 0.9980227947235107, + 0.9859601259231567, + 0.998863697052002, + 0.9988364577293396, + 0.9988027811050415, + 0.9933856129646301, + 0.9994805455207825, + 0.9984813332557678, + 0.9995086193084717, + 0.9923951625823975, + 0.9971433281898499, + 0.9842711091041565 + ], + "sentiment_counts": { + "NEGATIVE": 41, + "POSITIVE": 48 + }, + "sentiment_distribution": { + "NEGATIVE": 0.4606741573033708, + "POSITIVE": 0.5393258426966292 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9995120763778687, + 0.9987021684646606, + 0.998927652835846, + 0.9989148378372192, + 0.998346209526062, + 0.998201847076416, + 0.9994950294494629, + 0.9987898468971252, + 0.998218834400177, + 0.9994620680809021, + 0.9986478686332703, + 0.9965246319770813, + 0.9960232973098755, + 0.998612642288208, + 0.998898983001709, + 0.9977084398269653, + 0.9960845708847046, + 0.9889889359474182, + 0.9995043277740479, + 0.9988771080970764, + 0.998849630355835, + 0.999415397644043, + 0.9994901418685913, + 0.9970014691352844, + 0.9987565279006958, + 0.9986416697502136, + 0.9984520673751831, + 0.9977044463157654, + 0.9926744103431702, + 0.9891071915626526, + 0.9994957447052002, + 0.9988025426864624, + 0.9995008707046509, + 0.9574313759803772, + 0.9988137483596802, + 0.9982070922851562, + 0.9908500909805298, + 0.9746529459953308, + 0.9989319443702698, + 0.9989176988601685, + 0.9985402822494507, + 0.9988704323768616, + 0.9991167187690735, + 0.9989207983016968, + 0.9978731870651245, + 0.9771193861961365, + 0.9819650053977966, + 0.9989163875579834, + 0.998894989490509, + 0.9989141225814819, + 0.9989290833473206, + 0.9912983775138855, + 0.9989019632339478, + 0.9967580437660217, + 0.99951171875, + 0.9910091161727905, + 0.9982757568359375, + 0.9978844523429871, + 0.9895078539848328, + 0.9981753826141357, + 0.9989292025566101, + 0.9994638562202454, + 0.9983444213867188, + 0.9988794922828674, + 0.9984686970710754, + 0.9859601259231567, + 0.9971750974655151, + 0.9988731741905212, + 0.9987900853157043, + 0.9945996999740601, + 0.9982101917266846, + 0.9959800243377686, + 0.9988645315170288, + 0.9988345503807068, + 0.9994995594024658, + 0.99950110912323, + 0.9995119571685791, + 0.9995057582855225 + ], + "sentiment_counts": { + "NEGATIVE": 36, + "POSITIVE": 42 + }, + "sentiment_distribution": { + "NEGATIVE": 0.46153846153846156, + "POSITIVE": 0.5384615384615384 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "final_label": "POSITIVE", + "final_count": 156, + "final_proportion": 0.6446280991735537, + "final_counts": { + "NEGATIVE": 86, + "POSITIVE": 156 + }, + "final_distribution": { + "NEGATIVE": 0.35537190082644626, + "POSITIVE": 0.6446280991735537 + } + } }, { "season_code": "202301", "requirements": "The second of four modules in a yearlong foundational biology sequence; meets for the second half of the term. Prerequisite: BIOL 101.", - "description": "The study of cell biology and membrane physiology. Topics include organization and functional properties of biological membranes, membrane physiology and signaling, rough endoplasmic reticulum and synthesis of membrane\/secretory membrane proteins, endocytosis, the cytoskeleton, and cell division.", + "description": "The study of cell biology and membrane physiology. Topics include organization and functional properties of biological membranes, membrane physiology and signaling, rough endoplasmic reticulum and synthesis of membrane/secretory membrane proteins, endocytosis, the cytoskeleton, and cell division.", "short_title": "Principles of Cell Biology", "title": "Principles of Cell Biology", "school": "YC", @@ -37427,7 +80982,7 @@ "15:30", "16:20", "WTS B39 - Watson Center 60 Sachem Street B39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -37444,12 +80999,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "The second of four modules in a yearlong foundational biology sequence; meets for the second half of the term. Prerequisite: BIOL 101.", - "description": "The study of cell biology and membrane physiology. Topics include organization and functional properties of biological membranes, membrane physiology and signaling, rough endoplasmic reticulum and synthesis of membrane\/secretory membrane proteins, endocytosis, the cytoskeleton, and cell division.", + "description": "The study of cell biology and membrane physiology. Topics include organization and functional properties of biological membranes, membrane physiology and signaling, rough endoplasmic reticulum and synthesis of membrane/secretory membrane proteins, endocytosis, the cytoskeleton, and cell division.", "short_title": "Principles of Cell Biology", "title": "Principles of Cell Biology", "school": "YC", @@ -37475,7 +81058,7 @@ "19:00", "19:50", "LORIA 360 - Loria Center 360", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -37492,12 +81075,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "The second of four modules in a yearlong foundational biology sequence; meets for the second half of the term. Prerequisite: BIOL 101.", - "description": "The study of cell biology and membrane physiology. Topics include organization and functional properties of biological membranes, membrane physiology and signaling, rough endoplasmic reticulum and synthesis of membrane\/secretory membrane proteins, endocytosis, the cytoskeleton, and cell division.", + "description": "The study of cell biology and membrane physiology. Topics include organization and functional properties of biological membranes, membrane physiology and signaling, rough endoplasmic reticulum and synthesis of membrane/secretory membrane proteins, endocytosis, the cytoskeleton, and cell division.", "short_title": "Principles of Cell Biology", "title": "Principles of Cell Biology", "school": "YC", @@ -37523,7 +81134,7 @@ "19:00", "19:50", "WTS B39 - Watson Center 60 Sachem Street B39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -37540,12 +81151,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "The second of four modules in a yearlong foundational biology sequence; meets for the second half of the term. Prerequisite: BIOL 101.", - "description": "The study of cell biology and membrane physiology. Topics include organization and functional properties of biological membranes, membrane physiology and signaling, rough endoplasmic reticulum and synthesis of membrane\/secretory membrane proteins, endocytosis, the cytoskeleton, and cell division.", + "description": "The study of cell biology and membrane physiology. Topics include organization and functional properties of biological membranes, membrane physiology and signaling, rough endoplasmic reticulum and synthesis of membrane/secretory membrane proteins, endocytosis, the cytoskeleton, and cell division.", "short_title": "Principles of Cell Biology", "title": "Principles of Cell Biology", "school": "YC", @@ -37571,7 +81210,7 @@ "9:25", "10:15", "LORIA B50 - Loria Center B50", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -37588,12 +81227,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "The second of four modules in a yearlong foundational biology sequence; meets for the second half of the term. Prerequisite: BIOL 101.", - "description": "The study of cell biology and membrane physiology. Topics include organization and functional properties of biological membranes, membrane physiology and signaling, rough endoplasmic reticulum and synthesis of membrane\/secretory membrane proteins, endocytosis, the cytoskeleton, and cell division.", + "description": "The study of cell biology and membrane physiology. Topics include organization and functional properties of biological membranes, membrane physiology and signaling, rough endoplasmic reticulum and synthesis of membrane/secretory membrane proteins, endocytosis, the cytoskeleton, and cell division.", "short_title": "Principles of Cell Biology", "title": "Principles of Cell Biology", "school": "YC", @@ -37619,7 +81286,7 @@ "10:30", "11:20", "LC 104 - Linsly-Chittenden Hall 104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -37636,12 +81303,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "The second of four modules in a yearlong foundational biology sequence; meets for the second half of the term. Prerequisite: BIOL 101.", - "description": "The study of cell biology and membrane physiology. Topics include organization and functional properties of biological membranes, membrane physiology and signaling, rough endoplasmic reticulum and synthesis of membrane\/secretory membrane proteins, endocytosis, the cytoskeleton, and cell division.", + "description": "The study of cell biology and membrane physiology. Topics include organization and functional properties of biological membranes, membrane physiology and signaling, rough endoplasmic reticulum and synthesis of membrane/secretory membrane proteins, endocytosis, the cytoskeleton, and cell division.", "short_title": "Principles of Cell Biology", "title": "Principles of Cell Biology", "school": "YC", @@ -37667,7 +81362,7 @@ "10:30", "11:20", "WTS B30 - Watson Center 60 Sachem Street B30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -37684,12 +81379,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "The second of four modules in a yearlong foundational biology sequence; meets for the second half of the term. Prerequisite: BIOL 101.", - "description": "The study of cell biology and membrane physiology. Topics include organization and functional properties of biological membranes, membrane physiology and signaling, rough endoplasmic reticulum and synthesis of membrane\/secretory membrane proteins, endocytosis, the cytoskeleton, and cell division.", + "description": "The study of cell biology and membrane physiology. Topics include organization and functional properties of biological membranes, membrane physiology and signaling, rough endoplasmic reticulum and synthesis of membrane/secretory membrane proteins, endocytosis, the cytoskeleton, and cell division.", "short_title": "Principles of Cell Biology", "title": "Principles of Cell Biology", "school": "YC", @@ -37715,7 +81438,7 @@ "10:30", "11:20", "LC 210 - Linsly-Chittenden Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -37732,12 +81455,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "The second of four modules in a yearlong foundational biology sequence; meets for the second half of the term. Prerequisite: BIOL 101.", - "description": "The study of cell biology and membrane physiology. Topics include organization and functional properties of biological membranes, membrane physiology and signaling, rough endoplasmic reticulum and synthesis of membrane\/secretory membrane proteins, endocytosis, the cytoskeleton, and cell division.", + "description": "The study of cell biology and membrane physiology. Topics include organization and functional properties of biological membranes, membrane physiology and signaling, rough endoplasmic reticulum and synthesis of membrane/secretory membrane proteins, endocytosis, the cytoskeleton, and cell division.", "short_title": "Principles of Cell Biology", "title": "Principles of Cell Biology", "school": "YC", @@ -37763,7 +81514,7 @@ "19:00", "19:50", "WTS B31 - Watson Center 60 Sachem Street B31", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -37780,12 +81531,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "The second of four modules in a yearlong foundational biology sequence; meets for the second half of the term. Prerequisite: BIOL 101.", - "description": "The study of cell biology and membrane physiology. Topics include organization and functional properties of biological membranes, membrane physiology and signaling, rough endoplasmic reticulum and synthesis of membrane\/secretory membrane proteins, endocytosis, the cytoskeleton, and cell division.", + "description": "The study of cell biology and membrane physiology. Topics include organization and functional properties of biological membranes, membrane physiology and signaling, rough endoplasmic reticulum and synthesis of membrane/secretory membrane proteins, endocytosis, the cytoskeleton, and cell division.", "short_title": "Principles of Cell Biology", "title": "Principles of Cell Biology", "school": "YC", @@ -37811,7 +81590,7 @@ "11:35", "12:25", "WTS B60 - Watson Center 60 Sachem Street B60", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -37828,12 +81607,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "The second of four modules in a yearlong foundational biology sequence; meets for the second half of the term. Prerequisite: BIOL 101.", - "description": "The study of cell biology and membrane physiology. Topics include organization and functional properties of biological membranes, membrane physiology and signaling, rough endoplasmic reticulum and synthesis of membrane\/secretory membrane proteins, endocytosis, the cytoskeleton, and cell division.", + "description": "The study of cell biology and membrane physiology. Topics include organization and functional properties of biological membranes, membrane physiology and signaling, rough endoplasmic reticulum and synthesis of membrane/secretory membrane proteins, endocytosis, the cytoskeleton, and cell division.", "short_title": "Principles of Cell Biology", "title": "Principles of Cell Biology", "school": "YC", @@ -37859,7 +81666,7 @@ "11:35", "12:25", "CO493 106 - 493 College Street 106", - "https:\/\/map.yale.edu\/?id=1910#!m\/560001" + "https://map.yale.edu/?id=1910#!m/560001" ] ] }, @@ -37876,12 +81683,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "The second of four modules in a yearlong foundational biology sequence; meets for the second half of the term. Prerequisite: BIOL 101.", - "description": "The study of cell biology and membrane physiology. Topics include organization and functional properties of biological membranes, membrane physiology and signaling, rough endoplasmic reticulum and synthesis of membrane\/secretory membrane proteins, endocytosis, the cytoskeleton, and cell division.", + "description": "The study of cell biology and membrane physiology. Topics include organization and functional properties of biological membranes, membrane physiology and signaling, rough endoplasmic reticulum and synthesis of membrane/secretory membrane proteins, endocytosis, the cytoskeleton, and cell division.", "short_title": "Principles of Cell Biology", "title": "Principles of Cell Biology", "school": "YC", @@ -37907,7 +81742,7 @@ "11:35", "12:25", "WTS A46 - Watson Center 60 Sachem Street A46", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -37924,12 +81759,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "The second of four modules in a yearlong foundational biology sequence; meets for the second half of the term. Prerequisite: BIOL 101.", - "description": "The study of cell biology and membrane physiology. Topics include organization and functional properties of biological membranes, membrane physiology and signaling, rough endoplasmic reticulum and synthesis of membrane\/secretory membrane proteins, endocytosis, the cytoskeleton, and cell division.", + "description": "The study of cell biology and membrane physiology. Topics include organization and functional properties of biological membranes, membrane physiology and signaling, rough endoplasmic reticulum and synthesis of membrane/secretory membrane proteins, endocytosis, the cytoskeleton, and cell division.", "short_title": "Principles of Cell Biology", "title": "Principles of Cell Biology", "school": "YC", @@ -37955,7 +81818,7 @@ "11:35", "12:25", "CO493 208 - 493 College Street 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560001" + "https://map.yale.edu/?id=1910#!m/560001" ] ] }, @@ -37972,7 +81835,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -38012,7 +81903,7 @@ "11:35", "12:50", "OML 202 - Osborn Memorial Laboratories 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/559958" + "https://map.yale.edu/?id=1910#!m/559958" ] ], "Wednesday": [ @@ -38020,7 +81911,7 @@ "11:35", "12:50", "OML 202 - Osborn Memorial Laboratories 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/559958" + "https://map.yale.edu/?id=1910#!m/559958" ] ] }, @@ -38034,10 +81925,189 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83434\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83434/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989031553268433, + 0.998582124710083, + 0.998869001865387, + 0.9988657236099243, + 0.9982617497444153, + 0.9987131357192993, + 0.9983527660369873, + 0.9987131357192993, + 0.9987292885780334, + 0.9921991229057312, + 0.9986261129379272, + 0.9984022974967957, + 0.9994847774505615, + 0.9986807703971863, + 0.9982591271400452, + 0.9964195489883423, + 0.9988206028938293 + ], + "sentiment_counts": { + "POSITIVE": 16, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9411764705882353, + "NEGATIVE": 0.058823529411764705 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9411764705882353 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986605644226074, + 0.9994245767593384, + 0.9993990659713745, + 0.9988607168197632, + 0.9980613589286804, + 0.9994957447052002, + 0.9936823844909668, + 0.9958708882331848, + 0.9994907379150391, + 0.9959540367126465, + 0.9994502663612366, + 0.9988019466400146, + 0.9984971284866333, + 0.9989142417907715, + 0.9995013475418091, + 0.9976599216461182, + 0.9987718462944031, + 0.9994493126869202, + 0.9982264637947083, + 0.9986612796783447, + 0.997347354888916 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 9 + }, + "sentiment_distribution": { + "POSITIVE": 0.5714285714285714, + "NEGATIVE": 0.42857142857142855 + }, + "sentiment_overall": [ + "POSITIVE", + 0.5714285714285714 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989110231399536, + 0.9994311928749084, + 0.9989136457443237, + 0.9903004169464111, + 0.9995124340057373, + 0.9988695979118347, + 0.9985972046852112, + 0.9994969367980957, + 0.9980016350746155, + 0.9977102279663086, + 0.9951580166816711, + 0.9940037131309509, + 0.9995089769363403, + 0.996868908405304, + 0.9988299012184143, + 0.9991078972816467, + 0.9985414743423462, + 0.9988943934440613 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 9 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "final_label": "POSITIVE", + "final_count": 37, + "final_proportion": 0.6607142857142857, + "final_counts": { + "POSITIVE": 37, + "NEGATIVE": 19 + }, + "final_distribution": { + "POSITIVE": 0.6607142857142857, + "NEGATIVE": 0.3392857142857143 + } + } }, { "season_code": "202301", @@ -38068,7 +82138,7 @@ "15:30", "16:20", "WTS B31 - Watson Center 60 Sachem Street B31", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -38085,7 +82155,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -38116,7 +82214,7 @@ "19:00", "19:50", "WTS A38 - Watson Center 60 Sachem Street A38", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -38133,7 +82231,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -38164,7 +82290,7 @@ "9:25", "10:15", "WTS B39 - Watson Center 60 Sachem Street B39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -38181,7 +82307,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -38212,7 +82366,7 @@ "9:25", "10:15", "BM 013 - Bingham Hall 013", - "https:\/\/map.yale.edu\/?id=1910#!m\/559569" + "https://map.yale.edu/?id=1910#!m/559569" ] ] }, @@ -38229,7 +82383,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -38260,7 +82442,7 @@ "10:30", "11:20", "WTS A68 - Watson Center 60 Sachem Street A68", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -38277,7 +82459,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -38308,7 +82518,7 @@ "10:30", "11:20", "WTS B74 - Watson Center 60 Sachem Street B74", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -38325,7 +82535,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -38356,7 +82594,7 @@ "10:30", "11:20", "WLH 210 - William L. Harkness Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -38373,7 +82611,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -38404,7 +82670,7 @@ "11:35", "12:25", "BM 013 - Bingham Hall 013", - "https:\/\/map.yale.edu\/?id=1910#!m\/559569" + "https://map.yale.edu/?id=1910#!m/559569" ] ] }, @@ -38421,7 +82687,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -38452,7 +82746,7 @@ "11:35", "12:25", "LORIA B50 - Loria Center B50", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -38469,7 +82763,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -38500,7 +82822,7 @@ "11:35", "12:25", "WTS B51 - Watson Center 60 Sachem Street B51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -38517,7 +82839,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -38548,7 +82898,7 @@ "11:35", "12:25", "LORIA 360 - Loria Center 360", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -38565,7 +82915,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -38605,7 +82983,7 @@ "11:35", "12:50", "OML 202 - Osborn Memorial Laboratories 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/559958" + "https://map.yale.edu/?id=1910#!m/559958" ] ], "Wednesday": [ @@ -38613,7 +82991,7 @@ "11:35", "12:50", "OML 202 - Osborn Memorial Laboratories 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/559958" + "https://map.yale.edu/?id=1910#!m/559958" ] ] }, @@ -38627,10 +83005,487 @@ "classnotes": "", "final_exam": "Saturday, May 6, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83437\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83437/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988106489181519, + 0.9987156391143799, + 0.9987165927886963, + 0.9969350099563599, + 0.9952859282493591, + 0.9938888549804688, + 0.9989216327667236, + 0.9987720847129822, + 0.9982231259346008, + 0.9962848424911499, + 0.9987311959266663, + 0.9986065030097961, + 0.997780978679657, + 0.9968340992927551, + 0.9988710284233093, + 0.9979783892631531, + 0.9989107847213745, + 0.9979159235954285, + 0.9982055425643921, + 0.9989044666290283, + 0.9940244555473328, + 0.9989074468612671, + 0.9943063855171204, + 0.9976696372032166, + 0.9988093376159668, + 0.9988988637924194, + 0.9987758994102478, + 0.998903751373291, + 0.9988730549812317, + 0.9988691210746765, + 0.9994181394577026, + 0.9987128973007202, + 0.9986434578895569, + 0.9919801950454712, + 0.9987612962722778, + 0.9983845949172974, + 0.9987947940826416, + 0.9970574378967285, + 0.9985411167144775, + 0.998802900314331, + 0.997370719909668, + 0.9987292885780334, + 0.9987660646438599, + 0.9988798499107361, + 0.9810937643051147, + 0.9987564086914062, + 0.9988312125205994, + 0.9986764788627625, + 0.9988590478897095, + 0.9984121322631836, + 0.9982765913009644, + 0.9988334774971008, + 0.998719334602356, + 0.9987187385559082, + 0.9986932873725891, + 0.9989075660705566, + 0.9986523985862732, + 0.9984148740768433, + 0.9908038377761841, + 0.9987022876739502, + 0.9988068342208862 + ], + "sentiment_counts": { + "POSITIVE": 59, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.9672131147540983, + "NEGATIVE": 0.03278688524590164 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9672131147540983 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998514711856842, + 0.9983213543891907, + 0.9978838562965393, + 0.998885452747345, + 0.9986653327941895, + 0.9976663589477539, + 0.9988096952438354, + 0.9948668479919434, + 0.998928964138031, + 0.9985608458518982, + 0.9987913966178894, + 0.9986618757247925, + 0.9913206696510315, + 0.9977295994758606, + 0.9986347556114197, + 0.9983820915222168, + 0.9994964599609375, + 0.996606707572937, + 0.9989355206489563, + 0.9980878233909607, + 0.9984918832778931, + 0.9989138841629028, + 0.9986454844474792, + 0.9962329268455505, + 0.9994931221008301, + 0.9972158670425415, + 0.9989295601844788, + 0.9989390969276428, + 0.9994921684265137, + 0.9994460940361023, + 0.9993904829025269, + 0.9944159984588623, + 0.9979696869850159, + 0.9989191293716431, + 0.9988811612129211, + 0.9988195300102234, + 0.9993382096290588, + 0.9908193945884705, + 0.9970023036003113, + 0.9987539052963257, + 0.9977325201034546, + 0.9981091022491455, + 0.9994643330574036, + 0.9989171028137207, + 0.999489426612854, + 0.998829185962677, + 0.9988070726394653, + 0.9988946318626404, + 0.9988934397697449, + 0.9988190531730652, + 0.9988860487937927, + 0.992882490158081, + 0.9528070092201233, + 0.9966244697570801, + 0.993063747882843, + 0.9986407160758972, + 0.9988245368003845, + 0.9987854361534119, + 0.9986116886138916, + 0.9962238073348999, + 0.9987855553627014, + 0.9978839755058289, + 0.998458743095398, + 0.9988677501678467, + 0.9989381432533264, + 0.998513400554657, + 0.9956318140029907, + 0.9989047050476074, + 0.9978958368301392, + 0.9994381070137024, + 0.9962448477745056, + 0.9988664388656616, + 0.9987524747848511 + ], + "sentiment_counts": { + "POSITIVE": 57, + "NEGATIVE": 16 + }, + "sentiment_distribution": { + "POSITIVE": 0.7808219178082192, + "NEGATIVE": 0.2191780821917808 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7808219178082192 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987891316413879, + 0.9848100543022156, + 0.9988353848457336, + 0.9959554672241211, + 0.9969815611839294, + 0.9976266026496887, + 0.998920202255249, + 0.9979302883148193, + 0.9988980293273926, + 0.99887615442276, + 0.9987861514091492, + 0.9989344477653503, + 0.9957528114318848, + 0.9858512282371521, + 0.9989101886749268, + 0.995206892490387, + 0.9986032843589783, + 0.9972990155220032, + 0.9988823533058167, + 0.9894575476646423, + 0.998838484287262, + 0.9988800883293152, + 0.9988413453102112, + 0.9989031553268433, + 0.9987303614616394, + 0.9971354007720947, + 0.9873331785202026, + 0.9988651275634766, + 0.9989180564880371, + 0.9985607266426086, + 0.9906789660453796, + 0.9987872242927551, + 0.9989326596260071, + 0.9989196062088013, + 0.9987988471984863, + 0.9988892674446106, + 0.9930369257926941, + 0.9987214207649231, + 0.9994999170303345, + 0.9986314177513123, + 0.9988312125205994, + 0.9988993406295776, + 0.9995006322860718, + 0.9987834095954895, + 0.9985139966011047, + 0.997117280960083, + 0.9988527297973633, + 0.9995167255401611, + 0.9988778233528137, + 0.9988728165626526, + 0.9973794221878052, + 0.9987244009971619, + 0.998408854007721, + 0.9995054006576538, + 0.9782375693321228, + 0.9987620115280151, + 0.9989051818847656, + 0.9985692501068115, + 0.9988446235656738, + 0.9987576007843018, + 0.99887615442276, + 0.990757942199707, + 0.9989134073257446, + 0.9984265565872192, + 0.9985911250114441, + 0.9900892972946167, + 0.9943444728851318, + 0.9983727931976318, + 0.9963148236274719, + 0.9989381432533264, + 0.9988901019096375 + ], + "sentiment_counts": { + "POSITIVE": 52, + "NEGATIVE": 19 + }, + "sentiment_distribution": { + "POSITIVE": 0.7323943661971831, + "NEGATIVE": 0.2676056338028169 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7323943661971831 + ] + }, + "final_label": "POSITIVE", + "final_count": 168, + "final_proportion": 0.8195121951219512, + "final_counts": { + "POSITIVE": 168, + "NEGATIVE": 37 + }, + "final_distribution": { + "POSITIVE": 0.8195121951219512, + "NEGATIVE": 0.18048780487804877 + } + } }, { "season_code": "202301", @@ -38661,7 +83516,7 @@ "15:30", "16:20", "WTS B31 - Watson Center 60 Sachem Street B31", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -38678,7 +83533,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -38709,7 +83592,7 @@ "19:00", "19:50", "WTS A38 - Watson Center 60 Sachem Street A38", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -38726,7 +83609,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -38757,7 +83668,7 @@ "9:25", "10:15", "WTS B39 - Watson Center 60 Sachem Street B39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -38774,7 +83685,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -38805,7 +83744,7 @@ "9:25", "10:15", "BM 013 - Bingham Hall 013", - "https:\/\/map.yale.edu\/?id=1910#!m\/559569" + "https://map.yale.edu/?id=1910#!m/559569" ] ] }, @@ -38822,7 +83761,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -38853,7 +83820,7 @@ "10:30", "11:20", "WTS B74 - Watson Center 60 Sachem Street B74", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -38870,7 +83837,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -38901,7 +83896,7 @@ "10:30", "11:20", "WLH 210 - William L. Harkness Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -38918,7 +83913,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -38949,7 +83972,7 @@ "11:35", "12:25", "BM 013 - Bingham Hall 013", - "https:\/\/map.yale.edu\/?id=1910#!m\/559569" + "https://map.yale.edu/?id=1910#!m/559569" ] ] }, @@ -38966,7 +83989,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -38997,7 +84048,7 @@ "11:35", "12:25", "LORIA B50 - Loria Center B50", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -39014,7 +84065,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -39045,7 +84124,7 @@ "10:30", "11:20", "WTS A68 - Watson Center 60 Sachem Street A68", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -39062,7 +84141,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -39093,7 +84200,7 @@ "11:35", "12:25", "WTS B51 - Watson Center 60 Sachem Street B51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -39110,7 +84217,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -39141,7 +84276,7 @@ "11:35", "12:25", "LORIA 360 - Loria Center 360", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -39158,7 +84293,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -39195,7 +84358,7 @@ "8:00", "9:50", "LEPH WINSL - Laboratory of EPH WINSL", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ], "Wednesday": [ @@ -39203,7 +84366,7 @@ "8:00", "8:50", "LEPH WINSL - Laboratory of EPH WINSL", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ] }, @@ -39215,10 +84378,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86037\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86037/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -39258,7 +84449,7 @@ "12:00", "12:50", "CO47 106 A & B - 47 College Street (CLP) 106 A & B", - "https:\/\/map.yale.edu\/?id=1910#!m\/559997" + "https://map.yale.edu/?id=1910#!m/559997" ] ] }, @@ -39270,15 +84461,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86038\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86038/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", - "requirements": "Prerequisites: S&DS 541 and S&DS 542 or equivalent, or permission of the instructor. This course is intended for biostatistics graduate students in the second year and above and requires knowledge of, and comfort with, general mathematical statistics. Prior exposure to asymptotic theory, survival analysis, and\/or Bayesian statistics is desirable but not required. Some basic statistical programming skills will also be helpful.", - "description": "The course presents methods for the analysis of data with measurement error or missing data. This course can be divided into two parts. The first part provides an exposition to the statistical theory and the analytic techniques used for adjusting estimates and inference for covariate measurement error and misclassification. The second part covers data analysis with missing data. Much emphasis is placed on likelihood-based approaches to missing data, for example, the Expectation-Maximization (EM) algorithm and multiple imputation (MI). SAS\/R is used for analysis of data.", + "requirements": "Prerequisites: S&DS 541 and S&DS 542 or equivalent, or permission of the instructor. This course is intended for biostatistics graduate students in the second year and above and requires knowledge of, and comfort with, general mathematical statistics. Prior exposure to asymptotic theory, survival analysis, and/or Bayesian statistics is desirable but not required. Some basic statistical programming skills will also be helpful.", + "description": "The course presents methods for the analysis of data with measurement error or missing data. This course can be divided into two parts. The first part provides an exposition to the statistical theory and the analytic techniques used for adjusting estimates and inference for covariate measurement error and misclassification. The second part covers data analysis with missing data. Much emphasis is placed on likelihood-based approaches to missing data, for example, the Expectation-Maximization (EM) algorithm and multiple imputation (MI). SAS/R is used for analysis of data.", "short_title": "Measurement Error and Missing...", "title": "Measurement Error and Missing Data", "school": "PH", @@ -39310,7 +84529,7 @@ "13:00", "14:50", "LEPH 103 - Laboratory of EPH 103", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ] }, @@ -39322,10 +84541,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86039\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86039/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -39368,10 +84615,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86040\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86040/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -39409,7 +84684,7 @@ "10:30", "11:45", "LEPH WINSL - Laboratory of EPH WINSL", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ], "Thursday": [ @@ -39417,7 +84692,7 @@ "10:30", "11:45", "LEPH WINSL - Laboratory of EPH WINSL", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ] }, @@ -39429,15 +84704,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83399\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83399/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course provides students with an introduction to regulatory affairs science, as these issues apply to the regulation of food, pharmaceuticals, and medical and diagnostic devices. The course covers a broad range of specialties that focus on issues including legal underpinnings of the regulatory process, compliance, phases of clinical testing and regulatory milestones, clinical trials design and monitoring, quality assurance, post-marketing study design in response to regulatory and other needs, and post-marketing risk management. The complexities of this process require awareness of leadership and change management skills. Topics to be discussed include: (1) the nature and scope of the International Conference on Harmonization, and its guidelines for regulatory affairs in the global environment; (2) drug development, the FDA, and principles of regulatory affairs in this environment; (3) the practice of global regulatory affairs from an industry perspective; (4) description\/structure\/issues of current special importance to the U.S. FDA; (5) historical background and FDA jurisdiction of food and drug law; (6) the drug development process including specification of the important milestone meetings with the FDA; (7) risk analysis and approaches to its evaluation; (8) use of Bayesian statistics in medical device evaluation, a new approach; (9) use of data monitoring committees and other statistical methods for regulatory compliance; (10) developments in leadership and change management; and (11) food quality assurance including risk analysis\/compliance\/enforcement. Through course participation, students also have opportunities to meet informally with faculty and outside speakers to explore additional regulatory issues of current interest.", + "description": "This course provides students with an introduction to regulatory affairs science, as these issues apply to the regulation of food, pharmaceuticals, and medical and diagnostic devices. The course covers a broad range of specialties that focus on issues including legal underpinnings of the regulatory process, compliance, phases of clinical testing and regulatory milestones, clinical trials design and monitoring, quality assurance, post-marketing study design in response to regulatory and other needs, and post-marketing risk management. The complexities of this process require awareness of leadership and change management skills. Topics to be discussed include: (1) the nature and scope of the International Conference on Harmonization, and its guidelines for regulatory affairs in the global environment; (2) drug development, the FDA, and principles of regulatory affairs in this environment; (3) the practice of global regulatory affairs from an industry perspective; (4) description/structure/issues of current special importance to the U.S. FDA; (5) historical background and FDA jurisdiction of food and drug law; (6) the drug development process including specification of the important milestone meetings with the FDA; (7) risk analysis and approaches to its evaluation; (8) use of Bayesian statistics in medical device evaluation, a new approach; (9) use of data monitoring committees and other statistical methods for regulatory compliance; (10) developments in leadership and change management; and (11) food quality assurance including risk analysis/compliance/enforcement. Through course participation, students also have opportunities to meet informally with faculty and outside speakers to explore additional regulatory issues of current interest.", "short_title": "Introduction to Regulatory Af...", "title": "Introduction to Regulatory Affairs", "school": "PH", @@ -39469,7 +84772,7 @@ "10:00", "11:50", "CO47 106A - 47 College Street (CLP) 106A", - "https:\/\/map.yale.edu\/?id=1910#!m\/559997" + "https://map.yale.edu/?id=1910#!m/559997" ] ] }, @@ -39481,10 +84784,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86041\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86041/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -39521,7 +84852,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -39558,12 +84917,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "Prerequisite: BIS 623 or equivalent.", - "description": "This course covers methods for analyzing longitudinal data in which repeated measures have been obtained for subjects over time and for analyzing multilevel data, which can be either hierarchically or nonhierarchically structured, e.g., nested, crossed, and\/or clustered. The course teaches the common analytic techniques that can be used to analyze both longitudinal data and multilevel data with both continuous and discrete responses. One defining feature of the data is the correlation among responses over time within the same subject in longitudinal data and\/or among different observations within a same cluster in multilevel data, which has to be accommodated in order to make valid inference about the responses. Emphasis is on mixed-effects models and generalized estimating equations (GEE). Rationales on whether population-average research or subject-\/cluster-specific inference research may be more appropriate for various study designs and data types are discussed and illustrated. More advanced topics including mixture models, missing data methods, and causal inference are discussed if time allows. Analysis in presence of missing data is incorporated throughout the lectures and the labs. Emphasis is placed on applying the methods, understanding underlying assumptions, and interpreting results for analyzing real data using standard statistical software. Additional material on computational aspects and theoretic aspects of mixed models. R and SAS software is used for analysis of data.", + "description": "This course covers methods for analyzing longitudinal data in which repeated measures have been obtained for subjects over time and for analyzing multilevel data, which can be either hierarchically or nonhierarchically structured, e.g., nested, crossed, and/or clustered. The course teaches the common analytic techniques that can be used to analyze both longitudinal data and multilevel data with both continuous and discrete responses. One defining feature of the data is the correlation among responses over time within the same subject in longitudinal data and/or among different observations within a same cluster in multilevel data, which has to be accommodated in order to make valid inference about the responses. Emphasis is on mixed-effects models and generalized estimating equations (GEE). Rationales on whether population-average research or subject-/cluster-specific inference research may be more appropriate for various study designs and data types are discussed and illustrated. More advanced topics including mixture models, missing data methods, and causal inference are discussed if time allows. Analysis in presence of missing data is incorporated throughout the lectures and the labs. Emphasis is placed on applying the methods, understanding underlying assumptions, and interpreting results for analyzing real data using standard statistical software. Additional material on computational aspects and theoretic aspects of mixed models. R and SAS software is used for analysis of data.", "short_title": "Longitudinal and Multilevel D...", "title": "Longitudinal and Multilevel Data Analysis", "school": "PH", @@ -39595,7 +84982,7 @@ "10:40", "12:00", "CO47 106 A & B - 47 College Street (CLP) 106 A & B", - "https:\/\/map.yale.edu\/?id=1910#!m\/559997" + "https://map.yale.edu/?id=1910#!m/559997" ] ] }, @@ -39607,10 +84994,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86044\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86044/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -39650,7 +85065,7 @@ "13:00", "14:50", "CO47 106B - 47 College Street (CLP) 106B", - "https:\/\/map.yale.edu\/?id=1910#!m\/559997" + "https://map.yale.edu/?id=1910#!m/559997" ] ] }, @@ -39662,10 +85077,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86045\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86045/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -39702,7 +85145,7 @@ "15:00", "16:50", "LEPH 102 - Laboratory of EPH 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ] }, @@ -39714,14 +85157,42 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86046\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86046/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", - "requirements": "Prerequisite: BIS 560\/CB&B 740, SBS 574, or\u00a0permission of the instructor.", + "requirements": "Prerequisite: BIS 560/CB&B 740, SBS 574, or\u00a0permission of the instructor.", "description": "This course combines needs assessment methods, user-centered design principles, and an agile approach to designing digital health tools for consumers. The class environment is designed to model that of a health tech start-up. Students are expected to apply what they learn from the lectures and readings to identify a pain point (i.e., a problem or need faced by a prospective user) and solicit input from intended users to design a prototype of the digital health tool. Solutions are presented in class to receive feedback on the design and to iteratively refine a prototype in order to create a minimum viable product.", "short_title": "User-Centered Design of Digit...", "title": "User-Centered Design of Digital Health Tools", @@ -39756,7 +85227,7 @@ "10:00", "11:50", "CO47 106B - 47 College Street (CLP) 106B", - "https:\/\/map.yale.edu\/?id=1910#!m\/559997" + "https://map.yale.edu/?id=1910#!m/559997" ] ] }, @@ -39768,10 +85239,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85465\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85465/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -39808,7 +85307,7 @@ "13:00", "14:50", "LEPH 102 - Laboratory of EPH 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ] }, @@ -39823,7 +85322,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -39862,7 +85389,7 @@ "10:00", "11:50", "CO47 106B - 47 College Street (CLP) 106B", - "https:\/\/map.yale.edu\/?id=1910#!m\/559997" + "https://map.yale.edu/?id=1910#!m/559997" ] ] }, @@ -39874,10 +85401,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83440\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83440/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -39914,7 +85469,7 @@ "13:00", "14:50", "LEPH 101 - Laboratory of EPH 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ] }, @@ -39926,10 +85481,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86048\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86048/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -39972,7 +85555,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -40018,7 +85629,7 @@ "13:00", "14:50", "CO47 106B - 47 College Street (CLP) 106B", - "https:\/\/map.yale.edu\/?id=1910#!m\/559997" + "https://map.yale.edu/?id=1910#!m/559997" ] ] }, @@ -40030,14 +85641,42 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86050\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86050/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", - "requirements": "Prerequisites: BIS 560\/CB&B 740 and BIS 550\/CB&B 750, or equivalents.", + "requirements": "Prerequisites: BIS 560/CB&B 740 and BIS 550/CB&B 750, or equivalents.", "description": "This course provides the opportunity for master\u2019s-level integration of basic informatics theory and practice through individual and group health informatics projects. Students have two major projects throughout the course: a team project where reflection on coordination of responsibilities and teamwork is essential, and a term-long individual\u00a0 project. The individual project may fall into one of the main areas\u2014clinical informatics, clinical research informatics, population health informatics, and implementation of new methods and technology\u2014and may include elements from several of these areas. Students are required to prepare a carefully written report and make an oral presentation of the work to the faculty and students. The final individual project is meant to show how the student integrates informatics theory, skills, and stakeholder\u2019s needs into a final product or project that may be developed into a deliverable for general public use. A capstone committee (consisting of faculty members and guests) provides guidance as to the suitability of the project and monitors its progress.", "short_title": "Capstone in Health Informatics", "title": "Capstone in Health Informatics", @@ -40079,7 +85718,7 @@ "13:00", "14:50", "LEPH 108 - Laboratory of EPH 108", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ] }, @@ -40091,10 +85730,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86051\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86051/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -40131,7 +85798,7 @@ "15:00", "16:50", "LEPH 103 - Laboratory of EPH 103", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ] }, @@ -40146,12 +85813,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "Prerequisites: S&DS 542, BIS 623, and some knowledge of matrix calculation.", - "description": "This course considers a class of statistical models that generalize the linear model through the link functions of response mean. Major varieties of GLMs including models for Gaussian, Gamma, binomial, un\/ordered polynomial, and Poisson responses are discussed. Goodness of fit of the models and overdispersion are considered. Extensions to correlated responses are examined through the approaches of quasi-likelihood and generalized estimating equation. The course covers both theoretical and applied aspects of data analytic issues arising from practice.", + "description": "This course considers a class of statistical models that generalize the linear model through the link functions of response mean. Major varieties of GLMs including models for Gaussian, Gamma, binomial, un/ordered polynomial, and Poisson responses are discussed. Goodness of fit of the models and overdispersion are considered. Extensions to correlated responses are examined through the approaches of quasi-likelihood and generalized estimating equation. The course covers both theoretical and applied aspects of data analytic issues arising from practice.", "short_title": "Theory of Generalized Linear ...", "title": "Theory of Generalized Linear Models", "school": "PH", @@ -40183,7 +85878,7 @@ "10:00", "11:50", "LEPH 108 - Laboratory of EPH 108", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ] }, @@ -40195,10 +85890,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86053\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86053/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -40241,7 +85964,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -40272,7 +86023,7 @@ "16:45", "18:25", "DOW B-07 - Dow Hall B-07", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ], "Friday": [ @@ -40280,7 +86031,7 @@ "15:30", "17:10", "DOW B-07 - Dow Hall B-07", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ] }, @@ -40297,12 +86048,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "Prerequisite: BNGL 150 or equivalent. Course taught through distance learning using videoconferencing technology from Cornell University. Enrollment limited; interested students should e-mail minjin.hashbat@yale.edu for more information.", - "description": "The foremost goal of this class is to support and encourage language skills in Oral Discussions (speaking) and interpretive Listening and help the student to attain language proficiency at the Advanced Mid\/High level of the American Council on the Teaching of Foreign Languages (ACTFL) and C1 level of the Common European Framework of Reference for Languages (CEFR).", + "description": "The foremost goal of this class is to support and encourage language skills in Oral Discussions (speaking) and interpretive Listening and help the student to attain language proficiency at the Advanced Mid/High level of the American Council on the Teaching of Foreign Languages (ACTFL) and C1 level of the Common European Framework of Reference for Languages (CEFR).", "short_title": "Advanced Bengali II", "title": "Advanced Bengali II", "school": "YC", @@ -40336,7 +86115,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -40377,7 +86184,80 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986349940299988 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988790154457092 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988389611244202, + 0.9988484382629395 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 4, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 4 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -40422,7 +86302,82 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983774423599243 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988995790481567, + 0.9987780451774597 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998879611492157, + 0.9984371066093445 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 5, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 5 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -40463,7 +86418,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -40509,10 +86492,38 @@ "classnotes": "This course is only open to students participating in the Yale in London program.", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86672\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/86672/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -40554,10 +86565,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86292\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86292/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -40596,7 +86635,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -40635,7 +86702,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -40679,7 +86774,7 @@ "9:25", "10:15", "HLH17 115 - 17 Hillhouse Avenue 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Wednesday": [ @@ -40687,7 +86782,7 @@ "9:25", "10:15", "HLH17 115 - 17 Hillhouse Avenue 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Friday": [ @@ -40695,7 +86790,7 @@ "9:25", "10:15", "HLH17 115 - 17 Hillhouse Avenue 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -40707,10 +86802,121 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84506\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84506/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983678460121155, + 0.9984408020973206, + 0.9988372921943665, + 0.9981305003166199, + 0.9989367127418518, + 0.9983301758766174 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989234805107117, + 0.9989125728607178, + 0.9988905787467957, + 0.9986975193023682, + 0.9995036125183105, + 0.9994183778762817, + 0.9880630373954773, + 0.9987654685974121 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989303946495056, + 0.9984606504440308, + 0.9988518953323364, + 0.9989318251609802, + 0.9987974166870117, + 0.9994534850120544, + 0.9988964796066284, + 0.9988728165626526 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 0.8636363636363636, + "final_counts": { + "POSITIVE": 19, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.8636363636363636, + "NEGATIVE": 0.13636363636363635 + } + } }, { "season_code": "202301", @@ -40753,10 +86959,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83449\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83449/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -40799,7 +87033,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -40842,12 +87104,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "The goals of the course are to introduce MRSP students to aspects of clinically important human diseases. Students explore each disease over three one-and-one-half-hour sessions led by a clinician-scientist who is an expert in the relevant organ system. Students explore two disease processes per term. The first of the three sessions is devoted to a discussion of the clinical presentation, natural history, pathology, epidemiology, treatment, and prognosis of the disease process. During this session students have the opportunity to view gross or microscopic specimens of diseased tissue in association with members of the Pathology faculty. Students are assigned readings in pathology, pathophysiology, and clinical texts to prepare for the first class session. The second session focuses on translational aspects of the disease process. Students read and present papers relevant to the molecular basis of the disease and cutting-edge approaches to its therapy. In the third session students meet with patients who have experienced the disease and\/or visit and explore facilities associated with diagnosis and treatment of the disease process. Prior to the third session students receive guidance as to what they will observe and how to approach the experience; and at the end of the session, the group discusses its thoughts and impressions. Students are expected to prepare for sessions, to participate actively, and to be scrupulously respectful of patients and patient facilities.", + "description": "The goals of the course are to introduce MRSP students to aspects of clinically important human diseases. Students explore each disease over three one-and-one-half-hour sessions led by a clinician-scientist who is an expert in the relevant organ system. Students explore two disease processes per term. The first of the three sessions is devoted to a discussion of the clinical presentation, natural history, pathology, epidemiology, treatment, and prognosis of the disease process. During this session students have the opportunity to view gross or microscopic specimens of diseased tissue in association with members of the Pathology faculty. Students are assigned readings in pathology, pathophysiology, and clinical texts to prepare for the first class session. The second session focuses on translational aspects of the disease process. Students read and present papers relevant to the molecular basis of the disease and cutting-edge approaches to its therapy. In the third session students meet with patients who have experienced the disease and/or visit and explore facilities associated with diagnosis and treatment of the disease process. Prior to the third session students receive guidance as to what they will observe and how to approach the experience; and at the end of the session, the group discusses its thoughts and impressions. Students are expected to prepare for sessions, to participate actively, and to be scrupulously respectful of patients and patient facilities.", "short_title": "Medical Research Scholars Pro...", "title": "Medical Research Scholars Program: Mentored Clinical Experience", "school": "GS", @@ -40888,12 +87178,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "Readings and discussion on a diverse range of current topics in molecular medicine, pharmacology, and physiology. The class emphasizes analysis of primary research literature and development of presentation and writing skills. Contemporary articles are assigned on a related topic every week, and a student leads discussions with input from faculty who are experts in the topic area. The overall goal is to cover a specific topic of medical relevance (e.g., cancer, neurodegeneration) from the perspective of three primary disciplines (i.e., physiology: normal function; pathology: abnormal function; and pharmacology: intervention). Required of and open only to Ph.D. and M.D.\/Ph.D. students in the Molecular Medicine, Pharmacology, and Physiology track.", + "description": "Readings and discussion on a diverse range of current topics in molecular medicine, pharmacology, and physiology. The class emphasizes analysis of primary research literature and development of presentation and writing skills. Contemporary articles are assigned on a related topic every week, and a student leads discussions with input from faculty who are experts in the topic area. The overall goal is to cover a specific topic of medical relevance (e.g., cancer, neurodegeneration) from the perspective of three primary disciplines (i.e., physiology: normal function; pathology: abnormal function; and pharmacology: intervention). Required of and open only to Ph.D. and M.D./Ph.D. students in the Molecular Medicine, Pharmacology, and Physiology track.", "short_title": "Seminar in Molecular Medicine...", "title": "Seminar in Molecular Medicine, Pharmacology, and Physiology", "school": "GS", @@ -40948,10 +87266,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86148\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86148/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -41002,10 +87348,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86149\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86149/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -41066,14 +87440,42 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87140\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87140/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", - "requirements": "Prerequisite: MB&B 710\/C&MP 710.", + "requirements": "Prerequisite: MB&B 710/C&MP 710.", "description": "This laboratory course provides hands-on training in the practical aspects of macromolecular structure determination by cryo-electron microscopy (cryo-EM). Topics include cryo-EM data collection, image preparation and correction, single-particle picking and 2-D classification, 3-D classification, refinement and post-processing, model building, refinement and evaluation. The course includes training in the use of computer programs used to perform these calculations.", "short_title": "Practical cryo-EM Workshop", "title": "Practical cryo-EM Workshop", @@ -41119,10 +87521,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84477\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84477/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -41159,7 +87589,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -41212,7 +87670,7 @@ "14:30", "15:45", "BASS 405 - Bass Center 405", - "https:\/\/map.yale.edu\/?id=1910#!m\/560102" + "https://map.yale.edu/?id=1910#!m/560102" ] ], "Thursday": [ @@ -41220,7 +87678,7 @@ "14:30", "15:45", "BASS 405 - Bass Center 405", - "https:\/\/map.yale.edu\/?id=1910#!m\/560102" + "https://map.yale.edu/?id=1910#!m/560102" ] ] }, @@ -41232,15 +87690,144 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84491\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84491/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "", - "description": "A weekly seminar presented by faculty trainers on topics relating to proper conduct of research. Required of first-year CB&B students, first-year Immunobiology students, and training grant-funded postdocs. Pass\/Fail.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988125562667847, + 0.9983453750610352, + 0.9986456036567688, + 0.9986985921859741, + 0.9977982044219971, + 0.9903422594070435, + 0.9986554384231567, + 0.9956871867179871, + 0.9983854293823242, + 0.9988418221473694, + 0.9961655139923096 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9090909090909091 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988546371459961, + 0.9924356341362, + 0.9994757771492004, + 0.998830258846283, + 0.9947176575660706, + 0.9983822107315063, + 0.9951450228691101, + 0.9986005425453186, + 0.9987438321113586, + 0.9995054006576538, + 0.9988664388656616 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.7272727272727273, + "NEGATIVE": 0.2727272727272727 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7272727272727273 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984412789344788, + 0.966108500957489, + 0.9989063739776611, + 0.9985975623130798, + 0.9945812821388245, + 0.9985987544059753, + 0.9927737712860107, + 0.9988572597503662, + 0.9988515377044678 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "final_label": "POSITIVE", + "final_count": 26, + "final_proportion": 0.8387096774193549, + "final_counts": { + "POSITIVE": 26, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.8387096774193549, + "NEGATIVE": 0.16129032258064516 + } + } + }, + { + "season_code": "202301", + "requirements": "", + "description": "A weekly seminar presented by faculty trainers on topics relating to proper conduct of research. Required of first-year CB&B students, first-year Immunobiology students, and training grant-funded postdocs. Pass/Fail.", "short_title": "Fundamentals of Research: Res...", "title": "Fundamentals of Research: Responsible Conduct of Research", "school": "GS", @@ -41268,7 +87855,7 @@ "17:15", "18:30", "BCMM 101 - Boyer Ctr Molecular Medicine 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/560055" + "https://map.yale.edu/?id=1910#!m/560055" ] ] }, @@ -41280,10 +87867,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83465\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83465/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -41322,7 +87937,7 @@ "10:00", "11:50", "CO47 106B - 47 College Street (CLP) 106B", - "https:\/\/map.yale.edu\/?id=1910#!m\/559997" + "https://map.yale.edu/?id=1910#!m/559997" ] ] }, @@ -41334,10 +87949,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83440\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83440/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -41377,7 +88020,7 @@ "14:30", "15:45", "DL 220 - Dunham Laboratory 220", - "https:\/\/map.yale.edu\/?id=1910#!m\/560005" + "https://map.yale.edu/?id=1910#!m/560005" ] ], "Wednesday": [ @@ -41385,7 +88028,7 @@ "14:30", "15:45", "DL 220 - Dunham Laboratory 220", - "https:\/\/map.yale.edu\/?id=1910#!m\/560005" + "https://map.yale.edu/?id=1910#!m/560005" ] ] }, @@ -41397,10 +88040,261 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83743\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83743/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994625449180603, + 0.9986692667007446, + 0.9977267384529114, + 0.9958676099777222, + 0.998542070388794, + 0.997101366519928, + 0.9987678527832031, + 0.9951832890510559, + 0.9984068274497986, + 0.9987257122993469, + 0.9974414110183716, + 0.995819091796875, + 0.9982781410217285, + 0.9988355040550232, + 0.9972833395004272, + 0.9989116191864014, + 0.9982863068580627, + 0.9988540410995483, + 0.9984550476074219, + 0.9986552000045776, + 0.9955099821090698, + 0.9984970092773438, + 0.998772919178009, + 0.9987083673477173, + 0.9986257553100586, + 0.9938303828239441, + 0.9983738660812378, + 0.9969460368156433, + 0.9984185695648193, + 0.9987848401069641 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 27 + }, + "sentiment_distribution": { + "NEGATIVE": 0.1, + "POSITIVE": 0.9 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9995125532150269, + 0.9988347887992859, + 0.9985306262969971, + 0.9986801743507385, + 0.996660590171814, + 0.9995052814483643, + 0.9940515160560608, + 0.9995088577270508, + 0.9994838237762451, + 0.9985206723213196, + 0.9986639022827148, + 0.9988993406295776, + 0.9994993209838867, + 0.9988382458686829, + 0.9994832277297974, + 0.999346911907196, + 0.9994809031486511, + 0.9944530129432678, + 0.9985024929046631, + 0.9982832670211792, + 0.9941102862358093, + 0.9985215067863464, + 0.9987959861755371, + 0.9994221925735474, + 0.9987170696258545, + 0.9995049238204956, + 0.9822172522544861, + 0.9727941155433655, + 0.998855471611023, + 0.9988963603973389, + 0.9964511394500732 + ], + "sentiment_counts": { + "NEGATIVE": 14, + "POSITIVE": 17 + }, + "sentiment_distribution": { + "NEGATIVE": 0.45161290322580644, + "POSITIVE": 0.5483870967741935 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9995059967041016, + 0.9985914826393127, + 0.9974592328071594, + 0.9988071918487549, + 0.9995059967041016, + 0.9978850483894348, + 0.9995064735412598, + 0.9988580942153931, + 0.995029628276825, + 0.9987230896949768, + 0.9985194802284241, + 0.9978187084197998, + 0.9954947233200073, + 0.9971222281455994, + 0.9988207221031189, + 0.9981922507286072, + 0.9972677230834961, + 0.998528242111206, + 0.9988859295845032, + 0.9989175796508789, + 0.9994513392448425, + 0.9988551139831543, + 0.9931928515434265, + 0.9984241724014282, + 0.9987173080444336, + 0.9988511800765991, + 0.9946998357772827, + 0.9987109899520874, + 0.9784175753593445, + 0.9988406300544739, + 0.9988346695899963 + ], + "sentiment_counts": { + "NEGATIVE": 8, + "POSITIVE": 23 + }, + "sentiment_distribution": { + "NEGATIVE": 0.25806451612903225, + "POSITIVE": 0.7419354838709677 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7419354838709677 + ] + }, + "final_label": "POSITIVE", + "final_count": 67, + "final_proportion": 0.7282608695652174, + "final_counts": { + "NEGATIVE": 25, + "POSITIVE": 67 + }, + "final_distribution": { + "NEGATIVE": 0.2717391304347826, + "POSITIVE": 0.7282608695652174 + } + } }, { "season_code": "202301", @@ -41437,7 +88331,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -41474,7 +88396,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -41512,7 +88462,7 @@ "10:30", "11:45", "LEPH WINSL - Laboratory of EPH WINSL", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ], "Thursday": [ @@ -41520,7 +88470,7 @@ "10:30", "11:45", "LEPH WINSL - Laboratory of EPH WINSL", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ] }, @@ -41532,10 +88482,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83399\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83399/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -41580,7 +88558,7 @@ "13:00", "14:15", "BASS 305 - Bass Center 305", - "https:\/\/map.yale.edu\/?id=1910#!m\/560102" + "https://map.yale.edu/?id=1910#!m/560102" ] ], "Wednesday": [ @@ -41588,7 +88566,7 @@ "13:00", "14:15", "BASS 305 - Bass Center 305", - "https:\/\/map.yale.edu\/?id=1910#!m\/560102" + "https://map.yale.edu/?id=1910#!m/560102" ] ] }, @@ -41603,15 +88581,230 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84447\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84447/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "The course is offered only to M.D. and M.D.\/Ph.D. students.", - "description": "This full-year course (CBIO 501\/CBIO 502) is designed to provide medical students with a current and comprehensive review of biologic structure and function at the cellular, tissue, and organ system levels. Areas covered include structure and organization of cells; regulation of the cell cycle and mitosis; protein biosynthesis and membrane targeting; cell motility and the cytoskeleton; signal transduction; cell adhesion; cell and tissue organization of organ systems. Clinical correlation sessions, which illustrate the contributions of cell biology to specific medical problems, are interspersed in the lecture schedule. Histophysiology laboratories provide practical experience with an understanding of exploring cell and tissue structure.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9970090985298157, + 0.9988558292388916, + 0.998725950717926, + 0.9988222718238831, + 0.9770744442939758, + 0.9983933568000793, + 0.9988370537757874, + 0.9987943172454834, + 0.9988017082214355, + 0.9986467957496643, + 0.9897382855415344, + 0.9848324656486511, + 0.9954740405082703, + 0.9987924098968506, + 0.9988179802894592, + 0.9761744737625122, + 0.9987727999687195, + 0.9987554550170898, + 0.9943423271179199, + 0.9987911581993103, + 0.9987240433692932, + 0.9988112449645996 + ], + "sentiment_counts": { + "POSITIVE": 21, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9545454545454546, + "NEGATIVE": 0.045454545454545456 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9545454545454546 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988459348678589, + 0.9987896084785461, + 0.9988797307014465, + 0.9958059787750244, + 0.9894225001335144, + 0.9994359612464905, + 0.9979944229125977, + 0.998843789100647, + 0.9988779425621033, + 0.9994478821754456, + 0.9994989633560181, + 0.9789282083511353, + 0.9994825124740601, + 0.9988343119621277, + 0.9959596991539001, + 0.9974040389060974, + 0.9970256686210632, + 0.9994776844978333, + 0.976995587348938, + 0.9994934797286987, + 0.9966699481010437, + 0.9995031356811523, + 0.9995009899139404, + 0.9981524348258972, + 0.9974574446678162, + 0.9989149570465088 + ], + "sentiment_counts": { + "POSITIVE": 15, + "NEGATIVE": 11 + }, + "sentiment_distribution": { + "POSITIVE": 0.5769230769230769, + "NEGATIVE": 0.4230769230769231 + }, + "sentiment_overall": [ + "POSITIVE", + 0.5769230769230769 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998795747756958, + 0.9989169836044312, + 0.9988184571266174, + 0.998866081237793, + 0.999496340751648, + 0.9985204339027405, + 0.9988468885421753, + 0.9989088773727417, + 0.9988956451416016, + 0.9987001419067383, + 0.9988686442375183, + 0.998552143573761, + 0.9929360747337341, + 0.9988508224487305, + 0.9988837838172913, + 0.9963728189468384, + 0.9917622804641724, + 0.9985169768333435, + 0.9851395487785339, + 0.9989237189292908, + 0.9962260723114014, + 0.9862384796142578, + 0.9989376664161682, + 0.9995100498199463, + 0.9994924068450928, + 0.9989180564880371 + ], + "sentiment_counts": { + "POSITIVE": 20, + "NEGATIVE": 6 + }, + "sentiment_distribution": { + "POSITIVE": 0.7692307692307693, + "NEGATIVE": 0.23076923076923078 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7692307692307693 + ] + }, + "final_label": "POSITIVE", + "final_count": 56, + "final_proportion": 0.7567567567567568, + "final_counts": { + "POSITIVE": 56, + "NEGATIVE": 18 + }, + "final_distribution": { + "POSITIVE": 0.7567567567567568, + "NEGATIVE": 0.24324324324324326 + } + } + }, + { + "season_code": "202301", + "requirements": "The course is offered only to M.D. and M.D./Ph.D. students.", + "description": "This full-year course (CBIO 501/CBIO 502) is designed to provide medical students with a current and comprehensive review of biologic structure and function at the cellular, tissue, and organ system levels. Areas covered include structure and organization of cells; regulation of the cell cycle and mitosis; protein biosynthesis and membrane targeting; cell motility and the cytoskeleton; signal transduction; cell adhesion; cell and tissue organization of organ systems. Clinical correlation sessions, which illustrate the contributions of cell biology to specific medical problems, are interspersed in the lecture schedule. Histophysiology laboratories provide practical experience with an understanding of exploring cell and tissue structure.", "short_title": "Molecules to Systems", "title": "Molecules to Systems", "school": "GS", @@ -41646,15 +88839,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83402\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83402/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", - "requirements": "Enrollment limited to students who have taken or are currently taking CBIO 501\/CBIO 502.", - "description": "This full-year graduate seminar (CBIO 600\/CBIO 601) for first-year M.D.\/Ph.D. students\u2014 an elective course for M.D. students\u2014matches the progression of topics in the eighteen-month preclinical medical school curriculum and emphasizes the connections between basic and clinical science, human physiology, and disease. It is directed by M.D.\/Ph.D. program faculty, and many class discussions are led by expert Yale School of Medicine faculty members who select the papers to be read. Students explore scientific topics in depth, learn about cutting-edge research, and improve their presentation skills. The curriculum provides a framework for critically reading and analyzing papers drawn broadly from the biomedical sciences; this breadth of knowledge is also leveraged in team-based exercises that promote peer-to-peer teaching and learning.", + "requirements": "Enrollment limited to students who have taken or are currently taking CBIO 501/CBIO 502.", + "description": "This full-year graduate seminar (CBIO 600/CBIO 601) for first-year M.D./Ph.D. students\u2014 an elective course for M.D. students\u2014matches the progression of topics in the eighteen-month preclinical medical school curriculum and emphasizes the connections between basic and clinical science, human physiology, and disease. It is directed by M.D./Ph.D. program faculty, and many class discussions are led by expert Yale School of Medicine faculty members who select the papers to be read. Students explore scientific topics in depth, learn about cutting-edge research, and improve their presentation skills. The curriculum provides a framework for critically reading and analyzing papers drawn broadly from the biomedical sciences; this breadth of knowledge is also leveraged in team-based exercises that promote peer-to-peer teaching and learning.", "short_title": "Science at the Frontiers of M...", "title": "Science at the Frontiers of Medicine", "school": "GS", @@ -41740,7 +88961,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -41846,10 +89095,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83407\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83407/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -41907,10 +89184,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83409\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83409/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -41947,7 +89252,7 @@ "13:45", "15:45", "SHM C225A - Sterling Hall of Medicine C225A", - "https:\/\/map.yale.edu\/?id=1910#!m\/559929" + "https://map.yale.edu/?id=1910#!m/559929" ] ], "Wednesday": [ @@ -41955,7 +89260,7 @@ "13:45", "15:45", "SHM C225A - Sterling Hall of Medicine C225A", - "https:\/\/map.yale.edu\/?id=1910#!m\/559929" + "https://map.yale.edu/?id=1910#!m/559929" ] ] }, @@ -41967,10 +89272,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83412\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83412/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -42012,10 +89345,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86190\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86190/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -42051,10 +89412,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86191\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86191/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -42091,7 +89480,7 @@ "10:00", "11:20", "LEPH WINSL - Laboratory of EPH WINSL", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ], "Wednesday": [ @@ -42099,7 +89488,7 @@ "10:00", "11:20", "LEPH WINSL - Laboratory of EPH WINSL", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ], "Friday": [ @@ -42107,25 +89496,25 @@ "8:30", "9:50", "LEPH 101 - Laboratory of EPH 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ], [ "8:30", "9:50", "LEPH 102 - Laboratory of EPH 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ], [ "8:30", "9:50", "LEPH 103 - Laboratory of EPH 103", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ], [ "8:30", "9:50", "LEPH 115 - Laboratory of EPH 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ] }, @@ -42137,10 +89526,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86055\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86055/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -42178,7 +89595,7 @@ "13:00", "14:50", "LEPH WINSL - Laboratory of EPH WINSL", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ] }, @@ -42192,10 +89609,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86056\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86056/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -42232,7 +89677,7 @@ "12:00", "12:50", "LEPH 115 - Laboratory of EPH 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ] }, @@ -42244,15 +89689,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86057\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86057/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "Prerequisite: EPH 508.", - "description": "This course applies epidemiologic methods to the study of cancer etiology and prevention. Introductory sessions cover cancer biology, carcinogenesis, cancer incidence, and mortality rates in the United States, and international variation in cancer rates. The course then focuses on risk factors for cancer (including tobacco, alcohol, hormonal factors, diet, radiation, and obesity\/physical activity) and on major cancer sites (including colon, breast, and prostate). Emphasis is placed on critical reading of the literature.", + "description": "This course applies epidemiologic methods to the study of cancer etiology and prevention. Introductory sessions cover cancer biology, carcinogenesis, cancer incidence, and mortality rates in the United States, and international variation in cancer rates. The course then focuses on risk factors for cancer (including tobacco, alcohol, hormonal factors, diet, radiation, and obesity/physical activity) and on major cancer sites (including colon, breast, and prostate). Emphasis is placed on critical reading of the literature.", "short_title": "Epidemiology of Cancer", "title": "Epidemiology of Cancer", "school": "PH", @@ -42284,7 +89757,7 @@ "13:00", "14:50", "LEPH 101 - Laboratory of EPH 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ] }, @@ -42298,10 +89771,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86058\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86058/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -42338,7 +89839,7 @@ "15:00", "16:50", "CO47 106 A & B - 47 College Street (CLP) 106 A & B", - "https:\/\/map.yale.edu\/?id=1910#!m\/559997" + "https://map.yale.edu/?id=1910#!m/559997" ] ] }, @@ -42350,10 +89851,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86059\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86059/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -42390,7 +89919,7 @@ "8:00", "9:50", "LEPH 103 - Laboratory of EPH 103", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ] }, @@ -42402,10 +89931,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86060\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86060/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -42442,14 +89999,14 @@ "13:00", "14:50", "LEPH 108 - Laboratory of EPH 108", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ] }, "skills": [], "areas": [], "flags": [ - "PH: Global Health, Development\/Political Economy", + "PH: Global Health, Development/Political Economy", "YC GLHTH: Health & Societies", "YC GLHTH: Polit Econ & Govern" ], @@ -42458,10 +90015,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86061\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86061/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -42501,15 +90086,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86234\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86234/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "One of four overarching goals of Healthy People 2020 is to \"achieve health equity, eliminate disparities, and improve the health of all groups.\" This course explores disparities in the chronic diseases that contribute disproportionately to ill health, resource utilization, reduced quality of life, and mortality. Taking a life course perspective as we explore disparities across the spectrum of chronic diseases, we focus on differences in health between diverse racial\/ethnic and\/or socioeconomic groups, primarily in the United States. The primary focus of this course is on understanding the determinants and consequences of health disparities, learning to critically evaluate health disparities research, and thinking creatively about elimination strategies.", + "description": "One of four overarching goals of Healthy People 2020 is to \"achieve health equity, eliminate disparities, and improve the health of all groups.\" This course explores disparities in the chronic diseases that contribute disproportionately to ill health, resource utilization, reduced quality of life, and mortality. Taking a life course perspective as we explore disparities across the spectrum of chronic diseases, we focus on differences in health between diverse racial/ethnic and/or socioeconomic groups, primarily in the United States. The primary focus of this course is on understanding the determinants and consequences of health disparities, learning to critically evaluate health disparities research, and thinking creatively about elimination strategies.", "short_title": "Health Disparities by Race an...", "title": "Health Disparities by Race and Social Class: Application to Chronic Disease Epidemiology", "school": "PH", @@ -42541,7 +90154,7 @@ "13:00", "14:50", "LEPH 102 - Laboratory of EPH 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ] }, @@ -42554,11 +90167,39 @@ "rp_attr": "", "classnotes": "", "final_exam": "", - "course_home_url": "https:\/\/yale.instructure.com\/courses\/86063", + "course_home_url": "https://yale.instructure.com/courses/86063", "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -42596,7 +90237,7 @@ "10:00", "11:50", "LEPH 103 - Laboratory of EPH 103", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ] }, @@ -42608,10 +90249,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86074\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86074/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -42648,13 +90317,13 @@ "15:00", "16:50", "LEPH WINSL - Laboratory of EPH WINSL", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ], [ "15:00", "16:50", "ONLINE - ONLINE", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ] }, @@ -42666,15 +90335,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86064\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86064/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "EPH 507 and EPH 508 are recommended but not required.", - "description": "This course challenges students to explore the possibilities, problems, and potential uses of arts and humanities in public health practice. Utilizing the expertise present across Yale University and featuring work of artists from across the country, this primarily U.S.-focused course explores different methodologies for incorporating and assessing the impact of arts in the public health field. Classes meet twice weekly, once for a lecture\/discussion and once for an interactive, hands-on workshop or performance. Each of the weekly modules focuses on a central theme and incorporates aspects of methods and assessment alongside creative work. By the end of the course, students are familiar with a variety of projects integrating arts, humanities, and health in the United States; understand the importance of self-reflection and responsible artistic practice; have a basic understanding of the importance of impact assessment; and have designed and evaluated a hands-on creative project.", + "description": "This course challenges students to explore the possibilities, problems, and potential uses of arts and humanities in public health practice. Utilizing the expertise present across Yale University and featuring work of artists from across the country, this primarily U.S.-focused course explores different methodologies for incorporating and assessing the impact of arts in the public health field. Classes meet twice weekly, once for a lecture/discussion and once for an interactive, hands-on workshop or performance. Each of the weekly modules focuses on a central theme and incorporates aspects of methods and assessment alongside creative work. By the end of the course, students are familiar with a variety of projects integrating arts, humanities, and health in the United States; understand the importance of self-reflection and responsible artistic practice; have a basic understanding of the importance of impact assessment; and have designed and evaluated a hands-on creative project.", "short_title": "Humanities, Arts, and Public ...", "title": "Humanities, Arts, and Public Health", "school": "PH", @@ -42706,7 +90403,7 @@ "13:00", "14:50", "LEPH 102 - Laboratory of EPH 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ] }, @@ -42721,7 +90418,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -42758,7 +90483,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -42795,7 +90548,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -42832,7 +90613,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -42897,10 +90706,165 @@ "classnotes": "", "final_exam": "Sunday, May 7, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83994\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83994/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988663196563721, + 0.9989081621170044, + 0.9986454844474792, + 0.9987214207649231, + 0.9985299110412598, + 0.9989011287689209, + 0.9983079433441162, + 0.9987536668777466, + 0.9989340901374817, + 0.998661994934082, + 0.9988478422164917, + 0.9974697828292847, + 0.9988365769386292, + 0.9987038373947144, + 0.9986253976821899 + ], + "sentiment_counts": { + "POSITIVE": 15, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989124536514282, + 0.9988973140716553, + 0.9987350106239319, + 0.9989373087882996, + 0.9989338517189026, + 0.9988065958023071, + 0.9994831085205078, + 0.9989172220230103, + 0.998552143573761, + 0.9989044666290283, + 0.9983583092689514, + 0.9989092350006104, + 0.9985435009002686 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9230769230769231, + "NEGATIVE": 0.07692307692307693 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9230769230769231 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987533092498779, + 0.998916745185852, + 0.998884379863739, + 0.9988935589790344, + 0.9989318251609802, + 0.9988724589347839, + 0.9977549910545349, + 0.9988429546356201, + 0.9976522326469421, + 0.9989226460456848, + 0.99893718957901, + 0.9989274144172668, + 0.9989112615585327, + 0.9988511800765991, + 0.9988698363304138, + 0.9968857169151306 + ], + "sentiment_counts": { + "POSITIVE": 15, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9375, + "NEGATIVE": 0.0625 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9375 + ] + }, + "final_label": "POSITIVE", + "final_count": 42, + "final_proportion": 0.9545454545454546, + "final_counts": { + "POSITIVE": 42, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9545454545454546, + "NEGATIVE": 0.045454545454545456 + } + } }, { "season_code": "202301", @@ -42938,7 +90902,7 @@ "14:30", "15:45", "HLH17 113 - 17 Hillhouse Avenue 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Wednesday": [ @@ -42946,7 +90910,7 @@ "14:30", "15:45", "HLH17 113 - 17 Hillhouse Avenue 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -42962,10 +90926,167 @@ "classnotes": "", "final_exam": "Thursday, May 4, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83415\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83415/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987602233886719, + 0.9967666864395142, + 0.9987679123878479, + 0.9983375072479248, + 0.9972942471504211, + 0.9977268576622009, + 0.9988786578178406, + 0.9983081817626953, + 0.9987975358963013, + 0.9917578101158142, + 0.9985359907150269, + 0.9984177350997925, + 0.9986880421638489, + 0.9988335967063904, + 0.9988032579421997 + ], + "sentiment_counts": { + "POSITIVE": 14, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9333333333333333, + "NEGATIVE": 0.06666666666666667 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9333333333333333 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989145994186401, + 0.9989062547683716, + 0.998918890953064, + 0.9989349246025085, + 0.9989073276519775, + 0.9988881945610046, + 0.9994586110115051, + 0.9989112615585327, + 0.9989356398582458, + 0.9995110034942627, + 0.9987595081329346, + 0.998897910118103, + 0.998781144618988, + 0.9989001750946045, + 0.9988400340080261, + 0.9896871447563171 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.8125, + "NEGATIVE": 0.1875 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8125 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998407781124115, + 0.9989031553268433, + 0.9988730549812317, + 0.9918395280838013, + 0.9988903403282166, + 0.9507880210876465, + 0.9926161766052246, + 0.998477041721344, + 0.9989345669746399, + 0.9995096921920776, + 0.9988691210746765, + 0.9988889098167419, + 0.9989302754402161, + 0.9811885952949524 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 5 + }, + "sentiment_distribution": { + "POSITIVE": 0.6428571428571429, + "NEGATIVE": 0.35714285714285715 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6428571428571429 + ] + }, + "final_label": "POSITIVE", + "final_count": 36, + "final_proportion": 0.8, + "final_counts": { + "POSITIVE": 36, + "NEGATIVE": 9 + }, + "final_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + } + } }, { "season_code": "202301", @@ -43002,7 +91123,7 @@ "13:00", "14:15", "HLH17 03 - 17 Hillhouse Avenue 03", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Wednesday": [ @@ -43010,7 +91131,7 @@ "13:00", "14:15", "HLH17 03 - 17 Hillhouse Avenue 03", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -43026,15 +91147,128 @@ "classnotes": "", "final_exam": "Tuesday, May 9, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83418\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83418/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986608028411865, + 0.998690664768219, + 0.9987202882766724, + 0.9982064962387085, + 0.9987329840660095, + 0.9989039897918701, + 0.9986121654510498, + 0.9954656958580017 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989245533943176, + 0.9961041212081909, + 0.99849534034729, + 0.9989326596260071, + 0.9988250136375427, + 0.9989284873008728, + 0.9986985921859741, + 0.9989224672317505, + 0.9896871447563171 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987998008728027, + 0.9986324906349182, + 0.9989253878593445, + 0.9989331364631653, + 0.99886155128479, + 0.9988676309585571 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 22, + "final_proportion": 0.9565217391304348, + "final_counts": { + "POSITIVE": 22, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9565217391304348, + "NEGATIVE": 0.043478260869565216 + } + } }, { "season_code": "202301", "requirements": "Prerequisite: ENAS 194 or permission of instructor.", - "description": "Unified treatment of momentum, energy, and chemical species transport including conservation laws, flux relations, and boundary conditions. Topics include convective and diffusive transport, transport with homogeneous and heterogeneous chemical reactions and\/or phase change, and interfacial transport phenomena. Emphasis on problem analysis and mathematical modeling, including problem formulation, scaling arguments, analytical methods, approximation techniques, and numerical solutions.", + "description": "Unified treatment of momentum, energy, and chemical species transport including conservation laws, flux relations, and boundary conditions. Topics include convective and diffusive transport, transport with homogeneous and heterogeneous chemical reactions and/or phase change, and interfacial transport phenomena. Emphasis on problem analysis and mathematical modeling, including problem formulation, scaling arguments, analytical methods, approximation techniques, and numerical solutions.", "short_title": "Transport Phenomena II", "title": "Transport Phenomena II", "school": "YC", @@ -43067,7 +91301,7 @@ "13:00", "14:15", "HLH17 05 - 17 Hillhouse Avenue 05", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Thursday": [ @@ -43075,7 +91309,7 @@ "13:00", "14:15", "HLH17 05 - 17 Hillhouse Avenue 05", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -43091,10 +91325,121 @@ "classnotes": "", "final_exam": "Sunday, May 7, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83420\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83420/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989124536514282, + 0.9985999464988708, + 0.9986905455589294, + 0.999498724937439, + 0.9983580708503723, + 0.9987227320671082 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9976551532745361, + 0.9969991445541382, + 0.997149646282196, + 0.9989038705825806, + 0.9867087602615356, + 0.9988584518432617, + 0.9989066123962402 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 4 + }, + "sentiment_distribution": { + "NEGATIVE": 0.42857142857142855, + "POSITIVE": 0.5714285714285714 + }, + "sentiment_overall": [ + "POSITIVE", + 0.5714285714285714 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9950166344642639, + 0.9908978343009949, + 0.9982700347900391, + 0.9995032548904419, + 0.9778754711151123, + 0.9984221458435059, + 0.9985939860343933, + 0.9995139837265015, + 0.9989311099052429 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 6 + }, + "sentiment_distribution": { + "POSITIVE": 0.3333333333333333, + "NEGATIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.6666666666666666 + ] + }, + "final_label": "neutral", + "final_count": 12, + "final_proportion": 0.5, + "final_counts": { + "POSITIVE": 12, + "NEGATIVE": 10 + }, + "final_distribution": { + "POSITIVE": 0.5454545454545454, + "NEGATIVE": 0.45454545454545453 + } + } }, { "season_code": "202301", @@ -43132,7 +91477,7 @@ "14:30", "15:45", "WTS A48 - Watson Center 60 Sachem Street A48", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -43140,7 +91485,7 @@ "14:30", "15:45", "WTS A48 - Watson Center 60 Sachem Street A48", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -43154,10 +91499,121 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83423\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83423/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988947510719299, + 0.9987932443618774, + 0.998809814453125, + 0.998719334602356, + 0.9987905621528625, + 0.9988893866539001, + 0.9988131523132324 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989145994186401, + 0.9988975524902344, + 0.9988101720809937, + 0.9988850951194763, + 0.9989038705825806, + 0.9989362359046936, + 0.9989225268363953, + 0.9984689354896545 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989221096038818, + 0.9989355206489563, + 0.9988671541213989, + 0.9989014863967896, + 0.9989004135131836, + 0.9989354014396667, + 0.9966707825660706 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 21, + "final_proportion": 0.9545454545454546, + "final_counts": { + "POSITIVE": 21, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9545454545454546, + "NEGATIVE": 0.045454545454545456 + } + } }, { "season_code": "202301", @@ -43196,7 +91652,7 @@ "9:00", "10:15", "WTS A30 - Watson Center 60 Sachem Street A30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -43204,7 +91660,7 @@ "9:00", "10:15", "WTS A30 - Watson Center 60 Sachem Street A30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -43218,10 +91674,145 @@ "classnotes": "", "final_exam": "Saturday, May 6, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83570\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83570/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982261061668396, + 0.9980424642562866, + 0.9987554550170898, + 0.9987717270851135, + 0.9987782835960388, + 0.9986363053321838, + 0.9986666440963745, + 0.9986757636070251, + 0.9988289475440979 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9934213757514954, + 0.998795747756958, + 0.9986681938171387, + 0.9494472742080688, + 0.9988514184951782, + 0.9989281296730042, + 0.9994989633560181, + 0.9988086223602295, + 0.9988332390785217, + 0.9986687898635864, + 0.9988106489181519, + 0.9955262541770935, + 0.9985602498054504, + 0.9986577033996582 + ], + "sentiment_counts": { + "NEGATIVE": 4, + "POSITIVE": 10 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2857142857142857, + "POSITIVE": 0.7142857142857143 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7142857142857143 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.999455988407135, + 0.9984502792358398, + 0.99607914686203, + 0.998892605304718, + 0.9921370148658752, + 0.9989142417907715, + 0.9995051622390747, + 0.9995021820068359, + 0.9994909763336182, + 0.998869001865387, + 0.9985986351966858 + ], + "sentiment_counts": { + "NEGATIVE": 6, + "POSITIVE": 5 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5454545454545454, + "POSITIVE": 0.45454545454545453 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "final_label": "POSITIVE", + "final_count": 24, + "final_proportion": 0.7058823529411765, + "final_counts": { + "POSITIVE": 24, + "NEGATIVE": 10 + }, + "final_distribution": { + "POSITIVE": 0.7058823529411765, + "NEGATIVE": 0.29411764705882354 + } + } }, { "season_code": "202301", @@ -43253,7 +91844,7 @@ "19:00", "19:50", "WTS A68 - Watson Center 60 Sachem Street A68", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -43270,7 +91861,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -43302,7 +91921,7 @@ "19:00", "19:50", "WTS A38 - Watson Center 60 Sachem Street A38", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -43319,7 +91938,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -43370,10 +92017,93 @@ "classnotes": "", "final_exam": "Thursday, May 4, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83426\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83426/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9980397820472717, + 0.9960475564002991, + 0.9987612962722778 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994686245918274, + 0.9988685846328735, + 0.9987437129020691 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983680844306946, + 0.9988617897033691 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 1 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 0.75, + "final_counts": { + "POSITIVE": 6, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + } + } }, { "season_code": "202301", @@ -43411,7 +92141,7 @@ "16:00", "17:15", "ML 104 - Mason Laboratory 104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ], "Thursday": [ @@ -43419,7 +92149,7 @@ "16:00", "17:15", "ML 104 - Mason Laboratory 104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ] }, @@ -43435,10 +92165,115 @@ "classnotes": "", "final_exam": "Wednesday, May 10, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83428\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83428/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9615212082862854, + 0.9974230527877808, + 0.998746395111084, + 0.9988065958023071, + 0.9980720281600952, + 0.9986854195594788 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9990315437316895, + 0.9983200430870056, + 0.9989288449287415, + 0.9994999170303345, + 0.998880922794342, + 0.9988963603973389, + 0.9985750913619995 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 4 + }, + "sentiment_distribution": { + "NEGATIVE": 0.42857142857142855, + "POSITIVE": 0.5714285714285714 + }, + "sentiment_overall": [ + "POSITIVE", + 0.5714285714285714 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998738706111908, + 0.9982991814613342, + 0.9926744103431702, + 0.9989379048347473, + 0.9982553124427795, + 0.9989091157913208 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 0.7894736842105263, + "final_counts": { + "POSITIVE": 15, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.7894736842105263, + "NEGATIVE": 0.21052631578947367 + } + } }, { "season_code": "202301", @@ -43477,7 +92312,7 @@ "14:30", "15:45", "HLH17 05 - 17 Hillhouse Avenue 05", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Wednesday": [ @@ -43485,7 +92320,7 @@ "14:30", "15:45", "HLH17 05 - 17 Hillhouse Avenue 05", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -43499,15 +92334,116 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85231\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85231/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987660646438599, + 0.994401752948761, + 0.997588038444519, + 0.9987271428108215, + 0.9943291544914246, + 0.9988089799880981 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985392093658447, + 0.9948831796646118, + 0.996239185333252, + 0.998918890953064, + 0.9989005327224731, + 0.9988734126091003 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9900023937225342, + 0.9981735944747925, + 0.9987284541130066, + 0.9989145994186401, + 0.9987632036209106 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.4, + "POSITIVE": 0.6 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 0.8235294117647058, + "final_counts": { + "POSITIVE": 14, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.8235294117647058, + "NEGATIVE": 0.17647058823529413 + } + } }, { "season_code": "202301", "requirements": "May be taken more than once for credit.", - "description": "Faculty-supervised individual student research and design projects. Emphasis on the integration of mathematics with basic and engineering sciences in the solution of a theoretical, experimental, and\/or design problem.", + "description": "Faculty-supervised individual student research and design projects. Emphasis on the integration of mathematics with basic and engineering sciences in the solution of a theoretical, experimental, and/or design problem.", "short_title": "Independent Research", "title": "Independent Research", "school": "YC", @@ -43545,12 +92481,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "Individual research and\/or design project supervised by a faculty member in Chemical Engineering, or in a related field with permission of the director of undergraduate studies.", + "description": "Individual research and/or design project supervised by a faculty member in Chemical Engineering, or in a related field with permission of the director of undergraduate studies.", "short_title": "Senior Research Project", "title": "Senior Research Project", "school": "YC", @@ -43588,7 +92552,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -43626,7 +92618,7 @@ "14:30", "15:45", "HLH17 113 - 17 Hillhouse Avenue 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Wednesday": [ @@ -43634,7 +92626,7 @@ "14:30", "15:45", "HLH17 113 - 17 Hillhouse Avenue 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -43650,10 +92642,167 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83415\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83415/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987602233886719, + 0.9967666864395142, + 0.9987679123878479, + 0.9983375072479248, + 0.9972942471504211, + 0.9977268576622009, + 0.9988786578178406, + 0.9983081817626953, + 0.9987975358963013, + 0.9917578101158142, + 0.9985359907150269, + 0.9984177350997925, + 0.9986880421638489, + 0.9988335967063904, + 0.9988032579421997 + ], + "sentiment_counts": { + "POSITIVE": 14, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9333333333333333, + "NEGATIVE": 0.06666666666666667 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9333333333333333 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989145994186401, + 0.9989062547683716, + 0.998918890953064, + 0.9989349246025085, + 0.9989073276519775, + 0.9988881945610046, + 0.9994586110115051, + 0.9989112615585327, + 0.9989356398582458, + 0.9995110034942627, + 0.9987595081329346, + 0.998897910118103, + 0.998781144618988, + 0.9989001750946045, + 0.9988400340080261, + 0.9896871447563171 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.8125, + "NEGATIVE": 0.1875 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8125 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998407781124115, + 0.9989031553268433, + 0.9988730549812317, + 0.9918395280838013, + 0.9988903403282166, + 0.9507880210876465, + 0.9926161766052246, + 0.998477041721344, + 0.9989345669746399, + 0.9995096921920776, + 0.9988691210746765, + 0.9988889098167419, + 0.9989302754402161, + 0.9811885952949524 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 5 + }, + "sentiment_distribution": { + "POSITIVE": 0.6428571428571429, + "NEGATIVE": 0.35714285714285715 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6428571428571429 + ] + }, + "final_label": "POSITIVE", + "final_count": 36, + "final_proportion": 0.8, + "final_counts": { + "POSITIVE": 36, + "NEGATIVE": 9 + }, + "final_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + } + } }, { "season_code": "202301", @@ -43692,7 +92841,7 @@ "14:30", "15:45", "LC 101 - Linsly-Chittenden Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -43700,7 +92849,7 @@ "14:30", "15:45", "LC 101 - Linsly-Chittenden Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -43717,10 +92866,245 @@ "classnotes": "", "final_exam": "Thursday, May 4, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84372\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84372/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986911416053772, + 0.998896598815918, + 0.9982989430427551, + 0.9987226128578186, + 0.9988375306129456, + 0.995455265045166, + 0.9988614320755005, + 0.9994912147521973, + 0.9961259961128235, + 0.9988676309585571, + 0.9987837672233582, + 0.9988332390785217, + 0.9983593821525574, + 0.9994045495986938, + 0.9988478422164917, + 0.9987137317657471, + 0.9987070560455322, + 0.9987636804580688, + 0.998747706413269, + 0.9988011121749878, + 0.9987021684646606, + 0.9933885335922241, + 0.9987275004386902, + 0.9989049434661865, + 0.9987988471984863, + 0.9987414479255676, + 0.9988614320755005 + ], + "sentiment_counts": { + "POSITIVE": 25, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.9259259259259259, + "NEGATIVE": 0.07407407407407407 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9259259259259259 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988273978233337, + 0.9974735379219055, + 0.9980286955833435, + 0.9980618357658386, + 0.9995071887969971, + 0.9988456964492798, + 0.9988276362419128, + 0.9994982481002808, + 0.9867162704467773, + 0.9978837370872498, + 0.9970316886901855, + 0.9988886713981628, + 0.9989117383956909, + 0.9993865489959717, + 0.9988849759101868, + 0.9987784028053284, + 0.9988827109336853, + 0.9989151954650879, + 0.9965760111808777, + 0.9982239603996277, + 0.9988372921943665, + 0.9987035989761353, + 0.9982008934020996, + 0.9988446235656738, + 0.998778760433197, + 0.9988020658493042, + 0.9986108541488647, + 0.9994955062866211, + 0.9930644631385803 + ], + "sentiment_counts": { + "POSITIVE": 19, + "NEGATIVE": 10 + }, + "sentiment_distribution": { + "POSITIVE": 0.6551724137931034, + "NEGATIVE": 0.3448275862068966 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6551724137931034 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9914430975914001, + 0.9989230036735535, + 0.9981480836868286, + 0.999470055103302, + 0.9995036125183105, + 0.99891197681427, + 0.9969677329063416, + 0.9985792636871338, + 0.9986806511878967, + 0.9965193271636963, + 0.99720299243927, + 0.9994733929634094, + 0.9986843466758728, + 0.9989092350006104, + 0.9988266825675964, + 0.9985396862030029, + 0.9988777041435242, + 0.9987925291061401, + 0.9989266991615295, + 0.9962736368179321, + 0.9995083808898926, + 0.9989027976989746, + 0.9964545965194702, + 0.9986093044281006, + 0.9980790615081787, + 0.9950947761535645, + 0.9988920092582703, + 0.996468186378479 + ], + "sentiment_counts": { + "NEGATIVE": 9, + "POSITIVE": 19 + }, + "sentiment_distribution": { + "NEGATIVE": 0.32142857142857145, + "POSITIVE": 0.6785714285714286 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6785714285714286 + ] + }, + "final_label": "POSITIVE", + "final_count": 63, + "final_proportion": 0.75, + "final_counts": { + "POSITIVE": 63, + "NEGATIVE": 21 + }, + "final_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + } + } }, { "season_code": "202301", @@ -43760,7 +93144,7 @@ "13:00", "14:15", "HQ 113 - Humanities Quadrangle 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -43768,7 +93152,7 @@ "13:00", "14:15", "HQ 113 - Humanities Quadrangle 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -43777,7 +93161,7 @@ "So" ], "flags": [ - "YC LING: Adv Courses\/Seminars", + "YC LING: Adv Courses/Seminars", "YC LING: Depth", "YC LING Depth: Phonetics", "YC LING: Elective" @@ -43787,10 +93171,99 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84391\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84391/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981117248535156, + 0.9987229704856873, + 0.998646080493927 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984824061393738, + 0.9989122152328491, + 0.9987420439720154, + 0.9989012479782104 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983124732971191, + 0.9987533092498779, + 0.9988922476768494, + 0.9988707900047302, + 0.9989148378372192 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 12 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -43829,7 +93302,7 @@ "13:30", "15:20", "PH 312 - Phelps Hall 312", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -43839,22 +93312,149 @@ "So" ], "flags": [ - "YC Phil: Intersctn PSYC\/PHIL" + "YC Phil: Intersctn PSYC/PHIL" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "Tuesday, May 9, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84632\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84632/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988009929656982, + 0.9989277720451355, + 0.9989290833473206, + 0.9987101554870605, + 0.9988901019096375, + 0.9989012479782104, + 0.9989161491394043, + 0.9988664388656616, + 0.9989148378372192 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989336133003235, + 0.9987305998802185, + 0.9979569911956787, + 0.980651319026947, + 0.9994495511054993, + 0.998928964138031, + 0.9989321827888489, + 0.9977073669433594, + 0.9980382323265076 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998855471611023, + 0.9989350438117981, + 0.9989268183708191, + 0.9989223480224609, + 0.9978086352348328, + 0.9984118938446045, + 0.9989174604415894, + 0.9989116191864014, + 0.9985563158988953, + 0.9924628734588623, + 0.9980986714363098, + 0.9985830783843994 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9166666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 28, + "final_proportion": 0.9333333333333333, + "final_counts": { + "POSITIVE": 28, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9333333333333333, + "NEGATIVE": 0.06666666666666667 + } + } }, { "season_code": "202301", "requirements": "Prerequisite: At least one course in which the student has read and engaged substantively with Plato's Republic. For example: Directed Studies (fall semester); PHIL 125 (ancient philosophy); PLSC 114 (Political Philosophy); or equivalent.", - "description": "How can ancient philosophy engage contemporary audiences? Public Plato explores this question through three strands. (1) Strand one introduces students to material from the Open Yale Course \"Philosophy and the Science of Human Nature,\" which pairs core texts from the Western philosophical tradition with recent findings in cognitive science. (In slogan form, the structure of the course is \"Dead guy on Tuesday; Cog Sci on Thursday.\") Readings here include selections from philosophers (Plato, Aristotle, Epictetus) and psychologists (Millgram, Kahneman, Lyubomirksy) focused on the topic of human flourishing. (2) Strand two introduces students to certain large-scale experiments in public philosophical outreach (the Wireless Philosophy Project, the Aspen Institute, EdX\/Coursera). Readings here include primary-source materials and theoretical and historical discussions of their import. (3) Strand three introduces students to a set of digital technologies through hands-on practice at the Poorvu Center. These strands are woven together through the course assignments: Using materials in the Open Yale Course initiative as an archive, students learn to curate a set of digital educational resources ranging from TikTok videos to Podcasts to longer-form (Coursera) courses. Graded assignments include both group-based creative projects and individual written work, including weekly directed writing exercises.", + "description": "How can ancient philosophy engage contemporary audiences? Public Plato explores this question through three strands. (1) Strand one introduces students to material from the Open Yale Course \"Philosophy and the Science of Human Nature,\" which pairs core texts from the Western philosophical tradition with recent findings in cognitive science. (In slogan form, the structure of the course is \"Dead guy on Tuesday; Cog Sci on Thursday.\") Readings here include selections from philosophers (Plato, Aristotle, Epictetus) and psychologists (Millgram, Kahneman, Lyubomirksy) focused on the topic of human flourishing. (2) Strand two introduces students to certain large-scale experiments in public philosophical outreach (the Wireless Philosophy Project, the Aspen Institute, EdX/Coursera). Readings here include primary-source materials and theoretical and historical discussions of their import. (3) Strand three introduces students to a set of digital technologies through hands-on practice at the Poorvu Center. These strands are woven together through the course assignments: Using materials in the Open Yale Course initiative as an archive, students learn to curate a set of digital educational resources ranging from TikTok videos to Podcasts to longer-form (Coursera) courses. Graded assignments include both group-based creative projects and individual written work, including weekly directed writing exercises.", "short_title": "Public Plato: Ancient Wisdom ...", "title": "Public Plato: Ancient Wisdom in the Digital Age", "school": "YC", @@ -43889,7 +93489,7 @@ "13:30", "15:20", "SML 120B - Sterling Memorial Library 120B", - "https:\/\/map.yale.edu\/?id=1910#!m\/563698" + "https://map.yale.edu/?id=1910#!m/563698" ] ] }, @@ -43905,15 +93505,108 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85866\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85866/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998918890953064, + 0.9984135627746582, + 0.9986271858215332, + 0.9986830353736877, + 0.9989288449287415 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9986567497253418, + 0.9989054203033447, + 0.9895350337028503 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.998708963394165, + 0.9983287453651428, + 0.9986146688461304, + 0.998909592628479, + 0.990972638130188 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 0.8461538461538461, + "final_counts": { + "POSITIVE": 11, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8461538461538461, + "NEGATIVE": 0.15384615384615385 + } + } }, { "season_code": "202301", "requirements": "Prerequisites: LING 110, CGSC 110, LING 217, or LING 263.", - "description": "The meaning of a word or sentence is something in the human mind that has specific\u00a0properties: it can be expressed (written\/signed\/spoken forms); it can be combined with other meanings; its expression is not language dependent; it connects with the world; it serves as a vehicle for inference; and it is hidden from awareness. The course explores these properties in some detail and, in the process, provides the students with technical\u00a0vocabulary and analytical tools to further investigate them. The course is thus intended for those students\u00a0interested in undertaking a research project on the structure of meaning.\u00a0the nature of lexico-conceptual structure, that is, the structure of concepts which we refer to as \"word\u00a0meanings\", and how they may be combined through linguistic and non-linguistic means. Its ultimate objective is to bridge models of conceptual structure and models of linguistic semantic composition, \u00a0identify their respective strengths and weaknesses and explore some of the fundamental questions that any theory of linguistic meaning composition must answer. Evidence discussed will emerge from naturalistic, introspectional, and experimental methodologies.", + "description": "The meaning of a word or sentence is something in the human mind that has specific\u00a0properties: it can be expressed (written/signed/spoken forms); it can be combined with other meanings; its expression is not language dependent; it connects with the world; it serves as a vehicle for inference; and it is hidden from awareness. The course explores these properties in some detail and, in the process, provides the students with technical\u00a0vocabulary and analytical tools to further investigate them. The course is thus intended for those students\u00a0interested in undertaking a research project on the structure of meaning.\u00a0the nature of lexico-conceptual structure, that is, the structure of concepts which we refer to as \"word\u00a0meanings\", and how they may be combined through linguistic and non-linguistic means. Its ultimate objective is to bridge models of conceptual structure and models of linguistic semantic composition, \u00a0identify their respective strengths and weaknesses and explore some of the fundamental questions that any theory of linguistic meaning composition must answer. Evidence discussed will emerge from naturalistic, introspectional, and experimental methodologies.", "short_title": "Linguistic Meaning and Concep...", "title": "Linguistic Meaning and Conceptual Structure", "school": "YC", @@ -43948,7 +93641,7 @@ "14:30", "15:45", "WLH 002 - William L. Harkness Hall 002", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -43956,7 +93649,7 @@ "14:30", "15:45", "WLH 002 - William L. Harkness Hall 002", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -43965,9 +93658,9 @@ "So" ], "flags": [ - "YC LING: Adv Courses\/Seminars", + "YC LING: Adv Courses/Seminars", "YC LING: Depth", - "YC LING Depth: Lang&Mind\/Brain", + "YC LING Depth: Lang&Mind/Brain", "YC LING: Elective" ], "regnotes": "", @@ -43975,10 +93668,103 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84350\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84350/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981061220169067, + 0.9983164072036743, + 0.99845290184021, + 0.9988356232643127 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989043474197388, + 0.9994563460350037, + 0.9964460730552673, + 0.998184859752655, + 0.998925507068634 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.6, + "NEGATIVE": 0.4 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9995124340057373, + 0.997117280960083, + 0.9954760670661926, + 0.9988189339637756 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.25, + "POSITIVE": 0.75 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 0.7692307692307693, + "final_counts": { + "POSITIVE": 10, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.7692307692307693, + "NEGATIVE": 0.23076923076923078 + } + } }, { "season_code": "202301", @@ -44017,7 +93803,7 @@ "13:30", "15:20", "DOW 112 - Dow Hall 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ] }, @@ -44026,10 +93812,10 @@ "So" ], "flags": [ - "YC LING: Adv Courses\/Seminars", + "YC LING: Adv Courses/Seminars", "YC LING: Depth", "YC LING Depth: Syntax", - "YC LING Depth: Semntcs\/Pragmat", + "YC LING Depth: Semntcs/Pragmat", "YC LING: Elective" ], "regnotes": "", @@ -44037,15 +93823,43 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84357\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84357/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "Students should have some background in psychology; PSYC 110 and PSYC 160 preferred.\u00a0", - "description": "An overview and examination of the neuroscience of psychiatric illness. We focus on cutting-edge research in humans and animals aimed at understanding the biological mechanisms that underlie psychiatric illness. Although these questions date back to early philosophical texts, only recently have experimental psychologists and neuroscientists begun to explore this vast and exciting domain of study. We discuss the evolutionary and developmental origins of individual differences in human personality, measurement issues, fundamental dimensions of psychopathology, stability\/plasticity, heritability, and implications therapeutic interventions as well as the associated broader implications for public policy. A major focus is on the neurobiology of fear and anxiety, including brain circuits, molecular genetic pathways, and epigenetics. A secondary focus is on differences in behavior and biology that confer risk for the development of depression and addiction, including the biological systems involved in hedonic pleasure, motivated goal pursuit, and the regulation of impulses in the face of everyday temptation.", + "description": "An overview and examination of the neuroscience of psychiatric illness. We focus on cutting-edge research in humans and animals aimed at understanding the biological mechanisms that underlie psychiatric illness. Although these questions date back to early philosophical texts, only recently have experimental psychologists and neuroscientists begun to explore this vast and exciting domain of study. We discuss the evolutionary and developmental origins of individual differences in human personality, measurement issues, fundamental dimensions of psychopathology, stability/plasticity, heritability, and implications therapeutic interventions as well as the associated broader implications for public policy. A major focus is on the neurobiology of fear and anxiety, including brain circuits, molecular genetic pathways, and epigenetics. A secondary focus is on differences in behavior and biology that confer risk for the development of depression and addiction, including the biological systems involved in hedonic pleasure, motivated goal pursuit, and the regulation of impulses in the face of everyday temptation.", "short_title": "Topics in Clinical Neuroscience", "title": "Topics in Clinical Neuroscience", "school": "YC", @@ -44079,7 +93893,7 @@ "9:25", "11:15", "SSS 201 - Sheffield-Sterling-Strathcona 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/563689" + "https://map.yale.edu/?id=1910#!m/563689" ] ], "Thursday": [ @@ -44087,7 +93901,7 @@ "9:25", "11:15", "SSS 201 - Sheffield-Sterling-Strathcona 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/563689" + "https://map.yale.edu/?id=1910#!m/563689" ] ] }, @@ -44101,10 +93915,127 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84706\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84706/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987446069717407, + 0.9987677335739136, + 0.9987608194351196, + 0.9985492825508118, + 0.9980782270431519, + 0.9983646273612976, + 0.9988883137702942 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987744688987732, + 0.9987566471099854, + 0.9987967014312744, + 0.9989332556724548, + 0.9988853335380554, + 0.9988327622413635, + 0.9987599849700928, + 0.9942659735679626 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9770510792732239, + 0.9988151788711548, + 0.9978413581848145, + 0.9988526105880737, + 0.9987497329711914, + 0.9987202882766724, + 0.9982414245605469, + 0.998777449131012, + 0.9980764389038086, + 0.9989309906959534 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 9 + }, + "sentiment_distribution": { + "NEGATIVE": 0.1, + "POSITIVE": 0.9 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "final_label": "POSITIVE", + "final_count": 24, + "final_proportion": 0.96, + "final_counts": { + "POSITIVE": 24, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.96, + "NEGATIVE": 0.04 + } + } }, { "season_code": "202301", @@ -44143,7 +94074,7 @@ "15:30", "17:20", "WLH 007 - William L. Harkness Hall 007", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -44157,10 +94088,119 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84710\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84710/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988214373588562, + 0.9974284768104553, + 0.9987643957138062, + 0.9988738894462585, + 0.9978875517845154, + 0.9987849593162537, + 0.9989107847213745 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988982677459717, + 0.9988951086997986, + 0.998907208442688, + 0.9995012283325195, + 0.9986705780029297, + 0.9989238381385803, + 0.9984477758407593 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988371729850769, + 0.9989092350006104, + 0.9988982677459717, + 0.9988536834716797, + 0.9994673132896423, + 0.9988982677459717, + 0.9989196062088013 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 0.9047619047619048, + "final_counts": { + "POSITIVE": 19, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9047619047619048, + "NEGATIVE": 0.09523809523809523 + } + } }, { "season_code": "202301", @@ -44199,7 +94239,7 @@ "15:30", "17:20", "SSS 201 - Sheffield-Sterling-Strathcona 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/563689" + "https://map.yale.edu/?id=1910#!m/563689" ] ] }, @@ -44215,10 +94255,113 @@ "classnotes": "", "final_exam": "Thursday, May 4, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84717\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84717/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988732933998108, + 0.9958479404449463, + 0.9989307522773743, + 0.9988341927528381, + 0.9988247752189636, + 0.9988419413566589 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987724423408508, + 0.9989402890205383, + 0.998939573764801, + 0.9989349246025085, + 0.9988691210746765, + 0.998920202255249 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988759160041809, + 0.998803973197937, + 0.9989093542098999, + 0.9988365769386292, + 0.9988879561424255, + 0.9989153146743774, + 0.998830258846283 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 19 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -44261,7 +94404,80 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9953688383102417 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9967209696769714 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 0 + }, + "sentiment_distribution": { + "NEGATIVE": 1.0, + "POSITIVE": 0.0 + }, + "sentiment_overall": [ + "NEGATIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.998478353023529 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 2, + "final_proportion": 0.6666666666666666, + "final_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + } + } }, { "season_code": "202301", @@ -44304,7 +94520,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -44353,10 +94597,117 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83442\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83442/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9940537810325623, + 0.9958838820457458, + 0.9962316155433655, + 0.9983956217765808, + 0.9980295300483704, + 0.9984555244445801 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988263249397278, + 0.9981662631034851, + 0.9858291149139404, + 0.9987444877624512, + 0.998603880405426, + 0.9986880421638489, + 0.9986982345581055 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989176988601685, + 0.9972749352455139, + 0.9980911612510681, + 0.9989204406738281, + 0.8661623001098633, + 0.9971358776092529, + 0.9966765642166138 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 0.95, + "final_counts": { + "POSITIVE": 19, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.95, + "NEGATIVE": 0.05 + } + } }, { "season_code": "202301", @@ -44393,7 +94744,7 @@ "9:25", "11:15", "K 207 - Kirtland Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/559945" + "https://map.yale.edu/?id=1910#!m/559945" ] ] }, @@ -44405,10 +94756,113 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86231\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86231/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9960088729858398, + 0.9988299012184143, + 0.9984174966812134, + 0.9985677003860474, + 0.993902325630188, + 0.9988390803337097, + 0.9988582134246826 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989057779312134, + 0.9989334940910339, + 0.9982977509498596, + 0.9983839988708496, + 0.9866561889648438, + 0.9988927245140076 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984874725341797, + 0.9988370537757874, + 0.9995023012161255, + 0.9961751699447632, + 0.9987040758132935 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.6, + "NEGATIVE": 0.4 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 0.8888888888888888, + "final_counts": { + "POSITIVE": 16, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + } + } }, { "season_code": "202301", @@ -44447,7 +94901,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -44489,13 +94971,140 @@ "flags": [], "regnotes": "", "rp_attr": "This course meets during the Reading Period: the week between the last week of classes and finals week. Meets Reading Period", - "classnotes": "This course's lab sections day\/time will be determined by the Preference Selection system which will run from 9 am Monday, December 5th to 5 pm Monday, December 12th.\n \nAll those who register for this course in the Early registration period, will receive a separate email sent by the Chemistry department (chemistry.dus@yale.edu) with details regarding Preference Selection open\/close in early August. \n\nFinal lab section times are scheduled based on enrollment preferences from the following options: Monday or Tuesday from 1 pm to 5 pm.\n \nThe lecture meets from 1 pm to 2 pm on either Monday or Tuesday.\n\nFor further details about how Chemistry's Preference Selection works please visit: \nhttps:\/\/chem.yale.edu\/academics\/undergraduate-studies\/preference-selection?msclkid=2193c3feb10811ec827162df07eca554 ", - "final_exam": "No regular final examination", - "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83447\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "classnotes": "This course's lab sections day/time will be determined by the Preference Selection system which will run from 9 am Monday, December 5th to 5 pm Monday, December 12th.\n \nAll those who register for this course in the Early registration period, will receive a separate email sent by the Chemistry department (chemistry.dus@yale.edu) with details regarding Preference Selection open/close in early August. \n\nFinal lab section times are scheduled based on enrollment preferences from the following options: Monday or Tuesday from 1 pm to 5 pm.\n \nThe lecture meets from 1 pm to 2 pm on either Monday or Tuesday.\n\nFor further details about how Chemistry's Preference Selection works please visit: \nhttps://chem.yale.edu/academics/undergraduate-studies/preference-selection?msclkid=2193c3feb10811ec827162df07eca554 ", + "final_exam": "No regular final examination", + "course_home_url": "", + "syllabus_url": "https://yale.instructure.com/courses/83447/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982302784919739, + 0.9988182187080383, + 0.9981998205184937, + 0.9987820982933044, + 0.9988338351249695, + 0.9987490177154541, + 0.9987749457359314, + 0.9986496567726135, + 0.998593270778656, + 0.998717188835144 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994977712631226, + 0.9983181953430176, + 0.9987972974777222, + 0.9984195232391357, + 0.9981788396835327, + 0.9988896250724792, + 0.998353123664856, + 0.9989112615585327, + 0.9988729357719421, + 0.9988571405410767 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 8 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2, + "POSITIVE": 0.8 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9872720837593079, + 0.9963902831077576, + 0.998860239982605, + 0.9977952241897583, + 0.9994933605194092, + 0.9976401329040527, + 0.9984995126724243, + 0.998472273349762, + 0.9989359974861145, + 0.998835027217865 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 8 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2, + "POSITIVE": 0.8 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 26, + "final_proportion": 0.8666666666666667, + "final_counts": { + "POSITIVE": 26, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.8666666666666667, + "NEGATIVE": 0.13333333333333333 + } + } }, { "season_code": "202301", @@ -44543,7 +95152,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -44574,7 +95211,7 @@ "13:00", "17:00", "SCL 228 - Sterling Chemistry Laboratory 228", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -44591,7 +95228,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -44622,7 +95287,7 @@ "13:00", "17:00", "SCL 228 - Sterling Chemistry Laboratory 228", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -44639,7 +95304,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -44670,7 +95363,7 @@ "13:00", "17:00", "SCL 228 - Sterling Chemistry Laboratory 228", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -44687,12 +95380,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "After CHEM 134L or the equivalent in advanced placement. To accompany or follow CHEM 165 or 167. May not be taken after a higher-numbered laboratory course.", - "description": "Introduction to rate and equilibrium measurements, acid-base chemistry, synthesis of inorganic compounds, and qualitative\/quantitative analysis.", + "description": "Introduction to rate and equilibrium measurements, acid-base chemistry, synthesis of inorganic compounds, and qualitative/quantitative analysis.", "short_title": "General Chemistry Laboratory II", "title": "General Chemistry Laboratory II", "school": "YC", @@ -44726,18 +95447,587 @@ "flags": [], "regnotes": "", "rp_attr": "This course meets during the Reading Period: the week between the last week of classes and finals week. Meets Reading Period", - "classnotes": "This course's lab sections day\/time will be determined by the Preference Selection system which will run from 9 am on Monday, August 15 to 5 pm on Monday August, 22 2022. \n \nAll those who register for this course in the Early registration period, will receive a separate email sent by the Chemistry department (chemistry.dus@yale.edu) with details regarding Preference Selection open\/close in early August. \n\nFinal lab section times are scheduled based on enrollment preferences from the following options: Monday, Tuesday, Wednesday, Thursday, and Friday from 1:00 pm to 5:00 pm.\n \nLecture meets from 1:00 pm to 2:00 pm.\n\nFor further details about how Chemistry's Preference Selection works please visit: \nhttps:\/\/chem.yale.edu\/academics\/undergraduate-studies\/preference-selection?msclkid=2193c3feb10811ec827162df07eca554 ", - "final_exam": "", - "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83450\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "classnotes": "This course's lab sections day/time will be determined by the Preference Selection system which will run from 9 am on Monday, August 15 to 5 pm on Monday August, 22 2022. \n \nAll those who register for this course in the Early registration period, will receive a separate email sent by the Chemistry department (chemistry.dus@yale.edu) with details regarding Preference Selection open/close in early August. \n\nFinal lab section times are scheduled based on enrollment preferences from the following options: Monday, Tuesday, Wednesday, Thursday, and Friday from 1:00 pm to 5:00 pm.\n \nLecture meets from 1:00 pm to 2:00 pm.\n\nFor further details about how Chemistry's Preference Selection works please visit: \nhttps://chem.yale.edu/academics/undergraduate-studies/preference-selection?msclkid=2193c3feb10811ec827162df07eca554 ", + "final_exam": "", + "course_home_url": "", + "syllabus_url": "https://yale.instructure.com/courses/83450/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987058639526367, + 0.9989153146743774, + 0.9988032579421997, + 0.9988276362419128, + 0.9987801909446716, + 0.9969461560249329, + 0.9984844326972961, + 0.9980042576789856, + 0.9987842440605164, + 0.9986591339111328, + 0.9989253878593445, + 0.9985231757164001, + 0.9988425970077515, + 0.9988116025924683, + 0.9851292371749878, + 0.9966626763343811, + 0.9986711740493774, + 0.9985713958740234, + 0.9984385371208191, + 0.9988788962364197, + 0.9981226325035095, + 0.9988607168197632, + 0.998817503452301, + 0.9988507032394409, + 0.9988510608673096, + 0.996444046497345, + 0.9989187717437744, + 0.9987257122993469, + 0.9989025592803955, + 0.998796820640564, + 0.9980857372283936, + 0.9987579584121704, + 0.9986878037452698, + 0.9986985921859741, + 0.9987659454345703, + 0.9979202151298523, + 0.9984707236289978, + 0.9882988929748535, + 0.9986892342567444, + 0.9988034963607788, + 0.9986820816993713, + 0.998785674571991, + 0.998660683631897, + 0.9987547397613525, + 0.9979603290557861, + 0.9975013136863708, + 0.997041642665863, + 0.99866783618927, + 0.9985859394073486, + 0.9986880421638489, + 0.9986440539360046, + 0.9988096952438354, + 0.9989142417907715, + 0.9986329674720764, + 0.9906448125839233, + 0.9987406134605408, + 0.998769223690033, + 0.9984101057052612, + 0.9988263249397278, + 0.9908850789070129, + 0.9988149404525757, + 0.9744442701339722, + 0.99241042137146, + 0.9987205862998962, + 0.9986711740493774, + 0.9928493499755859, + 0.9987878203392029, + 0.9987841248512268, + 0.9986696243286133, + 0.9988842606544495, + 0.9987976551055908, + 0.9988607168197632, + 0.9981765747070312, + 0.9870508909225464, + 0.9987761378288269, + 0.9988321661949158, + 0.9989066123962402, + 0.9985571503639221, + 0.9985677003860474, + 0.9877440333366394, + 0.9987950325012207, + 0.9989018440246582 + ], + "sentiment_counts": { + "POSITIVE": 79, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.9634146341463414, + "NEGATIVE": 0.036585365853658534 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9634146341463414 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986335635185242, + 0.9989203214645386, + 0.9964935183525085, + 0.9974178075790405, + 0.9983704686164856, + 0.9994845390319824, + 0.9988740086555481, + 0.9991499185562134, + 0.957895815372467, + 0.9988293051719666, + 0.9989010095596313, + 0.9985668063163757, + 0.9988996982574463, + 0.998930037021637, + 0.9987150430679321, + 0.9982683658599854, + 0.9989144802093506, + 0.9938538074493408, + 0.9994949102401733, + 0.9988712668418884, + 0.9995076656341553, + 0.9986722469329834, + 0.9988129138946533, + 0.9988679885864258, + 0.9964074492454529, + 0.9939510822296143, + 0.9989078044891357, + 0.9983086585998535, + 0.9946886301040649, + 0.9955292344093323, + 0.9988186955451965, + 0.9988662004470825, + 0.8044573664665222, + 0.998033344745636, + 0.9989282488822937, + 0.9994220733642578, + 0.9981001019477844, + 0.9987972974777222, + 0.9988295435905457, + 0.997805655002594, + 0.9994922876358032, + 0.9988628625869751, + 0.9987736344337463, + 0.9986440539360046, + 0.9988357424736023, + 0.9980816841125488, + 0.9927611351013184, + 0.9988614320755005, + 0.9982280135154724, + 0.9994198083877563, + 0.9994809031486511, + 0.9993898868560791, + 0.9982677698135376, + 0.9994744658470154, + 0.998444139957428, + 0.9989076852798462, + 0.9988971948623657, + 0.9987351298332214, + 0.9960612654685974, + 0.9970019459724426, + 0.9962582588195801, + 0.9987668991088867, + 0.9991023540496826, + 0.9931918978691101, + 0.9989105463027954, + 0.9988961219787598, + 0.9988870024681091, + 0.9994826316833496, + 0.9867600202560425, + 0.9859601259231567, + 0.9995089769363403, + 0.9988617897033691, + 0.9990605711936951, + 0.9970369338989258, + 0.996380627155304, + 0.993073582649231, + 0.9428752064704895, + 0.9989253878593445, + 0.9946978092193604, + 0.9876211285591125, + 0.9982654452323914, + 0.9524532556533813, + 0.9993011951446533, + 0.9903224110603333, + 0.9988515377044678, + 0.9985252022743225, + 0.998860239982605, + 0.9963847398757935, + 0.9988875985145569, + 0.9989093542098999 + ], + "sentiment_counts": { + "POSITIVE": 55, + "NEGATIVE": 35 + }, + "sentiment_distribution": { + "POSITIVE": 0.6111111111111112, + "NEGATIVE": 0.3888888888888889 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6111111111111112 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982116222381592, + 0.9989196062088013, + 0.998458981513977, + 0.9987567663192749, + 0.9994882345199585, + 0.9994955062866211, + 0.9983440637588501, + 0.9994812607765198, + 0.9929484128952026, + 0.9744677543640137, + 0.9986523985862732, + 0.9989227652549744, + 0.9994725584983826, + 0.9987843632698059, + 0.9987435936927795, + 0.998893678188324, + 0.999474823474884, + 0.9982553124427795, + 0.9994840621948242, + 0.9986951947212219, + 0.998931348323822, + 0.9926629066467285, + 0.9994897842407227, + 0.9983481168746948, + 0.9994994401931763, + 0.9988962411880493, + 0.9990416169166565, + 0.9974682331085205, + 0.9988445043563843, + 0.989128053188324, + 0.9989292025566101, + 0.9994742274284363, + 0.9987634420394897, + 0.9971146583557129, + 0.9987611770629883, + 0.9965893030166626, + 0.9988203644752502, + 0.998786985874176, + 0.998487114906311, + 0.9987252354621887, + 0.9811443090438843, + 0.9986903071403503, + 0.9987560510635376, + 0.9988551139831543, + 0.9994869232177734, + 0.9995014667510986, + 0.97507643699646, + 0.9983037710189819, + 0.9988736510276794, + 0.9989245533943176, + 0.9986391663551331, + 0.9873008728027344, + 0.9982553124427795, + 0.9962582588195801, + 0.9988665580749512, + 0.992768406867981, + 0.9988536834716797, + 0.9988767504692078, + 0.9989185333251953, + 0.9980652928352356, + 0.9988086223602295, + 0.9859601259231567, + 0.9878484010696411, + 0.9913937449455261, + 0.9994791150093079, + 0.9990559220314026, + 0.9994592070579529, + 0.9989097118377686, + 0.9985697269439697, + 0.998924195766449, + 0.9988058805465698, + 0.9989113807678223, + 0.99883633852005, + 0.9981986880302429, + 0.9994485974311829, + 0.9995062351226807, + 0.9988715052604675, + 0.983161449432373, + 0.9823761582374573 + ], + "sentiment_counts": { + "NEGATIVE": 32, + "POSITIVE": 47 + }, + "sentiment_distribution": { + "NEGATIVE": 0.4050632911392405, + "POSITIVE": 0.5949367088607594 + }, + "sentiment_overall": [ + "POSITIVE", + 0.5949367088607594 + ] + }, + "final_label": "POSITIVE", + "final_count": 181, + "final_proportion": 0.7211155378486056, + "final_counts": { + "POSITIVE": 181, + "NEGATIVE": 70 + }, + "final_distribution": { + "POSITIVE": 0.7211155378486056, + "NEGATIVE": 0.2788844621513944 + } + } }, { "season_code": "202301", "requirements": "After CHEM 134L or the equivalent in advanced placement. To accompany or follow CHEM 165 or 167. May not be taken after a higher-numbered laboratory course.", - "description": "Introduction to rate and equilibrium measurements, acid-base chemistry, synthesis of inorganic compounds, and qualitative\/quantitative analysis.", + "description": "Introduction to rate and equilibrium measurements, acid-base chemistry, synthesis of inorganic compounds, and qualitative/quantitative analysis.", "short_title": "General Chemistry Laboratory II", "title": "General Chemistry Laboratory II", "school": "YC", @@ -44763,7 +96053,7 @@ "13:00", "17:00", "SCL 228 - Sterling Chemistry Laboratory 228", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -44780,12 +96070,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "After CHEM 134L or the equivalent in advanced placement. To accompany or follow CHEM 165 or 167. May not be taken after a higher-numbered laboratory course.", - "description": "Introduction to rate and equilibrium measurements, acid-base chemistry, synthesis of inorganic compounds, and qualitative\/quantitative analysis.", + "description": "Introduction to rate and equilibrium measurements, acid-base chemistry, synthesis of inorganic compounds, and qualitative/quantitative analysis.", "short_title": "General Chemistry Laboratory II", "title": "General Chemistry Laboratory II", "school": "YC", @@ -44811,7 +96129,7 @@ "13:00", "17:00", "SCL 228 - Sterling Chemistry Laboratory 228", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -44828,12 +96146,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "After CHEM 134L or the equivalent in advanced placement. To accompany or follow CHEM 165 or 167. May not be taken after a higher-numbered laboratory course.", - "description": "Introduction to rate and equilibrium measurements, acid-base chemistry, synthesis of inorganic compounds, and qualitative\/quantitative analysis.", + "description": "Introduction to rate and equilibrium measurements, acid-base chemistry, synthesis of inorganic compounds, and qualitative/quantitative analysis.", "short_title": "General Chemistry Laboratory II", "title": "General Chemistry Laboratory II", "school": "YC", @@ -44859,7 +96205,7 @@ "13:00", "17:00", "SCL 228 - Sterling Chemistry Laboratory 228", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -44876,12 +96222,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "After CHEM 134L or the equivalent in advanced placement. To accompany or follow CHEM 165 or 167. May not be taken after a higher-numbered laboratory course.", - "description": "Introduction to rate and equilibrium measurements, acid-base chemistry, synthesis of inorganic compounds, and qualitative\/quantitative analysis.", + "description": "Introduction to rate and equilibrium measurements, acid-base chemistry, synthesis of inorganic compounds, and qualitative/quantitative analysis.", "short_title": "General Chemistry Laboratory II", "title": "General Chemistry Laboratory II", "school": "YC", @@ -44907,7 +96281,7 @@ "13:00", "17:00", "SCL 228 - Sterling Chemistry Laboratory 228", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -44924,12 +96298,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "After CHEM 134L or the equivalent in advanced placement. To accompany or follow CHEM 165 or 167. May not be taken after a higher-numbered laboratory course.", - "description": "Introduction to rate and equilibrium measurements, acid-base chemistry, synthesis of inorganic compounds, and qualitative\/quantitative analysis.", + "description": "Introduction to rate and equilibrium measurements, acid-base chemistry, synthesis of inorganic compounds, and qualitative/quantitative analysis.", "short_title": "General Chemistry Laboratory II", "title": "General Chemistry Laboratory II", "school": "YC", @@ -44955,7 +96357,7 @@ "13:00", "17:00", "SCL 228 - Sterling Chemistry Laboratory 228", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -44972,12 +96374,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "After CHEM 134L or the equivalent in advanced placement. To accompany or follow CHEM 165 or 167. May not be taken after a higher-numbered laboratory course.", - "description": "Introduction to rate and equilibrium measurements, acid-base chemistry, synthesis of inorganic compounds, and qualitative\/quantitative analysis.", + "description": "Introduction to rate and equilibrium measurements, acid-base chemistry, synthesis of inorganic compounds, and qualitative/quantitative analysis.", "short_title": "General Chemistry Laboratory II", "title": "General Chemistry Laboratory II", "school": "YC", @@ -45003,7 +96433,7 @@ "13:00", "17:00", "SCL 228 - Sterling Chemistry Laboratory 228", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -45020,12 +96450,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "After CHEM 134L or the equivalent in advanced placement. To accompany or follow CHEM 165 or 167. May not be taken after a higher-numbered laboratory course.", - "description": "Introduction to rate and equilibrium measurements, acid-base chemistry, synthesis of inorganic compounds, and qualitative\/quantitative analysis.", + "description": "Introduction to rate and equilibrium measurements, acid-base chemistry, synthesis of inorganic compounds, and qualitative/quantitative analysis.", "short_title": "General Chemistry Laboratory II", "title": "General Chemistry Laboratory II", "school": "YC", @@ -45051,7 +96509,7 @@ "13:00", "17:00", "SCL 228 - Sterling Chemistry Laboratory 228", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -45068,12 +96526,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "After CHEM 134L or the equivalent in advanced placement. To accompany or follow CHEM 165 or 167. May not be taken after a higher-numbered laboratory course.", - "description": "Introduction to rate and equilibrium measurements, acid-base chemistry, synthesis of inorganic compounds, and qualitative\/quantitative analysis.", + "description": "Introduction to rate and equilibrium measurements, acid-base chemistry, synthesis of inorganic compounds, and qualitative/quantitative analysis.", "short_title": "General Chemistry Laboratory II", "title": "General Chemistry Laboratory II", "school": "YC", @@ -45099,7 +96585,7 @@ "13:00", "17:00", "SCL 228 - Sterling Chemistry Laboratory 228", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -45116,12 +96602,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "After CHEM 134L or the equivalent in advanced placement. To accompany or follow CHEM 165 or 167. May not be taken after a higher-numbered laboratory course.", - "description": "Introduction to rate and equilibrium measurements, acid-base chemistry, synthesis of inorganic compounds, and qualitative\/quantitative analysis.", + "description": "Introduction to rate and equilibrium measurements, acid-base chemistry, synthesis of inorganic compounds, and qualitative/quantitative analysis.", "short_title": "General Chemistry Laboratory II", "title": "General Chemistry Laboratory II", "school": "YC", @@ -45147,7 +96661,7 @@ "13:00", "17:00", "SCL 228 - Sterling Chemistry Laboratory 228", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -45164,12 +96678,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "After CHEM 134L or the equivalent in advanced placement. To accompany or follow CHEM 165 or 167. May not be taken after a higher-numbered laboratory course.", - "description": "Introduction to rate and equilibrium measurements, acid-base chemistry, synthesis of inorganic compounds, and qualitative\/quantitative analysis.", + "description": "Introduction to rate and equilibrium measurements, acid-base chemistry, synthesis of inorganic compounds, and qualitative/quantitative analysis.", "short_title": "General Chemistry Laboratory II", "title": "General Chemistry Laboratory II", "school": "YC", @@ -45195,7 +96737,7 @@ "13:00", "17:00", "SCL 228 - Sterling Chemistry Laboratory 228", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -45212,12 +96754,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "After CHEM 134L or the equivalent in advanced placement. To accompany or follow CHEM 165 or 167. May not be taken after a higher-numbered laboratory course.", - "description": "Introduction to rate and equilibrium measurements, acid-base chemistry, synthesis of inorganic compounds, and qualitative\/quantitative analysis.", + "description": "Introduction to rate and equilibrium measurements, acid-base chemistry, synthesis of inorganic compounds, and qualitative/quantitative analysis.", "short_title": "General Chemistry Laboratory II", "title": "General Chemistry Laboratory II", "school": "YC", @@ -45243,7 +96813,7 @@ "13:00", "17:00", "SCL 228 - Sterling Chemistry Laboratory 228", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -45260,12 +96830,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "After CHEM 134L or the equivalent in advanced placement. To accompany or follow CHEM 165 or 167. May not be taken after a higher-numbered laboratory course.", - "description": "Introduction to rate and equilibrium measurements, acid-base chemistry, synthesis of inorganic compounds, and qualitative\/quantitative analysis.", + "description": "Introduction to rate and equilibrium measurements, acid-base chemistry, synthesis of inorganic compounds, and qualitative/quantitative analysis.", "short_title": "General Chemistry Laboratory II", "title": "General Chemistry Laboratory II", "school": "YC", @@ -45299,12 +96897,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "After CHEM 134L or the equivalent in advanced placement. To accompany or follow CHEM 165 or 167. May not be taken after a higher-numbered laboratory course.", - "description": "Introduction to rate and equilibrium measurements, acid-base chemistry, synthesis of inorganic compounds, and qualitative\/quantitative analysis.", + "description": "Introduction to rate and equilibrium measurements, acid-base chemistry, synthesis of inorganic compounds, and qualitative/quantitative analysis.", "short_title": "General Chemistry Laboratory II", "title": "General Chemistry Laboratory II", "school": "YC", @@ -45330,7 +96956,7 @@ "13:00", "17:00", "SCL 228 - Sterling Chemistry Laboratory 228", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -45347,12 +96973,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "After CHEM 134L or the equivalent in advanced placement. To accompany or follow CHEM 165 or 167. May not be taken after a higher-numbered laboratory course.", - "description": "Introduction to rate and equilibrium measurements, acid-base chemistry, synthesis of inorganic compounds, and qualitative\/quantitative analysis.", + "description": "Introduction to rate and equilibrium measurements, acid-base chemistry, synthesis of inorganic compounds, and qualitative/quantitative analysis.", "short_title": "General Chemistry Laboratory II", "title": "General Chemistry Laboratory II", "school": "YC", @@ -45378,7 +97032,7 @@ "13:00", "17:00", "SCL TBA - Sterling Chemistry Laboratory TBA", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -45395,12 +97049,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "After CHEM 134L or the equivalent in advanced placement. To accompany or follow CHEM 165 or 167. May not be taken after a higher-numbered laboratory course.", - "description": "Introduction to rate and equilibrium measurements, acid-base chemistry, synthesis of inorganic compounds, and qualitative\/quantitative analysis.", + "description": "Introduction to rate and equilibrium measurements, acid-base chemistry, synthesis of inorganic compounds, and qualitative/quantitative analysis.", "short_title": "General Chemistry Laboratory II", "title": "General Chemistry Laboratory II", "school": "YC", @@ -45426,7 +97108,7 @@ "13:00", "17:00", "SCL 228 - Sterling Chemistry Laboratory 228", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -45443,12 +97125,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "After CHEM 134L or the equivalent in advanced placement. To accompany or follow CHEM 165 or 167. May not be taken after a higher-numbered laboratory course.", - "description": "Introduction to rate and equilibrium measurements, acid-base chemistry, synthesis of inorganic compounds, and qualitative\/quantitative analysis.", + "description": "Introduction to rate and equilibrium measurements, acid-base chemistry, synthesis of inorganic compounds, and qualitative/quantitative analysis.", "short_title": "General Chemistry Laboratory II", "title": "General Chemistry Laboratory II", "school": "YC", @@ -45474,7 +97184,7 @@ "13:00", "17:00", "SCL 228 - Sterling Chemistry Laboratory 228", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -45491,12 +97201,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "After CHEM 134L or the equivalent in advanced placement. To accompany or follow CHEM 165 or 167. May not be taken after a higher-numbered laboratory course.", - "description": "Introduction to rate and equilibrium measurements, acid-base chemistry, synthesis of inorganic compounds, and qualitative\/quantitative analysis.", + "description": "Introduction to rate and equilibrium measurements, acid-base chemistry, synthesis of inorganic compounds, and qualitative/quantitative analysis.", "short_title": "General Chemistry Laboratory II", "title": "General Chemistry Laboratory II", "school": "YC", @@ -45530,12 +97268,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "After CHEM 134L or the equivalent in advanced placement. To accompany or follow CHEM 165 or 167. May not be taken after a higher-numbered laboratory course.", - "description": "Introduction to rate and equilibrium measurements, acid-base chemistry, synthesis of inorganic compounds, and qualitative\/quantitative analysis.", + "description": "Introduction to rate and equilibrium measurements, acid-base chemistry, synthesis of inorganic compounds, and qualitative/quantitative analysis.", "short_title": "General Chemistry Laboratory II", "title": "General Chemistry Laboratory II", "school": "YC", @@ -45561,7 +97327,7 @@ "13:00", "17:00", "SCL 228 - Sterling Chemistry Laboratory 228", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -45578,12 +97344,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "After CHEM 134L or the equivalent in advanced placement. To accompany or follow CHEM 165 or 167. May not be taken after a higher-numbered laboratory course.", - "description": "Introduction to rate and equilibrium measurements, acid-base chemistry, synthesis of inorganic compounds, and qualitative\/quantitative analysis.", + "description": "Introduction to rate and equilibrium measurements, acid-base chemistry, synthesis of inorganic compounds, and qualitative/quantitative analysis.", "short_title": "General Chemistry Laboratory II", "title": "General Chemistry Laboratory II", "school": "YC", @@ -45609,7 +97403,7 @@ "13:00", "17:00", "SCL 228 - Sterling Chemistry Laboratory 228", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -45626,12 +97420,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "After CHEM 134L or the equivalent in advanced placement. To accompany or follow CHEM 165 or 167. May not be taken after a higher-numbered laboratory course.", - "description": "Introduction to rate and equilibrium measurements, acid-base chemistry, synthesis of inorganic compounds, and qualitative\/quantitative analysis.", + "description": "Introduction to rate and equilibrium measurements, acid-base chemistry, synthesis of inorganic compounds, and qualitative/quantitative analysis.", "short_title": "General Chemistry Laboratory II", "title": "General Chemistry Laboratory II", "school": "YC", @@ -45657,7 +97479,7 @@ "13:00", "17:00", "SCL 228 - Sterling Chemistry Laboratory 228", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -45674,7 +97496,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -45711,7 +97561,7 @@ "10:30", "11:20", "SCL 111 - Sterling Chemistry Laboratory 111", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ], "Wednesday": [ @@ -45719,7 +97569,7 @@ "10:30", "11:20", "SCL 111 - Sterling Chemistry Laboratory 111", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ], "Friday": [ @@ -45727,7 +97577,7 @@ "10:30", "11:20", "SCL 111 - Sterling Chemistry Laboratory 111", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -45742,13 +97592,194 @@ ], "regnotes": "", "rp_attr": "This course meets during the Reading Period: the week between the last week of classes and finals week. Meets Reading Period", - "classnotes": "This course's lab sections day\/time will be determined by the Preference Selection system which will run from 9 am Monday, December 5th to 5 pm Monday, December 12th.\n \nAll those who register for this course in the Early registration period, will receive a separate email sent by the Chemistry department (chemistry.dus@yale.edu) with details regarding Preference Selection open\/close in early August. \n\nFinal section times are scheduled based on enrollment preferences.\n \nLecture meets every Monday, Wednesday, and Friday from 10:30 am to 11:20 am.\n\nFor further details about how Chemistry's Preference Selection works please visit: \nhttps:\/\/chem.yale.edu\/academics\/undergraduate-studies\/preference-selection?msclkid=2193c3feb10811ec827162df07eca554 ", + "classnotes": "This course's lab sections day/time will be determined by the Preference Selection system which will run from 9 am Monday, December 5th to 5 pm Monday, December 12th.\n \nAll those who register for this course in the Early registration period, will receive a separate email sent by the Chemistry department (chemistry.dus@yale.edu) with details regarding Preference Selection open/close in early August. \n\nFinal section times are scheduled based on enrollment preferences.\n \nLecture meets every Monday, Wednesday, and Friday from 10:30 am to 11:20 am.\n\nFor further details about how Chemistry's Preference Selection works please visit: \nhttps://chem.yale.edu/academics/undergraduate-studies/preference-selection?msclkid=2193c3feb10811ec827162df07eca554 ", "final_exam": "Friday, May 5, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83452\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83452/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986920952796936, + 0.9987704157829285, + 0.9987480640411377, + 0.9806371927261353, + 0.9988477230072021, + 0.9982839226722717, + 0.9988527297973633, + 0.9988136291503906, + 0.9979731440544128, + 0.9987698197364807, + 0.9989094734191895, + 0.9984931945800781, + 0.9988717436790466, + 0.9987040758132935, + 0.9985824823379517, + 0.9986522793769836, + 0.9986506104469299, + 0.9988266825675964, + 0.9987432360649109 + ], + "sentiment_counts": { + "POSITIVE": 19, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987815022468567, + 0.9986940026283264, + 0.9988126754760742, + 0.9989044666290283, + 0.9993739724159241, + 0.9988839030265808, + 0.9960899949073792, + 0.9898073077201843, + 0.9994620680809021, + 0.9988908171653748, + 0.9988613128662109, + 0.9933143258094788, + 0.9965924620628357, + 0.998822033405304, + 0.9994947910308838, + 0.998927652835846, + 0.9988724589347839, + 0.9987732768058777, + 0.9988440275192261 + ], + "sentiment_counts": { + "POSITIVE": 14, + "NEGATIVE": 5 + }, + "sentiment_distribution": { + "POSITIVE": 0.7368421052631579, + "NEGATIVE": 0.2631578947368421 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7368421052631579 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9977364540100098, + 0.9994844198226929, + 0.9988930821418762, + 0.9984941482543945, + 0.9994926452636719, + 0.9946441650390625, + 0.9982465505599976, + 0.9854423999786377, + 0.9989173412322998, + 0.994439959526062, + 0.9905933737754822, + 0.998239278793335, + 0.9745737910270691, + 0.9962335228919983, + 0.9995055198669434, + 0.9989029169082642, + 0.9933573603630066, + 0.998364269733429, + 0.9987943172454834 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 6 + }, + "sentiment_distribution": { + "POSITIVE": 0.6842105263157895, + "NEGATIVE": 0.3157894736842105 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6842105263157895 + ] + }, + "final_label": "POSITIVE", + "final_count": 46, + "final_proportion": 0.8070175438596491, + "final_counts": { + "POSITIVE": 46, + "NEGATIVE": 11 + }, + "final_distribution": { + "POSITIVE": 0.8070175438596491, + "NEGATIVE": 0.19298245614035087 + } + } }, { "season_code": "202301", @@ -45779,7 +97810,7 @@ "11:35", "12:25", "SCL 23 - Sterling Chemistry Laboratory 23", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -45798,7 +97829,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -45829,7 +97888,7 @@ "13:30", "14:20", "SCL 18 - Sterling Chemistry Laboratory 18", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -45848,7 +97907,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -45879,7 +97966,7 @@ "15:30", "16:20", "SCL 18 - Sterling Chemistry Laboratory 18", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -45898,7 +97985,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -45929,7 +98044,7 @@ "15:30", "16:20", "SCL 18 - Sterling Chemistry Laboratory 18", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -45948,7 +98063,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -45985,7 +98128,7 @@ "10:30", "11:20", "SCL 110 - Sterling Chemistry Laboratory 110", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ], "Wednesday": [ @@ -45993,7 +98136,7 @@ "10:30", "11:20", "SCL 110 - Sterling Chemistry Laboratory 110", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ], "Friday": [ @@ -46001,7 +98144,7 @@ "10:30", "11:20", "SCL 110 - Sterling Chemistry Laboratory 110", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -46014,13 +98157,584 @@ "flags": [], "regnotes": "", "rp_attr": "This course meets during the Reading Period: the week between the last week of classes and finals week. Meets Reading Period", - "classnotes": "This course's lab sections day\/time will be determined by the Preference Selection system which will run from 9 am Monday, December 5th to 5 pm Monday, December 12th.\n \nAll those who register for this course in the Early registration period, will receive a separate email sent by the Chemistry department (chemistry.dus@yale.edu) with details regarding Preference Selection open\/close in early August. \n\nFinal discussion section times are scheduled based on enrollment preferences.\n \nLecture meets every Monday, Wednesday, and Friday from 10:30 am to 11:20 am.\n\nFor further details about how Chemistry's Preference Selection works please visit: \nhttps:\/\/chem.yale.edu\/academics\/undergraduate-studies\/preference-selection?msclkid=2193c3feb10811ec827162df07eca554 ", + "classnotes": "This course's lab sections day/time will be determined by the Preference Selection system which will run from 9 am Monday, December 5th to 5 pm Monday, December 12th.\n \nAll those who register for this course in the Early registration period, will receive a separate email sent by the Chemistry department (chemistry.dus@yale.edu) with details regarding Preference Selection open/close in early August. \n\nFinal discussion section times are scheduled based on enrollment preferences.\n \nLecture meets every Monday, Wednesday, and Friday from 10:30 am to 11:20 am.\n\nFor further details about how Chemistry's Preference Selection works please visit: \nhttps://chem.yale.edu/academics/undergraduate-studies/preference-selection?msclkid=2193c3feb10811ec827162df07eca554 ", "final_exam": "Friday, May 5, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83456\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83456/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988258481025696, + 0.9989336133003235, + 0.9981175661087036, + 0.9820814728736877, + 0.9991742968559265, + 0.9939537644386292, + 0.9985837936401367, + 0.9986746311187744, + 0.9988731741905212, + 0.9989109039306641, + 0.9986967444419861, + 0.9989386200904846, + 0.9987074136734009, + 0.9988498687744141, + 0.9988753199577332, + 0.9981718063354492, + 0.9627301096916199, + 0.9897087216377258, + 0.9995055198669434, + 0.9985777139663696, + 0.9985502362251282, + 0.9986907839775085, + 0.8815661668777466, + 0.9994207620620728, + 0.9985259175300598, + 0.9987862706184387, + 0.998831570148468, + 0.9945953488349915, + 0.9978843331336975, + 0.998626708984375, + 0.9986365437507629, + 0.9988328814506531, + 0.9984995126724243, + 0.9988369345664978, + 0.9988803267478943, + 0.9986153841018677, + 0.9987189769744873, + 0.9975637197494507, + 0.9984123706817627, + 0.9994962215423584, + 0.9987473487854004, + 0.998246431350708, + 0.9983863830566406, + 0.997689962387085, + 0.9859601259231567, + 0.9987762570381165, + 0.9986697435379028, + 0.9987884163856506, + 0.9987187385559082, + 0.9986981153488159, + 0.9987118244171143, + 0.9987351298332214, + 0.9988491535186768, + 0.9971145391464233, + 0.9988129138946533, + 0.9986391663551331, + 0.9982514977455139, + 0.9982547163963318, + 0.9986039996147156, + 0.9471295475959778, + 0.9976440072059631, + 0.998748779296875, + 0.9987614154815674, + 0.9989050626754761, + 0.9969243407249451, + 0.9964659214019775, + 0.9985174536705017, + 0.9987027645111084, + 0.998380184173584, + 0.998736560344696, + 0.9988601207733154, + 0.9985774755477905, + 0.9986966252326965, + 0.9987345337867737, + 0.9989181756973267, + 0.998478353023529, + 0.9988256096839905, + 0.9988962411880493, + 0.9984084963798523 + ], + "sentiment_counts": { + "POSITIVE": 70, + "NEGATIVE": 9 + }, + "sentiment_distribution": { + "POSITIVE": 0.8860759493670886, + "NEGATIVE": 0.11392405063291139 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8860759493670886 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9991777539253235, + 0.9987278580665588, + 0.999506950378418, + 0.9945476651191711, + 0.9993663430213928, + 0.9995090961456299, + 0.9979456067085266, + 0.9995003938674927, + 0.9994571805000305, + 0.994604766368866, + 0.9987911581993103, + 0.9989097118377686, + 0.9988930821418762, + 0.9989301562309265, + 0.9926437735557556, + 0.998685896396637, + 0.9988988637924194, + 0.9988295435905457, + 0.981661319732666, + 0.9989318251609802, + 0.9967013001441956, + 0.9915747046470642, + 0.9994413256645203, + 0.9994813799858093, + 0.9985865354537964, + 0.99762362241745, + 0.9994460940361023, + 0.9991390705108643, + 0.9980220794677734, + 0.9850024580955505, + 0.9995076656341553, + 0.9985264539718628, + 0.9964919686317444, + 0.9976430535316467, + 0.9986618757247925, + 0.9980202913284302, + 0.9986369013786316, + 0.9987536668777466, + 0.9982031583786011, + 0.9995027780532837, + 0.9994631409645081, + 0.9987927675247192, + 0.9991725087165833, + 0.9971473813056946, + 0.9994732737541199, + 0.9984807372093201, + 0.9988904595375061, + 0.9994379878044128, + 0.9995124340057373, + 0.9976619482040405, + 0.9994567036628723, + 0.999504566192627, + 0.9983527660369873, + 0.9949105381965637, + 0.9859601259231567, + 0.999502420425415, + 0.9961236119270325, + 0.9944508075714111, + 0.9995013475418091, + 0.9918926954269409, + 0.9986323714256287, + 0.9994994401931763, + 0.9986578226089478, + 0.9994761347770691, + 0.9986935257911682, + 0.9994779229164124, + 0.9986799359321594, + 0.9988316893577576, + 0.9959096908569336, + 0.9995096921920776, + 0.9976440072059631, + 0.9989233613014221, + 0.9988139867782593, + 0.999336302280426, + 0.9333736300468445, + 0.9922214150428772, + 0.9994851350784302, + 0.9992207288742065, + 0.9988922476768494, + 0.9986490607261658, + 0.9988617897033691, + 0.999504566192627, + 0.9994627833366394, + 0.9989277720451355, + 0.9993651509284973, + 0.9994496703147888, + 0.998913049697876, + 0.9986200332641602, + 0.9968281388282776, + 0.9994256496429443, + 0.9989172220230103, + 0.99029541015625 + ], + "sentiment_counts": { + "NEGATIVE": 48, + "POSITIVE": 44 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5217391304347826, + "POSITIVE": 0.4782608695652174 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9965431094169617, + 0.9987549781799316, + 0.9982170462608337, + 0.9995051622390747, + 0.9978566765785217, + 0.9979994893074036, + 0.998734176158905, + 0.984941303730011, + 0.9915897250175476, + 0.9989171028137207, + 0.9987269043922424, + 0.998910665512085, + 0.9995057582855225, + 0.9986644983291626, + 0.9989293217658997, + 0.9981967806816101, + 0.9954689741134644, + 0.9992399215698242, + 0.9995025396347046, + 0.999491810798645, + 0.9987332224845886, + 0.9832888245582581, + 0.9988598823547363, + 0.9995036125183105, + 0.9992861151695251, + 0.9990585446357727, + 0.9988061189651489, + 0.9995104074478149, + 0.9964325428009033, + 0.980291485786438, + 0.9983699917793274, + 0.9980652928352356, + 0.9994871616363525, + 0.9995090961456299, + 0.9975380897521973, + 0.9988603591918945, + 0.9980409741401672, + 0.9995043277740479, + 0.9937072396278381, + 0.9988161325454712, + 0.9995113611221313, + 0.9994902610778809, + 0.9995067119598389, + 0.9988552331924438, + 0.9986125230789185, + 0.9859601259231567, + 0.9986829161643982, + 0.998795747756958, + 0.9936661124229431, + 0.9928921461105347, + 0.9982553124427795, + 0.9988849759101868, + 0.9988203644752502, + 0.9995039701461792, + 0.9989200830459595, + 0.9953698515892029, + 0.9988231062889099, + 0.9987986087799072, + 0.998849630355835, + 0.9983795881271362, + 0.9976440072059631, + 0.9989140033721924, + 0.9988294243812561, + 0.9995040893554688, + 0.9986408352851868, + 0.9965084195137024, + 0.9995008707046509, + 0.9951159954071045, + 0.9989227652549744, + 0.9987926483154297, + 0.9988523721694946, + 0.9988930821418762, + 0.998536229133606, + 0.9994105100631714, + 0.9995129108428955, + 0.9893580079078674, + 0.9994194507598877, + 0.9950631260871887, + 0.998218834400177, + 0.9989207983016968, + 0.998110294342041 + ], + "sentiment_counts": { + "NEGATIVE": 41, + "POSITIVE": 40 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5061728395061729, + "POSITIVE": 0.49382716049382713 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "final_label": "POSITIVE", + "final_count": 154, + "final_proportion": 0.6111111111111112, + "final_counts": { + "POSITIVE": 154, + "NEGATIVE": 98 + }, + "final_distribution": { + "POSITIVE": 0.6111111111111112, + "NEGATIVE": 0.3888888888888889 + } + } }, { "season_code": "202301", @@ -46051,7 +98765,7 @@ "11:35", "12:25", "SCL 18 - Sterling Chemistry Laboratory 18", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -46070,7 +98784,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -46101,7 +98843,7 @@ "13:30", "14:20", "SCL 19 - Sterling Chemistry Laboratory 19", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -46120,7 +98862,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -46151,7 +98921,7 @@ "14:30", "15:20", "SCL 19 - Sterling Chemistry Laboratory 19", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -46170,7 +98940,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -46201,7 +98999,7 @@ "15:30", "16:20", "SCL 19 - Sterling Chemistry Laboratory 19", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -46220,7 +99018,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -46286,7 +99112,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -46317,7 +99171,7 @@ "19:00", "19:50", "WLH 011 - William L. Harkness Hall 011", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -46336,7 +99190,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -46367,7 +99249,7 @@ "11:35", "12:25", "SCL 253 - Sterling Chemistry Laboratory 253", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -46386,7 +99268,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -46417,7 +99327,7 @@ "13:30", "14:20", "SCL 18 - Sterling Chemistry Laboratory 18", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -46436,7 +99346,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -46467,7 +99405,7 @@ "14:30", "15:20", "SCL 18 - Sterling Chemistry Laboratory 18", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -46486,7 +99424,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -46552,7 +99518,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -46618,7 +99612,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -46684,7 +99706,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -46715,7 +99765,7 @@ "11:35", "12:25", "SCL 19 - Sterling Chemistry Laboratory 19", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -46734,7 +99784,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -46800,7 +99878,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -46831,7 +99937,7 @@ "14:30", "15:20", "SCL 23 - Sterling Chemistry Laboratory 23", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -46850,7 +99956,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -46881,7 +100015,7 @@ "15:30", "16:20", "SCL 23 - Sterling Chemistry Laboratory 23", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -46900,7 +100034,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -46931,7 +100093,7 @@ "19:00", "19:50", "WLH 112 - William L. Harkness Hall 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -46950,7 +100112,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -46981,7 +100171,7 @@ "13:30", "14:20", "SCL 21 - Sterling Chemistry Laboratory 21", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -47000,7 +100190,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -47031,7 +100249,7 @@ "14:30", "15:20", "SCL 21 - Sterling Chemistry Laboratory 21", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -47050,7 +100268,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -47081,7 +100327,7 @@ "11:35", "12:25", "SCL 18 - Sterling Chemistry Laboratory 18", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -47100,7 +100346,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -47131,7 +100405,7 @@ "15:30", "16:20", "SCL 19 - Sterling Chemistry Laboratory 19", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -47150,7 +100424,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -47216,7 +100518,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -47253,7 +100583,7 @@ "10:30", "11:20", "SCL 21 - Sterling Chemistry Laboratory 21", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ], "Wednesday": [ @@ -47261,7 +100591,7 @@ "10:30", "11:20", "SCL 21 - Sterling Chemistry Laboratory 21", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ], "Friday": [ @@ -47269,7 +100599,7 @@ "10:30", "11:20", "SCL 21 - Sterling Chemistry Laboratory 21", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -47285,10 +100615,38 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87251\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/87251/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -47325,7 +100683,7 @@ "10:30", "11:20", "SCL 160 - Sterling Chemistry Laboratory 160", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ], "Wednesday": [ @@ -47333,7 +100691,7 @@ "10:30", "11:20", "SCL 160 - Sterling Chemistry Laboratory 160", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ], "Friday": [ @@ -47341,7 +100699,7 @@ "10:30", "11:20", "SCL 160 - Sterling Chemistry Laboratory 160", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -47356,13 +100714,156 @@ ], "regnotes": "", "rp_attr": "This course meets during the Reading Period: the week between the last week of classes and finals week. Meets Reading Period", - "classnotes": "This course's lab sections day\/time will be determined by the Preference Selection system which will run from 9 am Monday, December 5th to 5 pm Monday, December 12th.\n \nAll those who register for this course in the Early registration period, will receive a separate email sent by the Chemistry department (chemistry.dus@yale.edu) with details regarding Preference Selection open\/close in early August. \n\nFinal discussion section times are scheduled based on enrollment preferences.\n \nLecture meets every Monday, Wednesday, and Friday from 10:30 am to 11:20 am.\n\nFor further details about how Chemistry's Preference Selection works please visit: \nhttps:\/\/chem.yale.edu\/academics\/undergraduate-studies\/preference-selection?msclkid=2193c3feb10811ec827162df07eca554 \n", + "classnotes": "This course's lab sections day/time will be determined by the Preference Selection system which will run from 9 am Monday, December 5th to 5 pm Monday, December 12th.\n \nAll those who register for this course in the Early registration period, will receive a separate email sent by the Chemistry department (chemistry.dus@yale.edu) with details regarding Preference Selection open/close in early August. \n\nFinal discussion section times are scheduled based on enrollment preferences.\n \nLecture meets every Monday, Wednesday, and Friday from 10:30 am to 11:20 am.\n\nFor further details about how Chemistry's Preference Selection works please visit: \nhttps://chem.yale.edu/academics/undergraduate-studies/preference-selection?msclkid=2193c3feb10811ec827162df07eca554 \n", "final_exam": "Friday, May 5, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83459\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83459/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988555908203125, + 0.9987286925315857, + 0.9984605312347412, + 0.9979124665260315, + 0.9988958835601807, + 0.9987105131149292, + 0.8777397274971008, + 0.998665452003479, + 0.9983972907066345, + 0.9986397624015808, + 0.9989054203033447, + 0.9989066123962402 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9166666666666666 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988923668861389, + 0.9989338517189026, + 0.9988828301429749, + 0.998829185962677, + 0.998754620552063, + 0.9989398121833801, + 0.9988492727279663, + 0.9970046877861023, + 0.9989016056060791, + 0.998838484287262, + 0.9988512992858887, + 0.9989001750946045, + 0.9987265467643738 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9230769230769231, + "NEGATIVE": 0.07692307692307693 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9230769230769231 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986955523490906, + 0.9988038539886475, + 0.9985834360122681, + 0.9988150596618652, + 0.9988341927528381, + 0.9989271759986877, + 0.9983446598052979, + 0.9994397759437561, + 0.9987952709197998, + 0.9989126920700073, + 0.9839896559715271, + 0.9988818764686584, + 0.9989088773727417 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8461538461538461, + "NEGATIVE": 0.15384615384615385 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8461538461538461 + ] + }, + "final_label": "POSITIVE", + "final_count": 34, + "final_proportion": 0.8947368421052632, + "final_counts": { + "POSITIVE": 34, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.8947368421052632, + "NEGATIVE": 0.10526315789473684 + } + } }, { "season_code": "202301", @@ -47393,7 +100894,7 @@ "13:30", "14:20", "SCL 19 - Sterling Chemistry Laboratory 19", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -47412,7 +100913,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -47443,7 +100972,7 @@ "14:30", "15:20", "SCL 18 - Sterling Chemistry Laboratory 18", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -47462,7 +100991,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -47528,7 +101085,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -47594,7 +101179,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -47660,7 +101273,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -47691,7 +101332,7 @@ "14:30", "15:20", "SCL 18 - Sterling Chemistry Laboratory 18", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -47710,7 +101351,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -47776,7 +101445,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -47807,7 +101504,7 @@ "19:00", "19:50", "SCL 19 - Sterling Chemistry Laboratory 19", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -47826,7 +101523,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -47863,7 +101588,7 @@ "9:00", "10:15", "SCL 160 - Sterling Chemistry Laboratory 160", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ], "Wednesday": [ @@ -47871,7 +101596,7 @@ "9:00", "10:15", "SCL 160 - Sterling Chemistry Laboratory 160", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -47882,13 +101607,284 @@ "flags": [], "regnotes": "", "rp_attr": "This course meets during the Reading Period: the week between the last week of classes and finals week. Meets Reading Period", - "classnotes": "This course's lab sections day\/time will be determined by the Preference Selection system which will run from 9 am Monday, December 5th to 5 pm Monday, December 12th.\n \nAll those who register for this course in the Early registration period, will receive a separate email sent by the Chemistry department (chemistry.dus@yale.edu) with details regarding Preference Selection open\/close in early August. \n\nFinal discussion section times are scheduled based on enrollment preferences.\n \nLecture meets every Monday and Wednesday 9:00 am to 10:15 am.\n\nFor further details about how Chemistry's Preference Selection works please visit: \nhttps:\/\/chem.yale.edu\/academics\/undergraduate-studies\/preference-selection?msclkid=2193c3feb10811ec827162df07eca554 ", + "classnotes": "This course's lab sections day/time will be determined by the Preference Selection system which will run from 9 am Monday, December 5th to 5 pm Monday, December 12th.\n \nAll those who register for this course in the Early registration period, will receive a separate email sent by the Chemistry department (chemistry.dus@yale.edu) with details regarding Preference Selection open/close in early August. \n\nFinal discussion section times are scheduled based on enrollment preferences.\n \nLecture meets every Monday and Wednesday 9:00 am to 10:15 am.\n\nFor further details about how Chemistry's Preference Selection works please visit: \nhttps://chem.yale.edu/academics/undergraduate-studies/preference-selection?msclkid=2193c3feb10811ec827162df07eca554 ", "final_exam": "Saturday, May 6, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83463\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83463/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9965751767158508, + 0.9988961219787598, + 0.9988001585006714, + 0.9983605742454529, + 0.9986352324485779, + 0.9984602928161621, + 0.9988873600959778, + 0.998838484287262, + 0.9988666772842407, + 0.9987469911575317, + 0.9958974123001099, + 0.9989243149757385, + 0.9988069534301758, + 0.9987500905990601, + 0.9951103329658508, + 0.9989290833473206, + 0.9989135265350342, + 0.9983918070793152, + 0.9988448619842529, + 0.9986724853515625, + 0.9907530546188354, + 0.9987838864326477, + 0.9982913136482239, + 0.9988560676574707, + 0.9989171028137207, + 0.9982518553733826, + 0.9988144636154175, + 0.9988621473312378, + 0.9983567595481873, + 0.9983689188957214, + 0.9988539218902588, + 0.9989174604415894, + 0.9983751773834229, + 0.9987302422523499 + ], + "sentiment_counts": { + "POSITIVE": 33, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9705882352941176, + "NEGATIVE": 0.029411764705882353 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9705882352941176 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9963697195053101, + 0.9988747239112854, + 0.9988824725151062, + 0.9988260865211487, + 0.9988672733306885, + 0.9966781139373779, + 0.99891197681427, + 0.9955279231071472, + 0.994874894618988, + 0.9988729357719421, + 0.9902820587158203, + 0.9989330172538757, + 0.9988969564437866, + 0.9956276416778564, + 0.9982404708862305, + 0.9989069700241089, + 0.9988813996315002, + 0.9988840222358704, + 0.9988126754760742, + 0.9982737302780151, + 0.998849630355835, + 0.9925462603569031, + 0.9984152317047119, + 0.998928964138031, + 0.8530094027519226, + 0.9992595314979553, + 0.9986746311187744, + 0.9987503290176392, + 0.9988014698028564, + 0.9987691044807434, + 0.9989064931869507, + 0.9988117218017578, + 0.9989216327667236, + 0.9989207983016968 + ], + "sentiment_counts": { + "POSITIVE": 26, + "NEGATIVE": 8 + }, + "sentiment_distribution": { + "POSITIVE": 0.7647058823529411, + "NEGATIVE": 0.23529411764705882 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7647058823529411 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988346695899963, + 0.9989226460456848, + 0.998820960521698, + 0.9988810420036316, + 0.9987908005714417, + 0.998906135559082, + 0.9353981018066406, + 0.9978762865066528, + 0.9928094148635864, + 0.9988937973976135, + 0.9988532066345215, + 0.9985246062278748, + 0.9989203214645386, + 0.9988489151000977, + 0.9989311099052429, + 0.9985018968582153, + 0.9988793730735779, + 0.9972507357597351, + 0.9959927797317505, + 0.9985941052436829, + 0.9988875985145569, + 0.9985799789428711, + 0.9989117383956909, + 0.9680004715919495, + 0.998701810836792, + 0.9905803799629211, + 0.9976692795753479, + 0.9989162683486938, + 0.9989110231399536, + 0.998638927936554, + 0.9910976886749268, + 0.9988781809806824, + 0.998764157295227, + 0.9988032579421997 + ], + "sentiment_counts": { + "POSITIVE": 31, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.9117647058823529, + "NEGATIVE": 0.08823529411764706 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9117647058823529 + ] + }, + "final_label": "POSITIVE", + "final_count": 90, + "final_proportion": 0.8823529411764706, + "final_counts": { + "POSITIVE": 90, + "NEGATIVE": 12 + }, + "final_distribution": { + "POSITIVE": 0.8823529411764706, + "NEGATIVE": 0.11764705882352941 + } + } }, { "season_code": "202301", @@ -47944,7 +101940,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -47975,7 +101999,7 @@ "14:30", "15:20", "SCL 19 - Sterling Chemistry Laboratory 19", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -47992,7 +102016,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -48023,7 +102075,7 @@ "20:00", "20:50", "WALL53 B-03 - 53 Wall Street B-03", - "https:\/\/map.yale.edu\/?id=1910#!m\/559554" + "https://map.yale.edu/?id=1910#!m/559554" ] ] }, @@ -48040,7 +102092,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -48096,7 +102176,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -48127,7 +102235,7 @@ "14:30", "15:20", "SCL 21 - Sterling Chemistry Laboratory 21", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -48144,7 +102252,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -48175,7 +102311,7 @@ "20:00", "20:50", "WLH 003 - William L. Harkness Hall 003", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -48192,7 +102328,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -48229,7 +102393,7 @@ "9:00", "10:15", "SCL 111 - Sterling Chemistry Laboratory 111", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ], "Wednesday": [ @@ -48237,7 +102401,7 @@ "9:00", "10:15", "SCL 111 - Sterling Chemistry Laboratory 111", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -48248,13 +102412,148 @@ "flags": [], "regnotes": "", "rp_attr": "This course meets during the Reading Period: the week between the last week of classes and finals week. Meets Reading Period", - "classnotes": "This course's lab sections day\/time will be determined by the Preference Selection system which will run from 9 am Monday, December 5th to 5 pm Monday, December 12th.\n \nAll those who register for this course in the Early registration period, will receive a separate email sent by the Chemistry department (chemistry.dus@yale.edu) with details regarding Preference Selection open\/close in early August. \n\nFinal discussion section times are scheduled based on enrollment preferences.\n \nLecture meets every Monday and Wednesday from 9:00 am to 10:15 am.\n\nFor further details about how Chemistry's Preference Selection works please visit: \nhttps:\/\/chem.yale.edu\/academics\/undergraduate-studies\/preference-selection?msclkid=2193c3feb10811ec827162df07eca554 ", + "classnotes": "This course's lab sections day/time will be determined by the Preference Selection system which will run from 9 am Monday, December 5th to 5 pm Monday, December 12th.\n \nAll those who register for this course in the Early registration period, will receive a separate email sent by the Chemistry department (chemistry.dus@yale.edu) with details regarding Preference Selection open/close in early August. \n\nFinal discussion section times are scheduled based on enrollment preferences.\n \nLecture meets every Monday and Wednesday from 9:00 am to 10:15 am.\n\nFor further details about how Chemistry's Preference Selection works please visit: \nhttps://chem.yale.edu/academics/undergraduate-studies/preference-selection?msclkid=2193c3feb10811ec827162df07eca554 ", "final_exam": "Saturday, May 6, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83466\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83466/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988123178482056, + 0.998890221118927, + 0.9980229139328003, + 0.9989227652549744, + 0.9986431002616882, + 0.9985162615776062, + 0.9978252649307251, + 0.9988310933113098, + 0.9984879493713379, + 0.9983421564102173, + 0.9988547563552856, + 0.9988921284675598 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9974470138549805, + 0.9987982511520386, + 0.9989235997200012, + 0.9989365935325623, + 0.9966335892677307, + 0.998838484287262, + 0.9987049102783203, + 0.9984369874000549, + 0.9988154172897339, + 0.998828113079071, + 0.9987169504165649, + 0.9988640546798706 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988566637039185, + 0.9941611886024475, + 0.9989387392997742, + 0.9897107481956482, + 0.9982172846794128, + 0.9974701404571533, + 0.9987550973892212, + 0.9970971345901489, + 0.9988698363304138, + 0.997117280960083, + 0.9968510270118713 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 35, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 35 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -48285,7 +102584,7 @@ "19:00", "19:50", "WLH 002 - William L. Harkness Hall 002", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -48302,7 +102601,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -48333,7 +102660,7 @@ "14:30", "15:20", "SCL 21 - Sterling Chemistry Laboratory 21", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -48350,7 +102677,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -48381,7 +102736,7 @@ "19:00", "19:50", "WLH 011 - William L. Harkness Hall 011", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -48398,7 +102753,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -48429,7 +102812,7 @@ "20:00", "20:50", "WLH 001 - William L. Harkness Hall 001", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -48446,7 +102829,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -48486,7 +102897,7 @@ "9:00", "10:15", "SCL 110 - Sterling Chemistry Laboratory 110", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ], "Wednesday": [ @@ -48494,7 +102905,7 @@ "9:00", "10:15", "SCL 110 - Sterling Chemistry Laboratory 110", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -48505,13 +102916,312 @@ "flags": [], "regnotes": "", "rp_attr": "This course meets during the Reading Period: the week between the last week of classes and finals week. Meets Reading Period", - "classnotes": "This course's lab sections day\/time will be determined by the Preference Selection system which will run from 9 am Monday, December 5th to 5 pm Monday, December 12th.\n \nAll those who register for this course in the Early registration period, will receive a separate email sent by the Chemistry department (chemistry.dus@yale.edu) with details regarding Preference Selection open\/close in early August. \n\nFinal discussion section times are scheduled based on enrollment preferences.\n \nLecture meets every Monday and Wednesday from 9:00 am to 10:15 am.\n\nFor further details about how Chemistry's Preference Selection works please visit: \nhttps:\/\/chem.yale.edu\/academics\/undergraduate-studies\/preference-selection?msclkid=2193c3feb10811ec827162df07eca554 ", + "classnotes": "This course's lab sections day/time will be determined by the Preference Selection system which will run from 9 am Monday, December 5th to 5 pm Monday, December 12th.\n \nAll those who register for this course in the Early registration period, will receive a separate email sent by the Chemistry department (chemistry.dus@yale.edu) with details regarding Preference Selection open/close in early August. \n\nFinal discussion section times are scheduled based on enrollment preferences.\n \nLecture meets every Monday and Wednesday from 9:00 am to 10:15 am.\n\nFor further details about how Chemistry's Preference Selection works please visit: \nhttps://chem.yale.edu/academics/undergraduate-studies/preference-selection?msclkid=2193c3feb10811ec827162df07eca554 ", "final_exam": "Saturday, May 6, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83491\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83491/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9987797141075134, + 0.9912303686141968, + 0.9988709092140198, + 0.9988833069801331, + 0.9985371828079224, + 0.9984607696533203, + 0.9985864162445068, + 0.9819260239601135, + 0.9986321330070496, + 0.9962928891181946, + 0.9988038539886475, + 0.9989163875579834, + 0.998126208782196, + 0.9989156723022461, + 0.9987726807594299, + 0.9988322854042053, + 0.9989075660705566, + 0.9987170696258545, + 0.9988009929656982, + 0.9982545971870422, + 0.9986634254455566, + 0.9987311959266663, + 0.9984347224235535, + 0.9988742470741272, + 0.9988304972648621, + 0.9987497329711914, + 0.9982907176017761, + 0.9986838698387146, + 0.9957975149154663, + 0.9986504912376404, + 0.9980230331420898, + 0.9987366795539856, + 0.9974714517593384, + 0.9987058639526367, + 0.9991593360900879 + ], + "sentiment_counts": { + "POSITIVE": 34, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9714285714285714, + "NEGATIVE": 0.02857142857142857 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9714285714285714 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9994909763336182, + 0.9941434264183044, + 0.9919102787971497, + 0.9975228905677795, + 0.9992684721946716, + 0.9984930753707886, + 0.9988941550254822, + 0.9988687634468079, + 0.9994996786117554, + 0.9988412261009216, + 0.998890221118927, + 0.9994956254959106, + 0.9991621971130371, + 0.9982333183288574, + 0.9987152814865112, + 0.9878377914428711, + 0.9980588555335999, + 0.9986795783042908, + 0.9965542554855347, + 0.997891366481781, + 0.9406068921089172, + 0.9988192915916443, + 0.9980257749557495, + 0.9987462759017944, + 0.9984632730484009, + 0.9908038377761841, + 0.9995081424713135, + 0.9994713664054871, + 0.9988409876823425, + 0.9987967014312744, + 0.998874843120575, + 0.9940198659896851, + 0.9987220168113708, + 0.9968011379241943, + 0.9942832589149475, + 0.982225775718689, + 0.9995040893554688, + 0.9995056390762329, + 0.9987320303916931, + 0.9995100498199463, + 0.9995021820068359, + 0.9994974136352539 + ], + "sentiment_counts": { + "NEGATIVE": 20, + "POSITIVE": 22 + }, + "sentiment_distribution": { + "NEGATIVE": 0.47619047619047616, + "POSITIVE": 0.5238095238095238 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9981339573860168, + 0.9984098672866821, + 0.9989132881164551, + 0.9988728165626526, + 0.9989151954650879, + 0.997819185256958, + 0.99882572889328, + 0.9973899722099304, + 0.9810044169425964, + 0.9994679093360901, + 0.9986270666122437, + 0.9987321496009827, + 0.9716548323631287, + 0.9826935529708862, + 0.9931574463844299, + 0.9995112419128418, + 0.9989051818847656, + 0.9989016056060791, + 0.9936902523040771, + 0.9988563060760498, + 0.9984544515609741, + 0.9962730407714844, + 0.998026430606842, + 0.9995102882385254, + 0.9988669157028198, + 0.9993302822113037, + 0.9989063739776611, + 0.9994988441467285, + 0.9988803267478943, + 0.9986771941184998, + 0.9961861968040466, + 0.9994825124740601, + 0.9986010193824768, + 0.9954383969306946, + 0.9851245880126953, + 0.9988769888877869, + 0.9994778037071228, + 0.9989562034606934, + 0.9994590878486633 + ], + "sentiment_counts": { + "NEGATIVE": 17, + "POSITIVE": 22 + }, + "sentiment_distribution": { + "NEGATIVE": 0.4358974358974359, + "POSITIVE": 0.5641025641025641 + }, + "sentiment_overall": [ + "POSITIVE", + 0.5641025641025641 + ] + }, + "final_label": "POSITIVE", + "final_count": 78, + "final_proportion": 0.6724137931034483, + "final_counts": { + "POSITIVE": 78, + "NEGATIVE": 38 + }, + "final_distribution": { + "POSITIVE": 0.6724137931034483, + "NEGATIVE": 0.3275862068965517 + } + } }, { "season_code": "202301", @@ -48542,7 +103252,7 @@ "11:35", "12:25", "SCL 23 - Sterling Chemistry Laboratory 23", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -48559,7 +103269,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -48590,7 +103328,7 @@ "13:30", "14:20", "SCL 23 - Sterling Chemistry Laboratory 23", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -48607,7 +103345,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -48663,7 +103429,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -48694,7 +103488,7 @@ "19:00", "19:50", "WLH 003 - William L. Harkness Hall 003", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -48711,7 +103505,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -48742,7 +103564,7 @@ "11:35", "12:25", "SCL 19 - Sterling Chemistry Laboratory 19", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -48759,7 +103581,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -48815,7 +103665,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -48846,7 +103724,7 @@ "14:30", "15:20", "SCL 23 - Sterling Chemistry Laboratory 23", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -48863,7 +103741,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -48894,7 +103800,7 @@ "19:00", "19:50", "WLH 003 - William L. Harkness Hall 003", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -48911,7 +103817,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -48967,7 +103901,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -49023,7 +103985,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -49054,7 +104044,7 @@ "14:30", "15:20", "SCL 21 - Sterling Chemistry Laboratory 21", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -49071,7 +104061,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -49127,7 +104145,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -49183,7 +104229,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -49239,7 +104313,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -49270,7 +104372,7 @@ "14:30", "15:20", "SCL 21 - Sterling Chemistry Laboratory 21", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -49287,7 +104389,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -49343,7 +104473,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -49382,13 +104540,160 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "This course's lab sections day\/time will be determined by the Preference Selection system which will run from 9 am Monday, December 5th to 5 pm Monday, December 12th.\n \nAll those who register for this course in the Early registration period, will receive a separate email sent by the Chemistry department (chemistry.dus@yale.edu) with details regarding Preference Selection open\/close in early August. \n\nFinal lab section times are scheduled based on enrollment preferences from the following options: Monday or Thursday from 1 pm to 5 pm.\n\nFor further details about how Chemistry's Preference Selection works please visit: \nhttps:\/\/chem.yale.edu\/academics\/undergraduate-studies\/preference-selection?msclkid=2193c3feb10811ec827162df07eca554 ", + "classnotes": "This course's lab sections day/time will be determined by the Preference Selection system which will run from 9 am Monday, December 5th to 5 pm Monday, December 12th.\n \nAll those who register for this course in the Early registration period, will receive a separate email sent by the Chemistry department (chemistry.dus@yale.edu) with details regarding Preference Selection open/close in early August. \n\nFinal lab section times are scheduled based on enrollment preferences from the following options: Monday or Thursday from 1 pm to 5 pm.\n\nFor further details about how Chemistry's Preference Selection works please visit: \nhttps://chem.yale.edu/academics/undergraduate-studies/preference-selection?msclkid=2193c3feb10811ec827162df07eca554 ", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83495\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83495/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.997452437877655, + 0.9987810254096985, + 0.9952175617218018, + 0.9976480603218079, + 0.9983148574829102, + 0.9987598657608032, + 0.9987599849700928, + 0.9988815188407898, + 0.9987609386444092, + 0.9987228512763977, + 0.9985582232475281, + 0.9987877011299133, + 0.998866081237793, + 0.9987314343452454 + ], + "sentiment_counts": { + "POSITIVE": 14, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9977317452430725, + 0.9988767504692078, + 0.9978716373443604, + 0.9988899827003479, + 0.997174859046936, + 0.9988038539886475, + 0.9985784292221069, + 0.9949187636375427, + 0.9994940757751465, + 0.9957452416419983, + 0.9988666772842407, + 0.9865651726722717 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9991247057914734, + 0.997117280960083, + 0.9958637952804565, + 0.981461226940155, + 0.9976682066917419, + 0.9951229691505432, + 0.9982553124427795, + 0.9988657236099243, + 0.9995039701461792, + 0.9986396431922913, + 0.997117280960083, + 0.9988706707954407, + 0.9971062541007996, + 0.9988805651664734 + ], + "sentiment_counts": { + "NEGATIVE": 4, + "POSITIVE": 10 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2857142857142857, + "POSITIVE": 0.7142857142857143 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7142857142857143 + ] + }, + "final_label": "POSITIVE", + "final_count": 33, + "final_proportion": 0.825, + "final_counts": { + "POSITIVE": 33, + "NEGATIVE": 7 + }, + "final_distribution": { + "POSITIVE": 0.825, + "NEGATIVE": 0.175 + } + } }, { "season_code": "202301", @@ -49436,7 +104741,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -49467,7 +104800,7 @@ "13:00", "17:00", "SCL TBA - Sterling Chemistry Laboratory TBA", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -49484,7 +104817,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -49515,7 +104876,7 @@ "13:00", "17:00", "SCL 229 - Sterling Chemistry Laboratory 229", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -49532,7 +104893,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -49563,7 +104952,7 @@ "13:00", "17:00", "SCL 229 - Sterling Chemistry Laboratory 229", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -49580,7 +104969,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -49622,13 +105039,398 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "This course's lab sections day\/time will be determined by the Preference Selection system which will run from 9 am Monday, December 5th to 5 pm Monday, December 12th.\n \nAll those who register for this course in the Early registration period, will receive a separate email sent by the Chemistry department (chemistry.dus@yale.edu) with details regarding Preference Selection open\/close in early August. \n\nFinal discussion\/lab section times are scheduled based on enrollment preferences from the following options: Mon. or Tues. from either 1: 30 - 2:20 pm, 2:30 - 3:20 pm, or 8:00 - 8:50 pm\n \nLecture meets every Mon., and Wed. from 9:00 am - 10:15 am in SCL 160\n\nFor further details about how Chemistry's Preference Selection works please visit: \nhttps:\/\/chem.yale.edu\/academics\/undergraduate-studies\/preference-selection?msclkid=2193c3feb10811ec827162df07eca554 \n", - "final_exam": "", - "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83497\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "classnotes": "This course's lab sections day/time will be determined by the Preference Selection system which will run from 9 am Monday, December 5th to 5 pm Monday, December 12th.\n \nAll those who register for this course in the Early registration period, will receive a separate email sent by the Chemistry department (chemistry.dus@yale.edu) with details regarding Preference Selection open/close in early August. \n\nFinal discussion/lab section times are scheduled based on enrollment preferences from the following options: Mon. or Tues. from either 1: 30 - 2:20 pm, 2:30 - 3:20 pm, or 8:00 - 8:50 pm\n \nLecture meets every Mon., and Wed. from 9:00 am - 10:15 am in SCL 160\n\nFor further details about how Chemistry's Preference Selection works please visit: \nhttps://chem.yale.edu/academics/undergraduate-studies/preference-selection?msclkid=2193c3feb10811ec827162df07eca554 \n", + "final_exam": "", + "course_home_url": "", + "syllabus_url": "https://yale.instructure.com/courses/83497/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984579086303711, + 0.9986728429794312, + 0.9984719157218933, + 0.9972406625747681, + 0.9986249208450317, + 0.9986473917961121, + 0.9989252686500549, + 0.998847246170044, + 0.9994788765907288, + 0.9981769323348999, + 0.9988149404525757, + 0.9982765913009644, + 0.9978690147399902, + 0.9982781410217285, + 0.9989014863967896, + 0.9986874461174011, + 0.9988541603088379, + 0.9986864924430847, + 0.998397171497345, + 0.9985961318016052, + 0.9985504746437073, + 0.998738706111908, + 0.9987581968307495, + 0.998599112033844, + 0.9988337159156799, + 0.9989199638366699, + 0.9987922310829163, + 0.9985175728797913, + 0.9987393021583557, + 0.9983751773834229, + 0.9983223080635071, + 0.9986937642097473, + 0.9988089799880981, + 0.994949221611023, + 0.9988341927528381, + 0.9988151788711548, + 0.9986907839775085, + 0.9987847208976746, + 0.9987743496894836, + 0.9988158941268921, + 0.9918801188468933, + 0.9984831213951111, + 0.9988045692443848, + 0.9972156286239624, + 0.9987732768058777, + 0.9984094500541687, + 0.9549481272697449, + 0.9988221526145935, + 0.9987922310829163, + 0.9987530708312988, + 0.9988076686859131, + 0.9988090991973877, + 0.9987064599990845 + ], + "sentiment_counts": { + "POSITIVE": 51, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.9622641509433962, + "NEGATIVE": 0.03773584905660377 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9622641509433962 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994049072265625, + 0.9986341595649719, + 0.9986461997032166, + 0.997175931930542, + 0.9988634586334229, + 0.9988870024681091, + 0.9988804459571838, + 0.998879611492157, + 0.9989163875579834, + 0.5990561246871948, + 0.9988541603088379, + 0.9989103078842163, + 0.9989058971405029, + 0.999272882938385, + 0.9981677532196045, + 0.998863697052002, + 0.9988910555839539, + 0.9988375306129456, + 0.9989320635795593, + 0.9986851811408997, + 0.9987099170684814, + 0.9951954483985901, + 0.9989016056060791, + 0.9919018149375916, + 0.9989314675331116, + 0.9989136457443237, + 0.9989087581634521, + 0.9986305236816406, + 0.9989306330680847, + 0.9986315369606018, + 0.9832249879837036, + 0.9989205598831177, + 0.9989272952079773, + 0.9989246726036072, + 0.9988862872123718, + 0.9988370537757874, + 0.9986843466758728, + 0.998005211353302, + 0.9988245368003845, + 0.9986600875854492, + 0.9994877576828003, + 0.9988899827003479, + 0.9871581196784973, + 0.998745322227478, + 0.6941511631011963, + 0.9946858882904053, + 0.9984503984451294, + 0.9995146989822388, + 0.9989169836044312, + 0.998619794845581, + 0.9989187717437744, + 0.9989049434661865, + 0.9988829493522644, + 0.9982536435127258, + 0.9985933899879456, + 0.9989159107208252, + 0.9989288449287415 + ], + "sentiment_counts": { + "NEGATIVE": 8, + "POSITIVE": 49 + }, + "sentiment_distribution": { + "NEGATIVE": 0.14035087719298245, + "POSITIVE": 0.8596491228070176 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8596491228070176 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988670349121094, + 0.9994862079620361, + 0.9986739158630371, + 0.9960978031158447, + 0.9989151954650879, + 0.9988948702812195, + 0.9989306330680847, + 0.9969774484634399, + 0.9994820952415466, + 0.9989269375801086, + 0.9907123446464539, + 0.9986526966094971, + 0.997614860534668, + 0.9988962411880493, + 0.9978602528572083, + 0.9959293007850647, + 0.9989159107208252, + 0.9993420243263245, + 0.998921275138855, + 0.9980652928352356, + 0.997117280960083, + 0.9989311099052429, + 0.9981256127357483, + 0.9988619089126587, + 0.9983515739440918, + 0.9986703395843506, + 0.9986843466758728, + 0.9987941980361938, + 0.9987713694572449, + 0.9988006353378296, + 0.9989099502563477, + 0.9989225268363953, + 0.9989144802093506, + 0.9989251494407654, + 0.9981968998908997, + 0.9988688826560974, + 0.9989031553268433, + 0.9955748319625854, + 0.9988951086997986, + 0.9988935589790344, + 0.9988330006599426, + 0.9983721375465393, + 0.9985781908035278, + 0.9984281063079834, + 0.9978266358375549, + 0.9989286065101624, + 0.9988779425621033, + 0.9989098310470581, + 0.9989149570465088 + ], + "sentiment_counts": { + "POSITIVE": 42, + "NEGATIVE": 7 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "final_label": "POSITIVE", + "final_count": 142, + "final_proportion": 0.8930817610062893, + "final_counts": { + "POSITIVE": 142, + "NEGATIVE": 17 + }, + "final_distribution": { + "POSITIVE": 0.8930817610062893, + "NEGATIVE": 0.1069182389937107 + } + } }, { "season_code": "202301", @@ -49659,7 +105461,7 @@ "13:00", "17:00", "SCL 229 - Sterling Chemistry Laboratory 229", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -49676,7 +105478,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -49715,7 +105545,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -49754,7 +105612,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -49793,7 +105679,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -49824,7 +105738,7 @@ "13:00", "17:00", "SCL 229 - Sterling Chemistry Laboratory 229", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -49841,7 +105755,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -49872,7 +105814,7 @@ "13:00", "17:00", "SCL 229 - Sterling Chemistry Laboratory 229", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -49889,7 +105831,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -49928,7 +105898,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -49967,7 +105965,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -49998,7 +106024,7 @@ "13:00", "17:00", "SCL 229 - Sterling Chemistry Laboratory 229", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -50015,7 +106041,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -50046,7 +106100,7 @@ "13:00", "17:00", "SCL 229 - Sterling Chemistry Laboratory 229", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -50063,7 +106117,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -50094,7 +106176,7 @@ "13:00", "17:00", "SCL 229 - Sterling Chemistry Laboratory 229", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -50111,7 +106193,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -50150,7 +106260,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -50189,7 +106327,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -50220,7 +106386,7 @@ "13:00", "17:00", "SCL 229 - Sterling Chemistry Laboratory 229", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -50237,7 +106403,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -50276,7 +106470,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -50315,7 +106537,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -50346,7 +106596,7 @@ "13:00", "17:00", "SCL 229 - Sterling Chemistry Laboratory 229", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -50363,7 +106613,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -50394,7 +106672,7 @@ "13:00", "17:00", "SCL 229 - Sterling Chemistry Laboratory 229", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -50411,7 +106689,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -50450,7 +106756,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -50489,7 +106823,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -50528,7 +106890,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -50559,7 +106949,7 @@ "13:00", "17:00", "SCL 229 - Sterling Chemistry Laboratory 229", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -50576,7 +106966,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -50613,7 +107031,7 @@ "14:30", "15:30", "SCL 19 - Sterling Chemistry Laboratory 19", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -50626,13 +107044,122 @@ ], "regnotes": "", "rp_attr": "", - "classnotes": "This course's lab sections day\/time will be determined by the Preference Selection system which will run from 9 am Monday, December 5th to 5 pm Monday, December 12th.\n \nAll those who register for this course in the Early registration period, will receive a separate email sent by the Chemistry department (chemistry.dus@yale.edu) with details regarding Preference Selection open\/close in early August. \n\nFinal discussion\/lab section times are scheduled based on enrollment preferences from the following options: Wednesday or Thursday from 1:00 pm to 5:00 pm.\n \nLecture meets every Friday from 2:30 pm to 3:20 pm.\n\nFor further details about how Chemistry's Preference Selection works please visit: \nhttps:\/\/chem.yale.edu\/academics\/undergraduate-studies\/preference-selection?msclkid=2193c3feb10811ec827162df07eca554 \n", + "classnotes": "This course's lab sections day/time will be determined by the Preference Selection system which will run from 9 am Monday, December 5th to 5 pm Monday, December 12th.\n \nAll those who register for this course in the Early registration period, will receive a separate email sent by the Chemistry department (chemistry.dus@yale.edu) with details regarding Preference Selection open/close in early August. \n\nFinal discussion/lab section times are scheduled based on enrollment preferences from the following options: Wednesday or Thursday from 1:00 pm to 5:00 pm.\n \nLecture meets every Friday from 2:30 pm to 3:20 pm.\n\nFor further details about how Chemistry's Preference Selection works please visit: \nhttps://chem.yale.edu/academics/undergraduate-studies/preference-selection?msclkid=2193c3feb10811ec827162df07eca554 \n", "final_exam": "Thursday, May 4, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83499\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83499/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989203214645386, + 0.9955546259880066, + 0.9986912608146667, + 0.9987428784370422, + 0.9988877177238464, + 0.9985724687576294, + 0.9988918900489807, + 0.997234046459198 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989234805107117, + 0.9988849759101868, + 0.9989292025566101, + 0.9988873600959778, + 0.9989381432533264, + 0.9989315867424011, + 0.9974209070205688 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998826801776886, + 0.998765230178833, + 0.9988565444946289, + 0.9988847374916077, + 0.9989222288131714, + 0.9987885355949402, + 0.9942764639854431 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 22, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 22 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -50663,7 +107190,7 @@ "13:00", "17:00", "SCL 230 - Sterling Chemistry Laboratory 230", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -50682,7 +107209,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -50713,7 +107268,7 @@ "13:00", "17:00", "SCL 230 - Sterling Chemistry Laboratory 230", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -50732,7 +107287,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -50769,7 +107352,7 @@ "10:30", "11:20", "SCL 19 - Sterling Chemistry Laboratory 19", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ], "Wednesday": [ @@ -50777,7 +107360,7 @@ "10:30", "11:20", "SCL 19 - Sterling Chemistry Laboratory 19", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ], "Friday": [ @@ -50785,7 +107368,7 @@ "10:30", "11:20", "SCL 19 - Sterling Chemistry Laboratory 19", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -50796,13 +107379,148 @@ "flags": [], "regnotes": "", "rp_attr": "This course meets during the Reading Period: the week between the last week of classes and finals week. Meets Reading Period", - "classnotes": "This course's lab sections day\/time will be determined by the Preference Selection system which will run from 9 am Monday, December 5th to 5 pm Monday, December 12th.\n \nAll those who register for this course in the Early registration period, will receive a separate email sent by the Chemistry department (chemistry.dus@yale.edu) with details regarding Preference Selection open\/close in early August. \n\nFinal discussion section times are scheduled based on enrollment preferences.\n \nThe lecture meets every Monday, Wednesday, and Friday from 10:30 am to 11:20 am.\n\nFor further details about how Chemistry's Preference Selection works please visit: \nhttps:\/\/chem.yale.edu\/academics\/undergraduate-studies\/preference-selection?msclkid=2193c3feb10811ec827162df07eca554 \n", + "classnotes": "This course's lab sections day/time will be determined by the Preference Selection system which will run from 9 am Monday, December 5th to 5 pm Monday, December 12th.\n \nAll those who register for this course in the Early registration period, will receive a separate email sent by the Chemistry department (chemistry.dus@yale.edu) with details regarding Preference Selection open/close in early August. \n\nFinal discussion section times are scheduled based on enrollment preferences.\n \nThe lecture meets every Monday, Wednesday, and Friday from 10:30 am to 11:20 am.\n\nFor further details about how Chemistry's Preference Selection works please visit: \nhttps://chem.yale.edu/academics/undergraduate-studies/preference-selection?msclkid=2193c3feb10811ec827162df07eca554 \n", "final_exam": "Friday, May 5, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83504\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83504/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9979910850524902, + 0.9962743520736694, + 0.999484658241272, + 0.9986463189125061, + 0.9975715279579163, + 0.998914361000061, + 0.9988846182823181, + 0.9989234805107117, + 0.9987983703613281, + 0.9987502098083496 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9987426400184631, + 0.999503493309021, + 0.9962151646614075, + 0.9995036125183105, + 0.9994964599609375, + 0.9980823993682861, + 0.9988252520561218, + 0.9956681728363037, + 0.9986112117767334, + 0.9988431930541992, + 0.9988885521888733, + 0.9989684820175171 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 5 + }, + "sentiment_distribution": { + "POSITIVE": 0.5833333333333334, + "NEGATIVE": 0.4166666666666667 + }, + "sentiment_overall": [ + "POSITIVE", + 0.5833333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9938421249389648, + 0.9751741290092468, + 0.9987840056419373, + 0.9992743134498596, + 0.9994966983795166, + 0.9038611650466919, + 0.9988030195236206, + 0.9920560717582703, + 0.9985931515693665, + 0.9986587762832642, + 0.9989073276519775, + 0.9986345171928406 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 6 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "final_label": "POSITIVE", + "final_count": 22, + "final_proportion": 0.6470588235294118, + "final_counts": { + "POSITIVE": 22, + "NEGATIVE": 12 + }, + "final_distribution": { + "POSITIVE": 0.6470588235294118, + "NEGATIVE": 0.35294117647058826 + } + } }, { "season_code": "202301", @@ -50833,7 +107551,7 @@ "19:00", "19:50", "SCL 18 - Sterling Chemistry Laboratory 18", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -50850,7 +107568,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -50914,7 +107660,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -50945,7 +107719,7 @@ "19:00", "19:50", "SCL 23 - Sterling Chemistry Laboratory 23", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -50962,7 +107736,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -51026,7 +107828,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -51067,12 +107897,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "Prerequisite: CHEM 328 or 332, or permission of instructor.\u00a0", - "description": "Continuation of CHEM 332, including topics drawn from quantum mechanics, atomic\/molecular structure, spectroscopy, and statistical thermodynamics.", + "description": "Continuation of CHEM 332, including topics drawn from quantum mechanics, atomic/molecular structure, spectroscopy, and statistical thermodynamics.", "short_title": "Physical Chemistry with Appli...", "title": "Physical Chemistry with Applications in the Physical Sciences II", "school": "YC", @@ -51104,7 +107962,7 @@ "9:25", "10:15", "SCL 18 - Sterling Chemistry Laboratory 18", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ], "Wednesday": [ @@ -51112,7 +107970,7 @@ "9:25", "10:15", "SCL 18 - Sterling Chemistry Laboratory 18", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ], "Friday": [ @@ -51120,7 +107978,7 @@ "9:25", "10:15", "SCL 18 - Sterling Chemistry Laboratory 18", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -51133,18 +107991,165 @@ "flags": [], "regnotes": "", "rp_attr": "This course meets during the Reading Period: the week between the last week of classes and finals week. Meets Reading Period", - "classnotes": "This course's discussion sections day\/time will be determined by the Preference Selection system which will run from 9 am Monday, December 5th to 5 pm Monday, December 12th.\n \nAll those who register for this course in the Early registration period, will receive a separate email sent by the Chemistry department (chemistry.dus@yale.edu) with details regarding Preference Selection open\/close in early August. \n\nFinal discussion section times are scheduled based on enrollment preferences.\n \nLecture meets every Monday, Wednesday, and Friday from 9:25 am to 10:15 am.\n\nFor further details about how Chemistry's Preference Selection works please visit: \nhttps:\/\/chem.yale.edu\/academics\/undergraduate-studies\/preference-selection?msclkid=2193c3feb10811ec827162df07eca554 \n", + "classnotes": "This course's discussion sections day/time will be determined by the Preference Selection system which will run from 9 am Monday, December 5th to 5 pm Monday, December 12th.\n \nAll those who register for this course in the Early registration period, will receive a separate email sent by the Chemistry department (chemistry.dus@yale.edu) with details regarding Preference Selection open/close in early August. \n\nFinal discussion section times are scheduled based on enrollment preferences.\n \nLecture meets every Monday, Wednesday, and Friday from 9:25 am to 10:15 am.\n\nFor further details about how Chemistry's Preference Selection works please visit: \nhttps://chem.yale.edu/academics/undergraduate-studies/preference-selection?msclkid=2193c3feb10811ec827162df07eca554 \n", "final_exam": "Saturday, May 6, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83512\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83512/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989257454872131, + 0.9987505674362183, + 0.9946012496948242, + 0.998853325843811, + 0.9984475374221802, + 0.9988447427749634, + 0.9989126920700073, + 0.9989192485809326, + 0.9984796643257141, + 0.9967652559280396, + 0.9946951270103455, + 0.9994791150093079 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9166666666666666 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989221096038818, + 0.9989259839057922, + 0.9984413981437683, + 0.998666524887085, + 0.9988895058631897, + 0.9987344145774841, + 0.9942933320999146, + 0.9989357590675354, + 0.9988653659820557, + 0.9988123178482056, + 0.9988619089126587, + 0.998497486114502, + 0.9994146823883057 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8461538461538461, + "NEGATIVE": 0.15384615384615385 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8461538461538461 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989339709281921, + 0.9555190801620483, + 0.9988707900047302, + 0.9989296793937683, + 0.9986975193023682, + 0.9989296793937683, + 0.9975422620773315, + 0.9994783997535706, + 0.9986822009086609, + 0.9989091157913208, + 0.9948904514312744, + 0.9977790713310242, + 0.9977383613586426, + 0.9988697171211243, + 0.9878860712051392 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8666666666666667, + "NEGATIVE": 0.13333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8666666666666667 + ] + }, + "final_label": "POSITIVE", + "final_count": 35, + "final_proportion": 0.875, + "final_counts": { + "POSITIVE": 35, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + } + } }, { "season_code": "202301", "requirements": "Prerequisite: CHEM 328 or 332, or permission of instructor.\u00a0", - "description": "Continuation of CHEM 332, including topics drawn from quantum mechanics, atomic\/molecular structure, spectroscopy, and statistical thermodynamics.", + "description": "Continuation of CHEM 332, including topics drawn from quantum mechanics, atomic/molecular structure, spectroscopy, and statistical thermodynamics.", "short_title": "Physical Chemistry with Appli...", "title": "Physical Chemistry with Applications in the Physical Sciences II", "school": "YC", @@ -51205,12 +108210,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "Prerequisite: CHEM 328 or 332, or permission of instructor.\u00a0", - "description": "Continuation of CHEM 332, including topics drawn from quantum mechanics, atomic\/molecular structure, spectroscopy, and statistical thermodynamics.", + "description": "Continuation of CHEM 332, including topics drawn from quantum mechanics, atomic/molecular structure, spectroscopy, and statistical thermodynamics.", "short_title": "Physical Chemistry with Appli...", "title": "Physical Chemistry with Applications in the Physical Sciences II", "school": "YC", @@ -51271,12 +108304,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "Prerequisite: CHEM 328 or 332, or permission of instructor.\u00a0", - "description": "Continuation of CHEM 332, including topics drawn from quantum mechanics, atomic\/molecular structure, spectroscopy, and statistical thermodynamics.", + "description": "Continuation of CHEM 332, including topics drawn from quantum mechanics, atomic/molecular structure, spectroscopy, and statistical thermodynamics.", "short_title": "Physical Chemistry with Appli...", "title": "Physical Chemistry with Applications in the Physical Sciences II", "school": "YC", @@ -51337,12 +108398,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "Prerequisite: CHEM 328 or 332, or permission of instructor.\u00a0", - "description": "Continuation of CHEM 332, including topics drawn from quantum mechanics, atomic\/molecular structure, spectroscopy, and statistical thermodynamics.", + "description": "Continuation of CHEM 332, including topics drawn from quantum mechanics, atomic/molecular structure, spectroscopy, and statistical thermodynamics.", "short_title": "Physical Chemistry with Appli...", "title": "Physical Chemistry with Applications in the Physical Sciences II", "school": "YC", @@ -51368,7 +108457,7 @@ "14:30", "15:20", "SCL 19 - Sterling Chemistry Laboratory 19", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -51387,12 +108476,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "Prerequisite: CHEM 328 or 332, or permission of instructor.\u00a0", - "description": "Continuation of CHEM 332, including topics drawn from quantum mechanics, atomic\/molecular structure, spectroscopy, and statistical thermodynamics.", + "description": "Continuation of CHEM 332, including topics drawn from quantum mechanics, atomic/molecular structure, spectroscopy, and statistical thermodynamics.", "short_title": "Physical Chemistry with Appli...", "title": "Physical Chemistry with Applications in the Physical Sciences II", "school": "YC", @@ -51453,12 +108570,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "Prerequisite: CHEM 328 or 332, or permission of instructor.\u00a0", - "description": "Continuation of CHEM 332, including topics drawn from quantum mechanics, atomic\/molecular structure, spectroscopy, and statistical thermodynamics.", + "description": "Continuation of CHEM 332, including topics drawn from quantum mechanics, atomic/molecular structure, spectroscopy, and statistical thermodynamics.", "short_title": "Physical Chemistry with Appli...", "title": "Physical Chemistry with Applications in the Physical Sciences II", "school": "YC", @@ -51519,12 +108664,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "Prerequisite: CHEM 328 or 332, or permission of instructor.\u00a0", - "description": "Continuation of CHEM 332, including topics drawn from quantum mechanics, atomic\/molecular structure, spectroscopy, and statistical thermodynamics.", + "description": "Continuation of CHEM 332, including topics drawn from quantum mechanics, atomic/molecular structure, spectroscopy, and statistical thermodynamics.", "short_title": "Physical Chemistry with Appli...", "title": "Physical Chemistry with Applications in the Physical Sciences II", "school": "YC", @@ -51550,7 +108723,7 @@ "19:00", "19:50", "WLH 204 - William L. Harkness Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -51569,7 +108742,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -51613,10 +108814,99 @@ "classnotes": "Lecture will be held on Fridays from 1:30 pm to 2:20 pm in SCL 19.\nLab section will be held on Tuesdays from 1:00 pm to 5:00 pm in SCL 231.", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83517\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83517/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9973100423812866, + 0.9988590478897095, + 0.997861921787262, + 0.9987863898277283, + 0.9986397624015808 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989287257194519, + 0.9989367127418518, + 0.9988834261894226 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989116191864014, + 0.9989338517189026, + 0.998909592628479, + 0.9988546371459961 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 12 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -51654,7 +108944,7 @@ "9:00", "10:15", "SCL 19 - Sterling Chemistry Laboratory 19", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ], "Thursday": [ @@ -51662,7 +108952,7 @@ "9:00", "10:15", "SCL 19 - Sterling Chemistry Laboratory 19", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -51678,10 +108968,115 @@ "classnotes": "Second half-term course in Spring 2023. ", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83521\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83521/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9971243739128113, + 0.9988045692443848, + 0.9986143112182617, + 0.9988886713981628, + 0.9979413151741028 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989269375801086, + 0.9985217452049255, + 0.9989281296730042, + 0.9988635778427124, + 0.998932421207428, + 0.9988773465156555, + 0.9987578392028809 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988889098167419, + 0.997117280960083, + 0.9988213181495667, + 0.9982553124427795, + 0.9989317059516907, + 0.9989068508148193, + 0.9936890602111816 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 0.9473684210526315, + "final_counts": { + "POSITIVE": 18, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9473684210526315, + "NEGATIVE": 0.05263157894736842 + } + } }, { "season_code": "202301", @@ -51719,7 +109114,7 @@ "9:00", "10:15", "SCL 19 - Sterling Chemistry Laboratory 19", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ], "Thursday": [ @@ -51727,7 +109122,7 @@ "9:00", "10:15", "SCL 19 - Sterling Chemistry Laboratory 19", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -51743,10 +109138,38 @@ "classnotes": "First half-term course offered in Spring 2023.", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83526\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83526/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -51784,7 +109207,7 @@ "9:00", "10:15", "SCL 19 - Sterling Chemistry Laboratory 19", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ], "Wednesday": [ @@ -51792,7 +109215,7 @@ "9:00", "10:15", "SCL 19 - Sterling Chemistry Laboratory 19", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -51808,10 +109231,81 @@ "classnotes": "First half-term course for Spring 2023.", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83530\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83530/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9979557991027832 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989074468612671 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988967180252075 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 3, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 3 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -51849,7 +109343,7 @@ "9:00", "10:15", "SCL 19 - Sterling Chemistry Laboratory 19", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ], "Wednesday": [ @@ -51857,7 +109351,7 @@ "9:00", "10:15", "SCL 19 - Sterling Chemistry Laboratory 19", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -51873,15 +109367,43 @@ "classnotes": "Second half-term course in Spring 2023.", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83534\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "", - "description": "After consultation with the DUS, students engage individual experimental and\/or theoretical research problems in the laboratories of a selected faculty member within the Chemistry department. At the end of the term, students submit a brief report summarizing goals, methods, and accomplishments. For each term of enrollment, students must complete the CHEM 480 registration form, available in the DUS office, and have it signed by their faculty research mentor. It must be submitted to the Chemistry DUS for final approval no later than the last week of classes in the immediately preceding academic term. Individuals wishing to perform independent research must have demonstrated proficiency in the aspects of chemistry required for the planned project, as ascertained by the supervising faculty member, and must meet basic safety requirements prior to undertaking any activities, including certified completion of the online courses entitled Laboratory Chemical Training and Hazardous Chemical Waste Training administered by the Office of Environmental Health and Safety (EHS) at http:\/\/ehs.yale.edu\/training. At least ten hours per week of research are required (including time spent on requisite safety training), with the faculty mentor affirming this level of student commitment by midterm. This course may be taken multiple times for Pass\/Fail credit, subject to restrictions imposed by Yale College.", + "syllabus_url": "https://yale.instructure.com/courses/83534/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } + }, + { + "season_code": "202301", + "requirements": "", + "description": "After consultation with the DUS, students engage individual experimental and/or theoretical research problems in the laboratories of a selected faculty member within the Chemistry department. At the end of the term, students submit a brief report summarizing goals, methods, and accomplishments. For each term of enrollment, students must complete the CHEM 480 registration form, available in the DUS office, and have it signed by their faculty research mentor. It must be submitted to the Chemistry DUS for final approval no later than the last week of classes in the immediately preceding academic term. Individuals wishing to perform independent research must have demonstrated proficiency in the aspects of chemistry required for the planned project, as ascertained by the supervising faculty member, and must meet basic safety requirements prior to undertaking any activities, including certified completion of the online courses entitled Laboratory Chemical Training and Hazardous Chemical Waste Training administered by the Office of Environmental Health and Safety (EHS) at http://ehs.yale.edu/training. At least ten hours per week of research are required (including time spent on requisite safety training), with the faculty mentor affirming this level of student commitment by midterm. This course may be taken multiple times for Pass/Fail credit, subject to restrictions imposed by Yale College.", "short_title": "Introduction to Independent R...", "title": "Introduction to Independent Research in Chemistry", "school": "YC", @@ -51913,18 +109435,46 @@ "flags": [], "regnotes": "", "rp_attr": "This course meets during the Reading Period: the week between the last week of classes and finals week. Meets Reading Period", - "classnotes": "Please note there is an Independent Study form and steps needing to be completed before starting research - please email chemistry.dus@yale.edu to get PDF link to the form BEFORE the Add\/Drop period ", - "final_exam": "No regular final examination", - "course_home_url": "", - "syllabus_url": "", - "fysem": false, - "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "", - "description": "Senior Chemistry majors engage individual experimental and\/or theoretical research problems in the laboratories of a selected faculty member in the Chemistry department or in a closely related field of molecular science. CHEM 490 registration forms, found in the DUS office, must be signed by the student\u2019s faculty research mentor and submitted it to the Chemistry DUS for final approval no later than the last week of classes in the immediately preceding academic term. Mandatory class meetings address issues of essential laboratory safety and ethics in science, with other class sessions focusing on core topics of broad interest to Chemistry students, including online literary research, oral presentation skills, and effective scientific writing. At least ten hours of research are required per week. Students are assigned letter grades, subject to restrictions imposed by Yale College. In special cases and with DUS approval, juniors may take this course.", + "classnotes": "Please note there is an Independent Study form and steps needing to be completed before starting research - please email chemistry.dus@yale.edu to get PDF link to the form BEFORE the Add/Drop period ", + "final_exam": "No regular final examination", + "course_home_url": "", + "syllabus_url": "", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } + }, + { + "season_code": "202301", + "requirements": "", + "description": "Senior Chemistry majors engage individual experimental and/or theoretical research problems in the laboratories of a selected faculty member in the Chemistry department or in a closely related field of molecular science. CHEM 490 registration forms, found in the DUS office, must be signed by the student\u2019s faculty research mentor and submitted it to the Chemistry DUS for final approval no later than the last week of classes in the immediately preceding academic term. Mandatory class meetings address issues of essential laboratory safety and ethics in science, with other class sessions focusing on core topics of broad interest to Chemistry students, including online literary research, oral presentation skills, and effective scientific writing. At least ten hours of research are required per week. Students are assigned letter grades, subject to restrictions imposed by Yale College. In special cases and with DUS approval, juniors may take this course.", "short_title": "Independent Research in Chemi...", "title": "Independent Research in Chemistry", "school": "YC", @@ -51959,7 +109509,7 @@ "17:10", "18:00", "SCL 19 - Sterling Chemistry Laboratory 19", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -51968,13 +109518,86 @@ "flags": [], "regnotes": "", "rp_attr": "This course meets during the Reading Period: the week between the last week of classes and finals week. Meets Reading Period", - "classnotes": "This course is for Chemistry Majors and those who are pursuing a BS in Chemistry. \n\n**Please note - DUS Nilay Hazari is listed as the primary instructor until the end of add\/drop period but formal professor is Dr. Jon Parr", + "classnotes": "This course is for Chemistry Majors and those who are pursuing a BS in Chemistry. \n\n**Please note - DUS Nilay Hazari is listed as the primary instructor until the end of add/drop period but formal professor is Dr. Jon Parr", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83545\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83545/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988511800765991, + 0.9979915618896484 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9962387084960938 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986818432807922 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 4, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 4 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -52012,7 +109635,7 @@ "11:35", "12:50", "SCL 21 - Sterling Chemistry Laboratory 21", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ], "Thursday": [ @@ -52020,7 +109643,7 @@ "11:35", "12:50", "SCL 21 - Sterling Chemistry Laboratory 21", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -52036,10 +109659,85 @@ "classnotes": "First half-term course in Spring 2023.", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83548\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83548/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988455772399902, + 0.9988688826560974 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.998806357383728 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988774657249451, + 0.9988166093826294 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 5, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 5 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -52077,7 +109775,7 @@ "9:00", "10:15", "SCL 111 - Sterling Chemistry Laboratory 111", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ], "Thursday": [ @@ -52085,7 +109783,7 @@ "9:00", "10:15", "SCL 111 - Sterling Chemistry Laboratory 111", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -52103,10 +109801,109 @@ "classnotes": "First half-term course in Spring 2023.", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83552\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83552/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9979070425033569, + 0.9705883860588074, + 0.9988486766815186, + 0.9987679123878479, + 0.9790818691253662, + 0.9988918900489807 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988251328468323, + 0.9988563060760498, + 0.9988654851913452, + 0.9928098917007446, + 0.9989194869995117 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9979828596115112, + 0.9971160888671875, + 0.9988839030265808, + 0.9981922507286072, + 0.9989235997200012 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 0.875, + "final_counts": { + "POSITIVE": 14, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + } + } }, { "season_code": "202301", @@ -52144,7 +109941,7 @@ "9:00", "10:15", "SCL 19 - Sterling Chemistry Laboratory 19", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ], "Thursday": [ @@ -52152,7 +109949,7 @@ "9:00", "10:15", "SCL 19 - Sterling Chemistry Laboratory 19", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -52164,10 +109961,115 @@ "classnotes": "Second half-term course in Spring 2023. ", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83521\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83521/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9971243739128113, + 0.9988045692443848, + 0.9986143112182617, + 0.9988886713981628, + 0.9979413151741028 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989269375801086, + 0.9985217452049255, + 0.9989281296730042, + 0.9988635778427124, + 0.998932421207428, + 0.9988773465156555, + 0.9987578392028809 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988889098167419, + 0.997117280960083, + 0.9988213181495667, + 0.9982553124427795, + 0.9989317059516907, + 0.9989068508148193, + 0.9936890602111816 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 0.9473684210526315, + "final_counts": { + "POSITIVE": 18, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9473684210526315, + "NEGATIVE": 0.05263157894736842 + } + } }, { "season_code": "202301", @@ -52205,7 +110107,7 @@ "9:00", "10:15", "SCL 19 - Sterling Chemistry Laboratory 19", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ], "Thursday": [ @@ -52213,7 +110115,7 @@ "9:00", "10:15", "SCL 19 - Sterling Chemistry Laboratory 19", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -52225,10 +110127,38 @@ "classnotes": "First half-term course offered in Spring 2023.", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83526\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83526/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -52266,7 +110196,7 @@ "9:00", "10:15", "SCL 19 - Sterling Chemistry Laboratory 19", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ], "Wednesday": [ @@ -52274,7 +110204,7 @@ "9:00", "10:15", "SCL 19 - Sterling Chemistry Laboratory 19", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -52286,10 +110216,81 @@ "classnotes": "First half-term course for Spring 2023.", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83530\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83530/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9979557991027832 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989074468612671 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988967180252075 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 3, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 3 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -52327,7 +110328,7 @@ "9:00", "10:15", "SCL 19 - Sterling Chemistry Laboratory 19", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ], "Wednesday": [ @@ -52335,7 +110336,7 @@ "9:00", "10:15", "SCL 19 - Sterling Chemistry Laboratory 19", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -52347,10 +110348,38 @@ "classnotes": "Second half-term course in Spring 2023.", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83534\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83534/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -52387,7 +110416,7 @@ "11:35", "12:50", "CRB 202 - Chemistry Research Building 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/560133" + "https://map.yale.edu/?id=1910#!m/560133" ] ], "Thursday": [ @@ -52395,7 +110424,7 @@ "11:35", "12:50", "CRB 202 - Chemistry Research Building 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/560133" + "https://map.yale.edu/?id=1910#!m/560133" ] ] }, @@ -52407,10 +110436,38 @@ "classnotes": "First half-term course in Spring 2023.", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83556\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83556/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -52447,7 +110504,7 @@ "11:35", "12:50", "CRB 202 - Chemistry Research Building 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/560133" + "https://map.yale.edu/?id=1910#!m/560133" ] ], "Thursday": [ @@ -52455,7 +110512,7 @@ "11:35", "12:50", "CRB 202 - Chemistry Research Building 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/560133" + "https://map.yale.edu/?id=1910#!m/560133" ] ] }, @@ -52467,10 +110524,38 @@ "classnotes": "Second-half term course in Spring 2023.", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83559\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83559/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -52507,7 +110592,7 @@ "11:35", "12:50", "SCL 19 - Sterling Chemistry Laboratory 19", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ], "Wednesday": [ @@ -52515,7 +110600,7 @@ "11:35", "12:50", "SCL 19 - Sterling Chemistry Laboratory 19", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -52527,10 +110612,38 @@ "classnotes": "This course will be a half-credit course in the second half of the Spring 2023 term.", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83563\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83563/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -52567,7 +110680,7 @@ "11:35", "12:50", "SCL 18 - Sterling Chemistry Laboratory 18", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ], "Wednesday": [ @@ -52575,7 +110688,7 @@ "11:35", "12:50", "SCL 18 - Sterling Chemistry Laboratory 18", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -52587,10 +110700,38 @@ "classnotes": "First half-term course in Spring 2023.", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83567\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83567/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -52647,10 +110788,38 @@ "classnotes": "This is a half-term course held in the second half of the Spring 2023 term.", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85230\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/85230/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -52687,7 +110856,7 @@ "11:35", "12:50", "CRB 123 - Chemistry Research Building 123", - "https:\/\/map.yale.edu\/?id=1910#!m\/560133" + "https://map.yale.edu/?id=1910#!m/560133" ] ], "Thursday": [ @@ -52695,7 +110864,7 @@ "11:35", "12:50", "CRB 123 - Chemistry Research Building 123", - "https:\/\/map.yale.edu\/?id=1910#!m\/560133" + "https://map.yale.edu/?id=1910#!m/560133" ] ] }, @@ -52707,15 +110876,43 @@ "classnotes": "First half-term course in Spring 2023.", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83571\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83571/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "Prerequisites: undergraduate organic and physical chemistry, or permission of the instructor.", - "description": "The course covers methods and applications of statistical mechanics and molecular dynamics to model fluid systems including biomolecules in aqueous solution. Topics covered include force fields, Monte Carlo and molecular dynamics theory, simulation of water and other liquids, free-energy methods and applications, QM\/MM simulations, protein dynamics, and molecular recognition and design.", + "description": "The course covers methods and applications of statistical mechanics and molecular dynamics to model fluid systems including biomolecules in aqueous solution. Topics covered include force fields, Monte Carlo and molecular dynamics theory, simulation of water and other liquids, free-energy methods and applications, QM/MM simulations, protein dynamics, and molecular recognition and design.", "short_title": "Computer Simulations of Organ...", "title": "Computer Simulations of Organic and Biomolecular Systems", "school": "GS", @@ -52747,7 +110944,7 @@ "11:35", "12:50", "CRB 123 - Chemistry Research Building 123", - "https:\/\/map.yale.edu\/?id=1910#!m\/560133" + "https://map.yale.edu/?id=1910#!m/560133" ] ], "Thursday": [ @@ -52755,7 +110952,7 @@ "11:35", "12:50", "CRB 123 - Chemistry Research Building 123", - "https:\/\/map.yale.edu\/?id=1910#!m\/560133" + "https://map.yale.edu/?id=1910#!m/560133" ] ] }, @@ -52767,10 +110964,38 @@ "classnotes": "Second half-term course for Spring 2023.", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83574\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83574/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -52808,13 +111033,41 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Chemistry 562L: Laboratory in Instrument Design and the Mechanical Arts\nPhysics 762L: Laboratory in Instrument Design and the Mechanical Arts\n\nInstructor: David Johnson\n\nPlace: Wright Laboratory, Room 101\n\nRegistration procedure: Registration in-person only. Registration by permission of instructor.\nSpring 2023 registration takes place the first week of the semester on W, Th, and Fr from 9:00 AM to 3:00 PM in WL 101.\n\nStudents must register in person with David Johnson to choose a day. Classes fill quickly and no registrations will be accepted by phone or e-mail.\n\nWL 101 is at the north end of campus and difficult to navigate because of ongoing construction, and as such students are encouraged to allocate extra time to find the class location.\n\nA more complete syllabus for each course can be picked up in WL 110 during the first class 1\/17\/2023.", + "classnotes": "Chemistry 562L: Laboratory in Instrument Design and the Mechanical Arts\nPhysics 762L: Laboratory in Instrument Design and the Mechanical Arts\n\nInstructor: David Johnson\n\nPlace: Wright Laboratory, Room 101\n\nRegistration procedure: Registration in-person only. Registration by permission of instructor.\nSpring 2023 registration takes place the first week of the semester on W, Th, and Fr from 9:00 AM to 3:00 PM in WL 101.\n\nStudents must register in person with David Johnson to choose a day. Classes fill quickly and no registrations will be accepted by phone or e-mail.\n\nWL 101 is at the north end of campus and difficult to navigate because of ongoing construction, and as such students are encouraged to allocate extra time to find the class location.\n\nA more complete syllabus for each course can be picked up in WL 110 during the first class 1/17/2023.", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87107\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87107/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -52845,13 +111098,41 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Chemistry 564L: Advanced Mechanical Instrumentation\nInstructor: David Johnson\nPlace: Wright Laboratory, Room 101\n\nRegistration procedure: Registration in-person only. Registration by permission of instructor.\nSpring 2023 registration takes place the first week of the semester on W, Th, and Fr from 9:00 AM to 3:00 PM in WL 101.\n\nStudents must register in person with David Johnson to choose a day. Classes fill quickly and no registrations will be accepted by phone or e-mail.\n\nWL 101 is at the north end of campus and difficult to navigate because of ongoing construction, and as such students are encouraged to allocate extra time to find the class location.\n\nA more complete syllabus for each course can be picked up in WL 110 during the first class 1\/17\/2023.", + "classnotes": "Chemistry 564L: Advanced Mechanical Instrumentation\nInstructor: David Johnson\nPlace: Wright Laboratory, Room 101\n\nRegistration procedure: Registration in-person only. Registration by permission of instructor.\nSpring 2023 registration takes place the first week of the semester on W, Th, and Fr from 9:00 AM to 3:00 PM in WL 101.\n\nStudents must register in person with David Johnson to choose a day. Classes fill quickly and no registrations will be accepted by phone or e-mail.\n\nWL 101 is at the north end of campus and difficult to navigate because of ongoing construction, and as such students are encouraged to allocate extra time to find the class location.\n\nA more complete syllabus for each course can be picked up in WL 110 during the first class 1/17/2023.", "final_exam": "", "course_home_url": "", "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -52888,7 +111169,7 @@ "9:00", "10:15", "SCL 14 - Sterling Chemistry Laboratory 14", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ], "Thursday": [ @@ -52896,7 +111177,7 @@ "9:00", "10:15", "SCL 14 - Sterling Chemistry Laboratory 14", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -52905,13 +111186,41 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "CHEM 565L will be available for Spring 2023 registration. Please note registration for this course will be in-person only! After permission is obtained in person, you may apply for instructor permission during the Add\/Drop period to add the course to your registration worksheet directly.", + "classnotes": "CHEM 565L will be available for Spring 2023 registration. Please note registration for this course will be in-person only! After permission is obtained in person, you may apply for instructor permission during the Add/Drop period to add the course to your registration worksheet directly.", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87098\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87098/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -52948,7 +111257,7 @@ "9:00", "10:15", "SCL 14 - Sterling Chemistry Laboratory 14", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ], "Wednesday": [ @@ -52956,7 +111265,7 @@ "9:00", "10:15", "SCL 14 - Sterling Chemistry Laboratory 14", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -52968,10 +111277,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87633\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87633/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -53008,7 +111345,7 @@ "9:00", "10:15", "SCL 18 - Sterling Chemistry Laboratory 18", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ], "Thursday": [ @@ -53016,7 +111353,7 @@ "9:00", "10:15", "SCL 18 - Sterling Chemistry Laboratory 18", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -53028,10 +111365,38 @@ "classnotes": "Second half-term course in Spring 2023.", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83577\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83577/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -53068,7 +111433,7 @@ "11:35", "12:50", "SCL 21 - Sterling Chemistry Laboratory 21", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ], "Wednesday": [ @@ -53076,7 +111441,7 @@ "11:35", "12:50", "SCL 21 - Sterling Chemistry Laboratory 21", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -53088,10 +111453,38 @@ "classnotes": "Second half-term course for Spring 2023.", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83581\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83581/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -53129,7 +111522,7 @@ "11:35", "12:50", "SCL 21 - Sterling Chemistry Laboratory 21", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ], "Thursday": [ @@ -53137,7 +111530,7 @@ "11:35", "12:50", "SCL 21 - Sterling Chemistry Laboratory 21", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -53149,10 +111542,85 @@ "classnotes": "First half-term course in Spring 2023.", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83548\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83548/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988455772399902, + 0.9988688826560974 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.998806357383728 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988774657249451, + 0.9988166093826294 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 5, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 5 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -53189,7 +111657,7 @@ "11:35", "12:50", "SCL 21 - Sterling Chemistry Laboratory 21", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ], "Thursday": [ @@ -53197,7 +111665,7 @@ "11:35", "12:50", "SCL 21 - Sterling Chemistry Laboratory 21", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -53209,10 +111677,38 @@ "classnotes": "Second half-term course in Spring 2023.", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83585\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83585/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -53250,7 +111746,7 @@ "9:00", "10:15", "SCL 111 - Sterling Chemistry Laboratory 111", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ], "Thursday": [ @@ -53258,7 +111754,7 @@ "9:00", "10:15", "SCL 111 - Sterling Chemistry Laboratory 111", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -53270,10 +111766,109 @@ "classnotes": "First half-term course in Spring 2023.", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83552\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83552/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9979070425033569, + 0.9705883860588074, + 0.9988486766815186, + 0.9987679123878479, + 0.9790818691253662, + 0.9988918900489807 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988251328468323, + 0.9988563060760498, + 0.9988654851913452, + 0.9928098917007446, + 0.9989194869995117 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9979828596115112, + 0.9971160888671875, + 0.9988839030265808, + 0.9981922507286072, + 0.9989235997200012 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 0.875, + "final_counts": { + "POSITIVE": 14, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + } + } }, { "season_code": "202301", @@ -53316,7 +111911,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -53359,7 +111982,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -53402,7 +112053,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -53445,7 +112124,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -53488,7 +112195,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -53531,7 +112266,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -53574,7 +112337,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -53617,7 +112408,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -53660,7 +112479,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -53703,7 +112550,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -53746,7 +112621,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -53789,7 +112692,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -53832,7 +112763,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -53875,7 +112834,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -53918,7 +112905,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -53961,7 +112976,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -54004,7 +113047,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -54047,7 +113118,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -54090,7 +113189,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -54133,7 +113260,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -54176,7 +113331,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -54219,7 +113402,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -54262,7 +113473,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -54305,7 +113544,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -54348,7 +113615,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -54391,7 +113686,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -54434,7 +113757,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -54477,7 +113828,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -54520,7 +113899,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -54563,7 +113970,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -54606,7 +114041,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -54649,7 +114112,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -54692,7 +114183,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -54735,7 +114254,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -54778,7 +114325,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -54821,7 +114396,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -54864,7 +114467,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -54907,7 +114538,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -54950,7 +114609,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -54993,7 +114680,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -55036,7 +114751,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -55079,7 +114822,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -55122,7 +114893,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -55168,7 +114967,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -55214,7 +115041,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -55260,7 +115115,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -55306,7 +115189,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -55352,7 +115263,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -55398,7 +115337,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -55444,7 +115411,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -55487,7 +115482,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -55524,7 +115547,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -55561,7 +115612,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -55598,7 +115677,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -55635,7 +115742,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -55672,7 +115807,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -55715,7 +115878,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -55758,7 +115949,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -55801,7 +116020,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -55838,13 +116085,41 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "INORGANIC\/MATERIALS STUDENTS First-year Chemistry graduate students with short rotations will have joined labs by the end of the fall semester. During the spring semester, each student will be introduced to research by their dissertation research advisors. Towards the end of the spring semester, students in the course will present an oral presentation on their research. The presentation will be no longer than ten minutes with a question-and-answer period of no longer than five minutes.\n\nPrerequisites: Enrollment requires that a student be a graduate student who has participated in short rotations", + "classnotes": "INORGANIC/MATERIALS STUDENTS First-year Chemistry graduate students with short rotations will have joined labs by the end of the fall semester. During the spring semester, each student will be introduced to research by their dissertation research advisors. Towards the end of the spring semester, students in the course will present an oral presentation on their research. The presentation will be no longer than ten minutes with a question-and-answer period of no longer than five minutes.\n\nPrerequisites: Enrollment requires that a student be a graduate student who has participated in short rotations", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83604\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83604/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -55887,7 +116162,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -55930,7 +116233,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -55973,7 +116304,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -56016,7 +116375,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -56059,7 +116446,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -56102,7 +116517,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -56145,7 +116588,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -56188,7 +116659,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -56231,7 +116730,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -56274,7 +116801,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -56317,7 +116872,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -56360,7 +116943,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -56403,7 +117014,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -56446,7 +117085,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -56489,7 +117156,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -56532,7 +117227,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -56575,7 +117298,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -56618,7 +117369,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -56661,7 +117440,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -56704,7 +117511,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -56747,7 +117582,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -56790,7 +117653,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -56833,7 +117724,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -56876,7 +117795,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -56919,7 +117866,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -56962,7 +117937,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -57005,7 +118008,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -57048,7 +118079,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -57091,7 +118150,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -57134,7 +118221,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -57177,7 +118292,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -57220,7 +118363,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -57263,7 +118434,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -57306,7 +118505,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -57349,7 +118576,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -57392,7 +118647,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -57435,7 +118718,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -57478,7 +118789,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -57521,7 +118860,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -57564,7 +118931,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -57607,7 +119002,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -57650,7 +119073,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -57693,7 +119144,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -57736,7 +119215,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -57782,7 +119289,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -57828,7 +119363,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -57874,7 +119437,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -57920,7 +119511,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -57966,7 +119585,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -58012,7 +119659,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -58058,7 +119733,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -58101,7 +119804,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -58140,7 +119871,7 @@ "14:30", "16:20", "GEO350 C203 - 350 George Street C203", - "https:\/\/map.yale.edu\/?id=1910#!m\/563701" + "https://map.yale.edu/?id=1910#!m/563701" ] ] }, @@ -58158,10 +119889,115 @@ "classnotes": "Permission of the instructor is REQUIRED for this seminar. Preregistration applications are required, and students should apply on the Yale Course Selection site by December 2. The instructor will select students and construct a waiting list by December 8. Students should include on their application: \n\uf0a7\tName, Class, Preferred Pronouns, Major, and if in Ed Studies \n\uf0a7\tBriefly describe previous experience working with children\n\uf0a7\tWhy do you want to take this class?\n\uf0a7\tWill you be able to identify a child to observe?\n\uf0a7\tIs there anything else you think it would be helpful to know about you?\nThe full syllabus can be found on Canvas. Students are expected to arrange on their own to do a weekly observation of 1 hour per week (either in person or virtually) of a child under the age of 6. It is expected that an additional 2 hour in- person classroom observation will also be possible at Calvin Hill Day Care Center. Total observation time commitment is 3 hours per week.", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85898\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85898/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998665452003479, + 0.998828113079071, + 0.9987382292747498, + 0.9988815188407898, + 0.9988529682159424, + 0.9989120960235596, + 0.9987873435020447 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989159107208252, + 0.9989103078842163, + 0.9988768696784973, + 0.9956915974617004, + 0.99886155128479 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989338517189026, + 0.9989217519760132, + 0.9989157915115356, + 0.9989124536514282, + 0.9968796968460083, + 0.9989218711853027, + 0.998829185962677, + 0.9987707734107971 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 20 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -58203,7 +120039,7 @@ "9:25", "11:15", "GEO350 C203 - 350 George Street C203", - "https:\/\/map.yale.edu\/?id=1910#!m\/563701" + "https://map.yale.edu/?id=1910#!m/563701" ] ] }, @@ -58221,10 +120057,83 @@ "classnotes": "Permission of the instructors is REQUIRED for this seminar. Preregistration applications are required, and students should apply on the Yale Course Selection site by December 2. The instructors will select students and construct a waiting list by December 8. Students should include on their application: \n\uf0a7\tName, Class, Preferred Pronouns, Major, and if in Ed Studies \n\uf0a7\tBriefly describe previous experience working with children\n\uf0a7\tWhy do you want to take this class?\n\uf0a7\tWill you be able to identify a child to observe?\n\uf0a7\tIs there anything else you think it would be helpful for us to know about you?\no\tThe full syllabus can be found on Canvas.\no\tAdditional information: Students are expected to arrange on their own to do a weekly observation of 1 hour per week (either in person or virtually) of a child under the age of 6. It is expected that an additional 2 hour in- person classroom observation will also be possible at Calvin Hill Day Care Center. Total observation time commitment is 3 hours per week.\n", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85899\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85899/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985910058021545 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.998880922794342 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998553454875946, + 0.9988679885864258 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 4, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 4 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -58272,7 +120181,7 @@ "15:30", "17:00", "CSC COHEN-AUD - Child Study Center COHEN-AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/563701" + "https://map.yale.edu/?id=1910#!m/563701" ] ] }, @@ -58288,10 +120197,133 @@ "classnotes": "All classes will be held in the Child Study Center Cohen Auditorium (E02). Permission of the instructors is REQUIRED for this seminar. Preregistration applications are required, and students should apply on the Yale Course Selection site. Instructors will select students and construct a waiting list. Students should include on their application: \n\uf0a7\tName, Class, Preferred Pronouns, Major \n\uf0a7\tBriefly describe any previous experience with autism\n\uf0a7\tWhy do you want to take this class?\nThe full syllabus can be found on Canvas.\n", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85900\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/85900/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9973719120025635, + 0.9988712668418884, + 0.9989055395126343, + 0.9988553524017334, + 0.9985491633415222, + 0.9988961219787598, + 0.9988141059875488, + 0.998775064945221 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988484382629395, + 0.9971529245376587, + 0.9988824725151062, + 0.9988995790481567, + 0.9987688660621643, + 0.9984897375106812, + 0.9987906813621521, + 0.9995049238204956, + 0.9989175796508789, + 0.9985935091972351 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9986648559570312, + 0.9976826906204224, + 0.9974592328071594, + 0.9988866448402405, + 0.9989091157913208, + 0.9988798499107361, + 0.9994813799858093, + 0.9988791346549988, + 0.9988343119621277, + 0.9992978572845459 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 24, + "final_proportion": 0.8571428571428571, + "final_counts": { + "POSITIVE": 24, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + } + } }, { "season_code": "202301", @@ -58328,7 +120360,7 @@ "9:25", "10:15", "WTS B30 - Watson Center 60 Sachem Street B30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Tuesday": [ @@ -58336,7 +120368,7 @@ "9:25", "10:15", "WTS B30 - Watson Center 60 Sachem Street B30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -58344,7 +120376,7 @@ "9:25", "10:15", "WTS B30 - Watson Center 60 Sachem Street B30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -58352,7 +120384,7 @@ "9:25", "10:15", "WTS B30 - Watson Center 60 Sachem Street B30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Friday": [ @@ -58360,7 +120392,7 @@ "9:25", "10:15", "WTS B30 - Watson Center 60 Sachem Street B30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -58376,10 +120408,93 @@ "classnotes": "", "final_exam": "Friday, May 5, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83654\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83654/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986791014671326, + 0.9989159107208252 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998763918876648, + 0.9963030815124512 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989261031150818, + 0.9989258646965027, + 0.9989253878593445, + 0.9982989430427551, + 0.9988112449645996 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 9 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -58456,10 +120571,38 @@ "classnotes": "", "final_exam": "Friday, May 5, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83656\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83656/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -58496,7 +120639,7 @@ "10:30", "11:20", "BASSLB L73 - Bass Library L73", - "https:\/\/map.yale.edu\/?id=1910#!m\/564574" + "https://map.yale.edu/?id=1910#!m/564574" ] ], "Tuesday": [ @@ -58504,7 +120647,7 @@ "10:30", "11:20", "BASSLB L73 - Bass Library L73", - "https:\/\/map.yale.edu\/?id=1910#!m\/564574" + "https://map.yale.edu/?id=1910#!m/564574" ] ], "Wednesday": [ @@ -58512,7 +120655,7 @@ "10:30", "11:20", "BASSLB L73 - Bass Library L73", - "https:\/\/map.yale.edu\/?id=1910#!m\/564574" + "https://map.yale.edu/?id=1910#!m/564574" ] ], "Thursday": [ @@ -58520,7 +120663,7 @@ "10:30", "11:20", "BASSLB L73 - Bass Library L73", - "https:\/\/map.yale.edu\/?id=1910#!m\/564574" + "https://map.yale.edu/?id=1910#!m/564574" ] ], "Friday": [ @@ -58528,7 +120671,7 @@ "10:30", "11:20", "BASSLB L73 - Bass Library L73", - "https:\/\/map.yale.edu\/?id=1910#!m\/564574" + "https://map.yale.edu/?id=1910#!m/564574" ] ] }, @@ -58542,10 +120685,97 @@ "classnotes": "", "final_exam": "Friday, May 5, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83659\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83659/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984036087989807, + 0.9986250400543213, + 0.9985577464103699, + 0.9945070147514343 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988952875137329, + 0.9986568689346313, + 0.9976584911346436 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989314675331116, + 0.9989363551139832, + 0.9988526105880737, + 0.998225748538971 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 11 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -58582,7 +120812,7 @@ "10:30", "11:20", "WALL53 208 - 53 Wall Street 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/559554" + "https://map.yale.edu/?id=1910#!m/559554" ] ], "Tuesday": [ @@ -58590,7 +120820,7 @@ "10:30", "11:20", "WALL53 208 - 53 Wall Street 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/559554" + "https://map.yale.edu/?id=1910#!m/559554" ] ], "Wednesday": [ @@ -58598,7 +120828,7 @@ "10:30", "11:20", "WALL53 208 - 53 Wall Street 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/559554" + "https://map.yale.edu/?id=1910#!m/559554" ] ], "Thursday": [ @@ -58606,7 +120836,7 @@ "10:30", "11:20", "WALL53 208 - 53 Wall Street 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/559554" + "https://map.yale.edu/?id=1910#!m/559554" ] ], "Friday": [ @@ -58614,7 +120844,7 @@ "10:30", "11:20", "WALL53 208 - 53 Wall Street 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/559554" + "https://map.yale.edu/?id=1910#!m/559554" ] ] }, @@ -58628,10 +120858,103 @@ "classnotes": "", "final_exam": "Friday, May 5, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83662\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83662/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988667964935303, + 0.9988007545471191, + 0.9986159801483154, + 0.9937270879745483, + 0.9985320568084717 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989118576049805, + 0.994968831539154, + 0.9988977909088135, + 0.9988627433776855 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989333748817444, + 0.998895525932312, + 0.9985169768333435, + 0.9986687898635864, + 0.9989364743232727 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 14 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -58668,7 +120991,7 @@ "10:30", "11:20", "WTS B36 - Watson Center 60 Sachem Street B36", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Tuesday": [ @@ -58676,7 +120999,7 @@ "10:30", "11:20", "WTS B36 - Watson Center 60 Sachem Street B36", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -58684,7 +121007,7 @@ "10:30", "11:20", "WTS B36 - Watson Center 60 Sachem Street B36", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -58692,7 +121015,7 @@ "10:30", "11:20", "WTS B36 - Watson Center 60 Sachem Street B36", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Friday": [ @@ -58700,7 +121023,7 @@ "10:30", "11:20", "WTS B36 - Watson Center 60 Sachem Street B36", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -58714,10 +121037,115 @@ "classnotes": "", "final_exam": "Friday, May 5, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83664\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83664/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9636723399162292, + 0.9985748529434204, + 0.9985755681991577, + 0.9940013289451599, + 0.9817342758178711, + 0.9988885521888733 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9986779093742371, + 0.9984878301620483, + 0.9989043474197388, + 0.9965853691101074, + 0.9987422823905945, + 0.9990463852882385 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987202882766724, + 0.9987859129905701, + 0.9989126920700073, + 0.9988774657249451, + 0.9989055395126343, + 0.997117280960083, + 0.9988901019096375 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 0.8947368421052632, + "final_counts": { + "POSITIVE": 17, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8947368421052632, + "NEGATIVE": 0.10526315789473684 + } + } }, { "season_code": "202301", @@ -58754,7 +121182,7 @@ "11:35", "12:25", "BASSLB L70 - Bass Library L70", - "https:\/\/map.yale.edu\/?id=1910#!m\/564574" + "https://map.yale.edu/?id=1910#!m/564574" ] ], "Tuesday": [ @@ -58762,7 +121190,7 @@ "11:35", "12:25", "BASSLB L70 - Bass Library L70", - "https:\/\/map.yale.edu\/?id=1910#!m\/564574" + "https://map.yale.edu/?id=1910#!m/564574" ] ], "Wednesday": [ @@ -58770,7 +121198,7 @@ "11:35", "12:25", "BASSLB L70 - Bass Library L70", - "https:\/\/map.yale.edu\/?id=1910#!m\/564574" + "https://map.yale.edu/?id=1910#!m/564574" ] ], "Thursday": [ @@ -58778,7 +121206,7 @@ "11:35", "12:25", "BASSLB L70 - Bass Library L70", - "https:\/\/map.yale.edu\/?id=1910#!m\/564574" + "https://map.yale.edu/?id=1910#!m/564574" ] ], "Friday": [ @@ -58786,7 +121214,7 @@ "11:35", "12:25", "BASSLB L70 - Bass Library L70", - "https:\/\/map.yale.edu\/?id=1910#!m\/564574" + "https://map.yale.edu/?id=1910#!m/564574" ] ] }, @@ -58800,10 +121228,131 @@ "classnotes": "", "final_exam": "Friday, May 5, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83668\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83668/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989171028137207, + 0.9902734160423279, + 0.9988954067230225, + 0.9983708262443542, + 0.9989191293716431, + 0.9982175230979919, + 0.9989081621170044, + 0.9986565113067627, + 0.9989275336265564, + 0.9972842931747437 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987252354621887, + 0.9959153532981873, + 0.998822033405304, + 0.9987040758132935, + 0.9940424561500549, + 0.9979131817817688, + 0.9984437823295593, + 0.9977821707725525, + 0.9988111257553101 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988903403282166, + 0.9988784193992615, + 0.9840233325958252, + 0.9995049238204956, + 0.9986955523490906, + 0.9985887408256531, + 0.9987003803253174, + 0.997117280960083 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "final_label": "POSITIVE", + "final_count": 23, + "final_proportion": 0.8518518518518519, + "final_counts": { + "POSITIVE": 23, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.8518518518518519, + "NEGATIVE": 0.14814814814814814 + } + } }, { "season_code": "202301", @@ -58840,7 +121389,7 @@ "11:35", "12:25", "WTS B35 - Watson Center 60 Sachem Street B35", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Tuesday": [ @@ -58848,7 +121397,7 @@ "11:35", "12:25", "WTS B35 - Watson Center 60 Sachem Street B35", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -58856,7 +121405,7 @@ "11:35", "12:25", "WTS B35 - Watson Center 60 Sachem Street B35", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -58864,7 +121413,7 @@ "11:35", "12:25", "WTS B35 - Watson Center 60 Sachem Street B35", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Friday": [ @@ -58872,7 +121421,7 @@ "11:35", "12:25", "WTS B35 - Watson Center 60 Sachem Street B35", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -58886,10 +121435,95 @@ "classnotes": "", "final_exam": "Friday, May 5, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83670\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83670/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988718628883362, + 0.9988555908203125, + 0.9836636781692505 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988285899162292, + 0.998872697353363, + 0.9986382126808167 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988644123077393, + 0.9988460540771484, + 0.9988365769386292 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 8, + "final_proportion": 0.8888888888888888, + "final_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + } + } }, { "season_code": "202301", @@ -58926,7 +121560,7 @@ "9:25", "10:15", "WTS B35 - Watson Center 60 Sachem Street B35", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Tuesday": [ @@ -58934,7 +121568,7 @@ "9:25", "10:15", "WTS B35 - Watson Center 60 Sachem Street B35", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -58942,7 +121576,7 @@ "9:25", "10:15", "WTS B35 - Watson Center 60 Sachem Street B35", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -58950,7 +121584,7 @@ "9:25", "10:15", "WTS B35 - Watson Center 60 Sachem Street B35", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Friday": [ @@ -58958,7 +121592,7 @@ "9:25", "10:15", "WTS B35 - Watson Center 60 Sachem Street B35", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -58972,10 +121606,103 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83672\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83672/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998637855052948, + 0.9987953901290894, + 0.9988856911659241, + 0.9989207983016968 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.998898983001709, + 0.9989160299301147, + 0.9988239407539368, + 0.8850929141044617 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986133575439453, + 0.998392641544342, + 0.9989340901374817, + 0.9986842274665833, + 0.9989294409751892 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 0.9230769230769231, + "final_counts": { + "POSITIVE": 12, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9230769230769231, + "NEGATIVE": 0.07692307692307693 + } + } }, { "season_code": "202301", @@ -59012,7 +121739,7 @@ "10:30", "11:20", "WTS B51 - Watson Center 60 Sachem Street B51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Tuesday": [ @@ -59020,7 +121747,7 @@ "10:30", "11:20", "WTS B51 - Watson Center 60 Sachem Street B51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -59028,7 +121755,7 @@ "10:30", "11:20", "WTS B51 - Watson Center 60 Sachem Street B51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -59036,7 +121763,7 @@ "10:30", "11:20", "WTS B51 - Watson Center 60 Sachem Street B51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Friday": [ @@ -59044,7 +121771,7 @@ "10:30", "11:20", "WTS B51 - Watson Center 60 Sachem Street B51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -59058,10 +121785,113 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83675\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83675/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986831545829773, + 0.9988532066345215, + 0.9987543821334839, + 0.9986950755119324, + 0.998796820640564 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989287257194519, + 0.9988842606544495, + 0.9643722176551819, + 0.9989128112792969, + 0.9988777041435242, + 0.998405396938324, + 0.9989238381385803 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.7142857142857143, + "NEGATIVE": 0.2857142857142857 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7142857142857143 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9974633455276489, + 0.9989305138587952, + 0.9988831877708435, + 0.9988101720809937, + 0.9989171028137207, + 0.9989118576049805 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 0.8888888888888888, + "final_counts": { + "POSITIVE": 16, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + } + } }, { "season_code": "202301", @@ -59098,7 +121928,7 @@ "9:25", "10:15", "WTS A32 - Watson Center 60 Sachem Street A32", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Tuesday": [ @@ -59106,7 +121936,7 @@ "9:25", "10:15", "WTS A32 - Watson Center 60 Sachem Street A32", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -59114,7 +121944,7 @@ "9:25", "10:15", "WTS A32 - Watson Center 60 Sachem Street A32", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -59122,7 +121952,7 @@ "9:25", "10:15", "WTS A32 - Watson Center 60 Sachem Street A32", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Friday": [ @@ -59130,7 +121960,7 @@ "9:25", "10:15", "WTS A32 - Watson Center 60 Sachem Street A32", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -59144,10 +121974,85 @@ "classnotes": "", "final_exam": "Friday, May 5, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83678\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83678/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9958515167236328, + 0.9987034797668457 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989101886749268 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.99887615442276, + 0.9989327788352966 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 5, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 5 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -59184,7 +122089,7 @@ "10:30", "11:20", "WTS A32 - Watson Center 60 Sachem Street A32", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Tuesday": [ @@ -59192,7 +122097,7 @@ "10:30", "11:20", "WTS A32 - Watson Center 60 Sachem Street A32", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -59200,7 +122105,7 @@ "10:30", "11:20", "WTS A32 - Watson Center 60 Sachem Street A32", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -59208,7 +122113,7 @@ "10:30", "11:20", "WTS A32 - Watson Center 60 Sachem Street A32", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Friday": [ @@ -59216,7 +122121,7 @@ "10:30", "11:20", "WTS A32 - Watson Center 60 Sachem Street A32", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -59230,10 +122135,115 @@ "classnotes": "", "final_exam": "Friday, May 5, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83679\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83679/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988316893577576, + 0.9987590312957764, + 0.9986070990562439, + 0.9987611770629883, + 0.9959816932678223, + 0.9989001750946045, + 0.998043417930603 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986036419868469, + 0.9988321661949158, + 0.9988768696784973, + 0.9649717211723328, + 0.9989301562309265, + 0.9878820180892944 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989238381385803, + 0.9989297986030579, + 0.9984655380249023, + 0.9987824559211731, + 0.998284637928009, + 0.9986978769302368, + 0.9988844990730286 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 20 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -59270,7 +122280,7 @@ "10:30", "11:20", "WTS B62 - Watson Center 60 Sachem Street B62", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Tuesday": [ @@ -59278,7 +122288,7 @@ "10:30", "11:20", "WTS B62 - Watson Center 60 Sachem Street B62", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -59286,7 +122296,7 @@ "10:30", "11:20", "WTS B62 - Watson Center 60 Sachem Street B62", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -59294,7 +122304,7 @@ "10:30", "11:20", "WTS B62 - Watson Center 60 Sachem Street B62", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Friday": [ @@ -59302,7 +122312,7 @@ "10:30", "11:20", "WTS B62 - Watson Center 60 Sachem Street B62", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -59316,10 +122326,111 @@ "classnotes": "", "final_exam": "Friday, May 5, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83681\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83681/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988498687744141, + 0.9986274242401123, + 0.9988732933998108, + 0.9987284541130066, + 0.9986549615859985, + 0.9988700747489929 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988565444946289, + 0.9986659288406372, + 0.9967707395553589, + 0.9817830920219421, + 0.9986909031867981, + 0.9989057779312134 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989374279975891, + 0.9988868832588196, + 0.9989237189292908, + 0.9980555772781372, + 0.9989396929740906, + 0.9989156723022461 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 18 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -59356,7 +122467,7 @@ "10:30", "11:20", "SML 218 - Sterling Memorial Library 218", - "https:\/\/map.yale.edu\/?id=1910#!m\/563698" + "https://map.yale.edu/?id=1910#!m/563698" ] ], "Tuesday": [ @@ -59364,7 +122475,7 @@ "10:30", "11:20", "SML 218 - Sterling Memorial Library 218", - "https:\/\/map.yale.edu\/?id=1910#!m\/563698" + "https://map.yale.edu/?id=1910#!m/563698" ] ], "Wednesday": [ @@ -59372,7 +122483,7 @@ "10:30", "11:20", "SML 218 - Sterling Memorial Library 218", - "https:\/\/map.yale.edu\/?id=1910#!m\/563698" + "https://map.yale.edu/?id=1910#!m/563698" ] ], "Thursday": [ @@ -59380,7 +122491,7 @@ "10:30", "11:20", "SML 218 - Sterling Memorial Library 218", - "https:\/\/map.yale.edu\/?id=1910#!m\/563698" + "https://map.yale.edu/?id=1910#!m/563698" ] ], "Friday": [ @@ -59388,7 +122499,7 @@ "10:30", "11:20", "SML 218 - Sterling Memorial Library 218", - "https:\/\/map.yale.edu\/?id=1910#!m\/563698" + "https://map.yale.edu/?id=1910#!m/563698" ] ] }, @@ -59402,10 +122513,113 @@ "classnotes": "", "final_exam": "Friday, May 5, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83683\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83683/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988638162612915, + 0.998742401599884, + 0.9878764152526855, + 0.9965459704399109, + 0.9850823879241943, + 0.9985968470573425 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988943934440613, + 0.9989357590675354, + 0.9984411597251892, + 0.998917818069458, + 0.9972290396690369, + 0.9943898320198059 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988763928413391, + 0.9988512992858887, + 0.9398151636123657, + 0.9986503720283508, + 0.9963794350624084, + 0.9986950755119324 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 0.9444444444444444, + "final_counts": { + "POSITIVE": 17, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9444444444444444, + "NEGATIVE": 0.05555555555555555 + } + } }, { "season_code": "202301", @@ -59442,7 +122656,7 @@ "11:35", "12:25", "WTS B30 - Watson Center 60 Sachem Street B30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Tuesday": [ @@ -59450,7 +122664,7 @@ "11:35", "12:25", "WTS B30 - Watson Center 60 Sachem Street B30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -59458,7 +122672,7 @@ "11:35", "12:25", "WTS B30 - Watson Center 60 Sachem Street B30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -59466,7 +122680,7 @@ "11:35", "12:25", "WTS B30 - Watson Center 60 Sachem Street B30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Friday": [ @@ -59474,7 +122688,7 @@ "11:35", "12:25", "WTS B30 - Watson Center 60 Sachem Street B30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -59488,10 +122702,123 @@ "classnotes": "", "final_exam": "Friday, May 5, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83686\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83686/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986644983291626, + 0.9985262155532837, + 0.998838484287262, + 0.9987679123878479, + 0.9989269375801086, + 0.9986574649810791, + 0.9989117383956909 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981234669685364, + 0.998859167098999, + 0.9986100196838379, + 0.9989045858383179, + 0.9989011287689209, + 0.9989253878593445, + 0.9969016313552856, + 0.9988783001899719 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9978499412536621, + 0.9989181756973267, + 0.9989388585090637, + 0.9986139535903931, + 0.9987019300460815, + 0.9989240765571594, + 0.998923122882843, + 0.998863935470581 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 22, + "final_proportion": 0.9565217391304348, + "final_counts": { + "POSITIVE": 22, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9565217391304348, + "NEGATIVE": 0.043478260869565216 + } + } }, { "season_code": "202301", @@ -59528,7 +122855,7 @@ "9:25", "10:15", "WTS A68 - Watson Center 60 Sachem Street A68", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Tuesday": [ @@ -59536,7 +122863,7 @@ "9:25", "10:15", "WTS A68 - Watson Center 60 Sachem Street A68", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -59544,7 +122871,7 @@ "9:25", "10:15", "WTS A68 - Watson Center 60 Sachem Street A68", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -59552,7 +122879,7 @@ "9:25", "10:15", "WTS A68 - Watson Center 60 Sachem Street A68", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Friday": [ @@ -59560,7 +122887,7 @@ "9:25", "10:15", "WTS A68 - Watson Center 60 Sachem Street A68", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -59574,10 +122901,105 @@ "classnotes": "", "final_exam": "Friday, May 5, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83618\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83618/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988516569137573, + 0.9986382126808167, + 0.9977843165397644, + 0.9988023042678833, + 0.9988299012184143 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998907208442688, + 0.9987912774085999, + 0.998664140701294, + 0.9988957643508911, + 0.9988415837287903 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989019632339478, + 0.9988431930541992, + 0.9987609386444092, + 0.998909592628479, + 0.9988964796066284 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 15 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -59614,7 +123036,7 @@ "10:30", "11:20", "TM432 102 - 432 Temple Street 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/559942" + "https://map.yale.edu/?id=1910#!m/559942" ] ], "Tuesday": [ @@ -59622,7 +123044,7 @@ "10:30", "11:20", "TM432 102 - 432 Temple Street 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/559942" + "https://map.yale.edu/?id=1910#!m/559942" ] ], "Wednesday": [ @@ -59630,7 +123052,7 @@ "10:30", "11:20", "TM432 102 - 432 Temple Street 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/559942" + "https://map.yale.edu/?id=1910#!m/559942" ] ], "Thursday": [ @@ -59638,7 +123060,7 @@ "10:30", "11:20", "TM432 102 - 432 Temple Street 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/559942" + "https://map.yale.edu/?id=1910#!m/559942" ] ], "Friday": [ @@ -59646,7 +123068,7 @@ "10:30", "11:20", "TM432 102 - 432 Temple Street 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/559942" + "https://map.yale.edu/?id=1910#!m/559942" ] ] }, @@ -59660,10 +123082,97 @@ "classnotes": "", "final_exam": "Friday, May 5, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83623\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83623/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998711109161377, + 0.9988810420036316 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9976255297660828, + 0.998722493648529, + 0.9989277720451355, + 0.9982801675796509 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988629817962646, + 0.9983460903167725, + 0.99891197681427, + 0.998890221118927 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 0.9, + "final_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + } + } }, { "season_code": "202301", @@ -59700,7 +123209,7 @@ "10:30", "11:20", "WTS A72 - Watson Center 60 Sachem Street A72", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Tuesday": [ @@ -59708,7 +123217,7 @@ "10:30", "11:20", "WTS A72 - Watson Center 60 Sachem Street A72", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -59716,7 +123225,7 @@ "10:30", "11:20", "WTS A72 - Watson Center 60 Sachem Street A72", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -59724,7 +123233,7 @@ "10:30", "11:20", "WTS A72 - Watson Center 60 Sachem Street A72", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Friday": [ @@ -59732,7 +123241,7 @@ "10:30", "11:20", "WTS A72 - Watson Center 60 Sachem Street A72", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -59746,10 +123255,133 @@ "classnotes": "", "final_exam": "Friday, May 5, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83627\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83627/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986918568611145, + 0.9985771179199219, + 0.9973568916320801, + 0.9986969828605652, + 0.9988454580307007, + 0.998896598815918, + 0.998836100101471, + 0.9985843896865845, + 0.9974660873413086 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989086389541626, + 0.9988975524902344, + 0.9989205598831177, + 0.9988634586334229, + 0.9982128143310547, + 0.9989301562309265, + 0.9987712502479553, + 0.9988895058631897, + 0.999427855014801, + 0.9988698363304138 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998678982257843, + 0.9989159107208252, + 0.9984083771705627, + 0.99880051612854, + 0.9989049434661865, + 0.9988952279090881, + 0.9988723397254944, + 0.9988652467727661, + 0.9988316893577576 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 27, + "final_proportion": 0.9642857142857143, + "final_counts": { + "POSITIVE": 27, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9642857142857143, + "NEGATIVE": 0.03571428571428571 + } + } }, { "season_code": "202301", @@ -59786,7 +123418,7 @@ "11:35", "12:25", "WTS A72 - Watson Center 60 Sachem Street A72", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Tuesday": [ @@ -59794,7 +123426,7 @@ "11:35", "12:25", "WTS A72 - Watson Center 60 Sachem Street A72", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -59802,7 +123434,7 @@ "11:35", "12:25", "WTS A72 - Watson Center 60 Sachem Street A72", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -59810,7 +123442,7 @@ "11:35", "12:25", "WTS A72 - Watson Center 60 Sachem Street A72", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Friday": [ @@ -59818,7 +123450,7 @@ "11:35", "12:25", "WTS A72 - Watson Center 60 Sachem Street A72", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -59832,10 +123464,97 @@ "classnotes": "", "final_exam": "Friday, May 5, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83632\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83632/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988162517547607, + 0.9988604784011841, + 0.9986661672592163, + 0.9979075193405151 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988018274307251, + 0.9975257515907288, + 0.9989069700241089, + 0.9988821148872375 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987202882766724, + 0.9988308548927307, + 0.9986420273780823 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 11 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -59872,7 +123591,7 @@ "9:25", "10:15", "WTS B51 - Watson Center 60 Sachem Street B51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -59880,7 +123599,7 @@ "9:25", "10:15", "WTS B51 - Watson Center 60 Sachem Street B51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Friday": [ @@ -59888,7 +123607,7 @@ "9:25", "10:15", "WTS B51 - Watson Center 60 Sachem Street B51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -59902,10 +123621,97 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83637\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83637/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987586736679077, + 0.9987697005271912, + 0.99872225522995, + 0.9988216757774353 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988844990730286, + 0.998807430267334, + 0.9989006519317627 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.997117280960083, + 0.9989222288131714, + 0.9989354014396667, + 0.9988571405410767 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 11 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -59942,7 +123748,7 @@ "10:30", "11:20", "WTS B35 - Watson Center 60 Sachem Street B35", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -59950,7 +123756,7 @@ "10:30", "11:20", "WTS B35 - Watson Center 60 Sachem Street B35", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Friday": [ @@ -59958,7 +123764,7 @@ "10:30", "11:20", "WTS B35 - Watson Center 60 Sachem Street B35", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -59972,10 +123778,107 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83640\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83640/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988946318626404, + 0.9956243634223938, + 0.9921137094497681, + 0.9986431002616882, + 0.9986684322357178 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9978213310241699, + 0.9873812198638916, + 0.9980711340904236, + 0.9988658428192139, + 0.99880051612854, + 0.9989039897918701 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987523555755615, + 0.9981285929679871, + 0.9988393187522888, + 0.998923122882843 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 0.9333333333333333, + "final_counts": { + "POSITIVE": 14, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9333333333333333, + "NEGATIVE": 0.06666666666666667 + } + } }, { "season_code": "202301", @@ -60012,7 +123915,7 @@ "11:35", "12:25", "WTS A32 - Watson Center 60 Sachem Street A32", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -60020,7 +123923,7 @@ "11:35", "12:25", "WTS A32 - Watson Center 60 Sachem Street A32", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Friday": [ @@ -60028,7 +123931,7 @@ "11:35", "12:25", "WTS A32 - Watson Center 60 Sachem Street A32", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -60042,10 +123945,97 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83644\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83644/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.99869304895401, + 0.9988589286804199, + 0.9988617897033691, + 0.9988685846328735 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988998174667358, + 0.9989112615585327, + 0.998579740524292, + 0.9988396763801575 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989023208618164, + 0.9988766312599182, + 0.9985346794128418 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 11 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -60082,7 +124072,7 @@ "10:30", "11:20", "WTS A68 - Watson Center 60 Sachem Street A68", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -60090,7 +124080,7 @@ "10:30", "11:20", "WTS A68 - Watson Center 60 Sachem Street A68", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Friday": [ @@ -60098,7 +124088,7 @@ "10:30", "11:20", "WTS A68 - Watson Center 60 Sachem Street A68", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -60112,10 +124102,93 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83647\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83647/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988077878952026, + 0.99885094165802, + 0.9982420206069946 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989112615585327, + 0.9989280104637146, + 0.9988622665405273 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989159107208252, + 0.9987799525260925, + 0.9988609552383423 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 9 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -60152,7 +124225,7 @@ "11:35", "12:25", "BASSLB L73 - Bass Library L73", - "https:\/\/map.yale.edu\/?id=1910#!m\/564574" + "https://map.yale.edu/?id=1910#!m/564574" ] ], "Wednesday": [ @@ -60160,7 +124233,7 @@ "11:35", "12:25", "BASSLB L73 - Bass Library L73", - "https:\/\/map.yale.edu\/?id=1910#!m\/564574" + "https://map.yale.edu/?id=1910#!m/564574" ] ], "Friday": [ @@ -60168,7 +124241,7 @@ "11:35", "12:25", "BASSLB L73 - Bass Library L73", - "https:\/\/map.yale.edu\/?id=1910#!m\/564574" + "https://map.yale.edu/?id=1910#!m/564574" ] ] }, @@ -60182,10 +124255,93 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83650\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83650/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988973140716553, + 0.9981830716133118, + 0.9988111257553101 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998611569404602, + 0.998923122882843, + 0.9929038882255554 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986749291419983, + 0.9988251328468323, + 0.9989373087882996 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 9 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -60222,7 +124378,7 @@ "9:00", "10:15", "SML 218 - Sterling Memorial Library 218", - "https:\/\/map.yale.edu\/?id=1910#!m\/563698" + "https://map.yale.edu/?id=1910#!m/563698" ] ], "Thursday": [ @@ -60230,7 +124386,7 @@ "9:00", "10:15", "SML 218 - Sterling Memorial Library 218", - "https:\/\/map.yale.edu\/?id=1910#!m\/563698" + "https://map.yale.edu/?id=1910#!m/563698" ] ] }, @@ -60244,10 +124400,113 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83653\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83653/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986675977706909, + 0.9987648725509644, + 0.9987782835960388, + 0.9988773465156555, + 0.998640239238739, + 0.9987925291061401, + 0.9988270401954651 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988610744476318, + 0.9935240745544434, + 0.9989039897918701, + 0.9987807869911194, + 0.9991570711135864 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.6, + "NEGATIVE": 0.4 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998924195766449, + 0.998935878276825, + 0.9988610744476318, + 0.9989226460456848, + 0.9988941550254822, + 0.9959931373596191 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 0.8888888888888888, + "final_counts": { + "POSITIVE": 16, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + } + } }, { "season_code": "202301", @@ -60284,7 +124543,7 @@ "9:25", "10:15", "WTS B36 - Watson Center 60 Sachem Street B36", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -60292,7 +124551,7 @@ "9:25", "10:15", "WTS B36 - Watson Center 60 Sachem Street B36", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Friday": [ @@ -60300,7 +124559,7 @@ "9:25", "10:15", "WTS B36 - Watson Center 60 Sachem Street B36", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -60314,10 +124573,87 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83658\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83658/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986119270324707 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998816728591919, + 0.9987342953681946 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988874793052673, + 0.9989268183708191, + 0.9987471103668213 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 6 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -60354,7 +124690,7 @@ "10:30", "11:20", "WTS B30 - Watson Center 60 Sachem Street B30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -60362,7 +124698,7 @@ "10:30", "11:20", "WTS B30 - Watson Center 60 Sachem Street B30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Friday": [ @@ -60370,7 +124706,7 @@ "10:30", "11:20", "WTS B30 - Watson Center 60 Sachem Street B30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -60384,10 +124720,111 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83661\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83661/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9979038238525391, + 0.998572587966919, + 0.9988590478897095, + 0.9987955093383789, + 0.99883633852005 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986979961395264, + 0.9989030361175537, + 0.9988640546798706, + 0.9985415935516357, + 0.9989116191864014 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982553124427795, + 0.9988988637924194, + 0.9977136850357056, + 0.998896598815918, + 0.9967778325080872, + 0.9972884654998779, + 0.9989364743232727 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 0.9411764705882353, + "final_counts": { + "POSITIVE": 16, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9411764705882353, + "NEGATIVE": 0.058823529411764705 + } + } }, { "season_code": "202301", @@ -60424,7 +124861,7 @@ "11:35", "12:25", "WALL53 208 - 53 Wall Street 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/559554" + "https://map.yale.edu/?id=1910#!m/559554" ] ], "Wednesday": [ @@ -60432,7 +124869,7 @@ "11:35", "12:25", "WALL53 208 - 53 Wall Street 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/559554" + "https://map.yale.edu/?id=1910#!m/559554" ] ], "Friday": [ @@ -60440,7 +124877,7 @@ "11:35", "12:25", "WALL53 208 - 53 Wall Street 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/559554" + "https://map.yale.edu/?id=1910#!m/559554" ] ] }, @@ -60454,10 +124891,99 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83665\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83665/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989116191864014, + 0.9986679553985596, + 0.9986352324485779, + 0.998144268989563 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988802075386047, + 0.9987801909446716, + 0.9986432194709778, + 0.9988968372344971 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988616704940796, + 0.9985219836235046, + 0.9989103078842163, + 0.9982553124427795 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 12 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -60494,7 +125020,7 @@ "10:30", "11:20", "BASSLB L70 - Bass Library L70", - "https:\/\/map.yale.edu\/?id=1910#!m\/564574" + "https://map.yale.edu/?id=1910#!m/564574" ] ], "Wednesday": [ @@ -60502,7 +125028,7 @@ "10:30", "11:20", "BASSLB L70 - Bass Library L70", - "https:\/\/map.yale.edu\/?id=1910#!m\/564574" + "https://map.yale.edu/?id=1910#!m/564574" ] ], "Friday": [ @@ -60510,7 +125036,7 @@ "10:30", "11:20", "BASSLB L70 - Bass Library L70", - "https:\/\/map.yale.edu\/?id=1910#!m\/564574" + "https://map.yale.edu/?id=1910#!m/564574" ] ] }, @@ -60524,10 +125050,91 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83667\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83667/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988414645195007, + 0.9988861680030823 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9993963241577148, + 0.998855471611023, + 0.9988629817962646 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986523985862732, + 0.9988899827003479 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 0.8571428571428571, + "final_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + } + } }, { "season_code": "202301", @@ -60564,7 +125171,7 @@ "11:35", "12:50", "TM432 102 - 432 Temple Street 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/559942" + "https://map.yale.edu/?id=1910#!m/559942" ] ], "Thursday": [ @@ -60572,7 +125179,7 @@ "11:35", "12:50", "TM432 102 - 432 Temple Street 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/559942" + "https://map.yale.edu/?id=1910#!m/559942" ] ] }, @@ -60586,10 +125193,107 @@ "classnotes": "", "final_exam": "Monday, May 8, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83671\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83671/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988353848457336, + 0.9988013505935669, + 0.9987010955810547, + 0.9986572265625, + 0.9987793564796448 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989114999771118, + 0.9988433122634888, + 0.9989081621170044, + 0.9976987242698669, + 0.9875562787055969, + 0.9989191293716431 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987913966178894, + 0.997277557849884, + 0.9989321827888489, + 0.9988604784011841, + 0.9989039897918701 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 16 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -60626,7 +125330,7 @@ "11:35", "12:50", "WTS B62 - Watson Center 60 Sachem Street B62", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -60634,7 +125338,7 @@ "11:35", "12:50", "WTS B62 - Watson Center 60 Sachem Street B62", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -60648,10 +125352,109 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83674\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83674/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9976457953453064, + 0.9985972046852112, + 0.997410237789154, + 0.9986683130264282, + 0.9987040758132935 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988952875137329, + 0.9989131689071655, + 0.99892657995224, + 0.9994097948074341, + 0.9988163709640503 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988589286804199, + 0.9988985061645508, + 0.9981507658958435, + 0.9989011287689209, + 0.9986754059791565, + 0.9989112615585327 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 0.875, + "final_counts": { + "POSITIVE": 14, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + } + } }, { "season_code": "202301", @@ -60688,7 +125491,7 @@ "9:00", "10:15", "WTS A72 - Watson Center 60 Sachem Street A72", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -60696,7 +125499,7 @@ "9:00", "10:15", "WTS A72 - Watson Center 60 Sachem Street A72", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -60710,10 +125513,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83677\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83677/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -60750,7 +125581,7 @@ "13:00", "14:15", "WTS B35 - Watson Center 60 Sachem Street B35", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -60758,7 +125589,7 @@ "13:00", "14:15", "WTS B35 - Watson Center 60 Sachem Street B35", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -60772,10 +125603,89 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83680\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83680/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9911064505577087, + 0.9979768395423889 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989345669746399, + 0.9991902709007263 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988523721694946, + 0.998276948928833 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 5, + "final_proportion": 0.8333333333333334, + "final_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + } + } }, { "season_code": "202301", @@ -60813,7 +125723,7 @@ "11:35", "12:50", "HQ 227 - Humanities Quadrangle 227", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -60821,7 +125731,7 @@ "11:35", "12:50", "HQ 227 - Humanities Quadrangle 227", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -60835,10 +125745,81 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83682\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83682/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988974332809448 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989235997200012 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989190101623535 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 3, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 3 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -60876,7 +125857,7 @@ "11:35", "12:50", "HQ 227 - Humanities Quadrangle 227", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -60884,7 +125865,7 @@ "11:35", "12:50", "HQ 227 - Humanities Quadrangle 227", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -60896,10 +125877,81 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83682\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83682/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988974332809448 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989235997200012 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989190101623535 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 3, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 3 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -60937,7 +125989,7 @@ "13:00", "14:15", "PH 312 - Phelps Hall 312", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ], "Thursday": [ @@ -60945,7 +125997,7 @@ "13:00", "14:15", "PH 312 - Phelps Hall 312", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -60957,17 +126009,132 @@ ], "flags": [ "YC CLSS: Hist, Phil, Art, Arcg", - "YC English: 18th\/19th Century " + "YC English: 18th/19th Century " ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85292\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85292/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987068176269531, + 0.9988868832588196, + 0.9984763264656067, + 0.9989318251609802, + 0.9988767504692078, + 0.9987871050834656, + 0.9988489151000977, + 0.9988705515861511 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986646175384521, + 0.9989030361175537, + 0.9904860854148865, + 0.9989287257194519, + 0.9988309741020203, + 0.9989089965820312, + 0.9988657236099243, + 0.9987233281135559 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989219903945923, + 0.9988621473312378, + 0.9989076852798462, + 0.9988928437232971, + 0.9988756775856018, + 0.9954828023910522, + 0.9955392479896545, + 0.9988241791725159 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 23, + "final_proportion": 0.9583333333333334, + "final_counts": { + "POSITIVE": 23, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9583333333333334, + "NEGATIVE": 0.041666666666666664 + } + } }, { "season_code": "202301", @@ -61006,7 +126173,7 @@ "16:00", "17:15", "WLH 113 - William L. Harkness Hall 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -61014,7 +126181,7 @@ "16:00", "17:15", "WLH 113 - William L. Harkness Hall 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -61031,10 +126198,123 @@ "classnotes": "", "final_exam": "Wednesday, May 10, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86014\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86014/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989157915115356, + 0.9983547329902649, + 0.9988113641738892, + 0.9987735152244568, + 0.9988489151000977, + 0.998671293258667, + 0.9988933205604553 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989352822303772, + 0.9988201260566711, + 0.9988436698913574, + 0.9988470077514648, + 0.9989075660705566, + 0.9988760352134705, + 0.9988828301429749, + 0.9989232420921326 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989357590675354, + 0.9976447224617004, + 0.9988884329795837, + 0.9831075668334961, + 0.9988651275634766, + 0.9988718628883362, + 0.9985583424568176, + 0.9989359974861145 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "final_label": "POSITIVE", + "final_count": 22, + "final_proportion": 0.9565217391304348, + "final_counts": { + "POSITIVE": 22, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9565217391304348, + "NEGATIVE": 0.043478260869565216 + } + } }, { "season_code": "202301", @@ -61067,7 +126347,7 @@ "13:30", "14:20", "WLH 203 - William L. Harkness Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -61085,7 +126365,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -61118,7 +126426,7 @@ "14:30", "15:20", "WLH 013 - William L. Harkness Hall 013", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -61136,7 +126444,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -61173,7 +126509,7 @@ "9:00", "10:15", "WLH 210 - William L. Harkness Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -61181,7 +126517,7 @@ "9:00", "10:15", "WLH 210 - William L. Harkness Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -61197,10 +126533,91 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85872\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85872/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987409710884094, + 0.9989006519317627, + 0.9985499978065491 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984036087989807, + 0.998916745185852, + 0.9989142417907715 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998928964138031, + 0.9989249110221863 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 8, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 8 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -61242,12 +126659,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "", - "description": "This class examines how the Greeks and Romans exploited their natural surroundings not only as physical resources, but as resources for human thought. The focus is on how ancient thinkers, living lives that were largely city-bound and detached from nature, structured their thoughts about the lives they lived (and about human existence more generally) by reference to their nonhuman surroundings: creatures, plants and places, some of which existed in the real world (in places far off, largely unknown and elsewhere; in places penetrated, explored, and\/or told of), others of which existed entirely in the imagination, whether as inherited lore, or as places and creatures invented ad hoc by individuals and groups to get certain kinds of cultural work done. We look not only at the how and what, but at the why of nature\u2019s encoding via culture, and vice versa (their symbiosis), paying special attention to ancient Rome (though with a short first glance at Homer, Hesiod and Aristotle). We begin by scrutinizing the categories themselves, attempting to find historically appropriate ways to connect modern ecocritical concerns and ways of thought to the ancient world. Topics include:\u00a0the cosmos, the heavens, and the first humans (and first peoples in their places); humans in their \u2018kinds\u2019 and animals, wild and tame; mountains, rivers, the sea and the undersea; human and animal foods, farming and food ways; wine and fermentation; groves, forests and trees; gardens, flowers, vegetables and fungi; birds, fish, weasels and snakes; earthquakes, floods and natural disasters; pollution, dirt and the city of Rome; the ecocultural lives of others.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } + }, + { + "season_code": "202301", + "requirements": "", + "description": "This class examines how the Greeks and Romans exploited their natural surroundings not only as physical resources, but as resources for human thought. The focus is on how ancient thinkers, living lives that were largely city-bound and detached from nature, structured their thoughts about the lives they lived (and about human existence more generally) by reference to their nonhuman surroundings: creatures, plants and places, some of which existed in the real world (in places far off, largely unknown and elsewhere; in places penetrated, explored, and/or told of), others of which existed entirely in the imagination, whether as inherited lore, or as places and creatures invented ad hoc by individuals and groups to get certain kinds of cultural work done. We look not only at the how and what, but at the why of nature\u2019s encoding via culture, and vice versa (their symbiosis), paying special attention to ancient Rome (though with a short first glance at Homer, Hesiod and Aristotle). We begin by scrutinizing the categories themselves, attempting to find historically appropriate ways to connect modern ecocritical concerns and ways of thought to the ancient world. Topics include:\u00a0the cosmos, the heavens, and the first humans (and first peoples in their places); humans in their \u2018kinds\u2019 and animals, wild and tame; mountains, rivers, the sea and the undersea; human and animal foods, farming and food ways; wine and fermentation; groves, forests and trees; gardens, flowers, vegetables and fungi; birds, fish, weasels and snakes; earthquakes, floods and natural disasters; pollution, dirt and the city of Rome; the ecocultural lives of others.", "short_title": "Ecocultures of Antiquity: Eco...", "title": "Ecocultures of Antiquity: Ecocritical Approaches to Ancient Greece and Rome", "school": "YC", @@ -61281,7 +126726,7 @@ "13:00", "14:15", "PH 207 - Phelps Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ], "Thursday": [ @@ -61289,7 +126734,7 @@ "13:00", "14:15", "PH 207 - Phelps Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -61305,15 +126750,136 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83687\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "", - "description": "This class examines how the Greeks and Romans exploited their natural surroundings not only as physical resources, but as resources for human thought. The focus is on how ancient thinkers, living lives that were largely city-bound and detached from nature, structured their thoughts about the lives they lived (and about human existence more generally) by reference to their nonhuman surroundings: creatures, plants and places, some of which existed in the real world (in places far off, largely unknown and elsewhere; in places penetrated, explored, and\/or told of), others of which existed entirely in the imagination, whether as inherited lore, or as places and creatures invented ad hoc by individuals and groups to get certain kinds of cultural work done. We look not only at the how and what, but at the why of nature\u2019s encoding via culture, and vice versa (their symbiosis), paying special attention to ancient Rome (though with a short first glance at Homer, Hesiod and Aristotle). We begin by scrutinizing the categories themselves, attempting to find historically appropriate ways to connect modern ecocritical concerns and ways of thought to the ancient world. Topics include:\u00a0the cosmos, the heavens, and the first humans (and first peoples in their places); humans in their \u2018kinds\u2019 and animals, wild and tame; mountains, rivers, the sea and the undersea; human and animal foods, farming and food ways; wine and fermentation; groves, forests and trees; gardens, flowers, vegetables and fungi; birds, fish, weasels and snakes; earthquakes, floods and natural disasters; pollution, dirt and the city of Rome; the ecocultural lives of others.", + "syllabus_url": "https://yale.instructure.com/courses/83687/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986658096313477, + 0.9987549781799316, + 0.9988769888877869, + 0.998818576335907, + 0.9989176988601685, + 0.998852014541626, + 0.9986240863800049, + 0.9985535740852356, + 0.9988571405410767 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988806843757629, + 0.9989176988601685, + 0.998863935470581, + 0.9989005327224731, + 0.998892605304718, + 0.9894417524337769, + 0.9989171028137207, + 0.9989120960235596 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987706542015076, + 0.9987742304801941, + 0.9989327788352966, + 0.9974020719528198, + 0.9989235997200012, + 0.9989352822303772, + 0.998933732509613, + 0.9989099502563477, + 0.998870313167572, + 0.9988740086555481 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 9 + }, + "sentiment_distribution": { + "NEGATIVE": 0.1, + "POSITIVE": 0.9 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "final_label": "POSITIVE", + "final_count": 25, + "final_proportion": 0.9259259259259259, + "final_counts": { + "POSITIVE": 25, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9259259259259259, + "NEGATIVE": 0.07407407407407407 + } + } + }, + { + "season_code": "202301", + "requirements": "", + "description": "This class examines how the Greeks and Romans exploited their natural surroundings not only as physical resources, but as resources for human thought. The focus is on how ancient thinkers, living lives that were largely city-bound and detached from nature, structured their thoughts about the lives they lived (and about human existence more generally) by reference to their nonhuman surroundings: creatures, plants and places, some of which existed in the real world (in places far off, largely unknown and elsewhere; in places penetrated, explored, and/or told of), others of which existed entirely in the imagination, whether as inherited lore, or as places and creatures invented ad hoc by individuals and groups to get certain kinds of cultural work done. We look not only at the how and what, but at the why of nature\u2019s encoding via culture, and vice versa (their symbiosis), paying special attention to ancient Rome (though with a short first glance at Homer, Hesiod and Aristotle). We begin by scrutinizing the categories themselves, attempting to find historically appropriate ways to connect modern ecocritical concerns and ways of thought to the ancient world. Topics include:\u00a0the cosmos, the heavens, and the first humans (and first peoples in their places); humans in their \u2018kinds\u2019 and animals, wild and tame; mountains, rivers, the sea and the undersea; human and animal foods, farming and food ways; wine and fermentation; groves, forests and trees; gardens, flowers, vegetables and fungi; birds, fish, weasels and snakes; earthquakes, floods and natural disasters; pollution, dirt and the city of Rome; the ecocultural lives of others.", "short_title": "Ecocultures of Antiquity: Eco...", "title": "Ecocultures of Antiquity: Ecocritical Approaches to Ancient Greece and Rome", "school": "YC", @@ -61341,7 +126907,7 @@ "14:30", "15:20", "HQ 207 - Humanities Quadrangle 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -61358,12 +126924,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This class examines how the Greeks and Romans exploited their natural surroundings not only as physical resources, but as resources for human thought. The focus is on how ancient thinkers, living lives that were largely city-bound and detached from nature, structured their thoughts about the lives they lived (and about human existence more generally) by reference to their nonhuman surroundings: creatures, plants and places, some of which existed in the real world (in places far off, largely unknown and elsewhere; in places penetrated, explored, and\/or told of), others of which existed entirely in the imagination, whether as inherited lore, or as places and creatures invented ad hoc by individuals and groups to get certain kinds of cultural work done. We look not only at the how and what, but at the why of nature\u2019s encoding via culture, and vice versa (their symbiosis), paying special attention to ancient Rome (though with a short first glance at Homer, Hesiod and Aristotle). We begin by scrutinizing the categories themselves, attempting to find historically appropriate ways to connect modern ecocritical concerns and ways of thought to the ancient world. Topics include:\u00a0the cosmos, the heavens, and the first humans (and first peoples in their places); humans in their \u2018kinds\u2019 and animals, wild and tame; mountains, rivers, the sea and the undersea; human and animal foods, farming and food ways; wine and fermentation; groves, forests and trees; gardens, flowers, vegetables and fungi; birds, fish, weasels and snakes; earthquakes, floods and natural disasters; pollution, dirt and the city of Rome; the ecocultural lives of others.", + "description": "This class examines how the Greeks and Romans exploited their natural surroundings not only as physical resources, but as resources for human thought. The focus is on how ancient thinkers, living lives that were largely city-bound and detached from nature, structured their thoughts about the lives they lived (and about human existence more generally) by reference to their nonhuman surroundings: creatures, plants and places, some of which existed in the real world (in places far off, largely unknown and elsewhere; in places penetrated, explored, and/or told of), others of which existed entirely in the imagination, whether as inherited lore, or as places and creatures invented ad hoc by individuals and groups to get certain kinds of cultural work done. We look not only at the how and what, but at the why of nature\u2019s encoding via culture, and vice versa (their symbiosis), paying special attention to ancient Rome (though with a short first glance at Homer, Hesiod and Aristotle). We begin by scrutinizing the categories themselves, attempting to find historically appropriate ways to connect modern ecocritical concerns and ways of thought to the ancient world. Topics include:\u00a0the cosmos, the heavens, and the first humans (and first peoples in their places); humans in their \u2018kinds\u2019 and animals, wild and tame; mountains, rivers, the sea and the undersea; human and animal foods, farming and food ways; wine and fermentation; groves, forests and trees; gardens, flowers, vegetables and fungi; birds, fish, weasels and snakes; earthquakes, floods and natural disasters; pollution, dirt and the city of Rome; the ecocultural lives of others.", "short_title": "Ecocultures of Antiquity: Eco...", "title": "Ecocultures of Antiquity: Ecocritical Approaches to Ancient Greece and Rome", "school": "YC", @@ -61391,7 +126985,7 @@ "16:30", "17:20", "HQ 207 - Humanities Quadrangle 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -61408,7 +127002,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -61447,7 +127069,7 @@ "13:30", "15:20", "LORIA 258 - Loria Center 258", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -61465,10 +127087,99 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84270\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84270/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998818576335907, + 0.9987797141075134, + 0.9988659620285034, + 0.9987853169441223 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9951058626174927, + 0.987722635269165, + 0.9988899827003479, + 0.9982530474662781 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988431930541992, + 0.9985417127609253, + 0.9966233968734741, + 0.9988805651664734 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 12 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -61508,7 +127219,7 @@ "9:25", "11:15", "LUCE 202 - Luce Hall 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ] }, @@ -61524,10 +127235,103 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84495\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84495/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989238381385803, + 0.9988835453987122, + 0.9988100528717041, + 0.9986996650695801, + 0.9987648725509644 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986563920974731, + 0.9988893866539001, + 0.9988890290260315, + 0.9989286065101624 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989092350006104, + 0.9988270401954651, + 0.9988270401954651, + 0.9988808035850525, + 0.9938933253288269 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 14 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -61564,7 +127368,7 @@ "13:30", "15:20", "PH 207 - Phelps Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -61580,10 +127384,117 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86015\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86015/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988766312599182, + 0.9989243149757385, + 0.9988288283348083, + 0.99892657995224, + 0.9989068508148193, + 0.9988681077957153 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998856782913208, + 0.9989308714866638, + 0.9989181756973267, + 0.9989331364631653, + 0.9984180927276611, + 0.9989203214645386, + 0.9989296793937683, + 0.9989237189292908 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.997117280960083, + 0.9988425970077515, + 0.9988918900489807, + 0.9989118576049805, + 0.9988301396369934, + 0.9989338517189026, + 0.9989035129547119 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 21, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 21 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -61626,7 +127537,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -61669,7 +127608,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -61712,7 +127679,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -61755,7 +127750,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -61793,10 +127816,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84492\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84492/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -61837,7 +127888,7 @@ "15:30", "17:20", "PH 312 - Phelps Hall 312", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -61849,15 +127900,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84625\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84625/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "Designed around a series of hands-on, skill-building activities and punctuated by contextualizing lectures, this course introduces a variety of digital humanities methods, tools, and debates of relevance to the study of the premodern world. To provide continuity and a common reference point, activities and demonstrations are oriented around the archaeological site of Dura-Europos (Syria) and allow students to engage firsthand with data, artifacts, and archival materials from the site. Sample topics include introductions to Python and JavaScript; basics of front-end and back-end web development; photogrammetry; Linked Open Data (LOD); digital gazetteers; controlled vocabularies; web annotation; applications of machine learning. No previous digital humanities training or coding experience is required of students registered for the graduate HSAR\/CLSS course numbers.", + "description": "Designed around a series of hands-on, skill-building activities and punctuated by contextualizing lectures, this course introduces a variety of digital humanities methods, tools, and debates of relevance to the study of the premodern world. To provide continuity and a common reference point, activities and demonstrations are oriented around the archaeological site of Dura-Europos (Syria) and allow students to engage firsthand with data, artifacts, and archival materials from the site. Sample topics include introductions to Python and JavaScript; basics of front-end and back-end web development; photogrammetry; Linked Open Data (LOD); digital gazetteers; controlled vocabularies; web annotation; applications of machine learning. No previous digital humanities training or coding experience is required of students registered for the graduate HSAR/CLSS course numbers.", "short_title": "Introduction to the Digital H...", "title": "Introduction to the Digital Humanities for the Premodern World", "school": "GS", @@ -61892,7 +127971,7 @@ "13:00", "14:15", "HQ L01 - Humanities Quadrangle L01", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -61900,7 +127979,7 @@ "13:00", "14:15", "HQ L01 - Humanities Quadrangle L01", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -61912,10 +127991,133 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83706\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83706/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988793730735779, + 0.9989004135131836, + 0.9988210797309875, + 0.9935343265533447, + 0.9899240136146545, + 0.9952617883682251, + 0.9796426892280579, + 0.9989124536514282, + 0.998349666595459, + 0.9988065958023071, + 0.9988523721694946 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.998418927192688, + 0.9983073472976685, + 0.9982520937919617, + 0.9988241791725159, + 0.9956071972846985, + 0.9988527297973633, + 0.9950057864189148 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.7142857142857143, + "NEGATIVE": 0.2857142857142857 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7142857142857143 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998792290687561, + 0.9895544052124023, + 0.9975002408027649, + 0.9974592328071594, + 0.9988669157028198, + 0.997117280960083, + 0.9988960027694702, + 0.998396098613739, + 0.9983506202697754, + 0.9988176226615906 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "final_label": "POSITIVE", + "final_count": 25, + "final_proportion": 0.8928571428571429, + "final_counts": { + "POSITIVE": 25, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.8928571428571429, + "NEGATIVE": 0.10714285714285714 + } + } }, { "season_code": "202301", @@ -61953,7 +128155,7 @@ "13:30", "15:20", "LORIA 358 - Loria Center 358", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -61965,10 +128167,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83689\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83689/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -62005,7 +128235,7 @@ "13:30", "15:20", "LORIA 259 - Loria Center 259", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -62017,10 +128247,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85709\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85709/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -62067,7 +128325,7 @@ "9:25", "11:15", "PH 401 - Phelps Hall 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -62079,10 +128337,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84198\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84198/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -62119,7 +128405,7 @@ "11:35", "12:50", "PH 312 - Phelps Hall 312", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ], "Thursday": [ @@ -62127,7 +128413,7 @@ "11:35", "12:50", "PH 312 - Phelps Hall 312", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -62139,10 +128425,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83692\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83692/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -62179,7 +128493,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -62219,10 +128561,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87491\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87491/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -62262,10 +128632,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86473\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86473/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -62305,7 +128703,7 @@ "10:10", "12:00", "SLB 124 - Sterling Law Buildings 124", - "https:\/\/map.yale.edu\/?id=1910#!m\/531532" + "https://map.yale.edu/?id=1910#!m/531532" ] ] }, @@ -62317,10 +128715,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84353\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84353/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -62359,7 +128785,7 @@ "15:30", "17:20", "WLH 112 - William L. Harkness Hall 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -62371,10 +128797,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83695\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83695/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -62414,7 +128868,7 @@ "15:30", "17:20", "LC 318 - Linsly-Chittenden Hall 318", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -62426,10 +128880,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84321\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84321/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -62470,7 +128952,7 @@ "9:00", "10:15", "WLH 204 - William L. Harkness Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -62478,7 +128960,7 @@ "9:00", "10:15", "WLH 204 - William L. Harkness Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -62490,10 +128972,137 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85871\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85871/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9978925585746765, + 0.9988378882408142, + 0.9985920786857605, + 0.9988939166069031, + 0.9987210631370544, + 0.9984429478645325, + 0.9987871050834656, + 0.9976330995559692, + 0.9988744854927063, + 0.994478702545166 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9944429993629456, + 0.99294114112854, + 0.9989262223243713, + 0.99542635679245, + 0.9989266991615295, + 0.9988217949867249, + 0.9982560276985168, + 0.9989297986030579, + 0.9988956451416016, + 0.9878081679344177, + 0.9949482679367065 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8181818181818182, + "NEGATIVE": 0.18181818181818182 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8181818181818182 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.998847246170044, + 0.9886991381645203, + 0.998894989490509, + 0.9986215829849243, + 0.9987128973007202, + 0.9988466501235962, + 0.9988441467285156, + 0.9876899719238281, + 0.9980016350746155 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.7777777777777778, + "NEGATIVE": 0.2222222222222222 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7777777777777778 + ] + }, + "final_label": "POSITIVE", + "final_count": 26, + "final_proportion": 0.8666666666666667, + "final_counts": { + "POSITIVE": 26, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.8666666666666667, + "NEGATIVE": 0.13333333333333333 + } + } }, { "season_code": "202301", @@ -62540,7 +129149,7 @@ "9:25", "11:15", "PH 401 - Phelps Hall 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -62552,17 +129161,45 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84198\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84198/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", "description": "A systematic, chapter-by-chapter study of Heidegger\u2019s Being and Time, arguably the most important work of philosophy of the twentieth century. All the major themes of the book are addressed in detail, with a particular emphasis on care, time, death, and the meaning of being.", "short_title": "Heidegger\u2019s Being and Time...", - "title": "Heidegger\u2019s Being and Time<\/i>", + "title": "Heidegger\u2019s Being and Time", "school": "GS", "credits": 1.0, "extra_info": "ACTIVE", @@ -62598,7 +129235,7 @@ "13:30", "15:20", "LC 211 - Linsly-Chittenden Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -62610,10 +129247,123 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84403\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84403/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9938866496086121, + 0.9989053010940552, + 0.9977352619171143, + 0.998863697052002, + 0.9988037347793579, + 0.9987534284591675, + 0.9989042282104492, + 0.9989140033721924 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987389445304871, + 0.998935878276825, + 0.9989338517189026, + 0.9988526105880737, + 0.9988893866539001, + 0.9980757236480713, + 0.9989306330680847, + 0.992807149887085 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9979275465011597, + 0.9987668991088867, + 0.9981922507286072, + 0.9970254302024841, + 0.9989197254180908, + 0.9989100694656372, + 0.99888676404953, + 0.9988850951194763 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 24, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 24 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -62652,7 +129402,7 @@ "9:25", "11:15", "HQ 109 - Humanities Quadrangle 109", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -62664,10 +129414,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84166\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84166/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -62706,7 +129484,7 @@ "13:30", "15:20", "HQ 317 - Humanities Quadrangle 317", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -62718,10 +129496,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85803\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85803/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -62759,7 +129565,7 @@ "13:30", "15:20", "SML 120B - Sterling Memorial Library 120B", - "https:\/\/map.yale.edu\/?id=1910#!m\/563698" + "https://map.yale.edu/?id=1910#!m/563698" ] ] }, @@ -62774,7 +129580,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -62812,7 +129646,7 @@ "14:30", "16:30", "HQ 327 - Humanities Quadrangle 327", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -62827,7 +129661,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -62868,7 +129730,7 @@ "13:00", "14:15", "HQ 213 - Humanities Quadrangle 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -62876,7 +129738,7 @@ "13:00", "14:15", "HQ 213 - Humanities Quadrangle 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -62888,10 +129750,107 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84410\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84410/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.996685802936554, + 0.9981920123100281, + 0.9987937211990356, + 0.9988003969192505, + 0.9988400340080261 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987272620201111, + 0.9989301562309265, + 0.9989311099052429, + 0.9989060163497925, + 0.9989307522773743 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987375140190125, + 0.9988834261894226, + 0.9989318251609802, + 0.9989001750946045, + 0.9988529682159424, + 0.9989380240440369 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 16 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -62932,7 +129891,7 @@ "15:30", "17:20", "HQ 127 - Humanities Quadrangle 127", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Saturday": [ @@ -62940,7 +129899,7 @@ "19:00", "22:00", "HQ L01 - Humanities Quadrangle L01", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -62952,10 +129911,99 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85688\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85688/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989221096038818, + 0.9986999034881592, + 0.998695433139801, + 0.9988186955451965 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989305138587952, + 0.9988945126533508, + 0.9967267513275146, + 0.9988848567008972 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988598823547363, + 0.9987875819206238, + 0.9988920092582703, + 0.9989221096038818 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 12 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -62996,7 +130044,7 @@ "11:35", "12:50", "WLH 116 - William L. Harkness Hall 116", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -63004,7 +130052,7 @@ "11:35", "12:50", "WLH 116 - William L. Harkness Hall 116", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -63016,10 +130064,225 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84918\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84918/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989197254180908, + 0.9987603425979614, + 0.9986374974250793, + 0.9986612796783447, + 0.9989274144172668, + 0.9988151788711548, + 0.9987818598747253, + 0.998933732509613, + 0.9988162517547607, + 0.9987201690673828, + 0.998772919178009, + 0.9984657764434814, + 0.9988976716995239, + 0.9987512826919556, + 0.9987969398498535, + 0.998855471611023, + 0.9982750415802002, + 0.998762845993042, + 0.9988588094711304 + ], + "sentiment_counts": { + "POSITIVE": 19, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988947510719299, + 0.9989288449287415, + 0.999372661113739, + 0.9987840056419373, + 0.9970316886901855, + 0.9988811612129211, + 0.9981605410575867, + 0.9989251494407654, + 0.9873360991477966, + 0.9984754920005798, + 0.9992961883544922, + 0.9987847208976746, + 0.9989161491394043, + 0.9666587710380554, + 0.9987657070159912, + 0.9986672401428223, + 0.9988032579421997, + 0.9994205236434937, + 0.9988540410995483, + 0.9981870055198669, + 0.9988904595375061, + 0.9988420605659485, + 0.9994944334030151, + 0.9938912391662598, + 0.9987677335739136, + 0.9988682270050049, + 0.998918890953064 + ], + "sentiment_counts": { + "POSITIVE": 20, + "NEGATIVE": 7 + }, + "sentiment_distribution": { + "POSITIVE": 0.7407407407407407, + "NEGATIVE": 0.25925925925925924 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7407407407407407 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988653659820557, + 0.9989262223243713, + 0.9988555908203125, + 0.9988603591918945, + 0.9988768696784973, + 0.9987687468528748, + 0.9988629817962646, + 0.9989227652549744, + 0.9991430044174194, + 0.9988613128662109, + 0.9988293051719666, + 0.9982553124427795, + 0.998917818069458, + 0.9981935620307922, + 0.9988791346549988, + 0.9986649751663208, + 0.9987620115280151, + 0.998808741569519, + 0.9987805485725403, + 0.997412383556366, + 0.9989323019981384, + 0.9988679885864258, + 0.997117280960083, + 0.9980511665344238, + 0.9994840621948242, + 0.9984065890312195, + 0.9988584518432617, + 0.9987711310386658 + ], + "sentiment_counts": { + "POSITIVE": 25, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.8928571428571429, + "NEGATIVE": 0.10714285714285714 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8928571428571429 + ] + }, + "final_label": "POSITIVE", + "final_count": 64, + "final_proportion": 0.8648648648648649, + "final_counts": { + "POSITIVE": 64, + "NEGATIVE": 10 + }, + "final_distribution": { + "POSITIVE": 0.8648648648648649, + "NEGATIVE": 0.13513513513513514 + } + } }, { "season_code": "202301", @@ -63053,10 +130316,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84129\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84129/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -63102,7 +130393,7 @@ "13:30", "15:20", "WLH 202 - William L. Harkness Hall 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -63117,10 +130408,93 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84127\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84127/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998846173286438, + 0.9987742304801941, + 0.9987353682518005 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989000558853149, + 0.9988996982574463, + 0.9988102912902832 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989320635795593, + 0.9989295601844788, + 0.9988728165626526 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 9 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -63158,7 +130532,7 @@ "14:30", "15:45", "AKW 123 - Arthur K. Watson Hall 123", - "https:\/\/map.yale.edu\/?id=1910#!m\/560119" + "https://map.yale.edu/?id=1910#!m/560119" ] ], "Thursday": [ @@ -63166,7 +130540,7 @@ "14:30", "15:45", "AKW 123 - Arthur K. Watson Hall 123", - "https:\/\/map.yale.edu\/?id=1910#!m\/560119" + "https://map.yale.edu/?id=1910#!m/560119" ] ] }, @@ -63180,10 +130554,99 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83694\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83694/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985823631286621, + 0.9976279139518738, + 0.998757004737854, + 0.99891197681427, + 0.9935252666473389 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9969820380210876, + 0.9970472455024719 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 1 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988306164741516, + 0.9981744289398193, + 0.9976102113723755, + 0.9982715845108032 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 0.9090909090909091, + "final_counts": { + "POSITIVE": 10, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + } + } }, { "season_code": "202301", @@ -63220,7 +130683,7 @@ "13:00", "14:15", "WTS A53 - Watson Center 60 Sachem Street A53", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -63228,7 +130691,7 @@ "13:00", "14:15", "WTS A53 - Watson Center 60 Sachem Street A53", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -63242,10 +130705,243 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85665\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85665/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9980111122131348, + 0.998863697052002, + 0.998620867729187, + 0.9987633228302002, + 0.9963164329528809, + 0.9932833909988403, + 0.9988349080085754, + 0.993720293045044, + 0.9950271248817444, + 0.9973350167274475, + 0.9946674108505249, + 0.9919448494911194, + 0.9973946809768677, + 0.9994218349456787, + 0.9987325072288513, + 0.99727863073349, + 0.9988300204277039, + 0.9877253174781799, + 0.9988749623298645, + 0.9804614782333374, + 0.9836574196815491, + 0.9961975812911987, + 0.9978768825531006, + 0.9854587316513062, + 0.9986870884895325 + ], + "sentiment_counts": { + "POSITIVE": 23, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.92, + "NEGATIVE": 0.08 + }, + "sentiment_overall": [ + "POSITIVE", + 0.92 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988161325454712, + 0.9995068311691284, + 0.9982806444168091, + 0.9939380884170532, + 0.9911376237869263, + 0.9988201260566711, + 0.998885452747345, + 0.999488353729248, + 0.9982683658599854, + 0.998874843120575, + 0.9980066418647766, + 0.9987947940826416, + 0.9993687272071838, + 0.9994577765464783, + 0.9988246560096741, + 0.9989319443702698, + 0.9988683462142944, + 0.9994913339614868, + 0.9973670840263367, + 0.9988895058631897, + 0.9989354014396667, + 0.9984328150749207, + 0.9986705780029297, + 0.9932399988174438, + 0.9980800151824951, + 0.9967833757400513, + 0.9979958534240723, + 0.9915562868118286, + 0.9994077682495117, + 0.9730945229530334 + ], + "sentiment_counts": { + "POSITIVE": 17, + "NEGATIVE": 13 + }, + "sentiment_distribution": { + "POSITIVE": 0.5666666666666667, + "NEGATIVE": 0.43333333333333335 + }, + "sentiment_overall": [ + "POSITIVE", + 0.5666666666666667 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9987288117408752, + 0.997342050075531, + 0.9952774047851562, + 0.9968937635421753, + 0.9989198446273804, + 0.9986612796783447, + 0.9989063739776611, + 0.9988414645195007, + 0.9989093542098999, + 0.9995017051696777, + 0.9995113611221313, + 0.9988779425621033, + 0.9994422793388367, + 0.9934659600257874, + 0.994835615158081, + 0.9986543655395508, + 0.9989196062088013, + 0.9989045858383179, + 0.99951171875, + 0.9988784193992615, + 0.9989237189292908, + 0.9991629123687744, + 0.9987471103668213, + 0.9995049238204956, + 0.9994945526123047, + 0.9994779229164124, + 0.997117280960083, + 0.9995014667510986 + ], + "sentiment_counts": { + "POSITIVE": 16, + "NEGATIVE": 12 + }, + "sentiment_distribution": { + "POSITIVE": 0.5714285714285714, + "NEGATIVE": 0.42857142857142855 + }, + "sentiment_overall": [ + "POSITIVE", + 0.5714285714285714 + ] + }, + "final_label": "POSITIVE", + "final_count": 56, + "final_proportion": 0.6746987951807228, + "final_counts": { + "POSITIVE": 56, + "NEGATIVE": 27 + }, + "final_distribution": { + "POSITIVE": 0.6746987951807228, + "NEGATIVE": 0.3253012048192771 + } + } }, { "season_code": "202301", @@ -63301,7 +130997,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -63338,7 +131062,7 @@ "11:35", "12:50", "LC 101 - Linsly-Chittenden Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -63346,7 +131070,7 @@ "11:35", "12:50", "LC 101 - Linsly-Chittenden Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -63360,10 +131084,209 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83697\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83697/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.999351441860199, + 0.9926841855049133, + 0.9978764057159424, + 0.9987857937812805, + 0.9987257122993469, + 0.9987785220146179, + 0.9974748492240906, + 0.998807430267334, + 0.9989066123962402, + 0.9975242018699646, + 0.9995089769363403, + 0.9985460042953491, + 0.9982499480247498, + 0.9988228678703308, + 0.9833723902702332, + 0.9987471103668213, + 0.9988320469856262, + 0.9989326596260071, + 0.9906244874000549, + 0.995974600315094, + 0.9987969398498535 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 18 + }, + "sentiment_distribution": { + "NEGATIVE": 0.14285714285714285, + "POSITIVE": 0.8571428571428571 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986349940299988, + 0.9983370304107666, + 0.9987872242927551, + 0.9994055032730103, + 0.9983171224594116, + 0.9988675117492676, + 0.9930094480514526, + 0.9985905289649963, + 0.9986889958381653, + 0.9994781613349915, + 0.9995113611221313, + 0.9985631108283997, + 0.9989356398582458, + 0.9995090961456299, + 0.8660168647766113, + 0.9933288097381592, + 0.9994966983795166, + 0.9952108263969421, + 0.9717311263084412, + 0.9988338351249695, + 0.9946104288101196, + 0.9989328980445862, + 0.9987449645996094 + ], + "sentiment_counts": { + "POSITIVE": 15, + "NEGATIVE": 8 + }, + "sentiment_distribution": { + "POSITIVE": 0.6521739130434783, + "NEGATIVE": 0.34782608695652173 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6521739130434783 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9913506507873535, + 0.9851049780845642, + 0.9988850951194763, + 0.9988943934440613, + 0.9995071887969971, + 0.9984384179115295, + 0.998892605304718, + 0.9989118576049805, + 0.9988812804222107, + 0.9994874000549316, + 0.9994540810585022, + 0.8389632105827332, + 0.9989228844642639, + 0.9995094537734985, + 0.9985709190368652, + 0.999504804611206, + 0.9988930821418762, + 0.9988837838172913, + 0.9986060261726379, + 0.9743282794952393, + 0.9988992214202881, + 0.9972578883171082 + ], + "sentiment_counts": { + "NEGATIVE": 8, + "POSITIVE": 14 + }, + "sentiment_distribution": { + "NEGATIVE": 0.36363636363636365, + "POSITIVE": 0.6363636363636364 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6363636363636364 + ] + }, + "final_label": "POSITIVE", + "final_count": 47, + "final_proportion": 0.7121212121212122, + "final_counts": { + "NEGATIVE": 19, + "POSITIVE": 47 + }, + "final_distribution": { + "NEGATIVE": 0.2878787878787879, + "POSITIVE": 0.7121212121212122 + } + } }, { "season_code": "202301", @@ -63394,7 +131317,7 @@ "13:30", "14:20", "WTS A46 - Watson Center 60 Sachem Street A46", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -63411,7 +131334,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -63442,7 +131393,7 @@ "14:30", "15:20", "CO493 208 - 493 College Street 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560001" + "https://map.yale.edu/?id=1910#!m/560001" ] ] }, @@ -63459,7 +131410,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -63490,7 +131469,7 @@ "15:30", "16:20", "HQ C11 - Humanities Quadrangle C11", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -63507,7 +131486,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -63538,7 +131545,7 @@ "16:30", "17:20", "HLH17 113 - 17 Hillhouse Avenue 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -63555,7 +131562,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -63595,7 +131630,7 @@ "14:30", "15:45", "YSB MARSH - Yale Science Building MARSH", - "https:\/\/map.yale.edu\/?id=1910#!m\/563700" + "https://map.yale.edu/?id=1910#!m/563700" ] ], "Thursday": [ @@ -63603,7 +131638,7 @@ "14:30", "15:45", "YSB MARSH - Yale Science Building MARSH", - "https:\/\/map.yale.edu\/?id=1910#!m\/563700" + "https://map.yale.edu/?id=1910#!m/563700" ] ] }, @@ -63617,15 +131652,498 @@ "classnotes": "", "final_exam": "Wednesday, May 10, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84847\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84847/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988390803337097, + 0.9313662648200989, + 0.9985993504524231, + 0.9988899827003479, + 0.9993763566017151, + 0.9988467693328857, + 0.9923166036605835, + 0.9954389929771423, + 0.9987394213676453, + 0.9954096674919128, + 0.9973886609077454, + 0.9989051818847656, + 0.9696313738822937, + 0.9988816380500793, + 0.9979748129844666, + 0.9976974129676819, + 0.9988600015640259, + 0.9985936284065247, + 0.9943304061889648, + 0.6966997981071472, + 0.9909794330596924, + 0.9987766146659851, + 0.9962397813796997, + 0.9966402053833008, + 0.9941121935844421, + 0.9988204836845398, + 0.9974930286407471, + 0.9987313151359558, + 0.9986740350723267, + 0.9973850846290588, + 0.998791515827179, + 0.9988551139831543, + 0.998920202255249, + 0.9988157749176025, + 0.9925565123558044, + 0.6966997981071472, + 0.9986429810523987, + 0.9988308548927307, + 0.8254338502883911, + 0.9951391220092773, + 0.9988755583763123, + 0.9983452558517456, + 0.9624868631362915, + 0.995354413986206, + 0.998823344707489, + 0.9976018071174622, + 0.9898678064346313, + 0.9982247948646545, + 0.9956926703453064, + 0.9980265498161316, + 0.993362545967102, + 0.9988679885864258, + 0.998910665512085, + 0.9891722202301025, + 0.998763918876648, + 0.9982233643531799, + 0.9983764886856079, + 0.9987964630126953, + 0.9972135424613953, + 0.9825941920280457, + 0.9987201690673828, + 0.9988223910331726, + 0.9918251037597656, + 0.9988749623298645, + 0.9985941052436829, + 0.9975353479385376, + 0.9952988028526306, + 0.9982408285140991, + 0.9964553117752075 + ], + "sentiment_counts": { + "POSITIVE": 62, + "NEGATIVE": 7 + }, + "sentiment_distribution": { + "POSITIVE": 0.8985507246376812, + "NEGATIVE": 0.10144927536231885 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8985507246376812 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988120794296265, + 0.9906856417655945, + 0.998322069644928, + 0.9988588094711304, + 0.9994621872901917, + 0.9988473653793335, + 0.9988729357719421, + 0.9987753033638, + 0.9929297566413879, + 0.9988870024681091, + 0.9985925555229187, + 0.9989203214645386, + 0.99891197681427, + 0.9994958639144897, + 0.9988915324211121, + 0.9989176988601685, + 0.9949889779090881, + 0.9988176226615906, + 0.9988964796066284, + 0.9994756579399109, + 0.9951633214950562, + 0.99718177318573, + 0.998890221118927, + 0.9989140033721924, + 0.993835985660553, + 0.9903426170349121, + 0.9986850619316101, + 0.9989087581634521, + 0.9937487840652466, + 0.9981314539909363, + 0.9993155002593994, + 0.9988297820091248, + 0.998791515827179, + 0.996482253074646, + 0.998907208442688, + 0.9982265830039978, + 0.9988477230072021, + 0.9994760155677795, + 0.9987025260925293, + 0.9965721368789673, + 0.997686505317688, + 0.9994988441467285, + 0.9988040924072266, + 0.9985962510108948, + 0.9978637099266052, + 0.9987891316413879, + 0.998863697052002, + 0.9989153146743774, + 0.9955337047576904, + 0.9989022016525269, + 0.9994587302207947, + 0.9970155954360962, + 0.9989181756973267, + 0.9978260397911072, + 0.9916815161705017, + 0.9983128309249878, + 0.9994958639144897, + 0.9977091550827026, + 0.9994990825653076, + 0.9976643323898315, + 0.9989014863967896, + 0.9988013505935669, + 0.999484658241272, + 0.9989088773727417, + 0.996813952922821, + 0.9988449811935425, + 0.9986633062362671, + 0.9988850951194763, + 0.9987645149230957, + 0.9988723397254944, + 0.9971765279769897, + 0.9985021352767944, + 0.9983749389648438 + ], + "sentiment_counts": { + "POSITIVE": 54, + "NEGATIVE": 19 + }, + "sentiment_distribution": { + "POSITIVE": 0.7397260273972602, + "NEGATIVE": 0.2602739726027397 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7397260273972602 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987590312957764, + 0.9957950115203857, + 0.9987393021583557, + 0.9960975646972656, + 0.9995051622390747, + 0.9984720349311829, + 0.9988909363746643, + 0.9985710382461548, + 0.9988948702812195, + 0.9989385008811951, + 0.9988910555839539, + 0.9989251494407654, + 0.99919193983078, + 0.9814485907554626, + 0.997117280960083, + 0.9987396597862244, + 0.9974592328071594, + 0.9988322854042053, + 0.9995080232620239, + 0.9986888766288757, + 0.9974592328071594, + 0.9988011121749878, + 0.9988499879837036, + 0.9988592863082886, + 0.9988529682159424, + 0.9988456964492798, + 0.9982553124427795, + 0.9981569647789001, + 0.9981942772865295, + 0.997117280960083, + 0.9986503720283508, + 0.998791515827179, + 0.9985626339912415, + 0.9985793828964233, + 0.9986091256141663, + 0.998511016368866, + 0.9495463967323303, + 0.9928285479545593, + 0.9985781908035278, + 0.9981749057769775, + 0.997712254524231, + 0.9989008903503418, + 0.9987488985061646, + 0.9989131689071655, + 0.9638811945915222, + 0.9984458088874817, + 0.9964146614074707, + 0.9993763566017151, + 0.9977746605873108, + 0.9984636306762695, + 0.9988266825675964, + 0.9989233613014221, + 0.9988744854927063, + 0.9988036155700684, + 0.9962062835693359, + 0.9970763921737671, + 0.9914073348045349, + 0.9986932873725891, + 0.9988895058631897, + 0.9988924860954285, + 0.9989135265350342, + 0.9982553124427795, + 0.997117280960083, + 0.9989099502563477, + 0.9988345503807068, + 0.9985203146934509 + ], + "sentiment_counts": { + "POSITIVE": 55, + "NEGATIVE": 11 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 171, + "final_proportion": 0.8221153846153846, + "final_counts": { + "POSITIVE": 171, + "NEGATIVE": 37 + }, + "final_distribution": { + "POSITIVE": 0.8221153846153846, + "NEGATIVE": 0.1778846153846154 + } + } }, { "season_code": "202301", "requirements": "Prerequisite: CPSC 183 or permission of instructor.", - "description": "The seminar focuses on the evolving and oftentimes vexing intellectual property regime of the new digital age. Topics include copyright, fair use, remix culture, access to knowledge, technological\u00a0innovations, the increasing relevance of trademarks in the new information society, the tension\u00a0between creativity\/creating and the intellectual property rules which either foster or inhibit it,\u00a0and the new information culture of the digital age.", + "description": "The seminar focuses on the evolving and oftentimes vexing intellectual property regime of the new digital age. Topics include copyright, fair use, remix culture, access to knowledge, technological\u00a0innovations, the increasing relevance of trademarks in the new information society, the tension\u00a0between creativity/creating and the intellectual property rules which either foster or inhibit it,\u00a0and the new information culture of the digital age.", "short_title": "Intellectual Property in the ...", "title": "Intellectual Property in the Digital Age", "school": "YC", @@ -63657,7 +132175,7 @@ "15:30", "17:20", "WLH 202 - William L. Harkness Hall 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -63674,10 +132192,141 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83698\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83698/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989336133003235, + 0.997965931892395, + 0.9987988471984863, + 0.9988541603088379, + 0.8902817964553833, + 0.9989055395126343, + 0.9975970387458801, + 0.9987874627113342, + 0.9986826777458191, + 0.9988009929656982, + 0.9987069368362427 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9090909090909091 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981644749641418, + 0.99888676404953, + 0.9986023306846619, + 0.9987144470214844, + 0.998786985874176, + 0.9988808035850525, + 0.9988007545471191, + 0.998747706413269, + 0.9988447427749634 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987820982933044, + 0.9988741278648376, + 0.9983401298522949, + 0.9988002777099609, + 0.9986157417297363, + 0.9987082481384277, + 0.9978712797164917, + 0.9775164127349854, + 0.9988647699356079, + 0.9975353479385376, + 0.9982970356941223, + 0.998795747756958 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 31, + "final_proportion": 0.96875, + "final_counts": { + "POSITIVE": 31, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.96875, + "NEGATIVE": 0.03125 + } + } }, { "season_code": "202301", @@ -63714,7 +132363,7 @@ "15:30", "17:20", "WLH 203 - William L. Harkness Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -63730,10 +132379,131 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83701\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83701/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983586668968201, + 0.9987609386444092, + 0.9987455606460571, + 0.9988849759101868, + 0.9988614320755005, + 0.9987955093383789, + 0.9986901879310608, + 0.9988040924072266, + 0.9989206790924072 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988977909088135, + 0.9987200498580933, + 0.9988970756530762, + 0.9988860487937927, + 0.9987461566925049, + 0.9901482462882996 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9974592328071594, + 0.998336911201477, + 0.998895525932312, + 0.9980168342590332, + 0.9987859129905701, + 0.99886155128479, + 0.9981942772865295, + 0.9989058971405029, + 0.9979630708694458, + 0.9989318251609802, + 0.9985033273696899, + 0.9989334940910339 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 26, + "final_proportion": 0.9629629629629629, + "final_counts": { + "POSITIVE": 26, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9629629629629629, + "NEGATIVE": 0.037037037037037035 + } + } }, { "season_code": "202301", @@ -63770,7 +132540,7 @@ "11:35", "12:50", "DL 220 - Dunham Laboratory 220", - "https:\/\/map.yale.edu\/?id=1910#!m\/560005" + "https://map.yale.edu/?id=1910#!m/560005" ] ], "Wednesday": [ @@ -63778,7 +132548,7 @@ "11:35", "12:50", "DL 220 - Dunham Laboratory 220", - "https:\/\/map.yale.edu\/?id=1910#!m\/560005" + "https://map.yale.edu/?id=1910#!m/560005" ] ] }, @@ -63792,10 +132562,365 @@ "classnotes": "", "final_exam": "Saturday, May 6, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83702\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83702/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986395239830017, + 0.9987034797668457, + 0.9988223910331726, + 0.9988452196121216, + 0.9994596838951111, + 0.994795024394989, + 0.9980480670928955, + 0.9912521243095398, + 0.9987995624542236, + 0.9907378554344177, + 0.9988467693328857, + 0.9983616471290588, + 0.9919120073318481, + 0.9988324046134949, + 0.9946913123130798, + 0.9916760921478271, + 0.9988594055175781, + 0.9982168078422546, + 0.9985455274581909, + 0.9986477494239807, + 0.9988545179367065, + 0.9914568066596985, + 0.9981897473335266, + 0.9988248944282532, + 0.9987267851829529, + 0.9885188937187195, + 0.9983296990394592, + 0.9986953139305115, + 0.998783528804779, + 0.9926405549049377, + 0.9988880753517151, + 0.9988387227058411, + 0.9987982511520386, + 0.9987102746963501, + 0.9983770847320557, + 0.9986867308616638, + 0.998817503452301, + 0.9978334307670593, + 0.9963821172714233, + 0.9849558472633362, + 0.998088538646698, + 0.9917927384376526, + 0.9988765120506287, + 0.9988130331039429, + 0.9988617897033691, + 0.9987064599990845, + 0.9987159967422485 + ], + "sentiment_counts": { + "POSITIVE": 39, + "NEGATIVE": 8 + }, + "sentiment_distribution": { + "POSITIVE": 0.8297872340425532, + "NEGATIVE": 0.1702127659574468 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8297872340425532 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9871073365211487, + 0.9927461743354797, + 0.9988998174667358, + 0.9979233145713806, + 0.9992027878761292, + 0.998853325843811, + 0.998724639415741, + 0.99569171667099, + 0.9983673691749573, + 0.9899800419807434, + 0.9988137483596802, + 0.998723566532135, + 0.9994173049926758, + 0.9994863271713257, + 0.9895881414413452, + 0.9989098310470581, + 0.9987200498580933, + 0.9946668148040771, + 0.9983730316162109, + 0.9975669384002686, + 0.998477041721344, + 0.9930014610290527, + 0.988669753074646, + 0.9956323504447937, + 0.9985847473144531, + 0.9987898468971252, + 0.9988771080970764, + 0.998873770236969, + 0.9983933568000793, + 0.9987809062004089, + 0.998544454574585, + 0.9989346861839294, + 0.9988030195236206, + 0.9989245533943176, + 0.9772415161132812, + 0.9879177212715149, + 0.998746395111084, + 0.9980261921882629, + 0.9973663687705994, + 0.9987632036209106, + 0.9986512064933777, + 0.9974617958068848, + 0.9970067143440247, + 0.9987660646438599, + 0.9989063739776611, + 0.9987461566925049 + ], + "sentiment_counts": { + "NEGATIVE": 10, + "POSITIVE": 36 + }, + "sentiment_distribution": { + "NEGATIVE": 0.21739130434782608, + "POSITIVE": 0.782608695652174 + }, + "sentiment_overall": [ + "POSITIVE", + 0.782608695652174 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988586902618408, + 0.9994906187057495, + 0.9987401366233826, + 0.9988502264022827, + 0.9988629817962646, + 0.9972324967384338, + 0.9984952211380005, + 0.9982901215553284, + 0.998970627784729, + 0.9987269043922424, + 0.9965800642967224, + 0.9994543194770813, + 0.9988773465156555, + 0.997982382774353, + 0.9982014894485474, + 0.9989027976989746, + 0.9906923174858093, + 0.998913049697876, + 0.9904404878616333, + 0.9960275888442993, + 0.9989050626754761, + 0.9982427358627319, + 0.9982253909111023, + 0.9994968175888062, + 0.9983289837837219, + 0.9986262321472168, + 0.9981465339660645, + 0.9983184337615967, + 0.9980430603027344, + 0.9988880753517151, + 0.998829185962677, + 0.9987215399742126, + 0.9988671541213989, + 0.9985824823379517, + 0.9994403719902039, + 0.9988325238227844, + 0.9989116191864014, + 0.9974592328071594, + 0.9983493089675903, + 0.9988862872123718, + 0.991692066192627, + 0.9972156286239624, + 0.9954994320869446, + 0.9988620281219482, + 0.9988226294517517, + 0.9769658446311951, + 0.9912993311882019, + 0.9958384037017822, + 0.9988409876823425, + 0.9994537234306335, + 0.9988961219787598 + ], + "sentiment_counts": { + "POSITIVE": 37, + "NEGATIVE": 14 + }, + "sentiment_distribution": { + "POSITIVE": 0.7254901960784313, + "NEGATIVE": 0.27450980392156865 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7254901960784313 + ] + }, + "final_label": "POSITIVE", + "final_count": 112, + "final_proportion": 0.7777777777777778, + "final_counts": { + "POSITIVE": 112, + "NEGATIVE": 32 + }, + "final_distribution": { + "POSITIVE": 0.7777777777777778, + "NEGATIVE": 0.2222222222222222 + } + } }, { "season_code": "202301", @@ -63832,7 +132957,7 @@ "13:00", "14:15", "LUCE 101 - Luce Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ], "Thursday": [ @@ -63840,7 +132965,7 @@ "13:00", "14:15", "LUCE 101 - Luce Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ] }, @@ -63854,10 +132979,311 @@ "classnotes": "", "final_exam": "Sunday, May 7, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83703\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83703/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9963712692260742, + 0.9977051615715027, + 0.9964578747749329, + 0.9979420304298401, + 0.9987204074859619, + 0.9932584762573242, + 0.9926631450653076, + 0.9995101690292358, + 0.9994972944259644, + 0.9988219141960144, + 0.9982663989067078, + 0.998594343662262, + 0.9987793564796448, + 0.9965196847915649, + 0.9981434345245361, + 0.9988744854927063, + 0.9985393285751343, + 0.9994688630104065, + 0.9986764788627625, + 0.9995104074478149, + 0.9988817572593689, + 0.9976382255554199, + 0.99685138463974, + 0.998518168926239, + 0.9989054203033447, + 0.9986901879310608, + 0.9983093738555908, + 0.9987936019897461, + 0.9982074499130249, + 0.9984617233276367, + 0.9987288117408752, + 0.998313307762146, + 0.995667576789856, + 0.9697180390357971, + 0.9987969398498535, + 0.9940280914306641, + 0.9987271428108215 + ], + "sentiment_counts": { + "POSITIVE": 31, + "NEGATIVE": 6 + }, + "sentiment_distribution": { + "POSITIVE": 0.8378378378378378, + "NEGATIVE": 0.16216216216216217 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8378378378378378 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987900853157043, + 0.998884379863739, + 0.9990142583847046, + 0.9853630065917969, + 0.9987826943397522, + 0.999461829662323, + 0.9994692206382751, + 0.9995065927505493, + 0.9994841814041138, + 0.9994394183158875, + 0.9987698197364807, + 0.9987779259681702, + 0.9995017051696777, + 0.9910091161727905, + 0.9987636804580688, + 0.9988424181938171, + 0.9989211559295654, + 0.9988813996315002, + 0.9980013966560364, + 0.999504566192627, + 0.9942066669464111, + 0.9910509586334229, + 0.9995057582855225, + 0.999504566192627, + 0.997988224029541, + 0.998246431350708, + 0.998572587966919, + 0.9988640546798706, + 0.9989615678787231, + 0.9983384609222412, + 0.9982995390892029, + 0.9913000464439392, + 0.9948156476020813, + 0.9986327290534973, + 0.9978907704353333, + 0.9994887113571167, + 0.9994463324546814, + 0.9995025396347046, + 0.9995046854019165, + 0.9959031939506531, + 0.9988388419151306 + ], + "sentiment_counts": { + "POSITIVE": 17, + "NEGATIVE": 24 + }, + "sentiment_distribution": { + "POSITIVE": 0.4146341463414634, + "NEGATIVE": 0.5853658536585366 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.5853658536585366 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998860239982605, + 0.9964616894721985, + 0.9950721859931946, + 0.9987706542015076, + 0.9988767504692078, + 0.9980108141899109, + 0.9994706511497498, + 0.9994860887527466, + 0.9995009899139404, + 0.9983934760093689, + 0.9986560344696045, + 0.9986317753791809, + 0.9982374906539917, + 0.9987809062004089, + 0.9989163875579834, + 0.9963549375534058, + 0.9984809756278992, + 0.9995032548904419, + 0.9952278137207031, + 0.9962912797927856, + 0.9993120431900024, + 0.9993745684623718, + 0.952582597732544, + 0.998916745185852, + 0.9988564252853394, + 0.9955436587333679, + 0.999413013458252, + 0.9987831711769104, + 0.9974650144577026, + 0.9993515610694885, + 0.9987508058547974, + 0.9995033740997314, + 0.9985231757164001, + 0.9995095729827881, + 0.9876651167869568, + 0.9994825124740601, + 0.9979488253593445, + 0.9994964599609375, + 0.9963537454605103 + ], + "sentiment_counts": { + "POSITIVE": 21, + "NEGATIVE": 18 + }, + "sentiment_distribution": { + "POSITIVE": 0.5384615384615384, + "NEGATIVE": 0.46153846153846156 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "final_label": "POSITIVE", + "final_count": 69, + "final_proportion": 0.5897435897435898, + "final_counts": { + "POSITIVE": 69, + "NEGATIVE": 48 + }, + "final_distribution": { + "POSITIVE": 0.5897435897435898, + "NEGATIVE": 0.41025641025641024 + } + } }, { "season_code": "202301", @@ -63897,7 +133323,7 @@ "13:00", "14:15", "SSS 114 - Sheffield-Sterling-Strathcona 114", - "https:\/\/map.yale.edu\/?id=1910#!m\/563689" + "https://map.yale.edu/?id=1910#!m/563689" ] ], "Wednesday": [ @@ -63905,7 +133331,7 @@ "13:00", "14:15", "SSS 114 - Sheffield-Sterling-Strathcona 114", - "https:\/\/map.yale.edu\/?id=1910#!m\/563689" + "https://map.yale.edu/?id=1910#!m/563689" ] ] }, @@ -63919,10 +133345,747 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83704\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83704/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988231062889099, + 0.9979584217071533, + 0.9987370371818542, + 0.9985848665237427, + 0.998310923576355, + 0.9987090826034546, + 0.9983423948287964, + 0.9984198808670044, + 0.9986359477043152, + 0.9978919625282288, + 0.9975144863128662, + 0.9986288547515869, + 0.9988356232643127, + 0.9971895813941956, + 0.9979093670845032, + 0.9859921336174011, + 0.995671272277832, + 0.9987806677818298, + 0.9986253976821899, + 0.9994163513183594, + 0.9988453388214111, + 0.9973101615905762, + 0.9630343317985535, + 0.9988442659378052, + 0.9947822690010071, + 0.9859775304794312, + 0.9913978576660156, + 0.9763572812080383, + 0.9986364245414734, + 0.9985517859458923, + 0.9989004135131836, + 0.9959716200828552, + 0.9987573623657227, + 0.997596800327301, + 0.9987900853157043, + 0.9991126656532288, + 0.9983055591583252, + 0.8409222960472107, + 0.998771607875824, + 0.9986007809638977, + 0.9984481334686279, + 0.9929267764091492, + 0.9988245368003845, + 0.999508261680603, + 0.99905925989151, + 0.9956775307655334, + 0.998573899269104, + 0.998734176158905, + 0.9979062080383301, + 0.9986843466758728, + 0.9923831820487976, + 0.9988886713981628, + 0.9985609650611877, + 0.9994637370109558, + 0.9983173608779907, + 0.8089000582695007, + 0.9946086406707764, + 0.9987298846244812, + 0.9994137287139893, + 0.9981550574302673, + 0.9979612827301025, + 0.9927884936332703, + 0.9922425746917725, + 0.9922100305557251, + 0.9984875917434692, + 0.994306743144989, + 0.9954694509506226, + 0.8406533002853394, + 0.9979884624481201, + 0.9988431930541992, + 0.998678982257843, + 0.9985002279281616, + 0.9891708493232727, + 0.9988118410110474, + 0.9983922839164734, + 0.998920202255249, + 0.9980399012565613, + 0.9986253976821899, + 0.9982049465179443, + 0.995011568069458, + 0.988605797290802, + 0.8406533002853394, + 0.9988222718238831, + 0.9989014863967896, + 0.9970194697380066, + 0.9887147545814514, + 0.9985835552215576, + 0.9985777139663696, + 0.9985789060592651, + 0.9988468885421753, + 0.9986222982406616, + 0.998826801776886, + 0.9987280964851379, + 0.9985079169273376, + 0.9973087310791016, + 0.9987712502479553, + 0.9987204074859619, + 0.998433530330658, + 0.9910325407981873, + 0.997384250164032, + 0.9994818568229675, + 0.9964233040809631, + 0.9560785293579102, + 0.9986703395843506, + 0.9971070885658264, + 0.9985306262969971, + 0.9993069171905518, + 0.9986926913261414, + 0.9988237023353577, + 0.9988352656364441 + ], + "sentiment_counts": { + "POSITIVE": 96, + "NEGATIVE": 14 + }, + "sentiment_distribution": { + "POSITIVE": 0.8727272727272727, + "NEGATIVE": 0.12727272727272726 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8727272727272727 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988036155700684, + 0.9994959831237793, + 0.9986472725868225, + 0.9988896250724792, + 0.9988874793052673, + 0.9970384836196899, + 0.9988089799880981, + 0.9988147020339966, + 0.998768150806427, + 0.9989259839057922, + 0.9973037242889404, + 0.9963656663894653, + 0.9995014667510986, + 0.9943413734436035, + 0.9988210797309875, + 0.9987020492553711, + 0.9977675676345825, + 0.9950201511383057, + 0.9978669285774231, + 0.9917176961898804, + 0.9850847125053406, + 0.9994875192642212, + 0.9989451766014099, + 0.9994951486587524, + 0.9938278794288635, + 0.9973999261856079, + 0.9989073276519775, + 0.9986972212791443, + 0.9947317838668823, + 0.9985082745552063, + 0.999409556388855, + 0.9904782772064209, + 0.9985973238945007, + 0.9935637712478638, + 0.9984434247016907, + 0.9933151602745056, + 0.9988858103752136, + 0.9946097135543823, + 0.9989055395126343, + 0.9987769722938538, + 0.999497652053833, + 0.9995065927505493, + 0.9935362339019775, + 0.9986922144889832, + 0.9994161128997803, + 0.9988722205162048, + 0.9973426461219788, + 0.9994995594024658, + 0.9994739890098572, + 0.9932576417922974, + 0.9982448816299438, + 0.9981529116630554, + 0.9988381266593933, + 0.9995096921920776, + 0.993375837802887, + 0.9946541786193848, + 0.9994823932647705, + 0.9977553486824036, + 0.9992653727531433, + 0.9983453750610352, + 0.998925507068634, + 0.9994851350784302, + 0.9986928105354309, + 0.9988862872123718, + 0.9974633455276489, + 0.9985804557800293, + 0.9987105131149292, + 0.9994865655899048, + 0.9986491799354553, + 0.9994988441467285, + 0.9922933578491211, + 0.9985873699188232, + 0.9986600875854492, + 0.9995025396347046, + 0.9987847208976746, + 0.9786714315414429, + 0.9929332733154297, + 0.9986742734909058, + 0.9951621890068054, + 0.999489426612854, + 0.9994489550590515, + 0.9989150762557983, + 0.9983269572257996, + 0.9989105463027954, + 0.9987881779670715, + 0.999506950378418, + 0.9983481168746948, + 0.9976891279220581, + 0.9994888305664062, + 0.9924499988555908, + 0.9986440539360046, + 0.9912827014923096, + 0.9957876801490784, + 0.9984773993492126, + 0.9982275366783142, + 0.9949213862419128, + 0.992872953414917, + 0.9978435039520264, + 0.9988393187522888, + 0.9974018335342407, + 0.998063862323761, + 0.9995040893554688, + 0.9986949563026428, + 0.9986395239830017, + 0.9903973340988159, + 0.9987437129020691, + 0.9954304695129395, + 0.9965956807136536, + 0.9994847774505615, + 0.9995049238204956, + 0.9994966983795166, + 0.9994874000549316, + 0.9949283599853516, + 0.9945486187934875, + 0.9989086389541626, + 0.990709662437439, + 0.9995038509368896, + 0.9973717927932739, + 0.9964786171913147, + 0.9988628625869751, + 0.995807409286499 + ], + "sentiment_counts": { + "NEGATIVE": 47, + "POSITIVE": 74 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3884297520661157, + "POSITIVE": 0.6115702479338843 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6115702479338843 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.992387056350708, + 0.9955441355705261, + 0.9988610744476318, + 0.9989226460456848, + 0.99888676404953, + 0.9964054822921753, + 0.9968745708465576, + 0.99704509973526, + 0.9988617897033691, + 0.9988909363746643, + 0.9994363188743591, + 0.9995064735412598, + 0.9995098114013672, + 0.9821226596832275, + 0.9989174604415894, + 0.9554276466369629, + 0.909082293510437, + 0.9995150566101074, + 0.9824037551879883, + 0.9988797307014465, + 0.9994934797286987, + 0.9995049238204956, + 0.9985253214836121, + 0.9986082911491394, + 0.9988328814506531, + 0.9964945912361145, + 0.9994557499885559, + 0.9987038373947144, + 0.9989258646965027, + 0.9986557960510254, + 0.9710000157356262, + 0.9985547661781311, + 0.9985849857330322, + 0.9988757967948914, + 0.9979786276817322, + 0.9994798302650452, + 0.998417854309082, + 0.9995075464248657, + 0.9988831877708435, + 0.9874324798583984, + 0.990625262260437, + 0.999503493309021, + 0.9975972771644592, + 0.9981426000595093, + 0.9988987445831299, + 0.9979918003082275, + 0.9994978904724121, + 0.9994493126869202, + 0.5713710188865662, + 0.9632825255393982, + 0.9994895458221436, + 0.9801568984985352, + 0.9988546371459961, + 0.9988266825675964, + 0.995310366153717, + 0.9987820982933044, + 0.9972280859947205, + 0.994682252407074, + 0.9984583854675293, + 0.9988168478012085, + 0.9826787710189819, + 0.9994086027145386, + 0.9989182949066162, + 0.9807037115097046, + 0.9988490343093872, + 0.9821785092353821, + 0.9977023005485535, + 0.9975283741950989, + 0.9989275336265564, + 0.9989234805107117, + 0.9995077848434448, + 0.9966129660606384, + 0.9988778233528137, + 0.9994804263114929, + 0.9987497329711914, + 0.9876776337623596, + 0.9988798499107361, + 0.9864830374717712, + 0.988857626914978, + 0.9956509470939636, + 0.9988881945610046, + 0.9982056617736816, + 0.9975000023841858, + 0.9988351464271545, + 0.9984470009803772, + 0.9988251328468323, + 0.9966951608657837, + 0.999506950378418, + 0.9988859295845032, + 0.998892605304718, + 0.9989074468612671, + 0.9986366629600525, + 0.9985931515693665, + 0.997117280960083, + 0.9991173148155212, + 0.9974921941757202, + 0.9824146628379822, + 0.9987204074859619, + 0.9923918843269348, + 0.9897923469543457, + 0.9989258646965027, + 0.997484564781189, + 0.9988755583763123, + 0.9989222288131714 + ], + "sentiment_counts": { + "NEGATIVE": 34, + "POSITIVE": 70 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3269230769230769, + "POSITIVE": 0.6730769230769231 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6730769230769231 + ] + }, + "final_label": "POSITIVE", + "final_count": 240, + "final_proportion": 0.7164179104477612, + "final_counts": { + "POSITIVE": 240, + "NEGATIVE": 95 + }, + "final_distribution": { + "POSITIVE": 0.7164179104477612, + "NEGATIVE": 0.2835820895522388 + } + } }, { "season_code": "202301", @@ -63962,7 +134125,7 @@ "13:00", "14:15", "HLH17 113 - 17 Hillhouse Avenue 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Wednesday": [ @@ -63970,7 +134133,7 @@ "13:00", "14:15", "HLH17 113 - 17 Hillhouse Avenue 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -63984,15 +134147,132 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84861\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84861/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9980587363243103, + 0.9984630346298218, + 0.9982831478118896, + 0.9987316727638245, + 0.9981970191001892, + 0.9985663294792175, + 0.9988743662834167, + 0.9988284707069397 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9995023012161255, + 0.98758465051651, + 0.9937825798988342, + 0.9938900470733643, + 0.9994920492172241, + 0.9892695546150208, + 0.9989323019981384, + 0.998658299446106 + ], + "sentiment_counts": { + "NEGATIVE": 5, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.625, + "POSITIVE": 0.375 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.625 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9995115995407104, + 0.9989097118377686, + 0.9964709281921387, + 0.9994955062866211, + 0.9989919066429138, + 0.9950960278511047, + 0.9872927665710449, + 0.9986440539360046, + 0.9989023208618164 + ], + "sentiment_counts": { + "NEGATIVE": 6, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.6666666666666666, + "POSITIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 0.56, + "final_counts": { + "POSITIVE": 14, + "NEGATIVE": 11 + }, + "final_distribution": { + "POSITIVE": 0.56, + "NEGATIVE": 0.44 + } + } }, { "season_code": "202301", "requirements": "Prerequisite: CPSC 110, CPSC 112, equivalent programming experience, or permission of the instructor.\u00a0", - "description": "Introduction to applications of computer and data science in the humanities, including web technologies, visualization, and database design. Students work in teams to develop a variety of applications proposed by faculty and staff from Yale humanities departments, the Digital Humanities Lab, the Institute for the Preservation of Cultural Heritage, and\/or the Computer Science department. Meets with CPSC 376\/HSAR 567\/CLSS 840. Students may earn credit for CPSC 276 or 376; not both.", + "description": "Introduction to applications of computer and data science in the humanities, including web technologies, visualization, and database design. Students work in teams to develop a variety of applications proposed by faculty and staff from Yale humanities departments, the Digital Humanities Lab, the Institute for the Preservation of Cultural Heritage, and/or the Computer Science department. Meets with CPSC 376/HSAR 567/CLSS 840. Students may earn credit for CPSC 276 or 376; not both.", "short_title": "Introduction to Applications ...", "title": "Introduction to Applications of Computer and Data Science for the Digital Humanities", "school": "YC", @@ -64027,7 +134307,7 @@ "13:00", "14:15", "HQ L01 - Humanities Quadrangle L01", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -64035,7 +134315,7 @@ "13:00", "14:15", "HQ L01 - Humanities Quadrangle L01", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -64051,10 +134331,133 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83706\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83706/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988793730735779, + 0.9989004135131836, + 0.9988210797309875, + 0.9935343265533447, + 0.9899240136146545, + 0.9952617883682251, + 0.9796426892280579, + 0.9989124536514282, + 0.998349666595459, + 0.9988065958023071, + 0.9988523721694946 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.998418927192688, + 0.9983073472976685, + 0.9982520937919617, + 0.9988241791725159, + 0.9956071972846985, + 0.9988527297973633, + 0.9950057864189148 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.7142857142857143, + "NEGATIVE": 0.2857142857142857 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7142857142857143 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998792290687561, + 0.9895544052124023, + 0.9975002408027649, + 0.9974592328071594, + 0.9988669157028198, + 0.997117280960083, + 0.9988960027694702, + 0.998396098613739, + 0.9983506202697754, + 0.9988176226615906 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "final_label": "POSITIVE", + "final_count": 25, + "final_proportion": 0.8928571428571429, + "final_counts": { + "POSITIVE": 25, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.8928571428571429, + "NEGATIVE": 0.10714285714285714 + } + } }, { "season_code": "202301", @@ -64094,10 +134497,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83707\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83707/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -64137,10 +134568,83 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83709\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83709/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9978813529014587 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988946318626404 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986574649810791, + 0.9988822340965271 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 4, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 4 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -64180,7 +134684,7 @@ "10:30", "11:20", "HLH17 05 - 17 Hillhouse Avenue 05", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Thursday": [ @@ -64188,7 +134692,7 @@ "10:30", "11:20", "HLH17 05 - 17 Hillhouse Avenue 05", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -64206,10 +134710,137 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83710\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83710/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988594055175781, + 0.9987743496894836, + 0.9988590478897095, + 0.9987319111824036, + 0.9961735606193542, + 0.9987438321113586, + 0.99871826171875, + 0.9987965822219849, + 0.9929826259613037, + 0.9987742304801941, + 0.9978380799293518 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9979472756385803, + 0.9911012053489685, + 0.9989055395126343, + 0.9991016387939453, + 0.99345463514328, + 0.9995031356811523, + 0.9989111423492432, + 0.9984309077262878, + 0.9943675398826599, + 0.9994833469390869, + 0.9917235970497131 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.6363636363636364, + "NEGATIVE": 0.36363636363636365 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6363636363636364 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.99880051612854, + 0.9989405274391174, + 0.9995019435882568, + 0.9927466511726379, + 0.9988948702812195, + 0.9989200830459595, + 0.8923653364181519, + 0.997118353843689 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "final_label": "POSITIVE", + "final_count": 25, + "final_proportion": 0.8333333333333334, + "final_counts": { + "POSITIVE": 25, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + } + } }, { "season_code": "202301", @@ -64240,7 +134871,7 @@ "16:30", "17:20", "HQ 133 - Humanities Quadrangle 133", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -64259,7 +134890,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -64290,7 +134949,7 @@ "13:30", "14:20", "AKW 100 - Arthur K. Watson Hall 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560119" + "https://map.yale.edu/?id=1910#!m/560119" ] ] }, @@ -64309,7 +134968,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -64340,7 +135027,7 @@ "16:30", "17:20", "HQ C07 - Humanities Quadrangle C07", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -64359,7 +135046,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -64396,7 +135111,7 @@ "13:00", "14:15", "DL 220 - Dunham Laboratory 220", - "https:\/\/map.yale.edu\/?id=1910#!m\/560005" + "https://map.yale.edu/?id=1910#!m/560005" ] ], "Wednesday": [ @@ -64404,7 +135119,7 @@ "13:00", "14:15", "DL 220 - Dunham Laboratory 220", - "https:\/\/map.yale.edu\/?id=1910#!m\/560005" + "https://map.yale.edu/?id=1910#!m/560005" ] ] }, @@ -64418,10 +135133,197 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83712\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83712/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987492561340332, + 0.9988480806350708, + 0.9988512992858887, + 0.9972374439239502, + 0.9988794922828674, + 0.9984130859375, + 0.9920024871826172, + 0.998887836933136, + 0.9988816380500793, + 0.9965846538543701, + 0.9987003803253174, + 0.9989086389541626, + 0.9986532926559448, + 0.9986469149589539, + 0.992520809173584, + 0.9984484910964966, + 0.9805485010147095, + 0.998765230178833, + 0.9987894892692566, + 0.9980068802833557 + ], + "sentiment_counts": { + "POSITIVE": 20, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.996254563331604, + 0.9988154172897339, + 0.9974551796913147, + 0.9972370862960815, + 0.9989339709281921, + 0.9988204836845398, + 0.9969249367713928, + 0.9980760812759399, + 0.9993405938148499, + 0.9988886713981628, + 0.997655987739563, + 0.9988057613372803, + 0.9985054731369019, + 0.9837028980255127, + 0.9988952875137329, + 0.9679122567176819, + 0.9988771080970764, + 0.9987862706184387, + 0.9989257454872131, + 0.9988799691200256 + ], + "sentiment_counts": { + "POSITIVE": 18, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988014698028564, + 0.9989390969276428, + 0.9985307455062866, + 0.9926673769950867, + 0.9989173412322998, + 0.9987949132919312, + 0.9994478821754456, + 0.9988823533058167, + 0.9987576007843018, + 0.9968231916427612, + 0.9987406134605408, + 0.9989038705825806, + 0.9956135749816895, + 0.9988884329795837, + 0.9987217783927917, + 0.9988899827003479, + 0.9980514049530029, + 0.9986335635185242, + 0.9989144802093506, + 0.9988641738891602 + ], + "sentiment_counts": { + "POSITIVE": 19, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.95, + "NEGATIVE": 0.05 + }, + "sentiment_overall": [ + "POSITIVE", + 0.95 + ] + }, + "final_label": "POSITIVE", + "final_count": 57, + "final_proportion": 0.95, + "final_counts": { + "POSITIVE": 57, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.95, + "NEGATIVE": 0.05 + } + } }, { "season_code": "202301", @@ -64458,7 +135360,7 @@ "9:00", "10:15", "ML 211 - Mason Laboratory 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ], "Thursday": [ @@ -64466,7 +135368,7 @@ "9:00", "10:15", "ML 211 - Mason Laboratory 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ] }, @@ -64480,10 +135382,199 @@ "classnotes": "", "final_exam": "Tuesday, May 9, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83714\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83714/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9813678860664368, + 0.9717408418655396, + 0.9980261921882629, + 0.9989149570465088, + 0.9982105493545532, + 0.9969666600227356, + 0.9988139867782593, + 0.9984139204025269, + 0.9989204406738281, + 0.998884379863739, + 0.9988229870796204, + 0.9986897110939026, + 0.9888006448745728, + 0.9384347200393677, + 0.9981511235237122, + 0.9986188411712646, + 0.9986982345581055, + 0.9988160133361816, + 0.980927586555481, + 0.998752236366272 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 19 + }, + "sentiment_distribution": { + "NEGATIVE": 0.05, + "POSITIVE": 0.95 + }, + "sentiment_overall": [ + "POSITIVE", + 0.95 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9994820952415466, + 0.9988889098167419, + 0.9988983869552612, + 0.9960134029388428, + 0.9988625049591064, + 0.9958111047744751, + 0.998892605304718, + 0.9985020160675049, + 0.9987315535545349, + 0.9989261031150818, + 0.998819887638092, + 0.9853439927101135, + 0.9985963702201843, + 0.9987552165985107, + 0.9986106157302856, + 0.9994919300079346, + 0.9994833469390869, + 0.9977165460586548, + 0.9987360835075378, + 0.999503493309021 + ], + "sentiment_counts": { + "NEGATIVE": 5, + "POSITIVE": 15 + }, + "sentiment_distribution": { + "NEGATIVE": 0.25, + "POSITIVE": 0.75 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9994860887527466, + 0.9975966811180115, + 0.9988483190536499, + 0.9987812638282776, + 0.998916745185852, + 0.9926901459693909, + 0.998815655708313, + 0.9993034601211548, + 0.9987249970436096, + 0.998839795589447, + 0.9988821148872375, + 0.9989223480224609, + 0.9987958669662476, + 0.9987623691558838, + 0.9986796975135803, + 0.9971049427986145, + 0.9620879888534546, + 0.9987800717353821, + 0.9987622499465942, + 0.9987521171569824, + 0.9995033740997314 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 18 + }, + "sentiment_distribution": { + "NEGATIVE": 0.14285714285714285, + "POSITIVE": 0.8571428571428571 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "final_label": "POSITIVE", + "final_count": 52, + "final_proportion": 0.8524590163934426, + "final_counts": { + "NEGATIVE": 9, + "POSITIVE": 52 + }, + "final_distribution": { + "NEGATIVE": 0.14754098360655737, + "POSITIVE": 0.8524590163934426 + } + } }, { "season_code": "202301", @@ -64521,7 +135612,7 @@ "11:35", "12:50", "HLH17 05 - 17 Hillhouse Avenue 05", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Wednesday": [ @@ -64529,7 +135620,7 @@ "11:35", "12:50", "HLH17 05 - 17 Hillhouse Avenue 05", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -64543,10 +135634,179 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83896\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83896/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9975863695144653, + 0.9988133907318115, + 0.9965497255325317, + 0.9987142086029053, + 0.9988573789596558, + 0.6154360771179199, + 0.9987862706184387, + 0.998505711555481, + 0.9986913800239563, + 0.998803973197937, + 0.9988610744476318, + 0.9982290863990784, + 0.9988017082214355, + 0.993890643119812, + 0.998616099357605, + 0.9986488223075867, + 0.9986762404441833, + 0.9988246560096741 + ], + "sentiment_counts": { + "POSITIVE": 17, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9444444444444444, + "NEGATIVE": 0.05555555555555555 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9444444444444444 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989032745361328, + 0.9988147020339966, + 0.9989249110221863, + 0.9988988637924194, + 0.9989193677902222, + 0.9903252124786377, + 0.9976364374160767, + 0.9989093542098999, + 0.9988090991973877, + 0.9989234805107117, + 0.9988671541213989, + 0.9989270567893982, + 0.998914361000061, + 0.9988653659820557, + 0.9986961483955383, + 0.999079704284668 + ], + "sentiment_counts": { + "POSITIVE": 14, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989264607429504, + 0.9974915981292725, + 0.9989314675331116, + 0.9981003403663635, + 0.9988868832588196, + 0.9985671043395996, + 0.9990045428276062, + 0.9983460903167725, + 0.9939424395561218, + 0.9989243149757385, + 0.998928964138031, + 0.9989398121833801, + 0.9988791346549988, + 0.9988904595375061, + 0.9988634586334229, + 0.9989042282104492, + 0.9987953901290894 + ], + "sentiment_counts": { + "POSITIVE": 15, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8823529411764706, + "NEGATIVE": 0.11764705882352941 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8823529411764706 + ] + }, + "final_label": "POSITIVE", + "final_count": 46, + "final_proportion": 0.9019607843137255, + "final_counts": { + "POSITIVE": 46, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.9019607843137255, + "NEGATIVE": 0.09803921568627451 + } + } }, { "season_code": "202301", @@ -64584,7 +135844,7 @@ "14:30", "15:45", "WLH 201 - William L. Harkness Hall 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -64592,7 +135852,7 @@ "14:30", "15:45", "WLH 201 - William L. Harkness Hall 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -64606,10 +135866,445 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83716\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83716/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998434841632843, + 0.9982080459594727, + 0.9988564252853394, + 0.9987475872039795, + 0.9986604452133179, + 0.99689781665802, + 0.9984276294708252, + 0.9938638210296631, + 0.9986962676048279, + 0.9979375600814819, + 0.9989296793937683, + 0.9917047023773193, + 0.9988730549812317, + 0.9987183809280396, + 0.9988201260566711, + 0.9986482262611389, + 0.9988313317298889, + 0.8207393884658813, + 0.9984747767448425, + 0.9971253275871277, + 0.9981195330619812, + 0.9970648884773254, + 0.9988988637924194, + 0.9986206293106079, + 0.9985748529434204, + 0.9910196661949158, + 0.9965808987617493, + 0.9987494945526123, + 0.9986889958381653, + 0.9983949065208435, + 0.9988334774971008, + 0.9922411441802979, + 0.9988535642623901, + 0.9981483221054077, + 0.9995013475418091, + 0.9986730813980103, + 0.9932979941368103, + 0.9986452460289001, + 0.9955241680145264, + 0.9956992864608765, + 0.9972851276397705, + 0.9923567771911621, + 0.9223732948303223, + 0.998788058757782, + 0.9987136125564575, + 0.9989184141159058, + 0.9988295435905457, + 0.9911553859710693, + 0.9974313378334045, + 0.9968315958976746, + 0.9989150762557983, + 0.9915955662727356, + 0.9967821836471558, + 0.9986553192138672, + 0.9987793564796448, + 0.9988652467727661, + 0.9987996816635132, + 0.9995006322860718, + 0.9981990456581116, + 0.9989010095596313 + ], + "sentiment_counts": { + "NEGATIVE": 10, + "POSITIVE": 50 + }, + "sentiment_distribution": { + "NEGATIVE": 0.16666666666666666, + "POSITIVE": 0.8333333333333334 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982995390892029, + 0.9982187151908875, + 0.9988248944282532, + 0.9962831139564514, + 0.998927891254425, + 0.9964489936828613, + 0.9988386034965515, + 0.9973279237747192, + 0.998760461807251, + 0.9987792372703552, + 0.9981511235237122, + 0.9988546371459961, + 0.9983181953430176, + 0.9685793519020081, + 0.9995104074478149, + 0.9988566637039185, + 0.9988125562667847, + 0.9989221096038818, + 0.9987061023712158, + 0.9995075464248657, + 0.9989117383956909, + 0.9995133876800537, + 0.9989286065101624, + 0.9986133575439453, + 0.9989064931869507, + 0.9988999366760254, + 0.9982495903968811, + 0.9988275170326233, + 0.9988922476768494, + 0.9988920092582703, + 0.9991495609283447, + 0.9988841414451599, + 0.9988695979118347, + 0.9994854927062988, + 0.9988049268722534, + 0.9988924860954285, + 0.9987305998802185, + 0.9987674951553345, + 0.9966051578521729, + 0.9988675117492676, + 0.9983959794044495, + 0.9977309107780457, + 0.9989168643951416, + 0.9988200068473816, + 0.998883068561554, + 0.9988473653793335, + 0.9987154006958008, + 0.9988765120506287, + 0.9988675117492676, + 0.911847710609436, + 0.9924103021621704, + 0.9985816478729248, + 0.998762845993042, + 0.9942409992218018, + 0.9995098114013672, + 0.9989173412322998, + 0.9989326596260071 + ], + "sentiment_counts": { + "POSITIVE": 46, + "NEGATIVE": 11 + }, + "sentiment_distribution": { + "POSITIVE": 0.8070175438596491, + "NEGATIVE": 0.19298245614035087 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8070175438596491 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9890128374099731, + 0.9971332550048828, + 0.9987025260925293, + 0.9957932233810425, + 0.9896832704544067, + 0.9989159107208252, + 0.9988560676574707, + 0.9934477210044861, + 0.9965367317199707, + 0.998119056224823, + 0.9962498545646667, + 0.9986768364906311, + 0.9988405108451843, + 0.9988502264022827, + 0.9988411068916321, + 0.9887204766273499, + 0.9986898303031921, + 0.9986869692802429, + 0.9989424347877502, + 0.9987019300460815, + 0.998873770236969, + 0.9928731918334961, + 0.9986054301261902, + 0.987211287021637, + 0.9989339709281921, + 0.9995096921920776, + 0.9989206790924072, + 0.9989114999771118, + 0.9989277720451355, + 0.9419605731964111, + 0.9980016350746155, + 0.9830338358879089, + 0.9987527132034302, + 0.9972096085548401, + 0.9984248876571655, + 0.9989228844642639, + 0.9989027976989746, + 0.9994599223136902, + 0.9989305138587952, + 0.997117280960083, + 0.9958760142326355, + 0.9978814721107483, + 0.9985241293907166, + 0.9988901019096375, + 0.9988394379615784, + 0.9867393970489502, + 0.999427318572998, + 0.9989306330680847, + 0.998775064945221, + 0.9974592328071594, + 0.998875081539154, + 0.9989062547683716, + 0.9988425374031067, + 0.9950454235076904, + 0.9945884943008423, + 0.997343122959137, + 0.6985251307487488, + 0.9960170388221741, + 0.9989274144172668, + 0.998011589050293, + 0.997117280960083, + 0.9962496161460876, + 0.9987078905105591, + 0.9871260523796082, + 0.9989203214645386, + 0.9988238215446472, + 0.9988717436790466 + ], + "sentiment_counts": { + "POSITIVE": 52, + "NEGATIVE": 15 + }, + "sentiment_distribution": { + "POSITIVE": 0.7761194029850746, + "NEGATIVE": 0.22388059701492538 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7761194029850746 + ] + }, + "final_label": "POSITIVE", + "final_count": 148, + "final_proportion": 0.8043478260869565, + "final_counts": { + "NEGATIVE": 36, + "POSITIVE": 148 + }, + "final_distribution": { + "NEGATIVE": 0.1956521739130435, + "POSITIVE": 0.8043478260869565 + } + } }, { "season_code": "202301", @@ -64647,7 +136342,7 @@ "14:30", "15:45", "DL 220 - Dunham Laboratory 220", - "https:\/\/map.yale.edu\/?id=1910#!m\/560005" + "https://map.yale.edu/?id=1910#!m/560005" ] ], "Thursday": [ @@ -64655,7 +136350,7 @@ "14:30", "15:45", "DL 220 - Dunham Laboratory 220", - "https:\/\/map.yale.edu\/?id=1910#!m\/560005" + "https://map.yale.edu/?id=1910#!m/560005" ] ] }, @@ -64669,10 +136364,333 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83716\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83716/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9993676543235779, + 0.9878627061843872, + 0.9908944368362427, + 0.9959115982055664, + 0.997473418712616, + 0.9986440539360046, + 0.9988177418708801, + 0.99887615442276, + 0.997473418712616, + 0.9986775517463684, + 0.9897167086601257, + 0.9983154535293579, + 0.9814861416816711, + 0.9987457990646362, + 0.9989126920700073, + 0.9988731741905212, + 0.9889397025108337, + 0.9966949224472046, + 0.9987686276435852, + 0.9986565113067627, + 0.9975526928901672, + 0.9921582937240601, + 0.9967666864395142, + 0.9937413334846497, + 0.9983720183372498, + 0.997473418712616, + 0.9987755417823792, + 0.9983707070350647, + 0.9981654286384583, + 0.9987616539001465, + 0.9974307417869568, + 0.9980360865592957, + 0.9988572597503662, + 0.9987834095954895, + 0.9983723759651184, + 0.9928667545318604, + 0.9987518787384033, + 0.9988596439361572, + 0.9883760213851929, + 0.998023509979248, + 0.9980719089508057, + 0.9971780776977539, + 0.9984867572784424, + 0.999408483505249 + ], + "sentiment_counts": { + "NEGATIVE": 10, + "POSITIVE": 34 + }, + "sentiment_distribution": { + "NEGATIVE": 0.22727272727272727, + "POSITIVE": 0.7727272727272727 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7727272727272727 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9995005130767822, + 0.9995076656341553, + 0.9988839030265808, + 0.9989258646965027, + 0.9988611936569214, + 0.9988511800765991, + 0.9989264607429504, + 0.9988382458686829, + 0.9987949132919312, + 0.9987817406654358, + 0.9989088773727417, + 0.9989182949066162, + 0.9989240765571594, + 0.9952421188354492, + 0.9995039701461792, + 0.9987998008728027, + 0.9978293776512146, + 0.998189389705658, + 0.9909310340881348, + 0.9987854361534119, + 0.9988804459571838, + 0.9944168329238892, + 0.998885452747345, + 0.9987099170684814, + 0.9052479863166809, + 0.9968106150627136, + 0.9988393187522888, + 0.9989150762557983, + 0.9985246062278748, + 0.9989233613014221, + 0.9959425330162048, + 0.998881995677948, + 0.9986213445663452, + 0.9994534850120544, + 0.998909592628479, + 0.9988623857498169, + 0.9988584518432617, + 0.9988784193992615 + ], + "sentiment_counts": { + "NEGATIVE": 7, + "POSITIVE": 31 + }, + "sentiment_distribution": { + "NEGATIVE": 0.18421052631578946, + "POSITIVE": 0.8157894736842105 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8157894736842105 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985028505325317, + 0.9995032548904419, + 0.9934513568878174, + 0.9989295601844788, + 0.9988921284675598, + 0.9988558292388916, + 0.998904824256897, + 0.9905986189842224, + 0.9988250136375427, + 0.9988775849342346, + 0.9939802885055542, + 0.996523916721344, + 0.9986705780029297, + 0.9987131357192993, + 0.9988686442375183, + 0.9989232420921326, + 0.9212614893913269, + 0.9988030195236206, + 0.9986386895179749, + 0.9987050294876099, + 0.998766303062439, + 0.9973223805427551, + 0.9988271594047546, + 0.9988631010055542, + 0.98366379737854, + 0.9983553290367126, + 0.9989185333251953, + 0.9935058355331421, + 0.9929614663124084, + 0.9988715052604675, + 0.9988332390785217, + 0.997117280960083, + 0.9984695315361023, + 0.9989011287689209, + 0.9983184337615967, + 0.9989222288131714, + 0.9988648891448975, + 0.9988731741905212, + 0.9989181756973267, + 0.9950569868087769, + 0.997117280960083, + 0.9988996982574463, + 0.9988676309585571, + 0.9988757967948914, + 0.9984253644943237, + 0.9916425943374634 + ], + "sentiment_counts": { + "NEGATIVE": 8, + "POSITIVE": 38 + }, + "sentiment_distribution": { + "NEGATIVE": 0.17391304347826086, + "POSITIVE": 0.8260869565217391 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8260869565217391 + ] + }, + "final_label": "POSITIVE", + "final_count": 103, + "final_proportion": 0.8046875, + "final_counts": { + "NEGATIVE": 25, + "POSITIVE": 103 + }, + "final_distribution": { + "NEGATIVE": 0.1953125, + "POSITIVE": 0.8046875 + } + } }, { "season_code": "202301", @@ -64710,7 +136728,7 @@ "9:25", "11:15", "ML 104 - Mason Laboratory 104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ] }, @@ -64722,15 +136740,88 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85953\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85953/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987918734550476 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9948388934135437, + 0.9988860487937927 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989338517189026 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 4, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 4 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", "requirements": "Prerequisite: CPSC 223 or equivalent, or permission of the instructor.", - "description": "Advanced applications of computer and data science in the humanities, including web technologies, visualization, and database design. Students work in teams to develop a variety of applications proposed by faculty and staff from Yale humanities faculty, the Digital Humanities Lab, the Institute for the Preservation of Cultural Heritage, and the Computer Science department.\u00a0Meets with CPSC 376\/CPSC 276\/HSAR 567\/CLSS 840. Students may earn credit for CPSC 276 or 376; not both.", + "description": "Advanced applications of computer and data science in the humanities, including web technologies, visualization, and database design. Students work in teams to develop a variety of applications proposed by faculty and staff from Yale humanities faculty, the Digital Humanities Lab, the Institute for the Preservation of Cultural Heritage, and the Computer Science department.\u00a0Meets with CPSC 376/CPSC 276/HSAR 567/CLSS 840. Students may earn credit for CPSC 276 or 376; not both.", "short_title": "Advanced Computer and Data Sc...", "title": "Advanced Computer and Data Science Applications for the Digital Humanities", "school": "YC", @@ -64765,7 +136856,7 @@ "13:00", "14:15", "HQ L01 - Humanities Quadrangle L01", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -64773,7 +136864,7 @@ "13:00", "14:15", "HQ L01 - Humanities Quadrangle L01", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -64789,15 +136880,138 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83706\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83706/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988793730735779, + 0.9989004135131836, + 0.9988210797309875, + 0.9935343265533447, + 0.9899240136146545, + 0.9952617883682251, + 0.9796426892280579, + 0.9989124536514282, + 0.998349666595459, + 0.9988065958023071, + 0.9988523721694946 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.998418927192688, + 0.9983073472976685, + 0.9982520937919617, + 0.9988241791725159, + 0.9956071972846985, + 0.9988527297973633, + 0.9950057864189148 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.7142857142857143, + "NEGATIVE": 0.2857142857142857 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7142857142857143 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998792290687561, + 0.9895544052124023, + 0.9975002408027649, + 0.9974592328071594, + 0.9988669157028198, + 0.997117280960083, + 0.9988960027694702, + 0.998396098613739, + 0.9983506202697754, + 0.9988176226615906 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "final_label": "POSITIVE", + "final_count": 25, + "final_proportion": 0.8928571428571429, + "final_counts": { + "POSITIVE": 25, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.8928571428571429, + "NEGATIVE": 0.10714285714285714 + } + } }, { "season_code": "202301", "requirements": "Prerequisite: CPSC 223", - "description": "This course introduces students to a variety of advanced software engineering and programming techniques in the context of full-stack web programming. The focus of the course includes both client- and server-side programming (and database programming), client\/server communication, user interface programming, and parallel programming. This course is designed for students who have taken CPSC 223 (but do not need CPSC 323 or higher-level computer science systems courses) and wish to learn the complete programming framework of Web programming. For a systematic treatment of core software engineering techniques, using Web programming as a running example framework, consider taking CPSC 439, which targets students with more extensive programming experiences (after CPSC 323).", + "description": "This course introduces students to a variety of advanced software engineering and programming techniques in the context of full-stack web programming. The focus of the course includes both client- and server-side programming (and database programming), client/server communication, user interface programming, and parallel programming. This course is designed for students who have taken CPSC 223 (but do not need CPSC 323 or higher-level computer science systems courses) and wish to learn the complete programming framework of Web programming. For a systematic treatment of core software engineering techniques, using Web programming as a running example framework, consider taking CPSC 439, which targets students with more extensive programming experiences (after CPSC 323).", "short_title": "Full Stack Web Programming", "title": "Full Stack Web Programming", "school": "YC", @@ -64830,7 +137044,7 @@ "9:00", "10:15", "DL 220 - Dunham Laboratory 220", - "https:\/\/map.yale.edu\/?id=1910#!m\/560005" + "https://map.yale.edu/?id=1910#!m/560005" ] ], "Wednesday": [ @@ -64838,7 +137052,7 @@ "9:00", "10:15", "DL 220 - Dunham Laboratory 220", - "https:\/\/map.yale.edu\/?id=1910#!m\/560005" + "https://map.yale.edu/?id=1910#!m/560005" ] ] }, @@ -64850,15 +137064,238 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84993\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84993/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9984937906265259, + 0.996953010559082, + 0.9955936074256897, + 0.998681366443634, + 0.9987816214561462, + 0.9988937973976135, + 0.9971557855606079, + 0.996966540813446, + 0.9967492818832397, + 0.9961674809455872, + 0.9989180564880371, + 0.9986369013786316, + 0.9986854195594788, + 0.9969345331192017, + 0.99698406457901, + 0.9987865090370178, + 0.9985816478729248, + 0.9986513257026672, + 0.9977757334709167, + 0.9865743517875671, + 0.9987621307373047, + 0.998250424861908, + 0.9989031553268433, + 0.9986024498939514, + 0.9901699423789978, + 0.9932252764701843, + 0.9994935989379883 + ], + "sentiment_counts": { + "POSITIVE": 26, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9629629629629629, + "NEGATIVE": 0.037037037037037035 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9629629629629629 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.99875807762146, + 0.9994888305664062, + 0.9986976385116577, + 0.9978785514831543, + 0.9988412261009216, + 0.9989150762557983, + 0.9983792304992676, + 0.9950621724128723, + 0.9989129304885864, + 0.974677324295044, + 0.9988774657249451, + 0.9988915324211121, + 0.9988434314727783, + 0.9977144002914429, + 0.9988495111465454, + 0.9989017248153687, + 0.9988718628883362, + 0.99888676404953, + 0.9913774728775024, + 0.9912889003753662, + 0.998884379863739, + 0.9989186525344849, + 0.9979343414306641, + 0.998777449131012, + 0.9987708926200867 + ], + "sentiment_counts": { + "POSITIVE": 20, + "NEGATIVE": 5 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988914132118225, + 0.9987918734550476, + 0.99868243932724, + 0.9989233613014221, + 0.9989336133003235, + 0.9988497495651245, + 0.9987381100654602, + 0.9983054399490356, + 0.9922534823417664, + 0.9950043559074402, + 0.9989399313926697, + 0.998874843120575, + 0.9989262223243713, + 0.9988245368003845, + 0.9989376664161682, + 0.9986068606376648, + 0.9950704574584961, + 0.9989097118377686, + 0.9946790933609009, + 0.9988535642623901, + 0.9979187846183777, + 0.9988738894462585, + 0.9955242872238159, + 0.9990617632865906, + 0.9988366961479187, + 0.9995073080062866 + ], + "sentiment_counts": { + "POSITIVE": 23, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.8846153846153846, + "NEGATIVE": 0.11538461538461539 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8846153846153846 + ] + }, + "final_label": "POSITIVE", + "final_count": 69, + "final_proportion": 0.8846153846153846, + "final_counts": { + "POSITIVE": 69, + "NEGATIVE": 9 + }, + "final_distribution": { + "POSITIVE": 0.8846153846153846, + "NEGATIVE": 0.11538461538461539 + } + } }, { "season_code": "202301", "requirements": "Prerequisites: CPSC 323, 223, and 202.\u00a0This is a programming-intensive course, so comfort with large programming projects is essential.", - "description": "This course offers a treatment of computer architectures for high-performance and power\/energy-efficient computer systems. Topics include the foundations of general-purpose computing, including instruction set architectures, pipelines, superscalar and out-of-order execution, speculation, support for precise exceptions, and simultaneous multi-threading. We also cover domain-specific hardware (e.g., graphics processing units), and ongoing industry efforts to elevate them to the status of first-class computing units. In tandem, we cover topics relevant to both general-purpose and domain-specific computing, including memory hierarchies, address translation and virtual memory, on-chip networks, machine learning techniques for resource management, and coherence techniques. If time permits, we will study the basics of emerging non-classical computing paradigms like neuromorphic computing. Overall, this course offers insights on how the computing industry is combating the waning of traditional technology scaling via acceleration and heterogeneity.", + "description": "This course offers a treatment of computer architectures for high-performance and power/energy-efficient computer systems. Topics include the foundations of general-purpose computing, including instruction set architectures, pipelines, superscalar and out-of-order execution, speculation, support for precise exceptions, and simultaneous multi-threading. We also cover domain-specific hardware (e.g., graphics processing units), and ongoing industry efforts to elevate them to the status of first-class computing units. In tandem, we cover topics relevant to both general-purpose and domain-specific computing, including memory hierarchies, address translation and virtual memory, on-chip networks, machine learning techniques for resource management, and coherence techniques. If time permits, we will study the basics of emerging non-classical computing paradigms like neuromorphic computing. Overall, this course offers insights on how the computing industry is combating the waning of traditional technology scaling via acceleration and heterogeneity.", "short_title": "Computer Architecture", "title": "Computer Architecture", "school": "YC", @@ -64893,7 +137330,7 @@ "13:00", "14:15", "HLH17 05 - 17 Hillhouse Avenue 05", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Wednesday": [ @@ -64901,7 +137338,7 @@ "13:00", "14:15", "HLH17 05 - 17 Hillhouse Avenue 05", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -64913,10 +137350,155 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83721\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83721/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982604384422302, + 0.9986782670021057, + 0.9970454573631287, + 0.9959930181503296, + 0.9987584352493286, + 0.9795193076133728, + 0.9988956451416016, + 0.9988253712654114, + 0.9978699684143066, + 0.9985839128494263, + 0.9417100548744202, + 0.9987838864326477 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.99887615442276, + 0.9988698363304138, + 0.9979227185249329, + 0.9987890124320984, + 0.9989078044891357, + 0.9857051372528076, + 0.9986310601234436, + 0.9984967708587646, + 0.9989223480224609, + 0.9989016056060791, + 0.9973451495170593, + 0.9964166879653931, + 0.9988887906074524 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.7692307692307693, + "NEGATIVE": 0.23076923076923078 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7692307692307693 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986953139305115, + 0.9988092184066772, + 0.9988666772842407, + 0.9989149570465088, + 0.998746395111084, + 0.9988855719566345, + 0.9950124621391296, + 0.9988293051719666, + 0.9988405108451843, + 0.9988589286804199, + 0.9987837672233582, + 0.9989293217658997, + 0.998904824256897, + 0.995049774646759 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9285714285714286, + "NEGATIVE": 0.07142857142857142 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9285714285714286 + ] + }, + "final_label": "POSITIVE", + "final_count": 35, + "final_proportion": 0.8974358974358975, + "final_counts": { + "POSITIVE": 35, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.8974358974358975, + "NEGATIVE": 0.10256410256410256 + } + } }, { "season_code": "202301", @@ -64954,7 +137536,7 @@ "13:00", "14:15", "HLH17 113 - 17 Hillhouse Avenue 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Thursday": [ @@ -64962,7 +137544,7 @@ "13:00", "14:15", "HLH17 113 - 17 Hillhouse Avenue 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -64978,10 +137560,139 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83725\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83725/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9976089000701904, + 0.9765228033065796, + 0.9988137483596802, + 0.9972901344299316, + 0.9986811280250549, + 0.9971147775650024, + 0.998537540435791, + 0.9965658783912659, + 0.9985371828079224, + 0.9987573623657227 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989014863967896, + 0.9989008903503418, + 0.9988632202148438, + 0.99885094165802, + 0.9963786005973816, + 0.998842716217041, + 0.9989323019981384, + 0.9988610744476318, + 0.9988137483596802, + 0.9988312125205994 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9977697134017944, + 0.9986162185668945, + 0.9988691210746765, + 0.998668909072876, + 0.9988597631454468, + 0.9938748478889465, + 0.9988817572593689, + 0.9988433122634888, + 0.9942114949226379, + 0.9989235997200012, + 0.9988885521888733 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9090909090909091 + ] + }, + "final_label": "POSITIVE", + "final_count": 30, + "final_proportion": 0.967741935483871, + "final_counts": { + "POSITIVE": 30, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.967741935483871, + "NEGATIVE": 0.03225806451612903 + } + } }, { "season_code": "202301", @@ -65019,7 +137730,7 @@ "14:30", "15:45", "ML 211 - Mason Laboratory 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ], "Thursday": [ @@ -65027,7 +137738,7 @@ "14:30", "15:45", "ML 211 - Mason Laboratory 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ] }, @@ -65043,10 +137754,179 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83728\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83728/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987875819206238, + 0.9975754618644714, + 0.9988288283348083, + 0.9986899495124817, + 0.998508870601654, + 0.9922702312469482, + 0.9988528490066528, + 0.9962595701217651, + 0.9989057779312134, + 0.9986535310745239, + 0.9987586736679077, + 0.998641312122345, + 0.9986328482627869, + 0.9986079335212708, + 0.9987642765045166, + 0.9988813996315002 + ], + "sentiment_counts": { + "POSITIVE": 16, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9986376166343689, + 0.998932421207428, + 0.9988754391670227, + 0.9989373087882996, + 0.9988306164741516, + 0.9988225102424622, + 0.9984884262084961, + 0.9988849759101868, + 0.9951207041740417, + 0.9989057779312134, + 0.9986940026283264, + 0.9989104270935059, + 0.9988735318183899, + 0.9932491779327393, + 0.9988447427749634, + 0.9988424181938171, + 0.999492883682251 + ], + "sentiment_counts": { + "POSITIVE": 16, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9411764705882353, + "NEGATIVE": 0.058823529411764705 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9411764705882353 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988508224487305, + 0.9987727999687195, + 0.9989110231399536, + 0.9989176988601685, + 0.998893678188324, + 0.9988054037094116, + 0.9973613619804382, + 0.9981817007064819, + 0.9985783100128174, + 0.9988473653793335, + 0.998860239982605, + 0.9988365769386292, + 0.9986637830734253, + 0.9988985061645508, + 0.9979580640792847, + 0.9984481334686279, + 0.9989101886749268, + 0.9994937181472778 + ], + "sentiment_counts": { + "POSITIVE": 17, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9444444444444444, + "NEGATIVE": 0.05555555555555555 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9444444444444444 + ] + }, + "final_label": "POSITIVE", + "final_count": 49, + "final_proportion": 0.9607843137254902, + "final_counts": { + "POSITIVE": 49, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9607843137254902, + "NEGATIVE": 0.0392156862745098 + } + } }, { "season_code": "202301", @@ -65085,7 +137965,7 @@ "11:35", "12:50", "WTS A46 - Watson Center 60 Sachem Street A46", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -65093,7 +137973,7 @@ "11:35", "12:50", "WTS A46 - Watson Center 60 Sachem Street A46", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -65109,10 +137989,121 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83731\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83731/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986240863800049, + 0.9984011054039001, + 0.9988924860954285, + 0.9958946704864502, + 0.9987769722938538, + 0.9980562925338745, + 0.9986807703971863 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 6 + }, + "sentiment_distribution": { + "NEGATIVE": 0.14285714285714285, + "POSITIVE": 0.8571428571428571 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994953870773315, + 0.9955440163612366, + 0.998927891254425, + 0.9906138181686401, + 0.9988070726394653, + 0.9982892870903015, + 0.9987027645111084 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 5 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2857142857142857, + "POSITIVE": 0.7142857142857143 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7142857142857143 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988860487937927, + 0.9984720349311829, + 0.9988656044006348, + 0.9980657696723938, + 0.9969407916069031, + 0.9994485974311829, + 0.9987941980361938, + 0.9988841414451599 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 5 + }, + "sentiment_distribution": { + "NEGATIVE": 0.375, + "POSITIVE": 0.625 + }, + "sentiment_overall": [ + "POSITIVE", + 0.625 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 0.7272727272727273, + "final_counts": { + "NEGATIVE": 6, + "POSITIVE": 16 + }, + "final_distribution": { + "NEGATIVE": 0.2727272727272727, + "POSITIVE": 0.7272727272727273 + } + } }, { "season_code": "202301", @@ -65150,7 +138141,7 @@ "11:35", "12:50", "WTS A51 - Watson Center 60 Sachem Street A51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -65158,7 +138149,7 @@ "11:35", "12:50", "WTS A51 - Watson Center 60 Sachem Street A51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -65172,10 +138163,227 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83733\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83733/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986415505409241, + 0.9988608360290527, + 0.9986578226089478, + 0.9987527132034302, + 0.9987906813621521, + 0.9978917241096497, + 0.9980979561805725, + 0.9959217309951782, + 0.9988168478012085, + 0.9755820035934448, + 0.9988024234771729, + 0.998904824256897, + 0.9986832737922668, + 0.9984055161476135, + 0.9988698363304138, + 0.9989271759986877, + 0.998065173625946, + 0.9965921640396118, + 0.9988771080970764, + 0.9988434314727783, + 0.998687207698822, + 0.9985299110412598, + 0.9987775683403015, + 0.9979310035705566, + 0.998878538608551, + 0.9988698363304138, + 0.9987872242927551 + ], + "sentiment_counts": { + "POSITIVE": 26, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9629629629629629, + "NEGATIVE": 0.037037037037037035 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9629629629629629 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9975166320800781, + 0.9966529011726379, + 0.9934826493263245, + 0.9987697005271912, + 0.9986018538475037, + 0.998918890953064, + 0.9844279885292053, + 0.9956616759300232, + 0.9974879026412964, + 0.9973357319831848, + 0.9987395405769348, + 0.9989352822303772, + 0.9989045858383179, + 0.9987253546714783, + 0.9982815980911255, + 0.9989226460456848, + 0.9985097050666809, + 0.9986181259155273, + 0.9969800114631653, + 0.9913879036903381, + 0.9992313385009766, + 0.9983885288238525 + ], + "sentiment_counts": { + "NEGATIVE": 5, + "POSITIVE": 17 + }, + "sentiment_distribution": { + "NEGATIVE": 0.22727272727272727, + "POSITIVE": 0.7727272727272727 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7727272727272727 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9942675232887268, + 0.9984671473503113, + 0.9988995790481567, + 0.99870765209198, + 0.9989196062088013, + 0.9988019466400146, + 0.9980423450469971, + 0.9987050294876099, + 0.9988859295845032, + 0.9988110065460205, + 0.997117280960083, + 0.9988483190536499, + 0.9984306693077087, + 0.998837411403656, + 0.9989349246025085, + 0.9989368319511414, + 0.9985652565956116, + 0.9986370205879211, + 0.9985311031341553, + 0.9979150891304016, + 0.9979208111763, + 0.9982757568359375, + 0.9987265467643738, + 0.9989306330680847, + 0.9989311099052429, + 0.9949796795845032 + ], + "sentiment_counts": { + "POSITIVE": 26, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 69, + "final_proportion": 0.92, + "final_counts": { + "POSITIVE": 69, + "NEGATIVE": 6 + }, + "final_distribution": { + "POSITIVE": 0.92, + "NEGATIVE": 0.08 + } + } }, { "season_code": "202301", @@ -65213,7 +138421,7 @@ "9:00", "10:15", "ML 104 - Mason Laboratory 104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ], "Wednesday": [ @@ -65221,7 +138429,7 @@ "9:00", "10:15", "ML 104 - Mason Laboratory 104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ] }, @@ -65235,10 +138443,89 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85692\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85692/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988858103752136, + 0.9988201260566711, + 0.9987353682518005 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE" + ], + "sentiment_scores": [ + 0.998304009437561 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 0 + }, + "sentiment_distribution": { + "NEGATIVE": 1.0, + "POSITIVE": 0.0 + }, + "sentiment_overall": [ + "NEGATIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988493919372559, + 0.9988070726394653 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 5, + "final_proportion": 0.8333333333333334, + "final_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + } + } }, { "season_code": "202301", @@ -65276,7 +138563,7 @@ "11:35", "12:50", "AKW 200 - Arthur K. Watson Hall 200", - "https:\/\/map.yale.edu\/?id=1910#!m\/560119" + "https://map.yale.edu/?id=1910#!m/560119" ] ], "Thursday": [ @@ -65284,7 +138571,7 @@ "11:35", "12:50", "AKW 200 - Arthur K. Watson Hall 200", - "https:\/\/map.yale.edu\/?id=1910#!m\/560119" + "https://map.yale.edu/?id=1910#!m/560119" ] ] }, @@ -65296,10 +138583,125 @@ "classnotes": "", "final_exam": "Monday, May 8, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83738\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83738/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982048273086548, + 0.9972479939460754, + 0.997580885887146, + 0.9988186955451965, + 0.9994145631790161, + 0.9992526173591614, + 0.997580885887146, + 0.9787821173667908, + 0.9981316924095154 + ], + "sentiment_counts": { + "NEGATIVE": 5, + "POSITIVE": 4 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5555555555555556, + "POSITIVE": 0.4444444444444444 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.5555555555555556 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9975934624671936, + 0.9976465106010437, + 0.9994959831237793, + 0.9994561076164246, + 0.9995089769363403, + 0.9895345568656921, + 0.9951613545417786 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 5 + }, + "sentiment_distribution": { + "POSITIVE": 0.2857142857142857, + "NEGATIVE": 0.7142857142857143 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.7142857142857143 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.994623064994812, + 0.9980652928352356, + 0.9934651255607605, + 0.9995075464248657, + 0.9993643164634705, + 0.9994762539863586, + 0.9986226558685303, + 0.9994996786117554 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 6 + }, + "sentiment_distribution": { + "POSITIVE": 0.25, + "NEGATIVE": 0.75 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.75 + ] + }, + "final_label": "NEGATIVE", + "final_count": 16, + "final_proportion": 0.6666666666666666, + "final_counts": { + "NEGATIVE": 16, + "POSITIVE": 8 + }, + "final_distribution": { + "NEGATIVE": 0.6666666666666666, + "POSITIVE": 0.3333333333333333 + } + } }, { "season_code": "202301", @@ -65339,7 +138741,7 @@ "14:30", "15:45", "DL 220 - Dunham Laboratory 220", - "https:\/\/map.yale.edu\/?id=1910#!m\/560005" + "https://map.yale.edu/?id=1910#!m/560005" ] ], "Wednesday": [ @@ -65347,7 +138749,7 @@ "14:30", "15:45", "DL 220 - Dunham Laboratory 220", - "https:\/\/map.yale.edu\/?id=1910#!m\/560005" + "https://map.yale.edu/?id=1910#!m/560005" ] ] }, @@ -65359,10 +138761,261 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83743\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83743/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994625449180603, + 0.9986692667007446, + 0.9977267384529114, + 0.9958676099777222, + 0.998542070388794, + 0.997101366519928, + 0.9987678527832031, + 0.9951832890510559, + 0.9984068274497986, + 0.9987257122993469, + 0.9974414110183716, + 0.995819091796875, + 0.9982781410217285, + 0.9988355040550232, + 0.9972833395004272, + 0.9989116191864014, + 0.9982863068580627, + 0.9988540410995483, + 0.9984550476074219, + 0.9986552000045776, + 0.9955099821090698, + 0.9984970092773438, + 0.998772919178009, + 0.9987083673477173, + 0.9986257553100586, + 0.9938303828239441, + 0.9983738660812378, + 0.9969460368156433, + 0.9984185695648193, + 0.9987848401069641 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 27 + }, + "sentiment_distribution": { + "NEGATIVE": 0.1, + "POSITIVE": 0.9 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9995125532150269, + 0.9988347887992859, + 0.9985306262969971, + 0.9986801743507385, + 0.996660590171814, + 0.9995052814483643, + 0.9940515160560608, + 0.9995088577270508, + 0.9994838237762451, + 0.9985206723213196, + 0.9986639022827148, + 0.9988993406295776, + 0.9994993209838867, + 0.9988382458686829, + 0.9994832277297974, + 0.999346911907196, + 0.9994809031486511, + 0.9944530129432678, + 0.9985024929046631, + 0.9982832670211792, + 0.9941102862358093, + 0.9985215067863464, + 0.9987959861755371, + 0.9994221925735474, + 0.9987170696258545, + 0.9995049238204956, + 0.9822172522544861, + 0.9727941155433655, + 0.998855471611023, + 0.9988963603973389, + 0.9964511394500732 + ], + "sentiment_counts": { + "NEGATIVE": 14, + "POSITIVE": 17 + }, + "sentiment_distribution": { + "NEGATIVE": 0.45161290322580644, + "POSITIVE": 0.5483870967741935 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9995059967041016, + 0.9985914826393127, + 0.9974592328071594, + 0.9988071918487549, + 0.9995059967041016, + 0.9978850483894348, + 0.9995064735412598, + 0.9988580942153931, + 0.995029628276825, + 0.9987230896949768, + 0.9985194802284241, + 0.9978187084197998, + 0.9954947233200073, + 0.9971222281455994, + 0.9988207221031189, + 0.9981922507286072, + 0.9972677230834961, + 0.998528242111206, + 0.9988859295845032, + 0.9989175796508789, + 0.9994513392448425, + 0.9988551139831543, + 0.9931928515434265, + 0.9984241724014282, + 0.9987173080444336, + 0.9988511800765991, + 0.9946998357772827, + 0.9987109899520874, + 0.9784175753593445, + 0.9988406300544739, + 0.9988346695899963 + ], + "sentiment_counts": { + "NEGATIVE": 8, + "POSITIVE": 23 + }, + "sentiment_distribution": { + "NEGATIVE": 0.25806451612903225, + "POSITIVE": 0.7419354838709677 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7419354838709677 + ] + }, + "final_label": "POSITIVE", + "final_count": 67, + "final_proportion": 0.7282608695652174, + "final_counts": { + "NEGATIVE": 25, + "POSITIVE": 67 + }, + "final_distribution": { + "NEGATIVE": 0.2717391304347826, + "POSITIVE": 0.7282608695652174 + } + } }, { "season_code": "202301", @@ -65400,7 +139053,7 @@ "13:00", "14:15", "WTS B60 - Watson Center 60 Sachem Street B60", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -65408,7 +139061,7 @@ "13:00", "14:15", "WTS B60 - Watson Center 60 Sachem Street B60", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -65422,10 +139075,99 @@ "classnotes": "", "final_exam": "Sunday, May 7, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83747\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83747/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9920341372489929, + 0.9982417821884155, + 0.9977372884750366, + 0.9989246726036072 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987817406654358, + 0.9987510442733765, + 0.9989004135131836, + 0.9987457990646362 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9928519129753113, + 0.9956822395324707, + 0.997117280960083, + 0.9988858103752136 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 12 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -65463,7 +139205,7 @@ "16:00", "17:15", "DL 220 - Dunham Laboratory 220", - "https:\/\/map.yale.edu\/?id=1910#!m\/560005" + "https://map.yale.edu/?id=1910#!m/560005" ] ], "Wednesday": [ @@ -65471,7 +139213,7 @@ "16:00", "17:15", "DL 220 - Dunham Laboratory 220", - "https:\/\/map.yale.edu\/?id=1910#!m\/560005" + "https://map.yale.edu/?id=1910#!m/560005" ] ] }, @@ -65485,10 +139227,197 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83752\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83752/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9984061121940613, + 0.9986019730567932, + 0.9944782257080078, + 0.9986737966537476, + 0.9985212683677673, + 0.9988491535186768, + 0.9982991814613342, + 0.9720301032066345, + 0.9969921112060547, + 0.9986818432807922, + 0.9932262301445007, + 0.9975365400314331, + 0.9988223910331726, + 0.9976925849914551, + 0.9984922409057617, + 0.9989094734191895, + 0.9961344003677368, + 0.8934918642044067, + 0.9988359808921814, + 0.998674750328064, + 0.998595654964447, + 0.9950966238975525 + ], + "sentiment_counts": { + "POSITIVE": 15, + "NEGATIVE": 7 + }, + "sentiment_distribution": { + "POSITIVE": 0.6818181818181818, + "NEGATIVE": 0.3181818181818182 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6818181818181818 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984304308891296, + 0.9988422989845276, + 0.9987354874610901, + 0.9987931251525879, + 0.998918890953064, + 0.9984252452850342, + 0.9967305660247803, + 0.9986892342567444, + 0.9983267188072205, + 0.9988376498222351, + 0.9988994598388672, + 0.9921016097068787, + 0.9987223744392395, + 0.9979512095451355, + 0.9983959794044495, + 0.9988064765930176, + 0.9988359808921814, + 0.9989176988601685 + ], + "sentiment_counts": { + "POSITIVE": 17, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9444444444444444, + "NEGATIVE": 0.05555555555555555 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9444444444444444 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9962676167488098, + 0.9989103078842163, + 0.997117280960083, + 0.9984306693077087, + 0.9988179802894592, + 0.9988896250724792, + 0.9988353848457336, + 0.9795188307762146, + 0.997117280960083, + 0.9982621073722839, + 0.9989323019981384, + 0.9988417029380798, + 0.9987220168113708, + 0.9921919703483582, + 0.9988334774971008, + 0.9991588592529297, + 0.998855471611023, + 0.9989326596260071, + 0.9989263415336609, + 0.9986816048622131 + ], + "sentiment_counts": { + "POSITIVE": 18, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "final_label": "POSITIVE", + "final_count": 50, + "final_proportion": 0.8333333333333334, + "final_counts": { + "POSITIVE": 50, + "NEGATIVE": 10 + }, + "final_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + } + } }, { "season_code": "202301", @@ -65526,7 +139455,7 @@ "11:35", "12:50", "ML 211 - Mason Laboratory 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ], "Wednesday": [ @@ -65534,7 +139463,7 @@ "11:35", "12:50", "ML 211 - Mason Laboratory 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ] }, @@ -65548,10 +139477,149 @@ "classnotes": "", "final_exam": "Saturday, May 6, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85954\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/85954/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9941278696060181, + 0.9987234473228455, + 0.9756208062171936, + 0.9982788562774658, + 0.9989336133003235, + 0.99497389793396, + 0.9988983869552612, + 0.9965119957923889, + 0.9987353682518005, + 0.9973950386047363, + 0.9988503456115723, + 0.9974268078804016, + 0.9807760715484619 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.5830453634262085, + 0.998810887336731, + 0.9982232451438904, + 0.9980102181434631, + 0.9988141059875488, + 0.9959564805030823, + 0.9982860684394836, + 0.9989159107208252, + 0.9972988963127136, + 0.9993767142295837, + 0.9061067700386047 + ], + "sentiment_counts": { + "NEGATIVE": 4, + "POSITIVE": 7 + }, + "sentiment_distribution": { + "NEGATIVE": 0.36363636363636365, + "POSITIVE": 0.6363636363636364 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6363636363636364 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9990823268890381, + 0.9988600015640259, + 0.9974592328071594, + 0.9988735318183899, + 0.9987034797668457, + 0.9988075494766235, + 0.9985585808753967, + 0.9994608759880066, + 0.9917193651199341, + 0.9868175983428955, + 0.9988288283348083, + 0.9975420236587524 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 9 + }, + "sentiment_distribution": { + "NEGATIVE": 0.25, + "POSITIVE": 0.75 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 29, + "final_proportion": 0.8055555555555556, + "final_counts": { + "POSITIVE": 29, + "NEGATIVE": 7 + }, + "final_distribution": { + "POSITIVE": 0.8055555555555556, + "NEGATIVE": 0.19444444444444445 + } + } }, { "season_code": "202301", @@ -65589,7 +139657,7 @@ "14:30", "15:45", "HLH17 05 - 17 Hillhouse Avenue 05", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Thursday": [ @@ -65597,7 +139665,7 @@ "14:30", "15:45", "HLH17 05 - 17 Hillhouse Avenue 05", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -65611,10 +139679,131 @@ "classnotes": "", "final_exam": "Wednesday, May 10, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83761\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83761/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989014863967896, + 0.9923393726348877, + 0.9986261129379272, + 0.9978132247924805, + 0.9978234767913818, + 0.9932481050491333, + 0.998296320438385, + 0.9988596439361572 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988308548927307, + 0.9989385008811951, + 0.9985248446464539, + 0.9899857044219971, + 0.9987087249755859, + 0.9987938404083252, + 0.9989020824432373, + 0.9944186210632324, + 0.9965822100639343 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998928964138031, + 0.9988859295845032, + 0.9989131689071655, + 0.9982849955558777, + 0.9974735379219055, + 0.9989204406738281, + 0.9989305138587952, + 0.9989295601844788, + 0.998562753200531, + 0.9989004135131836 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 26, + "final_proportion": 0.9629629629629629, + "final_counts": { + "POSITIVE": 26, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9629629629629629, + "NEGATIVE": 0.037037037037037035 + } + } }, { "season_code": "202301", @@ -65652,7 +139841,7 @@ "14:30", "15:45", "WTS A60 - Watson Center 60 Sachem Street A60", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -65660,7 +139849,7 @@ "14:30", "15:45", "WTS A60 - Watson Center 60 Sachem Street A60", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -65674,10 +139863,161 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83705\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83705/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9975191354751587, + 0.9986076951026917, + 0.9966351389884949, + 0.9960429668426514, + 0.9984678626060486, + 0.9935157299041748, + 0.9916692972183228, + 0.9955982565879822, + 0.9983772039413452, + 0.9977290034294128, + 0.9984830021858215, + 0.9937677383422852, + 0.993696391582489 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8461538461538461, + "NEGATIVE": 0.15384615384615385 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8461538461538461 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994993209838867, + 0.9988240599632263, + 0.9971683621406555, + 0.998275876045227, + 0.9985479712486267, + 0.9986420273780823, + 0.9993528723716736, + 0.9988572597503662, + 0.9994959831237793, + 0.9940185546875, + 0.9984297156333923, + 0.9987408518791199, + 0.999500036239624, + 0.9973469972610474, + 0.9988992214202881 + ], + "sentiment_counts": { + "NEGATIVE": 5, + "POSITIVE": 10 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994989633560181, + 0.9979191422462463, + 0.9988930821418762, + 0.9922858476638794, + 0.9990952014923096, + 0.9987643957138062, + 0.9889242053031921, + 0.997117280960083, + 0.9994508624076843, + 0.9985377788543701, + 0.9985509514808655, + 0.9987074136734009, + 0.9925128221511841, + 0.9966248273849487 + ], + "sentiment_counts": { + "NEGATIVE": 4, + "POSITIVE": 10 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2857142857142857, + "POSITIVE": 0.7142857142857143 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7142857142857143 + ] + }, + "final_label": "POSITIVE", + "final_count": 31, + "final_proportion": 0.7380952380952381, + "final_counts": { + "POSITIVE": 31, + "NEGATIVE": 11 + }, + "final_distribution": { + "POSITIVE": 0.7380952380952381, + "NEGATIVE": 0.2619047619047619 + } + } }, { "season_code": "202301", @@ -65718,7 +140058,7 @@ "9:00", "10:15", "HQ L02 - Humanities Quadrangle L02", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -65726,7 +140066,7 @@ "9:00", "10:15", "HQ L02 - Humanities Quadrangle L02", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -65740,10 +140080,321 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83708\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83708/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983252882957458, + 0.9988043308258057, + 0.998791515827179, + 0.9988871216773987, + 0.99885094165802, + 0.9871265292167664, + 0.9827300310134888, + 0.9879898428916931, + 0.9872641563415527, + 0.998588502407074, + 0.9987714886665344, + 0.9987045526504517, + 0.983746349811554, + 0.9875632524490356, + 0.9989128112792969, + 0.9915728569030762, + 0.9988722205162048, + 0.9985790252685547, + 0.9827300310134888, + 0.9992295503616333, + 0.9986147880554199, + 0.9977877140045166, + 0.9987753033638, + 0.9969235062599182, + 0.998611569404602, + 0.9856839179992676, + 0.9894819259643555, + 0.9986214637756348, + 0.9969069361686707, + 0.9985779523849487, + 0.9987824559211731, + 0.9989159107208252, + 0.9972469806671143, + 0.9987666606903076, + 0.9986691474914551, + 0.9979541301727295, + 0.9861407279968262 + ], + "sentiment_counts": { + "POSITIVE": 35, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.9459459459459459, + "NEGATIVE": 0.05405405405405406 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9459459459459459 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.99874347448349, + 0.998903751373291, + 0.99951171875, + 0.9987488985061646, + 0.9894177317619324, + 0.9987647533416748, + 0.9994431138038635, + 0.9985176920890808, + 0.8717027902603149, + 0.9983896017074585, + 0.998588502407074, + 0.9995088577270508, + 0.9919676184654236, + 0.9995040893554688, + 0.9964129328727722, + 0.9988344311714172, + 0.998846173286438, + 0.9995098114013672, + 0.9984772801399231, + 0.9994968175888062, + 0.9995026588439941, + 0.9994760155677795, + 0.9987943172454834, + 0.9995019435882568, + 0.9986922144889832, + 0.9995015859603882, + 0.9989080429077148, + 0.9858341813087463, + 0.9985108971595764, + 0.9983741044998169, + 0.997794508934021, + 0.9987437129020691, + 0.9988178610801697, + 0.9958357810974121, + 0.9956490397453308, + 0.9988911747932434, + 0.9989039897918701, + 0.9978356957435608, + 0.9991056323051453, + 0.9956484436988831, + 0.9947245717048645, + 0.9988584518432617, + 0.9992302656173706, + 0.9920863509178162 + ], + "sentiment_counts": { + "POSITIVE": 28, + "NEGATIVE": 16 + }, + "sentiment_distribution": { + "POSITIVE": 0.6363636363636364, + "NEGATIVE": 0.36363636363636365 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6363636363636364 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9973794221878052, + 0.9995108842849731, + 0.9980652928352356, + 0.9985650181770325, + 0.997117280960083, + 0.9987863898277283, + 0.9987221360206604, + 0.9995125532150269, + 0.9981922507286072, + 0.9986300468444824, + 0.9868236780166626, + 0.9979975819587708, + 0.9850702285766602, + 0.998830258846283, + 0.9975553154945374, + 0.9985338449478149, + 0.9995104074478149, + 0.9979835748672485, + 0.996330201625824, + 0.9995043277740479, + 0.998621940612793, + 0.9994993209838867, + 0.9974592328071594, + 0.9993391633033752, + 0.998902440071106, + 0.9978467226028442, + 0.9988158941268921, + 0.9983184337615967, + 0.9993776679039001, + 0.9974592328071594, + 0.9974592328071594, + 0.9988868832588196, + 0.9918720126152039, + 0.9993645548820496, + 0.9988653659820557, + 0.9986190795898438, + 0.9985988736152649, + 0.9994450211524963, + 0.9959539175033569, + 0.9995079040527344, + 0.9981922507286072 + ], + "sentiment_counts": { + "POSITIVE": 27, + "NEGATIVE": 14 + }, + "sentiment_distribution": { + "POSITIVE": 0.6585365853658537, + "NEGATIVE": 0.34146341463414637 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6585365853658537 + ] + }, + "final_label": "POSITIVE", + "final_count": 90, + "final_proportion": 0.7377049180327869, + "final_counts": { + "POSITIVE": 90, + "NEGATIVE": 32 + }, + "final_distribution": { + "POSITIVE": 0.7377049180327869, + "NEGATIVE": 0.26229508196721313 + } + } }, { "season_code": "202301", @@ -65781,7 +140432,7 @@ "10:30", "11:20", "AKW 200 - Arthur K. Watson Hall 200", - "https:\/\/map.yale.edu\/?id=1910#!m\/560119" + "https://map.yale.edu/?id=1910#!m/560119" ] ], "Wednesday": [ @@ -65789,7 +140440,7 @@ "10:30", "11:20", "AKW 200 - Arthur K. Watson Hall 200", - "https:\/\/map.yale.edu\/?id=1910#!m\/560119" + "https://map.yale.edu/?id=1910#!m/560119" ] ], "Friday": [ @@ -65797,7 +140448,7 @@ "10:30", "11:20", "AKW 200 - Arthur K. Watson Hall 200", - "https:\/\/map.yale.edu\/?id=1910#!m\/560119" + "https://map.yale.edu/?id=1910#!m/560119" ] ] }, @@ -65811,10 +140462,99 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83711\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83711/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9928357005119324, + 0.9988547563552856, + 0.9984784722328186, + 0.9982184767723083 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998874843120575, + 0.9895461201667786, + 0.9989070892333984, + 0.9988958835601807 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988961219787598, + 0.9989251494407654, + 0.9988125562667847, + 0.9989117383956909 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 12 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -65852,7 +140592,7 @@ "13:00", "14:15", "ML 211 - Mason Laboratory 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ], "Thursday": [ @@ -65860,7 +140600,7 @@ "13:00", "14:15", "ML 211 - Mason Laboratory 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ] }, @@ -65874,10 +140614,237 @@ "classnotes": "", "final_exam": "Sunday, May 7, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83713\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83713/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.907383382320404, + 0.907383382320404, + 0.9971690773963928, + 0.9988417029380798, + 0.9988277554512024, + 0.9985535740852356, + 0.9987863898277283, + 0.9987898468971252, + 0.9984562397003174, + 0.9987834095954895, + 0.9937182664871216, + 0.998497486114502, + 0.9954922199249268, + 0.9985069632530212, + 0.9985344409942627, + 0.9986407160758972, + 0.9982744455337524, + 0.9750452637672424, + 0.9955827593803406, + 0.9987426400184631, + 0.9988203644752502, + 0.9961162805557251, + 0.9988030195236206, + 0.9987615346908569, + 0.9984934329986572, + 0.9966208934783936, + 0.9985130429267883, + 0.9986322522163391, + 0.993893027305603, + 0.907383382320404, + 0.9980887770652771, + 0.9842953681945801 + ], + "sentiment_counts": { + "NEGATIVE": 4, + "POSITIVE": 28 + }, + "sentiment_distribution": { + "NEGATIVE": 0.125, + "POSITIVE": 0.875 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9994614720344543, + 0.9985306262969971, + 0.9984424710273743, + 0.9987213015556335, + 0.9984695315361023, + 0.9984753727912903, + 0.9988113641738892, + 0.9909389019012451, + 0.9984545707702637, + 0.9988829493522644, + 0.9954902529716492, + 0.9984145164489746, + 0.9948713779449463, + 0.9989148378372192, + 0.9988449811935425, + 0.9461286067962646, + 0.9978177547454834, + 0.9891263246536255, + 0.9913696050643921, + 0.999495267868042, + 0.9988184571266174, + 0.9987704157829285, + 0.9982796907424927 + ], + "sentiment_counts": { + "NEGATIVE": 6, + "POSITIVE": 17 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2608695652173913, + "POSITIVE": 0.7391304347826086 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7391304347826086 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9974592328071594, + 0.9984689354896545, + 0.9985607266426086, + 0.980525016784668, + 0.9949771761894226, + 0.9987672567367554, + 0.998717188835144, + 0.9974592328071594, + 0.9986518025398254, + 0.995603084564209, + 0.9987892508506775, + 0.9988911747932434, + 0.9980138540267944, + 0.9984650611877441, + 0.9961397051811218, + 0.9987940788269043, + 0.9988344311714172, + 0.9988380074501038, + 0.9988347887992859, + 0.9910387396812439, + 0.9982553124427795, + 0.9986529350280762, + 0.9988539218902588, + 0.9915253520011902, + 0.9958819150924683 + ], + "sentiment_counts": { + "POSITIVE": 21, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.84, + "NEGATIVE": 0.16 + }, + "sentiment_overall": [ + "POSITIVE", + 0.84 + ] + }, + "final_label": "POSITIVE", + "final_count": 66, + "final_proportion": 0.825, + "final_counts": { + "NEGATIVE": 14, + "POSITIVE": 66 + }, + "final_distribution": { + "NEGATIVE": 0.175, + "POSITIVE": 0.825 + } + } }, { "season_code": "202301", @@ -65915,7 +140882,7 @@ "9:00", "10:15", "HLH17 115 - 17 Hillhouse Avenue 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Thursday": [ @@ -65923,7 +140890,7 @@ "9:00", "10:15", "HLH17 115 - 17 Hillhouse Avenue 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -65937,10 +140904,147 @@ "classnotes": "", "final_exam": "Tuesday, May 9, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83715\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83715/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981468915939331, + 0.9983643889427185, + 0.9643418192863464, + 0.9988518953323364, + 0.9987505674362183, + 0.9969661831855774, + 0.9959203004837036, + 0.9954120516777039, + 0.9844912886619568, + 0.9855520129203796, + 0.9979497790336609, + 0.9988157749176025 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9166666666666666 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994893074035645, + 0.9923263788223267, + 0.9988272786140442, + 0.9988911747932434, + 0.9992033839225769, + 0.9982967972755432, + 0.9994912147521973, + 0.9988333582878113, + 0.7439072132110596, + 0.9987951517105103 + ], + "sentiment_counts": { + "NEGATIVE": 4, + "POSITIVE": 6 + }, + "sentiment_distribution": { + "NEGATIVE": 0.4, + "POSITIVE": 0.6 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9910515546798706, + 0.9988417029380798, + 0.9974592328071594, + 0.9988659620285034, + 0.9989062547683716, + 0.9988628625869751, + 0.997117280960083, + 0.9793370962142944, + 0.9984614849090576, + 0.9979531764984131, + 0.9988641738891602, + 0.9987351298332214, + 0.9988042116165161 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9230769230769231, + "NEGATIVE": 0.07692307692307693 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9230769230769231 + ] + }, + "final_label": "POSITIVE", + "final_count": 29, + "final_proportion": 0.8285714285714286, + "final_counts": { + "POSITIVE": 29, + "NEGATIVE": 6 + }, + "final_distribution": { + "POSITIVE": 0.8285714285714286, + "NEGATIVE": 0.17142857142857143 + } + } }, { "season_code": "202301", @@ -65978,7 +141082,7 @@ "14:30", "15:45", "WTS A46 - Watson Center 60 Sachem Street A46", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -65986,7 +141090,7 @@ "14:30", "15:45", "WTS A46 - Watson Center 60 Sachem Street A46", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -65998,14 +141102,147 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85955\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85955/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "Prerequisites: Basic programming knowledge (e.g., CPSC 112 or equivalent, in Python); mathematical background in Linear algebra (e.g., MATH 222\/225 or equivalent); and Calculus (e.g., MATH 120 or equivalent); or instructor permission.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986757636070251, + 0.9987218976020813, + 0.9987949132919312, + 0.9984458088874817, + 0.9986482262611389, + 0.961175262928009, + 0.9946640729904175, + 0.9962279796600342, + 0.998799204826355, + 0.9988971948623657, + 0.9978284239768982 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998897910118103, + 0.9989124536514282, + 0.9988877177238464, + 0.9982777833938599, + 0.9986404776573181, + 0.998915433883667, + 0.9988295435905457, + 0.9989311099052429, + 0.9989356398582458, + 0.99872225522995 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988295435905457, + 0.9989038705825806, + 0.9988027811050415, + 0.9989294409751892, + 0.9985154271125793, + 0.9975413084030151, + 0.9988600015640259, + 0.9987894892692566, + 0.9989151954650879, + 0.9988742470741272, + 0.9989234805107117, + 0.9988405108451843 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 32, + "final_proportion": 0.9696969696969697, + "final_counts": { + "POSITIVE": 32, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9696969696969697, + "NEGATIVE": 0.030303030303030304 + } + } + }, + { + "season_code": "202301", + "requirements": "Prerequisites: Basic programming knowledge (e.g., CPSC 112 or equivalent, in Python); mathematical background in Linear algebra (e.g., MATH 222/225 or equivalent); and Calculus (e.g., MATH 120 or equivalent); or instructor permission.", "description": "We cover recent advances in machine learning that focus on real-world data. We discuss a wide range of methods and their applications to diverse domains, such as finance, health care, genomics, protein folding, drug discovery, neuroscience, and natural language processing. The seminar is based on a series of lectures by the instructor, guest lecturers, and student presentations. Student presentations are expected to be on recent publications from leading journals and conferences in the field, and are followed by discussions. A final project involves the application of a machine learning method to real-world data.", "short_title": "Current Topics in Applied Mac...", "title": "Current Topics in Applied Machine Learning", @@ -66039,7 +141276,7 @@ "11:35", "12:50", "SPL 59 - Sloane Physics Laboratory 59", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ], "Thursday": [ @@ -66047,7 +141284,7 @@ "11:35", "12:50", "SPL 59 - Sloane Physics Laboratory 59", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ] }, @@ -66059,15 +141296,154 @@ "classnotes": "", "final_exam": "Monday, May 8, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83717\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83717/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9979084730148315, + 0.9870354533195496, + 0.9981561303138733, + 0.995410144329071, + 0.996904194355011, + 0.989195704460144, + 0.9918952584266663, + 0.9986646175384521, + 0.9925947785377502, + 0.9988916516304016 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984270334243774, + 0.9995070695877075, + 0.9985958933830261, + 0.9995044469833374, + 0.9986188411712646, + 0.9952912330627441, + 0.9985841512680054, + 0.9988490343093872, + 0.9969124794006348, + 0.9989069700241089, + 0.9978296160697937, + 0.9982201457023621 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984074234962463, + 0.9995080232620239, + 0.9985790252685547, + 0.9995025396347046, + 0.9957691431045532, + 0.9978427886962891, + 0.994549572467804, + 0.986323356628418, + 0.9992995262145996, + 0.9974592328071594, + 0.9961918592453003, + 0.9989256262779236, + 0.9988786578178406, + 0.998803973197937 + ], + "sentiment_counts": { + "NEGATIVE": 8, + "POSITIVE": 6 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5714285714285714, + "POSITIVE": 0.42857142857142855 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.5714285714285714 + ] + }, + "final_label": "POSITIVE", + "final_count": 24, + "final_proportion": 0.6666666666666666, + "final_counts": { + "POSITIVE": 24, + "NEGATIVE": 12 + }, + "final_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + } + } }, { "season_code": "202301", "requirements": "After CPSC 201 and 202 or equivalents. Students who do not fit this profile may be allowed to enroll with the permission of the instructor.", - "description": "This course introduces students to the interdisciplinary field of Human-Computer Interaction (HCI), with particular focus on Human-Robot Interaction (HRI). The first part of the course covers principles and techniques in the design, development, and evaluation of interactive systems. It provides students with an introduction to UX Design and User-Centered Research. The second part focuses on the emergent field of HRI and several other non-traditional interfaces, e.g., AR\/VR, tangibles, crowdsourcing. The course is organized as a series of lectures, presentations, a mid-term exam, and a semester-long group project on designing a new interactive system.", + "description": "This course introduces students to the interdisciplinary field of Human-Computer Interaction (HCI), with particular focus on Human-Robot Interaction (HRI). The first part of the course covers principles and techniques in the design, development, and evaluation of interactive systems. It provides students with an introduction to UX Design and User-Centered Research. The second part focuses on the emergent field of HRI and several other non-traditional interfaces, e.g., AR/VR, tangibles, crowdsourcing. The course is organized as a series of lectures, presentations, a mid-term exam, and a semester-long group project on designing a new interactive system.", "short_title": "Introduction to Human-Compute...", "title": "Introduction to Human-Computer Interaction", "school": "YC", @@ -66100,7 +141476,7 @@ "13:00", "14:15", "HQ L02 - Humanities Quadrangle L02", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -66108,7 +141484,7 @@ "13:00", "14:15", "HQ L02 - Humanities Quadrangle L02", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -66122,10 +141498,431 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83720\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83720/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984265565872192, + 0.9987093210220337, + 0.9984270334243774, + 0.9983744621276855, + 0.9986514449119568, + 0.9985331296920776, + 0.9957870841026306, + 0.9984338879585266, + 0.9989060163497925, + 0.9772072434425354, + 0.9987793564796448, + 0.9988786578178406, + 0.9988411068916321, + 0.9987624883651733, + 0.9988503456115723, + 0.9989097118377686, + 0.998849630355835, + 0.9987598657608032, + 0.998863935470581, + 0.9954679012298584, + 0.9984052777290344, + 0.9979550838470459, + 0.9986155033111572, + 0.9980425834655762, + 0.9991528987884521, + 0.9986003041267395, + 0.9986698627471924, + 0.9986850619316101, + 0.998445451259613, + 0.9979144930839539, + 0.9994995594024658, + 0.9987154006958008, + 0.9885134100914001, + 0.9989136457443237, + 0.9989217519760132, + 0.9988102912902832, + 0.9987094402313232, + 0.9980383515357971, + 0.9985917210578918, + 0.996127188205719, + 0.9988221526145935, + 0.9987834095954895, + 0.9951196908950806, + 0.9989099502563477, + 0.9966349005699158, + 0.9934870004653931, + 0.9980053305625916, + 0.9987744688987732, + 0.9988840222358704, + 0.9987884163856506, + 0.9988215565681458, + 0.9985606074333191, + 0.9987607002258301, + 0.9985913634300232, + 0.9986156225204468 + ], + "sentiment_counts": { + "POSITIVE": 52, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.9454545454545454, + "NEGATIVE": 0.05454545454545454 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9454545454545454 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9973651766777039, + 0.9969701766967773, + 0.9988922476768494, + 0.994186282157898, + 0.9976574182510376, + 0.9940717816352844, + 0.995718777179718, + 0.998868465423584, + 0.998918890953064, + 0.9990252256393433, + 0.9989136457443237, + 0.9925094842910767, + 0.9987672567367554, + 0.9992973804473877, + 0.9955912828445435, + 0.9989336133003235, + 0.998484194278717, + 0.999000608921051, + 0.9989277720451355, + 0.998654842376709, + 0.9994887113571167, + 0.9989094734191895, + 0.9984331727027893, + 0.9989306330680847, + 0.9994571805000305, + 0.9988895058631897, + 0.9985318183898926, + 0.9994981288909912, + 0.9987962245941162, + 0.9995089769363403, + 0.998805046081543, + 0.9920084476470947, + 0.9989325404167175, + 0.9987025260925293, + 0.9986100196838379, + 0.996209979057312, + 0.9982635378837585, + 0.9968360662460327, + 0.9988692402839661, + 0.9994764924049377, + 0.9988429546356201, + 0.9988391995429993, + 0.9983659386634827, + 0.9988571405410767, + 0.9955911636352539, + 0.9988538026809692, + 0.9982787370681763, + 0.9987389445304871, + 0.9986881613731384, + 0.8109849691390991, + 0.999494194984436, + 0.998835027217865, + 0.998522937297821, + 0.9968177080154419, + 0.9988987445831299, + 0.9989185333251953, + 0.9946960210800171, + 0.9994882345199585, + 0.9989000558853149, + 0.9987908005714417, + 0.9989297986030579, + 0.9983949065208435, + 0.9988812804222107 + ], + "sentiment_counts": { + "POSITIVE": 45, + "NEGATIVE": 18 + }, + "sentiment_distribution": { + "POSITIVE": 0.7142857142857143, + "NEGATIVE": 0.2857142857142857 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7142857142857143 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986213445663452, + 0.9989363551139832, + 0.9995044469833374, + 0.9995105266571045, + 0.9988694787025452, + 0.9988877177238464, + 0.9987369179725647, + 0.9987015724182129, + 0.9774876236915588, + 0.9873670339584351, + 0.9987353682518005, + 0.9981922507286072, + 0.9951539039611816, + 0.9954729676246643, + 0.9988970756530762, + 0.9979152083396912, + 0.9987034797668457, + 0.9988541603088379, + 0.9976826906204224, + 0.9988728165626526, + 0.9988908171653748, + 0.9988521337509155, + 0.9986507296562195, + 0.9995036125183105, + 0.9988429546356201, + 0.999430239200592, + 0.9465354681015015, + 0.9972710013389587, + 0.9870887398719788, + 0.9988265633583069, + 0.9973472356796265, + 0.9988773465156555, + 0.9995057582855225, + 0.9934906959533691, + 0.997117280960083, + 0.9960278272628784, + 0.9987030029296875, + 0.9974592328071594, + 0.9988697171211243, + 0.9987748265266418, + 0.9961557984352112, + 0.9987849593162537, + 0.998906135559082, + 0.9953516721725464, + 0.9988760352134705, + 0.9983030557632446, + 0.997117280960083, + 0.9989373087882996, + 0.9988872408866882, + 0.9974592328071594, + 0.9988906979560852, + 0.9988741278648376, + 0.998630702495575, + 0.9910262227058411, + 0.9989038705825806, + 0.9988791346549988, + 0.998923122882843, + 0.9984824061393738, + 0.9989334940910339 + ], + "sentiment_counts": { + "POSITIVE": 48, + "NEGATIVE": 11 + }, + "sentiment_distribution": { + "POSITIVE": 0.8135593220338984, + "NEGATIVE": 0.1864406779661017 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8135593220338984 + ] + }, + "final_label": "POSITIVE", + "final_count": 145, + "final_proportion": 0.8192090395480226, + "final_counts": { + "POSITIVE": 145, + "NEGATIVE": 32 + }, + "final_distribution": { + "POSITIVE": 0.8192090395480226, + "NEGATIVE": 0.1807909604519774 + } + } }, { "season_code": "202301", @@ -66163,7 +141960,7 @@ "13:00", "14:15", "ML 104 - Mason Laboratory 104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ], "Wednesday": [ @@ -66171,7 +141968,7 @@ "13:00", "14:15", "ML 104 - Mason Laboratory 104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ] }, @@ -66185,10 +141982,103 @@ "classnotes": "", "final_exam": "Tuesday, May 9, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85956\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85956/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989000558853149, + 0.9984434247016907, + 0.9947927594184875, + 0.9988549947738647, + 0.9987229704856873 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998928964138031, + 0.9955310225486755, + 0.9989148378372192, + 0.9988883137702942 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989219903945923, + 0.9975071549415588, + 0.9989224672317505, + 0.9989308714866638 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 0.9230769230769231, + "final_counts": { + "POSITIVE": 12, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9230769230769231, + "NEGATIVE": 0.07692307692307693 + } + } }, { "season_code": "202301", @@ -66226,7 +142116,7 @@ "11:35", "12:50", "WTS A60 - Watson Center 60 Sachem Street A60", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -66234,7 +142124,7 @@ "11:35", "12:50", "WTS A60 - Watson Center 60 Sachem Street A60", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -66246,10 +142136,167 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85957\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85957/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.999083399772644, + 0.9968460202217102, + 0.9989124536514282, + 0.9988278746604919, + 0.9985485672950745, + 0.9988155364990234, + 0.9987910389900208, + 0.9987680315971375, + 0.997334897518158, + 0.9942886829376221, + 0.9868183135986328, + 0.9897164702415466, + 0.998794674873352, + 0.9892114400863647, + 0.9986966252326965, + 0.9987587928771973, + 0.998719334602356 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 15 + }, + "sentiment_distribution": { + "NEGATIVE": 0.11764705882352941, + "POSITIVE": 0.8823529411764706 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8823529411764706 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9929167032241821, + 0.9994139671325684, + 0.9989181756973267, + 0.9985602498054504, + 0.9986677169799805, + 0.9988465309143066, + 0.9989244341850281, + 0.9988847374916077, + 0.9950687885284424, + 0.9870551824569702, + 0.998931348323822, + 0.9988282322883606, + 0.9988332390785217 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 10 + }, + "sentiment_distribution": { + "NEGATIVE": 0.23076923076923078, + "POSITIVE": 0.7692307692307693 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7692307692307693 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987221360206604, + 0.9968061447143555, + 0.9988676309585571, + 0.9988487958908081, + 0.988810658454895, + 0.9988429546356201, + 0.9750826954841614, + 0.998571515083313, + 0.997117280960083, + 0.9989194869995117, + 0.9988563060760498, + 0.9985879063606262, + 0.9989344477653503, + 0.9982098340988159, + 0.9969934225082397 + ], + "sentiment_counts": { + "POSITIVE": 15, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 40, + "final_proportion": 0.8888888888888888, + "final_counts": { + "NEGATIVE": 5, + "POSITIVE": 40 + }, + "final_distribution": { + "NEGATIVE": 0.1111111111111111, + "POSITIVE": 0.8888888888888888 + } + } }, { "season_code": "202301", @@ -66286,7 +142333,7 @@ "13:30", "15:20", "WTS A53 - Watson Center 60 Sachem Street A53", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -66298,10 +142345,243 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83724\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83724/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9980478286743164, + 0.9965937733650208, + 0.9989169836044312, + 0.9941515326499939, + 0.998494029045105, + 0.9994949102401733, + 0.9984923601150513, + 0.9988173842430115, + 0.9964427351951599, + 0.9982536435127258, + 0.9983898401260376, + 0.9987995624542236, + 0.9984826445579529, + 0.9979656934738159, + 0.9988718628883362, + 0.9988418221473694, + 0.9986550807952881, + 0.9989013671875, + 0.9986982345581055, + 0.9988368153572083, + 0.9967984557151794, + 0.9975737929344177, + 0.9988301396369934, + 0.9985890984535217 + ], + "sentiment_counts": { + "POSITIVE": 21, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9967645406723022, + 0.9995026588439941, + 0.9943230152130127, + 0.999498724937439, + 0.9869236350059509, + 0.9993902444839478, + 0.999440610408783, + 0.9984980821609497, + 0.9988848567008972, + 0.9934496283531189, + 0.9993811845779419, + 0.9989137649536133, + 0.9989352822303772, + 0.9853847622871399, + 0.9985287189483643, + 0.9986836314201355, + 0.9923559427261353, + 0.9987847208976746, + 0.9988892674446106, + 0.9989051818847656, + 0.9982665777206421, + 0.9986833930015564, + 0.9963292479515076, + 0.9987994432449341, + 0.9995005130767822, + 0.9799179434776306, + 0.9994853734970093, + 0.9995051622390747, + 0.9925415515899658, + 0.9994695782661438, + 0.9988858103752136, + 0.9987866282463074 + ], + "sentiment_counts": { + "POSITIVE": 18, + "NEGATIVE": 14 + }, + "sentiment_distribution": { + "POSITIVE": 0.5625, + "NEGATIVE": 0.4375 + }, + "sentiment_overall": [ + "POSITIVE", + 0.5625 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9966202974319458, + 0.9981046915054321, + 0.9982682466506958, + 0.998735249042511, + 0.999110996723175, + 0.9984745383262634, + 0.9978127479553223, + 0.998595654964447, + 0.9953199028968811, + 0.9981277585029602, + 0.998077392578125, + 0.9980239868164062, + 0.9989190101623535, + 0.9930644631385803, + 0.997117280960083, + 0.9982230067253113, + 0.9987107515335083, + 0.9987493753433228, + 0.9981666803359985, + 0.9983002543449402, + 0.9980975985527039, + 0.9897482395172119, + 0.9907907247543335, + 0.9988054037094116, + 0.9926484227180481, + 0.9988897442817688, + 0.9989142417907715 + ], + "sentiment_counts": { + "POSITIVE": 23, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.8518518518518519, + "NEGATIVE": 0.14814814814814814 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8518518518518519 + ] + }, + "final_label": "POSITIVE", + "final_count": 62, + "final_proportion": 0.7469879518072289, + "final_counts": { + "POSITIVE": 62, + "NEGATIVE": 21 + }, + "final_distribution": { + "POSITIVE": 0.7469879518072289, + "NEGATIVE": 0.25301204819277107 + } + } }, { "season_code": "202301", @@ -66339,7 +142619,7 @@ "9:25", "11:15", "ML 104 - Mason Laboratory 104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ] }, @@ -66351,15 +142631,88 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85953\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85953/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "", - "description": "This course introduces students to a variety of advanced software engineering and programming techniques in the context of full-stack web programming. The focus of the course includes both client- and server-side programming (and database programming), client\/server communication, user interface programming, and parallel programming.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987918734550476 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9948388934135437, + 0.9988860487937927 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989338517189026 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 4, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 4 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } + }, + { + "season_code": "202301", + "requirements": "", + "description": "This course introduces students to a variety of advanced software engineering and programming techniques in the context of full-stack web programming. The focus of the course includes both client- and server-side programming (and database programming), client/server communication, user interface programming, and parallel programming.", "short_title": "Full Stack Web Programming", "title": "Full Stack Web Programming", "school": "GS", @@ -66392,7 +142745,7 @@ "9:00", "10:15", "DL 220 - Dunham Laboratory 220", - "https:\/\/map.yale.edu\/?id=1910#!m\/560005" + "https://map.yale.edu/?id=1910#!m/560005" ] ], "Wednesday": [ @@ -66400,7 +142753,7 @@ "9:00", "10:15", "DL 220 - Dunham Laboratory 220", - "https:\/\/map.yale.edu\/?id=1910#!m\/560005" + "https://map.yale.edu/?id=1910#!m/560005" ] ] }, @@ -66412,15 +142765,238 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84993\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84993/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9984937906265259, + 0.996953010559082, + 0.9955936074256897, + 0.998681366443634, + 0.9987816214561462, + 0.9988937973976135, + 0.9971557855606079, + 0.996966540813446, + 0.9967492818832397, + 0.9961674809455872, + 0.9989180564880371, + 0.9986369013786316, + 0.9986854195594788, + 0.9969345331192017, + 0.99698406457901, + 0.9987865090370178, + 0.9985816478729248, + 0.9986513257026672, + 0.9977757334709167, + 0.9865743517875671, + 0.9987621307373047, + 0.998250424861908, + 0.9989031553268433, + 0.9986024498939514, + 0.9901699423789978, + 0.9932252764701843, + 0.9994935989379883 + ], + "sentiment_counts": { + "POSITIVE": 26, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9629629629629629, + "NEGATIVE": 0.037037037037037035 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9629629629629629 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.99875807762146, + 0.9994888305664062, + 0.9986976385116577, + 0.9978785514831543, + 0.9988412261009216, + 0.9989150762557983, + 0.9983792304992676, + 0.9950621724128723, + 0.9989129304885864, + 0.974677324295044, + 0.9988774657249451, + 0.9988915324211121, + 0.9988434314727783, + 0.9977144002914429, + 0.9988495111465454, + 0.9989017248153687, + 0.9988718628883362, + 0.99888676404953, + 0.9913774728775024, + 0.9912889003753662, + 0.998884379863739, + 0.9989186525344849, + 0.9979343414306641, + 0.998777449131012, + 0.9987708926200867 + ], + "sentiment_counts": { + "POSITIVE": 20, + "NEGATIVE": 5 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988914132118225, + 0.9987918734550476, + 0.99868243932724, + 0.9989233613014221, + 0.9989336133003235, + 0.9988497495651245, + 0.9987381100654602, + 0.9983054399490356, + 0.9922534823417664, + 0.9950043559074402, + 0.9989399313926697, + 0.998874843120575, + 0.9989262223243713, + 0.9988245368003845, + 0.9989376664161682, + 0.9986068606376648, + 0.9950704574584961, + 0.9989097118377686, + 0.9946790933609009, + 0.9988535642623901, + 0.9979187846183777, + 0.9988738894462585, + 0.9955242872238159, + 0.9990617632865906, + 0.9988366961479187, + 0.9995073080062866 + ], + "sentiment_counts": { + "POSITIVE": 23, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.8846153846153846, + "NEGATIVE": 0.11538461538461539 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8846153846153846 + ] + }, + "final_label": "POSITIVE", + "final_count": 69, + "final_proportion": 0.8846153846153846, + "final_counts": { + "POSITIVE": 69, + "NEGATIVE": 9 + }, + "final_distribution": { + "POSITIVE": 0.8846153846153846, + "NEGATIVE": 0.11538461538461539 + } + } }, { "season_code": "202301", "requirements": "Prerequisites: Courses similar to CPSC 323, 223, and 202.\u00a0This is a programming-intensive course, so comfort with large programming projects is essential.", - "description": "This course offers a treatment of computer architectures for high-performance and power\/energy-efficient computer systems. Topics include the foundations of general-purpose computing, including instruction set architectures, pipelines, superscalar and out-of-order execution, speculation, support for precise exceptions, and simultaneous multi-threading. We also cover domain-specific hardware (e.g., graphics processing units), and ongoing industry efforts to elevate them to the status of first-class computing units. In tandem, we cover topics relevant to both general-purpose and domain-specific computing, including memory hierarchies, address translation and virtual memory, on-chip networks, machine learning techniques for resource management, and coherence techniques. If time permits, we study the basics of emerging non-classical computing paradigms like neuromorphic computing. Overall, this course offers insights on how the computing industry is combating the waning of traditional technology scaling via acceleration and heterogeneity.", + "description": "This course offers a treatment of computer architectures for high-performance and power/energy-efficient computer systems. Topics include the foundations of general-purpose computing, including instruction set architectures, pipelines, superscalar and out-of-order execution, speculation, support for precise exceptions, and simultaneous multi-threading. We also cover domain-specific hardware (e.g., graphics processing units), and ongoing industry efforts to elevate them to the status of first-class computing units. In tandem, we cover topics relevant to both general-purpose and domain-specific computing, including memory hierarchies, address translation and virtual memory, on-chip networks, machine learning techniques for resource management, and coherence techniques. If time permits, we study the basics of emerging non-classical computing paradigms like neuromorphic computing. Overall, this course offers insights on how the computing industry is combating the waning of traditional technology scaling via acceleration and heterogeneity.", "short_title": "Computer Architecture", "title": "Computer Architecture", "school": "GS", @@ -66455,7 +143031,7 @@ "13:00", "14:15", "HLH17 05 - 17 Hillhouse Avenue 05", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Wednesday": [ @@ -66463,7 +143039,7 @@ "13:00", "14:15", "HLH17 05 - 17 Hillhouse Avenue 05", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -66475,10 +143051,155 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83721\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83721/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982604384422302, + 0.9986782670021057, + 0.9970454573631287, + 0.9959930181503296, + 0.9987584352493286, + 0.9795193076133728, + 0.9988956451416016, + 0.9988253712654114, + 0.9978699684143066, + 0.9985839128494263, + 0.9417100548744202, + 0.9987838864326477 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.99887615442276, + 0.9988698363304138, + 0.9979227185249329, + 0.9987890124320984, + 0.9989078044891357, + 0.9857051372528076, + 0.9986310601234436, + 0.9984967708587646, + 0.9989223480224609, + 0.9989016056060791, + 0.9973451495170593, + 0.9964166879653931, + 0.9988887906074524 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.7692307692307693, + "NEGATIVE": 0.23076923076923078 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7692307692307693 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986953139305115, + 0.9988092184066772, + 0.9988666772842407, + 0.9989149570465088, + 0.998746395111084, + 0.9988855719566345, + 0.9950124621391296, + 0.9988293051719666, + 0.9988405108451843, + 0.9988589286804199, + 0.9987837672233582, + 0.9989293217658997, + 0.998904824256897, + 0.995049774646759 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9285714285714286, + "NEGATIVE": 0.07142857142857142 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9285714285714286 + ] + }, + "final_label": "POSITIVE", + "final_count": 35, + "final_proportion": 0.8974358974358975, + "final_counts": { + "POSITIVE": 35, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.8974358974358975, + "NEGATIVE": 0.10256410256410256 + } + } }, { "season_code": "202301", @@ -66516,7 +143237,7 @@ "13:00", "14:15", "HLH17 113 - 17 Hillhouse Avenue 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Thursday": [ @@ -66524,7 +143245,7 @@ "13:00", "14:15", "HLH17 113 - 17 Hillhouse Avenue 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -66538,10 +143259,139 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83725\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83725/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9976089000701904, + 0.9765228033065796, + 0.9988137483596802, + 0.9972901344299316, + 0.9986811280250549, + 0.9971147775650024, + 0.998537540435791, + 0.9965658783912659, + 0.9985371828079224, + 0.9987573623657227 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989014863967896, + 0.9989008903503418, + 0.9988632202148438, + 0.99885094165802, + 0.9963786005973816, + 0.998842716217041, + 0.9989323019981384, + 0.9988610744476318, + 0.9988137483596802, + 0.9988312125205994 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9977697134017944, + 0.9986162185668945, + 0.9988691210746765, + 0.998668909072876, + 0.9988597631454468, + 0.9938748478889465, + 0.9988817572593689, + 0.9988433122634888, + 0.9942114949226379, + 0.9989235997200012, + 0.9988885521888733 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9090909090909091 + ] + }, + "final_label": "POSITIVE", + "final_count": 30, + "final_proportion": 0.967741935483871, + "final_counts": { + "POSITIVE": 30, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.967741935483871, + "NEGATIVE": 0.03225806451612903 + } + } }, { "season_code": "202301", @@ -66579,7 +143429,7 @@ "14:30", "15:45", "ML 211 - Mason Laboratory 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ], "Thursday": [ @@ -66587,7 +143437,7 @@ "14:30", "15:45", "ML 211 - Mason Laboratory 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ] }, @@ -66601,10 +143451,179 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83728\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83728/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987875819206238, + 0.9975754618644714, + 0.9988288283348083, + 0.9986899495124817, + 0.998508870601654, + 0.9922702312469482, + 0.9988528490066528, + 0.9962595701217651, + 0.9989057779312134, + 0.9986535310745239, + 0.9987586736679077, + 0.998641312122345, + 0.9986328482627869, + 0.9986079335212708, + 0.9987642765045166, + 0.9988813996315002 + ], + "sentiment_counts": { + "POSITIVE": 16, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9986376166343689, + 0.998932421207428, + 0.9988754391670227, + 0.9989373087882996, + 0.9988306164741516, + 0.9988225102424622, + 0.9984884262084961, + 0.9988849759101868, + 0.9951207041740417, + 0.9989057779312134, + 0.9986940026283264, + 0.9989104270935059, + 0.9988735318183899, + 0.9932491779327393, + 0.9988447427749634, + 0.9988424181938171, + 0.999492883682251 + ], + "sentiment_counts": { + "POSITIVE": 16, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9411764705882353, + "NEGATIVE": 0.058823529411764705 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9411764705882353 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988508224487305, + 0.9987727999687195, + 0.9989110231399536, + 0.9989176988601685, + 0.998893678188324, + 0.9988054037094116, + 0.9973613619804382, + 0.9981817007064819, + 0.9985783100128174, + 0.9988473653793335, + 0.998860239982605, + 0.9988365769386292, + 0.9986637830734253, + 0.9988985061645508, + 0.9979580640792847, + 0.9984481334686279, + 0.9989101886749268, + 0.9994937181472778 + ], + "sentiment_counts": { + "POSITIVE": 17, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9444444444444444, + "NEGATIVE": 0.05555555555555555 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9444444444444444 + ] + }, + "final_label": "POSITIVE", + "final_count": 49, + "final_proportion": 0.9607843137254902, + "final_counts": { + "POSITIVE": 49, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9607843137254902, + "NEGATIVE": 0.0392156862745098 + } + } }, { "season_code": "202301", @@ -66643,7 +143662,7 @@ "11:35", "12:50", "WTS A46 - Watson Center 60 Sachem Street A46", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -66651,7 +143670,7 @@ "11:35", "12:50", "WTS A46 - Watson Center 60 Sachem Street A46", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -66663,10 +143682,121 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83731\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83731/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986240863800049, + 0.9984011054039001, + 0.9988924860954285, + 0.9958946704864502, + 0.9987769722938538, + 0.9980562925338745, + 0.9986807703971863 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 6 + }, + "sentiment_distribution": { + "NEGATIVE": 0.14285714285714285, + "POSITIVE": 0.8571428571428571 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994953870773315, + 0.9955440163612366, + 0.998927891254425, + 0.9906138181686401, + 0.9988070726394653, + 0.9982892870903015, + 0.9987027645111084 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 5 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2857142857142857, + "POSITIVE": 0.7142857142857143 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7142857142857143 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988860487937927, + 0.9984720349311829, + 0.9988656044006348, + 0.9980657696723938, + 0.9969407916069031, + 0.9994485974311829, + 0.9987941980361938, + 0.9988841414451599 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 5 + }, + "sentiment_distribution": { + "NEGATIVE": 0.375, + "POSITIVE": 0.625 + }, + "sentiment_overall": [ + "POSITIVE", + 0.625 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 0.7272727272727273, + "final_counts": { + "NEGATIVE": 6, + "POSITIVE": 16 + }, + "final_distribution": { + "NEGATIVE": 0.2727272727272727, + "POSITIVE": 0.7272727272727273 + } + } }, { "season_code": "202301", @@ -66704,7 +143834,7 @@ "11:35", "12:50", "WTS A51 - Watson Center 60 Sachem Street A51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -66712,7 +143842,7 @@ "11:35", "12:50", "WTS A51 - Watson Center 60 Sachem Street A51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -66724,15 +143854,232 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83733\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83733/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986415505409241, + 0.9988608360290527, + 0.9986578226089478, + 0.9987527132034302, + 0.9987906813621521, + 0.9978917241096497, + 0.9980979561805725, + 0.9959217309951782, + 0.9988168478012085, + 0.9755820035934448, + 0.9988024234771729, + 0.998904824256897, + 0.9986832737922668, + 0.9984055161476135, + 0.9988698363304138, + 0.9989271759986877, + 0.998065173625946, + 0.9965921640396118, + 0.9988771080970764, + 0.9988434314727783, + 0.998687207698822, + 0.9985299110412598, + 0.9987775683403015, + 0.9979310035705566, + 0.998878538608551, + 0.9988698363304138, + 0.9987872242927551 + ], + "sentiment_counts": { + "POSITIVE": 26, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9629629629629629, + "NEGATIVE": 0.037037037037037035 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9629629629629629 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9975166320800781, + 0.9966529011726379, + 0.9934826493263245, + 0.9987697005271912, + 0.9986018538475037, + 0.998918890953064, + 0.9844279885292053, + 0.9956616759300232, + 0.9974879026412964, + 0.9973357319831848, + 0.9987395405769348, + 0.9989352822303772, + 0.9989045858383179, + 0.9987253546714783, + 0.9982815980911255, + 0.9989226460456848, + 0.9985097050666809, + 0.9986181259155273, + 0.9969800114631653, + 0.9913879036903381, + 0.9992313385009766, + 0.9983885288238525 + ], + "sentiment_counts": { + "NEGATIVE": 5, + "POSITIVE": 17 + }, + "sentiment_distribution": { + "NEGATIVE": 0.22727272727272727, + "POSITIVE": 0.7727272727272727 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7727272727272727 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9942675232887268, + 0.9984671473503113, + 0.9988995790481567, + 0.99870765209198, + 0.9989196062088013, + 0.9988019466400146, + 0.9980423450469971, + 0.9987050294876099, + 0.9988859295845032, + 0.9988110065460205, + 0.997117280960083, + 0.9988483190536499, + 0.9984306693077087, + 0.998837411403656, + 0.9989349246025085, + 0.9989368319511414, + 0.9985652565956116, + 0.9986370205879211, + 0.9985311031341553, + 0.9979150891304016, + 0.9979208111763, + 0.9982757568359375, + 0.9987265467643738, + 0.9989306330680847, + 0.9989311099052429, + 0.9949796795845032 + ], + "sentiment_counts": { + "POSITIVE": 26, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 69, + "final_proportion": 0.92, + "final_counts": { + "POSITIVE": 69, + "NEGATIVE": 6 + }, + "final_distribution": { + "POSITIVE": 0.92, + "NEGATIVE": 0.08 + } + } }, { "season_code": "202301", "requirements": "Prerequisite: CPSC 537.", - "description": "This course covers advanced topics in Database Systems, explaining on the material covered in CPSC\u00a0437\/537. Topics covered include complex data types, application development, big data, data analytics,\u00a0parallel and distributed storage, parallel and distributed query processing, advanced indexing techniques,\u00a0advanced relational database design, and object-based databases.", + "description": "This course covers advanced topics in Database Systems, explaining on the material covered in CPSC\u00a0437/537. Topics covered include complex data types, application development, big data, data analytics,\u00a0parallel and distributed storage, parallel and distributed query processing, advanced indexing techniques,\u00a0advanced relational database design, and object-based databases.", "short_title": "Advanced Databases", "title": "Advanced Databases", "school": "GS", @@ -66765,7 +144112,7 @@ "9:00", "10:15", "ML 104 - Mason Laboratory 104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ], "Wednesday": [ @@ -66773,7 +144120,7 @@ "9:00", "10:15", "ML 104 - Mason Laboratory 104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ] }, @@ -66785,10 +144132,89 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85692\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85692/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988858103752136, + 0.9988201260566711, + 0.9987353682518005 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE" + ], + "sentiment_scores": [ + 0.998304009437561 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 0 + }, + "sentiment_distribution": { + "NEGATIVE": 1.0, + "POSITIVE": 0.0 + }, + "sentiment_overall": [ + "NEGATIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988493919372559, + 0.9988070726394653 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 5, + "final_proportion": 0.8333333333333334, + "final_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + } + } }, { "season_code": "202301", @@ -66826,7 +144252,7 @@ "11:35", "12:50", "AKW 200 - Arthur K. Watson Hall 200", - "https:\/\/map.yale.edu\/?id=1910#!m\/560119" + "https://map.yale.edu/?id=1910#!m/560119" ] ], "Thursday": [ @@ -66834,7 +144260,7 @@ "11:35", "12:50", "AKW 200 - Arthur K. Watson Hall 200", - "https:\/\/map.yale.edu\/?id=1910#!m\/560119" + "https://map.yale.edu/?id=1910#!m/560119" ] ] }, @@ -66846,10 +144272,125 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83738\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83738/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982048273086548, + 0.9972479939460754, + 0.997580885887146, + 0.9988186955451965, + 0.9994145631790161, + 0.9992526173591614, + 0.997580885887146, + 0.9787821173667908, + 0.9981316924095154 + ], + "sentiment_counts": { + "NEGATIVE": 5, + "POSITIVE": 4 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5555555555555556, + "POSITIVE": 0.4444444444444444 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.5555555555555556 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9975934624671936, + 0.9976465106010437, + 0.9994959831237793, + 0.9994561076164246, + 0.9995089769363403, + 0.9895345568656921, + 0.9951613545417786 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 5 + }, + "sentiment_distribution": { + "POSITIVE": 0.2857142857142857, + "NEGATIVE": 0.7142857142857143 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.7142857142857143 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.994623064994812, + 0.9980652928352356, + 0.9934651255607605, + 0.9995075464248657, + 0.9993643164634705, + 0.9994762539863586, + 0.9986226558685303, + 0.9994996786117554 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 6 + }, + "sentiment_distribution": { + "POSITIVE": 0.25, + "NEGATIVE": 0.75 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.75 + ] + }, + "final_label": "NEGATIVE", + "final_count": 16, + "final_proportion": 0.6666666666666666, + "final_counts": { + "NEGATIVE": 16, + "POSITIVE": 8 + }, + "final_distribution": { + "NEGATIVE": 0.6666666666666666, + "POSITIVE": 0.3333333333333333 + } + } }, { "season_code": "202301", @@ -66889,7 +144430,7 @@ "14:30", "15:45", "DL 220 - Dunham Laboratory 220", - "https:\/\/map.yale.edu\/?id=1910#!m\/560005" + "https://map.yale.edu/?id=1910#!m/560005" ] ], "Wednesday": [ @@ -66897,7 +144438,7 @@ "14:30", "15:45", "DL 220 - Dunham Laboratory 220", - "https:\/\/map.yale.edu\/?id=1910#!m\/560005" + "https://map.yale.edu/?id=1910#!m/560005" ] ] }, @@ -66909,10 +144450,261 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83743\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83743/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994625449180603, + 0.9986692667007446, + 0.9977267384529114, + 0.9958676099777222, + 0.998542070388794, + 0.997101366519928, + 0.9987678527832031, + 0.9951832890510559, + 0.9984068274497986, + 0.9987257122993469, + 0.9974414110183716, + 0.995819091796875, + 0.9982781410217285, + 0.9988355040550232, + 0.9972833395004272, + 0.9989116191864014, + 0.9982863068580627, + 0.9988540410995483, + 0.9984550476074219, + 0.9986552000045776, + 0.9955099821090698, + 0.9984970092773438, + 0.998772919178009, + 0.9987083673477173, + 0.9986257553100586, + 0.9938303828239441, + 0.9983738660812378, + 0.9969460368156433, + 0.9984185695648193, + 0.9987848401069641 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 27 + }, + "sentiment_distribution": { + "NEGATIVE": 0.1, + "POSITIVE": 0.9 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9995125532150269, + 0.9988347887992859, + 0.9985306262969971, + 0.9986801743507385, + 0.996660590171814, + 0.9995052814483643, + 0.9940515160560608, + 0.9995088577270508, + 0.9994838237762451, + 0.9985206723213196, + 0.9986639022827148, + 0.9988993406295776, + 0.9994993209838867, + 0.9988382458686829, + 0.9994832277297974, + 0.999346911907196, + 0.9994809031486511, + 0.9944530129432678, + 0.9985024929046631, + 0.9982832670211792, + 0.9941102862358093, + 0.9985215067863464, + 0.9987959861755371, + 0.9994221925735474, + 0.9987170696258545, + 0.9995049238204956, + 0.9822172522544861, + 0.9727941155433655, + 0.998855471611023, + 0.9988963603973389, + 0.9964511394500732 + ], + "sentiment_counts": { + "NEGATIVE": 14, + "POSITIVE": 17 + }, + "sentiment_distribution": { + "NEGATIVE": 0.45161290322580644, + "POSITIVE": 0.5483870967741935 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9995059967041016, + 0.9985914826393127, + 0.9974592328071594, + 0.9988071918487549, + 0.9995059967041016, + 0.9978850483894348, + 0.9995064735412598, + 0.9988580942153931, + 0.995029628276825, + 0.9987230896949768, + 0.9985194802284241, + 0.9978187084197998, + 0.9954947233200073, + 0.9971222281455994, + 0.9988207221031189, + 0.9981922507286072, + 0.9972677230834961, + 0.998528242111206, + 0.9988859295845032, + 0.9989175796508789, + 0.9994513392448425, + 0.9988551139831543, + 0.9931928515434265, + 0.9984241724014282, + 0.9987173080444336, + 0.9988511800765991, + 0.9946998357772827, + 0.9987109899520874, + 0.9784175753593445, + 0.9988406300544739, + 0.9988346695899963 + ], + "sentiment_counts": { + "NEGATIVE": 8, + "POSITIVE": 23 + }, + "sentiment_distribution": { + "NEGATIVE": 0.25806451612903225, + "POSITIVE": 0.7419354838709677 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7419354838709677 + ] + }, + "final_label": "POSITIVE", + "final_count": 67, + "final_proportion": 0.7282608695652174, + "final_counts": { + "NEGATIVE": 25, + "POSITIVE": 67 + }, + "final_distribution": { + "NEGATIVE": 0.2717391304347826, + "POSITIVE": 0.7282608695652174 + } + } }, { "season_code": "202301", @@ -66950,7 +144742,7 @@ "13:00", "14:15", "WTS B60 - Watson Center 60 Sachem Street B60", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -66958,7 +144750,7 @@ "13:00", "14:15", "WTS B60 - Watson Center 60 Sachem Street B60", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -66970,10 +144762,99 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83747\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83747/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9920341372489929, + 0.9982417821884155, + 0.9977372884750366, + 0.9989246726036072 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987817406654358, + 0.9987510442733765, + 0.9989004135131836, + 0.9987457990646362 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9928519129753113, + 0.9956822395324707, + 0.997117280960083, + 0.9988858103752136 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 12 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -67011,7 +144892,7 @@ "16:00", "17:15", "DL 220 - Dunham Laboratory 220", - "https:\/\/map.yale.edu\/?id=1910#!m\/560005" + "https://map.yale.edu/?id=1910#!m/560005" ] ], "Wednesday": [ @@ -67019,7 +144900,7 @@ "16:00", "17:15", "DL 220 - Dunham Laboratory 220", - "https:\/\/map.yale.edu\/?id=1910#!m\/560005" + "https://map.yale.edu/?id=1910#!m/560005" ] ] }, @@ -67031,10 +144912,197 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83752\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83752/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9984061121940613, + 0.9986019730567932, + 0.9944782257080078, + 0.9986737966537476, + 0.9985212683677673, + 0.9988491535186768, + 0.9982991814613342, + 0.9720301032066345, + 0.9969921112060547, + 0.9986818432807922, + 0.9932262301445007, + 0.9975365400314331, + 0.9988223910331726, + 0.9976925849914551, + 0.9984922409057617, + 0.9989094734191895, + 0.9961344003677368, + 0.8934918642044067, + 0.9988359808921814, + 0.998674750328064, + 0.998595654964447, + 0.9950966238975525 + ], + "sentiment_counts": { + "POSITIVE": 15, + "NEGATIVE": 7 + }, + "sentiment_distribution": { + "POSITIVE": 0.6818181818181818, + "NEGATIVE": 0.3181818181818182 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6818181818181818 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984304308891296, + 0.9988422989845276, + 0.9987354874610901, + 0.9987931251525879, + 0.998918890953064, + 0.9984252452850342, + 0.9967305660247803, + 0.9986892342567444, + 0.9983267188072205, + 0.9988376498222351, + 0.9988994598388672, + 0.9921016097068787, + 0.9987223744392395, + 0.9979512095451355, + 0.9983959794044495, + 0.9988064765930176, + 0.9988359808921814, + 0.9989176988601685 + ], + "sentiment_counts": { + "POSITIVE": 17, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9444444444444444, + "NEGATIVE": 0.05555555555555555 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9444444444444444 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9962676167488098, + 0.9989103078842163, + 0.997117280960083, + 0.9984306693077087, + 0.9988179802894592, + 0.9988896250724792, + 0.9988353848457336, + 0.9795188307762146, + 0.997117280960083, + 0.9982621073722839, + 0.9989323019981384, + 0.9988417029380798, + 0.9987220168113708, + 0.9921919703483582, + 0.9988334774971008, + 0.9991588592529297, + 0.998855471611023, + 0.9989326596260071, + 0.9989263415336609, + 0.9986816048622131 + ], + "sentiment_counts": { + "POSITIVE": 18, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "final_label": "POSITIVE", + "final_count": 50, + "final_proportion": 0.8333333333333334, + "final_counts": { + "POSITIVE": 50, + "NEGATIVE": 10 + }, + "final_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + } + } }, { "season_code": "202301", @@ -67072,7 +145140,7 @@ "11:35", "12:50", "ML 211 - Mason Laboratory 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ], "Wednesday": [ @@ -67080,7 +145148,7 @@ "11:35", "12:50", "ML 211 - Mason Laboratory 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ] }, @@ -67092,10 +145160,149 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85954\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85954/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9941278696060181, + 0.9987234473228455, + 0.9756208062171936, + 0.9982788562774658, + 0.9989336133003235, + 0.99497389793396, + 0.9988983869552612, + 0.9965119957923889, + 0.9987353682518005, + 0.9973950386047363, + 0.9988503456115723, + 0.9974268078804016, + 0.9807760715484619 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.5830453634262085, + 0.998810887336731, + 0.9982232451438904, + 0.9980102181434631, + 0.9988141059875488, + 0.9959564805030823, + 0.9982860684394836, + 0.9989159107208252, + 0.9972988963127136, + 0.9993767142295837, + 0.9061067700386047 + ], + "sentiment_counts": { + "NEGATIVE": 4, + "POSITIVE": 7 + }, + "sentiment_distribution": { + "NEGATIVE": 0.36363636363636365, + "POSITIVE": 0.6363636363636364 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6363636363636364 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9990823268890381, + 0.9988600015640259, + 0.9974592328071594, + 0.9988735318183899, + 0.9987034797668457, + 0.9988075494766235, + 0.9985585808753967, + 0.9994608759880066, + 0.9917193651199341, + 0.9868175983428955, + 0.9988288283348083, + 0.9975420236587524 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 9 + }, + "sentiment_distribution": { + "NEGATIVE": 0.25, + "POSITIVE": 0.75 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 29, + "final_proportion": 0.8055555555555556, + "final_counts": { + "POSITIVE": 29, + "NEGATIVE": 7 + }, + "final_distribution": { + "POSITIVE": 0.8055555555555556, + "NEGATIVE": 0.19444444444444445 + } + } }, { "season_code": "202301", @@ -67133,7 +145340,7 @@ "14:30", "15:45", "HLH17 05 - 17 Hillhouse Avenue 05", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Thursday": [ @@ -67141,7 +145348,7 @@ "14:30", "15:45", "HLH17 05 - 17 Hillhouse Avenue 05", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -67153,10 +145360,131 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83761\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83761/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989014863967896, + 0.9923393726348877, + 0.9986261129379272, + 0.9978132247924805, + 0.9978234767913818, + 0.9932481050491333, + 0.998296320438385, + 0.9988596439361572 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988308548927307, + 0.9989385008811951, + 0.9985248446464539, + 0.9899857044219971, + 0.9987087249755859, + 0.9987938404083252, + 0.9989020824432373, + 0.9944186210632324, + 0.9965822100639343 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998928964138031, + 0.9988859295845032, + 0.9989131689071655, + 0.9982849955558777, + 0.9974735379219055, + 0.9989204406738281, + 0.9989305138587952, + 0.9989295601844788, + 0.998562753200531, + 0.9989004135131836 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 26, + "final_proportion": 0.9629629629629629, + "final_counts": { + "POSITIVE": 26, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9629629629629629, + "NEGATIVE": 0.037037037037037035 + } + } }, { "season_code": "202301", @@ -67193,7 +145521,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -67231,7 +145587,7 @@ "14:30", "15:45", "WTS A60 - Watson Center 60 Sachem Street A60", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -67239,7 +145595,7 @@ "14:30", "15:45", "WTS A60 - Watson Center 60 Sachem Street A60", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -67251,10 +145607,161 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83705\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83705/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9975191354751587, + 0.9986076951026917, + 0.9966351389884949, + 0.9960429668426514, + 0.9984678626060486, + 0.9935157299041748, + 0.9916692972183228, + 0.9955982565879822, + 0.9983772039413452, + 0.9977290034294128, + 0.9984830021858215, + 0.9937677383422852, + 0.993696391582489 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8461538461538461, + "NEGATIVE": 0.15384615384615385 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8461538461538461 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994993209838867, + 0.9988240599632263, + 0.9971683621406555, + 0.998275876045227, + 0.9985479712486267, + 0.9986420273780823, + 0.9993528723716736, + 0.9988572597503662, + 0.9994959831237793, + 0.9940185546875, + 0.9984297156333923, + 0.9987408518791199, + 0.999500036239624, + 0.9973469972610474, + 0.9988992214202881 + ], + "sentiment_counts": { + "NEGATIVE": 5, + "POSITIVE": 10 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994989633560181, + 0.9979191422462463, + 0.9988930821418762, + 0.9922858476638794, + 0.9990952014923096, + 0.9987643957138062, + 0.9889242053031921, + 0.997117280960083, + 0.9994508624076843, + 0.9985377788543701, + 0.9985509514808655, + 0.9987074136734009, + 0.9925128221511841, + 0.9966248273849487 + ], + "sentiment_counts": { + "NEGATIVE": 4, + "POSITIVE": 10 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2857142857142857, + "POSITIVE": 0.7142857142857143 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7142857142857143 + ] + }, + "final_label": "POSITIVE", + "final_count": 31, + "final_proportion": 0.7380952380952381, + "final_counts": { + "POSITIVE": 31, + "NEGATIVE": 11 + }, + "final_distribution": { + "POSITIVE": 0.7380952380952381, + "NEGATIVE": 0.2619047619047619 + } + } }, { "season_code": "202301", @@ -67295,7 +145802,7 @@ "9:00", "10:15", "HQ L02 - Humanities Quadrangle L02", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -67303,22 +145810,333 @@ "9:00", "10:15", "HQ L02 - Humanities Quadrangle L02", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" - ] - ] - }, - "skills": [], - "areas": [], - "flags": [], - "regnotes": "", - "rp_attr": "", - "classnotes": "", - "final_exam": "", - "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83708\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "https://map.yale.edu/?id=1910#!m/563690" + ] + ] + }, + "skills": [], + "areas": [], + "flags": [], + "regnotes": "", + "rp_attr": "", + "classnotes": "", + "final_exam": "", + "course_home_url": "", + "syllabus_url": "https://yale.instructure.com/courses/83708/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983252882957458, + 0.9988043308258057, + 0.998791515827179, + 0.9988871216773987, + 0.99885094165802, + 0.9871265292167664, + 0.9827300310134888, + 0.9879898428916931, + 0.9872641563415527, + 0.998588502407074, + 0.9987714886665344, + 0.9987045526504517, + 0.983746349811554, + 0.9875632524490356, + 0.9989128112792969, + 0.9915728569030762, + 0.9988722205162048, + 0.9985790252685547, + 0.9827300310134888, + 0.9992295503616333, + 0.9986147880554199, + 0.9977877140045166, + 0.9987753033638, + 0.9969235062599182, + 0.998611569404602, + 0.9856839179992676, + 0.9894819259643555, + 0.9986214637756348, + 0.9969069361686707, + 0.9985779523849487, + 0.9987824559211731, + 0.9989159107208252, + 0.9972469806671143, + 0.9987666606903076, + 0.9986691474914551, + 0.9979541301727295, + 0.9861407279968262 + ], + "sentiment_counts": { + "POSITIVE": 35, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.9459459459459459, + "NEGATIVE": 0.05405405405405406 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9459459459459459 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.99874347448349, + 0.998903751373291, + 0.99951171875, + 0.9987488985061646, + 0.9894177317619324, + 0.9987647533416748, + 0.9994431138038635, + 0.9985176920890808, + 0.8717027902603149, + 0.9983896017074585, + 0.998588502407074, + 0.9995088577270508, + 0.9919676184654236, + 0.9995040893554688, + 0.9964129328727722, + 0.9988344311714172, + 0.998846173286438, + 0.9995098114013672, + 0.9984772801399231, + 0.9994968175888062, + 0.9995026588439941, + 0.9994760155677795, + 0.9987943172454834, + 0.9995019435882568, + 0.9986922144889832, + 0.9995015859603882, + 0.9989080429077148, + 0.9858341813087463, + 0.9985108971595764, + 0.9983741044998169, + 0.997794508934021, + 0.9987437129020691, + 0.9988178610801697, + 0.9958357810974121, + 0.9956490397453308, + 0.9988911747932434, + 0.9989039897918701, + 0.9978356957435608, + 0.9991056323051453, + 0.9956484436988831, + 0.9947245717048645, + 0.9988584518432617, + 0.9992302656173706, + 0.9920863509178162 + ], + "sentiment_counts": { + "POSITIVE": 28, + "NEGATIVE": 16 + }, + "sentiment_distribution": { + "POSITIVE": 0.6363636363636364, + "NEGATIVE": 0.36363636363636365 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6363636363636364 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9973794221878052, + 0.9995108842849731, + 0.9980652928352356, + 0.9985650181770325, + 0.997117280960083, + 0.9987863898277283, + 0.9987221360206604, + 0.9995125532150269, + 0.9981922507286072, + 0.9986300468444824, + 0.9868236780166626, + 0.9979975819587708, + 0.9850702285766602, + 0.998830258846283, + 0.9975553154945374, + 0.9985338449478149, + 0.9995104074478149, + 0.9979835748672485, + 0.996330201625824, + 0.9995043277740479, + 0.998621940612793, + 0.9994993209838867, + 0.9974592328071594, + 0.9993391633033752, + 0.998902440071106, + 0.9978467226028442, + 0.9988158941268921, + 0.9983184337615967, + 0.9993776679039001, + 0.9974592328071594, + 0.9974592328071594, + 0.9988868832588196, + 0.9918720126152039, + 0.9993645548820496, + 0.9988653659820557, + 0.9986190795898438, + 0.9985988736152649, + 0.9994450211524963, + 0.9959539175033569, + 0.9995079040527344, + 0.9981922507286072 + ], + "sentiment_counts": { + "POSITIVE": 27, + "NEGATIVE": 14 + }, + "sentiment_distribution": { + "POSITIVE": 0.6585365853658537, + "NEGATIVE": 0.34146341463414637 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6585365853658537 + ] + }, + "final_label": "POSITIVE", + "final_count": 90, + "final_proportion": 0.7377049180327869, + "final_counts": { + "POSITIVE": 90, + "NEGATIVE": 32 + }, + "final_distribution": { + "POSITIVE": 0.7377049180327869, + "NEGATIVE": 0.26229508196721313 + } + } }, { "season_code": "202301", @@ -67356,7 +146174,7 @@ "10:30", "11:20", "AKW 200 - Arthur K. Watson Hall 200", - "https:\/\/map.yale.edu\/?id=1910#!m\/560119" + "https://map.yale.edu/?id=1910#!m/560119" ] ], "Wednesday": [ @@ -67364,7 +146182,7 @@ "10:30", "11:20", "AKW 200 - Arthur K. Watson Hall 200", - "https:\/\/map.yale.edu\/?id=1910#!m\/560119" + "https://map.yale.edu/?id=1910#!m/560119" ] ], "Friday": [ @@ -67372,7 +146190,7 @@ "10:30", "11:20", "AKW 200 - Arthur K. Watson Hall 200", - "https:\/\/map.yale.edu\/?id=1910#!m\/560119" + "https://map.yale.edu/?id=1910#!m/560119" ] ] }, @@ -67384,10 +146202,99 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83711\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83711/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9928357005119324, + 0.9988547563552856, + 0.9984784722328186, + 0.9982184767723083 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998874843120575, + 0.9895461201667786, + 0.9989070892333984, + 0.9988958835601807 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988961219787598, + 0.9989251494407654, + 0.9988125562667847, + 0.9989117383956909 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 12 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -67425,7 +146332,7 @@ "13:00", "14:15", "ML 211 - Mason Laboratory 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ], "Thursday": [ @@ -67433,7 +146340,7 @@ "13:00", "14:15", "ML 211 - Mason Laboratory 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ] }, @@ -67445,10 +146352,237 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83713\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83713/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.907383382320404, + 0.907383382320404, + 0.9971690773963928, + 0.9988417029380798, + 0.9988277554512024, + 0.9985535740852356, + 0.9987863898277283, + 0.9987898468971252, + 0.9984562397003174, + 0.9987834095954895, + 0.9937182664871216, + 0.998497486114502, + 0.9954922199249268, + 0.9985069632530212, + 0.9985344409942627, + 0.9986407160758972, + 0.9982744455337524, + 0.9750452637672424, + 0.9955827593803406, + 0.9987426400184631, + 0.9988203644752502, + 0.9961162805557251, + 0.9988030195236206, + 0.9987615346908569, + 0.9984934329986572, + 0.9966208934783936, + 0.9985130429267883, + 0.9986322522163391, + 0.993893027305603, + 0.907383382320404, + 0.9980887770652771, + 0.9842953681945801 + ], + "sentiment_counts": { + "NEGATIVE": 4, + "POSITIVE": 28 + }, + "sentiment_distribution": { + "NEGATIVE": 0.125, + "POSITIVE": 0.875 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9994614720344543, + 0.9985306262969971, + 0.9984424710273743, + 0.9987213015556335, + 0.9984695315361023, + 0.9984753727912903, + 0.9988113641738892, + 0.9909389019012451, + 0.9984545707702637, + 0.9988829493522644, + 0.9954902529716492, + 0.9984145164489746, + 0.9948713779449463, + 0.9989148378372192, + 0.9988449811935425, + 0.9461286067962646, + 0.9978177547454834, + 0.9891263246536255, + 0.9913696050643921, + 0.999495267868042, + 0.9988184571266174, + 0.9987704157829285, + 0.9982796907424927 + ], + "sentiment_counts": { + "NEGATIVE": 6, + "POSITIVE": 17 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2608695652173913, + "POSITIVE": 0.7391304347826086 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7391304347826086 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9974592328071594, + 0.9984689354896545, + 0.9985607266426086, + 0.980525016784668, + 0.9949771761894226, + 0.9987672567367554, + 0.998717188835144, + 0.9974592328071594, + 0.9986518025398254, + 0.995603084564209, + 0.9987892508506775, + 0.9988911747932434, + 0.9980138540267944, + 0.9984650611877441, + 0.9961397051811218, + 0.9987940788269043, + 0.9988344311714172, + 0.9988380074501038, + 0.9988347887992859, + 0.9910387396812439, + 0.9982553124427795, + 0.9986529350280762, + 0.9988539218902588, + 0.9915253520011902, + 0.9958819150924683 + ], + "sentiment_counts": { + "POSITIVE": 21, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.84, + "NEGATIVE": 0.16 + }, + "sentiment_overall": [ + "POSITIVE", + 0.84 + ] + }, + "final_label": "POSITIVE", + "final_count": 66, + "final_proportion": 0.825, + "final_counts": { + "NEGATIVE": 14, + "POSITIVE": 66 + }, + "final_distribution": { + "NEGATIVE": 0.175, + "POSITIVE": 0.825 + } + } }, { "season_code": "202301", @@ -67486,7 +146620,7 @@ "9:00", "10:15", "HLH17 115 - 17 Hillhouse Avenue 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Thursday": [ @@ -67494,7 +146628,7 @@ "9:00", "10:15", "HLH17 115 - 17 Hillhouse Avenue 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -67506,10 +146640,147 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83715\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83715/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981468915939331, + 0.9983643889427185, + 0.9643418192863464, + 0.9988518953323364, + 0.9987505674362183, + 0.9969661831855774, + 0.9959203004837036, + 0.9954120516777039, + 0.9844912886619568, + 0.9855520129203796, + 0.9979497790336609, + 0.9988157749176025 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9166666666666666 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994893074035645, + 0.9923263788223267, + 0.9988272786140442, + 0.9988911747932434, + 0.9992033839225769, + 0.9982967972755432, + 0.9994912147521973, + 0.9988333582878113, + 0.7439072132110596, + 0.9987951517105103 + ], + "sentiment_counts": { + "NEGATIVE": 4, + "POSITIVE": 6 + }, + "sentiment_distribution": { + "NEGATIVE": 0.4, + "POSITIVE": 0.6 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9910515546798706, + 0.9988417029380798, + 0.9974592328071594, + 0.9988659620285034, + 0.9989062547683716, + 0.9988628625869751, + 0.997117280960083, + 0.9793370962142944, + 0.9984614849090576, + 0.9979531764984131, + 0.9988641738891602, + 0.9987351298332214, + 0.9988042116165161 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9230769230769231, + "NEGATIVE": 0.07692307692307693 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9230769230769231 + ] + }, + "final_label": "POSITIVE", + "final_count": 29, + "final_proportion": 0.8285714285714286, + "final_counts": { + "POSITIVE": 29, + "NEGATIVE": 6 + }, + "final_distribution": { + "POSITIVE": 0.8285714285714286, + "NEGATIVE": 0.17142857142857143 + } + } }, { "season_code": "202301", @@ -67547,7 +146818,7 @@ "14:30", "15:45", "WTS A46 - Watson Center 60 Sachem Street A46", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -67555,7 +146826,7 @@ "14:30", "15:45", "WTS A46 - Watson Center 60 Sachem Street A46", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -67567,14 +146838,147 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85955\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85955/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "Prerequisites: mathematical tools for computer science (CPSC 202 or equivalent course), linear algebra (MATH 222\/MATH 225 or equivalent course), calculus (MATH 120 or equivalent course), or permission of the instructor; and basic coding knowledge (e.g., Python).", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986757636070251, + 0.9987218976020813, + 0.9987949132919312, + 0.9984458088874817, + 0.9986482262611389, + 0.961175262928009, + 0.9946640729904175, + 0.9962279796600342, + 0.998799204826355, + 0.9988971948623657, + 0.9978284239768982 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998897910118103, + 0.9989124536514282, + 0.9988877177238464, + 0.9982777833938599, + 0.9986404776573181, + 0.998915433883667, + 0.9988295435905457, + 0.9989311099052429, + 0.9989356398582458, + 0.99872225522995 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988295435905457, + 0.9989038705825806, + 0.9988027811050415, + 0.9989294409751892, + 0.9985154271125793, + 0.9975413084030151, + 0.9988600015640259, + 0.9987894892692566, + 0.9989151954650879, + 0.9988742470741272, + 0.9989234805107117, + 0.9988405108451843 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 32, + "final_proportion": 0.9696969696969697, + "final_counts": { + "POSITIVE": 32, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9696969696969697, + "NEGATIVE": 0.030303030303030304 + } + } + }, + { + "season_code": "202301", + "requirements": "Prerequisites: mathematical tools for computer science (CPSC 202 or equivalent course), linear algebra (MATH 222/MATH 225 or equivalent course), calculus (MATH 120 or equivalent course), or permission of the instructor; and basic coding knowledge (e.g., Python).", "description": "We cover recent advances in machine learning that focus on real-world data. We discuss a wide range of methods and their applications to diverse domains, such as finance, health care, genomics, protein folding, drug discovery, neuroscience, and natural language processing. The seminar is based on a series of lectures by the instructor and guest lecturers, as well as student presentations. The latter are expected to be on recent publications from leading journals and conferences in the field and are followed by discussions. A final project involves the application of a machine-learning method to real-world data.\u00a0Graduate students are required to work on projects, which are optional for undergraduates.", "short_title": "Current Topics in Applied Mac...", "title": "Current Topics in Applied Machine Learning", @@ -67608,7 +147012,7 @@ "11:35", "12:50", "SPL 59 - Sloane Physics Laboratory 59", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ], "Thursday": [ @@ -67616,7 +147020,7 @@ "11:35", "12:50", "SPL 59 - Sloane Physics Laboratory 59", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ] }, @@ -67628,15 +147032,154 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83717\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83717/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9979084730148315, + 0.9870354533195496, + 0.9981561303138733, + 0.995410144329071, + 0.996904194355011, + 0.989195704460144, + 0.9918952584266663, + 0.9986646175384521, + 0.9925947785377502, + 0.9988916516304016 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984270334243774, + 0.9995070695877075, + 0.9985958933830261, + 0.9995044469833374, + 0.9986188411712646, + 0.9952912330627441, + 0.9985841512680054, + 0.9988490343093872, + 0.9969124794006348, + 0.9989069700241089, + 0.9978296160697937, + 0.9982201457023621 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984074234962463, + 0.9995080232620239, + 0.9985790252685547, + 0.9995025396347046, + 0.9957691431045532, + 0.9978427886962891, + 0.994549572467804, + 0.986323356628418, + 0.9992995262145996, + 0.9974592328071594, + 0.9961918592453003, + 0.9989256262779236, + 0.9988786578178406, + 0.998803973197937 + ], + "sentiment_counts": { + "NEGATIVE": 8, + "POSITIVE": 6 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5714285714285714, + "POSITIVE": 0.42857142857142855 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.5714285714285714 + ] + }, + "final_label": "POSITIVE", + "final_count": 24, + "final_proportion": 0.6666666666666666, + "final_counts": { + "POSITIVE": 24, + "NEGATIVE": 12 + }, + "final_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + } + } }, { "season_code": "202301", "requirements": "Prerequisites: CPSC 201 and CPSC 202 or equivalents. Students who do not fit this profile may be allowed to enroll with permission of the instructor.", - "description": "This course introduces students to the interdisciplinary field of human-computer interaction (HCI), with particular focus on human-robot interaction (HRI). The first part of the course covers principles and techniques in the design, development, and evaluation of interactive systems. It provides students with an introduction to UX design and user-centered research. The second part focuses on the emergent filed of HRI and several other nontraditional interfaces, e.g., AR\/VR, tangibles, crowdsourcing. The course is organized as a series of lectures, presentations, a midterm exam, and a term-long group project on designing a new interactive system.", + "description": "This course introduces students to the interdisciplinary field of human-computer interaction (HCI), with particular focus on human-robot interaction (HRI). The first part of the course covers principles and techniques in the design, development, and evaluation of interactive systems. It provides students with an introduction to UX design and user-centered research. The second part focuses on the emergent filed of HRI and several other nontraditional interfaces, e.g., AR/VR, tangibles, crowdsourcing. The course is organized as a series of lectures, presentations, a midterm exam, and a term-long group project on designing a new interactive system.", "short_title": "Introduction to Human-Compute...", "title": "Introduction to Human-Computer Interaction", "school": "GS", @@ -67669,7 +147212,7 @@ "13:00", "14:15", "HQ L02 - Humanities Quadrangle L02", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -67677,22 +147220,443 @@ "13:00", "14:15", "HQ L02 - Humanities Quadrangle L02", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" - ] - ] - }, - "skills": [], - "areas": [], - "flags": [], - "regnotes": "", - "rp_attr": "", - "classnotes": "", - "final_exam": "", - "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83720\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "https://map.yale.edu/?id=1910#!m/563690" + ] + ] + }, + "skills": [], + "areas": [], + "flags": [], + "regnotes": "", + "rp_attr": "", + "classnotes": "", + "final_exam": "", + "course_home_url": "", + "syllabus_url": "https://yale.instructure.com/courses/83720/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984265565872192, + 0.9987093210220337, + 0.9984270334243774, + 0.9983744621276855, + 0.9986514449119568, + 0.9985331296920776, + 0.9957870841026306, + 0.9984338879585266, + 0.9989060163497925, + 0.9772072434425354, + 0.9987793564796448, + 0.9988786578178406, + 0.9988411068916321, + 0.9987624883651733, + 0.9988503456115723, + 0.9989097118377686, + 0.998849630355835, + 0.9987598657608032, + 0.998863935470581, + 0.9954679012298584, + 0.9984052777290344, + 0.9979550838470459, + 0.9986155033111572, + 0.9980425834655762, + 0.9991528987884521, + 0.9986003041267395, + 0.9986698627471924, + 0.9986850619316101, + 0.998445451259613, + 0.9979144930839539, + 0.9994995594024658, + 0.9987154006958008, + 0.9885134100914001, + 0.9989136457443237, + 0.9989217519760132, + 0.9988102912902832, + 0.9987094402313232, + 0.9980383515357971, + 0.9985917210578918, + 0.996127188205719, + 0.9988221526145935, + 0.9987834095954895, + 0.9951196908950806, + 0.9989099502563477, + 0.9966349005699158, + 0.9934870004653931, + 0.9980053305625916, + 0.9987744688987732, + 0.9988840222358704, + 0.9987884163856506, + 0.9988215565681458, + 0.9985606074333191, + 0.9987607002258301, + 0.9985913634300232, + 0.9986156225204468 + ], + "sentiment_counts": { + "POSITIVE": 52, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.9454545454545454, + "NEGATIVE": 0.05454545454545454 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9454545454545454 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9973651766777039, + 0.9969701766967773, + 0.9988922476768494, + 0.994186282157898, + 0.9976574182510376, + 0.9940717816352844, + 0.995718777179718, + 0.998868465423584, + 0.998918890953064, + 0.9990252256393433, + 0.9989136457443237, + 0.9925094842910767, + 0.9987672567367554, + 0.9992973804473877, + 0.9955912828445435, + 0.9989336133003235, + 0.998484194278717, + 0.999000608921051, + 0.9989277720451355, + 0.998654842376709, + 0.9994887113571167, + 0.9989094734191895, + 0.9984331727027893, + 0.9989306330680847, + 0.9994571805000305, + 0.9988895058631897, + 0.9985318183898926, + 0.9994981288909912, + 0.9987962245941162, + 0.9995089769363403, + 0.998805046081543, + 0.9920084476470947, + 0.9989325404167175, + 0.9987025260925293, + 0.9986100196838379, + 0.996209979057312, + 0.9982635378837585, + 0.9968360662460327, + 0.9988692402839661, + 0.9994764924049377, + 0.9988429546356201, + 0.9988391995429993, + 0.9983659386634827, + 0.9988571405410767, + 0.9955911636352539, + 0.9988538026809692, + 0.9982787370681763, + 0.9987389445304871, + 0.9986881613731384, + 0.8109849691390991, + 0.999494194984436, + 0.998835027217865, + 0.998522937297821, + 0.9968177080154419, + 0.9988987445831299, + 0.9989185333251953, + 0.9946960210800171, + 0.9994882345199585, + 0.9989000558853149, + 0.9987908005714417, + 0.9989297986030579, + 0.9983949065208435, + 0.9988812804222107 + ], + "sentiment_counts": { + "POSITIVE": 45, + "NEGATIVE": 18 + }, + "sentiment_distribution": { + "POSITIVE": 0.7142857142857143, + "NEGATIVE": 0.2857142857142857 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7142857142857143 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986213445663452, + 0.9989363551139832, + 0.9995044469833374, + 0.9995105266571045, + 0.9988694787025452, + 0.9988877177238464, + 0.9987369179725647, + 0.9987015724182129, + 0.9774876236915588, + 0.9873670339584351, + 0.9987353682518005, + 0.9981922507286072, + 0.9951539039611816, + 0.9954729676246643, + 0.9988970756530762, + 0.9979152083396912, + 0.9987034797668457, + 0.9988541603088379, + 0.9976826906204224, + 0.9988728165626526, + 0.9988908171653748, + 0.9988521337509155, + 0.9986507296562195, + 0.9995036125183105, + 0.9988429546356201, + 0.999430239200592, + 0.9465354681015015, + 0.9972710013389587, + 0.9870887398719788, + 0.9988265633583069, + 0.9973472356796265, + 0.9988773465156555, + 0.9995057582855225, + 0.9934906959533691, + 0.997117280960083, + 0.9960278272628784, + 0.9987030029296875, + 0.9974592328071594, + 0.9988697171211243, + 0.9987748265266418, + 0.9961557984352112, + 0.9987849593162537, + 0.998906135559082, + 0.9953516721725464, + 0.9988760352134705, + 0.9983030557632446, + 0.997117280960083, + 0.9989373087882996, + 0.9988872408866882, + 0.9974592328071594, + 0.9988906979560852, + 0.9988741278648376, + 0.998630702495575, + 0.9910262227058411, + 0.9989038705825806, + 0.9988791346549988, + 0.998923122882843, + 0.9984824061393738, + 0.9989334940910339 + ], + "sentiment_counts": { + "POSITIVE": 48, + "NEGATIVE": 11 + }, + "sentiment_distribution": { + "POSITIVE": 0.8135593220338984, + "NEGATIVE": 0.1864406779661017 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8135593220338984 + ] + }, + "final_label": "POSITIVE", + "final_count": 145, + "final_proportion": 0.8192090395480226, + "final_counts": { + "POSITIVE": 145, + "NEGATIVE": 32 + }, + "final_distribution": { + "POSITIVE": 0.8192090395480226, + "NEGATIVE": 0.1807909604519774 + } + } }, { "season_code": "202301", @@ -67730,7 +147694,7 @@ "13:00", "14:15", "ML 104 - Mason Laboratory 104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ], "Wednesday": [ @@ -67738,7 +147702,7 @@ "13:00", "14:15", "ML 104 - Mason Laboratory 104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ] }, @@ -67750,10 +147714,103 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85956\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85956/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989000558853149, + 0.9984434247016907, + 0.9947927594184875, + 0.9988549947738647, + 0.9987229704856873 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998928964138031, + 0.9955310225486755, + 0.9989148378372192, + 0.9988883137702942 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989219903945923, + 0.9975071549415588, + 0.9989224672317505, + 0.9989308714866638 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 0.9230769230769231, + "final_counts": { + "POSITIVE": 12, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9230769230769231, + "NEGATIVE": 0.07692307692307693 + } + } }, { "season_code": "202301", @@ -67791,7 +147848,7 @@ "11:35", "12:50", "WTS A60 - Watson Center 60 Sachem Street A60", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -67799,7 +147856,7 @@ "11:35", "12:50", "WTS A60 - Watson Center 60 Sachem Street A60", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -67811,14 +147868,171 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85957\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85957/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "Prerequisite: A course in algorithms (CPSC 365 or 366) and a course in probability theory (MATH\/S&DS 241). A course in algorithmic game theory (CPSC 455\/555) is helpful but not required.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.999083399772644, + 0.9968460202217102, + 0.9989124536514282, + 0.9988278746604919, + 0.9985485672950745, + 0.9988155364990234, + 0.9987910389900208, + 0.9987680315971375, + 0.997334897518158, + 0.9942886829376221, + 0.9868183135986328, + 0.9897164702415466, + 0.998794674873352, + 0.9892114400863647, + 0.9986966252326965, + 0.9987587928771973, + 0.998719334602356 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 15 + }, + "sentiment_distribution": { + "NEGATIVE": 0.11764705882352941, + "POSITIVE": 0.8823529411764706 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8823529411764706 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9929167032241821, + 0.9994139671325684, + 0.9989181756973267, + 0.9985602498054504, + 0.9986677169799805, + 0.9988465309143066, + 0.9989244341850281, + 0.9988847374916077, + 0.9950687885284424, + 0.9870551824569702, + 0.998931348323822, + 0.9988282322883606, + 0.9988332390785217 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 10 + }, + "sentiment_distribution": { + "NEGATIVE": 0.23076923076923078, + "POSITIVE": 0.7692307692307693 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7692307692307693 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987221360206604, + 0.9968061447143555, + 0.9988676309585571, + 0.9988487958908081, + 0.988810658454895, + 0.9988429546356201, + 0.9750826954841614, + 0.998571515083313, + 0.997117280960083, + 0.9989194869995117, + 0.9988563060760498, + 0.9985879063606262, + 0.9989344477653503, + 0.9982098340988159, + 0.9969934225082397 + ], + "sentiment_counts": { + "POSITIVE": 15, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 40, + "final_proportion": 0.8888888888888888, + "final_counts": { + "NEGATIVE": 5, + "POSITIVE": 40 + }, + "final_distribution": { + "NEGATIVE": 0.1111111111111111, + "POSITIVE": 0.8888888888888888 + } + } + }, + { + "season_code": "202301", + "requirements": "Prerequisite: A course in algorithms (CPSC 365 or 366) and a course in probability theory (MATH/S&DS 241). A course in algorithmic game theory (CPSC 455/555) is helpful but not required.", "description": "The course focuses on algorithms and the complexity of equilibrium computation as well as its connection with learning theory and optimization. As many recent machine learning approaches have moved from an optimization perspective to an \"equilibration\" perspective, where a good model is framed as the equilibrium of a game. The intersection of game theory, learning theory, and optimization is becoming increasingly relevant. The goal of the course is to cover the fundamentals and bring students to the frontier of this active research area.", "short_title": "Topics in Algorithmic Game Th...", "title": "Topics in Algorithmic Game Theory", @@ -67851,7 +148065,7 @@ "13:30", "15:20", "CO493 106 - 493 College Street 106", - "https:\/\/map.yale.edu\/?id=1910#!m\/560001" + "https://map.yale.edu/?id=1910#!m/560001" ] ] }, @@ -67863,10 +148077,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85451\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85451/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -67904,7 +148146,7 @@ "14:30", "15:45", "AKW 200 - Arthur K. Watson Hall 200", - "https:\/\/map.yale.edu\/?id=1910#!m\/560119" + "https://map.yale.edu/?id=1910#!m/560119" ] ], "Wednesday": [ @@ -67912,7 +148154,7 @@ "14:30", "15:45", "AKW 200 - Arthur K. Watson Hall 200", - "https:\/\/map.yale.edu\/?id=1910#!m\/560119" + "https://map.yale.edu/?id=1910#!m/560119" ] ] }, @@ -67924,15 +148166,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83727\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83727/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "Prerequisties: a rigorous algorithms course (CPSC 366 or equivalent), and an advanced probability course (AMTH 420, S&DS 351, S&DS 400, or equivalent).", - "description": "This course presents a selection of advanced topics of recent interest in probability theory and their applications to the theory of algorithms and computational complexity. We try to cover a wide range of techniques and ideas from probability; while we do not have time to go into great depth on any particular one, our goal is to put students into contact with many useful and practical methods for analyzing computational problems involving randomness. The main unifying theme is understanding asymptotic methods in probability theory for deriving the approximate behavior of large random objects, often using a combination of combinatorics and analysis. Some manifestations of this idea that we aim to touch upon are large deviations theory, random matrix theory and free probability, the replica and\/or cavity methods from statistical physics, and notions of local weak convergence.", + "description": "This course presents a selection of advanced topics of recent interest in probability theory and their applications to the theory of algorithms and computational complexity. We try to cover a wide range of techniques and ideas from probability; while we do not have time to go into great depth on any particular one, our goal is to put students into contact with many useful and practical methods for analyzing computational problems involving randomness. The main unifying theme is understanding asymptotic methods in probability theory for deriving the approximate behavior of large random objects, often using a combination of combinatorics and analysis. Some manifestations of this idea that we aim to touch upon are large deviations theory, random matrix theory and free probability, the replica and/or cavity methods from statistical physics, and notions of local weak convergence.", "short_title": "Modern Probability in Theoret...", "title": "Modern Probability in Theoretical Computer Science", "school": "GS", @@ -67964,7 +148234,7 @@ "11:35", "12:50", "DL 120 - Dunham Laboratory 120", - "https:\/\/map.yale.edu\/?id=1910#!m\/560005" + "https://map.yale.edu/?id=1910#!m/560005" ] ], "Thursday": [ @@ -67972,7 +148242,7 @@ "11:35", "12:50", "DL 120 - Dunham Laboratory 120", - "https:\/\/map.yale.edu\/?id=1910#!m\/560005" + "https://map.yale.edu/?id=1910#!m/560005" ] ] }, @@ -67984,14 +148254,42 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86032\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86032/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", - "requirements": "Prerequisites: This course is aimed at Ph.D. and M.S. students and, with the permission of the instructor, undergraduates with a strong background in computer security and cryptography. In particular, students must have successfully passed a computer security course like CPSC 413 and a cryptography course like CPSC 467. Exposure to distributed systems (e.g., CPSC 465\/565) is useful but not required.", + "requirements": "Prerequisites: This course is aimed at Ph.D. and M.S. students and, with the permission of the instructor, undergraduates with a strong background in computer security and cryptography. In particular, students must have successfully passed a computer security course like CPSC 413 and a cryptography course like CPSC 467. Exposure to distributed systems (e.g., CPSC 465/565) is useful but not required.", "description": "Recently popularized by blockchains, decentralization is a means to achieving strong security, privacy, and resiliency by removing single point failures. This course focuses on the techniques underpinning real-world decentralized systems. In particular, topics such as blockchains security and scalability, trusted computing (such as Trusted Execution Environments), and anonymous communication (such as secure messaging protocols) are covered. Students are asked to read and present research papers from top-tier computer security and applied cryptography venues. Furthermore, students have to undertake a term-long research project on emerging security problems in real-world decentralized systems.", "short_title": "Secure Decentralized Systems", "title": "Secure Decentralized Systems", @@ -68024,7 +148322,7 @@ "13:00", "14:15", "WTS B31 - Watson Center 60 Sachem Street B31", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -68032,7 +148330,7 @@ "13:00", "14:15", "WTS B31 - Watson Center 60 Sachem Street B31", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -68044,10 +148342,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85967\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85967/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -68084,12 +148410,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", - "requirements": "Prerequisites:\u00a0An understanding of the mathematical tools used in computer science.\u00a0At least one of the following:\u00a0CPSC 477\/577 Natural Language Processing,\u00a0CPSC 452 Deep Learning Theory and Applications,\u00a0CPSC 552 Deep Learning Theory and Applications,\u00a0CPSC 677 Advanced NLP.\u00a0Students from other relevant departments such as statistics, linguistics, neuroscience, and biomedical science are welcome to participate but please contact the instructor for approval.", - "description": "Teaching machines to generate and understand human language has been one of the prominent frontiers in AI research. In the past few years there has been dramatic advances in the field of natural language processings mostly due to advances in deep learning methods.\u00a0The power of these methods combined with massive self-supervised training has resulted in strong language models that can solve tasks that once were deemed impossible. This includes solving a classification task without any training data, generating a short article about a given topic, producing a high quality summary of a given text, generating an explanation for model predictions, etc.\u00a0In this course, we read and discuss the latest language modeling and representation learning methods in natural language processing. This includes prominent deep learning architectures including transformers, methods of self-supervised learning and transfer learning, contrastive learning, large language models and the power of scale, emergent properties of large language models, parameter efficient fine-tuning methods, learning from few training examples and task instructions, methods for making large language models more efficient, applications to other fields, and other recent topics in contemporary NLP.\u00a0Students must have experience with machine learning, including necessary mathematical background. Students should also feel comfortable with implementing basic machine learning algorithms and understanding\/running open source machine learning code. Students should also have experience with reading machine learning papers and developing a decent understanding of the main concepts\/ideas presented in the paper.", + "requirements": "Prerequisites:\u00a0An understanding of the mathematical tools used in computer science.\u00a0At least one of the following:\u00a0CPSC 477/577 Natural Language Processing,\u00a0CPSC 452 Deep Learning Theory and Applications,\u00a0CPSC 552 Deep Learning Theory and Applications,\u00a0CPSC 677 Advanced NLP.\u00a0Students from other relevant departments such as statistics, linguistics, neuroscience, and biomedical science are welcome to participate but please contact the instructor for approval.", + "description": "Teaching machines to generate and understand human language has been one of the prominent frontiers in AI research. In the past few years there has been dramatic advances in the field of natural language processings mostly due to advances in deep learning methods.\u00a0The power of these methods combined with massive self-supervised training has resulted in strong language models that can solve tasks that once were deemed impossible. This includes solving a classification task without any training data, generating a short article about a given topic, producing a high quality summary of a given text, generating an explanation for model predictions, etc.\u00a0In this course, we read and discuss the latest language modeling and representation learning methods in natural language processing. This includes prominent deep learning architectures including transformers, methods of self-supervised learning and transfer learning, contrastive learning, large language models and the power of scale, emergent properties of large language models, parameter efficient fine-tuning methods, learning from few training examples and task instructions, methods for making large language models more efficient, applications to other fields, and other recent topics in contemporary NLP.\u00a0Students must have experience with machine learning, including necessary mathematical background. Students should also feel comfortable with implementing basic machine learning algorithms and understanding/running open source machine learning code. Students should also have experience with reading machine learning papers and developing a decent understanding of the main concepts/ideas presented in the paper.", "short_title": "Topics in Natural Language Pr...", "title": "Topics in Natural Language Processing", "school": "GS", @@ -68121,7 +148475,7 @@ "14:30", "15:45", "WLH 120 - William L. Harkness Hall 120", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -68129,7 +148483,7 @@ "14:30", "15:45", "WLH 120 - William L. Harkness Hall 120", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -68141,10 +148495,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85452\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85452/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -68181,7 +148563,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -68218,7 +148628,7 @@ "13:00", "14:15", "AKW 200 - Arthur K. Watson Hall 200", - "https:\/\/map.yale.edu\/?id=1910#!m\/560119" + "https://map.yale.edu/?id=1910#!m/560119" ] ], "Thursday": [ @@ -68226,7 +148636,7 @@ "13:00", "14:15", "AKW 200 - Arthur K. Watson Hall 200", - "https:\/\/map.yale.edu\/?id=1910#!m\/560119" + "https://map.yale.edu/?id=1910#!m/560119" ] ] }, @@ -68238,10 +148648,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83730\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83730/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -68278,7 +148716,7 @@ "11:35", "12:50", "WTS B60 - Watson Center 60 Sachem Street B60", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -68286,7 +148724,7 @@ "11:35", "12:50", "WTS B60 - Watson Center 60 Sachem Street B60", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -68298,10 +148736,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85453\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85453/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -68338,7 +148804,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -68375,7 +148869,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -68412,7 +148934,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -68455,7 +149005,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -68500,7 +149078,7 @@ "13:00", "14:15", "BASS 305 - Bass Center 305", - "https:\/\/map.yale.edu\/?id=1910#!m\/560102" + "https://map.yale.edu/?id=1910#!m/560102" ] ], "Wednesday": [ @@ -68508,7 +149086,7 @@ "13:00", "14:15", "BASS 305 - Bass Center 305", - "https:\/\/map.yale.edu\/?id=1910#!m\/560102" + "https://map.yale.edu/?id=1910#!m/560102" ] ] }, @@ -68524,10 +149102,225 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84447\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84447/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9970090985298157, + 0.9988558292388916, + 0.998725950717926, + 0.9988222718238831, + 0.9770744442939758, + 0.9983933568000793, + 0.9988370537757874, + 0.9987943172454834, + 0.9988017082214355, + 0.9986467957496643, + 0.9897382855415344, + 0.9848324656486511, + 0.9954740405082703, + 0.9987924098968506, + 0.9988179802894592, + 0.9761744737625122, + 0.9987727999687195, + 0.9987554550170898, + 0.9943423271179199, + 0.9987911581993103, + 0.9987240433692932, + 0.9988112449645996 + ], + "sentiment_counts": { + "POSITIVE": 21, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9545454545454546, + "NEGATIVE": 0.045454545454545456 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9545454545454546 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988459348678589, + 0.9987896084785461, + 0.9988797307014465, + 0.9958059787750244, + 0.9894225001335144, + 0.9994359612464905, + 0.9979944229125977, + 0.998843789100647, + 0.9988779425621033, + 0.9994478821754456, + 0.9994989633560181, + 0.9789282083511353, + 0.9994825124740601, + 0.9988343119621277, + 0.9959596991539001, + 0.9974040389060974, + 0.9970256686210632, + 0.9994776844978333, + 0.976995587348938, + 0.9994934797286987, + 0.9966699481010437, + 0.9995031356811523, + 0.9995009899139404, + 0.9981524348258972, + 0.9974574446678162, + 0.9989149570465088 + ], + "sentiment_counts": { + "POSITIVE": 15, + "NEGATIVE": 11 + }, + "sentiment_distribution": { + "POSITIVE": 0.5769230769230769, + "NEGATIVE": 0.4230769230769231 + }, + "sentiment_overall": [ + "POSITIVE", + 0.5769230769230769 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998795747756958, + 0.9989169836044312, + 0.9988184571266174, + 0.998866081237793, + 0.999496340751648, + 0.9985204339027405, + 0.9988468885421753, + 0.9989088773727417, + 0.9988956451416016, + 0.9987001419067383, + 0.9988686442375183, + 0.998552143573761, + 0.9929360747337341, + 0.9988508224487305, + 0.9988837838172913, + 0.9963728189468384, + 0.9917622804641724, + 0.9985169768333435, + 0.9851395487785339, + 0.9989237189292908, + 0.9962260723114014, + 0.9862384796142578, + 0.9989376664161682, + 0.9995100498199463, + 0.9994924068450928, + 0.9989180564880371 + ], + "sentiment_counts": { + "POSITIVE": 20, + "NEGATIVE": 6 + }, + "sentiment_distribution": { + "POSITIVE": 0.7692307692307693, + "NEGATIVE": 0.23076923076923078 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7692307692307693 + ] + }, + "final_label": "POSITIVE", + "final_count": 56, + "final_proportion": 0.7567567567567568, + "final_counts": { + "POSITIVE": 56, + "NEGATIVE": 18 + }, + "final_distribution": { + "POSITIVE": 0.7567567567567568, + "NEGATIVE": 0.24324324324324326 + } + } }, { "season_code": "202301", @@ -68564,7 +149357,7 @@ "11:00", "12:50", "CO493 103 - 493 College Street 103", - "https:\/\/map.yale.edu\/?id=1910#!m\/560001" + "https://map.yale.edu/?id=1910#!m/560001" ] ] }, @@ -68576,10 +149369,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86272\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86272/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -68616,7 +149437,7 @@ "9:25", "11:15", "WLH 203 - William L. Harkness Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -68630,14 +149451,91 @@ "classnotes": "Students must request permission from the instructor through Yale Course Search to enroll. Please state briefly (under 200 words) your interest in this course and any relevant experience. Also, six spaces in this seminar are reserved for students in the sponsoring college, so please indicate your residential college. Falsifying this information will be subject to disciplinary action.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85194\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85194/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": true - }, - { - "season_code": "202301", - "requirements": "Instructor requires\u00a01,000-character description of a provisional area of research\/reporting with request to enroll.\u00a0Preference is given to Berkeley College students.", + "colsem": true, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988250136375427, + 0.9988177418708801 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987232089042664, + 0.9988502264022827 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988454580307007, + 0.9985325336456299 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 6 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } + }, + { + "season_code": "202301", + "requirements": "Instructor requires\u00a01,000-character description of a provisional area of research/reporting with request to enroll.\u00a0Preference is given to Berkeley College students.", "description": "The act of reporting out a story carries very specific, sometimes romantic associations: parachuting into a situation, asking a series of questions, and then telling what happened concisely and objectively. This journalism course explores a different kind of reporting in which the writer reports on a topic in depth over an extended period time, using both personal experience and the experiences of others to flesh out a world. Students study prominent examples of immersion journalism in different decades and areas including race, poverty, culture, and war. We discuss the contemporary publishing apparatus and practice crafting nonfiction proposals. We talk about some of the most difficult questions such as the line between reporting and exploitation, the limits of writing about different life experiences, how profit impacts relationships, and above all how empathy can elevate (or negate) storytelling. Concurrently, students develop their own narrative nonfiction writing through weekly assignments that culminate in a longform work.", "short_title": "Craft, Style, and Empathy in ...", "title": "Craft, Style, and Empathy in Immersive Journalism", @@ -68670,7 +149568,7 @@ "13:30", "15:20", "WLH 002 - William L. Harkness Hall 002", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -68682,10 +149580,99 @@ "classnotes": "Students must request permission from the instructor through Yale Course Search to enroll. Please state briefly (under 200 words) your interest in this course and any relevant experience. Also, six spaces in this seminar are reserved for students in the sponsoring college, so please indicate your residential college. Falsifying this information will be subject to disciplinary action.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85882\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85882/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": true + "colsem": true, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988884329795837, + 0.9989060163497925, + 0.9986037611961365, + 0.9986044764518738 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989075660705566, + 0.9989252686500549, + 0.9989117383956909, + 0.998874843120575 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989261031150818, + 0.9989209175109863, + 0.9989287257194519, + 0.9988911747932434 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 12 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -68722,7 +149709,7 @@ "9:25", "11:15", "LC 104 - Linsly-Chittenden Hall 104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -68734,10 +149721,119 @@ "classnotes": "Students must request permission from the instructor through Yale Course Search to enroll. Please state briefly (under 200 words) your interest in this course and any relevant experience. Also, six spaces in this seminar are reserved for students in the sponsoring college, so please indicate your residential college. Falsifying this information will be subject to disciplinary action.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85172\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85172/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": true + "colsem": true, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9968603849411011, + 0.9986118078231812, + 0.9989194869995117, + 0.9987552165985107, + 0.9986771941184998, + 0.9989204406738281, + 0.9983592629432678 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989101886749268, + 0.9281086325645447, + 0.9989014863967896, + 0.9743798971176147, + 0.9989323019981384, + 0.9989185333251953 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988572597503662, + 0.9924852252006531, + 0.9978826642036438, + 0.9979604482650757, + 0.9981436729431152, + 0.9989256262779236, + 0.998849630355835, + 0.9982469081878662 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 0.9523809523809523, + "final_counts": { + "POSITIVE": 20, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9523809523809523, + "NEGATIVE": 0.047619047619047616 + } + } }, { "season_code": "202301", @@ -68774,7 +149870,7 @@ "15:30", "17:20", "LC 103 - Linsly-Chittenden Hall 103", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -68786,10 +149882,107 @@ "classnotes": "Students must request permission from the instructor through Yale Course Search to enroll. Please state briefly (under 200 words) your interest in this course and any relevant experience. Also, six spaces in this seminar are reserved for students in the sponsoring college, so please indicate your residential college. Falsifying this information will be subject to disciplinary action.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85883\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85883/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": true + "colsem": true, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9970707893371582, + 0.9951453804969788, + 0.9988023042678833, + 0.9946784973144531 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.998748779296875, + 0.9987213015556335, + 0.9987916350364685, + 0.9987732768058777, + 0.9994840621948242 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.6, + "POSITIVE": 0.4 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.6 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9995087385177612, + 0.9987521171569824, + 0.9989099502563477, + 0.9988586902618408, + 0.9989333748817444, + 0.9988911747932434 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 4 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 0.6666666666666666, + "final_counts": { + "POSITIVE": 10, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + } + } }, { "season_code": "202301", @@ -68832,7 +150025,94 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984856247901917, + 0.9755088090896606, + 0.9965119957923889 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9994840621948242, + 0.9927264451980591, + 0.9960042834281921, + 0.995612382888794 + ], + "sentiment_counts": { + "NEGATIVE": 4, + "POSITIVE": 0 + }, + "sentiment_distribution": { + "NEGATIVE": 1.0, + "POSITIVE": 0.0 + }, + "sentiment_overall": [ + "NEGATIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.997962236404419, + 0.9958409667015076, + 0.999487042427063 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "neutral", + "final_count": 0.5, + "final_proportion": 0.5, + "final_counts": { + "POSITIVE": 5, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + } + } }, { "season_code": "202301", @@ -68869,7 +150149,7 @@ "13:30", "15:20", "WLH 112 - William L. Harkness Hall 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -68878,13 +150158,162 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Students must request permission from the instructor through Yale Course Search to enroll. Please state briefly (fewer than 200 words) your interest in this course. In so doing, please also answer the following questions:\nWhat is your major?\nWith which Disney character do you identify most (or least)? Why?\nTo which Disney-related quote do you most relate (the quote itself is not included in word count)? Why? If you need inspiration, feel free to visit https:\/\/parade.com\/951753\/alexandra-hurtado\/disney-quotes\/\nAlso, six spaces in this seminar are reserved for students in the sponsoring college, so please indicate your residential college. Falsifying this information will be subject to disciplinary action\n", + "classnotes": "Students must request permission from the instructor through Yale Course Search to enroll. Please state briefly (fewer than 200 words) your interest in this course. In so doing, please also answer the following questions:\nWhat is your major?\nWith which Disney character do you identify most (or least)? Why?\nTo which Disney-related quote do you most relate (the quote itself is not included in word count)? Why? If you need inspiration, feel free to visit https://parade.com/951753/alexandra-hurtado/disney-quotes/\nAlso, six spaces in this seminar are reserved for students in the sponsoring college, so please indicate your residential college. Falsifying this information will be subject to disciplinary action\n", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85884\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85884/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": true + "colsem": true, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988099336624146, + 0.998872697353363, + 0.9985938668251038, + 0.9988584518432617, + 0.9988051652908325, + 0.9988297820091248, + 0.9988641738891602, + 0.9989244341850281, + 0.9988879561424255, + 0.9989351630210876, + 0.9988538026809692, + 0.9988295435905457, + 0.9989367127418518 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987688660621643, + 0.9989309906959534, + 0.998742401599884, + 0.9989173412322998, + 0.9988983869552612, + 0.9989343285560608, + 0.9987117052078247, + 0.9989101886749268, + 0.9989176988601685, + 0.9989295601844788, + 0.9989343285560608, + 0.9989239573478699, + 0.9989221096038818 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9961589574813843, + 0.9989354014396667, + 0.9989340901374817, + 0.9980454444885254, + 0.9989328980445862, + 0.9989272952079773, + 0.9989376664161682, + 0.9988530874252319, + 0.998802661895752, + 0.9989342093467712, + 0.9986681938171387, + 0.9989334940910339, + 0.9987972974777222, + 0.9989235997200012, + 0.9988648891448975, + 0.998934805393219 + ], + "sentiment_counts": { + "POSITIVE": 16, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 42, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 42 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -68921,7 +150350,7 @@ "13:30", "15:20", "CO493 102 - 493 College Street 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/560001" + "https://map.yale.edu/?id=1910#!m/560001" ] ] }, @@ -68933,10 +150362,38 @@ "classnotes": "Students must request permission from the instructor through Yale Course Search to enroll. Please state briefly (under 200 words) your interest in this course and any relevant experience. Also, six spaces in this seminar are reserved for students in the sponsoring college, so please indicate your residential college. Falsifying this information will be subject to disciplinary action.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85885\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": true + "syllabus_url": "https://yale.instructure.com/courses/85885/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": true, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -68973,7 +150430,7 @@ "19:00", "20:50", "WLH 112 - William L. Harkness Hall 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -68985,10 +150442,125 @@ "classnotes": "Students must request permission from the instructor through Yale Course Search to enroll. Please state briefly (under 200 words) your interest in this course and any relevant experience. Also, six spaces in this seminar are reserved for students in the sponsoring college, so please indicate your residential college. Falsifying this information will be subject to disciplinary action.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85173\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85173/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": true + "colsem": true, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987793564796448, + 0.9984322190284729, + 0.9988903403282166, + 0.9986974596977234, + 0.998809814453125, + 0.998914361000061, + 0.998814582824707, + 0.9989045858383179 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988130331039429, + 0.9988601207733154, + 0.9987174272537231, + 0.9989375472068787, + 0.9988839030265808, + 0.9982951283454895, + 0.9989109039306641 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.8762609958648682, + 0.9976049661636353, + 0.9987747073173523, + 0.9986359477043152, + 0.9988685846328735, + 0.998931348323822, + 0.9989314675331116, + 0.9984096884727478, + 0.9989013671875, + 0.9987706542015076 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 25, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 25 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -69028,7 +150600,7 @@ "13:30", "15:20", "WLH 203 - William L. Harkness Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -69039,11 +150611,124 @@ "rp_attr": "", "classnotes": "Students must request permission from the instructor through Yale Course Search to enroll. Please state briefly (under 200 words) your interest in this course and any relevant experience. Also, six spaces in this seminar are reserved for students in the sponsoring college, so please indicate your residential college. Falsifying this information will be subject to disciplinary action.", "final_exam": "No regular final examination", - "course_home_url": "https:\/\/yale.instructure.com\/courses\/85174", + "course_home_url": "https://yale.instructure.com/courses/85174", "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": true + "colsem": true, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986699819564819, + 0.9986141920089722, + 0.9988836646080017, + 0.9989182949066162, + 0.9989161491394043, + 0.9988172054290771, + 0.9986566305160522, + 0.9989157915115356 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998813271522522, + 0.9989185333251953, + 0.9155598282814026, + 0.9989388585090637, + 0.9989331364631653, + 0.9989062547683716, + 0.9974462985992432, + 0.9989266991615295 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989035129547119, + 0.9989150762557983, + 0.9989287257194519, + 0.9984859824180603, + 0.998914361000061, + 0.9978964328765869, + 0.9989187717437744 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "final_label": "POSITIVE", + "final_count": 21, + "final_proportion": 0.9130434782608695, + "final_counts": { + "POSITIVE": 21, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9130434782608695, + "NEGATIVE": 0.08695652173913043 + } + } }, { "season_code": "202301", @@ -69080,7 +150765,7 @@ "13:00", "14:15", "WALL81 301 - 81 Wall Street 301", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ], "Wednesday": [ @@ -69088,7 +150773,7 @@ "13:00", "14:15", "WALL81 301 - 81 Wall Street 301", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -69100,10 +150785,103 @@ "classnotes": "Students must request permission from the instructor through Yale Course Search to enroll. Please state briefly (under 200 words) your interest in this course and any relevant experience. Also, six spaces in this seminar are reserved for students in the sponsoring college, so please indicate your residential college. Falsifying this information will be subject to disciplinary action.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85175\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85175/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": true + "colsem": true, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985951781272888, + 0.9986547231674194, + 0.9987651109695435, + 0.9988528490066528 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989901185035706, + 0.9993829727172852, + 0.998781144618988, + 0.9988526105880737 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994994401931763, + 0.9988530874252319, + 0.9988534450531006, + 0.9988252520561218, + 0.9988937973976135 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 4 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2, + "POSITIVE": 0.8 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 0.7692307692307693, + "final_counts": { + "POSITIVE": 10, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.7692307692307693, + "NEGATIVE": 0.23076923076923078 + } + } }, { "season_code": "202301", @@ -69140,7 +150918,7 @@ "13:30", "15:20", "WLH 011 - William L. Harkness Hall 011", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -69152,10 +150930,111 @@ "classnotes": "Students must request permission from the instructor through Yale Course Search to enroll. Please state briefly (under 200 words) your interest in this course and any relevant experience. Also, six spaces in this seminar are reserved for students in the sponsoring college, so please indicate your residential college. Falsifying this information will be subject to disciplinary action.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85886\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85886/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": true + "colsem": true, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987350106239319, + 0.9989109039306641, + 0.9988552331924438, + 0.998696506023407, + 0.9989258646965027 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988553524017334, + 0.9989073276519775, + 0.9989173412322998, + 0.9989196062088013, + 0.9988034963607788, + 0.9989262223243713 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988572597503662, + 0.9989356398582458, + 0.9987742304801941, + 0.9988465309143066, + 0.998807430267334, + 0.9989305138587952, + 0.9988976716995239 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 18 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -69192,7 +151071,7 @@ "19:00", "20:50", "LC 105 - Linsly-Chittenden Hall 105", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -69204,10 +151083,145 @@ "classnotes": "Students must request permission from the instructor through Yale Course Search to enroll. Please state briefly (under 200 words) your interest in this course and any relevant experience. Also, six spaces in this seminar are reserved for students in the sponsoring college, so please indicate your residential college. Falsifying this information will be subject to disciplinary action.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85887\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": true + "syllabus_url": "https://yale.instructure.com/courses/85887/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": true, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989050626754761, + 0.9988119602203369, + 0.9888370037078857, + 0.9972303509712219, + 0.9988054037094116, + 0.9986891150474548, + 0.9987130165100098, + 0.9985187649726868, + 0.9986523985862732, + 0.9979336261749268, + 0.9977391958236694 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987730383872986, + 0.9960498213768005, + 0.998896598815918, + 0.9989218711853027, + 0.9976016879081726, + 0.9988295435905457, + 0.9987214207649231, + 0.9994779229164124, + 0.9987267851829529, + 0.9912213087081909, + 0.9988957643508911 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8181818181818182, + "NEGATIVE": 0.18181818181818182 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8181818181818182 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998809814453125, + 0.9987775683403015, + 0.9982553124427795, + 0.9981486797332764, + 0.9988614320755005, + 0.7100540995597839, + 0.9990692734718323, + 0.9978885054588318, + 0.998923122882843, + 0.9995006322860718, + 0.9958844780921936, + 0.9989249110221863 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 29, + "final_proportion": 0.8529411764705882, + "final_counts": { + "POSITIVE": 29, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.8529411764705882, + "NEGATIVE": 0.14705882352941177 + } + } }, { "season_code": "202301", @@ -69244,7 +151258,7 @@ "13:30", "15:20", "LC 208 - Linsly-Chittenden Hall 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -69258,10 +151272,115 @@ "classnotes": "Students must request permission from the instructor through Yale Course Search to enroll. Please state briefly (under 200 words) your interest in this course and any relevant experience. Also, six spaces in this seminar are reserved for students in the sponsoring college, so please indicate your residential college. Falsifying this information will be subject to disciplinary action.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85176\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85176/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": true + "colsem": true, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987505674362183, + 0.9988321661949158, + 0.9989247918128967, + 0.9727486371994019, + 0.9988565444946289, + 0.9986773133277893 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989237189292908, + 0.9988790154457092, + 0.9989393353462219, + 0.9987367987632751, + 0.9968386888504028, + 0.9986943602561951 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998927891254425, + 0.9988672733306885, + 0.9988725781440735, + 0.9989089965820312, + 0.9988927245140076, + 0.9988262057304382, + 0.9987636804580688, + 0.997117280960083 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 20 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -69298,7 +151417,7 @@ "13:30", "15:20", "WALL81 401 - 81 Wall Street 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -69310,10 +151429,147 @@ "classnotes": "Students must request permission from the instructor through Yale Course Search to enroll. Please state briefly (under 200 words) your interest in this course and any relevant experience. Also, six spaces in this seminar are reserved for students in the sponsoring college, so please indicate your residential college. Falsifying this information will be subject to disciplinary action.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85888\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": true + "syllabus_url": "https://yale.instructure.com/courses/85888/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": true, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998838484287262, + 0.9989266991615295, + 0.9988467693328857, + 0.9988304972648621, + 0.9989099502563477, + 0.9987919926643372, + 0.9987658262252808, + 0.9987003803253174, + 0.9989225268363953, + 0.9989159107208252, + 0.9987599849700928, + 0.9988287091255188 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988355040550232, + 0.9989352822303772, + 0.9988644123077393, + 0.9989123344421387, + 0.9987782835960388, + 0.9988644123077393, + 0.9995026588439941, + 0.998916506767273, + 0.9988657236099243, + 0.9987939596176147, + 0.9988226294517517 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9090909090909091 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989332556724548, + 0.9988740086555481, + 0.9986081719398499, + 0.9989380240440369, + 0.9989356398582458, + 0.9989019632339478, + 0.9989148378372192, + 0.9964817762374878, + 0.9986715316772461, + 0.9987530708312988, + 0.9987677335739136, + 0.9988256096839905 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9166666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 33, + "final_proportion": 0.9428571428571428, + "final_counts": { + "POSITIVE": 33, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9428571428571428, + "NEGATIVE": 0.05714285714285714 + } + } }, { "season_code": "202301", @@ -69350,7 +151606,7 @@ "9:25", "11:15", "WLH 203 - William L. Harkness Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -69362,10 +151618,109 @@ "classnotes": "Students must request permission from the instructor through Yale Course Search to enroll. Please state briefly (under 200 words) your interest in this course and any relevant experience. Also, six spaces in this seminar are reserved for students in the sponsoring college, so please indicate your residential college. Falsifying this information will be subject to disciplinary action.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85177\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85177/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": true + "colsem": true, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985548853874207, + 0.9985935091972351, + 0.997884213924408, + 0.9938291907310486, + 0.9987961053848267 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985014200210571, + 0.9986357092857361, + 0.9989187717437744, + 0.9988860487937927, + 0.9988465309143066, + 0.9987249970436096 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.997117280960083, + 0.997117280960083, + 0.9989144802093506, + 0.9987345337867737, + 0.9986379742622375, + 0.9981436729431152 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 17 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -69402,7 +151757,7 @@ "13:30", "15:20", "DC 215 - Davenport College 215", - "https:\/\/map.yale.edu\/?id=1910#!m\/560004" + "https://map.yale.edu/?id=1910#!m/560004" ] ] }, @@ -69416,10 +151771,119 @@ "classnotes": "Students must request permission from the instructor through Yale Course Search to enroll. Please state briefly (under 200 words) your interest in this course and any relevant experience.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86235\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86235/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": true + "colsem": true, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9968191385269165, + 0.9989022016525269, + 0.9988613128662109, + 0.9988322854042053, + 0.9988118410110474, + 0.9985063672065735 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989271759986877, + 0.9994955062866211, + 0.9988284707069397, + 0.9987677335739136, + 0.9988403916358948, + 0.9988861680030823, + 0.998855471611023 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9976826906204224, + 0.9994993209838867, + 0.9989284873008728, + 0.998894989490509, + 0.998591959476471, + 0.9989076852798462, + 0.9989293217658997, + 0.9900583624839783 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 0.9047619047619048, + "final_counts": { + "POSITIVE": 19, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9047619047619048, + "NEGATIVE": 0.09523809523809523 + } + } }, { "season_code": "202301", @@ -69450,7 +151914,7 @@ "10:15", "11:30", "DOW 420 - Dow Hall 420", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ], "Thursday": [ @@ -69458,7 +151922,7 @@ "10:15", "11:30", "DOW 420 - Dow Hall 420", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ], "Friday": [ @@ -69466,7 +151930,7 @@ "10:15", "11:30", "DOW 420 - Dow Hall 420", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ] }, @@ -69483,7 +151947,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -69520,7 +152012,7 @@ "11:35", "12:25", "WLH 209 - William L. Harkness Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Tuesday": [ @@ -69528,7 +152020,7 @@ "11:35", "12:25", "WLH 209 - William L. Harkness Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -69536,7 +152028,7 @@ "11:35", "12:25", "WLH 209 - William L. Harkness Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -69544,7 +152036,7 @@ "11:35", "12:25", "WLH 209 - William L. Harkness Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Friday": [ @@ -69552,7 +152044,7 @@ "11:35", "12:25", "WLH 209 - William L. Harkness Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -69566,10 +152058,89 @@ "classnotes": "", "final_exam": "Monday, May 8, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83744\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83744/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988698363304138, + 0.998840868473053, + 0.9983959794044495 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986668825149536 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988056421279907, + 0.997117280960083, + 0.9985581040382385 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 7 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -69610,7 +152181,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -69652,7 +152251,7 @@ "14:30", "15:20", "SSS 114 - Sheffield-Sterling-Strathcona 114", - "https:\/\/map.yale.edu\/?id=1910#!m\/563689" + "https://map.yale.edu/?id=1910#!m/563689" ] ], "Wednesday": [ @@ -69660,7 +152259,7 @@ "14:30", "15:20", "SSS 114 - Sheffield-Sterling-Strathcona 114", - "https:\/\/map.yale.edu\/?id=1910#!m\/563689" + "https://map.yale.edu/?id=1910#!m/563689" ] ] }, @@ -69674,10 +152273,209 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83798\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83798/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998935878276825, + 0.9982777833938599, + 0.9968156218528748, + 0.9984039664268494, + 0.9962582588195801, + 0.9989311099052429, + 0.9988338351249695, + 0.9954687356948853, + 0.998785674571991, + 0.9987488985061646, + 0.9988712668418884, + 0.9985829591751099, + 0.998740017414093, + 0.9989156723022461, + 0.9994814991950989, + 0.9988394379615784, + 0.9989112615585327, + 0.9986221790313721, + 0.9988502264022827, + 0.998793363571167, + 0.9989294409751892, + 0.9989286065101624 + ], + "sentiment_counts": { + "POSITIVE": 20, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9090909090909091 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9987419247627258, + 0.99887615442276, + 0.9989142417907715, + 0.9986788630485535, + 0.9962582588195801, + 0.9994927644729614, + 0.9988754391670227, + 0.9988775849342346, + 0.9972184896469116, + 0.9870812296867371, + 0.9940172433853149, + 0.9986811280250549, + 0.999489426612854, + 0.9988136291503906, + 0.9992954730987549, + 0.9966887831687927, + 0.9993485808372498, + 0.9988741278648376, + 0.9994860887527466, + 0.9989207983016968, + 0.9983103275299072, + 0.9982118606567383, + 0.9987824559211731, + 0.9847177863121033 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 11 + }, + "sentiment_distribution": { + "POSITIVE": 0.5416666666666666, + "NEGATIVE": 0.4583333333333333 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989104270935059, + 0.9977057576179504, + 0.9988704323768616, + 0.9984052777290344, + 0.9962582588195801, + 0.9989359974861145, + 0.9988816380500793, + 0.9974592328071594, + 0.9982234835624695, + 0.9990212917327881, + 0.9985746145248413, + 0.9979425072669983, + 0.9988999366760254, + 0.9995064735412598, + 0.991790771484375, + 0.9988986253738403, + 0.9988992214202881, + 0.9983044862747192, + 0.9988798499107361, + 0.9987069368362427 + ], + "sentiment_counts": { + "POSITIVE": 14, + "NEGATIVE": 6 + }, + "sentiment_distribution": { + "POSITIVE": 0.7, + "NEGATIVE": 0.3 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7 + ] + }, + "final_label": "POSITIVE", + "final_count": 47, + "final_proportion": 0.7121212121212122, + "final_counts": { + "POSITIVE": 47, + "NEGATIVE": 19 + }, + "final_distribution": { + "POSITIVE": 0.7121212121212122, + "NEGATIVE": 0.2878787878787879 + } + } }, { "season_code": "202301", @@ -69738,7 +152536,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -69774,7 +152600,7 @@ "10:30", "11:20", "HQ 129 - Humanities Quadrangle 129", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -69791,7 +152617,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -69827,7 +152681,7 @@ "14:30", "15:20", "HQ 133 - Humanities Quadrangle 133", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -69844,7 +152698,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -69880,7 +152762,7 @@ "14:30", "15:20", "HQ 132 - Humanities Quadrangle 132", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -69897,7 +152779,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -69933,7 +152843,7 @@ "16:00", "16:50", "HQ 401 - Humanities Quadrangle 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -69950,7 +152860,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -70011,7 +152949,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -70072,7 +153038,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -70133,7 +153127,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -70194,7 +153216,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -70255,7 +153305,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -70292,7 +153370,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -70329,7 +153435,7 @@ "9:00", "11:00", "YK212 004 - 212 York Street 004", - "https:\/\/map.yale.edu\/?id=1910#!m\/559604" + "https://map.yale.edu/?id=1910#!m/559604" ] ], "Wednesday": [ @@ -70337,7 +153443,7 @@ "9:00", "10:00", "YK212 004 - 212 York Street 004", - "https:\/\/map.yale.edu\/?id=1910#!m\/559604" + "https://map.yale.edu/?id=1910#!m/559604" ] ] }, @@ -70349,10 +153455,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86704\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86704/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -70389,7 +153523,7 @@ "9:00", "11:45", "YK149 122 - 149 York Street 122", - "https:\/\/map.yale.edu\/?id=1910#!m\/560098" + "https://map.yale.edu/?id=1910#!m/560098" ] ] }, @@ -70404,7 +153538,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -70441,7 +153603,7 @@ "9:00", "11:30", "PK205 102 - 205 Park Street 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/559961" + "https://map.yale.edu/?id=1910#!m/559961" ] ] }, @@ -70453,10 +153615,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87029\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87029/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -70493,7 +153683,7 @@ "12:00", "13:30", "YK149 122 - 149 York Street 122", - "https:\/\/map.yale.edu\/?id=1910#!m\/560098" + "https://map.yale.edu/?id=1910#!m/560098" ] ] }, @@ -70505,10 +153695,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87030\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87030/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -70545,7 +153763,7 @@ "9:00", "10:00", "YK222 B1 - 222 York Street B1", - "https:\/\/map.yale.edu\/?id=1910#!m\/559927" + "https://map.yale.edu/?id=1910#!m/559927" ] ], "Thursday": [ @@ -70553,7 +153771,7 @@ "9:00", "10:00", "YK222 B1 - 222 York Street B1", - "https:\/\/map.yale.edu\/?id=1910#!m\/559927" + "https://map.yale.edu/?id=1910#!m/559927" ] ] }, @@ -70565,10 +153783,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86749\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86749/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -70617,10 +153863,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86777\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86777/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -70657,7 +153931,7 @@ "9:00", "10:30", "YK149 PAINT-SHOP - 149 York Street PAINT-SHOP", - "https:\/\/map.yale.edu\/?id=1910#!m\/560098" + "https://map.yale.edu/?id=1910#!m/560098" ] ] }, @@ -70672,7 +153946,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -70709,7 +154011,7 @@ "9:00", "11:00", "PK205 STUDIO-A - 205 Park Street STUDIO-A", - "https:\/\/map.yale.edu\/?id=1910#!m\/559961" + "https://map.yale.edu/?id=1910#!m/559961" ] ] }, @@ -70721,15 +154023,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87036\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87036/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "Open to non-Theater Management and non-Drama students with prior permission of the instructor.", - "description": "This introductory course explores the elements and best practices for managing a successful not-for-profit development department. Discussions delve into the responsibilities and practical applications of development\u2014identifying, stewarding, cultivating, and soliciting gifts from annual to capital campaigns. Thorough, practical exploration of board development, institutional identity, proposal development strategies, and solicitation techniques is included. Students are introduced to all aspects of the development sectors: individual giving, corporate sponsorship\/philanthropy, government\/legislative, foundations, and special event fundraising. Each student creates a hypothetical organization for use throughout the term. An emphasis is placed on relationship development with potential funders.", + "description": "This introductory course explores the elements and best practices for managing a successful not-for-profit development department. Discussions delve into the responsibilities and practical applications of development\u2014identifying, stewarding, cultivating, and soliciting gifts from annual to capital campaigns. Thorough, practical exploration of board development, institutional identity, proposal development strategies, and solicitation techniques is included. Students are introduced to all aspects of the development sectors: individual giving, corporate sponsorship/philanthropy, government/legislative, foundations, and special event fundraising. Each student creates a hypothetical organization for use throughout the term. An emphasis is placed on relationship development with potential funders.", "short_title": "Principles of Development", "title": "Principles of Development", "school": "DR", @@ -70761,7 +154091,7 @@ "10:00", "13:00", "YK222 314 - 222 York Street 314", - "https:\/\/map.yale.edu\/?id=1910#!m\/559927" + "https://map.yale.edu/?id=1910#!m/559927" ] ] }, @@ -70773,10 +154103,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86787\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86787/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -70813,7 +154171,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -70850,7 +154236,7 @@ "10:00", "11:30", "LORIA - LORIA", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -70865,7 +154251,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -70902,7 +154316,7 @@ "10:15", "12:15", "YK222 EX - 222 York Street EX", - "https:\/\/map.yale.edu\/?id=1910#!m\/559927" + "https://map.yale.edu/?id=1910#!m/559927" ] ] }, @@ -70914,10 +154328,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86709\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86709/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -70957,7 +154399,7 @@ "11:45", "13:30", "PK205 101 - 205 Park Street 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559961" + "https://map.yale.edu/?id=1910#!m/559961" ] ] }, @@ -70969,10 +154411,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87051\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87051/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -71009,7 +154479,7 @@ "10:30", "13:30", "PK217 206 - 217 Park Street 206", - "https:\/\/map.yale.edu\/?id=1910#!m\/560070" + "https://map.yale.edu/?id=1910#!m/560070" ] ] }, @@ -71021,10 +154491,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86730\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86730/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -71061,7 +154559,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -71098,7 +154624,7 @@ "9:00", "11:00", "PK205 STUDIO-A - 205 Park Street STUDIO-A", - "https:\/\/map.yale.edu\/?id=1910#!m\/559961" + "https://map.yale.edu/?id=1910#!m/559961" ] ] }, @@ -71113,12 +154639,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "Open to non-Theater Management students with prior permission of the instructor.", - "description": "This course explores diverse topics in crisis and change management in arts and cultural organizations. Through class discussion, case studies, assigned readings, group projects, and guest lectures, students investigate various crisis and change management practices as well as responsive strategic planning. The emphasis in this course is on the lived experiences of those directly involved in and\/or responsible for developing a crisis response and management plan. Students apply their learning using these experiences of arts and culture leaders to develop fundamental principles of creative problem solving and adaptive capacity.", + "description": "This course explores diverse topics in crisis and change management in arts and cultural organizations. Through class discussion, case studies, assigned readings, group projects, and guest lectures, students investigate various crisis and change management practices as well as responsive strategic planning. The emphasis in this course is on the lived experiences of those directly involved in and/or responsible for developing a crisis response and management plan. Students apply their learning using these experiences of arts and culture leaders to develop fundamental principles of creative problem solving and adaptive capacity.", "short_title": "Managing Crisis and Recovery", "title": "Managing Crisis and Recovery", "school": "DR", @@ -71147,14 +154701,42 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86812\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86812/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", - "requirements": "Open to non-Design students who have taken DRAM 224a\/b.", + "requirements": "Open to non-Design students who have taken DRAM 224a/b.", "description": "This course is built in a series of modules preparing students for the collaborative task of creating projection for the stage. For grading purposes, any two modules constitute a full-term course. Subject matter changes on a three-year sequence. Fall Module 1: opera works in collaboration with Yale Opera to create imagery for the Fall Opera Scenes in Sprague Hall. Fall Module 2: the use of projection in dance. Spring Module 1: The World of the Play, an eight-week course in text analysis led by Liz Diamond. Spring Module 2: Exploratorium of Image, light and content with School directors.", "short_title": "Advanced Projection Design", "title": "Advanced Projection Design", @@ -71190,7 +154772,7 @@ "9:30", "11:30", "PK205 101 - 205 Park Street 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559961" + "https://map.yale.edu/?id=1910#!m/559961" ] ] }, @@ -71202,10 +154784,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87048\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87048/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -71242,7 +154852,7 @@ "10:00", "12:00", "YK149 221 - 149 York Street 221", - "https:\/\/map.yale.edu\/?id=1910#!m\/560098" + "https://map.yale.edu/?id=1910#!m/560098" ] ] }, @@ -71254,10 +154864,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86708\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86708/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -71294,7 +154932,7 @@ "10:00", "11:30", "YK222 314 - 222 York Street 314", - "https:\/\/map.yale.edu\/?id=1910#!m\/559927" + "https://map.yale.edu/?id=1910#!m/559927" ] ] }, @@ -71306,10 +154944,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87142\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87142/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -71348,7 +155014,7 @@ "9:25", "11:15", "STOECK 211 - Stoeckel Hall (renovated) 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ] }, @@ -71360,10 +155026,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85188\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85188/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -71400,7 +155094,7 @@ "11:30", "13:30", "PK205 101 - 205 Park Street 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559961" + "https://map.yale.edu/?id=1910#!m/559961" ] ] }, @@ -71412,10 +155106,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87058\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87058/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -71461,10 +155183,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86718\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86718/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -71504,7 +155254,7 @@ "11:45", "13:30", "YRT - YRT", - "https:\/\/map.yale.edu\/?id=1910#!m\/563678" + "https://map.yale.edu/?id=1910#!m/563678" ] ] }, @@ -71516,10 +155266,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86738\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86738/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -71556,7 +155334,7 @@ "9:00", "9:50", "YK212 106 - 212 York Street 106", - "https:\/\/map.yale.edu\/?id=1910#!m\/559604" + "https://map.yale.edu/?id=1910#!m/559604" ] ], "Thursday": [ @@ -71564,19 +155342,19 @@ "9:00", "9:50", "YK212 106 - 212 York Street 106", - "https:\/\/map.yale.edu\/?id=1910#!m\/559604" + "https://map.yale.edu/?id=1910#!m/559604" ], [ "10:00", "10:50", "YK212 004 - 212 York Street 004", - "https:\/\/map.yale.edu\/?id=1910#!m\/559604" + "https://map.yale.edu/?id=1910#!m/559604" ], [ "10:00", "10:50", "YK212 004A - 212 York Street 004A", - "https:\/\/map.yale.edu\/?id=1910#!m\/559604" + "https://map.yale.edu/?id=1910#!m/559604" ] ] }, @@ -71588,10 +155366,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86743\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86743/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -71628,7 +155434,7 @@ "9:30", "11:20", "PK217 206 - 217 Park Street 206", - "https:\/\/map.yale.edu\/?id=1910#!m\/560070" + "https://map.yale.edu/?id=1910#!m/560070" ] ] }, @@ -71640,10 +155446,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86754\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86754/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -71680,7 +155514,7 @@ "11:30", "13:20", "YK212 106 - 212 York Street 106", - "https:\/\/map.yale.edu\/?id=1910#!m\/559604" + "https://map.yale.edu/?id=1910#!m/559604" ] ] }, @@ -71692,10 +155526,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86781\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86781/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -71732,7 +155594,7 @@ "9:00", "10:15", "HQ 313 - Humanities Quadrangle 313", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -71740,7 +155602,7 @@ "9:00", "10:15", "HQ 313 - Humanities Quadrangle 313", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Friday": [ @@ -71748,7 +155610,7 @@ "11:35", "12:25", "HQ L02 - Humanities Quadrangle L02", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -71764,10 +155626,125 @@ "classnotes": "", "final_exam": "Tuesday, May 9, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85121\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85121/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989317059516907, + 0.9986284971237183, + 0.9988246560096741, + 0.9988545179367065, + 0.9987834095954895, + 0.9989062547683716, + 0.9988749623298645, + 0.9988976716995239, + 0.9989136457443237 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989365935325623, + 0.9988499879837036, + 0.9988353848457336, + 0.9989332556724548, + 0.9984351992607117, + 0.9901305437088013, + 0.9961854815483093, + 0.998637855052948 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989045858383179, + 0.9988635778427124, + 0.9984995126724243, + 0.9989287257194519, + 0.998816728591919, + 0.9988921284675598, + 0.998847246170044 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 23, + "final_proportion": 0.9583333333333334, + "final_counts": { + "POSITIVE": 23, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9583333333333334, + "NEGATIVE": 0.041666666666666664 + } + } }, { "season_code": "202301", @@ -71804,7 +155781,7 @@ "13:00", "14:15", "HQ 313 - Humanities Quadrangle 313", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -71812,7 +155789,7 @@ "13:00", "14:15", "HQ 313 - Humanities Quadrangle 313", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Friday": [ @@ -71820,7 +155797,7 @@ "11:35", "12:25", "HQ L02 - Humanities Quadrangle L02", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -71836,10 +155813,121 @@ "classnotes": "", "final_exam": "Tuesday, May 9, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85122\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85122/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986873269081116, + 0.9989290833473206, + 0.9989181756973267, + 0.9986599683761597, + 0.9987159967422485, + 0.9937210083007812, + 0.9985116124153137 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9942029118537903, + 0.9988523721694946, + 0.9966217279434204, + 0.9988263249397278, + 0.9988328814506531, + 0.9988266825675964, + 0.9988767504692078, + 0.9988240599632263 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988430738449097, + 0.9989023208618164, + 0.9989023208618164, + 0.9988962411880493, + 0.9985920786857605, + 0.997117280960083, + 0.9989253878593445, + 0.9988086223602295 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 23, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 23 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -71876,7 +155964,7 @@ "14:30", "15:45", "HQ 209 - Humanities Quadrangle 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -71884,7 +155972,7 @@ "14:30", "15:45", "HQ 209 - Humanities Quadrangle 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Friday": [ @@ -71892,7 +155980,7 @@ "11:35", "12:25", "HQ L02 - Humanities Quadrangle L02", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -71908,10 +155996,137 @@ "classnotes": "", "final_exam": "Tuesday, May 9, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85123\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85123/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987657070159912, + 0.9989311099052429, + 0.9986103773117065, + 0.9988694787025452, + 0.9989210367202759, + 0.9983671307563782, + 0.9989039897918701, + 0.9988973140716553, + 0.9987289309501648, + 0.9988694787025452 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989123344421387, + 0.9989317059516907, + 0.9988394379615784, + 0.9987680315971375, + 0.9989352822303772, + 0.9986011385917664, + 0.9987751841545105, + 0.9987655878067017, + 0.9983141422271729, + 0.9940165281295776 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985211491584778, + 0.9988875985145569, + 0.9987475872039795, + 0.9987730383872986, + 0.9989352822303772, + 0.9944562315940857, + 0.9989295601844788, + 0.9989149570465088, + 0.9989020824432373, + 0.9989148378372192 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "final_label": "POSITIVE", + "final_count": 29, + "final_proportion": 0.9666666666666667, + "final_counts": { + "POSITIVE": 29, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9666666666666667, + "NEGATIVE": 0.03333333333333333 + } + } }, { "season_code": "202301", @@ -71948,7 +156163,7 @@ "14:30", "15:45", "HQ 313 - Humanities Quadrangle 313", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -71956,7 +156171,7 @@ "14:30", "15:45", "HQ 313 - Humanities Quadrangle 313", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Friday": [ @@ -71964,7 +156179,7 @@ "11:35", "12:25", "HQ L02 - Humanities Quadrangle L02", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -71980,10 +156195,95 @@ "classnotes": "", "final_exam": "Tuesday, May 9, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85124\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85124/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986296892166138, + 0.9968043565750122, + 0.9989018440246582 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986155033111572, + 0.9985138773918152, + 0.998920202255249, + 0.9988623857498169 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998852014541626, + 0.9988600015640259, + 0.998931348323822 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 10 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -72020,7 +156320,7 @@ "14:30", "15:45", "HQ 309 - Humanities Quadrangle 309", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -72028,7 +156328,7 @@ "14:30", "15:45", "HQ 309 - Humanities Quadrangle 309", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Friday": [ @@ -72036,7 +156336,7 @@ "11:35", "12:25", "HQ L02 - Humanities Quadrangle L02", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -72052,10 +156352,107 @@ "classnotes": "", "final_exam": "Tuesday, May 9, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85125\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85125/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983142614364624, + 0.9988633394241333, + 0.998856782913208, + 0.9988804459571838, + 0.9982655644416809 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989380240440369, + 0.9988522529602051, + 0.9986918568611145, + 0.9989342093467712, + 0.998793363571167 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.99843829870224, + 0.9988417029380798, + 0.9977911710739136, + 0.9989311099052429, + 0.9989171028137207, + 0.9988799691200256 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 16 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -72092,7 +156489,7 @@ "11:35", "12:50", "HQ 313 - Humanities Quadrangle 313", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -72100,7 +156497,7 @@ "11:35", "12:50", "HQ 313 - Humanities Quadrangle 313", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Friday": [ @@ -72108,7 +156505,7 @@ "11:35", "12:25", "HQ L02 - Humanities Quadrangle L02", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -72124,10 +156521,113 @@ "classnotes": "", "final_exam": "Tuesday, May 9, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85126\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85126/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987210631370544, + 0.9989176988601685, + 0.9989180564880371, + 0.9989262223243713, + 0.9979821443557739, + 0.9988570213317871 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9872841835021973, + 0.9988933205604553, + 0.9989168643951416, + 0.9980385899543762, + 0.9965896606445312 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 4 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2, + "POSITIVE": 0.8 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989200830459595, + 0.998932421207428, + 0.9989044666290283, + 0.9989078044891357, + 0.9988998174667358, + 0.9988113641738892, + 0.9988345503807068 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 0.9444444444444444, + "final_counts": { + "POSITIVE": 17, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9444444444444444, + "NEGATIVE": 0.05555555555555555 + } + } }, { "season_code": "202301", @@ -72164,7 +156664,7 @@ "11:35", "12:50", "HQ 309 - Humanities Quadrangle 309", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -72172,7 +156672,7 @@ "11:35", "12:50", "HQ 309 - Humanities Quadrangle 309", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Friday": [ @@ -72180,7 +156680,7 @@ "11:35", "12:25", "HQ L02 - Humanities Quadrangle L02", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -72196,10 +156696,125 @@ "classnotes": "", "final_exam": "Tuesday, May 9, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85127\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85127/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987674951553345, + 0.9987950325012207, + 0.9988875985145569, + 0.9989282488822937, + 0.9989205598831177, + 0.9989064931869507 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987731575965881, + 0.966463565826416, + 0.9959047436714172, + 0.9988874793052673, + 0.9989257454872131, + 0.9940464496612549, + 0.9970222115516663, + 0.9989018440246582 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.625, + "NEGATIVE": 0.375 + }, + "sentiment_overall": [ + "POSITIVE", + 0.625 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989290833473206, + 0.9989063739776611, + 0.9987751841545105, + 0.9984025359153748, + 0.9987342953681946, + 0.9988778233528137, + 0.9981922507286072, + 0.9987233281135559, + 0.9989299178123474, + 0.9989375472068787 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 21, + "final_proportion": 0.875, + "final_counts": { + "POSITIVE": 21, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + } + } }, { "season_code": "202301", @@ -72236,13 +156851,13 @@ "13:00", "14:15", "HQ 313 - Humanities Quadrangle 313", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ], [ "11:35", "12:25", "HQ L02 - Humanities Quadrangle L02", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -72250,7 +156865,7 @@ "13:00", "14:15", "HQ 313 - Humanities Quadrangle 313", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -72266,10 +156881,101 @@ "classnotes": "", "final_exam": "Monday, May 8, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85128\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85128/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982328414916992, + 0.9986910223960876, + 0.9982016086578369, + 0.9989033937454224, + 0.9988729357719421 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9923034906387329, + 0.9987351298332214, + 0.9963604807853699, + 0.9987254738807678 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987648725509644, + 0.9981922507286072, + 0.9989005327224731, + 0.9989076852798462 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 13 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -72306,13 +157012,13 @@ "13:00", "14:15", "HQ 309 - Humanities Quadrangle 309", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ], [ "11:35", "12:25", "HQ L02 - Humanities Quadrangle L02", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -72320,7 +157026,7 @@ "13:00", "14:15", "HQ 309 - Humanities Quadrangle 309", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -72336,10 +157042,111 @@ "classnotes": "", "final_exam": "Monday, May 8, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85129\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85129/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988576173782349, + 0.9987754225730896, + 0.9972810745239258, + 0.9988648891448975, + 0.9988670349121094, + 0.9988304972648621 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9944948554039001, + 0.998927652835846, + 0.9987488985061646, + 0.9977285265922546, + 0.9988775849342346, + 0.9989049434661865 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 5 + }, + "sentiment_distribution": { + "NEGATIVE": 0.16666666666666666, + "POSITIVE": 0.8333333333333334 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998925507068634, + 0.9983938336372375, + 0.9988747239112854, + 0.9987668991088867, + 0.9989219903945923 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 0.9411764705882353, + "final_counts": { + "POSITIVE": 16, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9411764705882353, + "NEGATIVE": 0.058823529411764705 + } + } }, { "season_code": "202301", @@ -72376,7 +157183,7 @@ "13:00", "14:15", "HQ 309 - Humanities Quadrangle 309", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -72384,7 +157191,7 @@ "13:00", "14:15", "HQ 309 - Humanities Quadrangle 309", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Monday": [ @@ -72392,7 +157199,7 @@ "11:35", "12:25", "HQ L02 - Humanities Quadrangle L02", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -72408,10 +157215,89 @@ "classnotes": "", "final_exam": "Monday, May 8, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85130\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85130/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986920952796936, + 0.9987903237342834 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9971734285354614, + 0.9987701773643494 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 1 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987977743148804, + 0.9988464117050171 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 5, + "final_proportion": 0.8333333333333334, + "final_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + } + } }, { "season_code": "202301", @@ -72448,13 +157334,13 @@ "14:30", "15:45", "HQ 309 - Humanities Quadrangle 309", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ], [ "11:35", "12:25", "HQ L02 - Humanities Quadrangle L02", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -72462,7 +157348,7 @@ "14:30", "15:45", "HQ 309 - Humanities Quadrangle 309", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -72478,10 +157364,117 @@ "classnotes": "", "final_exam": "Monday, May 8, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85131\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85131/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987420439720154, + 0.9988101720809937, + 0.998898983001709, + 0.9983720183372498, + 0.9982033967971802, + 0.9985059499740601 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.998641312122345, + 0.9989323019981384, + 0.9991075396537781, + 0.9983800649642944, + 0.9914184808731079, + 0.9984418749809265, + 0.9994901418685913 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.7142857142857143, + "NEGATIVE": 0.2857142857142857 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7142857142857143 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988480806350708, + 0.9988744854927063, + 0.9954641461372375, + 0.9974545836448669, + 0.9982755184173584, + 0.9988491535186768, + 0.998848557472229 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.7142857142857143, + "NEGATIVE": 0.2857142857142857 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7142857142857143 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 0.8, + "final_counts": { + "POSITIVE": 16, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + } + } }, { "season_code": "202301", @@ -72518,13 +157511,13 @@ "14:30", "15:45", "HQ 313 - Humanities Quadrangle 313", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ], [ "11:35", "12:25", "HQ L02 - Humanities Quadrangle L02", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -72532,7 +157525,7 @@ "14:30", "15:45", "HQ 313 - Humanities Quadrangle 313", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -72548,10 +157541,95 @@ "classnotes": "", "final_exam": "Monday, May 8, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85132\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85132/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989123344421387, + 0.998916506767273, + 0.9988352656364441 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998815655708313, + 0.9985700845718384, + 0.9988566637039185 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988283514976501, + 0.9988401532173157, + 0.9988964796066284, + 0.9989299178123474 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 10 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -72588,7 +157666,7 @@ "11:35", "12:50", "WALL81 301 - 81 Wall Street 301", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ], "Thursday": [ @@ -72596,7 +157674,7 @@ "11:35", "12:50", "WALL81 301 - 81 Wall Street 301", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ], "Monday": [ @@ -72604,7 +157682,7 @@ "11:35", "12:25", "HQ L02 - Humanities Quadrangle L02", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -72620,10 +157698,159 @@ "classnotes": "", "final_exam": "Monday, May 8, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85133\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85133/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988732933998108, + 0.998264491558075, + 0.9989064931869507, + 0.9956821203231812, + 0.9988800883293152, + 0.9985337257385254, + 0.99888676404953, + 0.9989281296730042, + 0.9988850951194763, + 0.9984915256500244, + 0.9989129304885864, + 0.9988161325454712, + 0.9988642930984497 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989275336265564, + 0.9907642602920532, + 0.9989269375801086, + 0.9950909614562988, + 0.9989225268363953, + 0.9987945556640625, + 0.9962211847305298, + 0.998872697353363, + 0.9987469911575317, + 0.9988866448402405, + 0.9986949563026428, + 0.9989196062088013, + 0.998762845993042 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9230769230769231, + "NEGATIVE": 0.07692307692307693 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9230769230769231 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988394379615784, + 0.997333288192749, + 0.9988962411880493, + 0.9990742206573486, + 0.9988968372344971, + 0.9989343285560608, + 0.9988293051719666, + 0.9988779425621033, + 0.9989187717437744, + 0.9987683892250061, + 0.9989303946495056, + 0.9989252686500549, + 0.9988909363746643, + 0.9988163709640503, + 0.9988314509391785 + ], + "sentiment_counts": { + "POSITIVE": 14, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9333333333333333, + "NEGATIVE": 0.06666666666666667 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9333333333333333 + ] + }, + "final_label": "POSITIVE", + "final_count": 39, + "final_proportion": 0.9512195121951219, + "final_counts": { + "POSITIVE": 39, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9512195121951219, + "NEGATIVE": 0.04878048780487805 + } + } }, { "season_code": "202301", @@ -72660,7 +157887,7 @@ "11:35", "12:50", "HQ C03 - Humanities Quadrangle C03", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -72668,7 +157895,7 @@ "11:35", "12:50", "HQ C03 - Humanities Quadrangle C03", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Monday": [ @@ -72676,7 +157903,7 @@ "11:35", "12:25", "HQ L02 - Humanities Quadrangle L02", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -72692,10 +157919,131 @@ "classnotes": "", "final_exam": "Monday, May 8, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85134\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85134/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9980707764625549, + 0.9988407492637634, + 0.9987497329711914, + 0.9987797141075134, + 0.9981456995010376, + 0.9984101057052612, + 0.9989038705825806, + 0.9988982677459717, + 0.9965864419937134 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.997796893119812, + 0.9977828860282898, + 0.9987859129905701, + 0.9985852241516113, + 0.9987105131149292, + 0.9980455636978149, + 0.9972301125526428, + 0.996849000453949, + 0.9988133907318115 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 7 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2222222222222222, + "POSITIVE": 0.7777777777777778 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7777777777777778 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987139701843262, + 0.9985646605491638, + 0.9982629418373108, + 0.9988685846328735, + 0.9989232420921326, + 0.9981435537338257, + 0.9988875985145569, + 0.9989210367202759, + 0.997117280960083 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 25, + "final_proportion": 0.9259259259259259, + "final_counts": { + "POSITIVE": 25, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9259259259259259, + "NEGATIVE": 0.07407407407407407 + } + } }, { "season_code": "202301", @@ -72732,7 +158080,7 @@ "9:00", "10:15", "HQ 313 - Humanities Quadrangle 313", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -72740,13 +158088,13 @@ "9:00", "10:15", "HQ 313 - Humanities Quadrangle 313", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ], [ "11:35", "12:25", "HQ L02 - Humanities Quadrangle L02", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -72760,10 +158108,117 @@ "classnotes": "", "final_exam": "Saturday, May 6, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85135\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85135/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9971970319747925, + 0.9988137483596802, + 0.9988148212432861, + 0.9453917145729065, + 0.914965808391571, + 0.9987480640411377, + 0.9988170862197876 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987486600875854, + 0.9988805651664734, + 0.9986479878425598, + 0.9970465302467346, + 0.986453115940094, + 0.9988277554512024, + 0.998833954334259 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989246726036072, + 0.9988930821418762, + 0.9989067316055298, + 0.9979405999183655, + 0.998932421207428, + 0.998903751373291 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 0.95, + "final_counts": { + "POSITIVE": 19, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.95, + "NEGATIVE": 0.05 + } + } }, { "season_code": "202301", @@ -72800,7 +158255,7 @@ "9:00", "10:15", "HQ 309 - Humanities Quadrangle 309", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -72808,7 +158263,7 @@ "9:00", "10:15", "HQ 309 - Humanities Quadrangle 309", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -72816,7 +158271,7 @@ "11:35", "12:25", "HQ L02 - Humanities Quadrangle L02", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -72830,10 +158285,127 @@ "classnotes": "", "final_exam": "Saturday, May 6, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85136\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85136/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988563060760498, + 0.9988981485366821, + 0.9988874793052673, + 0.9989010095596313, + 0.9989162683486938, + 0.9987521171569824, + 0.9988988637924194, + 0.998729407787323 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9934194684028625, + 0.9985010623931885, + 0.9988314509391785, + 0.9985577464103699, + 0.9985664486885071, + 0.9984567165374756, + 0.9885568618774414, + 0.993926465511322 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988211989402771, + 0.9989140033721924, + 0.9989196062088013, + 0.998914361000061, + 0.9985265731811523, + 0.9977558255195618, + 0.9986020922660828, + 0.9989299178123474, + 0.9987871050834656 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 24, + "final_proportion": 0.96, + "final_counts": { + "POSITIVE": 24, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.96, + "NEGATIVE": 0.04 + } + } }, { "season_code": "202301", @@ -72870,7 +158442,7 @@ "14:30", "15:45", "HQ 213 - Humanities Quadrangle 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -72878,13 +158450,13 @@ "14:30", "15:45", "HQ 213 - Humanities Quadrangle 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ], [ "11:35", "12:25", "HQ L02 - Humanities Quadrangle L02", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -72898,10 +158470,131 @@ "classnotes": "", "final_exam": "Saturday, May 6, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85137\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85137/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989327788352966, + 0.9983955025672913, + 0.9989219903945923, + 0.9987744688987732, + 0.9988740086555481, + 0.9988755583763123, + 0.9989302754402161, + 0.998833954334259, + 0.9988592863082886, + 0.9988654851913452 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998714804649353, + 0.9910645484924316, + 0.9971765279769897, + 0.9989237189292908, + 0.9988860487937927, + 0.9984785914421082, + 0.9952229857444763 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989390969276428, + 0.9988846182823181, + 0.9989290833473206, + 0.9989162683486938, + 0.998893678188324, + 0.998767614364624, + 0.9988538026809692, + 0.9987524747848511, + 0.9988988637924194, + 0.9989087581634521 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 26, + "final_proportion": 0.9629629629629629, + "final_counts": { + "POSITIVE": 26, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9629629629629629, + "NEGATIVE": 0.037037037037037035 + } + } }, { "season_code": "202301", @@ -72938,7 +158631,7 @@ "14:30", "15:45", "HQ 225 - Humanities Quadrangle 225", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -72946,13 +158639,13 @@ "14:30", "15:45", "HQ 225 - Humanities Quadrangle 225", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ], [ "11:35", "12:25", "HQ L02 - Humanities Quadrangle L02", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -72966,10 +158659,113 @@ "classnotes": "", "final_exam": "Saturday, May 6, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85138\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85138/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987260699272156, + 0.9989078044891357, + 0.9989317059516907, + 0.9987456798553467, + 0.9987963438034058, + 0.9988916516304016 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988797307014465, + 0.9988974332809448, + 0.9988757967948914, + 0.9978232383728027, + 0.998921275138855, + 0.9988471269607544 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984734654426575, + 0.9989256262779236, + 0.9989334940910339, + 0.9988347887992859, + 0.997117280960083, + 0.9989261031150818 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 0.9444444444444444, + "final_counts": { + "POSITIVE": 17, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9444444444444444, + "NEGATIVE": 0.05555555555555555 + } + } }, { "season_code": "202301", @@ -73006,7 +158802,7 @@ "14:30", "15:45", "HQ 225 - Humanities Quadrangle 225", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -73014,7 +158810,7 @@ "14:30", "15:45", "HQ 225 - Humanities Quadrangle 225", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -73022,7 +158818,7 @@ "11:35", "12:25", "HQ L02 - Humanities Quadrangle L02", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -73036,10 +158832,139 @@ "classnotes": "", "final_exam": "Saturday, May 6, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85139\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85139/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989120960235596, + 0.998916506767273, + 0.9989207983016968, + 0.998885452747345, + 0.9987108707427979, + 0.998783528804779, + 0.9988401532173157, + 0.9989252686500549, + 0.998342752456665, + 0.9988757967948914, + 0.9989081621170044 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987735152244568, + 0.998918890953064, + 0.9988616704940796, + 0.9960786700248718, + 0.9879576563835144, + 0.9988958835601807, + 0.9987159967422485, + 0.9959409236907959, + 0.9964998960494995 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987233281135559, + 0.998769223690033, + 0.9988652467727661, + 0.9988829493522644, + 0.998745322227478, + 0.9989210367202759, + 0.9988952875137329, + 0.9987618923187256, + 0.9989264607429504, + 0.9988975524902344, + 0.9989235997200012 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 30, + "final_proportion": 0.967741935483871, + "final_counts": { + "POSITIVE": 30, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.967741935483871, + "NEGATIVE": 0.03225806451612903 + } + } }, { "season_code": "202301", @@ -73076,7 +159001,7 @@ "11:35", "12:50", "HQ 209 - Humanities Quadrangle 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -73084,7 +159009,7 @@ "11:35", "12:50", "HQ 209 - Humanities Quadrangle 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -73092,7 +159017,7 @@ "11:35", "12:25", "HQ L02 - Humanities Quadrangle L02", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -73106,10 +159031,107 @@ "classnotes": "", "final_exam": "Saturday, May 6, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85140\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85140/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986359477043152, + 0.9988858103752136, + 0.9988577365875244, + 0.998881995677948, + 0.9986569881439209 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989091157913208, + 0.9988452196121216, + 0.9984450936317444, + 0.9979948997497559, + 0.9987732768058777 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985816478729248, + 0.9988943934440613, + 0.9988465309143066, + 0.9962102174758911, + 0.9989056587219238, + 0.998364269733429 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 16 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -73146,7 +159168,7 @@ "9:00", "10:15", "HQ C15 - Humanities Quadrangle C15", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -73154,13 +159176,13 @@ "9:00", "10:15", "HQ C15 - Humanities Quadrangle C15", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ], [ "11:35", "12:25", "", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -73174,10 +159196,101 @@ "classnotes": "", "final_exam": "Saturday, May 6, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85743\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85743/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987531900405884, + 0.9930398464202881, + 0.9988585710525513, + 0.9986932873725891, + 0.998768150806427 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989219903945923, + 0.9994927644729614, + 0.998936116695404, + 0.9988885521888733 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983943104743958, + 0.9994373917579651, + 0.9988338351249695 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 0.8333333333333334, + "final_counts": { + "POSITIVE": 10, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + } + } }, { "season_code": "202301", @@ -73208,7 +159321,7 @@ "14:10", "16:00", "DOW 420 - Dow Hall 420", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ], "Thursday": [ @@ -73216,7 +159329,7 @@ "14:10", "16:00", "DOW 420 - Dow Hall 420", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ] }, @@ -73233,7 +159346,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -73289,7 +159430,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -73345,7 +159514,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -73389,7 +159586,7 @@ "11:35", "12:50", "KGL 123 - Kline Geology Laboratory 123", - "https:\/\/map.yale.edu\/?id=1910#!m\/559996" + "https://map.yale.edu/?id=1910#!m/559996" ] ], "Thursday": [ @@ -73397,7 +159594,7 @@ "11:35", "12:50", "KGL 123 - Kline Geology Laboratory 123", - "https:\/\/map.yale.edu\/?id=1910#!m\/559996" + "https://map.yale.edu/?id=1910#!m/559996" ] ] }, @@ -73413,10 +159610,159 @@ "classnotes": "", "final_exam": "Monday, May 8, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84051\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84051/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988229870796204, + 0.998746395111084, + 0.9988439083099365, + 0.9988125562667847, + 0.9987326264381409, + 0.9988486766815186, + 0.9987674951553345, + 0.9987096786499023, + 0.9989012479782104, + 0.9982265830039978, + 0.9989160299301147, + 0.9988980293273926 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998600423336029, + 0.9948050379753113, + 0.9994884729385376, + 0.9995003938674927, + 0.9987163543701172, + 0.9988633394241333, + 0.9908673763275146, + 0.9995038509368896, + 0.9987964630126953, + 0.9986912608146667, + 0.9896962642669678, + 0.9988836646080017, + 0.9995070695877075, + 0.9987861514091492, + 0.998934805393219 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 6 + }, + "sentiment_distribution": { + "POSITIVE": 0.6, + "NEGATIVE": 0.4 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9343546628952026, + 0.9985175728797913, + 0.9995015859603882, + 0.9994756579399109, + 0.9989269375801086, + 0.9989057779312134, + 0.9994738698005676, + 0.9989359974861145, + 0.9994420409202576, + 0.9988346695899963, + 0.9987185001373291, + 0.9917426705360413, + 0.9989321827888489, + 0.9989303946495056 + ], + "sentiment_counts": { + "NEGATIVE": 5, + "POSITIVE": 9 + }, + "sentiment_distribution": { + "NEGATIVE": 0.35714285714285715, + "POSITIVE": 0.6428571428571429 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6428571428571429 + ] + }, + "final_label": "POSITIVE", + "final_count": 30, + "final_proportion": 0.7317073170731707, + "final_counts": { + "POSITIVE": 30, + "NEGATIVE": 11 + }, + "final_distribution": { + "POSITIVE": 0.7317073170731707, + "NEGATIVE": 0.2682926829268293 + } + } }, { "season_code": "202301", @@ -73454,7 +159800,7 @@ "13:30", "16:30", "SCL 142 - Sterling Chemistry Laboratory 142", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -73463,7 +159809,7 @@ "Sc" ], "flags": [ - "YC E&EB: Intermdiate\/Advanced", + "YC E&EB: Intermdiate/Advanced", "YC E&EB: Biodiversity Elective", "YC E&EB: Organismal Elective", "YC E&EB: BS Elective" @@ -73473,10 +159819,87 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83777\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83777/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988229870796204 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989365935325623, + 0.998678982257843 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988942742347717, + 0.9988768696784973, + 0.9983723759651184 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 6 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -73523,7 +159946,7 @@ "Sc" ], "flags": [ - "YC E&EB: Intermdiate\/Advanced", + "YC E&EB: Intermdiate/Advanced", "YC E&EB: Organismal Elective", "YC E&EB: BS Elective" ], @@ -73532,10 +159955,157 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85104\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85104/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983659386634827, + 0.9987364411354065, + 0.9944995641708374, + 0.9988848567008972, + 0.9987072944641113, + 0.9987298846244812, + 0.9988545179367065, + 0.9988364577293396, + 0.9988834261894226, + 0.998666524887085, + 0.9988943934440613 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988765120506287, + 0.9989253878593445, + 0.998683512210846, + 0.999496340751648, + 0.998897910118103, + 0.9987809062004089, + 0.9989301562309265, + 0.9988914132118225, + 0.9988992214202881, + 0.9988947510719299, + 0.9989076852798462, + 0.9988032579421997, + 0.9993822574615479, + 0.9989226460456848 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988144636154175, + 0.9982553124427795, + 0.998889148235321, + 0.9987633228302002, + 0.9989232420921326, + 0.997117280960083, + 0.9989331364631653, + 0.9988935589790344, + 0.9989227652549744, + 0.9989369511604309, + 0.9985033273696899, + 0.9988836646080017, + 0.9989045858383179, + 0.9944909811019897, + 0.9988859295845032 + ], + "sentiment_counts": { + "POSITIVE": 15, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 38, + "final_proportion": 0.95, + "final_counts": { + "POSITIVE": 38, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.95, + "NEGATIVE": 0.05 + } + } }, { "season_code": "202301", @@ -73582,7 +160152,7 @@ "Sc" ], "flags": [ - "YC E&EB: Intermdiate\/Advanced", + "YC E&EB: Intermdiate/Advanced", "YC E&EB: Organismal Elective", "YC E&EB: BS Elective" ], @@ -73591,10 +160161,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85105\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85105/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -73632,7 +160230,7 @@ "10:30", "11:20", "OML 202 - Osborn Memorial Laboratories 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/559958" + "https://map.yale.edu/?id=1910#!m/559958" ] ], "Thursday": [ @@ -73640,7 +160238,7 @@ "10:30", "11:20", "OML 202 - Osborn Memorial Laboratories 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/559958" + "https://map.yale.edu/?id=1910#!m/559958" ] ] }, @@ -73657,10 +160255,269 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83780\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83780/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987279772758484, + 0.9985954165458679, + 0.9987332224845886, + 0.9987314343452454, + 0.9988258481025696, + 0.9986466765403748, + 0.9978749752044678, + 0.9987523555755615, + 0.9989022016525269, + 0.9987984895706177, + 0.9988395571708679, + 0.998719334602356, + 0.9982428550720215, + 0.9995075464248657, + 0.9988803267478943, + 0.9988411068916321, + 0.9987465143203735, + 0.9987671375274658, + 0.9969438910484314, + 0.9985107779502869, + 0.9983468055725098, + 0.9989197254180908, + 0.9989374279975891, + 0.9869784116744995, + 0.7011924982070923, + 0.9988511800765991, + 0.9988724589347839, + 0.9966967105865479, + 0.998688280582428, + 0.9988464117050171 + ], + "sentiment_counts": { + "POSITIVE": 28, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.9333333333333333, + "NEGATIVE": 0.06666666666666667 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9333333333333333 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984455704689026, + 0.9948533177375793, + 0.9989233613014221, + 0.9984551668167114, + 0.9964326620101929, + 0.9988215565681458, + 0.9989109039306641, + 0.9987753033638, + 0.9981306195259094, + 0.9987680315971375, + 0.9989153146743774, + 0.9995132684707642, + 0.9989226460456848, + 0.9987643957138062, + 0.9985892176628113, + 0.998829185962677, + 0.9988200068473816, + 0.99874347448349, + 0.9989196062088013, + 0.9951246380805969, + 0.9993971586227417, + 0.9988899827003479, + 0.9988576173782349, + 0.9987792372703552, + 0.8818461298942566, + 0.9988971948623657, + 0.9989118576049805, + 0.9994568228721619, + 0.9989264607429504, + 0.9977097511291504, + 0.9988905787467957, + 0.9888020753860474, + 0.9989081621170044 + ], + "sentiment_counts": { + "POSITIVE": 29, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.8787878787878788, + "NEGATIVE": 0.12121212121212122 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8787878787878788 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987748265266418, + 0.9955481290817261, + 0.9987565279006958, + 0.9974592328071594, + 0.9979643821716309, + 0.9976740479469299, + 0.9989176988601685, + 0.9974592328071594, + 0.9988358616828918, + 0.9989134073257446, + 0.9983104467391968, + 0.9984081387519836, + 0.9989277720451355, + 0.9989156723022461, + 0.9995167255401611, + 0.9987195730209351, + 0.9989181756973267, + 0.9891014695167542, + 0.9989330172538757, + 0.997117280960083, + 0.9988975524902344, + 0.9994968175888062, + 0.9988027811050415, + 0.9988798499107361, + 0.9994986057281494, + 0.998335063457489, + 0.9987004995346069, + 0.998877227306366, + 0.9989356398582458, + 0.994907557964325, + 0.9989326596260071, + 0.9958242177963257, + 0.9989280104637146 + ], + "sentiment_counts": { + "POSITIVE": 28, + "NEGATIVE": 5 + }, + "sentiment_distribution": { + "POSITIVE": 0.8484848484848485, + "NEGATIVE": 0.15151515151515152 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8484848484848485 + ] + }, + "final_label": "POSITIVE", + "final_count": 85, + "final_proportion": 0.8854166666666666, + "final_counts": { + "POSITIVE": 85, + "NEGATIVE": 11 + }, + "final_distribution": { + "POSITIVE": 0.8854166666666666, + "NEGATIVE": 0.11458333333333333 + } + } }, { "season_code": "202301", @@ -73691,7 +160548,7 @@ "14:30", "15:20", "WTS A68 - Watson Center 60 Sachem Street A68", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -73708,7 +160565,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -73739,7 +160624,7 @@ "19:00", "19:50", "WTS B39 - Watson Center 60 Sachem Street B39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -73756,7 +160641,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -73787,7 +160700,7 @@ "14:30", "15:20", "WTS B30 - Watson Center 60 Sachem Street B30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -73804,7 +160717,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -73835,7 +160776,7 @@ "19:00", "19:50", "WTS B30 - Watson Center 60 Sachem Street B30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -73852,7 +160793,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -73890,7 +160859,7 @@ "10:30", "11:20", "ESC 110 - Environmental Sciences Center 110", - "https:\/\/map.yale.edu\/?id=1910#!m\/560020" + "https://map.yale.edu/?id=1910#!m/560020" ] ], "Thursday": [ @@ -73898,7 +160867,7 @@ "10:30", "11:20", "ESC 110 - Environmental Sciences Center 110", - "https:\/\/map.yale.edu\/?id=1910#!m\/560020" + "https://map.yale.edu/?id=1910#!m/560020" ] ] }, @@ -73907,7 +160876,7 @@ "Sc" ], "flags": [ - "YC E&EB: Intermdiate\/Advanced", + "YC E&EB: Intermdiate/Advanced", "YC E&EB: Biodiversity Elective", "YC E&EB: Organismal Elective", "YC E&EB: BS Elective", @@ -73919,10 +160888,89 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83784\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83784/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9797621369361877, + 0.9987292885780334 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987120628356934, + 0.9988585710525513 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989257454872131, + 0.9988059997558594, + 0.998909592628479 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 7 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -73953,7 +161001,7 @@ "14:30", "15:20", "WTS A38 - Watson Center 60 Sachem Street A38", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -73970,7 +161018,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -74001,7 +161077,7 @@ "17:00", "17:50", "WTS B30 - Watson Center 60 Sachem Street B30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -74018,7 +161094,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -74056,7 +161160,7 @@ "9:25", "10:15", "ESC 110 - Environmental Sciences Center 110", - "https:\/\/map.yale.edu\/?id=1910#!m\/560020" + "https://map.yale.edu/?id=1910#!m/560020" ] ], "Wednesday": [ @@ -74064,7 +161168,7 @@ "9:25", "10:15", "ESC 110 - Environmental Sciences Center 110", - "https:\/\/map.yale.edu\/?id=1910#!m\/560020" + "https://map.yale.edu/?id=1910#!m/560020" ] ], "Friday": [ @@ -74072,7 +161176,7 @@ "9:25", "10:15", "ESC 110 - Environmental Sciences Center 110", - "https:\/\/map.yale.edu\/?id=1910#!m\/560020" + "https://map.yale.edu/?id=1910#!m/560020" ] ] }, @@ -74081,8 +161185,8 @@ "Sc" ], "flags": [ - "YC E&EB: Intermdiate\/Advanced", - "YC E&EB: Organismal Lec\/Labs", + "YC E&EB: Intermdiate/Advanced", + "YC E&EB: Organismal Lec/Labs", "YC E&EB: Biodiversity Elective", "YC E&EB: BS Elective" ], @@ -74091,10 +161195,181 @@ "classnotes": "", "final_exam": "Saturday, May 6, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83788\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83788/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988683462142944, + 0.9988460540771484, + 0.9987132549285889, + 0.9988872408866882, + 0.9989109039306641, + 0.998908281326294, + 0.9986729621887207, + 0.9988977909088135, + 0.9961430430412292, + 0.9987117052078247, + 0.9988621473312378, + 0.9988790154457092, + 0.9989157915115356, + 0.9988014698028564, + 0.9988749623298645, + 0.9988648891448975, + 0.9988382458686829 + ], + "sentiment_counts": { + "POSITIVE": 17, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989137649536133, + 0.9988634586334229, + 0.9988501071929932, + 0.998863697052002, + 0.9986458420753479, + 0.9990615248680115, + 0.9976015686988831, + 0.9989007711410522, + 0.998923122882843, + 0.9989020824432373, + 0.9971866011619568, + 0.982548177242279, + 0.9986512064933777, + 0.9986686706542969, + 0.9988815188407898, + 0.9988982677459717 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.8125, + "NEGATIVE": 0.1875 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8125 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989355206489563, + 0.9977263808250427, + 0.9988150596618652, + 0.9989163875579834, + 0.9988784193992615, + 0.9989272952079773, + 0.9988484382629395, + 0.9988560676574707, + 0.9927005171775818, + 0.9988866448402405, + 0.9993112087249756, + 0.9988983869552612, + 0.9989319443702698, + 0.9988916516304016, + 0.9989226460456848, + 0.9917038679122925, + 0.9986999034881592, + 0.998696506023407, + 0.9989155530929565 + ], + "sentiment_counts": { + "POSITIVE": 17, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8947368421052632, + "NEGATIVE": 0.10526315789473684 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8947368421052632 + ] + }, + "final_label": "POSITIVE", + "final_count": 47, + "final_proportion": 0.9038461538461539, + "final_counts": { + "POSITIVE": 47, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.9038461538461539, + "NEGATIVE": 0.09615384615384616 + } + } }, { "season_code": "202301", @@ -74132,7 +161407,7 @@ "13:30", "16:30", "ESC 210 - Environmental Sciences Center 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560020" + "https://map.yale.edu/?id=1910#!m/560020" ] ] }, @@ -74141,8 +161416,8 @@ "Sc" ], "flags": [ - "YC E&EB: Intermdiate\/Advanced", - "YC E&EB: Organismal Lec\/Labs", + "YC E&EB: Intermdiate/Advanced", + "YC E&EB: Organismal Lec/Labs", "YC E&EB: Biodiversity Elective", "YC E&EB: BS Elective" ], @@ -74151,10 +161426,113 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83792\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83792/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9980489015579224, + 0.9987398982048035, + 0.9987140893936157, + 0.998819887638092, + 0.9987471103668213, + 0.9988585710525513 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985629916191101, + 0.9989408850669861, + 0.9988667964935303, + 0.9989301562309265, + 0.9987577199935913, + 0.9988911747932434 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9990125894546509, + 0.9988963603973389, + 0.9989257454872131, + 0.998906135559082, + 0.9980030655860901, + 0.9988946318626404 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 5 + }, + "sentiment_distribution": { + "NEGATIVE": 0.16666666666666666, + "POSITIVE": 0.8333333333333334 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 0.8888888888888888, + "final_counts": { + "POSITIVE": 16, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + } + } }, { "season_code": "202301", @@ -74193,7 +161571,7 @@ "11:35", "12:50", "ESC 110 - Environmental Sciences Center 110", - "https:\/\/map.yale.edu\/?id=1910#!m\/560020" + "https://map.yale.edu/?id=1910#!m/560020" ] ], "Thursday": [ @@ -74201,7 +161579,7 @@ "11:35", "12:50", "ESC 110 - Environmental Sciences Center 110", - "https:\/\/map.yale.edu\/?id=1910#!m\/560020" + "https://map.yale.edu/?id=1910#!m/560020" ] ] }, @@ -74211,7 +161589,7 @@ ], "flags": [ "YC EVST: Core BA Natural Scie", - "YC EVST: B.S. NatSci\/Field Lab", + "YC EVST: B.S. NatSci/Field Lab", "YC EVST: Core BS Natural Scie" ], "regnotes": "", @@ -74219,10 +161597,135 @@ "classnotes": "Preference will be given to YSE students, EVST seniors and juniors, and E&EB majors.", "final_exam": "Monday, May 8, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83984\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83984/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988021850585938, + 0.9988093376159668, + 0.9987090826034546, + 0.9989235997200012, + 0.9988585710525513, + 0.9985994696617126, + 0.9988605976104736, + 0.9988070726394653, + 0.998830258846283 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988647699356079, + 0.9987874627113342, + 0.9988347887992859, + 0.9989232420921326, + 0.9988313317298889, + 0.9989027976989746, + 0.9984787106513977, + 0.9985548853874207 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981436729431152, + 0.9989182949066162, + 0.9987651109695435, + 0.9988358616828918, + 0.9989180564880371, + 0.9930166006088257, + 0.9989044666290283, + 0.9987332224845886, + 0.9989073276519775, + 0.9989186525344849, + 0.9988166093826294, + 0.9989036321640015 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9166666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 28, + "final_proportion": 0.9655172413793104, + "final_counts": { + "POSITIVE": 28, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9655172413793104, + "NEGATIVE": 0.034482758620689655 + } + } }, { "season_code": "202301", @@ -74259,7 +161762,7 @@ "11:35", "12:25", "OML 201 - Osborn Memorial Laboratories 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/559958" + "https://map.yale.edu/?id=1910#!m/559958" ] ], "Wednesday": [ @@ -74267,7 +161770,7 @@ "11:35", "12:25", "OML 201 - Osborn Memorial Laboratories 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/559958" + "https://map.yale.edu/?id=1910#!m/559958" ] ], "Friday": [ @@ -74275,7 +161778,7 @@ "11:35", "12:25", "OML 201 - Osborn Memorial Laboratories 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/559958" + "https://map.yale.edu/?id=1910#!m/559958" ] ] }, @@ -74284,7 +161787,7 @@ "Sc" ], "flags": [ - "YC E&EB: Intermdiate\/Advanced", + "YC E&EB: Intermdiate/Advanced", "YC E&EB: Biodiversity Elective", "YC E&EB: BS Elective" ], @@ -74293,10 +161796,109 @@ "classnotes": "", "final_exam": "Saturday, May 6, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83795\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83795/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989211559295654, + 0.9983598589897156, + 0.9988309741020203, + 0.9988791346549988 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9986966252326965, + 0.990018367767334, + 0.9989012479782104, + 0.9978106617927551, + 0.998134434223175 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.4, + "NEGATIVE": 0.6 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.6 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9986624717712402, + 0.9955435395240784, + 0.9986984729766846, + 0.9986847043037415, + 0.9983398914337158, + 0.9988821148872375, + 0.9913396239280701 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.7142857142857143, + "NEGATIVE": 0.2857142857142857 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7142857142857143 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 0.6875, + "final_counts": { + "POSITIVE": 11, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.6875, + "NEGATIVE": 0.3125 + } + } }, { "season_code": "202301", @@ -74333,7 +161935,7 @@ "13:30", "16:30", "ESC 200 - Environmental Sciences Center 200", - "https:\/\/map.yale.edu\/?id=1910#!m\/560020" + "https://map.yale.edu/?id=1910#!m/560020" ] ] }, @@ -74342,7 +161944,7 @@ "Sc" ], "flags": [ - "YC E&EB: Intermdiate\/Advanced", + "YC E&EB: Intermdiate/Advanced", "YC E&EB: Biodiversity Elective", "YC E&EB: BS Elective" ], @@ -74351,10 +161953,93 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83718\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83718/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998791515827179, + 0.9980769157409668 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987826943397522, + 0.9986740350723267, + 0.9989546537399292, + 0.9977994561195374 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988184571266174, + 0.9961158037185669 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 0.75, + "final_counts": { + "POSITIVE": 6, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + } + } }, { "season_code": "202301", @@ -74391,7 +162076,7 @@ "13:30", "16:30", "ESC 200 - Environmental Sciences Center 200", - "https:\/\/map.yale.edu\/?id=1910#!m\/560020" + "https://map.yale.edu/?id=1910#!m/560020" ] ] }, @@ -74400,7 +162085,7 @@ "Sc" ], "flags": [ - "YC E&EB: Intermdiate\/Advanced", + "YC E&EB: Intermdiate/Advanced", "YC E&EB: Biodiversity Elective", "YC E&EB: BS Elective" ], @@ -74409,10 +162094,38 @@ "classnotes": "", "final_exam": "Sunday, May 7, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85101\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/85101/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -74453,7 +162166,7 @@ "11:35", "12:50", "SA10 10 - 10 Sachem Street 10", - "https:\/\/map.yale.edu\/?id=1910#!m\/559538" + "https://map.yale.edu/?id=1910#!m/559538" ] ], "Thursday": [ @@ -74461,7 +162174,7 @@ "11:35", "12:50", "SA10 10 - 10 Sachem Street 10", - "https:\/\/map.yale.edu\/?id=1910#!m\/559538" + "https://map.yale.edu/?id=1910#!m/559538" ] ] }, @@ -74478,15 +162191,136 @@ "classnotes": "Instructor permission is required. Students should request permission via YCS November 14-17. Those who are granted permission to take the class will be informed via YCS by November 28th.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83369\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83369/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "", - "description": "Individual or small-group study for qualified students who wish to investigate an area of ecology or evolutionary biology not presently covered by regular courses. A student must be sponsored by a faculty member who sets requirements and meets weekly with the student. One or more written examinations and\/or a term paper are required. To register, the student must submit a written plan of study approved by the faculty instructor to the director of undergraduate studies. Students are encouraged to apply during the term preceding the tutorial. Proposals must be submitted no later than the first day of the second week of the term in which the student enrolls in the tutorial. The final paper is due in the hands of the director of undergraduate studies by the last day of reading period in the term of enrollment. In special cases, with approval of the director of undergraduate studies, this course may be elected for more than one term, but only one term may be counted as an elective toward the requirements of the major. Normally, faculty sponsors must be members of the EEB department.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998174786567688, + 0.996889054775238, + 0.9988119602203369, + 0.9981677532196045, + 0.9972032308578491, + 0.9986656904220581, + 0.9987412095069885, + 0.9011431336402893 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989271759986877, + 0.9979870319366455, + 0.9989193677902222, + 0.9989039897918701, + 0.99885094165802, + 0.998734176158905, + 0.9989025592803955, + 0.998918890953064, + 0.996712327003479 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988792538642883, + 0.997117280960083, + 0.998920202255249, + 0.9987585544586182, + 0.9982049465179443, + 0.9989253878593445, + 0.9988766312599182, + 0.9718582630157471, + 0.9974592328071594, + 0.9989252686500549, + 0.9988194108009338 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 28, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 28 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } + }, + { + "season_code": "202301", + "requirements": "", + "description": "Individual or small-group study for qualified students who wish to investigate an area of ecology or evolutionary biology not presently covered by regular courses. A student must be sponsored by a faculty member who sets requirements and meets weekly with the student. One or more written examinations and/or a term paper are required. To register, the student must submit a written plan of study approved by the faculty instructor to the director of undergraduate studies. Students are encouraged to apply during the term preceding the tutorial. Proposals must be submitted no later than the first day of the second week of the term in which the student enrolls in the tutorial. The final paper is due in the hands of the director of undergraduate studies by the last day of reading period in the term of enrollment. In special cases, with approval of the director of undergraduate studies, this course may be elected for more than one term, but only one term may be counted as an elective toward the requirements of the major. Normally, faculty sponsors must be members of the EEB department.", "short_title": "Tutorial", "title": "Tutorial", "school": "YC", @@ -74521,10 +162355,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83722\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83722/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -74564,10 +162426,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83723\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83723/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -74607,10 +162497,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83726\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83726/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -74647,7 +162565,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -74687,10 +162633,111 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83732\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83732/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981776475906372, + 0.9987635612487793, + 0.997765064239502, + 0.9988744854927063, + 0.9989004135131836, + 0.9987334609031677 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9957915544509888, + 0.9988201260566711, + 0.9736211895942688, + 0.9982656836509705, + 0.9994924068450928 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.4, + "POSITIVE": 0.6 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985468983650208, + 0.7781638503074646, + 0.9988582134246826, + 0.9989022016525269, + 0.9946900606155396, + 0.9988147020339966 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 0.8235294117647058, + "final_counts": { + "POSITIVE": 14, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.8235294117647058, + "NEGATIVE": 0.17647058823529413 + } + } }, { "season_code": "202301", @@ -74730,15 +162777,43 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83737\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83737/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "Topics to be announced. Graded Satisfactory\/Unsatisfactory.", + "description": "Topics to be announced. Graded Satisfactory/Unsatisfactory.", "short_title": "Advanced Topics in Ecology an...", "title": "Advanced Topics in Ecology and Evolutionary Biology", "school": "GS", @@ -74770,7 +162845,7 @@ "14:30", "16:30", "OML 201 - Osborn Memorial Laboratories 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/559958" + "https://map.yale.edu/?id=1910#!m/559958" ] ] }, @@ -74782,10 +162857,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83740\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83740/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -74823,7 +162926,7 @@ "13:30", "16:30", "SCL 142 - Sterling Chemistry Laboratory 142", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -74837,10 +162940,87 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83777\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83777/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988229870796204 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989365935325623, + 0.998678982257843 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988942742347717, + 0.9988768696784973, + 0.9983723759651184 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 6 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -74890,10 +163070,157 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85104\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85104/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983659386634827, + 0.9987364411354065, + 0.9944995641708374, + 0.9988848567008972, + 0.9987072944641113, + 0.9987298846244812, + 0.9988545179367065, + 0.9988364577293396, + 0.9988834261894226, + 0.998666524887085, + 0.9988943934440613 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988765120506287, + 0.9989253878593445, + 0.998683512210846, + 0.999496340751648, + 0.998897910118103, + 0.9987809062004089, + 0.9989301562309265, + 0.9988914132118225, + 0.9988992214202881, + 0.9988947510719299, + 0.9989076852798462, + 0.9988032579421997, + 0.9993822574615479, + 0.9989226460456848 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988144636154175, + 0.9982553124427795, + 0.998889148235321, + 0.9987633228302002, + 0.9989232420921326, + 0.997117280960083, + 0.9989331364631653, + 0.9988935589790344, + 0.9989227652549744, + 0.9989369511604309, + 0.9985033273696899, + 0.9988836646080017, + 0.9989045858383179, + 0.9944909811019897, + 0.9988859295845032 + ], + "sentiment_counts": { + "POSITIVE": 15, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 38, + "final_proportion": 0.95, + "final_counts": { + "POSITIVE": 38, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.95, + "NEGATIVE": 0.05 + } + } }, { "season_code": "202301", @@ -74943,10 +163270,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85105\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85105/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -74984,7 +163339,7 @@ "10:30", "11:20", "OML 202 - Osborn Memorial Laboratories 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/559958" + "https://map.yale.edu/?id=1910#!m/559958" ] ], "Thursday": [ @@ -74992,7 +163347,7 @@ "10:30", "11:20", "OML 202 - Osborn Memorial Laboratories 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/559958" + "https://map.yale.edu/?id=1910#!m/559958" ] ] }, @@ -75006,10 +163361,269 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83780\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83780/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987279772758484, + 0.9985954165458679, + 0.9987332224845886, + 0.9987314343452454, + 0.9988258481025696, + 0.9986466765403748, + 0.9978749752044678, + 0.9987523555755615, + 0.9989022016525269, + 0.9987984895706177, + 0.9988395571708679, + 0.998719334602356, + 0.9982428550720215, + 0.9995075464248657, + 0.9988803267478943, + 0.9988411068916321, + 0.9987465143203735, + 0.9987671375274658, + 0.9969438910484314, + 0.9985107779502869, + 0.9983468055725098, + 0.9989197254180908, + 0.9989374279975891, + 0.9869784116744995, + 0.7011924982070923, + 0.9988511800765991, + 0.9988724589347839, + 0.9966967105865479, + 0.998688280582428, + 0.9988464117050171 + ], + "sentiment_counts": { + "POSITIVE": 28, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.9333333333333333, + "NEGATIVE": 0.06666666666666667 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9333333333333333 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984455704689026, + 0.9948533177375793, + 0.9989233613014221, + 0.9984551668167114, + 0.9964326620101929, + 0.9988215565681458, + 0.9989109039306641, + 0.9987753033638, + 0.9981306195259094, + 0.9987680315971375, + 0.9989153146743774, + 0.9995132684707642, + 0.9989226460456848, + 0.9987643957138062, + 0.9985892176628113, + 0.998829185962677, + 0.9988200068473816, + 0.99874347448349, + 0.9989196062088013, + 0.9951246380805969, + 0.9993971586227417, + 0.9988899827003479, + 0.9988576173782349, + 0.9987792372703552, + 0.8818461298942566, + 0.9988971948623657, + 0.9989118576049805, + 0.9994568228721619, + 0.9989264607429504, + 0.9977097511291504, + 0.9988905787467957, + 0.9888020753860474, + 0.9989081621170044 + ], + "sentiment_counts": { + "POSITIVE": 29, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.8787878787878788, + "NEGATIVE": 0.12121212121212122 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8787878787878788 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987748265266418, + 0.9955481290817261, + 0.9987565279006958, + 0.9974592328071594, + 0.9979643821716309, + 0.9976740479469299, + 0.9989176988601685, + 0.9974592328071594, + 0.9988358616828918, + 0.9989134073257446, + 0.9983104467391968, + 0.9984081387519836, + 0.9989277720451355, + 0.9989156723022461, + 0.9995167255401611, + 0.9987195730209351, + 0.9989181756973267, + 0.9891014695167542, + 0.9989330172538757, + 0.997117280960083, + 0.9988975524902344, + 0.9994968175888062, + 0.9988027811050415, + 0.9988798499107361, + 0.9994986057281494, + 0.998335063457489, + 0.9987004995346069, + 0.998877227306366, + 0.9989356398582458, + 0.994907557964325, + 0.9989326596260071, + 0.9958242177963257, + 0.9989280104637146 + ], + "sentiment_counts": { + "POSITIVE": 28, + "NEGATIVE": 5 + }, + "sentiment_distribution": { + "POSITIVE": 0.8484848484848485, + "NEGATIVE": 0.15151515151515152 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8484848484848485 + ] + }, + "final_label": "POSITIVE", + "final_count": 85, + "final_proportion": 0.8854166666666666, + "final_counts": { + "POSITIVE": 85, + "NEGATIVE": 11 + }, + "final_distribution": { + "POSITIVE": 0.8854166666666666, + "NEGATIVE": 0.11458333333333333 + } + } }, { "season_code": "202301", @@ -75047,7 +163661,7 @@ "10:30", "11:20", "ESC 110 - Environmental Sciences Center 110", - "https:\/\/map.yale.edu\/?id=1910#!m\/560020" + "https://map.yale.edu/?id=1910#!m/560020" ] ], "Thursday": [ @@ -75055,7 +163669,7 @@ "10:30", "11:20", "ESC 110 - Environmental Sciences Center 110", - "https:\/\/map.yale.edu\/?id=1910#!m\/560020" + "https://map.yale.edu/?id=1910#!m/560020" ] ] }, @@ -75067,15 +163681,94 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83784\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83784/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "", - "description": "This five-week discussion seminar considers issues related to the responsible conduct of research. Topics addressed include research misconduct, plagiarism, data acquisition and management, mentoring and collaboration, authorship and peer review, the use of animals and humans in scientific research, sexual harassment, diversity, and balancing professional and personal life. Graded Satisfactory\/Unsatisfactory.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9797621369361877, + 0.9987292885780334 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987120628356934, + 0.9988585710525513 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989257454872131, + 0.9988059997558594, + 0.998909592628479 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 7 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } + }, + { + "season_code": "202301", + "requirements": "", + "description": "This five-week discussion seminar considers issues related to the responsible conduct of research. Topics addressed include research misconduct, plagiarism, data acquisition and management, mentoring and collaboration, authorship and peer review, the use of animals and humans in scientific research, sexual harassment, diversity, and balancing professional and personal life. Graded Satisfactory/Unsatisfactory.", "short_title": "Responsible Conduct of Research", "title": "Responsible Conduct of Research", "school": "GS", @@ -75119,10 +163812,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83745\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83745/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -75160,7 +163881,7 @@ "9:25", "10:15", "ESC 110 - Environmental Sciences Center 110", - "https:\/\/map.yale.edu\/?id=1910#!m\/560020" + "https://map.yale.edu/?id=1910#!m/560020" ] ], "Wednesday": [ @@ -75168,7 +163889,7 @@ "9:25", "10:15", "ESC 110 - Environmental Sciences Center 110", - "https:\/\/map.yale.edu\/?id=1910#!m\/560020" + "https://map.yale.edu/?id=1910#!m/560020" ] ], "Friday": [ @@ -75176,7 +163897,7 @@ "9:25", "10:15", "ESC 110 - Environmental Sciences Center 110", - "https:\/\/map.yale.edu\/?id=1910#!m\/560020" + "https://map.yale.edu/?id=1910#!m/560020" ] ] }, @@ -75190,10 +163911,181 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83788\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83788/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988683462142944, + 0.9988460540771484, + 0.9987132549285889, + 0.9988872408866882, + 0.9989109039306641, + 0.998908281326294, + 0.9986729621887207, + 0.9988977909088135, + 0.9961430430412292, + 0.9987117052078247, + 0.9988621473312378, + 0.9988790154457092, + 0.9989157915115356, + 0.9988014698028564, + 0.9988749623298645, + 0.9988648891448975, + 0.9988382458686829 + ], + "sentiment_counts": { + "POSITIVE": 17, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989137649536133, + 0.9988634586334229, + 0.9988501071929932, + 0.998863697052002, + 0.9986458420753479, + 0.9990615248680115, + 0.9976015686988831, + 0.9989007711410522, + 0.998923122882843, + 0.9989020824432373, + 0.9971866011619568, + 0.982548177242279, + 0.9986512064933777, + 0.9986686706542969, + 0.9988815188407898, + 0.9988982677459717 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.8125, + "NEGATIVE": 0.1875 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8125 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989355206489563, + 0.9977263808250427, + 0.9988150596618652, + 0.9989163875579834, + 0.9988784193992615, + 0.9989272952079773, + 0.9988484382629395, + 0.9988560676574707, + 0.9927005171775818, + 0.9988866448402405, + 0.9993112087249756, + 0.9988983869552612, + 0.9989319443702698, + 0.9988916516304016, + 0.9989226460456848, + 0.9917038679122925, + 0.9986999034881592, + 0.998696506023407, + 0.9989155530929565 + ], + "sentiment_counts": { + "POSITIVE": 17, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8947368421052632, + "NEGATIVE": 0.10526315789473684 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8947368421052632 + ] + }, + "final_label": "POSITIVE", + "final_count": 47, + "final_proportion": 0.9038461538461539, + "final_counts": { + "POSITIVE": 47, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.9038461538461539, + "NEGATIVE": 0.09615384615384616 + } + } }, { "season_code": "202301", @@ -75231,7 +164123,7 @@ "13:30", "16:30", "ESC 210 - Environmental Sciences Center 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560020" + "https://map.yale.edu/?id=1910#!m/560020" ] ] }, @@ -75245,10 +164137,113 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83792\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83792/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9980489015579224, + 0.9987398982048035, + 0.9987140893936157, + 0.998819887638092, + 0.9987471103668213, + 0.9988585710525513 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985629916191101, + 0.9989408850669861, + 0.9988667964935303, + 0.9989301562309265, + 0.9987577199935913, + 0.9988911747932434 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9990125894546509, + 0.9988963603973389, + 0.9989257454872131, + 0.998906135559082, + 0.9980030655860901, + 0.9988946318626404 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 5 + }, + "sentiment_distribution": { + "NEGATIVE": 0.16666666666666666, + "POSITIVE": 0.8333333333333334 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 0.8888888888888888, + "final_counts": { + "POSITIVE": 16, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + } + } }, { "season_code": "202301", @@ -75299,15 +164294,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83750\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83750/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course provides guidance and practice for graduate students in grant and manuscript writing in the fields of ecology and evolutionary biology. Students produce one grant application (NSF GRFP\/DDIG or similar) and one manuscript for publication (on a topic of their choice, to contribute to their thesis or other ongoing work).", + "description": "This course provides guidance and practice for graduate students in grant and manuscript writing in the fields of ecology and evolutionary biology. Students produce one grant application (NSF GRFP/DDIG or similar) and one manuscript for publication (on a topic of their choice, to contribute to their thesis or other ongoing work).", "short_title": "Scientific Writing for Ecolog...", "title": "Scientific Writing for Ecology and Evolutionary Biology", "school": "GS", @@ -75339,7 +164362,7 @@ "13:00", "15:00", "OML 400 - Osborn Memorial Laboratories 400", - "https:\/\/map.yale.edu\/?id=1910#!m\/559958" + "https://map.yale.edu/?id=1910#!m/559958" ] ] }, @@ -75351,10 +164374,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83755\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83755/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -75391,24 +164442,52 @@ "13:30", "15:20", "WTS B39 - Watson Center 60 Sachem Street B39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, "skills": [], "areas": [], "flags": [ - "PH: Global Health, Psychosocial\/Social and behavioral\/Anthropology" + "PH: Global Health, Psychosocial/Social and behavioral/Anthropology" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83759\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83759/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -75447,7 +164526,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -75484,7 +164591,7 @@ "13:00", "15:00", "OML 201 - Osborn Memorial Laboratories 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/559958" + "https://map.yale.edu/?id=1910#!m/559958" ] ] }, @@ -75496,10 +164603,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83767\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83767/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -75539,10 +164674,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83771\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83771/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -75582,10 +164745,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83775\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83775/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -75623,7 +164814,7 @@ "13:30", "15:20", "RKZ 05 - Rosenkranz Hall 05", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -75637,10 +164828,111 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83778\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83778/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989193677902222, + 0.9988717436790466, + 0.9984539747238159, + 0.9989026784896851, + 0.9988055229187012 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9980112314224243, + 0.9988934397697449, + 0.9988580942153931, + 0.9986995458602905, + 0.9988992214202881, + 0.9986711740493774 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982820749282837, + 0.9875454306602478, + 0.9989274144172668, + 0.9985604882240295, + 0.9989252686500549, + 0.9987754225730896 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 0.9411764705882353, + "final_counts": { + "POSITIVE": 16, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9411764705882353, + "NEGATIVE": 0.058823529411764705 + } + } }, { "season_code": "202301", @@ -75678,7 +164970,7 @@ "14:10", "16:00", "SLB 113 - Sterling Law Buildings 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/531532" + "https://map.yale.edu/?id=1910#!m/531532" ] ] }, @@ -75690,10 +164982,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86167\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86167/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -75731,7 +165051,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -75768,7 +165116,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -75805,7 +165181,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -75844,7 +165248,7 @@ "10:30", "11:20", "WLH 207 - William L. Harkness Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -75852,7 +165256,7 @@ "10:30", "11:20", "WLH 207 - William L. Harkness Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -75868,10 +165272,141 @@ "classnotes": "", "final_exam": "Friday, May 5, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83790\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83790/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984807372093201, + 0.9989200830459595, + 0.998847484588623, + 0.9989172220230103, + 0.9988459348678589, + 0.9987438321113586, + 0.995695948600769, + 0.998868465423584, + 0.998216450214386, + 0.9988507032394409 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989294409751892, + 0.9987168312072754, + 0.9988240599632263, + 0.99892657995224, + 0.998914361000061, + 0.9988821148872375, + 0.9972770810127258, + 0.9987475872039795, + 0.9988976716995239 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988517761230469, + 0.9973018169403076, + 0.9982553124427795, + 0.9989135265350342, + 0.998933732509613, + 0.9989132881164551, + 0.9989323019981384, + 0.9989269375801086, + 0.9981945157051086, + 0.9983124732971191, + 0.9987610578536987, + 0.9987334609031677, + 0.9980625510215759 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 31, + "final_proportion": 0.96875, + "final_counts": { + "POSITIVE": 31, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.96875, + "NEGATIVE": 0.03125 + } + } }, { "season_code": "202301", @@ -75903,7 +165438,7 @@ "10:30", "11:20", "HQ 209 - Humanities Quadrangle 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -75920,7 +165455,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -75952,7 +165515,7 @@ "11:35", "12:25", "HQ 209 - Humanities Quadrangle 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -75969,7 +165532,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -76001,7 +165592,7 @@ "10:30", "11:20", "HQ 113 - Humanities Quadrangle 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -76018,7 +165609,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -76057,7 +165676,7 @@ "15:30", "17:20", "HQ 207 - Humanities Quadrangle 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -76073,10 +165692,119 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87018\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87018/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986465573310852, + 0.9984474778175354, + 0.9988467693328857, + 0.9986745119094849, + 0.9988252520561218, + 0.9985404014587402, + 0.9989340901374817 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989217519760132, + 0.9989274144172668, + 0.9987025260925293, + 0.9989137649536133, + 0.9988880753517151, + 0.9987579584121704, + 0.998927891254425 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998866081237793, + 0.9988164901733398, + 0.9988934397697449, + 0.9988879561424255, + 0.9988433122634888, + 0.9969612956047058, + 0.9988846182823181, + 0.9988712668418884 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 22, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 22 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -76119,7 +165847,7 @@ "11:35", "12:50", "WLH 202 - William L. Harkness Hall 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -76127,7 +165855,7 @@ "11:35", "12:50", "WLH 202 - William L. Harkness Hall 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Tuesday": [ @@ -76135,7 +165863,7 @@ "19:00", "22:00", "PH 310 - Phelps Hall 310", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -76151,10 +165879,91 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83794\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83794/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987472295761108, + 0.9986357092857361, + 0.9988648891448975 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989204406738281, + 0.9991139769554138 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9987896084785461, + 0.9830719232559204 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "final_label": "POSITIVE", + "final_count": 5, + "final_proportion": 0.7142857142857143, + "final_counts": { + "POSITIVE": 5, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.7142857142857143, + "NEGATIVE": 0.2857142857142857 + } + } }, { "season_code": "202301", @@ -76196,7 +166005,7 @@ "14:30", "15:20", "SSS 114 - Sheffield-Sterling-Strathcona 114", - "https:\/\/map.yale.edu\/?id=1910#!m\/563689" + "https://map.yale.edu/?id=1910#!m/563689" ] ], "Wednesday": [ @@ -76204,7 +166013,7 @@ "14:30", "15:20", "SSS 114 - Sheffield-Sterling-Strathcona 114", - "https:\/\/map.yale.edu\/?id=1910#!m\/563689" + "https://map.yale.edu/?id=1910#!m/563689" ] ] }, @@ -76218,10 +166027,209 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83798\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83798/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998935878276825, + 0.9982777833938599, + 0.9968156218528748, + 0.9984039664268494, + 0.9962582588195801, + 0.9989311099052429, + 0.9988338351249695, + 0.9954687356948853, + 0.998785674571991, + 0.9987488985061646, + 0.9988712668418884, + 0.9985829591751099, + 0.998740017414093, + 0.9989156723022461, + 0.9994814991950989, + 0.9988394379615784, + 0.9989112615585327, + 0.9986221790313721, + 0.9988502264022827, + 0.998793363571167, + 0.9989294409751892, + 0.9989286065101624 + ], + "sentiment_counts": { + "POSITIVE": 20, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9090909090909091 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9987419247627258, + 0.99887615442276, + 0.9989142417907715, + 0.9986788630485535, + 0.9962582588195801, + 0.9994927644729614, + 0.9988754391670227, + 0.9988775849342346, + 0.9972184896469116, + 0.9870812296867371, + 0.9940172433853149, + 0.9986811280250549, + 0.999489426612854, + 0.9988136291503906, + 0.9992954730987549, + 0.9966887831687927, + 0.9993485808372498, + 0.9988741278648376, + 0.9994860887527466, + 0.9989207983016968, + 0.9983103275299072, + 0.9982118606567383, + 0.9987824559211731, + 0.9847177863121033 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 11 + }, + "sentiment_distribution": { + "POSITIVE": 0.5416666666666666, + "NEGATIVE": 0.4583333333333333 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989104270935059, + 0.9977057576179504, + 0.9988704323768616, + 0.9984052777290344, + 0.9962582588195801, + 0.9989359974861145, + 0.9988816380500793, + 0.9974592328071594, + 0.9982234835624695, + 0.9990212917327881, + 0.9985746145248413, + 0.9979425072669983, + 0.9988999366760254, + 0.9995064735412598, + 0.991790771484375, + 0.9988986253738403, + 0.9988992214202881, + 0.9983044862747192, + 0.9988798499107361, + 0.9987069368362427 + ], + "sentiment_counts": { + "POSITIVE": 14, + "NEGATIVE": 6 + }, + "sentiment_distribution": { + "POSITIVE": 0.7, + "NEGATIVE": 0.3 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7 + ] + }, + "final_label": "POSITIVE", + "final_count": 47, + "final_proportion": 0.7121212121212122, + "final_counts": { + "POSITIVE": 47, + "NEGATIVE": 19 + }, + "final_distribution": { + "POSITIVE": 0.7121212121212122, + "NEGATIVE": 0.2878787878787879 + } + } }, { "season_code": "202301", @@ -76282,7 +166290,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -76318,7 +166354,7 @@ "10:30", "11:20", "HQ 129 - Humanities Quadrangle 129", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -76335,7 +166371,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -76371,7 +166435,7 @@ "14:30", "15:20", "HQ 133 - Humanities Quadrangle 133", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -76388,7 +166452,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -76424,7 +166516,7 @@ "14:30", "15:20", "HQ 132 - Humanities Quadrangle 132", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -76441,7 +166533,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -76477,7 +166597,7 @@ "16:00", "16:50", "HQ 401 - Humanities Quadrangle 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -76494,7 +166614,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -76555,7 +166703,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -76616,7 +166792,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -76677,7 +166881,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -76738,7 +166970,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -76799,7 +167059,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -76836,7 +167124,7 @@ "11:35", "12:50", "HQ C01 - Humanities Quadrangle C01", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -76844,7 +167132,7 @@ "11:35", "12:50", "HQ C01 - Humanities Quadrangle C01", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -76860,10 +167148,97 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87157\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87157/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998559296131134, + 0.9988252520561218, + 0.9988716244697571, + 0.9989026784896851 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988480806350708, + 0.9981133937835693, + 0.998747706413269 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989157915115356, + 0.9987554550170898, + 0.9988454580307007, + 0.9843667149543762 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 11 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -76904,7 +167279,7 @@ "11:35", "12:50", "HQ C15 - Humanities Quadrangle C15", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -76912,7 +167287,7 @@ "11:35", "12:50", "HQ C15 - Humanities Quadrangle C15", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -76926,10 +167301,129 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85801\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85801/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988532066345215, + 0.9987816214561462, + 0.9989184141159058, + 0.998890221118927, + 0.9988541603088379, + 0.9986763596534729, + 0.9989100694656372, + 0.9987571239471436 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988927245140076, + 0.9989148378372192, + 0.9986885190010071, + 0.9988821148872375, + 0.998847484588623, + 0.9987769722938538, + 0.9986155033111572 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988308548927307, + 0.9984520673751831, + 0.998931348323822, + 0.996174156665802, + 0.9988986253738403, + 0.9989311099052429, + 0.9983750581741333, + 0.9989282488822937, + 0.9989383816719055, + 0.9989374279975891, + 0.9988933205604553 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 25, + "final_proportion": 0.9615384615384616, + "final_counts": { + "POSITIVE": 25, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9615384615384616, + "NEGATIVE": 0.038461538461538464 + } + } }, { "season_code": "202301", @@ -76968,7 +167462,7 @@ "13:30", "15:20", "WLH 207 - William L. Harkness Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -76982,15 +167476,186 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84761\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84761/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "", - "description": "East Asian screen culture, ranging from cinema, television, musical video, to online games, has (re)shaped the global and national\/regional imaginings of East Asia. The Post-Cold War intensification of intra-Asian interactions has precipitated the rise of a Pan-Asian regional identity wherein the nation-state is not yet obsolete. What role does screen culture play in the border-crossing interplay among languages, ideologies, aesthetics, and affect? How do we understand the storytelling and politics of East Asian screen cultures in relation to its historical and social context? How does screen culture capture local\/global desires in a digital time? Within the contemporary media ecologies, how does screen culture create an audiovisual relation that traverses screen and actuality? How do screen culture continue to push forward the history of transformation of sign system from the written words to visual moving images in the contemporary sensory over-loaded world of screens. This course deals with issues of (trans)nationalism, (un)translatability, locality and globality, (post)modernity, virtuality and actuality, and politics of gender. Students learn how to think and write about screen cultures of East Asia in particular and of contemporary screen culture in general.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.99835205078125, + 0.9988001585006714, + 0.9989349246025085, + 0.9987414479255676, + 0.9988798499107361, + 0.9989163875579834, + 0.9989318251609802, + 0.9988632202148438, + 0.9988380074501038, + 0.9988921284675598, + 0.998813271522522, + 0.9989123344421387, + 0.9986730813980103, + 0.9988014698028564, + 0.9988816380500793 + ], + "sentiment_counts": { + "POSITIVE": 15, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988256096839905, + 0.9987586736679077, + 0.998908281326294, + 0.9988952875137329, + 0.9995114803314209, + 0.9989000558853149, + 0.9988831877708435, + 0.9989087581634521, + 0.9988040924072266, + 0.9987916350364685, + 0.9988792538642883, + 0.9988952279090881, + 0.9989318251609802, + 0.9989283680915833, + 0.9983285069465637, + 0.9989091157913208, + 0.9988425374031067, + 0.9984226226806641 + ], + "sentiment_counts": { + "POSITIVE": 16, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985880255699158, + 0.9988620281219482, + 0.9989193677902222, + 0.9989221096038818, + 0.9989000558853149, + 0.9995095729827881, + 0.9989199638366699, + 0.9989149570465088, + 0.9988943934440613, + 0.9985223412513733, + 0.9989340901374817, + 0.9988847374916077, + 0.9989343285560608, + 0.9989112615585327, + 0.998768150806427, + 0.9989312291145325, + 0.9989116191864014, + 0.9986080527305603, + 0.9987871050834656 + ], + "sentiment_counts": { + "POSITIVE": 18, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9473684210526315, + "NEGATIVE": 0.05263157894736842 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9473684210526315 + ] + }, + "final_label": "POSITIVE", + "final_count": 49, + "final_proportion": 0.9423076923076923, + "final_counts": { + "POSITIVE": 49, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.9423076923076923, + "NEGATIVE": 0.057692307692307696 + } + } + }, + { + "season_code": "202301", + "requirements": "", + "description": "East Asian screen culture, ranging from cinema, television, musical video, to online games, has (re)shaped the global and national/regional imaginings of East Asia. The Post-Cold War intensification of intra-Asian interactions has precipitated the rise of a Pan-Asian regional identity wherein the nation-state is not yet obsolete. What role does screen culture play in the border-crossing interplay among languages, ideologies, aesthetics, and affect? How do we understand the storytelling and politics of East Asian screen cultures in relation to its historical and social context? How does screen culture capture local/global desires in a digital time? Within the contemporary media ecologies, how does screen culture create an audiovisual relation that traverses screen and actuality? How do screen culture continue to push forward the history of transformation of sign system from the written words to visual moving images in the contemporary sensory over-loaded world of screens. This course deals with issues of (trans)nationalism, (un)translatability, locality and globality, (post)modernity, virtuality and actuality, and politics of gender. Students learn how to think and write about screen cultures of East Asia in particular and of contemporary screen culture in general.", "short_title": "Politics of East Asian Screen...", "title": "Politics of East Asian Screen Culture", "school": "YC", @@ -77024,7 +167689,7 @@ "11:35", "12:50", "WLH 114 - William L. Harkness Hall 114", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -77032,7 +167697,7 @@ "11:35", "12:50", "WLH 114 - William L. Harkness Hall 114", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -77046,10 +167711,147 @@ "classnotes": "Course restricted to undergraduate enrollment only.", "final_exam": "Monday, May 8, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83776\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83776/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989365935325623, + 0.9881654977798462, + 0.998796820640564, + 0.9977607727050781, + 0.9988763928413391, + 0.9988577365875244, + 0.9973335266113281, + 0.9989321827888489, + 0.9988293051719666, + 0.9984190464019775, + 0.9988771080970764, + 0.9987854361534119 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9166666666666666 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987342953681946, + 0.9986086487770081, + 0.9989210367202759, + 0.9988417029380798, + 0.998742401599884, + 0.9986854195594788, + 0.9989042282104492, + 0.9989284873008728, + 0.9988787770271301, + 0.9989230036735535, + 0.9987078905105591 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987133741378784, + 0.9988294243812561, + 0.9989086389541626, + 0.9985887408256531, + 0.9988895058631897, + 0.9988771080970764, + 0.9962624907493591, + 0.9989277720451355, + 0.9989140033721924, + 0.9986685514450073, + 0.9986792206764221, + 0.998908519744873 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 34, + "final_proportion": 0.9714285714285714, + "final_counts": { + "POSITIVE": 34, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9714285714285714, + "NEGATIVE": 0.02857142857142857 + } + } }, { "season_code": "202301", @@ -77087,7 +167889,7 @@ "13:30", "15:20", "SML 207 - Sterling Memorial Library 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/563698" + "https://map.yale.edu/?id=1910#!m/563698" ] ] }, @@ -77101,10 +167903,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83801\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83801/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -77141,7 +167971,7 @@ "13:30", "15:20", "HQ C01 - Humanities Quadrangle C01", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -77157,10 +167987,38 @@ "classnotes": "The theme for the 2023 Spring semester's iteration is Science and Technology in Modern Chinese Literature. We will cover literary texts from the late-Qing to the PRC periods in relation to issues in technoscience.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87133\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/87133/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -77203,7 +168061,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -77246,7 +168132,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -77289,7 +168203,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -77326,7 +168268,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -77363,7 +168333,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -77401,7 +168399,7 @@ "15:30", "17:20", "HQ C05 - Humanities Quadrangle C05", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -77413,10 +168411,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87100\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87100/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -77455,7 +168481,7 @@ "10:30", "11:20", "WLH 207 - William L. Harkness Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -77463,7 +168489,7 @@ "10:30", "11:20", "WLH 207 - William L. Harkness Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -77475,10 +168501,141 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83790\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83790/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984807372093201, + 0.9989200830459595, + 0.998847484588623, + 0.9989172220230103, + 0.9988459348678589, + 0.9987438321113586, + 0.995695948600769, + 0.998868465423584, + 0.998216450214386, + 0.9988507032394409 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989294409751892, + 0.9987168312072754, + 0.9988240599632263, + 0.99892657995224, + 0.998914361000061, + 0.9988821148872375, + 0.9972770810127258, + 0.9987475872039795, + 0.9988976716995239 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988517761230469, + 0.9973018169403076, + 0.9982553124427795, + 0.9989135265350342, + 0.998933732509613, + 0.9989132881164551, + 0.9989323019981384, + 0.9989269375801086, + 0.9981945157051086, + 0.9983124732971191, + 0.9987610578536987, + 0.9987334609031677, + 0.9980625510215759 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 31, + "final_proportion": 0.96875, + "final_counts": { + "POSITIVE": 31, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.96875, + "NEGATIVE": 0.03125 + } + } }, { "season_code": "202301", @@ -77517,7 +168674,7 @@ "15:30", "17:20", "HQ 207 - Humanities Quadrangle 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -77529,10 +168686,119 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87018\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87018/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986465573310852, + 0.9984474778175354, + 0.9988467693328857, + 0.9986745119094849, + 0.9988252520561218, + 0.9985404014587402, + 0.9989340901374817 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989217519760132, + 0.9989274144172668, + 0.9987025260925293, + 0.9989137649536133, + 0.9988880753517151, + 0.9987579584121704, + 0.998927891254425 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998866081237793, + 0.9988164901733398, + 0.9988934397697449, + 0.9988879561424255, + 0.9988433122634888, + 0.9969612956047058, + 0.9988846182823181, + 0.9988712668418884 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 22, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 22 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -77575,7 +168841,7 @@ "11:35", "12:50", "WLH 202 - William L. Harkness Hall 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -77583,7 +168849,7 @@ "11:35", "12:50", "WLH 202 - William L. Harkness Hall 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Tuesday": [ @@ -77591,7 +168857,7 @@ "19:00", "22:00", "PH 310 - Phelps Hall 310", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -77603,10 +168869,91 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83794\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83794/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987472295761108, + 0.9986357092857361, + 0.9988648891448975 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989204406738281, + 0.9991139769554138 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9987896084785461, + 0.9830719232559204 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "final_label": "POSITIVE", + "final_count": 5, + "final_proportion": 0.7142857142857143, + "final_counts": { + "POSITIVE": 5, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.7142857142857143, + "NEGATIVE": 0.2857142857142857 + } + } }, { "season_code": "202301", @@ -77663,10 +169010,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87157\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87157/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -77707,7 +169082,7 @@ "11:35", "12:50", "HQ C15 - Humanities Quadrangle C15", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -77715,7 +169090,7 @@ "11:35", "12:50", "HQ C15 - Humanities Quadrangle C15", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -77727,10 +169102,129 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85801\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85801/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988532066345215, + 0.9987816214561462, + 0.9989184141159058, + 0.998890221118927, + 0.9988541603088379, + 0.9986763596534729, + 0.9989100694656372, + 0.9987571239471436 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988927245140076, + 0.9989148378372192, + 0.9986885190010071, + 0.9988821148872375, + 0.998847484588623, + 0.9987769722938538, + 0.9986155033111572 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988308548927307, + 0.9984520673751831, + 0.998931348323822, + 0.996174156665802, + 0.9988986253738403, + 0.9989311099052429, + 0.9983750581741333, + 0.9989282488822937, + 0.9989383816719055, + 0.9989374279975891, + 0.9988933205604553 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 25, + "final_proportion": 0.9615384615384616, + "final_counts": { + "POSITIVE": 25, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9615384615384616, + "NEGATIVE": 0.038461538461538464 + } + } }, { "season_code": "202301", @@ -77768,7 +169262,7 @@ "13:30", "15:20", "SML 207 - Sterling Memorial Library 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/563698" + "https://map.yale.edu/?id=1910#!m/563698" ] ] }, @@ -77780,10 +169274,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83801\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83801/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -77832,10 +169354,38 @@ "classnotes": "The theme for the 2023 Spring semester's iteration is Science and Technology in Modern Chinese Literature. We will cover literary texts from the late-Qing to the PRC periods in relation to issues in technoscience.\"", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87133\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/87133/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -77872,7 +169422,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -77912,7 +169490,7 @@ "13:30", "15:20", "HQ 109 - Humanities Quadrangle 109", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -77924,10 +169502,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84498\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84498/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -77966,7 +169572,7 @@ "13:30", "15:20", "HQ 317 - Humanities Quadrangle 317", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -77978,10 +169584,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85803\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85803/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -78024,7 +169658,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -78067,7 +169729,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -78105,7 +169795,7 @@ "9:25", "10:15", "LORIA 250 - Loria Center 250", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ], "Thursday": [ @@ -78113,7 +169803,7 @@ "9:25", "10:15", "LORIA 250 - Loria Center 250", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -78121,17 +169811,118 @@ "areas": [], "flags": [ "YC HistofArt: Transchron", - "YC HistofArt: Asia\/Near East" + "YC HistofArt: Asia/Near East" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84236\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84236/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982975125312805, + 0.9988079071044922, + 0.9988799691200256, + 0.9989094734191895, + 0.9989238381385803 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9995006322860718, + 0.9988915324211121, + 0.9989319443702698, + 0.9989234805107117, + 0.9972996115684509 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 4 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2, + "POSITIVE": 0.8 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989288449287415, + 0.9989295601844788, + 0.997289776802063, + 0.9989172220230103, + 0.9987086057662964, + 0.9989334940910339, + 0.998802661895752 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 0.9411764705882353, + "final_counts": { + "POSITIVE": 16, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9411764705882353, + "NEGATIVE": 0.058823529411764705 + } + } }, { "season_code": "202301", @@ -78163,7 +169954,7 @@ "15:30", "16:20", "LORIA B50 - Loria Center B50", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -78178,7 +169969,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -78210,7 +170029,7 @@ "14:30", "15:20", "LORIA B50 - Loria Center B50", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -78225,7 +170044,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -78268,7 +170115,7 @@ "11:35", "12:50", "WLH 202 - William L. Harkness Hall 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -78276,7 +170123,7 @@ "11:35", "12:50", "WLH 202 - William L. Harkness Hall 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Tuesday": [ @@ -78284,7 +170131,7 @@ "19:00", "22:00", "PH 310 - Phelps Hall 310", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -78300,10 +170147,91 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83794\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83794/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987472295761108, + 0.9986357092857361, + 0.9988648891448975 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989204406738281, + 0.9991139769554138 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9987896084785461, + 0.9830719232559204 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "final_label": "POSITIVE", + "final_count": 5, + "final_proportion": 0.7142857142857143, + "final_counts": { + "POSITIVE": 5, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.7142857142857143, + "NEGATIVE": 0.2857142857142857 + } + } }, { "season_code": "202301", @@ -78344,7 +170272,7 @@ "11:35", "12:50", "HQ C15 - Humanities Quadrangle C15", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -78352,7 +170280,7 @@ "11:35", "12:50", "HQ C15 - Humanities Quadrangle C15", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -78366,10 +170294,129 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85801\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85801/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988532066345215, + 0.9987816214561462, + 0.9989184141159058, + 0.998890221118927, + 0.9988541603088379, + 0.9986763596534729, + 0.9989100694656372, + 0.9987571239471436 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988927245140076, + 0.9989148378372192, + 0.9986885190010071, + 0.9988821148872375, + 0.998847484588623, + 0.9987769722938538, + 0.9986155033111572 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988308548927307, + 0.9984520673751831, + 0.998931348323822, + 0.996174156665802, + 0.9988986253738403, + 0.9989311099052429, + 0.9983750581741333, + 0.9989282488822937, + 0.9989383816719055, + 0.9989374279975891, + 0.9988933205604553 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 25, + "final_proportion": 0.9615384615384616, + "final_counts": { + "POSITIVE": 25, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9615384615384616, + "NEGATIVE": 0.038461538461538464 + } + } }, { "season_code": "202301", @@ -78407,7 +170454,7 @@ "11:35", "12:50", "WLH 208 - William L. Harkness Hall 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -78415,7 +170462,7 @@ "11:35", "12:50", "WLH 208 - William L. Harkness Hall 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -78436,10 +170483,193 @@ "classnotes": "", "final_exam": "Monday, May 8, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84146\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84146/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986863732337952, + 0.998016357421875, + 0.9989026784896851, + 0.9988932013511658, + 0.9988516569137573, + 0.9989199638366699, + 0.9989173412322998, + 0.9987525939941406, + 0.9987741112709045, + 0.9983794689178467, + 0.998877227306366, + 0.9989063739776611, + 0.9989093542098999, + 0.9984622001647949, + 0.9970171451568604, + 0.9988952279090881, + 0.9988683462142944, + 0.998796820640564, + 0.9986860156059265 + ], + "sentiment_counts": { + "POSITIVE": 18, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9473684210526315, + "NEGATIVE": 0.05263157894736842 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9473684210526315 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988946318626404, + 0.9988724589347839, + 0.998908519744873, + 0.9988831877708435, + 0.9988834261894226, + 0.9988779425621033, + 0.9957242012023926, + 0.9938845038414001, + 0.9980383515357971, + 0.998913049697876, + 0.9967135190963745, + 0.9989051818847656, + 0.9994346499443054, + 0.9988834261894226, + 0.998855710029602, + 0.9989250302314758, + 0.997509241104126, + 0.9989290833473206 + ], + "sentiment_counts": { + "POSITIVE": 15, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988589286804199, + 0.9989144802093506, + 0.9988829493522644, + 0.9988014698028564, + 0.997117280960083, + 0.9988813996315002, + 0.9744277596473694, + 0.9989216327667236, + 0.9988824725151062, + 0.9988774657249451, + 0.9989282488822937, + 0.9988958835601807, + 0.9989161491394043, + 0.9989258646965027, + 0.9989182949066162, + 0.9989330172538757, + 0.9982553124427795, + 0.9989238381385803, + 0.9988937973976135, + 0.9989332556724548, + 0.998916506767273 + ], + "sentiment_counts": { + "POSITIVE": 21, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 54, + "final_proportion": 0.9310344827586207, + "final_counts": { + "POSITIVE": 54, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.9310344827586207, + "NEGATIVE": 0.06896551724137931 + } + } }, { "season_code": "202301", @@ -78471,7 +170701,7 @@ "13:30", "14:20", "WLH 009 - William L. Harkness Hall 009", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -78488,7 +170718,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -78520,7 +170778,7 @@ "11:35", "12:25", "HQ 127 - Humanities Quadrangle 127", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -78537,7 +170795,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -78569,7 +170855,7 @@ "19:00", "19:50", "WLH 013 - William L. Harkness Hall 013", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -78586,7 +170872,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -78618,7 +170932,7 @@ "17:00", "17:50", "WTS B39 - Watson Center 60 Sachem Street B39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -78635,12 +170949,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "East Asian screen culture, ranging from cinema, television, musical video, to online games, has (re)shaped the global and national\/regional imaginings of East Asia. The Post-Cold War intensification of intra-Asian interactions has precipitated the rise of a Pan-Asian regional identity wherein the nation-state is not yet obsolete. What role does screen culture play in the border-crossing interplay among languages, ideologies, aesthetics, and affect? How do we understand the storytelling and politics of East Asian screen cultures in relation to its historical and social context? How does screen culture capture local\/global desires in a digital time? Within the contemporary media ecologies, how does screen culture create an audiovisual relation that traverses screen and actuality? How do screen culture continue to push forward the history of transformation of sign system from the written words to visual moving images in the contemporary sensory over-loaded world of screens. This course deals with issues of (trans)nationalism, (un)translatability, locality and globality, (post)modernity, virtuality and actuality, and politics of gender. Students learn how to think and write about screen cultures of East Asia in particular and of contemporary screen culture in general.", + "description": "East Asian screen culture, ranging from cinema, television, musical video, to online games, has (re)shaped the global and national/regional imaginings of East Asia. The Post-Cold War intensification of intra-Asian interactions has precipitated the rise of a Pan-Asian regional identity wherein the nation-state is not yet obsolete. What role does screen culture play in the border-crossing interplay among languages, ideologies, aesthetics, and affect? How do we understand the storytelling and politics of East Asian screen cultures in relation to its historical and social context? How does screen culture capture local/global desires in a digital time? Within the contemporary media ecologies, how does screen culture create an audiovisual relation that traverses screen and actuality? How do screen culture continue to push forward the history of transformation of sign system from the written words to visual moving images in the contemporary sensory over-loaded world of screens. This course deals with issues of (trans)nationalism, (un)translatability, locality and globality, (post)modernity, virtuality and actuality, and politics of gender. Students learn how to think and write about screen cultures of East Asia in particular and of contemporary screen culture in general.", "short_title": "Politics of East Asian Screen...", "title": "Politics of East Asian Screen Culture", "school": "YC", @@ -78674,7 +171016,7 @@ "11:35", "12:50", "WLH 114 - William L. Harkness Hall 114", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -78682,7 +171024,7 @@ "11:35", "12:50", "WLH 114 - William L. Harkness Hall 114", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -78698,10 +171040,147 @@ "classnotes": "Course restricted to undergraduate enrollment only.", "final_exam": "Monday, May 8, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83776\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83776/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989365935325623, + 0.9881654977798462, + 0.998796820640564, + 0.9977607727050781, + 0.9988763928413391, + 0.9988577365875244, + 0.9973335266113281, + 0.9989321827888489, + 0.9988293051719666, + 0.9984190464019775, + 0.9988771080970764, + 0.9987854361534119 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9166666666666666 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987342953681946, + 0.9986086487770081, + 0.9989210367202759, + 0.9988417029380798, + 0.998742401599884, + 0.9986854195594788, + 0.9989042282104492, + 0.9989284873008728, + 0.9988787770271301, + 0.9989230036735535, + 0.9987078905105591 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987133741378784, + 0.9988294243812561, + 0.9989086389541626, + 0.9985887408256531, + 0.9988895058631897, + 0.9988771080970764, + 0.9962624907493591, + 0.9989277720451355, + 0.9989140033721924, + 0.9986685514450073, + 0.9986792206764221, + 0.998908519744873 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 34, + "final_proportion": 0.9714285714285714, + "final_counts": { + "POSITIVE": 34, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9714285714285714, + "NEGATIVE": 0.02857142857142857 + } + } }, { "season_code": "202301", @@ -78739,7 +171218,7 @@ "13:30", "15:20", "WLH 003 - William L. Harkness Hall 003", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -78755,10 +171234,113 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84142\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84142/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9952391386032104, + 0.9989199638366699, + 0.9988969564437866, + 0.9989163875579834, + 0.9989175796508789 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988939166069031, + 0.9989194869995117, + 0.9988436698913574, + 0.9989350438117981, + 0.9989251494407654, + 0.9988800883293152, + 0.9989233613014221 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989355206489563, + 0.9988786578178406, + 0.998928964138031, + 0.9989389777183533, + 0.9989385008811951, + 0.9988604784011841, + 0.998915433883667 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 19 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -78799,7 +171381,7 @@ "13:30", "15:20", "RKZ 08 - Rosenkranz Hall 08", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -78820,10 +171402,103 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84148\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84148/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988284707069397, + 0.9983834028244019, + 0.9988755583763123, + 0.9988542795181274, + 0.9988899827003479 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998868465423584, + 0.9976916313171387, + 0.9988811612129211, + 0.998725950717926 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989032745361328, + 0.9989186525344849, + 0.9989033937454224, + 0.9989346861839294, + 0.9988142251968384 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 14 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -78861,7 +171536,7 @@ "13:30", "15:20", "WLH 203 - William L. Harkness Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -78875,10 +171550,105 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84766\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84766/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987995624542236, + 0.998699426651001, + 0.9988580942153931, + 0.9987697005271912, + 0.998335063457489 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986452460289001, + 0.9989064931869507, + 0.9989122152328491, + 0.9988901019096375, + 0.9989016056060791 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988194108009338, + 0.9972782731056213, + 0.9988011121749878, + 0.9988522529602051, + 0.9988942742347717 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 15 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -78916,7 +171686,7 @@ "13:30", "15:20", "SML 207 - Sterling Memorial Library 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/563698" + "https://map.yale.edu/?id=1910#!m/563698" ] ] }, @@ -78930,10 +171700,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83801\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83801/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -78975,7 +171773,7 @@ "14:30", "15:20", "SSS 114 - Sheffield-Sterling-Strathcona 114", - "https:\/\/map.yale.edu\/?id=1910#!m\/563689" + "https://map.yale.edu/?id=1910#!m/563689" ] ], "Wednesday": [ @@ -78983,7 +171781,7 @@ "14:30", "15:20", "SSS 114 - Sheffield-Sterling-Strathcona 114", - "https:\/\/map.yale.edu\/?id=1910#!m\/563689" + "https://map.yale.edu/?id=1910#!m/563689" ] ] }, @@ -78997,10 +171795,209 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83798\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83798/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998935878276825, + 0.9982777833938599, + 0.9968156218528748, + 0.9984039664268494, + 0.9962582588195801, + 0.9989311099052429, + 0.9988338351249695, + 0.9954687356948853, + 0.998785674571991, + 0.9987488985061646, + 0.9988712668418884, + 0.9985829591751099, + 0.998740017414093, + 0.9989156723022461, + 0.9994814991950989, + 0.9988394379615784, + 0.9989112615585327, + 0.9986221790313721, + 0.9988502264022827, + 0.998793363571167, + 0.9989294409751892, + 0.9989286065101624 + ], + "sentiment_counts": { + "POSITIVE": 20, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9090909090909091 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9987419247627258, + 0.99887615442276, + 0.9989142417907715, + 0.9986788630485535, + 0.9962582588195801, + 0.9994927644729614, + 0.9988754391670227, + 0.9988775849342346, + 0.9972184896469116, + 0.9870812296867371, + 0.9940172433853149, + 0.9986811280250549, + 0.999489426612854, + 0.9988136291503906, + 0.9992954730987549, + 0.9966887831687927, + 0.9993485808372498, + 0.9988741278648376, + 0.9994860887527466, + 0.9989207983016968, + 0.9983103275299072, + 0.9982118606567383, + 0.9987824559211731, + 0.9847177863121033 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 11 + }, + "sentiment_distribution": { + "POSITIVE": 0.5416666666666666, + "NEGATIVE": 0.4583333333333333 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989104270935059, + 0.9977057576179504, + 0.9988704323768616, + 0.9984052777290344, + 0.9962582588195801, + 0.9989359974861145, + 0.9988816380500793, + 0.9974592328071594, + 0.9982234835624695, + 0.9990212917327881, + 0.9985746145248413, + 0.9979425072669983, + 0.9988999366760254, + 0.9995064735412598, + 0.991790771484375, + 0.9988986253738403, + 0.9988992214202881, + 0.9983044862747192, + 0.9988798499107361, + 0.9987069368362427 + ], + "sentiment_counts": { + "POSITIVE": 14, + "NEGATIVE": 6 + }, + "sentiment_distribution": { + "POSITIVE": 0.7, + "NEGATIVE": 0.3 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7 + ] + }, + "final_label": "POSITIVE", + "final_count": 47, + "final_proportion": 0.7121212121212122, + "final_counts": { + "POSITIVE": 47, + "NEGATIVE": 19 + }, + "final_distribution": { + "POSITIVE": 0.7121212121212122, + "NEGATIVE": 0.2878787878787879 + } + } }, { "season_code": "202301", @@ -79061,7 +172058,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -79097,7 +172122,7 @@ "10:30", "11:20", "HQ 129 - Humanities Quadrangle 129", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -79114,7 +172139,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -79150,7 +172203,7 @@ "14:30", "15:20", "HQ 133 - Humanities Quadrangle 133", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -79167,7 +172220,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -79203,7 +172284,7 @@ "14:30", "15:20", "HQ 132 - Humanities Quadrangle 132", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -79220,7 +172301,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -79256,7 +172365,7 @@ "16:00", "16:50", "HQ 401 - Humanities Quadrangle 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -79273,7 +172382,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -79334,7 +172471,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -79395,7 +172560,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -79456,7 +172649,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -79517,7 +172738,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -79578,7 +172827,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -79616,7 +172893,7 @@ "14:30", "15:45", "WLH 207 - William L. Harkness Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -79624,7 +172901,7 @@ "14:30", "15:45", "WLH 207 - William L. Harkness Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -79638,10 +172915,113 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85869\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85869/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987719655036926, + 0.9989142417907715, + 0.9988862872123718, + 0.9988529682159424, + 0.9988275170326233, + 0.9987378716468811 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9993509650230408, + 0.9989339709281921, + 0.9989294409751892, + 0.9989132881164551, + 0.99660325050354, + 0.9987853169441223 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 4 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984641075134277, + 0.9988951086997986, + 0.9986728429794312, + 0.9988771080970764, + 0.9988515377044678, + 0.9978795051574707 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 0.8888888888888888, + "final_counts": { + "POSITIVE": 16, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + } + } }, { "season_code": "202301", @@ -79679,7 +173059,7 @@ "13:30", "15:20", "GR109 ROSENFELD - 109 Grove Street ROSENFELD", - "https:\/\/map.yale.edu\/?id=1910#!m\/560109" + "https://map.yale.edu/?id=1910#!m/560109" ] ] }, @@ -79693,10 +173073,217 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84755\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84755/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983899593353271, + 0.9984965324401855, + 0.998703122138977, + 0.9989250302314758, + 0.9989160299301147, + 0.9988889098167419, + 0.9987325072288513, + 0.9987524747848511, + 0.9987205862998962, + 0.9988001585006714, + 0.998696506023407, + 0.9988192915916443, + 0.9989020824432373, + 0.9988872408866882, + 0.9961513876914978, + 0.9985758066177368, + 0.998898983001709, + 0.9927695393562317, + 0.9987823367118835, + 0.9986433386802673, + 0.9986565113067627, + 0.9988038539886475 + ], + "sentiment_counts": { + "POSITIVE": 22, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988535642623901, + 0.9994457364082336, + 0.9987860321998596, + 0.9988409876823425, + 0.9986973404884338, + 0.9989151954650879, + 0.9988289475440979, + 0.998881995677948, + 0.9989199638366699, + 0.9994451403617859, + 0.9995114803314209, + 0.997938334941864, + 0.9988489151000977, + 0.9986162185668945, + 0.9987528324127197, + 0.9988749623298645, + 0.9989398121833801, + 0.9984750151634216, + 0.9958586096763611, + 0.9989198446273804, + 0.998748779296875, + 0.9975737929344177, + 0.9987786412239075, + 0.9989253878593445, + 0.9989017248153687 + ], + "sentiment_counts": { + "POSITIVE": 21, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.84, + "NEGATIVE": 0.16 + }, + "sentiment_overall": [ + "POSITIVE", + 0.84 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988730549812317, + 0.9989215135574341, + 0.9989318251609802, + 0.9989271759986877, + 0.9988725781440735, + 0.9988741278648376, + 0.9989186525344849, + 0.9989161491394043, + 0.9986799359321594, + 0.9989089965820312, + 0.990453839302063, + 0.9988558292388916, + 0.9988371729850769, + 0.9989180564880371, + 0.9989109039306641, + 0.9478115439414978, + 0.9987517595291138, + 0.9989174604415894, + 0.997117280960083, + 0.9982916712760925, + 0.9988948702812195, + 0.9988188147544861, + 0.9988473653793335 + ], + "sentiment_counts": { + "POSITIVE": 23, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 66, + "final_proportion": 0.9428571428571428, + "final_counts": { + "POSITIVE": 66, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.9428571428571428, + "NEGATIVE": 0.05714285714285714 + } + } }, { "season_code": "202301", @@ -79735,7 +173322,7 @@ "13:30", "15:20", "WLH 207 - William L. Harkness Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -79749,10 +173336,181 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84761\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84761/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.99835205078125, + 0.9988001585006714, + 0.9989349246025085, + 0.9987414479255676, + 0.9988798499107361, + 0.9989163875579834, + 0.9989318251609802, + 0.9988632202148438, + 0.9988380074501038, + 0.9988921284675598, + 0.998813271522522, + 0.9989123344421387, + 0.9986730813980103, + 0.9988014698028564, + 0.9988816380500793 + ], + "sentiment_counts": { + "POSITIVE": 15, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988256096839905, + 0.9987586736679077, + 0.998908281326294, + 0.9988952875137329, + 0.9995114803314209, + 0.9989000558853149, + 0.9988831877708435, + 0.9989087581634521, + 0.9988040924072266, + 0.9987916350364685, + 0.9988792538642883, + 0.9988952279090881, + 0.9989318251609802, + 0.9989283680915833, + 0.9983285069465637, + 0.9989091157913208, + 0.9988425374031067, + 0.9984226226806641 + ], + "sentiment_counts": { + "POSITIVE": 16, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985880255699158, + 0.9988620281219482, + 0.9989193677902222, + 0.9989221096038818, + 0.9989000558853149, + 0.9995095729827881, + 0.9989199638366699, + 0.9989149570465088, + 0.9988943934440613, + 0.9985223412513733, + 0.9989340901374817, + 0.9988847374916077, + 0.9989343285560608, + 0.9989112615585327, + 0.998768150806427, + 0.9989312291145325, + 0.9989116191864014, + 0.9986080527305603, + 0.9987871050834656 + ], + "sentiment_counts": { + "POSITIVE": 18, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9473684210526315, + "NEGATIVE": 0.05263157894736842 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9473684210526315 + ] + }, + "final_label": "POSITIVE", + "final_count": 49, + "final_proportion": 0.9423076923076923, + "final_counts": { + "POSITIVE": 49, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.9423076923076923, + "NEGATIVE": 0.057692307692307696 + } + } }, { "season_code": "202301", @@ -79791,7 +173549,7 @@ "11:35", "12:50", "HQ C07 - Humanities Quadrangle C07", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -79799,7 +173557,7 @@ "11:35", "12:50", "HQ C07 - Humanities Quadrangle C07", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -79813,10 +173571,111 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83381\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83381/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989016056060791, + 0.9987323880195618, + 0.9989314675331116, + 0.9989388585090637, + 0.9988126754760742, + 0.9891110062599182, + 0.9988378882408142 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988805651664734, + 0.9988908171653748, + 0.9989149570465088, + 0.9987832903862, + 0.9987952709197998 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989142417907715, + 0.998839795589447, + 0.9989023208618164, + 0.9981922507286072, + 0.9988651275634766, + 0.9989197254180908 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 18 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -79855,7 +173714,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -79893,7 +173780,7 @@ "13:30", "15:20", "STOECK 408 - Stoeckel Hall (renovated) 408", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ] }, @@ -79907,10 +173794,117 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85183\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85183/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986928105354309, + 0.9988376498222351, + 0.9988621473312378, + 0.9987905621528625, + 0.9987087249755859, + 0.998245120048523 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9962432384490967, + 0.9988766312599182, + 0.9989166259765625, + 0.9989157915115356, + 0.9989311099052429, + 0.9988448619842529, + 0.9989296793937683, + 0.9986250400543213 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987214207649231, + 0.997946560382843, + 0.9989084005355835, + 0.9988676309585571, + 0.997117280960083, + 0.9989107847213745, + 0.9989364743232727 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 21, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 21 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -79948,7 +173942,7 @@ "15:30", "17:20", "WTS A35 - Watson Center 60 Sachem Street A35", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -79964,10 +173958,93 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83785\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83785/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9984158277511597, + 0.9985494017601013, + 0.9992043375968933 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9987697005271912, + 0.9995067119598389 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 0 + }, + "sentiment_distribution": { + "NEGATIVE": 1.0, + "POSITIVE": 0.0 + }, + "sentiment_overall": [ + "NEGATIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989198446273804, + 0.9995064735412598, + 0.9986918568611145 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "neutral", + "final_count": 0.5, + "final_proportion": 0.5, + "final_counts": { + "POSITIVE": 4, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + } + } }, { "season_code": "202301", @@ -80006,7 +174083,7 @@ "9:25", "11:15", "WLH 006 - William L. Harkness Hall 006", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -80028,10 +174105,131 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85296\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85296/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988999366760254, + 0.9989321827888489, + 0.9988307356834412, + 0.998918890953064, + 0.9988825917243958, + 0.9987898468971252, + 0.9988561868667603, + 0.9988757967948914, + 0.9986746311187744 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989103078842163, + 0.9989330172538757, + 0.9987560510635376, + 0.9989126920700073, + 0.9989287257194519, + 0.9988481998443604, + 0.9994658827781677, + 0.9989271759986877, + 0.9989063739776611 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989389777183533, + 0.9988960027694702, + 0.9987475872039795, + 0.998925507068634, + 0.9989000558853149, + 0.9969366788864136, + 0.9987292885780334, + 0.998910665512085, + 0.9982553124427795 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 26, + "final_proportion": 0.9629629629629629, + "final_counts": { + "POSITIVE": 26, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9629629629629629, + "NEGATIVE": 0.037037037037037035 + } + } }, { "season_code": "202301", @@ -80071,7 +174269,7 @@ "13:30", "15:20", "SA10 212 - 10 Sachem Street 212", - "https:\/\/map.yale.edu\/?id=1910#!m\/559538" + "https://map.yale.edu/?id=1910#!m/559538" ] ] }, @@ -80087,10 +174285,121 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83350\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83350/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986164569854736, + 0.9987657070159912, + 0.9988741278648376, + 0.9924817681312561, + 0.9988127946853638, + 0.9982458353042603, + 0.9988241791725159 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9937246441841125, + 0.9988215565681458, + 0.998542308807373, + 0.964423418045044, + 0.9921485185623169, + 0.9986310601234436, + 0.9984278678894043 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988898634910583, + 0.9989259839057922, + 0.9984762072563171, + 0.9973636269569397, + 0.9989331364631653, + 0.9988589286804199, + 0.9926319122314453, + 0.9987291693687439 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 0.9090909090909091, + "final_counts": { + "POSITIVE": 20, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + } + } }, { "season_code": "202301", @@ -80130,7 +174439,7 @@ "15:30", "17:20", "WTS A42 - Watson Center 60 Sachem Street A42", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -80146,10 +174455,101 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85925\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85925/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998740017414093, + 0.9988700747489929, + 0.9989150762557983, + 0.9988407492637634 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994848966598511, + 0.9989103078842163, + 0.9989309906959534, + 0.9989262223243713 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.25, + "POSITIVE": 0.75 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986028075218201, + 0.9989032745361328, + 0.9979208111763, + 0.9989252686500549 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 0.9166666666666666, + "final_counts": { + "POSITIVE": 11, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + } + } }, { "season_code": "202301", @@ -80188,7 +174588,7 @@ "15:30", "17:20", "SML 207 - Sterling Memorial Library 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/563698" + "https://map.yale.edu/?id=1910#!m/563698" ] ] }, @@ -80204,10 +174604,109 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83789\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83789/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989134073257446, + 0.9988141059875488, + 0.9989134073257446, + 0.9987566471099854, + 0.9966346621513367 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9898389577865601, + 0.9988338351249695, + 0.9989342093467712, + 0.9988613128662109, + 0.99883633852005, + 0.9988731741905212 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998785674571991, + 0.9989246726036072, + 0.9989206790924072, + 0.9989014863967896, + 0.9988817572593689, + 0.9989301562309265 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 17 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -80250,7 +174749,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -80293,7 +174820,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -80336,7 +174891,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -80374,7 +174957,7 @@ "15:30", "17:20", "LORIA 258 - Loria Center 258", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -80386,10 +174969,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83802\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83802/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -80429,7 +175040,7 @@ "15:30", "17:20", "WTS A42 - Watson Center 60 Sachem Street A42", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -80441,10 +175052,101 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85925\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85925/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998740017414093, + 0.9988700747489929, + 0.9989150762557983, + 0.9988407492637634 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994848966598511, + 0.9989103078842163, + 0.9989309906959534, + 0.9989262223243713 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.25, + "POSITIVE": 0.75 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986028075218201, + 0.9989032745361328, + 0.9979208111763, + 0.9989252686500549 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 0.9166666666666666, + "final_counts": { + "POSITIVE": 11, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + } + } }, { "season_code": "202301", @@ -80485,7 +175187,7 @@ "11:35", "12:50", "HQ C15 - Humanities Quadrangle C15", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -80493,7 +175195,7 @@ "11:35", "12:50", "HQ C15 - Humanities Quadrangle C15", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -80505,10 +175207,129 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85801\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85801/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988532066345215, + 0.9987816214561462, + 0.9989184141159058, + 0.998890221118927, + 0.9988541603088379, + 0.9986763596534729, + 0.9989100694656372, + 0.9987571239471436 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988927245140076, + 0.9989148378372192, + 0.9986885190010071, + 0.9988821148872375, + 0.998847484588623, + 0.9987769722938538, + 0.9986155033111572 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988308548927307, + 0.9984520673751831, + 0.998931348323822, + 0.996174156665802, + 0.9988986253738403, + 0.9989311099052429, + 0.9983750581741333, + 0.9989282488822937, + 0.9989383816719055, + 0.9989374279975891, + 0.9988933205604553 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 25, + "final_proportion": 0.9615384615384616, + "final_counts": { + "POSITIVE": 25, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9615384615384616, + "NEGATIVE": 0.038461538461538464 + } + } }, { "season_code": "202301", @@ -80548,7 +175369,7 @@ "13:30", "15:20", "SA10 212 - 10 Sachem Street 212", - "https:\/\/map.yale.edu\/?id=1910#!m\/559538" + "https://map.yale.edu/?id=1910#!m/559538" ] ] }, @@ -80560,10 +175381,121 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83350\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83350/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986164569854736, + 0.9987657070159912, + 0.9988741278648376, + 0.9924817681312561, + 0.9988127946853638, + 0.9982458353042603, + 0.9988241791725159 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9937246441841125, + 0.9988215565681458, + 0.998542308807373, + 0.964423418045044, + 0.9921485185623169, + 0.9986310601234436, + 0.9984278678894043 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988898634910583, + 0.9989259839057922, + 0.9984762072563171, + 0.9973636269569397, + 0.9989331364631653, + 0.9988589286804199, + 0.9926319122314453, + 0.9987291693687439 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 0.9090909090909091, + "final_counts": { + "POSITIVE": 20, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + } + } }, { "season_code": "202301", @@ -80606,7 +175538,7 @@ "11:35", "12:50", "WLH 202 - William L. Harkness Hall 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -80614,7 +175546,7 @@ "11:35", "12:50", "WLH 202 - William L. Harkness Hall 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Tuesday": [ @@ -80622,7 +175554,7 @@ "19:00", "22:00", "PH 310 - Phelps Hall 310", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -80634,10 +175566,91 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83794\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83794/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987472295761108, + 0.9986357092857361, + 0.9988648891448975 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989204406738281, + 0.9991139769554138 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9987896084785461, + 0.9830719232559204 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "final_label": "POSITIVE", + "final_count": 5, + "final_proportion": 0.7142857142857143, + "final_counts": { + "POSITIVE": 5, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.7142857142857143, + "NEGATIVE": 0.2857142857142857 + } + } }, { "season_code": "202301", @@ -80675,24 +175688,52 @@ "13:30", "15:20", "YUAG 052 - Yale University Art Gallery 052", - "https:\/\/map.yale.edu\/?id=1910#!m\/559918" + "https://map.yale.edu/?id=1910#!m/559918" ] ] }, "skills": [], "areas": [], "flags": [ - "YC HistofArt: Asia\/Near East" + "YC HistofArt: Asia/Near East" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84283\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84283/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -80730,7 +175771,7 @@ "13:30", "15:20", "SML 207 - Sterling Memorial Library 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/563698" + "https://map.yale.edu/?id=1910#!m/563698" ] ] }, @@ -80742,10 +175783,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83801\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83801/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -80783,7 +175852,7 @@ "13:30", "15:20", "WLH 205 - William L. Harkness Hall 205", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -80798,7 +175867,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -80841,7 +175938,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -80884,7 +176009,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -80921,7 +176074,7 @@ "13:00", "14:15", "WTS B52 - Watson Center 60 Sachem Street B52", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -80929,7 +176082,7 @@ "13:00", "14:15", "WTS B52 - Watson Center 60 Sachem Street B52", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -80946,10 +176099,107 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83810\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83810/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987964630126953, + 0.9987797141075134, + 0.999500036239624, + 0.998856782913208, + 0.9988490343093872 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987080097198486, + 0.9988613128662109, + 0.9943512678146362, + 0.9988993406295776, + 0.9988247752189636 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986599683761597, + 0.9987371563911438, + 0.994696855545044, + 0.9986816048622131, + 0.9988976716995239 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 0.8666666666666667, + "final_counts": { + "POSITIVE": 13, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8666666666666667, + "NEGATIVE": 0.13333333333333333 + } + } }, { "season_code": "202301", @@ -80986,7 +176236,7 @@ "13:00", "14:15", "SML 121 - Sterling Memorial Library 121", - "https:\/\/map.yale.edu\/?id=1910#!m\/563698" + "https://map.yale.edu/?id=1910#!m/563698" ] ], "Thursday": [ @@ -80994,7 +176244,7 @@ "13:00", "14:15", "SML 121 - Sterling Memorial Library 121", - "https:\/\/map.yale.edu\/?id=1910#!m\/563698" + "https://map.yale.edu/?id=1910#!m/563698" ] ] }, @@ -81011,10 +176261,119 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83812\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83812/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985823631286621, + 0.9983772039413452, + 0.9988967180252075, + 0.9986335635185242, + 0.9989354014396667, + 0.9988493919372559, + 0.9988991022109985, + 0.9987778067588806 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9807363748550415, + 0.998885452747345, + 0.9988829493522644, + 0.9988505840301514, + 0.9989332556724548, + 0.9989328980445862 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 5 + }, + "sentiment_distribution": { + "NEGATIVE": 0.16666666666666666, + "POSITIVE": 0.8333333333333334 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9975559711456299, + 0.9988817572593689, + 0.9989007711410522, + 0.9988698363304138, + 0.9988676309585571, + 0.998938262462616, + 0.9988715052604675 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 0.9523809523809523, + "final_counts": { + "POSITIVE": 20, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9523809523809523, + "NEGATIVE": 0.047619047619047616 + } + } }, { "season_code": "202301", @@ -81051,7 +176410,7 @@ "13:00", "14:15", "WLH 114 - William L. Harkness Hall 114", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -81059,7 +176418,7 @@ "13:00", "14:15", "WLH 114 - William L. Harkness Hall 114", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -81078,10 +176437,117 @@ "classnotes": "", "final_exam": "Sunday, May 7, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83815\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83815/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981470108032227, + 0.9989062547683716, + 0.9941828846931458, + 0.9994949102401733, + 0.908267617225647, + 0.9988076686859131, + 0.9987967014312744 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.7142857142857143, + "NEGATIVE": 0.2857142857142857 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7142857142857143 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986818432807922, + 0.9989268183708191, + 0.9767131209373474, + 0.9989172220230103, + 0.9986879229545593, + 0.979380190372467, + 0.9987921118736267 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 4 + }, + "sentiment_distribution": { + "NEGATIVE": 0.42857142857142855, + "POSITIVE": 0.5714285714285714 + }, + "sentiment_overall": [ + "POSITIVE", + 0.5714285714285714 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9891552329063416, + 0.9989336133003235, + 0.997117280960083, + 0.9995108842849731, + 0.9883899688720703, + 0.9988013505935669 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 0.7, + "final_counts": { + "POSITIVE": 14, + "NEGATIVE": 6 + }, + "final_distribution": { + "POSITIVE": 0.7, + "NEGATIVE": 0.3 + } + } }, { "season_code": "202301", @@ -81118,7 +176584,7 @@ "14:30", "15:45", "WLH 114 - William L. Harkness Hall 114", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -81126,7 +176592,7 @@ "14:30", "15:45", "WLH 114 - William L. Harkness Hall 114", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -81145,10 +176611,119 @@ "classnotes": "", "final_exam": "Sunday, May 7, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83816\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83816/assignments/syllabus", "fysem": true, "sysem": true, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987149238586426, + 0.9703895449638367, + 0.9985978007316589, + 0.9987466335296631, + 0.998828113079071, + 0.9985607266426086, + 0.9988371729850769 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988332390785217, + 0.9969191551208496, + 0.9985952973365784, + 0.9914072155952454, + 0.9985737800598145, + 0.9988306164741516, + 0.9989239573478699 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985492825508118, + 0.9987780451774597, + 0.9948534369468689, + 0.9994794726371765, + 0.9989234805107117, + 0.9988663196563721, + 0.9989325404167175 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.7142857142857143, + "NEGATIVE": 0.2857142857142857 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7142857142857143 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 0.9047619047619048, + "final_counts": { + "POSITIVE": 19, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9047619047619048, + "NEGATIVE": 0.09523809523809523 + } + } }, { "season_code": "202301", @@ -81206,10 +176781,38 @@ "classnotes": "", "final_exam": "Sunday, May 7, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83819\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83819/assignments/syllabus", "fysem": true, "sysem": true, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -81246,7 +176849,7 @@ "13:00", "14:15", "WLH 113 - William L. Harkness Hall 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -81254,7 +176857,7 @@ "13:00", "14:15", "WLH 113 - William L. Harkness Hall 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -81273,10 +176876,38 @@ "classnotes": "", "final_exam": "Sunday, May 7, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83821\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83821/assignments/syllabus", "fysem": true, "sysem": true, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -81313,7 +176944,7 @@ "9:00", "10:15", "HQ 307 - Humanities Quadrangle 307", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -81321,7 +176952,7 @@ "9:00", "10:15", "HQ 307 - Humanities Quadrangle 307", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -81340,10 +176971,127 @@ "classnotes": "", "final_exam": "Sunday, May 7, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83736\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83736/assignments/syllabus", "fysem": true, "sysem": true, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9980102181434631, + 0.9989294409751892, + 0.978124737739563, + 0.9987168312072754, + 0.9988992214202881, + 0.9988272786140442, + 0.9872596263885498 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 6 + }, + "sentiment_distribution": { + "NEGATIVE": 0.14285714285714285, + "POSITIVE": 0.8571428571428571 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9861052632331848, + 0.9965912103652954, + 0.9987693428993225, + 0.9966809153556824, + 0.9989161491394043, + 0.9984226226806641, + 0.9989191293716431 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 4 + }, + "sentiment_distribution": { + "NEGATIVE": 0.42857142857142855, + "POSITIVE": 0.5714285714285714 + }, + "sentiment_overall": [ + "POSITIVE", + 0.5714285714285714 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986853003501892, + 0.9985623955726624, + 0.999508261680603, + 0.9988794922828674, + 0.9881842136383057, + 0.9987442493438721, + 0.997836172580719, + 0.9989098310470581, + 0.9943640232086182, + 0.9975104331970215, + 0.9988051652908325 + ], + "sentiment_counts": { + "NEGATIVE": 4, + "POSITIVE": 7 + }, + "sentiment_distribution": { + "NEGATIVE": 0.36363636363636365, + "POSITIVE": 0.6363636363636364 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6363636363636364 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 0.68, + "final_counts": { + "NEGATIVE": 8, + "POSITIVE": 17 + }, + "final_distribution": { + "NEGATIVE": 0.32, + "POSITIVE": 0.68 + } + } }, { "season_code": "202301", @@ -81380,7 +177128,7 @@ "11:35", "12:50", "HQ 229 - Humanities Quadrangle 229", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -81388,7 +177136,7 @@ "11:35", "12:50", "HQ 229 - Humanities Quadrangle 229", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -81407,10 +177155,101 @@ "classnotes": "", "final_exam": "Sunday, May 7, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83742\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83742/assignments/syllabus", "fysem": true, "sysem": true, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988204836845398, + 0.9985764026641846, + 0.998584508895874 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9984955787658691, + 0.9988077878952026, + 0.9988021850585938, + 0.9994915723800659 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9943895936012268, + 0.9989240765571594, + 0.9988510608673096, + 0.999470055103302, + 0.9988092184066772 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.4, + "POSITIVE": 0.6 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 0.75, + "final_counts": { + "POSITIVE": 9, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + } + } }, { "season_code": "202301", @@ -81447,7 +177286,7 @@ "14:30", "15:45", "WTS B60 - Watson Center 60 Sachem Street B60", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -81455,7 +177294,7 @@ "14:30", "15:45", "WTS B60 - Watson Center 60 Sachem Street B60", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -81471,10 +177310,161 @@ "classnotes": "", "final_exam": "Sunday, May 7, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83748\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83748/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987735152244568, + 0.9987818598747253, + 0.9988400340080261, + 0.9989171028137207, + 0.9987974166870117, + 0.9870172142982483, + 0.996727466583252, + 0.9985837936401367, + 0.9989033937454224, + 0.9987027645111084, + 0.9988598823547363, + 0.9987961053848267, + 0.9988402724266052, + 0.9941776990890503 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9285714285714286, + "NEGATIVE": 0.07142857142857142 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9285714285714286 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988152980804443, + 0.9989000558853149, + 0.9989131689071655, + 0.9987921118736267, + 0.999458372592926, + 0.9986152648925781, + 0.9987509250640869, + 0.99892657995224, + 0.9986627101898193, + 0.9989101886749268, + 0.998818576335907, + 0.9987228512763977, + 0.9989172220230103 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9230769230769231, + "NEGATIVE": 0.07692307692307693 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9230769230769231 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998936116695404, + 0.9965952038764954, + 0.9989092350006104, + 0.9989303946495056, + 0.9985893368721008, + 0.9989274144172668, + 0.9989030361175537, + 0.9982336759567261, + 0.9987196922302246, + 0.9987595081329346, + 0.998923122882843, + 0.9988046884536743, + 0.9988998174667358, + 0.9988927245140076, + 0.9989013671875 + ], + "sentiment_counts": { + "POSITIVE": 15, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 40, + "final_proportion": 0.9523809523809523, + "final_counts": { + "POSITIVE": 40, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9523809523809523, + "NEGATIVE": 0.047619047619047616 + } + } }, { "season_code": "202301", @@ -81511,7 +177501,7 @@ "13:00", "14:15", "WLH 201 - William L. Harkness Hall 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -81519,7 +177509,7 @@ "13:00", "14:15", "WLH 201 - William L. Harkness Hall 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -81538,10 +177528,411 @@ "classnotes": "", "final_exam": "Sunday, May 7, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83753\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83753/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985023736953735, + 0.9989345669746399, + 0.9987358450889587, + 0.9885997772216797, + 0.994579553604126, + 0.994579553604126, + 0.998866081237793, + 0.9985197186470032, + 0.9987426400184631, + 0.9988999366760254, + 0.9988742470741272, + 0.9979470372200012, + 0.9987761378288269, + 0.9991711378097534, + 0.9988980293273926, + 0.9972545504570007, + 0.9987943172454834, + 0.9972500205039978, + 0.9988173842430115, + 0.9988113641738892, + 0.9940709471702576, + 0.9988619089126587, + 0.9972579479217529, + 0.9989089965820312, + 0.9937953948974609, + 0.9985635876655579, + 0.9984847903251648, + 0.998668909072876, + 0.9935959577560425, + 0.9988541603088379, + 0.9902347326278687, + 0.9989148378372192, + 0.998748779296875, + 0.9985744953155518, + 0.9988532066345215, + 0.9990548491477966, + 0.9936612844467163, + 0.9986788630485535, + 0.9988682270050049, + 0.9988532066345215, + 0.9986245632171631, + 0.9988613128662109, + 0.9988904595375061, + 0.9988647699356079, + 0.9946079254150391, + 0.9982825517654419, + 0.9985653758049011, + 0.9985471367835999, + 0.9988794922828674, + 0.9986887574195862, + 0.9980937838554382, + 0.9988934397697449 + ], + "sentiment_counts": { + "POSITIVE": 45, + "NEGATIVE": 7 + }, + "sentiment_distribution": { + "POSITIVE": 0.8653846153846154, + "NEGATIVE": 0.1346153846153846 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8653846153846154 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984859824180603, + 0.9867942929267883, + 0.9994961023330688, + 0.9956187605857849, + 0.9967844486236572, + 0.9716761112213135, + 0.9990358352661133, + 0.9988306164741516, + 0.9988370537757874, + 0.9986196756362915, + 0.9981537461280823, + 0.9943562150001526, + 0.9986989498138428, + 0.9988730549812317, + 0.9994977712631226, + 0.9970441460609436, + 0.9989309906959534, + 0.9985696077346802, + 0.9989067316055298, + 0.9831068515777588, + 0.9963762164115906, + 0.998907208442688, + 0.9995057582855225, + 0.99943608045578, + 0.9984918832778931, + 0.9986605644226074, + 0.9995017051696777, + 0.9983744621276855, + 0.9947881698608398, + 0.9969745874404907, + 0.9988969564437866, + 0.9989107847213745, + 0.9980620741844177, + 0.9991508722305298, + 0.9922731518745422, + 0.9982761144638062, + 0.99774169921875, + 0.9963020086288452, + 0.9988089799880981, + 0.9976146221160889, + 0.9986838698387146, + 0.923930287361145, + 0.998863935470581, + 0.9988197684288025, + 0.9995005130767822, + 0.9984336495399475, + 0.9983820915222168, + 0.5723299980163574, + 0.9944111704826355, + 0.9989116191864014, + 0.9979411959648132, + 0.9879105091094971, + 0.9988625049591064, + 0.9915745854377747, + 0.7553890943527222 + ], + "sentiment_counts": { + "POSITIVE": 36, + "NEGATIVE": 19 + }, + "sentiment_distribution": { + "POSITIVE": 0.6545454545454545, + "NEGATIVE": 0.34545454545454546 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6545454545454545 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998837411403656, + 0.9987807869911194, + 0.9988476037979126, + 0.9994975328445435, + 0.9988511800765991, + 0.9756124019622803, + 0.9957659244537354, + 0.9879031777381897, + 0.9994489550590515, + 0.9959298968315125, + 0.9987671375274658, + 0.998890221118927, + 0.998920202255249, + 0.9987723231315613, + 0.9983750581741333, + 0.9988631010055542, + 0.9988706707954407, + 0.9987694621086121, + 0.9974040389060974, + 0.9989030361175537, + 0.9985438585281372, + 0.9988774657249451, + 0.993467390537262, + 0.9499487280845642, + 0.9988884329795837, + 0.9986019730567932, + 0.9989226460456848, + 0.9868991374969482, + 0.9989076852798462, + 0.9995040893554688, + 0.9985069632530212, + 0.998976469039917, + 0.9991365075111389, + 0.9977949857711792, + 0.9988629817962646, + 0.9994949102401733, + 0.9972034692764282, + 0.9923847913742065, + 0.99946528673172, + 0.9983981251716614, + 0.999506950378418, + 0.9989054203033447, + 0.9987949132919312, + 0.9989328980445862, + 0.9984390139579773, + 0.9989120960235596, + 0.9987660646438599, + 0.9989050626754761, + 0.9989332556724548, + 0.9987053871154785, + 0.9976353645324707, + 0.9932718873023987, + 0.9988823533058167, + 0.9994953870773315, + 0.9989066123962402, + 0.9994986057281494, + 0.9980993866920471, + 0.9989272952079773, + 0.9988195300102234, + 0.9986400008201599 + ], + "sentiment_counts": { + "POSITIVE": 40, + "NEGATIVE": 20 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 121, + "final_proportion": 0.7245508982035929, + "final_counts": { + "POSITIVE": 121, + "NEGATIVE": 46 + }, + "final_distribution": { + "POSITIVE": 0.7245508982035929, + "NEGATIVE": 0.2754491017964072 + } + } }, { "season_code": "202301", @@ -81572,7 +177963,7 @@ "16:00", "16:50", "WLH 202 - William L. Harkness Hall 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -81591,7 +177982,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -81622,7 +178041,7 @@ "17:00", "17:50", "WLH 202 - William L. Harkness Hall 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -81641,7 +178060,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -81672,7 +178119,7 @@ "16:00", "16:50", "WLH 203 - William L. Harkness Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -81691,7 +178138,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -81722,7 +178197,7 @@ "17:00", "17:50", "WLH 203 - William L. Harkness Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -81741,7 +178216,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -81772,7 +178275,7 @@ "19:00", "19:50", "WLH 203 - William L. Harkness Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -81791,7 +178294,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -81822,7 +178353,7 @@ "20:00", "20:50", "WLH 203 - William L. Harkness Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -81841,7 +178372,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -81872,7 +178431,7 @@ "19:00", "19:50", "WLH 202 - William L. Harkness Hall 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -81891,7 +178450,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -81922,7 +178509,7 @@ "20:00", "20:50", "WLH 202 - William L. Harkness Hall 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -81941,7 +178528,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -81972,7 +178587,7 @@ "10:30", "11:20", "HQ 309 - Humanities Quadrangle 309", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -81991,7 +178606,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -82022,7 +178665,7 @@ "11:35", "12:25", "HQ 309 - Humanities Quadrangle 309", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -82041,7 +178684,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -82078,7 +178749,7 @@ "13:00", "14:15", "YSB MARSH - Yale Science Building MARSH", - "https:\/\/map.yale.edu\/?id=1910#!m\/563700" + "https://map.yale.edu/?id=1910#!m/563700" ] ], "Wednesday": [ @@ -82086,7 +178757,7 @@ "13:00", "14:15", "YSB MARSH - Yale Science Building MARSH", - "https:\/\/map.yale.edu\/?id=1910#!m\/563700" + "https://map.yale.edu/?id=1910#!m/563700" ] ] }, @@ -82103,10 +178774,989 @@ "classnotes": "", "final_exam": "Sunday, May 7, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83757\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83757/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998817503452301, + 0.998881995677948, + 0.9985458850860596, + 0.9986805319786072, + 0.9987682700157166, + 0.9987261891365051, + 0.9987871050834656, + 0.9947622418403625, + 0.9972013235092163, + 0.9963954091072083, + 0.9985253214836121, + 0.9984976053237915, + 0.9985448122024536, + 0.9944599866867065, + 0.9974523186683655, + 0.9979348182678223, + 0.9913047552108765, + 0.9987531900405884, + 0.9980252981185913, + 0.9988549947738647, + 0.9987782835960388, + 0.9985742568969727, + 0.9987584352493286, + 0.9984681010246277, + 0.9914022088050842, + 0.992731511592865, + 0.9988763928413391, + 0.9898360371589661, + 0.9746612310409546, + 0.9989112615585327, + 0.9988721013069153, + 0.998744010925293, + 0.997825026512146, + 0.9936115145683289, + 0.9988691210746765, + 0.9981990456581116, + 0.9978260397911072, + 0.9849370121955872, + 0.9951867461204529, + 0.9981135129928589, + 0.9987096786499023, + 0.9981623291969299, + 0.9879379868507385, + 0.9141595959663391, + 0.998516857624054, + 0.9954900145530701, + 0.9988258481025696, + 0.9988563060760498, + 0.7931738495826721, + 0.9989221096038818, + 0.9909737706184387, + 0.9988464117050171, + 0.9958738684654236, + 0.9985687732696533, + 0.9987208247184753, + 0.9970310926437378, + 0.9989078044891357, + 0.9983419179916382, + 0.9989268183708191, + 0.9988259673118591, + 0.995332658290863, + 0.9933163523674011, + 0.9988207221031189, + 0.9986369013786316, + 0.9988318085670471, + 0.9988791346549988, + 0.9936659932136536, + 0.9986164569854736, + 0.9955283999443054, + 0.9987828135490417, + 0.9987475872039795, + 0.9988370537757874, + 0.9989292025566101, + 0.9944615364074707, + 0.9988300204277039, + 0.9988532066345215, + 0.9986017346382141, + 0.9988228678703308, + 0.9985805749893188, + 0.9989099502563477, + 0.9978405237197876, + 0.9980652928352356, + 0.9988685846328735, + 0.9976678490638733, + 0.9976391792297363, + 0.9895552396774292, + 0.9988264441490173, + 0.9988779425621033, + 0.9988823533058167, + 0.9981032609939575, + 0.9988847374916077, + 0.9988271594047546, + 0.9989293217658997, + 0.9987407326698303, + 0.9988380074501038, + 0.9989051818847656, + 0.9987909197807312, + 0.9988285899162292, + 0.998759388923645, + 0.9983569979667664, + 0.998840868473053, + 0.998666524887085, + 0.9952777624130249, + 0.9947622418403625, + 0.9988092184066772, + 0.9988147020339966, + 0.9837230443954468, + 0.9987311959266663, + 0.9988694787025452, + 0.9947598576545715, + 0.998761773109436, + 0.9905515909194946, + 0.9988083839416504, + 0.997786283493042, + 0.99664705991745, + 0.9946449995040894, + 0.9985597729682922, + 0.9988330006599426, + 0.9988774657249451, + 0.9989138841629028, + 0.9986911416053772, + 0.9987995624542236, + 0.9931507110595703, + 0.9988403916358948, + 0.9923589825630188, + 0.9988825917243958, + 0.7931738495826721, + 0.9989032745361328, + 0.8929620385169983, + 0.9989185333251953, + 0.9954996705055237, + 0.9970508813858032, + 0.9987103939056396, + 0.9988168478012085, + 0.9988242983818054, + 0.9988403916358948, + 0.9988407492637634, + 0.9988647699356079, + 0.9987001419067383, + 0.9854000210762024, + 0.9960144758224487, + 0.9946534633636475, + 0.9988127946853638, + 0.998464822769165, + 0.9989044666290283, + 0.9913793802261353, + 0.9985876083374023, + 0.7931738495826721, + 0.9988008737564087, + 0.9988648891448975, + 0.9986296892166138, + 0.9987768530845642 + ], + "sentiment_counts": { + "POSITIVE": 140, + "NEGATIVE": 12 + }, + "sentiment_distribution": { + "POSITIVE": 0.9210526315789473, + "NEGATIVE": 0.07894736842105263 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9210526315789473 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9987585544586182, + 0.9984006285667419, + 0.9711225628852844, + 0.9987892508506775, + 0.9989295601844788, + 0.9989219903945923, + 0.9819769859313965, + 0.9987649917602539, + 0.7062219381332397, + 0.9989013671875, + 0.9936498999595642, + 0.9988710284233093, + 0.9944067001342773, + 0.9988105297088623, + 0.9971888661384583, + 0.9995100498199463, + 0.9987201690673828, + 0.9986971020698547, + 0.9986497759819031, + 0.9989032745361328, + 0.8742212057113647, + 0.998892605304718, + 0.9962582588195801, + 0.9981655478477478, + 0.9988526105880737, + 0.9989093542098999, + 0.9981921315193176, + 0.9988914132118225, + 0.998895525932312, + 0.9987450838088989, + 0.9989156723022461, + 0.9987623691558838, + 0.9988962411880493, + 0.9988968372344971, + 0.9944397211074829, + 0.998809814453125, + 0.9989050626754761, + 0.9988619089126587, + 0.9985665678977966, + 0.9994820952415466, + 0.9945436716079712, + 0.9994404911994934, + 0.9989219903945923, + 0.9989175796508789, + 0.9989006519317627, + 0.9988208413124084, + 0.9989122152328491, + 0.9978088736534119, + 0.9990697503089905, + 0.9936529397964478, + 0.9988784193992615, + 0.9988512992858887, + 0.9992262125015259, + 0.9988254904747009, + 0.9988499879837036, + 0.9988106489181519, + 0.9989333748817444, + 0.9981781244277954, + 0.9935539960861206, + 0.9959254264831543, + 0.9988999366760254, + 0.9974536299705505, + 0.9989113807678223, + 0.9981421232223511, + 0.997891366481781, + 0.9922159314155579, + 0.992958664894104, + 0.9986886382102966, + 0.998847246170044, + 0.9987925291061401, + 0.9989093542098999, + 0.9989233613014221, + 0.9982163310050964, + 0.9994981288909912, + 0.9964792132377625, + 0.998853325843811, + 0.9951156377792358, + 0.9988813996315002, + 0.9989239573478699, + 0.9988865256309509, + 0.9993840456008911, + 0.9980652928352356, + 0.9988558292388916, + 0.9946065545082092, + 0.9989118576049805, + 0.998782217502594, + 0.9977587461471558, + 0.9932668209075928, + 0.9989013671875, + 0.9986017346382141, + 0.9986339211463928, + 0.9985656142234802, + 0.9981012940406799, + 0.9985126852989197, + 0.9988859295845032, + 0.998721182346344, + 0.9988419413566589, + 0.996356725692749, + 0.9886218905448914, + 0.9983553290367126, + 0.9977655410766602, + 0.997992992401123, + 0.9988734126091003, + 0.9987348914146423, + 0.9994120597839355, + 0.9906561970710754, + 0.9986028075218201, + 0.9988853335380554, + 0.9988676309585571, + 0.9994974136352539, + 0.9988780617713928, + 0.9905712604522705, + 0.998916506767273, + 0.998572587966919, + 0.9988232254981995, + 0.9968979358673096, + 0.9988264441490173, + 0.9954652190208435, + 0.9987608194351196, + 0.9947815537452698, + 0.9985663294792175, + 0.9987755417823792, + 0.9971246123313904, + 0.9985847473144531, + 0.9979360103607178, + 0.9988861680030823, + 0.9995076656341553, + 0.9989196062088013, + 0.9989326596260071, + 0.9988760352134705, + 0.9987311959266663, + 0.9962490200996399, + 0.9989114999771118, + 0.9995012283325195, + 0.9989166259765625, + 0.9990866184234619, + 0.9989147186279297, + 0.9982221722602844, + 0.9841815233230591, + 0.9988288283348083, + 0.9988791346549988, + 0.9989064931869507, + 0.9979037046432495, + 0.9989238381385803, + 0.9973287582397461, + 0.9987071752548218, + 0.9988011121749878, + 0.9988604784011841, + 0.999472439289093, + 0.9904530048370361, + 0.9994890689849854 + ], + "sentiment_counts": { + "POSITIVE": 121, + "NEGATIVE": 30 + }, + "sentiment_distribution": { + "POSITIVE": 0.8013245033112583, + "NEGATIVE": 0.1986754966887417 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8013245033112583 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987138509750366, + 0.9987832903862, + 0.995031476020813, + 0.9971408843994141, + 0.9908498525619507, + 0.9986078143119812, + 0.9989063739776611, + 0.9987974166870117, + 0.9786503314971924, + 0.9989293217658997, + 0.9927729964256287, + 0.997117280960083, + 0.9986704587936401, + 0.9994989633560181, + 0.9981922507286072, + 0.9988848567008972, + 0.9501336216926575, + 0.994419276714325, + 0.993776798248291, + 0.9988736510276794, + 0.997863233089447, + 0.9981096982955933, + 0.9989097118377686, + 0.9988656044006348, + 0.9862378835678101, + 0.9988510608673096, + 0.9985188841819763, + 0.9987540245056152, + 0.9984700083732605, + 0.997117280960083, + 0.9989359974861145, + 0.9988775849342346, + 0.9988403916358948, + 0.9988623857498169, + 0.9986948370933533, + 0.9988346695899963, + 0.9989328980445862, + 0.9969524145126343, + 0.997117280960083, + 0.9995136260986328, + 0.9987781643867493, + 0.9989099502563477, + 0.9973530769348145, + 0.9960730075836182, + 0.9989228844642639, + 0.9960702657699585, + 0.9989249110221863, + 0.9994866847991943, + 0.9986315369606018, + 0.9989155530929565, + 0.9980652928352356, + 0.9987784028053284, + 0.9988214373588562, + 0.9988956451416016, + 0.9986250400543213, + 0.9988799691200256, + 0.9989228844642639, + 0.9989117383956909, + 0.9986845850944519, + 0.9985645413398743, + 0.997117280960083, + 0.9985723495483398, + 0.9983599781990051, + 0.9989145994186401, + 0.9987297654151917, + 0.996647298336029, + 0.9982553124427795, + 0.9988969564437866, + 0.9989135265350342, + 0.9987407326698303, + 0.9988653659820557, + 0.9988211989402771, + 0.9995061159133911, + 0.997117280960083, + 0.9968178272247314, + 0.9986950755119324, + 0.9976664781570435, + 0.9988114833831787, + 0.9977237582206726, + 0.9988864064216614, + 0.9994809031486511, + 0.9955276846885681, + 0.9987431168556213, + 0.9977141618728638, + 0.9980397820472717, + 0.9982926249504089, + 0.9981922507286072, + 0.9988553524017334, + 0.9989398121833801, + 0.9988961219787598, + 0.9948146939277649, + 0.9988877177238464, + 0.998838484287262, + 0.9984878301620483, + 0.998803973197937, + 0.9988294243812561, + 0.9988862872123718, + 0.993141233921051, + 0.9985607266426086, + 0.998870313167572, + 0.9989184141159058, + 0.998859167098999, + 0.9989051818847656, + 0.9988775849342346, + 0.9988588094711304, + 0.9987816214561462, + 0.9986798167228699, + 0.9988258481025696, + 0.9988670349121094, + 0.9988632202148438, + 0.9973637461662292, + 0.998434841632843, + 0.9965481162071228, + 0.9989140033721924, + 0.9987016916275024, + 0.9987815022468567, + 0.9994955062866211, + 0.9984456896781921, + 0.998896598815918, + 0.9989020824432373, + 0.9988396763801575, + 0.998471200466156, + 0.997117280960083, + 0.9987418055534363, + 0.9980016350746155, + 0.9988259673118591, + 0.997117280960083, + 0.9988942742347717, + 0.9993946552276611, + 0.99874347448349, + 0.9995129108428955, + 0.9989099502563477, + 0.9994931221008301, + 0.9989168643951416, + 0.9988890290260315, + 0.9988973140716553, + 0.9994925260543823, + 0.9989303946495056, + 0.9919306635856628, + 0.9989160299301147, + 0.9987640380859375, + 0.998892605304718, + 0.9982553124427795, + 0.9988517761230469, + 0.9988137483596802, + 0.9989047050476074, + 0.9965440630912781, + 0.9988189339637756, + 0.9983347058296204, + 0.9989144802093506, + 0.9988190531730652, + 0.9988434314727783, + 0.9978110194206238 + ], + "sentiment_counts": { + "POSITIVE": 132, + "NEGATIVE": 21 + }, + "sentiment_distribution": { + "POSITIVE": 0.8627450980392157, + "NEGATIVE": 0.13725490196078433 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8627450980392157 + ] + }, + "final_label": "POSITIVE", + "final_count": 393, + "final_proportion": 0.8618421052631579, + "final_counts": { + "POSITIVE": 393, + "NEGATIVE": 63 + }, + "final_distribution": { + "POSITIVE": 0.8618421052631579, + "NEGATIVE": 0.13815789473684212 + } + } }, { "season_code": "202301", @@ -82137,7 +179787,7 @@ "15:30", "16:20", "WLH 007 - William L. Harkness Hall 007", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -82154,7 +179804,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -82185,7 +179863,7 @@ "16:30", "17:20", "WLH 007 - William L. Harkness Hall 007", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -82202,7 +179880,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -82233,7 +179939,7 @@ "19:00", "19:50", "WLH 204 - William L. Harkness Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -82250,7 +179956,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -82281,7 +180015,7 @@ "20:00", "20:50", "WLH 204 - William L. Harkness Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -82298,7 +180032,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -82329,7 +180091,7 @@ "13:30", "14:20", "WLH 013 - William L. Harkness Hall 013", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -82346,7 +180108,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -82377,7 +180167,7 @@ "14:30", "15:20", "WLH 013 - William L. Harkness Hall 013", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -82394,7 +180184,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -82425,7 +180243,7 @@ "15:30", "16:20", "WLH 011 - William L. Harkness Hall 011", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -82442,7 +180260,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -82473,7 +180319,7 @@ "16:30", "17:20", "WLH 011 - William L. Harkness Hall 011", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -82490,7 +180336,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -82521,7 +180395,7 @@ "19:00", "19:50", "WLH 011 - William L. Harkness Hall 011", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -82538,7 +180412,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -82569,7 +180471,7 @@ "20:00", "20:50", "WLH 011 - William L. Harkness Hall 011", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -82586,7 +180488,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -82617,7 +180547,7 @@ "10:30", "11:20", "WLH 009 - William L. Harkness Hall 009", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -82634,7 +180564,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -82665,7 +180623,7 @@ "11:35", "12:25", "WLH 009 - William L. Harkness Hall 009", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -82682,7 +180640,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -82713,7 +180699,7 @@ "13:30", "14:20", "WLH 002 - William L. Harkness Hall 002", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -82730,7 +180716,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -82761,7 +180775,7 @@ "14:30", "15:20", "WLH 002 - William L. Harkness Hall 002", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -82778,7 +180792,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -82809,7 +180851,7 @@ "9:25", "10:15", "WTS A35 - Watson Center 60 Sachem Street A35", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -82826,7 +180868,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -82857,7 +180927,7 @@ "10:30", "11:20", "WTS A35 - Watson Center 60 Sachem Street A35", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -82874,7 +180944,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -82905,7 +181003,7 @@ "10:30", "11:20", "HQ C65 - Humanities Quadrangle C65", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -82922,7 +181020,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -82953,7 +181079,7 @@ "11:35", "12:25", "HQ C65 - Humanities Quadrangle C65", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -82970,12 +181096,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "Prerequisites: ECON 108, 110, 115, or equivalent and familiarity with single variable calculus. Students who have taken ECON 131 may not receive major credit for this course.", - "description": "Introduction to data analysis from the beginning of the econometrics sequence; exposure to modern empirical economics; and development of credible economic analysis. This course emphasizes working directly and early with data, through such economic examples as studies of environmental\/natural resource economics, intergenerational mobility, discrimination, and finance. Topics include: probability, statistics, and sampling; selection, causation and causal inference; regression and model specification; and machine learning and big data.", + "description": "Introduction to data analysis from the beginning of the econometrics sequence; exposure to modern empirical economics; and development of credible economic analysis. This course emphasizes working directly and early with data, through such economic examples as studies of environmental/natural resource economics, intergenerational mobility, discrimination, and finance. Topics include: probability, statistics, and sampling; selection, causation and causal inference; regression and model specification; and machine learning and big data.", "short_title": "Introduction to Data Analysis...", "title": "Introduction to Data Analysis and Econometrics", "school": "YC", @@ -83007,7 +181161,7 @@ "11:35", "12:50", "SSS 114 - Sheffield-Sterling-Strathcona 114", - "https:\/\/map.yale.edu\/?id=1910#!m\/563689" + "https://map.yale.edu/?id=1910#!m/563689" ] ], "Wednesday": [ @@ -83015,7 +181169,7 @@ "11:35", "12:50", "SSS 114 - Sheffield-Sterling-Strathcona 114", - "https:\/\/map.yale.edu\/?id=1910#!m\/563689" + "https://map.yale.edu/?id=1910#!m/563689" ] ] }, @@ -83036,15 +181190,484 @@ "classnotes": "", "final_exam": "Saturday, May 6, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83762\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83762/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9867172241210938, + 0.9976125955581665, + 0.9987107515335083, + 0.9994871616363525, + 0.9983564019203186, + 0.9984152317047119, + 0.9988085031509399, + 0.9988403916358948, + 0.9987335801124573, + 0.998627781867981, + 0.998878538608551, + 0.996213972568512, + 0.998702883720398, + 0.9409617185592651, + 0.9995017051696777, + 0.9942228198051453, + 0.99875807762146, + 0.9988362193107605, + 0.9983422756195068, + 0.9985688924789429, + 0.987923800945282, + 0.9988344311714172, + 0.995684027671814, + 0.9982958436012268, + 0.9986523985862732, + 0.5122284889221191, + 0.9988951086997986, + 0.9945354461669922, + 0.9965113997459412, + 0.9948298335075378, + 0.9986255168914795, + 0.9980432987213135, + 0.9871233701705933, + 0.9960527420043945, + 0.9985607266426086, + 0.9988619089126587, + 0.9943011999130249, + 0.9963499307632446, + 0.9987898468971252, + 0.9988179802894592, + 0.9986588954925537, + 0.998784601688385, + 0.9983388185501099, + 0.9907005429267883, + 0.9988052845001221, + 0.9978461265563965, + 0.998855471611023, + 0.9986935257911682, + 0.9988619089126587, + 0.9957214593887329, + 0.9988588094711304, + 0.9982805252075195, + 0.997361958026886, + 0.9967967867851257, + 0.9994920492172241, + 0.9987480640411377, + 0.998847484588623, + 0.9988017082214355, + 0.9989110231399536, + 0.9807664155960083, + 0.9948862195014954, + 0.9934199452400208, + 0.9953937530517578 + ], + "sentiment_counts": { + "POSITIVE": 54, + "NEGATIVE": 9 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9990580677986145, + 0.989294171333313, + 0.9994829893112183, + 0.9995055198669434, + 0.9984152317047119, + 0.9987976551055908, + 0.9988014698028564, + 0.9986767172813416, + 0.9897929430007935, + 0.9993579983711243, + 0.9964865446090698, + 0.999500036239624, + 0.9995015859603882, + 0.9994624257087708, + 0.998690664768219, + 0.9990341663360596, + 0.9913029670715332, + 0.9947132468223572, + 0.9987292885780334, + 0.998766303062439, + 0.9988592863082886, + 0.9754343032836914, + 0.9891146421432495, + 0.9987205862998962, + 0.9985711574554443, + 0.9987967014312744, + 0.998488187789917, + 0.9875056743621826, + 0.9981520771980286, + 0.999500036239624, + 0.706352710723877, + 0.9982317090034485, + 0.9995025396347046, + 0.9926521182060242, + 0.9988663196563721, + 0.9994863271713257, + 0.998921275138855, + 0.998225748538971, + 0.9995067119598389, + 0.9995129108428955, + 0.993463933467865, + 0.9837023019790649, + 0.9963451027870178, + 0.9986041188240051, + 0.9995139837265015, + 0.9822293519973755, + 0.9995120763778687, + 0.9992846846580505, + 0.9995099306106567, + 0.9994592070579529, + 0.994548499584198, + 0.9995033740997314, + 0.9994972944259644, + 0.9990455508232117, + 0.9861364364624023, + 0.9994220733642578, + 0.9897567629814148, + 0.9948585033416748, + 0.9995112419128418, + 0.9989078044891357, + 0.9987674951553345, + 0.998794674873352, + 0.9987095594406128, + 0.9986196756362915, + 0.990359902381897, + 0.9994890689849854, + 0.9993038177490234, + 0.9987925291061401 + ], + "sentiment_counts": { + "NEGATIVE": 34, + "POSITIVE": 34 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9696904420852661, + 0.9994140863418579, + 0.9993789196014404, + 0.9995037317276001, + 0.9250795841217041, + 0.865007758140564, + 0.9988539218902588, + 0.9993579983711243, + 0.9988911747932434, + 0.9982549548149109, + 0.9977524876594543, + 0.9864364266395569, + 0.9983982443809509, + 0.9995028972625732, + 0.999492883682251, + 0.9772575497627258, + 0.9989011287689209, + 0.9995040893554688, + 0.9987450838088989, + 0.9982193112373352, + 0.9931394457817078, + 0.9988299012184143, + 0.9994707703590393, + 0.99888676404953, + 0.9987568855285645, + 0.503014862537384, + 0.9987545013427734, + 0.9977982044219971, + 0.9995079040527344, + 0.989588737487793, + 0.9934161901473999, + 0.9947498440742493, + 0.9894718527793884, + 0.998381495475769, + 0.9982584118843079, + 0.9988858103752136, + 0.9988105297088623, + 0.9994255304336548, + 0.998069703578949, + 0.9995074272155762, + 0.9979779124259949, + 0.9986157417297363, + 0.9984577894210815, + 0.9988400340080261, + 0.9875084757804871, + 0.9995149374008179, + 0.9995126724243164, + 0.9907008409500122, + 0.9994799494743347, + 0.9949790835380554, + 0.9980016350746155, + 0.9992623925209045, + 0.9977545142173767, + 0.9994369149208069, + 0.9810032844543457, + 0.9982084035873413, + 0.998916745185852, + 0.9994701743125916, + 0.99073326587677, + 0.9995027780532837, + 0.9988576173782349, + 0.9986703395843506, + 0.9989226460456848, + 0.9988180994987488, + 0.9994813799858093, + 0.9993207454681396, + 0.9862622022628784, + 0.9994767308235168, + 0.9994372725486755, + 0.9979640245437622 + ], + "sentiment_counts": { + "POSITIVE": 28, + "NEGATIVE": 42 + }, + "sentiment_distribution": { + "POSITIVE": 0.4, + "NEGATIVE": 0.6 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.6 + ] + }, + "final_label": "POSITIVE", + "final_count": 116, + "final_proportion": 0.5771144278606966, + "final_counts": { + "POSITIVE": 116, + "NEGATIVE": 85 + }, + "final_distribution": { + "POSITIVE": 0.5771144278606966, + "NEGATIVE": 0.4228855721393035 + } + } }, { "season_code": "202301", "requirements": "Prerequisites: ECON 108, 110, 115, or equivalent and familiarity with single variable calculus. Students who have taken ECON 131 may not receive major credit for this course.", - "description": "Introduction to data analysis from the beginning of the econometrics sequence; exposure to modern empirical economics; and development of credible economic analysis. This course emphasizes working directly and early with data, through such economic examples as studies of environmental\/natural resource economics, intergenerational mobility, discrimination, and finance. Topics include: probability, statistics, and sampling; selection, causation and causal inference; regression and model specification; and machine learning and big data.", + "description": "Introduction to data analysis from the beginning of the econometrics sequence; exposure to modern empirical economics; and development of credible economic analysis. This course emphasizes working directly and early with data, through such economic examples as studies of environmental/natural resource economics, intergenerational mobility, discrimination, and finance. Topics include: probability, statistics, and sampling; selection, causation and causal inference; regression and model specification; and machine learning and big data.", "short_title": "Introduction to Data Analysis...", "title": "Introduction to Data Analysis and Econometrics", "school": "YC", @@ -83070,7 +181693,7 @@ "16:00", "16:50", "WLH 204 - William L. Harkness Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -83089,12 +181712,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "Prerequisites: ECON 108, 110, 115, or equivalent and familiarity with single variable calculus. Students who have taken ECON 131 may not receive major credit for this course.", - "description": "Introduction to data analysis from the beginning of the econometrics sequence; exposure to modern empirical economics; and development of credible economic analysis. This course emphasizes working directly and early with data, through such economic examples as studies of environmental\/natural resource economics, intergenerational mobility, discrimination, and finance. Topics include: probability, statistics, and sampling; selection, causation and causal inference; regression and model specification; and machine learning and big data.", + "description": "Introduction to data analysis from the beginning of the econometrics sequence; exposure to modern empirical economics; and development of credible economic analysis. This course emphasizes working directly and early with data, through such economic examples as studies of environmental/natural resource economics, intergenerational mobility, discrimination, and finance. Topics include: probability, statistics, and sampling; selection, causation and causal inference; regression and model specification; and machine learning and big data.", "short_title": "Introduction to Data Analysis...", "title": "Introduction to Data Analysis and Econometrics", "school": "YC", @@ -83120,7 +181771,7 @@ "9:25", "10:15", "WALL53 208 - 53 Wall Street 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/559554" + "https://map.yale.edu/?id=1910#!m/559554" ] ] }, @@ -83139,12 +181790,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "Prerequisites: ECON 108, 110, 115, or equivalent and familiarity with single variable calculus. Students who have taken ECON 131 may not receive major credit for this course.", - "description": "Introduction to data analysis from the beginning of the econometrics sequence; exposure to modern empirical economics; and development of credible economic analysis. This course emphasizes working directly and early with data, through such economic examples as studies of environmental\/natural resource economics, intergenerational mobility, discrimination, and finance. Topics include: probability, statistics, and sampling; selection, causation and causal inference; regression and model specification; and machine learning and big data.", + "description": "Introduction to data analysis from the beginning of the econometrics sequence; exposure to modern empirical economics; and development of credible economic analysis. This course emphasizes working directly and early with data, through such economic examples as studies of environmental/natural resource economics, intergenerational mobility, discrimination, and finance. Topics include: probability, statistics, and sampling; selection, causation and causal inference; regression and model specification; and machine learning and big data.", "short_title": "Introduction to Data Analysis...", "title": "Introduction to Data Analysis and Econometrics", "school": "YC", @@ -83170,7 +181849,7 @@ "16:00", "16:50", "WTS A46 - Watson Center 60 Sachem Street A46", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -83189,12 +181868,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "Prerequisites: ECON 108, 110, 115, or equivalent and familiarity with single variable calculus. Students who have taken ECON 131 may not receive major credit for this course.", - "description": "Introduction to data analysis from the beginning of the econometrics sequence; exposure to modern empirical economics; and development of credible economic analysis. This course emphasizes working directly and early with data, through such economic examples as studies of environmental\/natural resource economics, intergenerational mobility, discrimination, and finance. Topics include: probability, statistics, and sampling; selection, causation and causal inference; regression and model specification; and machine learning and big data.", + "description": "Introduction to data analysis from the beginning of the econometrics sequence; exposure to modern empirical economics; and development of credible economic analysis. This course emphasizes working directly and early with data, through such economic examples as studies of environmental/natural resource economics, intergenerational mobility, discrimination, and finance. Topics include: probability, statistics, and sampling; selection, causation and causal inference; regression and model specification; and machine learning and big data.", "short_title": "Introduction to Data Analysis...", "title": "Introduction to Data Analysis and Econometrics", "school": "YC", @@ -83220,7 +181927,7 @@ "16:00", "16:50", "WLH 003 - William L. Harkness Hall 003", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -83239,12 +181946,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "Prerequisites: ECON 108, 110, 115, or equivalent and familiarity with single variable calculus. Students who have taken ECON 131 may not receive major credit for this course.", - "description": "Introduction to data analysis from the beginning of the econometrics sequence; exposure to modern empirical economics; and development of credible economic analysis. This course emphasizes working directly and early with data, through such economic examples as studies of environmental\/natural resource economics, intergenerational mobility, discrimination, and finance. Topics include: probability, statistics, and sampling; selection, causation and causal inference; regression and model specification; and machine learning and big data.", + "description": "Introduction to data analysis from the beginning of the econometrics sequence; exposure to modern empirical economics; and development of credible economic analysis. This course emphasizes working directly and early with data, through such economic examples as studies of environmental/natural resource economics, intergenerational mobility, discrimination, and finance. Topics include: probability, statistics, and sampling; selection, causation and causal inference; regression and model specification; and machine learning and big data.", "short_title": "Introduction to Data Analysis...", "title": "Introduction to Data Analysis and Econometrics", "school": "YC", @@ -83270,7 +182005,7 @@ "17:00", "17:50", "WLH 003 - William L. Harkness Hall 003", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -83289,12 +182024,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "Prerequisites: ECON 108, 110, 115, or equivalent and familiarity with single variable calculus. Students who have taken ECON 131 may not receive major credit for this course.", - "description": "Introduction to data analysis from the beginning of the econometrics sequence; exposure to modern empirical economics; and development of credible economic analysis. This course emphasizes working directly and early with data, through such economic examples as studies of environmental\/natural resource economics, intergenerational mobility, discrimination, and finance. Topics include: probability, statistics, and sampling; selection, causation and causal inference; regression and model specification; and machine learning and big data.", + "description": "Introduction to data analysis from the beginning of the econometrics sequence; exposure to modern empirical economics; and development of credible economic analysis. This course emphasizes working directly and early with data, through such economic examples as studies of environmental/natural resource economics, intergenerational mobility, discrimination, and finance. Topics include: probability, statistics, and sampling; selection, causation and causal inference; regression and model specification; and machine learning and big data.", "short_title": "Introduction to Data Analysis...", "title": "Introduction to Data Analysis and Econometrics", "school": "YC", @@ -83320,7 +182083,7 @@ "10:30", "11:20", "HQ C64 - Humanities Quadrangle C64", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -83339,12 +182102,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "Prerequisites: ECON 108, 110, 115, or equivalent and familiarity with single variable calculus. Students who have taken ECON 131 may not receive major credit for this course.", - "description": "Introduction to data analysis from the beginning of the econometrics sequence; exposure to modern empirical economics; and development of credible economic analysis. This course emphasizes working directly and early with data, through such economic examples as studies of environmental\/natural resource economics, intergenerational mobility, discrimination, and finance. Topics include: probability, statistics, and sampling; selection, causation and causal inference; regression and model specification; and machine learning and big data.", + "description": "Introduction to data analysis from the beginning of the econometrics sequence; exposure to modern empirical economics; and development of credible economic analysis. This course emphasizes working directly and early with data, through such economic examples as studies of environmental/natural resource economics, intergenerational mobility, discrimination, and finance. Topics include: probability, statistics, and sampling; selection, causation and causal inference; regression and model specification; and machine learning and big data.", "short_title": "Introduction to Data Analysis...", "title": "Introduction to Data Analysis and Econometrics", "school": "YC", @@ -83370,7 +182161,7 @@ "19:00", "19:50", "WLH 003 - William L. Harkness Hall 003", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -83389,12 +182180,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "Prerequisites: ECON 108, 110, 115, or equivalent and familiarity with single variable calculus. Students who have taken ECON 131 may not receive major credit for this course.", - "description": "Introduction to data analysis from the beginning of the econometrics sequence; exposure to modern empirical economics; and development of credible economic analysis. This course emphasizes working directly and early with data, through such economic examples as studies of environmental\/natural resource economics, intergenerational mobility, discrimination, and finance. Topics include: probability, statistics, and sampling; selection, causation and causal inference; regression and model specification; and machine learning and big data.", + "description": "Introduction to data analysis from the beginning of the econometrics sequence; exposure to modern empirical economics; and development of credible economic analysis. This course emphasizes working directly and early with data, through such economic examples as studies of environmental/natural resource economics, intergenerational mobility, discrimination, and finance. Topics include: probability, statistics, and sampling; selection, causation and causal inference; regression and model specification; and machine learning and big data.", "short_title": "Introduction to Data Analysis...", "title": "Introduction to Data Analysis and Econometrics", "school": "YC", @@ -83420,7 +182239,7 @@ "20:00", "20:50", "WLH 003 - William L. Harkness Hall 003", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -83439,12 +182258,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "Prerequisites: ECON 108, 110, 115, or equivalent and familiarity with single variable calculus. Students who have taken ECON 131 may not receive major credit for this course.", - "description": "Introduction to data analysis from the beginning of the econometrics sequence; exposure to modern empirical economics; and development of credible economic analysis. This course emphasizes working directly and early with data, through such economic examples as studies of environmental\/natural resource economics, intergenerational mobility, discrimination, and finance. Topics include: probability, statistics, and sampling; selection, causation and causal inference; regression and model specification; and machine learning and big data.", + "description": "Introduction to data analysis from the beginning of the econometrics sequence; exposure to modern empirical economics; and development of credible economic analysis. This course emphasizes working directly and early with data, through such economic examples as studies of environmental/natural resource economics, intergenerational mobility, discrimination, and finance. Topics include: probability, statistics, and sampling; selection, causation and causal inference; regression and model specification; and machine learning and big data.", "short_title": "Introduction to Data Analysis...", "title": "Introduction to Data Analysis and Econometrics", "school": "YC", @@ -83470,7 +182317,7 @@ "9:25", "10:15", "HQ C64 - Humanities Quadrangle C64", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -83489,12 +182336,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "Prerequisites: ECON 108, 110, 115, or equivalent and familiarity with single variable calculus. Students who have taken ECON 131 may not receive major credit for this course.", - "description": "Introduction to data analysis from the beginning of the econometrics sequence; exposure to modern empirical economics; and development of credible economic analysis. This course emphasizes working directly and early with data, through such economic examples as studies of environmental\/natural resource economics, intergenerational mobility, discrimination, and finance. Topics include: probability, statistics, and sampling; selection, causation and causal inference; regression and model specification; and machine learning and big data.", + "description": "Introduction to data analysis from the beginning of the econometrics sequence; exposure to modern empirical economics; and development of credible economic analysis. This course emphasizes working directly and early with data, through such economic examples as studies of environmental/natural resource economics, intergenerational mobility, discrimination, and finance. Topics include: probability, statistics, and sampling; selection, causation and causal inference; regression and model specification; and machine learning and big data.", "short_title": "Introduction to Data Analysis...", "title": "Introduction to Data Analysis and Econometrics", "school": "YC", @@ -83520,7 +182395,7 @@ "17:00", "17:50", "WLH 204 - William L. Harkness Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -83539,7 +182414,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -83576,7 +182479,7 @@ "14:30", "15:45", "DAVIES AUD - Davies Auditorium, Becton Ctr AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ], "Thursday": [ @@ -83584,7 +182487,7 @@ "14:30", "15:45", "DAVIES AUD - Davies Auditorium, Becton Ctr AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ] }, @@ -83603,10 +182506,351 @@ "classnotes": "", "final_exam": "Wednesday, May 10, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83766\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83766/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9917763471603394, + 0.9987603425979614, + 0.9982403516769409, + 0.9579125642776489, + 0.9981067180633545, + 0.9988717436790466, + 0.9988561868667603, + 0.9989008903503418, + 0.9987305998802185, + 0.9989168643951416, + 0.9994582533836365, + 0.9985015392303467, + 0.9988760352134705, + 0.9988730549812317, + 0.9988407492637634, + 0.9987872242927551, + 0.9985108971595764, + 0.998580813407898, + 0.9988179802894592, + 0.9986081719398499, + 0.998945415019989, + 0.9983800649642944, + 0.9988068342208862, + 0.9986613988876343, + 0.9989156723022461, + 0.9832223057746887, + 0.9988545179367065, + 0.9989026784896851, + 0.9915372133255005, + 0.9986687898635864, + 0.9985756874084473, + 0.9985552430152893, + 0.9944831728935242, + 0.9988460540771484, + 0.9987779259681702, + 0.9980080723762512, + 0.9911310076713562, + 0.993926465511322, + 0.9975378513336182, + 0.9982560276985168, + 0.9988263249397278, + 0.9887303709983826 + ], + "sentiment_counts": { + "POSITIVE": 36, + "NEGATIVE": 6 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985306262969971, + 0.998927891254425, + 0.9987984895706177, + 0.9988532066345215, + 0.9988963603973389, + 0.9988458156585693, + 0.9987524747848511, + 0.9966956377029419, + 0.99892657995224, + 0.9844750761985779, + 0.9989319443702698, + 0.9989111423492432, + 0.9919143915176392, + 0.9962582588195801, + 0.9988753199577332, + 0.998884379863739, + 0.998884379863739, + 0.9989001750946045, + 0.9986792206764221, + 0.9988428354263306, + 0.9989290833473206, + 0.9976488947868347, + 0.9989063739776611, + 0.9995028972625732, + 0.9934815168380737, + 0.9988112449645996, + 0.9953428506851196, + 0.9989375472068787, + 0.9995075464248657, + 0.9989320635795593, + 0.9994909763336182, + 0.9915547966957092, + 0.9988344311714172, + 0.975660502910614, + 0.9960566759109497, + 0.9988911747932434, + 0.9988709092140198, + 0.9988742470741272, + 0.99839848279953, + 0.9977697134017944, + 0.9988992214202881, + 0.9988308548927307, + 0.9988430738449097, + 0.9989058971405029, + 0.9994877576828003, + 0.9986816048622131, + 0.9988731741905212, + 0.9980416297912598 + ], + "sentiment_counts": { + "POSITIVE": 36, + "NEGATIVE": 12 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988887906074524, + 0.9985247254371643, + 0.9961419701576233, + 0.9982227683067322, + 0.9988698363304138, + 0.9805223345756531, + 0.9856969118118286, + 0.9980668425559998, + 0.9989008903503418, + 0.998819887638092, + 0.9984309077262878, + 0.9989656209945679, + 0.9985389709472656, + 0.9943272471427917, + 0.9984853863716125, + 0.9975213408470154, + 0.9989001750946045, + 0.9986345171928406, + 0.9988732933998108, + 0.9922705888748169, + 0.9989359974861145, + 0.9994497895240784, + 0.9995031356811523, + 0.9994889497756958, + 0.9988040924072266, + 0.9985402822494507, + 0.9973164200782776, + 0.9994885921478271, + 0.9988160133361816, + 0.9912981986999512, + 0.9762389063835144, + 0.9898870587348938, + 0.9934805631637573, + 0.9988558292388916, + 0.9931197166442871, + 0.9914711117744446, + 0.997117280960083, + 0.997951328754425, + 0.9986075758934021, + 0.999498724937439, + 0.9989343285560608, + 0.9989309906959534, + 0.9950372576713562, + 0.9984482526779175, + 0.9975283741950989, + 0.9976891279220581, + 0.9982499480247498 + ], + "sentiment_counts": { + "POSITIVE": 32, + "NEGATIVE": 15 + }, + "sentiment_distribution": { + "POSITIVE": 0.6808510638297872, + "NEGATIVE": 0.3191489361702128 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6808510638297872 + ] + }, + "final_label": "POSITIVE", + "final_count": 104, + "final_proportion": 0.7591240875912408, + "final_counts": { + "POSITIVE": 104, + "NEGATIVE": 33 + }, + "final_distribution": { + "POSITIVE": 0.7591240875912408, + "NEGATIVE": 0.24087591240875914 + } + } }, { "season_code": "202301", @@ -83637,7 +182881,7 @@ "16:00", "16:50", "WLH 002 - William L. Harkness Hall 002", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -83656,7 +182900,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -83687,7 +182959,7 @@ "17:00", "17:50", "WLH 002 - William L. Harkness Hall 002", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -83706,7 +182978,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -83737,7 +183037,7 @@ "19:00", "19:50", "WLH 013 - William L. Harkness Hall 013", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -83756,7 +183056,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -83787,7 +183115,7 @@ "20:00", "20:50", "WLH 013 - William L. Harkness Hall 013", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -83806,7 +183134,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -83837,7 +183193,7 @@ "19:00", "19:50", "WLH 007 - William L. Harkness Hall 007", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -83856,7 +183212,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -83887,7 +183271,7 @@ "20:00", "20:50", "WLH 007 - William L. Harkness Hall 007", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -83906,7 +183290,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -83937,7 +183349,7 @@ "10:30", "11:20", "HQ C15 - Humanities Quadrangle C15", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -83956,7 +183368,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -83987,7 +183427,7 @@ "11:35", "12:25", "HQ C15 - Humanities Quadrangle C15", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -84006,7 +183446,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -84037,7 +183505,7 @@ "10:30", "11:20", "HQ C11 - Humanities Quadrangle C11", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -84056,7 +183524,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -84087,7 +183583,7 @@ "11:35", "12:25", "HQ C11 - Humanities Quadrangle C11", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -84106,7 +183602,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -84143,7 +183667,7 @@ "13:00", "14:15", "WALL53 AUD - 53 Wall Street AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/559554" + "https://map.yale.edu/?id=1910#!m/559554" ] ], "Wednesday": [ @@ -84151,7 +183675,7 @@ "13:00", "14:15", "WALL53 AUD - 53 Wall Street AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/559554" + "https://map.yale.edu/?id=1910#!m/559554" ] ] }, @@ -84170,10 +183694,449 @@ "classnotes": "", "final_exam": "Tuesday, May 9, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83770\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83770/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9970995187759399, + 0.9887474775314331, + 0.9988686442375183, + 0.9971573352813721, + 0.998897910118103, + 0.9982832670211792, + 0.9988031387329102, + 0.9985308647155762, + 0.9985551238059998, + 0.9986822009086609, + 0.9988991022109985, + 0.9979814291000366, + 0.9988873600959778, + 0.9920364022254944, + 0.9989217519760132, + 0.9985811710357666, + 0.9986989498138428, + 0.998897910118103, + 0.9988821148872375, + 0.9988411068916321, + 0.9983969330787659, + 0.9982625842094421, + 0.996058464050293, + 0.9986496567726135, + 0.9988027811050415, + 0.9987242817878723, + 0.9987578392028809, + 0.9982678890228271, + 0.998747706413269, + 0.99801105260849, + 0.9986696243286133, + 0.9962255954742432, + 0.9988471269607544, + 0.7931738495826721, + 0.9986079335212708, + 0.9920480847358704, + 0.9937896132469177, + 0.9987886548042297, + 0.9859601259231567, + 0.9986308217048645, + 0.9988619089126587, + 0.9988179802894592, + 0.9986012578010559, + 0.9872850775718689, + 0.9988424181938171, + 0.9980719089508057, + 0.9988149404525757, + 0.9985846281051636, + 0.9924667477607727, + 0.9987843632698059, + 0.9958494901657104, + 0.9988862872123718, + 0.9982060194015503, + 0.9977349042892456, + 0.998896598815918, + 0.9981753826141357, + 0.9980120658874512, + 0.998383641242981, + 0.9989356398582458, + 0.9988142251968384 + ], + "sentiment_counts": { + "POSITIVE": 58, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.9666666666666667, + "NEGATIVE": 0.03333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9666666666666667 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986656904220581, + 0.9995050430297852, + 0.9988686442375183, + 0.9987519979476929, + 0.9989109039306641, + 0.9988995790481567, + 0.9975300431251526, + 0.9968932867050171, + 0.9989047050476074, + 0.9989012479782104, + 0.9967449903488159, + 0.9987020492553711, + 0.9986693859100342, + 0.9987623691558838, + 0.9988632202148438, + 0.998297393321991, + 0.9989155530929565, + 0.9989264607429504, + 0.9988967180252075, + 0.9989205598831177, + 0.9988787770271301, + 0.9989194869995117, + 0.9986366629600525, + 0.998896598815918, + 0.9989213943481445, + 0.99880051612854, + 0.9994984865188599, + 0.9988214373588562, + 0.9994670748710632, + 0.9906253814697266, + 0.9989271759986877, + 0.9981890320777893, + 0.9989101886749268, + 0.9987574815750122, + 0.9986879229545593, + 0.9987536668777466, + 0.9988607168197632, + 0.9988831877708435, + 0.9988834261894226, + 0.998819887638092, + 0.9953514337539673, + 0.9988296627998352, + 0.9859601259231567, + 0.9995077848434448, + 0.9989019632339478, + 0.9966012239456177, + 0.9985358715057373, + 0.9946387410163879, + 0.9924929738044739, + 0.9989101886749268, + 0.9993901252746582, + 0.998404324054718, + 0.9858010411262512, + 0.9979769587516785, + 0.9989066123962402, + 0.9988779425621033, + 0.9989092350006104, + 0.997291624546051, + 0.9968275427818298, + 0.9988351464271545, + 0.9988638162612915, + 0.9988825917243958 + ], + "sentiment_counts": { + "POSITIVE": 50, + "NEGATIVE": 12 + }, + "sentiment_distribution": { + "POSITIVE": 0.8064516129032258, + "NEGATIVE": 0.1935483870967742 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8064516129032258 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.997117280960083, + 0.9490211009979248, + 0.9989261031150818, + 0.9981034994125366, + 0.9988327622413635, + 0.9904708862304688, + 0.9916574358940125, + 0.9963440299034119, + 0.9980016350746155, + 0.9988401532173157, + 0.9980626702308655, + 0.9944061040878296, + 0.9967319965362549, + 0.9989079236984253, + 0.9932398796081543, + 0.9979866743087769, + 0.9987121820449829, + 0.9982833862304688, + 0.9988991022109985, + 0.9989390969276428, + 0.9907915592193604, + 0.9988327622413635, + 0.9989385008811951, + 0.9986762404441833, + 0.9915875792503357, + 0.9988357424736023, + 0.9989244341850281, + 0.9988117218017578, + 0.995599627494812, + 0.998907208442688, + 0.998375415802002, + 0.9981045722961426, + 0.9938620328903198, + 0.9986758828163147, + 0.9993035793304443, + 0.9988817572593689, + 0.9989010095596313, + 0.998828113079071, + 0.9989222288131714, + 0.9963639378547668, + 0.9990193843841553, + 0.9990882873535156, + 0.9869296550750732, + 0.9988147020339966, + 0.9974592328071594, + 0.9980944991111755, + 0.9987971782684326, + 0.9988635778427124, + 0.9983637928962708, + 0.9909915924072266, + 0.9989350438117981, + 0.9731454253196716, + 0.9943042397499084, + 0.9987741112709045, + 0.9950857758522034, + 0.9988470077514648, + 0.9988895058631897, + 0.9951519966125488, + 0.9988741278648376, + 0.9886702299118042, + 0.998933732509613, + 0.9994243383407593, + 0.9989321827888489, + 0.9988743662834167 + ], + "sentiment_counts": { + "POSITIVE": 51, + "NEGATIVE": 13 + }, + "sentiment_distribution": { + "POSITIVE": 0.796875, + "NEGATIVE": 0.203125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.796875 + ] + }, + "final_label": "POSITIVE", + "final_count": 159, + "final_proportion": 0.8548387096774194, + "final_counts": { + "POSITIVE": 159, + "NEGATIVE": 27 + }, + "final_distribution": { + "POSITIVE": 0.8548387096774194, + "NEGATIVE": 0.14516129032258066 + } + } }, { "season_code": "202301", @@ -84204,7 +184167,7 @@ "16:00", "16:50", "WLH 003 - William L. Harkness Hall 003", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -84223,7 +184186,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -84254,7 +184245,7 @@ "17:00", "17:50", "WLH 003 - William L. Harkness Hall 003", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -84273,7 +184264,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -84304,7 +184323,7 @@ "16:00", "16:50", "HQ C03 - Humanities Quadrangle C03", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -84323,7 +184342,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -84354,7 +184401,7 @@ "17:00", "17:50", "HQ C03 - Humanities Quadrangle C03", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -84373,7 +184420,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -84404,7 +184479,7 @@ "19:00", "19:50", "WLH 001 - William L. Harkness Hall 001", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -84423,7 +184498,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -84454,7 +184557,7 @@ "20:00", "20:50", "WLH 001 - William L. Harkness Hall 001", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -84473,7 +184576,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -84504,7 +184635,7 @@ "17:00", "17:50", "WLH 210 - William L. Harkness Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -84523,7 +184654,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -84554,7 +184713,7 @@ "19:00", "19:50", "WLH 210 - William L. Harkness Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -84573,7 +184732,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -84604,7 +184791,7 @@ "17:00", "17:50", "WLH 013 - William L. Harkness Hall 013", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -84623,7 +184810,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -84654,7 +184869,7 @@ "19:00", "19:50", "WLH 001 - William L. Harkness Hall 001", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -84673,7 +184888,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -84710,7 +184953,7 @@ "9:00", "10:15", "WLH 117 - William L. Harkness Hall 117", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -84718,7 +184961,7 @@ "9:00", "10:15", "WLH 117 - William L. Harkness Hall 117", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -84738,10 +184981,121 @@ "classnotes": "", "final_exam": "Tuesday, May 9, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83774\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83774/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982275366783142, + 0.9986151456832886, + 0.9978329539299011, + 0.9677596092224121, + 0.9988442659378052, + 0.9680766463279724 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984084963798523, + 0.9962305426597595, + 0.9994848966598511, + 0.99818354845047, + 0.9988434314727783, + 0.9926776885986328, + 0.9989039897918701, + 0.9993884563446045, + 0.9870647192001343 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.5555555555555556, + "NEGATIVE": 0.4444444444444444 + }, + "sentiment_overall": [ + "POSITIVE", + 0.5555555555555556 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983552098274231, + 0.9898822903633118, + 0.9995071887969971, + 0.9926683306694031, + 0.9988778233528137, + 0.9987285733222961, + 0.997229278087616 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.7142857142857143, + "NEGATIVE": 0.2857142857142857 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7142857142857143 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 0.6818181818181818, + "final_counts": { + "POSITIVE": 15, + "NEGATIVE": 7 + }, + "final_distribution": { + "POSITIVE": 0.6818181818181818, + "NEGATIVE": 0.3181818181818182 + } + } }, { "season_code": "202301", @@ -84772,7 +185126,7 @@ "17:00", "17:50", "WLH 210 - William L. Harkness Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -84791,7 +185145,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -84822,7 +185204,7 @@ "20:00", "20:50", "WLH 210 - William L. Harkness Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -84841,7 +185223,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -84878,7 +185288,7 @@ "13:00", "14:15", "WLH 120 - William L. Harkness Hall 120", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -84886,7 +185296,7 @@ "13:00", "14:15", "WLH 120 - William L. Harkness Hall 120", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -84905,10 +185315,133 @@ "classnotes": "", "final_exam": "Tuesday, May 9, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83779\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83779/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9945018291473389, + 0.9986488223075867, + 0.9986259937286377, + 0.9989134073257446, + 0.9989157915115356, + 0.9989238381385803, + 0.9987841248512268, + 0.9964343309402466, + 0.9985840320587158, + 0.9988289475440979 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989228844642639, + 0.9988916516304016, + 0.9968883395195007, + 0.9989218711853027, + 0.9988293051719666, + 0.998933732509613, + 0.998892605304718, + 0.9989227652549744 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984138011932373, + 0.9983160495758057, + 0.9967784285545349, + 0.9988107681274414, + 0.9986178874969482, + 0.998916506767273, + 0.9989394545555115, + 0.9989307522773743, + 0.998935878276825, + 0.9989001750946045 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 27, + "final_proportion": 0.9642857142857143, + "final_counts": { + "POSITIVE": 27, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9642857142857143, + "NEGATIVE": 0.03571428571428571 + } + } }, { "season_code": "202301", @@ -84939,7 +185472,7 @@ "16:00", "16:50", "WLH 002 - William L. Harkness Hall 002", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -84958,7 +185491,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -84989,7 +185550,7 @@ "17:00", "17:50", "WLH 002 - William L. Harkness Hall 002", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -85008,7 +185569,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -85045,7 +185634,7 @@ "14:30", "15:45", "WLH 117 - William L. Harkness Hall 117", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -85053,7 +185642,7 @@ "14:30", "15:45", "WLH 117 - William L. Harkness Hall 117", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -85073,10 +185662,153 @@ "classnotes": "", "final_exam": "Wednesday, May 10, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83783\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83783/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9953265190124512, + 0.9970560073852539, + 0.9964243769645691, + 0.9987671375274658, + 0.9979063272476196, + 0.998775064945221, + 0.998664140701294, + 0.9988492727279663, + 0.9985380172729492, + 0.9957347512245178, + 0.9752864241600037 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9965960383415222, + 0.9988316893577576, + 0.9994970560073853, + 0.9989018440246582, + 0.9988634586334229, + 0.9985741376876831, + 0.9989124536514282, + 0.9988511800765991, + 0.998874843120575, + 0.9989295601844788, + 0.9989351630210876, + 0.9994827508926392, + 0.9941224455833435 + ], + "sentiment_counts": { + "NEGATIVE": 5, + "POSITIVE": 8 + }, + "sentiment_distribution": { + "NEGATIVE": 0.38461538461538464, + "POSITIVE": 0.6153846153846154 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6153846153846154 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998380184173584, + 0.99825519323349, + 0.9975341558456421, + 0.9994296431541443, + 0.998856782913208, + 0.9983972907066345, + 0.9985530972480774, + 0.9988390803337097, + 0.9981948733329773, + 0.9989186525344849, + 0.9988503456115723, + 0.9988927245140076, + 0.9995015859603882, + 0.9945884943008423 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.7142857142857143, + "NEGATIVE": 0.2857142857142857 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7142857142857143 + ] + }, + "final_label": "POSITIVE", + "final_count": 29, + "final_proportion": 0.7631578947368421, + "final_counts": { + "POSITIVE": 29, + "NEGATIVE": 9 + }, + "final_distribution": { + "POSITIVE": 0.7631578947368421, + "NEGATIVE": 0.23684210526315788 + } + } }, { "season_code": "202301", @@ -85107,7 +185839,7 @@ "19:00", "19:50", "WLH 002 - William L. Harkness Hall 002", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -85126,7 +185858,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -85157,7 +185917,7 @@ "20:00", "20:50", "WLH 002 - William L. Harkness Hall 002", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -85176,12 +185936,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", - "requirements": "Prerequisite: Any introductory game theory course, e.g., ECON\/GLBL 159, MGT 822 or\u00a0Game\u00a0Theory\u00a0in the SOM Core.", - "description": "This is a second half of the semester class on applications of game theory. We build on the learnings from introductory game theory courses like ECON\/GLBL 159 or MGT 822. The course aims to introduce important ideas and tools from game theory, and use them to answer questions in social sciences, law, and business. For instance, how can we use game theory to design sound environmental policies and formulate environmental treaties? How large should juries be, and should we require unanimous verdicts? Why do bargaining parties sometimes engage in lengthy and costly legal battles? How do sellers decide the best format for an auction to sell a good? When do we see price wars? The topics include basics of mechanism design, bargaining with incomplete information, dynamic pricing, and applications of repeated games.", + "requirements": "Prerequisite: Any introductory game theory course, e.g., ECON/GLBL 159, MGT 822 or\u00a0Game\u00a0Theory\u00a0in the SOM Core.", + "description": "This is a second half of the semester class on applications of game theory. We build on the learnings from introductory game theory courses like ECON/GLBL 159 or MGT 822. The course aims to introduce important ideas and tools from game theory, and use them to answer questions in social sciences, law, and business. For instance, how can we use game theory to design sound environmental policies and formulate environmental treaties? How large should juries be, and should we require unanimous verdicts? Why do bargaining parties sometimes engage in lengthy and costly legal battles? How do sellers decide the best format for an auction to sell a good? When do we see price wars? The topics include basics of mechanism design, bargaining with incomplete information, dynamic pricing, and applications of repeated games.", "short_title": "Applications of Game Theory", "title": "Applications of Game Theory", "school": "YC", @@ -85218,7 +186006,7 @@ "14:40", "16:00", "EVANS 4400 - Edward P Evans Hall 4400", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Thursday": [ @@ -85226,7 +186014,7 @@ "14:40", "16:00", "EVANS 4400 - Edward P Evans Hall 4400", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -85242,10 +186030,97 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84520\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84520/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988510608673096, + 0.9989043474197388, + 0.9988664388656616 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987670183181763, + 0.9983845949172974 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988986253738403, + 0.9956117272377014, + 0.9989016056060791, + 0.9987834095954895, + 0.9908202290534973 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 0.9, + "final_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + } + } }, { "season_code": "202301", @@ -85284,7 +186159,7 @@ "10:30", "11:20", "WALL53 AUD - 53 Wall Street AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/559554" + "https://map.yale.edu/?id=1910#!m/559554" ] ], "Thursday": [ @@ -85292,7 +186167,7 @@ "10:30", "11:20", "WALL53 AUD - 53 Wall Street AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/559554" + "https://map.yale.edu/?id=1910#!m/559554" ] ] }, @@ -85313,10 +186188,279 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83787\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83787/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989020824432373, + 0.9982200264930725, + 0.9979315996170044, + 0.9984152317047119, + 0.9988815188407898, + 0.9987626075744629, + 0.9985306262969971, + 0.9980157613754272, + 0.9978541731834412, + 0.9986346364021301, + 0.9989012479782104, + 0.9835135340690613, + 0.9984681010246277, + 0.9987140893936157, + 0.998831570148468, + 0.9977523684501648, + 0.9949361085891724, + 0.998715877532959, + 0.9978220462799072, + 0.9986718893051147, + 0.998816728591919, + 0.9981309771537781, + 0.9987673759460449, + 0.9988505840301514, + 0.9984118938446045, + 0.9987666606903076, + 0.998783528804779, + 0.9983091354370117, + 0.9986559152603149, + 0.9988646507263184 + ], + "sentiment_counts": { + "POSITIVE": 28, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.9333333333333333, + "NEGATIVE": 0.06666666666666667 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9333333333333333 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9990130662918091, + 0.999504566192627, + 0.9984152317047119, + 0.9995008707046509, + 0.9986315369606018, + 0.998721182346344, + 0.9991198182106018, + 0.9989039897918701, + 0.996553897857666, + 0.9977604150772095, + 0.9988743662834167, + 0.9989368319511414, + 0.9988803267478943, + 0.9985742568969727, + 0.9985694885253906, + 0.9876213669776917, + 0.9899699091911316, + 0.9988962411880493, + 0.9989005327224731, + 0.9995015859603882, + 0.9988722205162048, + 0.998909592628479, + 0.9988873600959778, + 0.9966509938240051, + 0.9994663596153259, + 0.9987519979476929, + 0.996585488319397, + 0.9985295534133911, + 0.9986647367477417, + 0.999500036239624, + 0.9939508438110352, + 0.9982873797416687 + ], + "sentiment_counts": { + "NEGATIVE": 15, + "POSITIVE": 17 + }, + "sentiment_distribution": { + "NEGATIVE": 0.46875, + "POSITIVE": 0.53125 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989180564880371, + 0.9966559410095215, + 0.9995113611221313, + 0.997117280960083, + 0.9984152317047119, + 0.9995068311691284, + 0.9974791407585144, + 0.9988237023353577, + 0.9994764924049377, + 0.9980016350746155, + 0.9988163709640503, + 0.9857620000839233, + 0.9974468946456909, + 0.997117280960083, + 0.9982800483703613, + 0.9988102912902832, + 0.9988534450531006, + 0.9987898468971252, + 0.9989326596260071, + 0.9974592328071594, + 0.9987229704856873, + 0.9989144802093506, + 0.9982049465179443, + 0.9993675351142883, + 0.9961845278739929, + 0.9989049434661865, + 0.9986286163330078, + 0.9989244341850281, + 0.999467670917511, + 0.997117280960083, + 0.9979928731918335, + 0.9963659048080444, + 0.9984989166259766, + 0.9955228567123413, + 0.998916745185852, + 0.998801589012146, + 0.999512791633606, + 0.9980016350746155, + 0.9975739121437073 + ], + "sentiment_counts": { + "POSITIVE": 25, + "NEGATIVE": 14 + }, + "sentiment_distribution": { + "POSITIVE": 0.6410256410256411, + "NEGATIVE": 0.358974358974359 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6410256410256411 + ] + }, + "final_label": "POSITIVE", + "final_count": 70, + "final_proportion": 0.693069306930693, + "final_counts": { + "POSITIVE": 70, + "NEGATIVE": 31 + }, + "final_distribution": { + "POSITIVE": 0.693069306930693, + "NEGATIVE": 0.3069306930693069 + } + } }, { "season_code": "202301", @@ -85354,7 +186498,7 @@ "13:00", "14:15", "WLH 119 - William L. Harkness Hall 119", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -85362,7 +186506,7 @@ "13:00", "14:15", "WLH 119 - William L. Harkness Hall 119", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -85376,10 +186520,139 @@ "classnotes": "", "final_exam": "Tuesday, May 9, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83791\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83791/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9994499087333679, + 0.9935628175735474, + 0.998683512210846, + 0.9988177418708801, + 0.9988738894462585, + 0.9988996982574463, + 0.9987407326698303, + 0.9986531734466553, + 0.9994858503341675 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 6 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9983792304992676, + 0.9995003938674927, + 0.9968775510787964, + 0.9989067316055298, + 0.998543381690979, + 0.9989355206489563, + 0.9989010095596313, + 0.9995062351226807, + 0.9989151954650879, + 0.9988179802894592, + 0.9995005130767822 + ], + "sentiment_counts": { + "NEGATIVE": 4, + "POSITIVE": 7 + }, + "sentiment_distribution": { + "NEGATIVE": 0.36363636363636365, + "POSITIVE": 0.6363636363636364 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6363636363636364 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9995064735412598, + 0.9957501888275146, + 0.9988375306129456, + 0.9988773465156555, + 0.9986376166343689, + 0.998907208442688, + 0.9974306225776672, + 0.9974205493927002, + 0.9995061159133911, + 0.9988576173782349, + 0.9995038509368896 + ], + "sentiment_counts": { + "NEGATIVE": 4, + "POSITIVE": 7 + }, + "sentiment_distribution": { + "NEGATIVE": 0.36363636363636365, + "POSITIVE": 0.6363636363636364 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6363636363636364 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 0.6451612903225806, + "final_counts": { + "NEGATIVE": 11, + "POSITIVE": 20 + }, + "final_distribution": { + "NEGATIVE": 0.3548387096774194, + "POSITIVE": 0.6451612903225806 + } + } }, { "season_code": "202301", @@ -85421,7 +186694,7 @@ "14:30", "15:45", "PH 207 - Phelps Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ], "Thursday": [ @@ -85429,7 +186702,7 @@ "14:30", "15:45", "PH 207 - Phelps Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -85446,10 +186719,121 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84627\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84627/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988141059875488, + 0.9965903759002686, + 0.9988465309143066, + 0.9987828135490417, + 0.9995033740997314, + 0.9988623857498169, + 0.9986159801483154 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9990390539169312, + 0.9988694787025452, + 0.9988956451416016, + 0.991764485836029, + 0.9989331364631653, + 0.9987930059432983, + 0.9987930059432983 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 6 + }, + "sentiment_distribution": { + "NEGATIVE": 0.14285714285714285, + "POSITIVE": 0.8571428571428571 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982553124427795, + 0.9989118576049805, + 0.9988988637924194, + 0.9989111423492432, + 0.9995043277740479, + 0.998880922794342, + 0.9988678693771362, + 0.9988558292388916 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 0.8636363636363636, + "final_counts": { + "POSITIVE": 19, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.8636363636363636, + "NEGATIVE": 0.13636363636363635 + } + } }, { "season_code": "202301", @@ -85486,7 +186870,7 @@ "9:00", "10:15", "WTS A60 - Watson Center 60 Sachem Street A60", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -85494,7 +186878,7 @@ "9:00", "10:15", "WTS A60 - Watson Center 60 Sachem Street A60", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -85514,10 +186898,197 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83796\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83796/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9955629110336304, + 0.9938912391662598, + 0.9973606467247009, + 0.9955170750617981, + 0.9988341927528381, + 0.9987395405769348, + 0.9985677003860474, + 0.9981880784034729, + 0.9986670017242432, + 0.9988300204277039, + 0.9986715316772461, + 0.9987010955810547, + 0.9985311031341553, + 0.9987446069717407, + 0.9985652565956116, + 0.9986458420753479, + 0.9986764788627625, + 0.9988816380500793, + 0.9978755712509155, + 0.9962424039840698, + 0.9984583854675293, + 0.9988502264022827 + ], + "sentiment_counts": { + "POSITIVE": 22, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.999488353729248, + 0.9983166456222534, + 0.9981430768966675, + 0.9987596273422241, + 0.9985628724098206, + 0.9988590478897095, + 0.9986262321472168, + 0.9988963603973389, + 0.9994902610778809, + 0.9987817406654358, + 0.9878204464912415, + 0.9989196062088013, + 0.9972622394561768, + 0.9986764788627625, + 0.9988780617713928, + 0.9989086389541626, + 0.9982484579086304, + 0.9988822340965271 + ], + "sentiment_counts": { + "NEGATIVE": 4, + "POSITIVE": 14 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2222222222222222, + "POSITIVE": 0.7777777777777778 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7777777777777778 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994737505912781, + 0.9974164962768555, + 0.996846616268158, + 0.9984235763549805, + 0.998918890953064, + 0.997951328754425, + 0.9985169768333435, + 0.9985987544059753, + 0.9989330172538757, + 0.9988915324211121, + 0.9984306693077087, + 0.9955701231956482, + 0.9988588094711304, + 0.9989092350006104, + 0.9988051652908325, + 0.9988325238227844, + 0.9983779191970825, + 0.998884379863739, + 0.9969356060028076, + 0.9986042380332947 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 17 + }, + "sentiment_distribution": { + "NEGATIVE": 0.15, + "POSITIVE": 0.85 + }, + "sentiment_overall": [ + "POSITIVE", + 0.85 + ] + }, + "final_label": "POSITIVE", + "final_count": 53, + "final_proportion": 0.8833333333333333, + "final_counts": { + "POSITIVE": 53, + "NEGATIVE": 7 + }, + "final_distribution": { + "POSITIVE": 0.8833333333333333, + "NEGATIVE": 0.11666666666666667 + } + } }, { "season_code": "202301", @@ -85555,7 +187126,7 @@ "8:30", "9:50", "EVANS 4420 - Edward P Evans Hall 4420", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Wednesday": [ @@ -85563,7 +187134,7 @@ "8:30", "9:50", "EVANS 4420 - Edward P Evans Hall 4420", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -85580,10 +187151,151 @@ "classnotes": "", "final_exam": "Saturday, May 6, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84515\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84515/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989239573478699, + 0.9988943934440613, + 0.9986760020256042, + 0.9986478686332703, + 0.9988638162612915, + 0.9988273978233337, + 0.9989124536514282, + 0.9988957643508911, + 0.9986059069633484, + 0.9981929659843445, + 0.9968010187149048, + 0.9985886216163635 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983617663383484, + 0.9988995790481567, + 0.9988507032394409, + 0.9989191293716431, + 0.998933732509613, + 0.9978492259979248, + 0.9988693594932556, + 0.9987358450889587, + 0.9972301125526428, + 0.998906135559082, + 0.9989166259765625, + 0.998914361000061, + 0.9988987445831299, + 0.998845100402832 + ], + "sentiment_counts": { + "POSITIVE": 14, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988596439361572, + 0.9985085129737854, + 0.998939573764801, + 0.9945459365844727, + 0.9986563920974731, + 0.9988312125205994, + 0.9989168643951416, + 0.9980168342590332, + 0.998524010181427, + 0.9989140033721924, + 0.9988521337509155, + 0.9988987445831299 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 38, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 38 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -85621,7 +187333,7 @@ "9:00", "10:15", "WLH 116 - William L. Harkness Hall 116", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -85629,7 +187341,7 @@ "9:00", "10:15", "WLH 116 - William L. Harkness Hall 116", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -85646,10 +187358,205 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83800\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83800/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988173842430115, + 0.9881293773651123, + 0.9985105395317078, + 0.9987599849700928, + 0.9985837936401367, + 0.9985750913619995, + 0.9988518953323364, + 0.9987568855285645, + 0.9979873895645142, + 0.9985576272010803, + 0.9994816184043884, + 0.998896598815918, + 0.9986191987991333, + 0.9989169836044312, + 0.998613715171814, + 0.9901878237724304, + 0.9988064765930176, + 0.9987775683403015, + 0.9986931681632996, + 0.9981673955917358 + ], + "sentiment_counts": { + "POSITIVE": 19, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.95, + "NEGATIVE": 0.05 + }, + "sentiment_overall": [ + "POSITIVE", + 0.95 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986386895179749, + 0.9987093210220337, + 0.998900294303894, + 0.9964189529418945, + 0.9988300204277039, + 0.9989288449287415, + 0.9988452196121216, + 0.9987766146659851, + 0.9989179372787476, + 0.9974960684776306, + 0.9987860321998596, + 0.9994996786117554, + 0.9988371729850769, + 0.9995050430297852, + 0.9988688826560974, + 0.9966427087783813, + 0.998815655708313, + 0.998671293258667, + 0.9985601305961609, + 0.9985688924789429, + 0.9987905621528625, + 0.9988824725151062, + 0.9817447066307068 + ], + "sentiment_counts": { + "POSITIVE": 20, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.8695652173913043, + "NEGATIVE": 0.13043478260869565 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8695652173913043 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986289739608765, + 0.997117280960083, + 0.9986990690231323, + 0.9984304308891296, + 0.9989136457443237, + 0.9987618923187256, + 0.9988670349121094, + 0.9987359642982483, + 0.9982553124427795, + 0.9963602423667908, + 0.9988107681274414, + 0.9995006322860718, + 0.9988632202148438, + 0.9995062351226807, + 0.9987983703613281, + 0.998695433139801, + 0.9985633492469788, + 0.9989087581634521, + 0.9988911747932434, + 0.9984412789344788, + 0.9961736798286438 + ], + "sentiment_counts": { + "POSITIVE": 19, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.9047619047619048, + "NEGATIVE": 0.09523809523809523 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9047619047619048 + ] + }, + "final_label": "POSITIVE", + "final_count": 58, + "final_proportion": 0.90625, + "final_counts": { + "POSITIVE": 58, + "NEGATIVE": 6 + }, + "final_distribution": { + "POSITIVE": 0.90625, + "NEGATIVE": 0.09375 + } + } }, { "season_code": "202301", @@ -85686,7 +187593,7 @@ "13:00", "14:15", "WTS A60 - Watson Center 60 Sachem Street A60", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -85694,7 +187601,7 @@ "13:00", "14:15", "WTS A60 - Watson Center 60 Sachem Street A60", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -85713,10 +187620,209 @@ "classnotes": "", "final_exam": "Sunday, May 7, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83803\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83803/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985620379447937, + 0.9972706437110901, + 0.9983339905738831, + 0.998619794845581, + 0.9986419081687927, + 0.9987937211990356, + 0.997259259223938, + 0.9995071887969971, + 0.999440610408783, + 0.9989111423492432, + 0.9957518577575684, + 0.9984201192855835, + 0.9988718628883362, + 0.9988127946853638, + 0.9988662004470825, + 0.9995039701461792, + 0.9985781908035278, + 0.9928151369094849, + 0.9977570176124573, + 0.9985388517379761 + ], + "sentiment_counts": { + "POSITIVE": 17, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.85, + "NEGATIVE": 0.15 + }, + "sentiment_overall": [ + "POSITIVE", + 0.85 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9901705384254456, + 0.9876097440719604, + 0.9988314509391785, + 0.9995049238204956, + 0.9995085000991821, + 0.9993556141853333, + 0.9960582256317139, + 0.9993658661842346, + 0.990477442741394, + 0.9995017051696777, + 0.9994919300079346, + 0.9965763688087463, + 0.9987491369247437, + 0.9987899661064148, + 0.9923242330551147, + 0.9989240765571594, + 0.998776376247406, + 0.9994363188743591, + 0.9995015859603882, + 0.9994962215423584, + 0.9989153146743774, + 0.9952129125595093 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 11 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9919613003730774, + 0.9994601607322693, + 0.9988114833831787, + 0.9994317889213562, + 0.9987015724182129, + 0.9978419542312622, + 0.9899266958236694, + 0.9994843006134033, + 0.9994878768920898, + 0.9988561868667603, + 0.9981232285499573, + 0.9979640245437622, + 0.9995001554489136, + 0.9987910389900208, + 0.9988829493522644, + 0.9995121955871582, + 0.9995026588439941, + 0.9970700740814209, + 0.9988734126091003, + 0.9994522929191589, + 0.9993476271629333, + 0.9988511800765991, + 0.9989351630210876, + 0.9987137317657471 + ], + "sentiment_counts": { + "NEGATIVE": 15, + "POSITIVE": 9 + }, + "sentiment_distribution": { + "NEGATIVE": 0.625, + "POSITIVE": 0.375 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.625 + ] + }, + "final_label": "POSITIVE", + "final_count": 37, + "final_proportion": 0.5606060606060606, + "final_counts": { + "POSITIVE": 37, + "NEGATIVE": 29 + }, + "final_distribution": { + "POSITIVE": 0.5606060606060606, + "NEGATIVE": 0.4393939393939394 + } + } }, { "season_code": "202301", @@ -85753,7 +187859,7 @@ "14:30", "15:45", "WLH 119 - William L. Harkness Hall 119", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -85761,7 +187867,7 @@ "14:30", "15:45", "WLH 119 - William L. Harkness Hall 119", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -85775,10 +187881,195 @@ "classnotes": "", "final_exam": "Thursday, May 4, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83806\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83806/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.998568058013916, + 0.9993569254875183, + 0.9982829093933105, + 0.9989004135131836, + 0.9966447353363037, + 0.9995044469833374, + 0.9931046366691589, + 0.998715877532959, + 0.9988987445831299, + 0.6550952792167664, + 0.9987339377403259, + 0.9937270879745483, + 0.9947585463523865, + 0.9947458505630493, + 0.9988549947738647, + 0.9985162615776062, + 0.9994798302650452 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.7647058823529411, + "NEGATIVE": 0.23529411764705882 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7647058823529411 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.999503493309021, + 0.9994638562202454, + 0.9973651766777039, + 0.9975746273994446, + 0.9993206262588501, + 0.9994863271713257, + 0.9987978935241699, + 0.9939868450164795, + 0.9953386783599854, + 0.9995089769363403, + 0.9988967180252075, + 0.5690931081771851, + 0.9829834699630737, + 0.9985881447792053, + 0.9987488985061646, + 0.9994878768920898, + 0.9994122982025146, + 0.9915483593940735, + 0.9964821338653564, + 0.9994939565658569, + 0.9995065927505493, + 0.9994921684265137 + ], + "sentiment_counts": { + "NEGATIVE": 13, + "POSITIVE": 9 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5909090909090909, + "POSITIVE": 0.4090909090909091 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.5909090909090909 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9994957447052002, + 0.9979835748672485, + 0.9984703660011292, + 0.9994688630104065, + 0.9953983426094055, + 0.9990559220314026, + 0.998832643032074, + 0.9988375306129456, + 0.9994180202484131, + 0.9980016350746155, + 0.9995056390762329, + 0.9989320635795593, + 0.9994882345199585, + 0.9985758066177368, + 0.9995038509368896, + 0.9847174286842346, + 0.9994744658470154, + 0.9977165460586548, + 0.999509334564209, + 0.9994764924049377 + ], + "sentiment_counts": { + "NEGATIVE": 12, + "POSITIVE": 8 + }, + "sentiment_distribution": { + "NEGATIVE": 0.6, + "POSITIVE": 0.4 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.6 + ] + }, + "final_label": "neutral", + "final_count": 30, + "final_proportion": 0.5, + "final_counts": { + "POSITIVE": 30, + "NEGATIVE": 29 + }, + "final_distribution": { + "POSITIVE": 0.5084745762711864, + "NEGATIVE": 0.4915254237288136 + } + } }, { "season_code": "202301", @@ -85816,7 +188107,7 @@ "14:30", "15:45", "WLH 201 - William L. Harkness Hall 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -85824,7 +188115,7 @@ "14:30", "15:45", "WLH 201 - William L. Harkness Hall 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -85838,10 +188129,445 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83716\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83716/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998434841632843, + 0.9982080459594727, + 0.9988564252853394, + 0.9987475872039795, + 0.9986604452133179, + 0.99689781665802, + 0.9984276294708252, + 0.9938638210296631, + 0.9986962676048279, + 0.9979375600814819, + 0.9989296793937683, + 0.9917047023773193, + 0.9988730549812317, + 0.9987183809280396, + 0.9988201260566711, + 0.9986482262611389, + 0.9988313317298889, + 0.8207393884658813, + 0.9984747767448425, + 0.9971253275871277, + 0.9981195330619812, + 0.9970648884773254, + 0.9988988637924194, + 0.9986206293106079, + 0.9985748529434204, + 0.9910196661949158, + 0.9965808987617493, + 0.9987494945526123, + 0.9986889958381653, + 0.9983949065208435, + 0.9988334774971008, + 0.9922411441802979, + 0.9988535642623901, + 0.9981483221054077, + 0.9995013475418091, + 0.9986730813980103, + 0.9932979941368103, + 0.9986452460289001, + 0.9955241680145264, + 0.9956992864608765, + 0.9972851276397705, + 0.9923567771911621, + 0.9223732948303223, + 0.998788058757782, + 0.9987136125564575, + 0.9989184141159058, + 0.9988295435905457, + 0.9911553859710693, + 0.9974313378334045, + 0.9968315958976746, + 0.9989150762557983, + 0.9915955662727356, + 0.9967821836471558, + 0.9986553192138672, + 0.9987793564796448, + 0.9988652467727661, + 0.9987996816635132, + 0.9995006322860718, + 0.9981990456581116, + 0.9989010095596313 + ], + "sentiment_counts": { + "NEGATIVE": 10, + "POSITIVE": 50 + }, + "sentiment_distribution": { + "NEGATIVE": 0.16666666666666666, + "POSITIVE": 0.8333333333333334 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982995390892029, + 0.9982187151908875, + 0.9988248944282532, + 0.9962831139564514, + 0.998927891254425, + 0.9964489936828613, + 0.9988386034965515, + 0.9973279237747192, + 0.998760461807251, + 0.9987792372703552, + 0.9981511235237122, + 0.9988546371459961, + 0.9983181953430176, + 0.9685793519020081, + 0.9995104074478149, + 0.9988566637039185, + 0.9988125562667847, + 0.9989221096038818, + 0.9987061023712158, + 0.9995075464248657, + 0.9989117383956909, + 0.9995133876800537, + 0.9989286065101624, + 0.9986133575439453, + 0.9989064931869507, + 0.9988999366760254, + 0.9982495903968811, + 0.9988275170326233, + 0.9988922476768494, + 0.9988920092582703, + 0.9991495609283447, + 0.9988841414451599, + 0.9988695979118347, + 0.9994854927062988, + 0.9988049268722534, + 0.9988924860954285, + 0.9987305998802185, + 0.9987674951553345, + 0.9966051578521729, + 0.9988675117492676, + 0.9983959794044495, + 0.9977309107780457, + 0.9989168643951416, + 0.9988200068473816, + 0.998883068561554, + 0.9988473653793335, + 0.9987154006958008, + 0.9988765120506287, + 0.9988675117492676, + 0.911847710609436, + 0.9924103021621704, + 0.9985816478729248, + 0.998762845993042, + 0.9942409992218018, + 0.9995098114013672, + 0.9989173412322998, + 0.9989326596260071 + ], + "sentiment_counts": { + "POSITIVE": 46, + "NEGATIVE": 11 + }, + "sentiment_distribution": { + "POSITIVE": 0.8070175438596491, + "NEGATIVE": 0.19298245614035087 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8070175438596491 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9890128374099731, + 0.9971332550048828, + 0.9987025260925293, + 0.9957932233810425, + 0.9896832704544067, + 0.9989159107208252, + 0.9988560676574707, + 0.9934477210044861, + 0.9965367317199707, + 0.998119056224823, + 0.9962498545646667, + 0.9986768364906311, + 0.9988405108451843, + 0.9988502264022827, + 0.9988411068916321, + 0.9887204766273499, + 0.9986898303031921, + 0.9986869692802429, + 0.9989424347877502, + 0.9987019300460815, + 0.998873770236969, + 0.9928731918334961, + 0.9986054301261902, + 0.987211287021637, + 0.9989339709281921, + 0.9995096921920776, + 0.9989206790924072, + 0.9989114999771118, + 0.9989277720451355, + 0.9419605731964111, + 0.9980016350746155, + 0.9830338358879089, + 0.9987527132034302, + 0.9972096085548401, + 0.9984248876571655, + 0.9989228844642639, + 0.9989027976989746, + 0.9994599223136902, + 0.9989305138587952, + 0.997117280960083, + 0.9958760142326355, + 0.9978814721107483, + 0.9985241293907166, + 0.9988901019096375, + 0.9988394379615784, + 0.9867393970489502, + 0.999427318572998, + 0.9989306330680847, + 0.998775064945221, + 0.9974592328071594, + 0.998875081539154, + 0.9989062547683716, + 0.9988425374031067, + 0.9950454235076904, + 0.9945884943008423, + 0.997343122959137, + 0.6985251307487488, + 0.9960170388221741, + 0.9989274144172668, + 0.998011589050293, + 0.997117280960083, + 0.9962496161460876, + 0.9987078905105591, + 0.9871260523796082, + 0.9989203214645386, + 0.9988238215446472, + 0.9988717436790466 + ], + "sentiment_counts": { + "POSITIVE": 52, + "NEGATIVE": 15 + }, + "sentiment_distribution": { + "POSITIVE": 0.7761194029850746, + "NEGATIVE": 0.22388059701492538 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7761194029850746 + ] + }, + "final_label": "POSITIVE", + "final_count": 148, + "final_proportion": 0.8043478260869565, + "final_counts": { + "NEGATIVE": 36, + "POSITIVE": 148 + }, + "final_distribution": { + "NEGATIVE": 0.1956521739130435, + "POSITIVE": 0.8043478260869565 + } + } }, { "season_code": "202301", @@ -85879,7 +188605,7 @@ "14:30", "15:45", "DL 220 - Dunham Laboratory 220", - "https:\/\/map.yale.edu\/?id=1910#!m\/560005" + "https://map.yale.edu/?id=1910#!m/560005" ] ], "Thursday": [ @@ -85887,7 +188613,7 @@ "14:30", "15:45", "DL 220 - Dunham Laboratory 220", - "https:\/\/map.yale.edu\/?id=1910#!m\/560005" + "https://map.yale.edu/?id=1910#!m/560005" ] ] }, @@ -85901,10 +188627,333 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83716\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83716/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9993676543235779, + 0.9878627061843872, + 0.9908944368362427, + 0.9959115982055664, + 0.997473418712616, + 0.9986440539360046, + 0.9988177418708801, + 0.99887615442276, + 0.997473418712616, + 0.9986775517463684, + 0.9897167086601257, + 0.9983154535293579, + 0.9814861416816711, + 0.9987457990646362, + 0.9989126920700073, + 0.9988731741905212, + 0.9889397025108337, + 0.9966949224472046, + 0.9987686276435852, + 0.9986565113067627, + 0.9975526928901672, + 0.9921582937240601, + 0.9967666864395142, + 0.9937413334846497, + 0.9983720183372498, + 0.997473418712616, + 0.9987755417823792, + 0.9983707070350647, + 0.9981654286384583, + 0.9987616539001465, + 0.9974307417869568, + 0.9980360865592957, + 0.9988572597503662, + 0.9987834095954895, + 0.9983723759651184, + 0.9928667545318604, + 0.9987518787384033, + 0.9988596439361572, + 0.9883760213851929, + 0.998023509979248, + 0.9980719089508057, + 0.9971780776977539, + 0.9984867572784424, + 0.999408483505249 + ], + "sentiment_counts": { + "NEGATIVE": 10, + "POSITIVE": 34 + }, + "sentiment_distribution": { + "NEGATIVE": 0.22727272727272727, + "POSITIVE": 0.7727272727272727 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7727272727272727 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9995005130767822, + 0.9995076656341553, + 0.9988839030265808, + 0.9989258646965027, + 0.9988611936569214, + 0.9988511800765991, + 0.9989264607429504, + 0.9988382458686829, + 0.9987949132919312, + 0.9987817406654358, + 0.9989088773727417, + 0.9989182949066162, + 0.9989240765571594, + 0.9952421188354492, + 0.9995039701461792, + 0.9987998008728027, + 0.9978293776512146, + 0.998189389705658, + 0.9909310340881348, + 0.9987854361534119, + 0.9988804459571838, + 0.9944168329238892, + 0.998885452747345, + 0.9987099170684814, + 0.9052479863166809, + 0.9968106150627136, + 0.9988393187522888, + 0.9989150762557983, + 0.9985246062278748, + 0.9989233613014221, + 0.9959425330162048, + 0.998881995677948, + 0.9986213445663452, + 0.9994534850120544, + 0.998909592628479, + 0.9988623857498169, + 0.9988584518432617, + 0.9988784193992615 + ], + "sentiment_counts": { + "NEGATIVE": 7, + "POSITIVE": 31 + }, + "sentiment_distribution": { + "NEGATIVE": 0.18421052631578946, + "POSITIVE": 0.8157894736842105 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8157894736842105 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985028505325317, + 0.9995032548904419, + 0.9934513568878174, + 0.9989295601844788, + 0.9988921284675598, + 0.9988558292388916, + 0.998904824256897, + 0.9905986189842224, + 0.9988250136375427, + 0.9988775849342346, + 0.9939802885055542, + 0.996523916721344, + 0.9986705780029297, + 0.9987131357192993, + 0.9988686442375183, + 0.9989232420921326, + 0.9212614893913269, + 0.9988030195236206, + 0.9986386895179749, + 0.9987050294876099, + 0.998766303062439, + 0.9973223805427551, + 0.9988271594047546, + 0.9988631010055542, + 0.98366379737854, + 0.9983553290367126, + 0.9989185333251953, + 0.9935058355331421, + 0.9929614663124084, + 0.9988715052604675, + 0.9988332390785217, + 0.997117280960083, + 0.9984695315361023, + 0.9989011287689209, + 0.9983184337615967, + 0.9989222288131714, + 0.9988648891448975, + 0.9988731741905212, + 0.9989181756973267, + 0.9950569868087769, + 0.997117280960083, + 0.9988996982574463, + 0.9988676309585571, + 0.9988757967948914, + 0.9984253644943237, + 0.9916425943374634 + ], + "sentiment_counts": { + "NEGATIVE": 8, + "POSITIVE": 38 + }, + "sentiment_distribution": { + "NEGATIVE": 0.17391304347826086, + "POSITIVE": 0.8260869565217391 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8260869565217391 + ] + }, + "final_label": "POSITIVE", + "final_count": 103, + "final_proportion": 0.8046875, + "final_counts": { + "NEGATIVE": 25, + "POSITIVE": 103 + }, + "final_distribution": { + "NEGATIVE": 0.1953125, + "POSITIVE": 0.8046875 + } + } }, { "season_code": "202301", @@ -85942,7 +188991,7 @@ "13:00", "14:15", "WTS A51 - Watson Center 60 Sachem Street A51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -85950,7 +188999,7 @@ "13:00", "14:15", "WTS A51 - Watson Center 60 Sachem Street A51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -85969,10 +189018,165 @@ "classnotes": "", "final_exam": "Sunday, May 7, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83809\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83809/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9790672659873962, + 0.998815655708313, + 0.9899131059646606, + 0.9965803027153015, + 0.9987680315971375, + 0.9987868666648865, + 0.9988184571266174, + 0.9985621571540833, + 0.9962312579154968, + 0.9977613687515259, + 0.99688321352005, + 0.9985203146934509, + 0.9988999366760254, + 0.998927891254425, + 0.9987778067588806, + 0.9979885816574097 + ], + "sentiment_counts": { + "POSITIVE": 15, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9375, + "NEGATIVE": 0.0625 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9375 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9986400008201599, + 0.9985315799713135, + 0.9989351630210876, + 0.9988310933113098, + 0.998835027217865, + 0.9988934397697449, + 0.9988817572593689, + 0.9989256262779236, + 0.9988331198692322, + 0.9934710264205933, + 0.9988322854042053, + 0.9995015859603882 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.997117280960083, + 0.9989197254180908, + 0.9988356232643127, + 0.9988561868667603, + 0.9989094734191895, + 0.9980168342590332, + 0.9988027811050415, + 0.9986258745193481, + 0.9989307522773743, + 0.9987486600875854, + 0.9988667964935303, + 0.9989134073257446, + 0.9988846182823181, + 0.9988052845001221, + 0.9985248446464539, + 0.9974592328071594 + ], + "sentiment_counts": { + "POSITIVE": 16, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 41, + "final_proportion": 0.9318181818181818, + "final_counts": { + "POSITIVE": 41, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.9318181818181818, + "NEGATIVE": 0.06818181818181818 + } + } }, { "season_code": "202301", @@ -86009,7 +189213,7 @@ "9:00", "10:15", "WLH 114 - William L. Harkness Hall 114", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -86017,7 +189221,7 @@ "9:00", "10:15", "WLH 114 - William L. Harkness Hall 114", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -86035,10 +189239,93 @@ "classnotes": "", "final_exam": "Saturday, May 6, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83811\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83811/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984737038612366, + 0.9971079230308533, + 0.9987666606903076 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987296462059021, + 0.9988961219787598, + 0.9988738894462585 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988304972648621, + 0.9988330006599426, + 0.9987735152244568 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 9 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -86075,7 +189362,7 @@ "13:00", "14:15", "WLH 116 - William L. Harkness Hall 116", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -86083,7 +189370,7 @@ "13:00", "14:15", "WLH 116 - William L. Harkness Hall 116", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -86097,10 +189384,121 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83813\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83813/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988237023353577, + 0.9986535310745239, + 0.9988659620285034, + 0.998505711555481, + 0.998854398727417, + 0.9982036352157593, + 0.9945961833000183 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9986103773117065, + 0.9988456964492798, + 0.9914933443069458, + 0.9987742304801941, + 0.99769127368927, + 0.9929470419883728, + 0.997885525226593, + 0.9994408488273621 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.625, + "NEGATIVE": 0.375 + }, + "sentiment_overall": [ + "POSITIVE", + 0.625 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989299178123474, + 0.9989269375801086, + 0.9981306195259094, + 0.9994718432426453, + 0.9983240962028503, + 0.9988706707954407, + 0.9994718432426453 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.7142857142857143, + "NEGATIVE": 0.2857142857142857 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7142857142857143 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 0.7727272727272727, + "final_counts": { + "POSITIVE": 17, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.7727272727272727, + "NEGATIVE": 0.22727272727272727 + } + } }, { "season_code": "202301", @@ -86138,7 +189536,7 @@ "16:00", "17:15", "TRUM87 B120 - 87 Trumbull Street B120", - "https:\/\/map.yale.edu\/?id=1910#!m\/559543" + "https://map.yale.edu/?id=1910#!m/559543" ] ], "Wednesday": [ @@ -86146,7 +189544,7 @@ "16:00", "17:15", "TRUM87 B120 - 87 Trumbull Street B120", - "https:\/\/map.yale.edu\/?id=1910#!m\/559543" + "https://map.yale.edu/?id=1910#!m/559543" ] ] }, @@ -86155,7 +189553,7 @@ "So" ], "flags": [ - "YC CSEC: Electv intrsctn CS\/EC", + "YC CSEC: Electv intrsctn CS/EC", "YC ECON: Methodology", "YC ECON: Macroeconomics" ], @@ -86164,10 +189562,167 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83814\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83814/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987886548042297, + 0.7018657922744751, + 0.9981683492660522, + 0.9983697533607483, + 0.9820941090583801, + 0.9820941090583801, + 0.9988677501678467, + 0.9986080527305603, + 0.9984059929847717, + 0.9983059167861938, + 0.9928065538406372, + 0.9988334774971008, + 0.9986308217048645, + 0.9981789588928223, + 0.9984306693077087, + 0.9986526966094971 + ], + "sentiment_counts": { + "POSITIVE": 15, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9375, + "NEGATIVE": 0.0625 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9375 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988283514976501, + 0.9986922144889832, + 0.9962776303291321, + 0.9989277720451355, + 0.999457061290741, + 0.9989223480224609, + 0.998927652835846, + 0.9988271594047546, + 0.9979230761528015, + 0.998336672782898, + 0.9988762736320496, + 0.9987583160400391, + 0.998873770236969, + 0.9971694350242615, + 0.9983170032501221 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8666666666666667, + "NEGATIVE": 0.13333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8666666666666667 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998907208442688, + 0.9814485907554626, + 0.9988369345664978, + 0.9968885779380798, + 0.9988948702812195, + 0.9989180564880371, + 0.9987360835075378, + 0.9972580671310425, + 0.9988871216773987, + 0.9988605976104736, + 0.9975342750549316, + 0.943117618560791, + 0.9811275005340576, + 0.997117280960083 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "final_label": "POSITIVE", + "final_count": 40, + "final_proportion": 0.8888888888888888, + "final_counts": { + "POSITIVE": 40, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + } + } }, { "season_code": "202301", @@ -86204,7 +189759,7 @@ "16:00", "17:15", "WLH 120 - William L. Harkness Hall 120", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Friday": [ @@ -86212,7 +189767,7 @@ "16:00", "17:15", "WLH 120 - William L. Harkness Hall 120", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -86230,10 +189785,103 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83817\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83817/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988617897033691, + 0.9972342848777771, + 0.998298704624176, + 0.9988164901733398, + 0.9988102912902832 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983683228492737, + 0.998571515083313, + 0.9995007514953613, + 0.9979230761528015 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986764788627625, + 0.9930496215820312, + 0.9995012283325195, + 0.997117280960083 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 0.7692307692307693, + "final_counts": { + "POSITIVE": 10, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.7692307692307693, + "NEGATIVE": 0.23076923076923078 + } + } }, { "season_code": "202301", @@ -86270,7 +189918,7 @@ "9:00", "10:15", "WLH 114 - William L. Harkness Hall 114", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -86278,7 +189926,7 @@ "9:00", "10:15", "WLH 114 - William L. Harkness Hall 114", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -86287,7 +189935,7 @@ "So" ], "flags": [ - "YC CSEC: Electv intrsctn CS\/EC", + "YC CSEC: Electv intrsctn CS/EC", "YC ECON: Methodology", "YC ECON: Macroeconomics" ], @@ -86296,10 +189944,111 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83820\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83820/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983425140380859, + 0.998896598815918, + 0.9988470077514648, + 0.998803973197937, + 0.9989118576049805, + 0.9988686442375183 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989355206489563, + 0.9989308714866638, + 0.998931348323822, + 0.9987971782684326, + 0.9969022870063782, + 0.9989321827888489 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989114999771118, + 0.9988129138946533, + 0.9988304972648621, + 0.9989062547683716, + 0.9968796968460083, + 0.998904824256897 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 18 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -86337,7 +190086,7 @@ "14:40", "16:00", "EVANS 4410 - Edward P Evans Hall 4410", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Thursday": [ @@ -86345,7 +190094,7 @@ "14:40", "16:00", "EVANS 4410 - Edward P Evans Hall 4410", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -86362,10 +190111,111 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84505\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84505/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9976451992988586, + 0.973828136920929, + 0.9989235997200012, + 0.9988378882408142, + 0.9971725940704346, + 0.9845535755157471 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9962725639343262, + 0.9985054731369019, + 0.9987927675247192, + 0.9988968372344971, + 0.9987930059432983, + 0.9975812435150146 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 5 + }, + "sentiment_distribution": { + "NEGATIVE": 0.16666666666666666, + "POSITIVE": 0.8333333333333334 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987951517105103, + 0.998917818069458, + 0.9988201260566711, + 0.9194791913032532, + 0.9988594055175781 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 0.9411764705882353, + "final_counts": { + "POSITIVE": 16, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9411764705882353, + "NEGATIVE": 0.058823529411764705 + } + } }, { "season_code": "202301", @@ -86403,7 +190253,7 @@ "16:10", "17:30", "EVANS 4410 - Edward P Evans Hall 4410", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Thursday": [ @@ -86411,7 +190261,7 @@ "16:10", "17:30", "EVANS 4410 - Edward P Evans Hall 4410", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -86428,10 +190278,147 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84510\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84510/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9958156943321228, + 0.9989086389541626, + 0.9988647699356079, + 0.9988584518432617, + 0.9988827109336853, + 0.9988993406295776, + 0.9988273978233337, + 0.9987751841545105, + 0.9987151622772217, + 0.9987083673477173, + 0.998838484287262 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9952711462974548, + 0.9988067150115967, + 0.9988645315170288, + 0.998789370059967, + 0.9988219141960144, + 0.9988366961479187, + 0.9989142417907715, + 0.9988413453102112, + 0.9988942742347717, + 0.9988701939582825, + 0.9988081455230713, + 0.9988906979560852 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 11 + }, + "sentiment_distribution": { + "NEGATIVE": 0.08333333333333333, + "POSITIVE": 0.9166666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9166666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9995114803314209, + 0.9988541603088379, + 0.9988189339637756, + 0.9989336133003235, + 0.9989204406738281, + 0.9989297986030579, + 0.9985462427139282, + 0.9988973140716553, + 0.9982529282569885, + 0.9985508322715759, + 0.9989338517189026, + 0.9988347887992859 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 11 + }, + "sentiment_distribution": { + "NEGATIVE": 0.08333333333333333, + "POSITIVE": 0.9166666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9166666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 33, + "final_proportion": 0.9428571428571428, + "final_counts": { + "POSITIVE": 33, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9428571428571428, + "NEGATIVE": 0.05714285714285714 + } + } }, { "season_code": "202301", @@ -86468,7 +190455,7 @@ "13:00", "14:15", "WTS B52 - Watson Center 60 Sachem Street B52", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -86476,7 +190463,7 @@ "13:00", "14:15", "WTS B52 - Watson Center 60 Sachem Street B52", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -86493,10 +190480,89 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83823\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83823/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989039897918701, + 0.9984349608421326, + 0.9988841414451599 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989288449287415, + 0.9989053010940552 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989249110221863, + 0.9988766312599182 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 7 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -86533,7 +190599,7 @@ "11:35", "12:50", "HLH17 115 - 17 Hillhouse Avenue 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Wednesday": [ @@ -86541,7 +190607,7 @@ "11:35", "12:50", "HLH17 115 - 17 Hillhouse Avenue 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -86558,10 +190624,203 @@ "classnotes": "", "final_exam": "Saturday, May 6, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83826\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83826/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988732933998108, + 0.994988739490509, + 0.9987793564796448, + 0.9985620379447937, + 0.9987838864326477, + 0.9988616704940796, + 0.9986585378646851, + 0.9960938096046448, + 0.9988623857498169, + 0.9987698197364807, + 0.997689962387085, + 0.9989268183708191, + 0.9988273978233337, + 0.9966878294944763, + 0.9978111386299133, + 0.9987855553627014, + 0.9987542629241943, + 0.9988393187522888, + 0.9988962411880493, + 0.9982671737670898, + 0.9987133741378784 + ], + "sentiment_counts": { + "POSITIVE": 21, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988357424736023, + 0.9988594055175781, + 0.9988001585006714, + 0.9979290962219238, + 0.9988855719566345, + 0.99891197681427, + 0.9988124370574951, + 0.9987853169441223, + 0.9893797039985657, + 0.9988234639167786, + 0.9988866448402405, + 0.9989067316055298, + 0.9907667636871338, + 0.9988951086997986, + 0.9988932013511658, + 0.9989197254180908, + 0.9986888766288757, + 0.9988248944282532 + ], + "sentiment_counts": { + "POSITIVE": 18, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988658428192139, + 0.9988003969192505, + 0.998588502407074, + 0.9989187717437744, + 0.997117280960083, + 0.998909592628479, + 0.9986660480499268, + 0.997117280960083, + 0.9994460940361023, + 0.997117280960083, + 0.9985406398773193, + 0.9971127510070801, + 0.9988558292388916, + 0.9988332390785217, + 0.9989375472068787, + 0.9988227486610413, + 0.9987429976463318, + 0.998856782913208, + 0.997117280960083, + 0.998931348323822, + 0.9984902143478394, + 0.9988906979560852, + 0.9988784193992615, + 0.9988922476768494 + ], + "sentiment_counts": { + "POSITIVE": 23, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9583333333333334, + "NEGATIVE": 0.041666666666666664 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9583333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 62, + "final_proportion": 0.9841269841269841, + "final_counts": { + "POSITIVE": 62, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9841269841269841, + "NEGATIVE": 0.015873015873015872 + } + } }, { "season_code": "202301", @@ -86601,7 +190860,7 @@ "15:30", "17:20", "WH55 540 - 55 Whitney Avenue 540", - "https:\/\/map.yale.edu\/?id=1910#!m\/560121" + "https://map.yale.edu/?id=1910#!m/560121" ] ] }, @@ -86617,10 +190876,177 @@ "classnotes": "REGISTRATION PERMISSIONS - Preference will be given to Econ Senior Majors\n\nAll students interested in enrolling in ECON 450b in Spring 2023 must obtain permission from the instructors. Interested students must send an email message expressing their interest to Pamela O\u2019Donnell (pamela.odonnell@yale.edu), interim Undergraduate Registrar in Economics, and to Alex Hetherington (alex.hetherington@yale.edu) and Amy Chivetta (amelia.chivetta@yale.edu), Directors in the Yale Investments Office, by 4:30pm on or before November 22nd. \n\nStudents must also submit answers to the following two questions on a separate sheet of paper and send it as an email attachment:\n\n1. Why do you want to take Investment Analysis, Econ 450?\n2. What would you contribute to class?\n\nPlease include your name, class year, college and major on the sheet.\n\nCourse Description:\nEconomics 450b Investment Analysis \u2013 Mondays 3:30-5:20\n\nThis seminar seeks to introduce the world of investment management to students, across\na range of investment strategies, from public stocks to private equity and real estate. The\ninstructors, both senior members of the Yale Investments Office, the department that manages\nthe University\u2019s $41 billion endowment, will guide class discussion in response to assigned\nreading and guest speaker visits. The distinguished guest speakers \u2013 including world-renowned\nhedge fund managers, venture capital luminaries, and Yale\u2019s chief investment officer Matthew\nMendelsohn \u201907 \u2013 are at the heart of the course. These speakers will join the seminar for a\ndiscussion of how their firms approach the investment landscape and how they seek to achieve\nmarket-beating returns.\n\nFor each guest speaker, students will be asked to engage with and analyze the speaker\u2019s\ninvestment strategy, and to think about the strategy from the perspective of an institutional\ninvestor like Yale. Other course projects include company research and analysis, as well as case\nstudies on ethical dilemmas and conflicts of interest. David F. Swensen\u2019s Pioneering Portfolio\nManagement (2nd edition) will be the primary reading for the course, but the instructors will\nprovide additional required and suggested reading for each session.\n\n", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83818\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83818/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988532066345215, + 0.9987882971763611, + 0.9988883137702942, + 0.998775064945221, + 0.998914361000061, + 0.9988563060760498, + 0.9989138841629028, + 0.9988526105880737, + 0.998426079750061, + 0.9988517761230469, + 0.9988681077957153, + 0.9988918900489807, + 0.9989094734191895, + 0.9986000657081604, + 0.9987937211990356, + 0.9988362193107605 + ], + "sentiment_counts": { + "POSITIVE": 16, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9962144494056702, + 0.9980828762054443, + 0.9988957643508911, + 0.9988318085670471, + 0.9994838237762451, + 0.9987947940826416, + 0.998728334903717, + 0.9989203214645386, + 0.9989301562309265, + 0.9989364743232727, + 0.9984098672866821, + 0.9987753033638, + 0.9941369295120239, + 0.9988678693771362, + 0.9989150762557983, + 0.998246431350708, + 0.9957895874977112 + ], + "sentiment_counts": { + "POSITIVE": 16, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9411764705882353, + "NEGATIVE": 0.058823529411764705 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9411764705882353 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988831877708435, + 0.9989137649536133, + 0.9988813996315002, + 0.998110294342041, + 0.9968865513801575, + 0.9988574981689453, + 0.9989066123962402, + 0.9988920092582703, + 0.9989117383956909, + 0.9994179010391235, + 0.9989283680915833, + 0.9988880753517151, + 0.9982715845108032, + 0.9989381432533264, + 0.9984515905380249, + 0.9988829493522644, + 0.9952167272567749 + ], + "sentiment_counts": { + "POSITIVE": 15, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8823529411764706, + "NEGATIVE": 0.11764705882352941 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8823529411764706 + ] + }, + "final_label": "POSITIVE", + "final_count": 47, + "final_proportion": 0.94, + "final_counts": { + "POSITIVE": 47, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.94, + "NEGATIVE": 0.06 + } + } }, { "season_code": "202301", @@ -86660,7 +191086,7 @@ "15:30", "17:20", "HQ 227 - Humanities Quadrangle 227", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -86672,10 +191098,97 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83822\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83822/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986945986747742, + 0.9987854361534119, + 0.998877227306366 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9798275232315063, + 0.998700737953186, + 0.9989078044891357 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 1 + }, + "sentiment_distribution": { + "NEGATIVE": 0.6666666666666666, + "POSITIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988117218017578, + 0.9995063543319702, + 0.998872697353363, + 0.9988671541213989 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 0.7, + "final_counts": { + "POSITIVE": 7, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.7, + "NEGATIVE": 0.3 + } + } }, { "season_code": "202301", @@ -86713,7 +191226,7 @@ "13:00", "14:50", "LEPH 115 - Laboratory of EPH 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ] }, @@ -86727,10 +191240,89 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84225\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84225/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998822033405304, + 0.9988033771514893 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988399147987366, + 0.9995120763778687 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9972681999206543, + 0.9995142221450806 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 0 + }, + "sentiment_distribution": { + "NEGATIVE": 1.0, + "POSITIVE": 0.0 + }, + "sentiment_overall": [ + "NEGATIVE", + 1.0 + ] + }, + "final_label": "neutral", + "final_count": 0.5, + "final_proportion": 0.5, + "final_counts": { + "POSITIVE": 3, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + } + } }, { "season_code": "202301", @@ -86767,7 +191359,7 @@ "13:30", "15:20", "WTS B51 - Watson Center 60 Sachem Street B51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -86779,10 +191371,38 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86168\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/86168/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -86823,7 +191443,7 @@ "15:30", "17:20", "SML 120C - Sterling Memorial Library 120C", - "https:\/\/map.yale.edu\/?id=1910#!m\/563698" + "https://map.yale.edu/?id=1910#!m/563698" ] ] }, @@ -86841,10 +191461,129 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83824\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83824/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988324046134949, + 0.9988773465156555, + 0.997459352016449, + 0.9987677335739136, + 0.998906135559082, + 0.9969339370727539, + 0.9988306164741516, + 0.9988940358161926, + 0.9988102912902832 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989144802093506, + 0.9988527297973633, + 0.9989206790924072, + 0.9989308714866638, + 0.9943407773971558, + 0.9986618757247925, + 0.9988669157028198 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989175796508789, + 0.9987472295761108, + 0.9985164999961853, + 0.9989124536514282, + 0.9984503984451294, + 0.9987162351608276, + 0.9989246726036072, + 0.9989194869995117, + 0.9988082647323608, + 0.9988492727279663, + 0.9988958835601807 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 27, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 27 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -86883,7 +191622,7 @@ "9:25", "11:15", "WALL81 101 - 81 Wall Street 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -86900,10 +191639,115 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84089\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84089/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.998794674873352, + 0.9987566471099854, + 0.9988522529602051, + 0.998908519744873, + 0.9952634572982788, + 0.9994452595710754 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.8295912742614746, + 0.9958440661430359, + 0.9988793730735779, + 0.9995089769363403, + 0.9921929240226746, + 0.9995059967041016 + ], + "sentiment_counts": { + "NEGATIVE": 4, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.6666666666666666, + "POSITIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9987353682518005, + 0.9987649917602539, + 0.9995046854019165, + 0.9629638195037842, + 0.9995123147964478, + 0.9933921694755554, + 0.9994856119155884 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 5 + }, + "sentiment_distribution": { + "POSITIVE": 0.2857142857142857, + "NEGATIVE": 0.7142857142857143 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.7142857142857143 + ] + }, + "final_label": "neutral", + "final_count": 10, + "final_proportion": 0.5, + "final_counts": { + "POSITIVE": 9, + "NEGATIVE": 10 + }, + "final_distribution": { + "POSITIVE": 0.47368421052631576, + "NEGATIVE": 0.5263157894736842 + } + } }, { "season_code": "202301", @@ -86941,7 +191785,7 @@ "9:25", "11:15", "LC 104 - Linsly-Chittenden Hall 104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -86956,10 +191800,97 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83825\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83825/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987702965736389, + 0.9977937936782837, + 0.9988992214202881, + 0.9965691566467285 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989297986030579, + 0.9989269375801086 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988818764686584, + 0.9988899827003479, + 0.9989314675331116, + 0.9988947510719299, + 0.9984641075134277 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 11 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -86997,10 +191928,38 @@ "classnotes": "Along with your major, class year, and interest in the course, please list the courses in economics, math, and political theory or philosophy you have taken. Please note that a course in intermediate microeconomics and a course in calculus is required.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85167\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/85167/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -87037,7 +191996,7 @@ "9:25", "11:15", "WLH 006 - William L. Harkness Hall 006", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -87046,7 +192005,7 @@ "So" ], "flags": [ - "YC CSEC: Electv intrsctn CS\/EC", + "YC CSEC: Electv intrsctn CS/EC", "YC ECON: Industrial Organization", "YC ECON: Macroeconomics" ], @@ -87055,10 +192014,83 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83827\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83827/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983187913894653 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9979783892631531 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981436729431152, + 0.9985779523849487 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 4, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 4 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -87095,7 +192127,7 @@ "16:10", "18:00", "SLB 124 - Sterling Law Buildings 124", - "https:\/\/map.yale.edu\/?id=1910#!m\/531532" + "https://map.yale.edu/?id=1910#!m/531532" ] ] }, @@ -87111,10 +192143,99 @@ "classnotes": "", "final_exam": "Wednesday, May 10, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83828\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83828/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9951867461204529, + 0.994187593460083, + 0.9989157915115356, + 0.9985404014587402 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9995085000991821, + 0.9984095692634583, + 0.9987747073173523 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9995007514953613, + 0.9988909363746643, + 0.9988621473312378, + 0.998877227306366 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.25, + "POSITIVE": 0.75 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 8, + "final_proportion": 0.7272727272727273, + "final_counts": { + "POSITIVE": 8, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.7272727272727273, + "NEGATIVE": 0.2727272727272727 + } + } }, { "season_code": "202301", @@ -87162,11 +192283,39 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "For further information, including relevant dates and deadlines, please see economics.yale.edu\/undergraduate\/senior-essay.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } + }, + { + "season_code": "202301", + "requirements": "For further information, including relevant dates and deadlines, please see economics.yale.edu/undergraduate/senior-essay.", "description": "This course is the continuation of ECON 491. Students who write a two-term senior essay are required to enroll in ECON 492, after enrolling in either ECON 491 or a senior seminar in the fall. Students retain the same advisor for the two semesters. Those writing the senior essay from a seminar need to ensure the advisor will continue to work with them in the spring.", "short_title": "The Senior Essay", "title": "The Senior Essay", @@ -87213,14 +192362,161 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83829\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83829/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "When requesting Instructor Permission to enroll in this course please submit the application form found here: https:\/\/www.dropbox.com\/scl\/fi\/1gd36mm221z1p9leh8u5y\/Directed-Reading-Form-Spring-2023.docx?dl=0&rlkey=ybmkuo37r4ymgtfrzbtp92xe0", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.992900013923645, + 0.9989211559295654, + 0.9988522529602051, + 0.9987913966178894, + 0.998843789100647, + 0.997430145740509, + 0.9974943399429321, + 0.9933745265007019, + 0.9755088090896606, + 0.990343451499939, + 0.9948657155036926, + 0.9986457228660583, + 0.9945307374000549, + 0.9987273812294006 + ], + "sentiment_counts": { + "POSITIVE": 14, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9978559613227844, + 0.9989140033721924, + 0.9985633492469788, + 0.9988885521888733, + 0.998250424861908, + 0.9987694621086121, + 0.9983769655227661, + 0.998136043548584, + 0.9988945126533508, + 0.9988964796066284, + 0.9988309741020203, + 0.9988524913787842 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984579086303711, + 0.9989284873008728, + 0.9978843331336975, + 0.9989269375801086, + 0.9981111288070679, + 0.9914376139640808, + 0.9924949407577515, + 0.9986655712127686, + 0.9982553124427795, + 0.9988518953323364, + 0.997887909412384, + 0.9989123344421387, + 0.998761773109436, + 0.9989141225814819 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "final_label": "POSITIVE", + "final_count": 38, + "final_proportion": 0.95, + "final_counts": { + "POSITIVE": 38, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.95, + "NEGATIVE": 0.05 + } + } + }, + { + "season_code": "202301", + "requirements": "When requesting Instructor Permission to enroll in this course please submit the application form found here: https://www.dropbox.com/scl/fi/1gd36mm221z1p9leh8u5y/Directed-Reading-Form-Spring-2023.docx?dl=0&rlkey=ybmkuo37r4ymgtfrzbtp92xe0", "description": "Junior and senior economics majors desiring a directed reading course in special topics in economics not covered in other graduate or undergraduate courses may elect this course, not more than once, with written permission of the director of undergraduate studies and of the instructor. The instructor meets with the student regularly, typically for an hour a week, and the student writes a paper or a series of short essays. Junior and senior majors may take this course for a letter grade, but it does not meet the requirement for a department seminar.\n\nNote that permission will be granted only if the DUS deems the work plan adequate and the workload equivalent to other Economics courses.", "short_title": "Directed Reading", "title": "Directed Reading", @@ -87259,7 +192555,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -87299,7 +192623,7 @@ "10:00", "11:20", "HLH28 A06 - 28 Hillhouse Avenue A06", - "https:\/\/map.yale.edu\/?id=1910#!m\/559988" + "https://map.yale.edu/?id=1910#!m/559988" ] ], "Wednesday": [ @@ -87307,7 +192631,7 @@ "10:00", "11:20", "HLH28 A06 - 28 Hillhouse Avenue A06", - "https:\/\/map.yale.edu\/?id=1910#!m\/559988" + "https://map.yale.edu/?id=1910#!m/559988" ] ] }, @@ -87321,10 +192645,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83832\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83832/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -87361,7 +192713,7 @@ "10:00", "11:20", "TRUM87 B120 - 87 Trumbull Street B120", - "https:\/\/map.yale.edu\/?id=1910#!m\/559543" + "https://map.yale.edu/?id=1910#!m/559543" ] ], "Thursday": [ @@ -87369,7 +192721,7 @@ "10:00", "11:20", "TRUM87 B120 - 87 Trumbull Street B120", - "https:\/\/map.yale.edu\/?id=1910#!m\/559543" + "https://map.yale.edu/?id=1910#!m/559543" ] ] }, @@ -87383,10 +192735,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83833\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83833/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -87426,7 +192806,7 @@ "8:30", "9:50", "HLH28 A102 - 28 Hillhouse Avenue A102", - "https:\/\/map.yale.edu\/?id=1910#!m\/559988" + "https://map.yale.edu/?id=1910#!m/559988" ] ], "Thursday": [ @@ -87434,7 +192814,7 @@ "8:30", "9:50", "HLH28 A102 - 28 Hillhouse Avenue A102", - "https:\/\/map.yale.edu\/?id=1910#!m\/559988" + "https://map.yale.edu/?id=1910#!m/559988" ] ] }, @@ -87446,10 +192826,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83835\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83835/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -87480,7 +192888,7 @@ "12:00", "13:00", "TRUM87 B120 - 87 Trumbull Street B120", - "https:\/\/map.yale.edu\/?id=1910#!m\/559543" + "https://map.yale.edu/?id=1910#!m/559543" ] ] }, @@ -87495,7 +192903,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -87535,7 +192971,7 @@ "16:00", "19:00", "HLH28 A06 - 28 Hillhouse Avenue A06", - "https:\/\/map.yale.edu\/?id=1910#!m\/559988" + "https://map.yale.edu/?id=1910#!m/559988" ] ] }, @@ -87547,10 +192983,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83837\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83837/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -87590,7 +193054,7 @@ "13:00", "14:15", "HLH28 A06 - 28 Hillhouse Avenue A06", - "https:\/\/map.yale.edu\/?id=1910#!m\/559988" + "https://map.yale.edu/?id=1910#!m/559988" ] ], "Thursday": [ @@ -87598,7 +193062,7 @@ "13:00", "14:15", "HLH28 A06 - 28 Hillhouse Avenue A06", - "https:\/\/map.yale.edu\/?id=1910#!m\/559988" + "https://map.yale.edu/?id=1910#!m/559988" ] ] }, @@ -87610,10 +193074,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83839\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83839/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -87644,7 +193136,7 @@ "14:30", "15:50", "TRUM87 B120 - 87 Trumbull Street B120", - "https:\/\/map.yale.edu\/?id=1910#!m\/559543" + "https://map.yale.edu/?id=1910#!m/559543" ] ] }, @@ -87659,7 +193151,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -87690,7 +193210,7 @@ "12:00", "13:00", "TRUM87 B120 - 87 Trumbull Street B120", - "https:\/\/map.yale.edu\/?id=1910#!m\/559543" + "https://map.yale.edu/?id=1910#!m/559543" ] ] }, @@ -87705,7 +193225,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -87736,7 +193284,7 @@ "14:30", "15:50", "TRUM87 B120 - 87 Trumbull Street B120", - "https:\/\/map.yale.edu\/?id=1910#!m\/559543" + "https://map.yale.edu/?id=1910#!m/559543" ] ] }, @@ -87751,7 +193299,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -87792,7 +193368,7 @@ "13:00", "15:30", "HLH28 A06 - 28 Hillhouse Avenue A06", - "https:\/\/map.yale.edu\/?id=1910#!m\/559988" + "https://map.yale.edu/?id=1910#!m/559988" ] ] }, @@ -87804,10 +193380,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83841\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83841/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -87844,7 +193427,7 @@ "8:30", "9:50", "TRUM87 B120 - 87 Trumbull Street B120", - "https:\/\/map.yale.edu\/?id=1910#!m\/559543" + "https://map.yale.edu/?id=1910#!m/559543" ] ], "Wednesday": [ @@ -87852,7 +193435,7 @@ "8:30", "9:50", "TRUM87 B120 - 87 Trumbull Street B120", - "https:\/\/map.yale.edu\/?id=1910#!m\/559543" + "https://map.yale.edu/?id=1910#!m/559543" ] ] }, @@ -87864,10 +193447,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83842\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83842/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -87904,7 +193515,7 @@ "13:15", "14:30", "HLH28 A106 - 28 Hillhouse Avenue A106", - "https:\/\/map.yale.edu\/?id=1910#!m\/559988" + "https://map.yale.edu/?id=1910#!m/559988" ] ], "Thursday": [ @@ -87912,7 +193523,7 @@ "13:15", "14:30", "HLH28 A106 - 28 Hillhouse Avenue A106", - "https:\/\/map.yale.edu\/?id=1910#!m\/559988" + "https://map.yale.edu/?id=1910#!m/559988" ] ] }, @@ -87924,10 +193535,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83844\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83844/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -87964,7 +193603,7 @@ "14:30", "17:00", "HLH28 A102 - 28 Hillhouse Avenue A102", - "https:\/\/map.yale.edu\/?id=1910#!m\/559988" + "https://map.yale.edu/?id=1910#!m/559988" ] ] }, @@ -87976,10 +193615,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83846\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83846/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -88016,7 +193683,7 @@ "14:30", "17:00", "HLH28 A06 - 28 Hillhouse Avenue A06", - "https:\/\/map.yale.edu\/?id=1910#!m\/559988" + "https://map.yale.edu/?id=1910#!m/559988" ] ] }, @@ -88028,10 +193695,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83850\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83850/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -88068,7 +193763,7 @@ "14:30", "15:45", "LUCE 202 - Luce Hall 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ], "Wednesday": [ @@ -88076,7 +193771,7 @@ "14:30", "15:45", "LUCE 202 - Luce Hall 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ] }, @@ -88090,10 +193785,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83854\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83854/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -88131,7 +193854,7 @@ "16:00", "17:15", "TRUM87 B120 - 87 Trumbull Street B120", - "https:\/\/map.yale.edu\/?id=1910#!m\/559543" + "https://map.yale.edu/?id=1910#!m/559543" ] ], "Wednesday": [ @@ -88139,7 +193862,7 @@ "16:00", "17:15", "TRUM87 B120 - 87 Trumbull Street B120", - "https:\/\/map.yale.edu\/?id=1910#!m\/559543" + "https://map.yale.edu/?id=1910#!m/559543" ] ] }, @@ -88151,10 +193874,167 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83814\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83814/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987886548042297, + 0.7018657922744751, + 0.9981683492660522, + 0.9983697533607483, + 0.9820941090583801, + 0.9820941090583801, + 0.9988677501678467, + 0.9986080527305603, + 0.9984059929847717, + 0.9983059167861938, + 0.9928065538406372, + 0.9988334774971008, + 0.9986308217048645, + 0.9981789588928223, + 0.9984306693077087, + 0.9986526966094971 + ], + "sentiment_counts": { + "POSITIVE": 15, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9375, + "NEGATIVE": 0.0625 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9375 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988283514976501, + 0.9986922144889832, + 0.9962776303291321, + 0.9989277720451355, + 0.999457061290741, + 0.9989223480224609, + 0.998927652835846, + 0.9988271594047546, + 0.9979230761528015, + 0.998336672782898, + 0.9988762736320496, + 0.9987583160400391, + 0.998873770236969, + 0.9971694350242615, + 0.9983170032501221 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8666666666666667, + "NEGATIVE": 0.13333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8666666666666667 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998907208442688, + 0.9814485907554626, + 0.9988369345664978, + 0.9968885779380798, + 0.9988948702812195, + 0.9989180564880371, + 0.9987360835075378, + 0.9972580671310425, + 0.9988871216773987, + 0.9988605976104736, + 0.9975342750549316, + 0.943117618560791, + 0.9811275005340576, + 0.997117280960083 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "final_label": "POSITIVE", + "final_count": 40, + "final_proportion": 0.8888888888888888, + "final_counts": { + "POSITIVE": 40, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + } + } }, { "season_code": "202301", @@ -88185,7 +194065,7 @@ "16:00", "17:30", "HLH28 A106 - 28 Hillhouse Avenue A106", - "https:\/\/map.yale.edu\/?id=1910#!m\/559988" + "https://map.yale.edu/?id=1910#!m/559988" ] ] }, @@ -88200,7 +194080,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -88231,7 +194139,7 @@ "12:00", "13:00", "HLH28 A106 - 28 Hillhouse Avenue A106", - "https:\/\/map.yale.edu\/?id=1910#!m\/559988" + "https://map.yale.edu/?id=1910#!m/559988" ] ] }, @@ -88246,7 +194154,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -88283,7 +194219,7 @@ "8:30", "9:50", "HLH28 A06 - 28 Hillhouse Avenue A06", - "https:\/\/map.yale.edu\/?id=1910#!m\/559988" + "https://map.yale.edu/?id=1910#!m/559988" ] ], "Thursday": [ @@ -88291,7 +194227,7 @@ "8:30", "9:50", "HLH28 A06 - 28 Hillhouse Avenue A06", - "https:\/\/map.yale.edu\/?id=1910#!m\/559988" + "https://map.yale.edu/?id=1910#!m/559988" ] ] }, @@ -88303,10 +194239,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83862\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83862/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -88337,7 +194301,7 @@ "16:00", "17:30", "HLH28 A106 - 28 Hillhouse Avenue A106", - "https:\/\/map.yale.edu\/?id=1910#!m\/559988" + "https://map.yale.edu/?id=1910#!m/559988" ] ] }, @@ -88352,7 +194316,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -88392,7 +194384,7 @@ "10:30", "11:50", "HLH28 A06 - 28 Hillhouse Avenue A06", - "https:\/\/map.yale.edu\/?id=1910#!m\/559988" + "https://map.yale.edu/?id=1910#!m/559988" ] ], "Thursday": [ @@ -88400,7 +194392,7 @@ "10:30", "11:50", "HLH28 A06 - 28 Hillhouse Avenue A06", - "https:\/\/map.yale.edu\/?id=1910#!m\/559988" + "https://map.yale.edu/?id=1910#!m/559988" ] ] }, @@ -88412,10 +194404,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83869\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83869/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -88446,7 +194466,7 @@ "12:00", "13:00", "HLH28 106 - 28 Hillhouse Avenue 106", - "https:\/\/map.yale.edu\/?id=1910#!m\/559988" + "https://map.yale.edu/?id=1910#!m/559988" ] ] }, @@ -88461,7 +194481,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -88507,7 +194555,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -88544,7 +194620,7 @@ "10:30", "11:50", "HLH28 A102 - 28 Hillhouse Avenue A102", - "https:\/\/map.yale.edu\/?id=1910#!m\/559988" + "https://map.yale.edu/?id=1910#!m/559988" ] ], "Wednesday": [ @@ -88552,7 +194628,7 @@ "10:30", "11:50", "HLH28 A102 - 28 Hillhouse Avenue A102", - "https:\/\/map.yale.edu\/?id=1910#!m\/559988" + "https://map.yale.edu/?id=1910#!m/559988" ] ] }, @@ -88564,10 +194640,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83874\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83874/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -88598,7 +194702,7 @@ "15:30", "17:00", "TRUM87 B120 - 87 Trumbull Street B120", - "https:\/\/map.yale.edu\/?id=1910#!m\/559543" + "https://map.yale.edu/?id=1910#!m/559543" ] ] }, @@ -88613,7 +194717,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -88644,7 +194776,7 @@ "12:00", "13:00", "HLH17 101 - 17 Hillhouse Avenue 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -88659,7 +194791,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -88697,7 +194857,7 @@ "16:10", "19:10", "EVANS 2200 - Edward P Evans Hall 2200", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -88709,10 +194869,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84499\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84499/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -88750,7 +194938,7 @@ "14:45", "17:45", "EVANS 2230 - Edward P Evans Hall 2230", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -88764,10 +194952,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85920\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85920/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -88805,7 +195021,7 @@ "14:45", "17:45", "EVANS 4430 - Edward P Evans Hall 4430", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -88819,10 +195035,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85921\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85921/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -88859,7 +195103,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -88890,7 +195162,7 @@ "12:00", "13:00", "HLH28 A106 - 28 Hillhouse Avenue A106", - "https:\/\/map.yale.edu\/?id=1910#!m\/559988" + "https://map.yale.edu/?id=1910#!m/559988" ] ] }, @@ -88905,7 +195177,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -88945,7 +195245,7 @@ "14:30", "15:45", "HLH28 A102 - 28 Hillhouse Avenue A102", - "https:\/\/map.yale.edu\/?id=1910#!m\/559988" + "https://map.yale.edu/?id=1910#!m/559988" ] ], "Thursday": [ @@ -88953,7 +195253,7 @@ "14:30", "15:45", "HLH28 A102 - 28 Hillhouse Avenue A102", - "https:\/\/map.yale.edu\/?id=1910#!m\/559988" + "https://map.yale.edu/?id=1910#!m/559988" ] ] }, @@ -88965,10 +195265,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83879\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83879/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -88999,7 +195327,7 @@ "14:30", "15:50", "HLH28 A106 - 28 Hillhouse Avenue A106", - "https:\/\/map.yale.edu\/?id=1910#!m\/559988" + "https://map.yale.edu/?id=1910#!m/559988" ] ] }, @@ -89014,7 +195342,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -89054,7 +195410,7 @@ "16:00", "17:15", "HLH28 A06 - 28 Hillhouse Avenue A06", - "https:\/\/map.yale.edu\/?id=1910#!m\/559988" + "https://map.yale.edu/?id=1910#!m/559988" ] ], "Wednesday": [ @@ -89062,7 +195418,7 @@ "16:00", "17:15", "HLH28 A06 - 28 Hillhouse Avenue A06", - "https:\/\/map.yale.edu\/?id=1910#!m\/559988" + "https://map.yale.edu/?id=1910#!m/559988" ] ] }, @@ -89074,10 +195430,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83885\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83885/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -89114,7 +195498,7 @@ "14:30", "15:45", "LUCE 202 - Luce Hall 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ], "Thursday": [ @@ -89122,7 +195506,7 @@ "14:30", "15:45", "LUCE 202 - Luce Hall 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ] }, @@ -89134,10 +195518,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83831\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83831/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -89168,7 +195580,7 @@ "14:30", "15:50", "TRUM87 B120 - 87 Trumbull Street B120", - "https:\/\/map.yale.edu\/?id=1910#!m\/559543" + "https://map.yale.edu/?id=1910#!m/559543" ] ] }, @@ -89183,7 +195595,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -89214,7 +195654,7 @@ "12:00", "13:00", "TRUM87 B120 - 87 Trumbull Street B120", - "https:\/\/map.yale.edu\/?id=1910#!m\/559543" + "https://map.yale.edu/?id=1910#!m/559543" ] ] }, @@ -89229,7 +195669,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -89266,7 +195734,7 @@ "13:15", "14:30", "HLH28 A102 - 28 Hillhouse Avenue A102", - "https:\/\/map.yale.edu\/?id=1910#!m\/559988" + "https://map.yale.edu/?id=1910#!m/559988" ] ], "Thursday": [ @@ -89274,7 +195742,7 @@ "13:15", "14:30", "HLH28 A102 - 28 Hillhouse Avenue A102", - "https:\/\/map.yale.edu\/?id=1910#!m\/559988" + "https://map.yale.edu/?id=1910#!m/559988" ] ] }, @@ -89286,10 +195754,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83834\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83834/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -89326,7 +195822,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -89368,7 +195892,7 @@ "13:00", "14:15", "WTS A35 - Watson Center 60 Sachem Street A35", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -89376,7 +195900,7 @@ "13:00", "14:15", "WTS A35 - Watson Center 60 Sachem Street A35", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -89393,10 +195917,99 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84637\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84637/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989107847213745, + 0.9988844990730286, + 0.9985470175743103, + 0.9987719655036926 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987339377403259, + 0.9988312125205994, + 0.9988663196563721, + 0.9988352656364441 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998934805393219, + 0.9988986253738403, + 0.998884379863739, + 0.9989355206489563 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 12 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -89435,7 +196048,7 @@ "14:30", "16:20", "GEO350 C203 - 350 George Street C203", - "https:\/\/map.yale.edu\/?id=1910#!m\/563701" + "https://map.yale.edu/?id=1910#!m/563701" ] ] }, @@ -89453,10 +196066,115 @@ "classnotes": "Permission of the instructor is REQUIRED for this seminar. Preregistration applications are required, and students should apply on the Yale Course Selection site by December 2. The instructor will select students and construct a waiting list by December 8. Students should include on their application: \n\uf0a7\tName, Class, Preferred Pronouns, Major, and if in Ed Studies \n\uf0a7\tBriefly describe previous experience working with children\n\uf0a7\tWhy do you want to take this class?\n\uf0a7\tWill you be able to identify a child to observe?\n\uf0a7\tIs there anything else you think it would be helpful to know about you?\nThe full syllabus can be found on Canvas. Students are expected to arrange on their own to do a weekly observation of 1 hour per week (either in person or virtually) of a child under the age of 6. It is expected that an additional 2 hour in- person classroom observation will also be possible at Calvin Hill Day Care Center. Total observation time commitment is 3 hours per week.", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85898\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85898/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998665452003479, + 0.998828113079071, + 0.9987382292747498, + 0.9988815188407898, + 0.9988529682159424, + 0.9989120960235596, + 0.9987873435020447 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989159107208252, + 0.9989103078842163, + 0.9988768696784973, + 0.9956915974617004, + 0.99886155128479 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989338517189026, + 0.9989217519760132, + 0.9989157915115356, + 0.9989124536514282, + 0.9968796968460083, + 0.9989218711853027, + 0.998829185962677, + 0.9987707734107971 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 20 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -89498,7 +196216,7 @@ "9:25", "11:15", "GEO350 C203 - 350 George Street C203", - "https:\/\/map.yale.edu\/?id=1910#!m\/563701" + "https://map.yale.edu/?id=1910#!m/563701" ] ] }, @@ -89516,10 +196234,83 @@ "classnotes": "Permission of the instructors is REQUIRED for this seminar. Preregistration applications are required, and students should apply on the Yale Course Selection site by December 2. The instructors will select students and construct a waiting list by December 8. Students should include on their application: \n\uf0a7\tName, Class, Preferred Pronouns, Major, and if in Ed Studies \n\uf0a7\tBriefly describe previous experience working with children\n\uf0a7\tWhy do you want to take this class?\n\uf0a7\tWill you be able to identify a child to observe?\n\uf0a7\tIs there anything else you think it would be helpful for us to know about you?\no\tThe full syllabus can be found on Canvas.\no\tAdditional information: Students are expected to arrange on their own to do a weekly observation of 1 hour per week (either in person or virtually) of a child under the age of 6. It is expected that an additional 2 hour in- person classroom observation will also be possible at Calvin Hill Day Care Center. Total observation time commitment is 3 hours per week.\n", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85899\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85899/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985910058021545 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.998880922794342 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998553454875946, + 0.9988679885864258 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 4, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 4 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -89557,7 +196348,7 @@ "11:35", "12:50", "LC 211 - Linsly-Chittenden Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -89565,7 +196356,7 @@ "11:35", "12:50", "LC 211 - Linsly-Chittenden Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -89583,15 +196374,152 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84613\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84613/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "", - "description": "Theories, methodology, and applications of social psychology. Core topics include the self, social cognition\/social perception, attitudes and persuasion, group processes, conformity, human conflict and aggression, prejudice, prosocial behavior, and emotion.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9973180890083313, + 0.998842716217041, + 0.9988402724266052, + 0.9988937973976135, + 0.9989297986030579, + 0.9988099336624146, + 0.9989199638366699, + 0.9986977577209473, + 0.9988322854042053, + 0.9987699389457703, + 0.9987654685974121 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9969045519828796, + 0.9987333416938782, + 0.9989163875579834, + 0.9989149570465088, + 0.9963434338569641, + 0.9988916516304016, + 0.9994114637374878, + 0.9981043338775635, + 0.9977974891662598, + 0.9989004135131836, + 0.9985717535018921 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.7272727272727273, + "NEGATIVE": 0.2727272727272727 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7272727272727273 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.999366819858551, + 0.9988265633583069, + 0.9995113611221313, + 0.9989196062088013, + 0.9982553124427795, + 0.998833954334259, + 0.9989270567893982, + 0.997117280960083, + 0.9988493919372559, + 0.9906960725784302, + 0.9989118576049805, + 0.9988278746604919, + 0.9924582242965698 + ], + "sentiment_counts": { + "NEGATIVE": 4, + "POSITIVE": 9 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3076923076923077, + "POSITIVE": 0.6923076923076923 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6923076923076923 + ] + }, + "final_label": "POSITIVE", + "final_count": 28, + "final_proportion": 0.8, + "final_counts": { + "POSITIVE": 28, + "NEGATIVE": 7 + }, + "final_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + } + } + }, + { + "season_code": "202301", + "requirements": "", + "description": "Theories, methodology, and applications of social psychology. Core topics include the self, social cognition/social perception, attitudes and persuasion, group processes, conformity, human conflict and aggression, prejudice, prosocial behavior, and emotion.", "short_title": "Social Psychology", "title": "Social Psychology", "school": "YC", @@ -89624,7 +196552,7 @@ "11:35", "12:50", "LC 102 - Linsly-Chittenden Hall 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -89632,7 +196560,7 @@ "11:35", "12:50", "LC 102 - Linsly-Chittenden Hall 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -89649,10 +196577,251 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84759\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84759/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9935678839683533, + 0.9981178045272827, + 0.9966261386871338, + 0.998906135559082, + 0.9988508224487305, + 0.9987503290176392, + 0.9989199638366699, + 0.9986782670021057, + 0.9988431930541992, + 0.998867392539978, + 0.9987837672233582, + 0.9988208413124084, + 0.998230516910553, + 0.9987314343452454, + 0.9988699555397034, + 0.9988118410110474, + 0.9988204836845398, + 0.9988763928413391, + 0.9988089799880981, + 0.9988269209861755, + 0.9972001314163208, + 0.9985234141349792, + 0.9945098161697388, + 0.9932712912559509, + 0.9988324046134949, + 0.9989169836044312, + 0.9971864819526672, + 0.9988631010055542, + 0.9987084865570068 + ], + "sentiment_counts": { + "POSITIVE": 29, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9816787838935852, + 0.9994080066680908, + 0.9977466464042664, + 0.9986259937286377, + 0.9987726807594299, + 0.9995067119598389, + 0.9989318251609802, + 0.9983938336372375, + 0.9974701404571533, + 0.9973282814025879, + 0.997340738773346, + 0.9988204836845398, + 0.9988172054290771, + 0.9952219128608704, + 0.9989309906959534, + 0.9994935989379883, + 0.998610258102417, + 0.9987788796424866, + 0.9992401599884033, + 0.9988465309143066, + 0.9989237189292908, + 0.99887615442276, + 0.9968411922454834, + 0.9894489049911499, + 0.9977474808692932, + 0.9988768696784973, + 0.9988401532173157, + 0.9873331785202026, + 0.9955982565879822, + 0.9963552951812744 + ], + "sentiment_counts": { + "POSITIVE": 23, + "NEGATIVE": 7 + }, + "sentiment_distribution": { + "POSITIVE": 0.7666666666666667, + "NEGATIVE": 0.23333333333333334 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7666666666666667 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987959861755371, + 0.9974592328071594, + 0.9994288086891174, + 0.9988625049591064, + 0.9989243149757385, + 0.9995071887969971, + 0.997117280960083, + 0.9988123178482056, + 0.9935656189918518, + 0.9987261891365051, + 0.998842179775238, + 0.9956198334693909, + 0.9986567497253418, + 0.9961957931518555, + 0.9988678693771362, + 0.9988335967063904, + 0.9988540410995483, + 0.9988648891448975, + 0.9988975524902344, + 0.9989081621170044, + 0.9915992021560669, + 0.9950256943702698, + 0.9864288568496704, + 0.9986444115638733, + 0.9989098310470581, + 0.9981061220169067, + 0.9985812902450562, + 0.9986642599105835 + ], + "sentiment_counts": { + "POSITIVE": 23, + "NEGATIVE": 5 + }, + "sentiment_distribution": { + "POSITIVE": 0.8214285714285714, + "NEGATIVE": 0.17857142857142858 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8214285714285714 + ] + }, + "final_label": "POSITIVE", + "final_count": 75, + "final_proportion": 0.8620689655172413, + "final_counts": { + "POSITIVE": 75, + "NEGATIVE": 12 + }, + "final_distribution": { + "POSITIVE": 0.8620689655172413, + "NEGATIVE": 0.13793103448275862 + } + } }, { "season_code": "202301", @@ -89689,7 +196858,7 @@ "15:30", "17:20", "SML 118A - Sterling Memorial Library 118A", - "https:\/\/map.yale.edu\/?id=1910#!m\/563698" + "https://map.yale.edu/?id=1910#!m/563698" ] ] }, @@ -89702,13 +196871,156 @@ ], "regnotes": "", "rp_attr": "", - "classnotes": "This seminar is limited to 18 students. Please apply at the following link by November 15th 5 pm, 2022. Thank you for your interest! EDST 110 Foundations in Education Studies recommended. Preference will be given to EDST MAP Scholars, EDST Certificate students, and juniors and seniors interested in a career in teaching. https:\/\/bit.ly\/3KhTbor", + "classnotes": "This seminar is limited to 18 students. Please apply at the following link by November 15th 5 pm, 2022. Thank you for your interest! EDST 110 Foundations in Education Studies recommended. Preference will be given to EDST MAP Scholars, EDST Certificate students, and juniors and seniors interested in a career in teaching. https://bit.ly/3KhTbor", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83838\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83838/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989288449287415, + 0.9988677501678467, + 0.9989321827888489, + 0.9988755583763123, + 0.9989283680915833, + 0.9987896084785461, + 0.9988804459571838, + 0.9989346861839294, + 0.9988306164741516, + 0.9989091157913208, + 0.9988003969192505, + 0.9988904595375061, + 0.9989311099052429 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998938262462616, + 0.9989364743232727, + 0.9989294409751892, + 0.9989277720451355, + 0.9989196062088013, + 0.9862263798713684, + 0.9988881945610046, + 0.9982736110687256, + 0.998932421207428, + 0.9989342093467712, + 0.9989312291145325, + 0.9989238381385803, + 0.9989176988601685 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9230769230769231, + "NEGATIVE": 0.07692307692307693 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9230769230769231 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989320635795593, + 0.9989334940910339, + 0.998414158821106, + 0.998819887638092, + 0.9985345602035522, + 0.9989385008811951, + 0.9989318251609802, + 0.9974427223205566, + 0.9988516569137573, + 0.9989086389541626, + 0.9989380240440369, + 0.9989221096038818 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 37, + "final_proportion": 0.9736842105263158, + "final_counts": { + "POSITIVE": 37, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9736842105263158, + "NEGATIVE": 0.02631578947368421 + } + } }, { "season_code": "202301", @@ -89746,7 +197058,7 @@ "13:30", "15:20", "WLH 009 - William L. Harkness Hall 009", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -89762,10 +197074,115 @@ "classnotes": "Priority is given to History majors and students in Education Studies (certificate & scholars program), and then by course year. Priority is also given to students who have taken EDST110. As you request permission on courses.yale.edu, please indicate why you hope to take the course, your major, EDST program and whether you've taken EDST 110.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85178\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85178/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989005327224731, + 0.998744010925293, + 0.9988083839416504, + 0.9989271759986877, + 0.9989105463027954, + 0.9988749623298645 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989032745361328, + 0.9987850785255432, + 0.9989114999771118, + 0.9989097118377686, + 0.9988829493522644, + 0.9988277554512024, + 0.9989297986030579 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983333945274353, + 0.9988940358161926, + 0.9989271759986877, + 0.9988424181938171, + 0.99887615442276, + 0.9938871264457703, + 0.9987900853157043 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 20 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -89804,7 +197221,7 @@ "13:30", "15:20", "HQ 127 - Humanities Quadrangle 127", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -89820,10 +197237,105 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84311\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84311/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988676309585571, + 0.9988656044006348, + 0.9987913966178894, + 0.998846173286438, + 0.9984458088874817 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998918890953064, + 0.9988166093826294, + 0.9764682054519653, + 0.9887734055519104, + 0.9987500905990601 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988922476768494, + 0.9978411197662354, + 0.9917318820953369, + 0.9981526732444763 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 0.9285714285714286, + "final_counts": { + "POSITIVE": 13, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9285714285714286, + "NEGATIVE": 0.07142857142857142 + } + } }, { "season_code": "202301", @@ -89863,7 +197375,7 @@ "13:30", "15:20", "WLH 001 - William L. Harkness Hall 001", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -89879,10 +197391,121 @@ "classnotes": "Priority is given to students in Education Studies (certificate & scholars program) and then by course year. Priority is also given to students who have taken or are taking EDST110. As you request permission on courses.yale.edu, please indicate why you hope to take the course, your major, EDST program and whether you've taken EDST 110.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83840\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83840/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989252686500549, + 0.9983282685279846, + 0.9987847208976746, + 0.9985559582710266, + 0.9987607002258301, + 0.9988352656364441, + 0.9989029169082642 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989153146743774, + 0.9989018440246582, + 0.9989277720451355, + 0.9976805448532104, + 0.9989118576049805, + 0.9989250302314758, + 0.9988642930984497 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988877177238464, + 0.9982553124427795, + 0.9981436729431152, + 0.9989306330680847, + 0.9989135265350342, + 0.9986909031867981, + 0.9988659620285034, + 0.9989111423492432, + 0.9988168478012085 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 23, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 23 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -89919,7 +197542,7 @@ "15:30", "17:20", "WLH 209 - William L. Harkness Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -89935,10 +197558,143 @@ "classnotes": "Priority is given to students in Education Studies (certificate & scholars program) and then by course year. Priority is also given to students who have taken or are taking EDST110 and (rising) sophomores who will be applying to the Education Studies Scholars Program in the fall semester. As you request permission on courses.yale.edu, please indicate why you hope to take the course, your major, EDST program and whether you've taken EDST 110.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83843\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83843/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988504648208618, + 0.9986012578010559, + 0.9988089799880981, + 0.9988651275634766, + 0.9987396597862244, + 0.9989055395126343, + 0.9988777041435242, + 0.998902440071106, + 0.9986415505409241, + 0.995911717414856, + 0.9988150596618652 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9980214834213257, + 0.9976786971092224, + 0.9989053010940552, + 0.9989087581634521, + 0.9988747239112854, + 0.9989088773727417, + 0.998887836933136, + 0.9988642930984497, + 0.9929999113082886, + 0.998633086681366, + 0.9989203214645386 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989256262779236, + 0.9980894923210144, + 0.9989187717437744, + 0.9988916516304016, + 0.9988445043563843, + 0.9989075660705566, + 0.9988478422164917, + 0.9989216327667236, + 0.9989120960235596, + 0.9988783001899719, + 0.9870601892471313, + 0.9988787770271301 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 34, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 34 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -89976,7 +197732,7 @@ "15:30", "17:20", "HQ 401 - Humanities Quadrangle 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -89990,10 +197746,111 @@ "classnotes": "Priority is given to students in Education Studies (certificate & scholars program), and then by course year. Priority is also given to students who have taken EDST110. As you request permission on courses.yale.edu, please indicate why you hope to take the course, your major, EDST program and whether you've taken EDST 110.\n", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83845\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83845/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988695979118347, + 0.9988982677459717, + 0.9989128112792969, + 0.9989330172538757, + 0.9989197254180908 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989307522773743, + 0.9989302754402161, + 0.9989393353462219, + 0.998935878276825, + 0.9989362359046936 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988752007484436, + 0.9988152980804443, + 0.9988157749176025, + 0.998887836933136, + 0.9989049434661865, + 0.9989159107208252, + 0.9988530874252319, + 0.9989256262779236 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 18 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -90032,7 +197889,7 @@ "13:30", "15:20", "WLH 202 - William L. Harkness Hall 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -90049,10 +197906,145 @@ "classnotes": "Priority is given to students in Education Studies (certificate & scholars program) and then by course year. Priority is also given to students who have taken EDST110. Please indicate your interest in the course as well as major, EDST program and whether you've taken EDST 110 when you request permission.\n", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83848\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83848/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985525012016296, + 0.9987898468971252, + 0.9988873600959778, + 0.9988933205604553, + 0.9987541437149048, + 0.9989078044891357, + 0.9986770749092102, + 0.9988848567008972, + 0.9986936450004578, + 0.9989162683486938, + 0.9988781809806824 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988829493522644, + 0.998867392539978, + 0.998928964138031, + 0.998795747756958, + 0.9987998008728027, + 0.9988973140716553, + 0.9988933205604553, + 0.9989362359046936, + 0.9988799691200256, + 0.9989381432533264, + 0.9989084005355835, + 0.9989307522773743 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985396862030029, + 0.9989180564880371, + 0.9989120960235596, + 0.998842716217041, + 0.9989150762557983, + 0.9988678693771362, + 0.998921275138855, + 0.9989272952079773, + 0.9989367127418518, + 0.9989281296730042, + 0.9988818764686584, + 0.9977533221244812 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 35, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 35 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -90089,7 +198081,7 @@ "19:00", "20:50", "HQ 401 - Humanities Quadrangle 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -90101,10 +198093,145 @@ "classnotes": "Course for new Education Scholars, instructor permission required.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83851\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83851/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988940358161926, + 0.9985652565956116, + 0.9989221096038818, + 0.9987651109695435, + 0.9988601207733154, + 0.9984989166259766, + 0.9989182949066162, + 0.9986231327056885, + 0.998927652835846, + 0.9988895058631897 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989287257194519, + 0.9988296627998352, + 0.9977678060531616, + 0.998896598815918, + 0.998904824256897, + 0.9986746311187744, + 0.9987634420394897, + 0.9989110231399536, + 0.998938262462616, + 0.9987394213676453, + 0.998428463935852, + 0.9989326596260071, + 0.9989218711853027 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9230769230769231, + "NEGATIVE": 0.07692307692307693 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9230769230769231 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989063739776611, + 0.9988569021224976, + 0.9987165927886963, + 0.9984762072563171, + 0.9978106617927551, + 0.9986269474029541, + 0.9987743496894836, + 0.9989365935325623, + 0.998445451259613, + 0.9988756775856018, + 0.9989385008811951 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 33, + "final_proportion": 0.9705882352941176, + "final_counts": { + "POSITIVE": 33, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9705882352941176, + "NEGATIVE": 0.029411764705882353 + } + } }, { "season_code": "202301", @@ -90147,7 +198274,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -90186,7 +198341,7 @@ "10:30", "11:20", "WALL53 AUD - 53 Wall Street AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/559554" + "https://map.yale.edu/?id=1910#!m/559554" ] ], "Thursday": [ @@ -90194,7 +198349,7 @@ "10:30", "11:20", "WALL53 AUD - 53 Wall Street AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/559554" + "https://map.yale.edu/?id=1910#!m/559554" ] ] }, @@ -90215,10 +198370,279 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83787\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83787/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989020824432373, + 0.9982200264930725, + 0.9979315996170044, + 0.9984152317047119, + 0.9988815188407898, + 0.9987626075744629, + 0.9985306262969971, + 0.9980157613754272, + 0.9978541731834412, + 0.9986346364021301, + 0.9989012479782104, + 0.9835135340690613, + 0.9984681010246277, + 0.9987140893936157, + 0.998831570148468, + 0.9977523684501648, + 0.9949361085891724, + 0.998715877532959, + 0.9978220462799072, + 0.9986718893051147, + 0.998816728591919, + 0.9981309771537781, + 0.9987673759460449, + 0.9988505840301514, + 0.9984118938446045, + 0.9987666606903076, + 0.998783528804779, + 0.9983091354370117, + 0.9986559152603149, + 0.9988646507263184 + ], + "sentiment_counts": { + "POSITIVE": 28, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.9333333333333333, + "NEGATIVE": 0.06666666666666667 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9333333333333333 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9990130662918091, + 0.999504566192627, + 0.9984152317047119, + 0.9995008707046509, + 0.9986315369606018, + 0.998721182346344, + 0.9991198182106018, + 0.9989039897918701, + 0.996553897857666, + 0.9977604150772095, + 0.9988743662834167, + 0.9989368319511414, + 0.9988803267478943, + 0.9985742568969727, + 0.9985694885253906, + 0.9876213669776917, + 0.9899699091911316, + 0.9988962411880493, + 0.9989005327224731, + 0.9995015859603882, + 0.9988722205162048, + 0.998909592628479, + 0.9988873600959778, + 0.9966509938240051, + 0.9994663596153259, + 0.9987519979476929, + 0.996585488319397, + 0.9985295534133911, + 0.9986647367477417, + 0.999500036239624, + 0.9939508438110352, + 0.9982873797416687 + ], + "sentiment_counts": { + "NEGATIVE": 15, + "POSITIVE": 17 + }, + "sentiment_distribution": { + "NEGATIVE": 0.46875, + "POSITIVE": 0.53125 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989180564880371, + 0.9966559410095215, + 0.9995113611221313, + 0.997117280960083, + 0.9984152317047119, + 0.9995068311691284, + 0.9974791407585144, + 0.9988237023353577, + 0.9994764924049377, + 0.9980016350746155, + 0.9988163709640503, + 0.9857620000839233, + 0.9974468946456909, + 0.997117280960083, + 0.9982800483703613, + 0.9988102912902832, + 0.9988534450531006, + 0.9987898468971252, + 0.9989326596260071, + 0.9974592328071594, + 0.9987229704856873, + 0.9989144802093506, + 0.9982049465179443, + 0.9993675351142883, + 0.9961845278739929, + 0.9989049434661865, + 0.9986286163330078, + 0.9989244341850281, + 0.999467670917511, + 0.997117280960083, + 0.9979928731918335, + 0.9963659048080444, + 0.9984989166259766, + 0.9955228567123413, + 0.998916745185852, + 0.998801589012146, + 0.999512791633606, + 0.9980016350746155, + 0.9975739121437073 + ], + "sentiment_counts": { + "POSITIVE": 25, + "NEGATIVE": 14 + }, + "sentiment_distribution": { + "POSITIVE": 0.6410256410256411, + "NEGATIVE": 0.358974358974359 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6410256410256411 + ] + }, + "final_label": "POSITIVE", + "final_count": 70, + "final_proportion": 0.693069306930693, + "final_counts": { + "POSITIVE": 70, + "NEGATIVE": 31 + }, + "final_distribution": { + "POSITIVE": 0.693069306930693, + "NEGATIVE": 0.3069306930693069 + } + } }, { "season_code": "202301", @@ -90255,7 +198679,7 @@ "13:30", "15:20", "WLH 001 - William L. Harkness Hall 001", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -90268,11 +198692,106 @@ "rp_attr": "", "classnotes": "Priority is given to students in Education Studies (certificate & scholars program), and then by course year. Priority is also given to students who have taken EDST110. As you request permission on courses.yale.edu, please indicate why you hope to take the course, your major, EDST program and whether you've taken EDST 110.", "final_exam": "No regular final examination", - "course_home_url": "https:\/\/yale.instructure.com\/courses\/83860", + "course_home_url": "https://yale.instructure.com/courses/83860", "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988321661949158, + 0.9986885190010071, + 0.99882572889328, + 0.9988808035850525 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988985061645508, + 0.9988352656364441, + 0.9989105463027954, + 0.9989180564880371, + 0.9988213181495667 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989010095596313, + 0.998847484588623, + 0.9989100694656372, + 0.9988571405410767, + 0.9989218711853027, + 0.997117280960083 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 15 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -90313,7 +198832,7 @@ "13:30", "15:20", "WLH 006 - William L. Harkness Hall 006", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -90331,10 +198850,113 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85961\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85961/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984681010246277, + 0.9989023208618164, + 0.9987999200820923, + 0.9988932013511658, + 0.9989064931869507, + 0.9989149570465088, + 0.998826801776886 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989259839057922, + 0.9979013204574585, + 0.9987432360649109, + 0.9989210367202759, + 0.9988973140716553, + 0.9988835453987122 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9971141815185547, + 0.9985865354537964, + 0.9988549947738647, + 0.9988499879837036, + 0.9986931681632996, + 0.9988263249397278 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 19 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -90372,7 +198994,7 @@ "9:25", "11:15", "HQ 207 - Humanities Quadrangle 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -90391,10 +199013,151 @@ "classnotes": "Priority is given to students in Education Studies (certificate & scholars program) and Political Science and then by course year. Priority is also given to students who have taken EDST110. On courses.edu, please request instructor permission. In the note, please indicate your interest in the course including any international background, as well as major, EDST program and whether you've taken EDST 110 when you request permission.\n", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83863\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83863/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987898468971252, + 0.9987607002258301, + 0.9988597631454468, + 0.9988728165626526, + 0.9987794756889343, + 0.9989176988601685, + 0.9988880753517151, + 0.9987792372703552, + 0.998904824256897, + 0.9988025426864624, + 0.9968806505203247, + 0.9988590478897095, + 0.9986974596977234 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998529314994812, + 0.9988682270050049, + 0.9989055395126343, + 0.9989317059516907, + 0.9989032745361328, + 0.9988320469856262, + 0.9988992214202881, + 0.9989318251609802, + 0.9988235831260681, + 0.9988278746604919, + 0.9988490343093872, + 0.9987776875495911, + 0.9988874793052673 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998895525932312, + 0.9988921284675598, + 0.9988917708396912, + 0.998873770236969, + 0.9989258646965027, + 0.9989089965820312, + 0.9989243149757385, + 0.9988768696784973, + 0.9989251494407654, + 0.9988014698028564, + 0.9989026784896851, + 0.9989299178123474 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 38, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 38 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -90434,7 +199197,7 @@ "19:00", "20:50", "LC 211 - Linsly-Chittenden Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -90450,15 +199213,180 @@ "classnotes": "Priority is given to students in Education Studies (certificate & scholars program) and then by course year. Priority is also given to students who have taken EDST110. On courses.edu, please request instructor permission. In the note, please indicate your interest in the course, as well as major, EDST program and whether you've taken EDST 110 when you request permission.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85939\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/85939/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989386200904846, + 0.9986961483955383, + 0.998872697353363, + 0.9986489415168762, + 0.9986145496368408, + 0.9989204406738281, + 0.9988538026809692, + 0.9987773299217224, + 0.9988901019096375, + 0.9988872408866882, + 0.9988802075386047, + 0.9988752007484436, + 0.9988771080970764, + 0.998907208442688, + 0.9988407492637634, + 0.9988952279090881, + 0.9988911747932434 + ], + "sentiment_counts": { + "POSITIVE": 17, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989100694656372, + 0.9989142417907715, + 0.9989250302314758, + 0.9989209175109863, + 0.9988793730735779, + 0.9989340901374817, + 0.998923122882843, + 0.9986196756362915, + 0.9989007711410522, + 0.9989307522773743, + 0.9989318251609802, + 0.9989124536514282, + 0.9988455772399902, + 0.998802661895752, + 0.998923122882843, + 0.9989118576049805, + 0.9988192915916443 + ], + "sentiment_counts": { + "POSITIVE": 17, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988321661949158, + 0.9989182949066162, + 0.9988641738891602, + 0.9988439083099365, + 0.99893718957901, + 0.9976970553398132, + 0.9989295601844788, + 0.9988922476768494, + 0.9989246726036072, + 0.9989213943481445, + 0.9989224672317505, + 0.9989345669746399, + 0.9989145994186401, + 0.9986516833305359, + 0.9989373087882996, + 0.998849630355835 + ], + "sentiment_counts": { + "POSITIVE": 16, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 50, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 50 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", "requirements": "Prerequisite: At least one course in which the student has read and engaged substantively with Plato's Republic. For example: Directed Studies (fall semester); PHIL 125 (ancient philosophy); PLSC 114 (Political Philosophy); or equivalent.", - "description": "How can ancient philosophy engage contemporary audiences? Public Plato explores this question through three strands. (1) Strand one introduces students to material from the Open Yale Course \"Philosophy and the Science of Human Nature,\" which pairs core texts from the Western philosophical tradition with recent findings in cognitive science. (In slogan form, the structure of the course is \"Dead guy on Tuesday; Cog Sci on Thursday.\") Readings here include selections from philosophers (Plato, Aristotle, Epictetus) and psychologists (Millgram, Kahneman, Lyubomirksy) focused on the topic of human flourishing. (2) Strand two introduces students to certain large-scale experiments in public philosophical outreach (the Wireless Philosophy Project, the Aspen Institute, EdX\/Coursera). Readings here include primary-source materials and theoretical and historical discussions of their import. (3) Strand three introduces students to a set of digital technologies through hands-on practice at the Poorvu Center. These strands are woven together through the course assignments: Using materials in the Open Yale Course initiative as an archive, students learn to curate a set of digital educational resources ranging from TikTok videos to Podcasts to longer-form (Coursera) courses. Graded assignments include both group-based creative projects and individual written work, including weekly directed writing exercises.", + "description": "How can ancient philosophy engage contemporary audiences? Public Plato explores this question through three strands. (1) Strand one introduces students to material from the Open Yale Course \"Philosophy and the Science of Human Nature,\" which pairs core texts from the Western philosophical tradition with recent findings in cognitive science. (In slogan form, the structure of the course is \"Dead guy on Tuesday; Cog Sci on Thursday.\") Readings here include selections from philosophers (Plato, Aristotle, Epictetus) and psychologists (Millgram, Kahneman, Lyubomirksy) focused on the topic of human flourishing. (2) Strand two introduces students to certain large-scale experiments in public philosophical outreach (the Wireless Philosophy Project, the Aspen Institute, EdX/Coursera). Readings here include primary-source materials and theoretical and historical discussions of their import. (3) Strand three introduces students to a set of digital technologies through hands-on practice at the Poorvu Center. These strands are woven together through the course assignments: Using materials in the Open Yale Course initiative as an archive, students learn to curate a set of digital educational resources ranging from TikTok videos to Podcasts to longer-form (Coursera) courses. Graded assignments include both group-based creative projects and individual written work, including weekly directed writing exercises.", "short_title": "Public Plato: Ancient Wisdom ...", "title": "Public Plato: Ancient Wisdom in the Digital Age", "school": "YC", @@ -90493,7 +199421,7 @@ "13:30", "15:20", "SML 120B - Sterling Memorial Library 120B", - "https:\/\/map.yale.edu\/?id=1910#!m\/563698" + "https://map.yale.edu/?id=1910#!m/563698" ] ] }, @@ -90509,10 +199437,103 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85866\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85866/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998918890953064, + 0.9984135627746582, + 0.9986271858215332, + 0.9986830353736877, + 0.9989288449287415 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9986567497253418, + 0.9989054203033447, + 0.9895350337028503 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.998708963394165, + 0.9983287453651428, + 0.9986146688461304, + 0.998909592628479, + 0.990972638130188 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 0.8461538461538461, + "final_counts": { + "POSITIVE": 11, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8461538461538461, + "NEGATIVE": 0.15384615384615385 + } + } }, { "season_code": "202301", @@ -90560,7 +199581,7 @@ "15:30", "17:00", "CSC COHEN-AUD - Child Study Center COHEN-AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/563701" + "https://map.yale.edu/?id=1910#!m/563701" ] ] }, @@ -90576,15 +199597,138 @@ "classnotes": "All classes will be held in the Child Study Center Cohen Auditorium (E02). Permission of the instructors is REQUIRED for this seminar. Preregistration applications are required, and students should apply on the Yale Course Selection site. Instructors will select students and construct a waiting list. Students should include on their application: \n\uf0a7\tName, Class, Preferred Pronouns, Major \n\uf0a7\tBriefly describe any previous experience with autism\n\uf0a7\tWhy do you want to take this class?\nThe full syllabus can be found on Canvas.\n", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85900\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/85900/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9973719120025635, + 0.9988712668418884, + 0.9989055395126343, + 0.9988553524017334, + 0.9985491633415222, + 0.9988961219787598, + 0.9988141059875488, + 0.998775064945221 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988484382629395, + 0.9971529245376587, + 0.9988824725151062, + 0.9988995790481567, + 0.9987688660621643, + 0.9984897375106812, + 0.9987906813621521, + 0.9995049238204956, + 0.9989175796508789, + 0.9985935091972351 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9986648559570312, + 0.9976826906204224, + 0.9974592328071594, + 0.9988866448402405, + 0.9989091157913208, + 0.9988798499107361, + 0.9994813799858093, + 0.9988791346549988, + 0.9988343119621277, + 0.9992978572845459 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 24, + "final_proportion": 0.8571428571428571, + "final_counts": { + "POSITIVE": 24, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + } + } }, { "season_code": "202301", "requirements": "Enrollment limited to senior Education Studies Scholars.", - "description": "The second course in the yearlong Education Studies Scholars capstone sequence where students conduct a rigorous project on a topic of their choice in education research, policy, and\/or practice.", + "description": "The second course in the yearlong Education Studies Scholars capstone sequence where students conduct a rigorous project on a topic of their choice in education research, policy, and/or practice.", "short_title": "Senior Capstone (Spring)", "title": "Senior Capstone (Spring)", "school": "YC", @@ -90616,7 +199760,7 @@ "9:25", "11:15", "HQ 207 - Humanities Quadrangle 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -90628,10 +199772,123 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83867\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83867/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989223480224609, + 0.999478280544281, + 0.998599112033844, + 0.9987754225730896, + 0.998782217502594, + 0.9938919544219971, + 0.9983781576156616 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.7142857142857143, + "NEGATIVE": 0.2857142857142857 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7142857142857143 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988935589790344, + 0.9995089769363403, + 0.9987004995346069, + 0.997593104839325, + 0.9980937838554382, + 0.9985600113868713, + 0.995959460735321, + 0.9963876008987427, + 0.9995007514953613 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.996032178401947, + 0.9968211650848389, + 0.999510645866394, + 0.9988607168197632, + 0.9982526898384094, + 0.9983184337615967, + 0.9989373087882996 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.5714285714285714, + "NEGATIVE": 0.42857142857142855 + }, + "sentiment_overall": [ + "POSITIVE", + 0.5714285714285714 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 0.6521739130434783, + "final_counts": { + "POSITIVE": 15, + "NEGATIVE": 8 + }, + "final_distribution": { + "POSITIVE": 0.6521739130434783, + "NEGATIVE": 0.34782608695652173 + } + } }, { "season_code": "202301", @@ -90669,7 +199926,7 @@ "9:25", "11:15", "SSS 201 - Sheffield-Sterling-Strathcona 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/563689" + "https://map.yale.edu/?id=1910#!m/563689" ] ] }, @@ -90685,10 +199942,151 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85794\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85794/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986845850944519, + 0.9980936646461487, + 0.9987766146659851, + 0.9988620281219482, + 0.9988057613372803, + 0.9983641505241394, + 0.998910665512085, + 0.9969114661216736, + 0.9987292885780334, + 0.9989288449287415, + 0.9989168643951416, + 0.9989342093467712 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988885521888733, + 0.9975278973579407, + 0.998904824256897, + 0.9989280104637146, + 0.9989180564880371, + 0.9987993240356445, + 0.9989109039306641, + 0.9988480806350708, + 0.9987165927886963, + 0.9987732768058777, + 0.9988974332809448, + 0.9988704323768616, + 0.9989365935325623 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986013770103455, + 0.9988279938697815, + 0.9989151954650879, + 0.998895525932312, + 0.9982553124427795, + 0.9989084005355835, + 0.998883068561554, + 0.9989019632339478, + 0.997117280960083, + 0.9985628724098206, + 0.998939573764801, + 0.9989081621170044, + 0.9986567497253418 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 38, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 38 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -90727,7 +200125,7 @@ "16:00", "17:50", "HEN 313 - Hendrie Hall 313", - "https:\/\/map.yale.edu\/?id=1910#!m\/563676" + "https://map.yale.edu/?id=1910#!m/563676" ] ] }, @@ -90744,10 +200142,38 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85867\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/85867/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -90787,10 +200213,38 @@ "classnotes": "Education Studies scholars may take EDST 490 as an independent study in lieu of enrolling in EDST 410 as part 2 of the senior capstone seminar, provided they have made satisfactory progress in EDST 400.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83873\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83873/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -90827,7 +200281,7 @@ "11:35", "12:50", "HLH17 113 - 17 Hillhouse Avenue 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Thursday": [ @@ -90835,7 +200289,7 @@ "11:35", "12:50", "HLH17 113 - 17 Hillhouse Avenue 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -90849,10 +200303,159 @@ "classnotes": "", "final_exam": "Monday, May 8, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83878\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83878/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.99883633852005, + 0.998611569404602, + 0.9987472295761108, + 0.9985384941101074, + 0.9968098998069763, + 0.9512145519256592, + 0.9890457391738892, + 0.9953298568725586, + 0.9987976551055908, + 0.9985994696617126, + 0.9986851811408997, + 0.9942601919174194, + 0.9988000392913818 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8461538461538461, + "NEGATIVE": 0.15384615384615385 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8461538461538461 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981598258018494, + 0.999470055103302, + 0.9980644583702087, + 0.9994974136352539, + 0.9992877840995789, + 0.9986403584480286, + 0.9989215135574341, + 0.9942885637283325, + 0.9990189075469971, + 0.9994896650314331, + 0.9990124702453613, + 0.9989035129547119, + 0.9921489953994751, + 0.9986748695373535, + 0.9982088804244995, + 0.9987144470214844 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 7 + }, + "sentiment_distribution": { + "POSITIVE": 0.5625, + "NEGATIVE": 0.4375 + }, + "sentiment_overall": [ + "POSITIVE", + 0.5625 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988545179367065, + 0.9982624650001526, + 0.9950509667396545, + 0.7875745892524719, + 0.9987801909446716, + 0.9989190101623535, + 0.9975264668464661, + 0.997117280960083, + 0.998630940914154, + 0.9767752289772034, + 0.9982709884643555, + 0.9987277388572693 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9166666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 31, + "final_proportion": 0.7560975609756098, + "final_counts": { + "POSITIVE": 31, + "NEGATIVE": 10 + }, + "final_distribution": { + "POSITIVE": 0.7560975609756098, + "NEGATIVE": 0.24390243902439024 + } + } }, { "season_code": "202301", @@ -90889,7 +200492,7 @@ "13:30", "14:20", "BCT CO31 - Becton Center CO31", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ], "Thursday": [ @@ -90897,7 +200500,7 @@ "13:30", "14:20", "BCT CO31 - Becton Center CO31", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ] }, @@ -90913,10 +200516,127 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83883\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83883/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987190961837769, + 0.9986617565155029, + 0.9982482194900513, + 0.9985141158103943, + 0.9977579712867737, + 0.9985241293907166, + 0.9988510608673096, + 0.996296226978302 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988901019096375, + 0.9988669157028198, + 0.9988253712654114, + 0.9994623064994812, + 0.9994940757751465, + 0.9966977834701538, + 0.998802661895752, + 0.9978731870651245, + 0.9988917708396912 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.7777777777777778, + "NEGATIVE": 0.2222222222222222 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7777777777777778 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9908362627029419, + 0.9951245188713074, + 0.9988898634910583, + 0.9994986057281494, + 0.9986836314201355, + 0.9984532594680786, + 0.9970393180847168, + 0.997117280960083 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 6 + }, + "sentiment_distribution": { + "NEGATIVE": 0.25, + "POSITIVE": 0.75 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 21, + "final_proportion": 0.84, + "final_counts": { + "POSITIVE": 21, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.84, + "NEGATIVE": 0.16 + } + } }, { "season_code": "202301", @@ -90962,12 +200682,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "Prior knowledge of advanced calculus of one variable and some elementary real analysis will be very useful (something like MATH 115), although it is not required strictly.", - "description": "Signal and system theory, having its roots at a great extent on classical and modern harmonic analysis, has played an instrumental role in the development of several transformative technologies during the 20th and 21st centuries. Two such examples are communication systems (analog, digital, wired, wireless), and compressive sensing and sparse approximations.\u00a0This core course provides a comprehensive first exposition to signal and system theory, and mainly covers the following content: definitions\/classifications\/dodeling of signals and systems in continuous and discrete-time; linear system theory (impulse response, frequency response, linear difference\/differential equations); convolutions (continuous and discrete);\u00a0Fourier series;\u00a0Fourier transform (continuous and discrete-time);\u00a0Laplace transform and Z-transform.", + "description": "Signal and system theory, having its roots at a great extent on classical and modern harmonic analysis, has played an instrumental role in the development of several transformative technologies during the 20th and 21st centuries. Two such examples are communication systems (analog, digital, wired, wireless), and compressive sensing and sparse approximations.\u00a0This core course provides a comprehensive first exposition to signal and system theory, and mainly covers the following content: definitions/classifications/dodeling of signals and systems in continuous and discrete-time; linear system theory (impulse response, frequency response, linear difference/differential equations); convolutions (continuous and discrete);\u00a0Fourier series;\u00a0Fourier transform (continuous and discrete-time);\u00a0Laplace transform and Z-transform.", "short_title": "Signals and Systems", "title": "Signals and Systems", "school": "YC", @@ -90999,7 +200747,7 @@ "14:30", "15:45", "ML 104 - Mason Laboratory 104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ], "Thursday": [ @@ -91007,7 +200755,7 @@ "14:30", "15:45", "ML 104 - Mason Laboratory 104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ] }, @@ -91021,10 +200769,125 @@ "classnotes": "", "final_exam": "Wednesday, May 10, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83891\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83891/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9971912503242493, + 0.9987817406654358, + 0.9979786276817322, + 0.9963279366493225, + 0.999500036239624, + 0.9982244372367859, + 0.9986481070518494, + 0.997990608215332 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9967384934425354, + 0.9994460940361023, + 0.9989176988601685, + 0.9995075464248657, + 0.9994993209838867, + 0.9988225102424622, + 0.9978485107421875, + 0.998656153678894 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.625, + "NEGATIVE": 0.375 + }, + "sentiment_overall": [ + "POSITIVE", + 0.625 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.999496579170227, + 0.9849188327789307, + 0.9981873631477356, + 0.9882500171661377, + 0.9916855096817017, + 0.9968211650848389, + 0.9983300566673279, + 0.9995100498199463 + ], + "sentiment_counts": { + "NEGATIVE": 5, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.625, + "POSITIVE": 0.375 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.625 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 0.5833333333333334, + "final_counts": { + "POSITIVE": 14, + "NEGATIVE": 10 + }, + "final_distribution": { + "POSITIVE": 0.5833333333333334, + "NEGATIVE": 0.4166666666666667 + } + } }, { "season_code": "202301", @@ -91062,7 +200925,7 @@ "11:35", "12:50", "HLH17 05 - 17 Hillhouse Avenue 05", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Wednesday": [ @@ -91070,7 +200933,7 @@ "11:35", "12:50", "HLH17 05 - 17 Hillhouse Avenue 05", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -91084,10 +200947,179 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83896\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83896/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9975863695144653, + 0.9988133907318115, + 0.9965497255325317, + 0.9987142086029053, + 0.9988573789596558, + 0.6154360771179199, + 0.9987862706184387, + 0.998505711555481, + 0.9986913800239563, + 0.998803973197937, + 0.9988610744476318, + 0.9982290863990784, + 0.9988017082214355, + 0.993890643119812, + 0.998616099357605, + 0.9986488223075867, + 0.9986762404441833, + 0.9988246560096741 + ], + "sentiment_counts": { + "POSITIVE": 17, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9444444444444444, + "NEGATIVE": 0.05555555555555555 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9444444444444444 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989032745361328, + 0.9988147020339966, + 0.9989249110221863, + 0.9988988637924194, + 0.9989193677902222, + 0.9903252124786377, + 0.9976364374160767, + 0.9989093542098999, + 0.9988090991973877, + 0.9989234805107117, + 0.9988671541213989, + 0.9989270567893982, + 0.998914361000061, + 0.9988653659820557, + 0.9986961483955383, + 0.999079704284668 + ], + "sentiment_counts": { + "POSITIVE": 14, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989264607429504, + 0.9974915981292725, + 0.9989314675331116, + 0.9981003403663635, + 0.9988868832588196, + 0.9985671043395996, + 0.9990045428276062, + 0.9983460903167725, + 0.9939424395561218, + 0.9989243149757385, + 0.998928964138031, + 0.9989398121833801, + 0.9988791346549988, + 0.9988904595375061, + 0.9988634586334229, + 0.9989042282104492, + 0.9987953901290894 + ], + "sentiment_counts": { + "POSITIVE": 15, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8823529411764706, + "NEGATIVE": 0.11764705882352941 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8823529411764706 + ] + }, + "final_label": "POSITIVE", + "final_count": 46, + "final_proportion": 0.9019607843137255, + "final_counts": { + "POSITIVE": 46, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.9019607843137255, + "NEGATIVE": 0.09803921568627451 + } + } }, { "season_code": "202301", @@ -91125,7 +201157,7 @@ "9:00", "10:15", "BCT CO31 - Becton Center CO31", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ], "Thursday": [ @@ -91133,7 +201165,7 @@ "9:00", "10:15", "BCT CO31 - Becton Center CO31", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ] }, @@ -91149,10 +201181,38 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83900\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83900/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -91191,7 +201251,7 @@ "13:00", "14:15", "ML 104 - Mason Laboratory 104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ], "Thursday": [ @@ -91199,7 +201259,7 @@ "13:00", "14:15", "ML 104 - Mason Laboratory 104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ] }, @@ -91215,10 +201275,38 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86475\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/86475/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -91256,7 +201344,7 @@ "13:00", "14:15", "WTS A48 - Watson Center 60 Sachem Street A48", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -91264,7 +201352,7 @@ "13:00", "14:15", "WTS A48 - Watson Center 60 Sachem Street A48", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -91280,15 +201368,108 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83904\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83904/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986600875854492, + 0.9979197382926941, + 0.9988897442817688, + 0.9988118410110474, + 0.9989161491394043 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.99885094165802, + 0.9989323019981384, + 0.9988816380500793, + 0.9984868764877319 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989252686500549, + 0.9989262223243713, + 0.9989204406738281, + 0.9988493919372559, + 0.998748779296875 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 14 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", "requirements": "Prerequisites: CPSC 323, 223, and 202.\u00a0This is a programming-intensive course, so comfort with large programming projects is essential.", - "description": "This course offers a treatment of computer architectures for high-performance and power\/energy-efficient computer systems. Topics include the foundations of general-purpose computing, including instruction set architectures, pipelines, superscalar and out-of-order execution, speculation, support for precise exceptions, and simultaneous multi-threading. We also cover domain-specific hardware (e.g., graphics processing units), and ongoing industry efforts to elevate them to the status of first-class computing units. In tandem, we cover topics relevant to both general-purpose and domain-specific computing, including memory hierarchies, address translation and virtual memory, on-chip networks, machine learning techniques for resource management, and coherence techniques. If time permits, we will study the basics of emerging non-classical computing paradigms like neuromorphic computing. Overall, this course offers insights on how the computing industry is combating the waning of traditional technology scaling via acceleration and heterogeneity.", + "description": "This course offers a treatment of computer architectures for high-performance and power/energy-efficient computer systems. Topics include the foundations of general-purpose computing, including instruction set architectures, pipelines, superscalar and out-of-order execution, speculation, support for precise exceptions, and simultaneous multi-threading. We also cover domain-specific hardware (e.g., graphics processing units), and ongoing industry efforts to elevate them to the status of first-class computing units. In tandem, we cover topics relevant to both general-purpose and domain-specific computing, including memory hierarchies, address translation and virtual memory, on-chip networks, machine learning techniques for resource management, and coherence techniques. If time permits, we will study the basics of emerging non-classical computing paradigms like neuromorphic computing. Overall, this course offers insights on how the computing industry is combating the waning of traditional technology scaling via acceleration and heterogeneity.", "short_title": "Computer Architecture", "title": "Computer Architecture", "school": "YC", @@ -91323,7 +201504,7 @@ "13:00", "14:15", "HLH17 05 - 17 Hillhouse Avenue 05", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Wednesday": [ @@ -91331,7 +201512,7 @@ "13:00", "14:15", "HLH17 05 - 17 Hillhouse Avenue 05", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -91343,10 +201524,155 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83721\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83721/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982604384422302, + 0.9986782670021057, + 0.9970454573631287, + 0.9959930181503296, + 0.9987584352493286, + 0.9795193076133728, + 0.9988956451416016, + 0.9988253712654114, + 0.9978699684143066, + 0.9985839128494263, + 0.9417100548744202, + 0.9987838864326477 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.99887615442276, + 0.9988698363304138, + 0.9979227185249329, + 0.9987890124320984, + 0.9989078044891357, + 0.9857051372528076, + 0.9986310601234436, + 0.9984967708587646, + 0.9989223480224609, + 0.9989016056060791, + 0.9973451495170593, + 0.9964166879653931, + 0.9988887906074524 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.7692307692307693, + "NEGATIVE": 0.23076923076923078 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7692307692307693 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986953139305115, + 0.9988092184066772, + 0.9988666772842407, + 0.9989149570465088, + 0.998746395111084, + 0.9988855719566345, + 0.9950124621391296, + 0.9988293051719666, + 0.9988405108451843, + 0.9988589286804199, + 0.9987837672233582, + 0.9989293217658997, + 0.998904824256897, + 0.995049774646759 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9285714285714286, + "NEGATIVE": 0.07142857142857142 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9285714285714286 + ] + }, + "final_label": "POSITIVE", + "final_count": 35, + "final_proportion": 0.8974358974358975, + "final_counts": { + "POSITIVE": 35, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.8974358974358975, + "NEGATIVE": 0.10256410256410256 + } + } }, { "season_code": "202301", @@ -91387,7 +201713,7 @@ "13:00", "14:15", "ML 211 - Mason Laboratory 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ], "Wednesday": [ @@ -91395,7 +201721,7 @@ "13:00", "14:15", "ML 211 - Mason Laboratory 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ] }, @@ -91409,10 +201735,279 @@ "classnotes": "", "final_exam": "Tuesday, May 9, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84865\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84865/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9992075562477112, + 0.998089611530304, + 0.9984363913536072, + 0.9986252784729004, + 0.9986042380332947, + 0.9949446320533752, + 0.9896267652511597, + 0.9654321670532227, + 0.9972080588340759, + 0.9913358688354492, + 0.9931228756904602, + 0.9943450689315796, + 0.9957340359687805, + 0.9970738887786865, + 0.7170528769493103, + 0.9987829327583313, + 0.9984796643257141, + 0.9987836480140686, + 0.9934607744216919, + 0.9939693212509155, + 0.9985232949256897, + 0.99818354845047, + 0.9987327456474304, + 0.9944283962249756, + 0.9985114932060242, + 0.9974126219749451, + 0.9965142607688904, + 0.9988309741020203, + 0.9944962859153748, + 0.9976000189781189 + ], + "sentiment_counts": { + "NEGATIVE": 4, + "POSITIVE": 26 + }, + "sentiment_distribution": { + "NEGATIVE": 0.13333333333333333, + "POSITIVE": 0.8666666666666667 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8666666666666667 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994750618934631, + 0.9986365437507629, + 0.9991826415061951, + 0.9988372921943665, + 0.9995030164718628, + 0.9989519119262695, + 0.9994860887527466, + 0.9994958639144897, + 0.9995119571685791, + 0.9980810880661011, + 0.9989181756973267, + 0.9990677237510681, + 0.9972221851348877, + 0.9987633228302002, + 0.9988532066345215, + 0.9987863898277283, + 0.9911655783653259, + 0.9995070695877075, + 0.9987841248512268, + 0.9979895353317261, + 0.9986498951911926, + 0.9986023306846619, + 0.9986366629600525, + 0.9988486766815186, + 0.9988999366760254, + 0.9970904588699341, + 0.9981324076652527, + 0.9987800717353821, + 0.9988125562667847, + 0.993904173374176, + 0.9988242983818054, + 0.9984933137893677, + 0.981683611869812, + 0.9965178966522217, + 0.9988514184951782, + 0.9981138706207275, + 0.998134434223175 + ], + "sentiment_counts": { + "NEGATIVE": 16, + "POSITIVE": 21 + }, + "sentiment_distribution": { + "NEGATIVE": 0.43243243243243246, + "POSITIVE": 0.5675675675675675 + }, + "sentiment_overall": [ + "POSITIVE", + 0.5675675675675675 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9995031356811523, + 0.9989062547683716, + 0.9984586238861084, + 0.9968724846839905, + 0.9597945213317871, + 0.9988682270050049, + 0.9995098114013672, + 0.9986429810523987, + 0.9983055591583252, + 0.9983306527137756, + 0.9978960752487183, + 0.999506950378418, + 0.9982553124427795, + 0.998826801776886, + 0.9946483969688416, + 0.9837275743484497, + 0.9995023012161255, + 0.9897374510765076, + 0.9972172975540161, + 0.9936019778251648, + 0.989325761795044, + 0.9988495111465454, + 0.9981392621994019, + 0.9992881417274475, + 0.9968299269676208, + 0.9993577599525452, + 0.9968120455741882, + 0.9887654781341553, + 0.997117280960083, + 0.9992204904556274, + 0.9698554873466492, + 0.9987173080444336, + 0.9995046854019165, + 0.999488115310669 + ], + "sentiment_counts": { + "NEGATIVE": 13, + "POSITIVE": 21 + }, + "sentiment_distribution": { + "NEGATIVE": 0.38235294117647056, + "POSITIVE": 0.6176470588235294 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6176470588235294 + ] + }, + "final_label": "POSITIVE", + "final_count": 68, + "final_proportion": 0.6732673267326733, + "final_counts": { + "NEGATIVE": 33, + "POSITIVE": 68 + }, + "final_distribution": { + "NEGATIVE": 0.32673267326732675, + "POSITIVE": 0.6732673267326733 + } + } }, { "season_code": "202301", @@ -91452,7 +202047,7 @@ "11:35", "12:50", "HLH17 05 - 17 Hillhouse Avenue 05", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Thursday": [ @@ -91460,7 +202055,7 @@ "11:35", "12:50", "HLH17 05 - 17 Hillhouse Avenue 05", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -91469,17 +202064,168 @@ ], "areas": [], "flags": [ - "YC CSEC: Electv intrsctn CS\/EC" + "YC CSEC: Electv intrsctn CS/EC" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84876\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84876/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998568058013916, + 0.9988627433776855, + 0.9987685084342957, + 0.998754620552063, + 0.9946622252464294, + 0.9970614314079285, + 0.998843789100647, + 0.9987886548042297, + 0.9988092184066772, + 0.9988441467285156, + 0.9988687634468079, + 0.9985740184783936, + 0.9989031553268433 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998921275138855, + 0.9986627101898193, + 0.9940459728240967, + 0.9988405108451843, + 0.99858558177948, + 0.9988741278648376, + 0.9988069534301758, + 0.9988125562667847, + 0.9987701773643494, + 0.9989302754402161, + 0.99882572889328, + 0.9989101886749268, + 0.9927527904510498, + 0.9988667964935303, + 0.9988458156585693 + ], + "sentiment_counts": { + "POSITIVE": 14, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9333333333333333, + "NEGATIVE": 0.06666666666666667 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9333333333333333 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989182949066162, + 0.9980598092079163, + 0.9989286065101624, + 0.9814826846122742, + 0.9988265633583069, + 0.9986445307731628, + 0.9986481070518494, + 0.9787508249282837, + 0.9892027974128723, + 0.9988951086997986, + 0.9988790154457092, + 0.9989151954650879, + 0.9988663196563721, + 0.99888676404953 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9285714285714286, + "NEGATIVE": 0.07142857142857142 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9285714285714286 + ] + }, + "final_label": "POSITIVE", + "final_count": 40, + "final_proportion": 0.9523809523809523, + "final_counts": { + "POSITIVE": 40, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9523809523809523, + "NEGATIVE": 0.047619047619047616 + } + } }, { "season_code": "202301", @@ -91517,7 +202263,7 @@ "14:30", "15:45", "HLH17 03 - 17 Hillhouse Avenue 03", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Thursday": [ @@ -91525,7 +202271,7 @@ "14:30", "15:45", "HLH17 03 - 17 Hillhouse Avenue 03", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -91539,10 +202285,81 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83913\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83913/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984431862831116 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981557726860046 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9946463704109192 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 3, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 3 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -91588,7 +202405,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -91634,7 +202479,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -91674,10 +202547,95 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83849\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83849/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9969918727874756, + 0.9994485974311829, + 0.9988197684288025 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.3333333333333333, + "NEGATIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.6666666666666666 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.998744010925293, + 0.9994820952415466, + 0.9995012283325195 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.3333333333333333, + "NEGATIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9977564215660095, + 0.9993403553962708, + 0.9994169473648071 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.3333333333333333, + "NEGATIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.6666666666666666 + ] + }, + "final_label": "NEGATIVE", + "final_count": 6, + "final_proportion": 0.6666666666666666, + "final_counts": { + "POSITIVE": 3, + "NEGATIVE": 6 + }, + "final_distribution": { + "POSITIVE": 0.3333333333333333, + "NEGATIVE": 0.6666666666666666 + } + } }, { "season_code": "202301", @@ -91715,7 +202673,7 @@ "9:00", "10:15", "HQ 133 - Humanities Quadrangle 133", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -91723,7 +202681,7 @@ "9:00", "10:15", "HQ 133 - Humanities Quadrangle 133", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -91737,10 +202695,115 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83852\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83852/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.8478928804397583, + 0.9884771108627319, + 0.9982267022132874, + 0.9857665300369263, + 0.9987045526504517, + 0.9987655878067017, + 0.9987213015556335 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 4 + }, + "sentiment_distribution": { + "NEGATIVE": 0.42857142857142855, + "POSITIVE": 0.5714285714285714 + }, + "sentiment_overall": [ + "POSITIVE", + 0.5714285714285714 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987015724182129, + 0.9988003969192505, + 0.9924775958061218, + 0.9989151954650879, + 0.9989098310470581, + 0.9989253878593445 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982553124427795, + 0.9986022114753723, + 0.9987651109695435, + 0.9976933598518372, + 0.9987019300460815, + 0.9987478256225586 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 0.7894736842105263, + "final_counts": { + "NEGATIVE": 4, + "POSITIVE": 15 + }, + "final_distribution": { + "NEGATIVE": 0.21052631578947367, + "POSITIVE": 0.7894736842105263 + } + } }, { "season_code": "202301", @@ -91784,7 +202847,7 @@ "14:30", "15:45", "HQ C03 - Humanities Quadrangle C03", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -91792,7 +202855,7 @@ "14:30", "15:45", "HQ C03 - Humanities Quadrangle C03", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -91806,10 +202869,105 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83286\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83286/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988073110580444, + 0.998848557472229, + 0.9987161159515381, + 0.9988049268722534 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998894989490509, + 0.9967054724693298, + 0.9984285235404968, + 0.9988842606544495, + 0.9989232420921326, + 0.9984130859375 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987163543701172, + 0.9909997582435608, + 0.9967576861381531, + 0.9988337159156799 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 0.7857142857142857, + "final_counts": { + "POSITIVE": 11, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.7857142857142857, + "NEGATIVE": 0.21428571428571427 + } + } }, { "season_code": "202301", @@ -91847,7 +203005,7 @@ "11:35", "12:50", "BASSLB L71 - Bass Library L71", - "https:\/\/map.yale.edu\/?id=1910#!m\/564574" + "https://map.yale.edu/?id=1910#!m/564574" ] ], "Thursday": [ @@ -91855,7 +203013,7 @@ "11:35", "12:50", "BASSLB L71 - Bass Library L71", - "https:\/\/map.yale.edu\/?id=1910#!m\/564574" + "https://map.yale.edu/?id=1910#!m/564574" ] ] }, @@ -91869,10 +203027,38 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83856\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83856/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -91912,7 +203098,7 @@ "9:00", "10:15", "HQ 129 - Humanities Quadrangle 129", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -91920,7 +203106,7 @@ "9:00", "10:15", "HQ 129 - Humanities Quadrangle 129", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -91934,10 +203120,38 @@ "classnotes": "", "final_exam": "Tuesday, May 9, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84800\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84800/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -91975,7 +203189,7 @@ "16:00", "17:15", "HQ 113 - Humanities Quadrangle 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -91983,7 +203197,7 @@ "16:00", "17:15", "HQ 113 - Humanities Quadrangle 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -91997,10 +203211,38 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83861\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83861/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -92038,7 +203280,7 @@ "9:00", "10:15", "HQ 133 - Humanities Quadrangle 133", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -92046,7 +203288,7 @@ "9:00", "10:15", "HQ 133 - Humanities Quadrangle 133", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -92058,10 +203300,115 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83852\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83852/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.8478928804397583, + 0.9884771108627319, + 0.9982267022132874, + 0.9857665300369263, + 0.9987045526504517, + 0.9987655878067017, + 0.9987213015556335 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 4 + }, + "sentiment_distribution": { + "NEGATIVE": 0.42857142857142855, + "POSITIVE": 0.5714285714285714 + }, + "sentiment_overall": [ + "POSITIVE", + 0.5714285714285714 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987015724182129, + 0.9988003969192505, + 0.9924775958061218, + 0.9989151954650879, + 0.9989098310470581, + 0.9989253878593445 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982553124427795, + 0.9986022114753723, + 0.9987651109695435, + 0.9976933598518372, + 0.9987019300460815, + 0.9987478256225586 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 0.7894736842105263, + "final_counts": { + "NEGATIVE": 4, + "POSITIVE": 15 + }, + "final_distribution": { + "NEGATIVE": 0.21052631578947367, + "POSITIVE": 0.7894736842105263 + } + } }, { "season_code": "202301", @@ -92101,7 +203448,7 @@ "9:00", "10:15", "HQ 129 - Humanities Quadrangle 129", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -92109,7 +203456,7 @@ "9:00", "10:15", "HQ 129 - Humanities Quadrangle 129", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -92121,10 +203468,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84800\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84800/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -92168,7 +203543,7 @@ "14:30", "15:45", "HQ C03 - Humanities Quadrangle C03", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -92176,7 +203551,7 @@ "14:30", "15:45", "HQ C03 - Humanities Quadrangle C03", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -92188,10 +203563,105 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83286\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83286/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988073110580444, + 0.998848557472229, + 0.9987161159515381, + 0.9988049268722534 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998894989490509, + 0.9967054724693298, + 0.9984285235404968, + 0.9988842606544495, + 0.9989232420921326, + 0.9984130859375 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987163543701172, + 0.9909997582435608, + 0.9967576861381531, + 0.9988337159156799 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 0.7857142857142857, + "final_counts": { + "POSITIVE": 11, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.7857142857142857, + "NEGATIVE": 0.21428571428571427 + } + } }, { "season_code": "202301", @@ -92229,7 +203699,7 @@ "11:35", "12:50", "BASSLB L71 - Bass Library L71", - "https:\/\/map.yale.edu\/?id=1910#!m\/564574" + "https://map.yale.edu/?id=1910#!m/564574" ] ], "Thursday": [ @@ -92237,7 +203707,7 @@ "11:35", "12:50", "BASSLB L71 - Bass Library L71", - "https:\/\/map.yale.edu\/?id=1910#!m\/564574" + "https://map.yale.edu/?id=1910#!m/564574" ] ] }, @@ -92249,10 +203719,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83856\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83856/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -92290,7 +203788,7 @@ "16:00", "17:15", "HQ 113 - Humanities Quadrangle 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -92298,7 +203796,7 @@ "16:00", "17:15", "HQ 113 - Humanities Quadrangle 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -92310,10 +203808,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83861\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83861/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -92356,7 +203882,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -92394,7 +203948,7 @@ "13:00", "14:50", "LEPH 115 - Laboratory of EPH 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ], "Friday": [ @@ -92402,7 +203956,7 @@ "13:00", "13:50", "LEPH 102 - Laboratory of EPH 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ] }, @@ -92416,10 +203970,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84994\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84994/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -92457,7 +204039,7 @@ "15:00", "16:50", "LEPH 101 - Laboratory of EPH 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ] }, @@ -92471,10 +204053,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84995\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84995/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -92512,7 +204122,7 @@ "13:00", "14:50", "LEPH WINSL - Laboratory of EPH WINSL", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ] }, @@ -92524,10 +204134,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86056\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86056/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -92564,7 +204202,7 @@ "12:00", "12:50", "CO47 106B - 47 College Street (CLP) 106B", - "https:\/\/map.yale.edu\/?id=1910#!m\/559997" + "https://map.yale.edu/?id=1910#!m/559997" ] ] }, @@ -92579,7 +204217,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -92617,7 +204283,7 @@ "10:00", "11:50", "LEPH 103 - Laboratory of EPH 103", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ] }, @@ -92631,10 +204297,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84996\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84996/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -92674,10 +204368,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86071\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86071/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -92714,7 +204436,7 @@ "13:00", "14:50", "LEPH 115 - Laboratory of EPH 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ] }, @@ -92726,10 +204448,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86072\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86072/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -92766,7 +204516,7 @@ "13:00", "14:50", "LEPH 115 - Laboratory of EPH 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ] }, @@ -92781,10 +204531,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86073\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86073/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -92822,7 +204600,7 @@ "10:00", "11:50", "LEPH 103 - Laboratory of EPH 103", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ] }, @@ -92834,10 +204612,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86074\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86074/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -92878,7 +204684,7 @@ "10:30", "11:50", "KRN 319 - Kroon Hall 319", - "https:\/\/map.yale.edu\/?id=1910#!m\/559995" + "https://map.yale.edu/?id=1910#!m/559995" ] ], "Wednesday": [ @@ -92886,7 +204692,7 @@ "10:30", "11:50", "KRN 319 - Kroon Hall 319", - "https:\/\/map.yale.edu\/?id=1910#!m\/559995" + "https://map.yale.edu/?id=1910#!m/559995" ] ] }, @@ -92898,10 +204704,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85874\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85874/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -92938,7 +204772,7 @@ "8:00", "9:50", "CO47 106A - 47 College Street (CLP) 106A", - "https:\/\/map.yale.edu\/?id=1910#!m\/559997" + "https://map.yale.edu/?id=1910#!m/559997" ] ] }, @@ -92952,10 +204786,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86075\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86075/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -92995,7 +204857,7 @@ "13:00", "14:50", "LEPH 108 - Laboratory of EPH 108", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ] }, @@ -93009,10 +204871,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86076\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86076/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -93049,7 +204939,7 @@ "10:00", "11:50", "LEPH 101 - Laboratory of EPH 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ] }, @@ -93063,10 +204953,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86077\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86077/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -93103,12 +205021,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is required of all EHS Ph.D. students during their first academic year. The research rotations are in EHS laboratories that are able to accommodate students. Research rotations are available for both \"dry\" (i.e., statistical analysis) and \"wet\" (i.e., bench) laboratory research groups. The student meets with the EHS graduate faculty member at the beginning of the rotation for an explanation of the goals and expectations of a student in the laboratory. The student becomes familiar with the research models, approaches, and methods utilized by the research group through interactions with other laboratory\/research personnel and from laboratory manuscripts. The student is expected to spend at least fifteen hours per week working in the laboratory or research group and to present a rotation seminar at the end of the rotation period.", + "description": "This course is required of all EHS Ph.D. students during their first academic year. The research rotations are in EHS laboratories that are able to accommodate students. Research rotations are available for both \"dry\" (i.e., statistical analysis) and \"wet\" (i.e., bench) laboratory research groups. The student meets with the EHS graduate faculty member at the beginning of the rotation for an explanation of the goals and expectations of a student in the laboratory. The student becomes familiar with the research models, approaches, and methods utilized by the research group through interactions with other laboratory/research personnel and from laboratory manuscripts. The student is expected to spend at least fifteen hours per week working in the laboratory or research group and to present a rotation seminar at the end of the rotation period.", "short_title": "Research Rotation", "title": "Research Rotation", "school": "PH", @@ -93146,7 +205092,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -93183,7 +205157,7 @@ "18:00", "20:00", "GR109 ROSENFELD - 109 Grove Street ROSENFELD", - "https:\/\/map.yale.edu\/?id=1910#!m\/560109" + "https://map.yale.edu/?id=1910#!m/560109" ] ], "Thursday": [ @@ -93191,7 +205165,7 @@ "18:00", "20:00", "GR109 ROSENFELD - 109 Grove Street ROSENFELD", - "https:\/\/map.yale.edu\/?id=1910#!m\/560109" + "https://map.yale.edu/?id=1910#!m/560109" ] ] }, @@ -93206,7 +205180,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -93243,7 +205245,7 @@ "16:00", "18:00", "DOW B-21 - Dow Hall B-21", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ] }, @@ -93258,7 +205260,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -93295,7 +205325,7 @@ "16:00", "18:00", "DOW 112 - Dow Hall 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ] }, @@ -93310,7 +205340,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -93347,7 +205405,7 @@ "18:00", "20:00", "DOW B-21 - Dow Hall B-21", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ] }, @@ -93362,12 +205420,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "(Intermediate\/high intermediate) This pronunciation course is designed to provide advanced level students with the tools they need to communicate clearly in English. The course focuses on the suprasegmental features of pronunciation: prominence, rhythm, and intonation as well as the discrete sounds of the English language. Using a communicative and interactive approach, the course provides extensive speaking practice that allows students to build their fluency, accuracy, and speaking confidence.", + "description": "(Intermediate/high intermediate) This pronunciation course is designed to provide advanced level students with the tools they need to communicate clearly in English. The course focuses on the suprasegmental features of pronunciation: prominence, rhythm, and intonation as well as the discrete sounds of the English language. Using a communicative and interactive approach, the course provides extensive speaking practice that allows students to build their fluency, accuracy, and speaking confidence.", "short_title": "Pronunciation 1", "title": "Pronunciation 1", "school": "GS", @@ -93399,7 +205485,7 @@ "10:45", "12:15", "DOW 215 - Dow Hall 215", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ], "Thursday": [ @@ -93407,7 +205493,7 @@ "10:45", "12:15", "DOW 215 - Dow Hall 215", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ] }, @@ -93419,15 +205505,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87115\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87115/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "(Intermediate\/high intermediate) This pronunciation course is designed to provide advanced level students with the tools they need to communicate clearly in English. The course focuses on the suprasegmental features of pronunciation: prominence, rhythm, and intonation as well as the discrete sounds of the English language. Using a communicative and interactive approach, the course provides extensive speaking practice that allows students to build their fluency, accuracy, and speaking confidence.", + "description": "(Intermediate/high intermediate) This pronunciation course is designed to provide advanced level students with the tools they need to communicate clearly in English. The course focuses on the suprasegmental features of pronunciation: prominence, rhythm, and intonation as well as the discrete sounds of the English language. Using a communicative and interactive approach, the course provides extensive speaking practice that allows students to build their fluency, accuracy, and speaking confidence.", "short_title": "Pronunciation 1", "title": "Pronunciation 1", "school": "GS", @@ -93459,7 +205573,7 @@ "8:00", "9:50", "LEPH 115 - Laboratory of EPH 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ], "Thursday": [ @@ -93467,7 +205581,7 @@ "8:00", "9:50", "LEPH 115 - Laboratory of EPH 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ] }, @@ -93479,15 +205593,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87137\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87137/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "(Intermediate\/high intermediate) This pronunciation course is designed to provide advanced level students with the tools they need to communicate clearly in English. The course focuses on the suprasegmental features of pronunciation: prominence, rhythm, and intonation as well as the discrete sounds of the English language. Using a communicative and interactive approach, the course provides extensive speaking practice that allows students to build their fluency, accuracy, and speaking confidence.", + "description": "(Intermediate/high intermediate) This pronunciation course is designed to provide advanced level students with the tools they need to communicate clearly in English. The course focuses on the suprasegmental features of pronunciation: prominence, rhythm, and intonation as well as the discrete sounds of the English language. Using a communicative and interactive approach, the course provides extensive speaking practice that allows students to build their fluency, accuracy, and speaking confidence.", "short_title": "Pronunciation 1", "title": "Pronunciation 1", "school": "GS", @@ -93519,7 +205661,7 @@ "8:00", "9:50", "EVANS 2230 - Edward P Evans Hall 2230", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Wednesday": [ @@ -93527,7 +205669,7 @@ "8:00", "9:50", "EVANS 2230 - Edward P Evans Hall 2230", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -93539,10 +205681,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87121\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87121/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -93579,7 +205749,7 @@ "16:00", "18:00", "DOW 112 - Dow Hall 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ], "Wednesday": [ @@ -93587,7 +205757,7 @@ "16:00", "18:00", "DOW 112 - Dow Hall 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ] }, @@ -93599,10 +205769,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87122\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87122/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -93639,7 +205837,7 @@ "18:00", "20:00", "DOW 112 - Dow Hall 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ], "Wednesday": [ @@ -93647,7 +205845,7 @@ "18:00", "20:00", "DOW 112 - Dow Hall 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ] }, @@ -93659,10 +205857,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87122\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87122/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -93699,7 +205925,7 @@ "16:00", "18:00", "DOW 215 - Dow Hall 215", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ], "Wednesday": [ @@ -93707,7 +205933,7 @@ "16:00", "18:00", "DOW 215 - Dow Hall 215", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ] }, @@ -93719,10 +205945,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87116\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87116/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -93759,7 +206013,7 @@ "18:00", "20:00", "DOW 215 - Dow Hall 215", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ], "Wednesday": [ @@ -93767,7 +206021,7 @@ "18:00", "20:00", "DOW 215 - Dow Hall 215", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ] }, @@ -93779,10 +206033,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87116\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87116/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -93819,7 +206101,7 @@ "8:30", "10:30", "DOW 215 - Dow Hall 215", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ], "Thursday": [ @@ -93827,7 +206109,7 @@ "8:30", "10:30", "DOW 215 - Dow Hall 215", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ] }, @@ -93839,10 +206121,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87118\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87118/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -93879,7 +206189,7 @@ "17:00", "19:00", "DOW B-21 - Dow Hall B-21", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ] }, @@ -93894,7 +206204,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -93931,7 +206269,7 @@ "8:30", "9:50", "CO47 106B - 47 College Street (CLP) 106B", - "https:\/\/map.yale.edu\/?id=1910#!m\/559997" + "https://map.yale.edu/?id=1910#!m/559997" ] ], "Thursday": [ @@ -93939,7 +206277,7 @@ "8:30", "9:50", "CO47 106B - 47 College Street (CLP) 106B", - "https:\/\/map.yale.edu\/?id=1910#!m\/559997" + "https://map.yale.edu/?id=1910#!m/559997" ] ] }, @@ -93953,10 +206291,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86080\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86080/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -93993,7 +206359,7 @@ "12:00", "12:50", "LEPH 115 - Laboratory of EPH 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ] }, @@ -94005,10 +206371,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86081\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86081/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -94048,7 +206442,7 @@ "8:00", "9:50", "LEPH 103 - Laboratory of EPH 103", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ] }, @@ -94064,10 +206458,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86082\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86082/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -94104,7 +206526,7 @@ "10:00", "11:20", "LEPH 115 - Laboratory of EPH 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ], "Thursday": [ @@ -94112,7 +206534,7 @@ "10:00", "11:20", "LEPH 115 - Laboratory of EPH 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ] }, @@ -94126,10 +206548,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86083\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86083/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -94166,7 +206616,7 @@ "10:00", "11:50", "LEPH 115 - Laboratory of EPH 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ] }, @@ -94180,10 +206630,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86084\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86084/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -94220,7 +206698,7 @@ "13:30", "14:50", "LEPH 103 - Laboratory of EPH 103", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ], "Wednesday": [ @@ -94228,7 +206706,7 @@ "13:30", "14:50", "LEPH 103 - Laboratory of EPH 103", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ] }, @@ -94243,10 +206721,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86085\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86085/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -94283,7 +206789,7 @@ "13:00", "14:50", "LEPH 101 - Laboratory of EPH 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ] }, @@ -94291,17 +206797,45 @@ "areas": [], "flags": [ "GB: Elective", - "PH: Global Health, Ethics\/Humanities\/History" + "PH: Global Health, Ethics/Humanities/History" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86086\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86086/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -94344,7 +206878,7 @@ "9:00", "10:15", "ESC 110 - Environmental Sciences Center 110", - "https:\/\/map.yale.edu\/?id=1910#!m\/560020" + "https://map.yale.edu/?id=1910#!m/560020" ] ], "Thursday": [ @@ -94352,7 +206886,7 @@ "9:00", "10:15", "ESC 110 - Environmental Sciences Center 110", - "https:\/\/map.yale.edu\/?id=1910#!m\/560020" + "https://map.yale.edu/?id=1910#!m/560020" ] ] }, @@ -94368,10 +206902,135 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83986\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83986/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9972192049026489, + 0.998807430267334, + 0.9986886382102966, + 0.9978384375572205, + 0.9989041090011597, + 0.9988611936569214, + 0.99888676404953, + 0.9980066418647766, + 0.9988403916358948, + 0.9986371397972107 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989226460456848, + 0.9989256262779236, + 0.9994869232177734, + 0.998843789100647, + 0.9989340901374817, + 0.998659610748291, + 0.9988831877708435, + 0.9985139966011047, + 0.9989125728607178 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.7777777777777778, + "NEGATIVE": 0.2222222222222222 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7777777777777778 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986080527305603, + 0.9988961219787598, + 0.9972487092018127, + 0.9985396862030029, + 0.9989063739776611, + 0.9989249110221863, + 0.99869304895401, + 0.9989124536514282, + 0.9989282488822937, + 0.9988740086555481 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 27, + "final_proportion": 0.9310344827586207, + "final_counts": { + "POSITIVE": 27, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9310344827586207, + "NEGATIVE": 0.06896551724137931 + } + } }, { "season_code": "202301", @@ -94408,7 +207067,7 @@ "15:00", "16:20", "CO47 106A - 47 College Street (CLP) 106A", - "https:\/\/map.yale.edu\/?id=1910#!m\/559997" + "https://map.yale.edu/?id=1910#!m/559997" ] ], "Thursday": [ @@ -94416,7 +207075,7 @@ "15:00", "16:20", "CO47 106A - 47 College Street (CLP) 106A", - "https:\/\/map.yale.edu\/?id=1910#!m\/559997" + "https://map.yale.edu/?id=1910#!m/559997" ] ] }, @@ -94430,10 +207089,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86087\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86087/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -94475,10 +207162,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86088\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86088/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -94517,7 +207232,7 @@ "13:00", "14:50", "LEPH 101 - Laboratory of EPH 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ] }, @@ -94525,7 +207240,7 @@ "areas": [], "flags": [ "GB: Elective", - "PH: Global Health, Development\/Political Economy", + "PH: Global Health, Development/Political Economy", "PH: Public Health Modeling", "YC GLHTH: Quantitative Data", "YC GLHTH: Polit Econ & Govern" @@ -94535,10 +207250,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83866\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83866/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -94575,12 +207318,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This pragmatic skills-building course aims to provide a mentored, guided structure for developing a significant research project and leads students through the steps of assembling a grant application following the NIH mechanism: either the predoctoral National Research Service Award (NRSA, F31) or the Exploratory\/Developmental Research Grant Award (R21). Students are provided detailed information on each aspect of NIH grants: fundamentals of good grant writing, general preparation of grant application (e.g., specific aims, research strategy, analysis of reviews, and strategies of rebuttal and reapplication), identifying study sections, program officers and scientific review officers (SROs), research strategy, and detailed descriptions of the different types of funding mechanisms. Students develop skills to objectively review an NIH grant proposal and write a scientific critique.", + "description": "This pragmatic skills-building course aims to provide a mentored, guided structure for developing a significant research project and leads students through the steps of assembling a grant application following the NIH mechanism: either the predoctoral National Research Service Award (NRSA, F31) or the Exploratory/Developmental Research Grant Award (R21). Students are provided detailed information on each aspect of NIH grants: fundamentals of good grant writing, general preparation of grant application (e.g., specific aims, research strategy, analysis of reviews, and strategies of rebuttal and reapplication), identifying study sections, program officers and scientific review officers (SROs), research strategy, and detailed descriptions of the different types of funding mechanisms. Students develop skills to objectively review an NIH grant proposal and write a scientific critique.", "short_title": "How to Develop, Write, and Ev...", "title": "How to Develop, Write, and Evaluate an NIH Proposal", "school": "PH", @@ -94612,7 +207383,7 @@ "10:00", "11:50", "LEPH 102 - Laboratory of EPH 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ] }, @@ -94624,10 +207395,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86091\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86091/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -94670,7 +207469,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -94708,7 +207535,7 @@ "10:30", "12:20", "LC 210 - Linsly-Chittenden Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -94723,10 +207550,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83958\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83958/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -94767,7 +207622,7 @@ "9:00", "10:15", "WLH 204 - William L. Harkness Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -94775,7 +207630,7 @@ "9:00", "10:15", "WLH 204 - William L. Harkness Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -94787,10 +207642,137 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85871\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85871/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9978925585746765, + 0.9988378882408142, + 0.9985920786857605, + 0.9988939166069031, + 0.9987210631370544, + 0.9984429478645325, + 0.9987871050834656, + 0.9976330995559692, + 0.9988744854927063, + 0.994478702545166 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9944429993629456, + 0.99294114112854, + 0.9989262223243713, + 0.99542635679245, + 0.9989266991615295, + 0.9988217949867249, + 0.9982560276985168, + 0.9989297986030579, + 0.9988956451416016, + 0.9878081679344177, + 0.9949482679367065 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8181818181818182, + "NEGATIVE": 0.18181818181818182 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8181818181818182 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.998847246170044, + 0.9886991381645203, + 0.998894989490509, + 0.9986215829849243, + 0.9987128973007202, + 0.9988466501235962, + 0.9988441467285156, + 0.9876899719238281, + 0.9980016350746155 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.7777777777777778, + "NEGATIVE": 0.2222222222222222 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7777777777777778 + ] + }, + "final_label": "POSITIVE", + "final_count": 26, + "final_proportion": 0.8666666666666667, + "final_counts": { + "POSITIVE": 26, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.8666666666666667, + "NEGATIVE": 0.13333333333333333 + } + } }, { "season_code": "202301", @@ -94829,7 +207811,7 @@ "11:35", "12:50", "PH 312 - Phelps Hall 312", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ], "Wednesday": [ @@ -94837,7 +207819,7 @@ "11:35", "12:50", "PH 312 - Phelps Hall 312", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -94849,10 +207831,105 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84336\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84336/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988656044006348, + 0.9987832903862, + 0.9987978935241699, + 0.9989200830459595 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988540410995483, + 0.9989290833473206, + 0.9922224879264832, + 0.9976073503494263 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989340901374817, + 0.9985816478729248, + 0.9989292025566101, + 0.9989141225814819, + 0.9989105463027954, + 0.9988665580749512 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 0.9285714285714286, + "final_counts": { + "POSITIVE": 13, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9285714285714286, + "NEGATIVE": 0.07142857142857142 + } + } }, { "season_code": "202301", @@ -94890,10 +207967,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84492\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84492/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -94932,7 +208037,7 @@ "15:30", "17:20", "HQ 109 - Humanities Quadrangle 109", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -94944,15 +208049,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84200\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84200/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "What is the nature of the \"early modern\" as a temporal, conceptual, and socio-political category in humanistic study? How did it emerge as an interdisciplinary framework and how does it relate to concepts of the medieval, the Renaissance, classicism, and modernity? Can \"early modern\" be usefully deployed to speak of non-Western geographic and political formations,and, if not, why?\u00a0Broadly focused on the historical period between 1350 and 1800, this seminar considers the many transitions to modernity across the globe and explores how scholars across the disciplines have crafted narratives to highlight its significance. Taken over an entire academic year, as two half-credit courses, the workshop provides a historiographic, theoretical, and methodological introduction to key questions in the field through a dynamic engagement with a series of research presentations by scholars within and beyond Yale (must be taken concurrently with EMST 800a\/801b). Required for students in the combined degree in Early Modern Studies and meets on alternating Wednesdays.", + "description": "What is the nature of the \"early modern\" as a temporal, conceptual, and socio-political category in humanistic study? How did it emerge as an interdisciplinary framework and how does it relate to concepts of the medieval, the Renaissance, classicism, and modernity? Can \"early modern\" be usefully deployed to speak of non-Western geographic and political formations,and, if not, why?\u00a0Broadly focused on the historical period between 1350 and 1800, this seminar considers the many transitions to modernity across the globe and explores how scholars across the disciplines have crafted narratives to highlight its significance. Taken over an entire academic year, as two half-credit courses, the workshop provides a historiographic, theoretical, and methodological introduction to key questions in the field through a dynamic engagement with a series of research presentations by scholars within and beyond Yale (must be taken concurrently with EMST 800a/801b). Required for students in the combined degree in Early Modern Studies and meets on alternating Wednesdays.", "short_title": "Workshop in Early Modern Studies", "title": "Workshop in Early Modern Studies", "school": "GS", @@ -94984,7 +208117,7 @@ "9:25", "11:15", "HQ 309 - Humanities Quadrangle 309", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -94996,10 +208129,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83871\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83871/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -95040,7 +208201,7 @@ "13:30", "15:20", "LORIA 360 - Loria Center 360", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -95052,10 +208213,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84273\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84273/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -95094,7 +208283,7 @@ "13:30", "15:20", "LORIA 360 - Loria Center 360", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -95106,15 +208295,22 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84281\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84281/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This year-long colloquium, taken as two half-credit courses, must be taken concurrently with EMST 700a\/701b. Students attend regular research presentations each semester by scholars within and beyond Yale, which will complement EMST 700. To be taken SAT\/UNSAT.", + "description": "This year-long colloquium, taken as two half-credit courses, must be taken concurrently with EMST 700a/701b. Students attend regular research presentations each semester by scholars within and beyond Yale, which will complement EMST 700. To be taken SAT/UNSAT.", "short_title": "Early Modern Colloquium", "title": "Early Modern Colloquium", "school": "GS", @@ -95152,7 +208348,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -95191,7 +208415,7 @@ "13:30", "15:20", "HQ 123 - Humanities Quadrangle 123", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -95206,10 +208430,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84269\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84269/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -95249,7 +208501,7 @@ "13:30", "15:20", "HQ 109 - Humanities Quadrangle 109", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -95261,10 +208513,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84498\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84498/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -95303,7 +208583,7 @@ "11:35", "12:50", "AKW 100 - Arthur K. Watson Hall 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560119" + "https://map.yale.edu/?id=1910#!m/560119" ] ], "Thursday": [ @@ -95311,7 +208591,7 @@ "11:35", "12:50", "AKW 100 - Arthur K. Watson Hall 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560119" + "https://map.yale.edu/?id=1910#!m/560119" ] ] }, @@ -95325,10 +208605,123 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83358\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83358/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998678982257843, + 0.9988253712654114, + 0.9981560111045837, + 0.9971610307693481, + 0.9988269209861755, + 0.9988566637039185, + 0.9987723231315613 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988560676574707, + 0.9994902610778809, + 0.9989180564880371, + 0.9987769722938538, + 0.9919111132621765, + 0.9988262057304382, + 0.998561441898346, + 0.9995086193084717 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.625, + "NEGATIVE": 0.375 + }, + "sentiment_overall": [ + "POSITIVE", + 0.625 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988988637924194, + 0.9988322854042053, + 0.9995063543319702, + 0.998895525932312, + 0.9987786412239075, + 0.9959132075309753, + 0.9984059929847717, + 0.9995064735412598 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 0.7391304347826086, + "final_counts": { + "POSITIVE": 17, + "NEGATIVE": 6 + }, + "final_distribution": { + "POSITIVE": 0.7391304347826086, + "NEGATIVE": 0.2608695652173913 + } + } }, { "season_code": "202301", @@ -95369,7 +208762,7 @@ "14:30", "15:45", "AKW 100 - Arthur K. Watson Hall 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560119" + "https://map.yale.edu/?id=1910#!m/560119" ] ], "Wednesday": [ @@ -95377,7 +208770,7 @@ "14:30", "15:45", "AKW 100 - Arthur K. Watson Hall 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560119" + "https://map.yale.edu/?id=1910#!m/560119" ] ] }, @@ -95395,10 +208788,129 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83363\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83363/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987213015556335, + 0.9988129138946533, + 0.9972946047782898, + 0.9988101720809937, + 0.998798131942749, + 0.9989086389541626, + 0.9989030361175537, + 0.9988982677459717, + 0.9988283514976501 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987598657608032, + 0.9988417029380798, + 0.973635733127594, + 0.9989319443702698, + 0.9908389449119568, + 0.9988753199577332, + 0.9980974793434143, + 0.998778760433197, + 0.9978864789009094 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989151954650879, + 0.9989174604415894, + 0.8070329427719116, + 0.9989311099052429, + 0.9989210367202759, + 0.9989100694656372, + 0.9988678693771362, + 0.9988464117050171 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "final_label": "POSITIVE", + "final_count": 24, + "final_proportion": 0.9230769230769231, + "final_counts": { + "POSITIVE": 24, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9230769230769231, + "NEGATIVE": 0.07692307692307693 + } + } }, { "season_code": "202301", @@ -95436,7 +208948,7 @@ "11:35", "12:50", "DAVIES AUD - Davies Auditorium, Becton Ctr AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ], "Thursday": [ @@ -95444,7 +208956,7 @@ "11:35", "12:50", "DAVIES AUD - Davies Auditorium, Becton Ctr AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ] }, @@ -95460,10 +208972,359 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83368\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83368/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989153146743774, + 0.9989057779312134, + 0.9988552331924438, + 0.9988993406295776, + 0.998871386051178, + 0.9988459348678589, + 0.998214840888977, + 0.9779897332191467, + 0.9989103078842163, + 0.9930235147476196, + 0.9989280104637146, + 0.9988728165626526, + 0.9988495111465454, + 0.9988757967948914, + 0.998918890953064, + 0.9983419179916382, + 0.9988262057304382, + 0.9988844990730286, + 0.9988765120506287, + 0.9982179999351501, + 0.9988070726394653, + 0.9988848567008972, + 0.9966233968734741, + 0.9984645843505859, + 0.9985353946685791, + 0.9970498085021973, + 0.9985270500183105, + 0.9819514751434326, + 0.99891197681427, + 0.9988985061645508, + 0.8832660913467407, + 0.998291552066803, + 0.9987541437149048, + 0.9989173412322998, + 0.9987418055534363, + 0.9986371397972107, + 0.9988548755645752, + 0.9987035989761353, + 0.9988677501678467, + 0.9988582134246826, + 0.9989109039306641, + 0.9987488985061646, + 0.9986473917961121, + 0.9987128973007202, + 0.9988698363304138, + 0.9987252354621887 + ], + "sentiment_counts": { + "POSITIVE": 43, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.9347826086956522, + "NEGATIVE": 0.06521739130434782 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9347826086956522 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988775849342346, + 0.998932421207428, + 0.988899290561676, + 0.9989232420921326, + 0.9989232420921326, + 0.9964659214019775, + 0.9978381991386414, + 0.9988033771514893, + 0.9988799691200256, + 0.9994600415229797, + 0.9989334940910339, + 0.9906508922576904, + 0.9995018243789673, + 0.9989122152328491, + 0.9986048340797424, + 0.9989216327667236, + 0.99886155128479, + 0.9970941543579102, + 0.9989205598831177, + 0.998673677444458, + 0.9982043504714966, + 0.9979245662689209, + 0.9987924098968506, + 0.9084958434104919, + 0.9988961219787598, + 0.9978524446487427, + 0.992294192314148, + 0.9987964630126953, + 0.9989135265350342, + 0.9911216497421265, + 0.9989050626754761, + 0.9989114999771118, + 0.9988804459571838, + 0.9987297654151917, + 0.998788058757782, + 0.9981719255447388, + 0.9985281229019165, + 0.9989033937454224, + 0.9987635612487793, + 0.9988107681274414, + 0.9980893731117249, + 0.9988827109336853 + ], + "sentiment_counts": { + "POSITIVE": 33, + "NEGATIVE": 9 + }, + "sentiment_distribution": { + "POSITIVE": 0.7857142857142857, + "NEGATIVE": 0.21428571428571427 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7857142857142857 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988942742347717, + 0.998928964138031, + 0.9988741278648376, + 0.9994499087333679, + 0.9989076852798462, + 0.9989101886749268, + 0.9987014532089233, + 0.998714804649353, + 0.9988790154457092, + 0.9988957643508911, + 0.9994803071022034, + 0.9985325336456299, + 0.9972110390663147, + 0.9988357424736023, + 0.9980121850967407, + 0.9988791346549988, + 0.998910665512085, + 0.9987541437149048, + 0.9913222789764404, + 0.9987654685974121, + 0.9988669157028198, + 0.9989138841629028, + 0.9989224672317505, + 0.9989211559295654, + 0.970970094203949, + 0.9981295466423035, + 0.9994320273399353, + 0.9994992017745972, + 0.9982553124427795, + 0.9994959831237793, + 0.9995076656341553, + 0.9987545013427734, + 0.9981772899627686, + 0.9989089965820312, + 0.9980016350746155, + 0.9988201260566711, + 0.9988518953323364, + 0.9989092350006104, + 0.998930037021637, + 0.9988184571266174, + 0.9983212351799011, + 0.9975237250328064, + 0.9933712482452393, + 0.9984159469604492, + 0.9988962411880493, + 0.9987118244171143, + 0.9988478422164917, + 0.9962424039840698, + 0.9994693398475647, + 0.9986588954925537, + 0.9987978935241699, + 0.998536229133606, + 0.9988275170326233 + ], + "sentiment_counts": { + "POSITIVE": 40, + "NEGATIVE": 13 + }, + "sentiment_distribution": { + "POSITIVE": 0.7547169811320755, + "NEGATIVE": 0.24528301886792453 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7547169811320755 + ] + }, + "final_label": "POSITIVE", + "final_count": 116, + "final_proportion": 0.8226950354609929, + "final_counts": { + "POSITIVE": 116, + "NEGATIVE": 25 + }, + "final_distribution": { + "POSITIVE": 0.8226950354609929, + "NEGATIVE": 0.1773049645390071 + } + } }, { "season_code": "202301", @@ -95528,10 +209389,165 @@ "classnotes": "", "final_exam": "Sunday, May 7, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83994\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83994/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988663196563721, + 0.9989081621170044, + 0.9986454844474792, + 0.9987214207649231, + 0.9985299110412598, + 0.9989011287689209, + 0.9983079433441162, + 0.9987536668777466, + 0.9989340901374817, + 0.998661994934082, + 0.9988478422164917, + 0.9974697828292847, + 0.9988365769386292, + 0.9987038373947144, + 0.9986253976821899 + ], + "sentiment_counts": { + "POSITIVE": 15, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989124536514282, + 0.9988973140716553, + 0.9987350106239319, + 0.9989373087882996, + 0.9989338517189026, + 0.9988065958023071, + 0.9994831085205078, + 0.9989172220230103, + 0.998552143573761, + 0.9989044666290283, + 0.9983583092689514, + 0.9989092350006104, + 0.9985435009002686 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9230769230769231, + "NEGATIVE": 0.07692307692307693 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9230769230769231 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987533092498779, + 0.998916745185852, + 0.998884379863739, + 0.9988935589790344, + 0.9989318251609802, + 0.9988724589347839, + 0.9977549910545349, + 0.9988429546356201, + 0.9976522326469421, + 0.9989226460456848, + 0.99893718957901, + 0.9989274144172668, + 0.9989112615585327, + 0.9988511800765991, + 0.9988698363304138, + 0.9968857169151306 + ], + "sentiment_counts": { + "POSITIVE": 15, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9375, + "NEGATIVE": 0.0625 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9375 + ] + }, + "final_label": "POSITIVE", + "final_count": 42, + "final_proportion": 0.9545454545454546, + "final_counts": { + "POSITIVE": 42, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9545454545454546, + "NEGATIVE": 0.045454545454545456 + } + } }, { "season_code": "202301", @@ -95568,7 +209584,7 @@ "9:00", "10:15", "ML 211 - Mason Laboratory 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ], "Wednesday": [ @@ -95576,7 +209592,7 @@ "9:00", "10:15", "ML 211 - Mason Laboratory 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ] }, @@ -95590,10 +209606,213 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83882\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83882/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986624717712402, + 0.9984033703804016, + 0.9983880519866943, + 0.9988603591918945, + 0.997468113899231, + 0.9979725480079651, + 0.9986737966537476, + 0.9837979674339294, + 0.9387121796607971, + 0.998852014541626, + 0.9988850951194763, + 0.998410701751709, + 0.9988613128662109, + 0.9976086616516113, + 0.9982365369796753, + 0.9980794191360474, + 0.9989039897918701, + 0.9988208413124084, + 0.9982921481132507, + 0.9988829493522644, + 0.9987121820449829, + 0.7938414216041565, + 0.998823344707489, + 0.9937260746955872 + ], + "sentiment_counts": { + "POSITIVE": 23, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9583333333333334, + "NEGATIVE": 0.041666666666666664 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9583333333333334 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994619488716125, + 0.9989162683486938, + 0.9988844990730286, + 0.9989230036735535, + 0.9799153208732605, + 0.9977686405181885, + 0.998569130897522, + 0.9987081289291382, + 0.9989171028137207, + 0.9989221096038818, + 0.9989306330680847, + 0.9993067979812622, + 0.9988975524902344, + 0.9984763264656067, + 0.9989245533943176, + 0.9988983869552612, + 0.9980534315109253, + 0.9988831877708435, + 0.998892605304718, + 0.9988856911659241, + 0.9989122152328491, + 0.9989299178123474, + 0.9989036321640015 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 20 + }, + "sentiment_distribution": { + "NEGATIVE": 0.13043478260869565, + "POSITIVE": 0.8695652173913043 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8695652173913043 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988498687744141, + 0.9988743662834167, + 0.9987812638282776, + 0.9989174604415894, + 0.9979017972946167, + 0.998077392578125, + 0.9963091015815735, + 0.9985530972480774, + 0.9988522529602051, + 0.9984672665596008, + 0.9988704323768616, + 0.998909592628479, + 0.9989140033721924, + 0.998892605304718, + 0.9989340901374817, + 0.998439610004425, + 0.9988201260566711, + 0.9971700310707092, + 0.998863935470581, + 0.998909592628479, + 0.9986224174499512 + ], + "sentiment_counts": { + "POSITIVE": 20, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9523809523809523, + "NEGATIVE": 0.047619047619047616 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9523809523809523 + ] + }, + "final_label": "POSITIVE", + "final_count": 63, + "final_proportion": 0.9264705882352942, + "final_counts": { + "POSITIVE": 63, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.9264705882352942, + "NEGATIVE": 0.07352941176470588 + } + } }, { "season_code": "202301", @@ -95632,7 +209851,7 @@ "11:35", "12:50", "WTS A51 - Watson Center 60 Sachem Street A51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -95640,7 +209859,7 @@ "11:35", "12:50", "WTS A51 - Watson Center 60 Sachem Street A51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -95654,10 +209873,179 @@ "classnotes": "textbook\n Calculus: Multivariable (ISBN 978-1-119-93781-4) \n", "final_exam": "Saturday, May 6, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83887\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83887/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984341263771057, + 0.9976792931556702, + 0.9989381432533264, + 0.99887615442276, + 0.7012736797332764, + 0.9988503456115723, + 0.9987236857414246, + 0.9981949925422668, + 0.9989223480224609, + 0.9943140745162964, + 0.9977756142616272, + 0.9839734435081482, + 0.9980827569961548, + 0.9980795383453369, + 0.9991384744644165, + 0.9988754391670227, + 0.9985950589179993 + ], + "sentiment_counts": { + "POSITIVE": 15, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8823529411764706, + "NEGATIVE": 0.11764705882352941 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8823529411764706 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9986124038696289, + 0.9983215928077698, + 0.9988666772842407, + 0.9989286065101624, + 0.9988422989845276, + 0.9987391829490662, + 0.9992073178291321, + 0.9987900853157043, + 0.9987670183181763, + 0.9988253712654114, + 0.9989181756973267, + 0.99882572889328, + 0.9976824522018433, + 0.6885560750961304, + 0.9988304972648621, + 0.9988489151000977, + 0.993559718132019 + ], + "sentiment_counts": { + "POSITIVE": 14, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.8235294117647058, + "NEGATIVE": 0.17647058823529413 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8235294117647058 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9710614085197449, + 0.9986631870269775, + 0.9994926452636719, + 0.9989053010940552, + 0.9989359974861145, + 0.9985585808753967, + 0.9983965754508972, + 0.988770604133606, + 0.9985834360122681, + 0.9987687468528748, + 0.997875452041626, + 0.9988200068473816, + 0.9988094568252563, + 0.9969737529754639, + 0.9983073472976685, + 0.9924652576446533, + 0.9940859079360962 + ], + "sentiment_counts": { + "POSITIVE": 14, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.8235294117647058, + "NEGATIVE": 0.17647058823529413 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8235294117647058 + ] + }, + "final_label": "POSITIVE", + "final_count": 43, + "final_proportion": 0.8431372549019608, + "final_counts": { + "POSITIVE": 43, + "NEGATIVE": 8 + }, + "final_distribution": { + "POSITIVE": 0.8431372549019608, + "NEGATIVE": 0.1568627450980392 + } + } }, { "season_code": "202301", @@ -95695,7 +210083,7 @@ "11:35", "12:50", "ML 211 - Mason Laboratory 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ], "Thursday": [ @@ -95703,7 +210091,7 @@ "11:35", "12:50", "ML 211 - Mason Laboratory 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ] }, @@ -95717,10 +210105,259 @@ "classnotes": "", "final_exam": "Monday, May 8, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83893\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83893/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9908725619316101, + 0.9981634020805359, + 0.9988418221473694, + 0.9994912147521973, + 0.9987603425979614, + 0.99866783618927, + 0.9986836314201355, + 0.9981167316436768, + 0.9950734972953796, + 0.9985313415527344, + 0.9982492923736572, + 0.9994109869003296, + 0.9939504861831665, + 0.9987788796424866, + 0.998478353023529, + 0.9944361448287964, + 0.9983538389205933, + 0.9972732663154602, + 0.9921776652336121, + 0.9994487166404724, + 0.9995098114013672, + 0.9962131977081299, + 0.9986760020256042, + 0.9986900687217712, + 0.9986729621887207, + 0.9984511137008667, + 0.9987616539001465, + 0.9926486611366272, + 0.9985912442207336, + 0.9994866847991943, + 0.9987529516220093 + ], + "sentiment_counts": { + "NEGATIVE": 9, + "POSITIVE": 22 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2903225806451613, + "POSITIVE": 0.7096774193548387 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7096774193548387 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9864892959594727, + 0.9979957342147827, + 0.9994332194328308, + 0.9995028972625732, + 0.9995096921920776, + 0.9995018243789673, + 0.9994839429855347, + 0.9899978041648865, + 0.9969835877418518, + 0.9963592886924744, + 0.999131977558136, + 0.9970347881317139, + 0.9988836646080017, + 0.998916745185852, + 0.9994747042655945, + 0.9982472658157349, + 0.998883068561554, + 0.987809419631958, + 0.9995090961456299, + 0.9986023306846619, + 0.9995021820068359, + 0.998913049697876, + 0.9989105463027954, + 0.9898220300674438, + 0.9992983341217041, + 0.9988215565681458, + 0.9853377342224121, + 0.9988719820976257 + ], + "sentiment_counts": { + "POSITIVE": 15, + "NEGATIVE": 13 + }, + "sentiment_distribution": { + "POSITIVE": 0.5357142857142857, + "NEGATIVE": 0.4642857142857143 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984349608421326, + 0.9980941414833069, + 0.9994509816169739, + 0.9992973804473877, + 0.9994997978210449, + 0.9409475922584534, + 0.9846077561378479, + 0.9948868155479431, + 0.9994990825653076, + 0.9960150122642517, + 0.9986887574195862, + 0.9831666350364685, + 0.999495267868042, + 0.9982333183288574, + 0.9967807531356812, + 0.9987943172454834, + 0.9987890124320984, + 0.999444305896759, + 0.9986403584480286, + 0.9983944296836853, + 0.9995028972625732, + 0.9991440773010254, + 0.9995090961456299, + 0.9988030195236206, + 0.9986432194709778, + 0.9983991980552673, + 0.9994781613349915, + 0.993513822555542, + 0.9961925745010376, + 0.9965425133705139, + 0.9994577765464783, + 0.9988124370574951 + ], + "sentiment_counts": { + "NEGATIVE": 17, + "POSITIVE": 15 + }, + "sentiment_distribution": { + "NEGATIVE": 0.53125, + "POSITIVE": 0.46875 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "final_label": "POSITIVE", + "final_count": 52, + "final_proportion": 0.5714285714285714, + "final_counts": { + "NEGATIVE": 39, + "POSITIVE": 52 + }, + "final_distribution": { + "NEGATIVE": 0.42857142857142855, + "POSITIVE": 0.5714285714285714 + } + } }, { "season_code": "202301", @@ -95761,7 +210398,7 @@ "9:25", "10:15", "BCT 107 - Becton Center 107", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ], "Wednesday": [ @@ -95769,7 +210406,7 @@ "9:25", "10:15", "BCT 107 - Becton Center 107", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ] }, @@ -95786,10 +210423,107 @@ "classnotes": "", "final_exam": "Saturday, May 6, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85847\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85847/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987597465515137, + 0.9987936019897461, + 0.9988266825675964, + 0.9986661672592163, + 0.9987438321113586 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9986975193023682, + 0.998866081237793, + 0.9988811612129211, + 0.9981797933578491, + 0.9991650581359863 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989345669746399, + 0.9989057779312134, + 0.998879611492157, + 0.998200535774231, + 0.998910665512085 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 0.9333333333333333, + "final_counts": { + "POSITIVE": 14, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9333333333333333, + "NEGATIVE": 0.06666666666666667 + } + } }, { "season_code": "202301", @@ -95827,7 +210561,7 @@ "14:30", "15:45", "WTS A48 - Watson Center 60 Sachem Street A48", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -95835,7 +210569,7 @@ "14:30", "15:45", "WTS A48 - Watson Center 60 Sachem Street A48", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -95849,10 +210583,121 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83423\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83423/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988947510719299, + 0.9987932443618774, + 0.998809814453125, + 0.998719334602356, + 0.9987905621528625, + 0.9988893866539001, + 0.9988131523132324 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989145994186401, + 0.9988975524902344, + 0.9988101720809937, + 0.9988850951194763, + 0.9989038705825806, + 0.9989362359046936, + 0.9989225268363953, + 0.9984689354896545 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989221096038818, + 0.9989355206489563, + 0.9988671541213989, + 0.9989014863967896, + 0.9989004135131836, + 0.9989354014396667, + 0.9966707825660706 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 21, + "final_proportion": 0.9545454545454546, + "final_counts": { + "POSITIVE": 21, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9545454545454546, + "NEGATIVE": 0.045454545454545456 + } + } }, { "season_code": "202301", @@ -95892,7 +210737,7 @@ "9:00", "10:15", "WLH 120 - William L. Harkness Hall 120", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -95900,7 +210745,7 @@ "9:00", "10:15", "WLH 120 - William L. Harkness Hall 120", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -95914,10 +210759,163 @@ "classnotes": "", "final_exam": "Tuesday, May 9, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84000\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84000/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9979950189590454, + 0.615541934967041, + 0.9988228678703308, + 0.9988138675689697, + 0.9988704323768616, + 0.998881995677948, + 0.9988383650779724, + 0.9994922876358032, + 0.9987836480140686, + 0.9987509250640869, + 0.9989140033721924, + 0.9989142417907715 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9934186935424805, + 0.9988797307014465, + 0.9986887574195862, + 0.9994482398033142, + 0.9982531666755676, + 0.9987189769744873, + 0.9988252520561218, + 0.994042694568634, + 0.998880922794342, + 0.997999370098114, + 0.9993979930877686, + 0.9995046854019165, + 0.9989185333251953, + 0.9866741895675659, + 0.999494194984436, + 0.9988957643508911 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 8 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9956783652305603, + 0.9987428784370422, + 0.9988299012184143, + 0.9982169270515442, + 0.9989100694656372, + 0.9975062012672424, + 0.9989068508148193, + 0.9989113807678223, + 0.9985276460647583, + 0.9989281296730042, + 0.9994916915893555, + 0.9989141225814819, + 0.9988870024681091, + 0.9988563060760498, + 0.9988686442375183 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 13 + }, + "sentiment_distribution": { + "NEGATIVE": 0.13333333333333333, + "POSITIVE": 0.8666666666666667 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8666666666666667 + ] + }, + "final_label": "POSITIVE", + "final_count": 31, + "final_proportion": 0.7209302325581395, + "final_counts": { + "POSITIVE": 31, + "NEGATIVE": 12 + }, + "final_distribution": { + "POSITIVE": 0.7209302325581395, + "NEGATIVE": 0.27906976744186046 + } + } }, { "season_code": "202301", @@ -95954,7 +210952,7 @@ "11:35", "12:50", "BCT 107 - Becton Center 107", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ], "Wednesday": [ @@ -95962,7 +210960,7 @@ "11:35", "12:50", "BCT 107 - Becton Center 107", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ] }, @@ -95974,14 +210972,131 @@ "classnotes": "", "final_exam": "Saturday, May 6, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83897\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83897/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "Basic algebra and introductory calculus. Should not be taken by students who have already completed or are enrolled in AMTH 431\/S&DS 431 or a more advanced course in optimization, or S&DS 238 or S&DS 240 or a more advanced course in probability.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985161423683167, + 0.9989075660705566, + 0.9989205598831177, + 0.9986660480499268, + 0.9987655878067017, + 0.9987660646438599, + 0.9989013671875 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9113298654556274, + 0.9778733253479004, + 0.998921275138855, + 0.9984764456748962, + 0.9987378716468811, + 0.9946237802505493, + 0.9986867308616638, + 0.9980356097221375 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998863935470581, + 0.9989352822303772, + 0.9989136457443237, + 0.9988425374031067, + 0.9989058971405029, + 0.9988742470741272, + 0.9985029697418213, + 0.998913049697876, + 0.9989054203033447, + 0.9982566237449646 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 24, + "final_proportion": 0.96, + "final_counts": { + "POSITIVE": 24, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.96, + "NEGATIVE": 0.04 + } + } + }, + { + "season_code": "202301", + "requirements": "Basic algebra and introductory calculus. Should not be taken by students who have already completed or are enrolled in AMTH 431/S&DS 431 or a more advanced course in optimization, or S&DS 238 or S&DS 240 or a more advanced course in probability.", "description": "Operations research (OR) is the science of decision making. Powerful software for formulating and solving OR models exists in the form of the Microsoft Excel spreadsheet package and its Solver Add-In. This class offers the opportunity to learn OR models in a class that emphasizes problem formulation, spreadsheet-based solution methods using Excel, and resulting insight. The actual mathematics of the various models employed are de-emphasized in favor of learning how to formulate and solve operations research problems. Models explored include linear programming, integer programming, network models, nonlinear programs, probability models, Markov chains, inventory models, and queueing models.", "short_title": "Introduction to Operations Re...", "title": "Introduction to Operations Research", @@ -96015,7 +211130,7 @@ "13:00", "14:20", "EVANS 4230 - Edward P Evans Hall 4230", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Wednesday": [ @@ -96023,7 +211138,7 @@ "13:00", "14:20", "EVANS 4230 - Edward P Evans Hall 4230", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -96039,10 +211154,91 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85522\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85522/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9494698643684387, + 0.9987672567367554 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 1 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989172220230103, + 0.9987138509750366 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988849759101868, + 0.9989050626754761, + 0.9985014200210571 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 0.8571428571428571, + "final_counts": { + "NEGATIVE": 1, + "POSITIVE": 6 + }, + "final_distribution": { + "NEGATIVE": 0.14285714285714285, + "POSITIVE": 0.8571428571428571 + } + } }, { "season_code": "202301", @@ -96081,7 +211277,7 @@ "13:00", "14:15", "WTS B31 - Watson Center 60 Sachem Street B31", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -96089,7 +211285,7 @@ "13:00", "14:15", "WTS B31 - Watson Center 60 Sachem Street B31", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -96101,14 +211297,87 @@ "classnotes": "", "final_exam": "Sunday, May 7, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87136\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87136/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "Prerequisites: physics and quantum mechanics\/physical chemistry courses for physical science and engineering majors, or by permission of instructor.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9955400824546814, + 0.9906514883041382 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987418055534363 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986652135848999 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 4, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 4 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } + }, + { + "season_code": "202301", + "requirements": "Prerequisites: physics and quantum mechanics/physical chemistry courses for physical science and engineering majors, or by permission of instructor.", "description": "Introduction to concepts of advanced x-ray and electron-based techniques used for understanding the electronic, structural, and chemical behavior of materials. Students learn from world-leading experts on fundamentals and practical applications of various diffraction, spectroscopy, and microscopy methods. Course highlights the use of synchrotrons in practical experiments.", "short_title": "Advanced Synchrotron Techniqu...", "title": "Advanced Synchrotron Techniques and Electron Spectroscopy of Materials", @@ -96145,7 +211414,7 @@ "13:30", "15:20", "BCT 408A - Becton Center 408A", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ] }, @@ -96161,10 +211430,93 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83386\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83386/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.980558454990387, + 0.9988019466400146, + 0.9935812950134277 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988067150115967, + 0.998853325843811, + 0.9988487958908081, + 0.9988963603973389 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998740017414093, + 0.9984889030456543 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 9 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -96201,7 +211553,7 @@ "9:00", "10:15", "WTS A30 - Watson Center 60 Sachem Street A30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -96209,7 +211561,7 @@ "9:00", "10:15", "WTS A30 - Watson Center 60 Sachem Street A30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -96221,10 +211573,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83901\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83901/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -96265,7 +211645,7 @@ "13:00", "14:15", "ML 211 - Mason Laboratory 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ], "Wednesday": [ @@ -96273,7 +211653,7 @@ "13:00", "14:15", "ML 211 - Mason Laboratory 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ] }, @@ -96285,15 +211665,284 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84865\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84865/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "", - "description": "Required of first-year students. Presentation and discussion of topics and best practices relevant to responsible conduct of research including academic fraud and misconduct, conflict of interest and conflict of commitment, data acquisition and human subjects, use and care of animals, publication practices and responsible authorship, mentor\/trainee responsibilities and peer review, and collaborative science.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9992075562477112, + 0.998089611530304, + 0.9984363913536072, + 0.9986252784729004, + 0.9986042380332947, + 0.9949446320533752, + 0.9896267652511597, + 0.9654321670532227, + 0.9972080588340759, + 0.9913358688354492, + 0.9931228756904602, + 0.9943450689315796, + 0.9957340359687805, + 0.9970738887786865, + 0.7170528769493103, + 0.9987829327583313, + 0.9984796643257141, + 0.9987836480140686, + 0.9934607744216919, + 0.9939693212509155, + 0.9985232949256897, + 0.99818354845047, + 0.9987327456474304, + 0.9944283962249756, + 0.9985114932060242, + 0.9974126219749451, + 0.9965142607688904, + 0.9988309741020203, + 0.9944962859153748, + 0.9976000189781189 + ], + "sentiment_counts": { + "NEGATIVE": 4, + "POSITIVE": 26 + }, + "sentiment_distribution": { + "NEGATIVE": 0.13333333333333333, + "POSITIVE": 0.8666666666666667 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8666666666666667 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994750618934631, + 0.9986365437507629, + 0.9991826415061951, + 0.9988372921943665, + 0.9995030164718628, + 0.9989519119262695, + 0.9994860887527466, + 0.9994958639144897, + 0.9995119571685791, + 0.9980810880661011, + 0.9989181756973267, + 0.9990677237510681, + 0.9972221851348877, + 0.9987633228302002, + 0.9988532066345215, + 0.9987863898277283, + 0.9911655783653259, + 0.9995070695877075, + 0.9987841248512268, + 0.9979895353317261, + 0.9986498951911926, + 0.9986023306846619, + 0.9986366629600525, + 0.9988486766815186, + 0.9988999366760254, + 0.9970904588699341, + 0.9981324076652527, + 0.9987800717353821, + 0.9988125562667847, + 0.993904173374176, + 0.9988242983818054, + 0.9984933137893677, + 0.981683611869812, + 0.9965178966522217, + 0.9988514184951782, + 0.9981138706207275, + 0.998134434223175 + ], + "sentiment_counts": { + "NEGATIVE": 16, + "POSITIVE": 21 + }, + "sentiment_distribution": { + "NEGATIVE": 0.43243243243243246, + "POSITIVE": 0.5675675675675675 + }, + "sentiment_overall": [ + "POSITIVE", + 0.5675675675675675 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9995031356811523, + 0.9989062547683716, + 0.9984586238861084, + 0.9968724846839905, + 0.9597945213317871, + 0.9988682270050049, + 0.9995098114013672, + 0.9986429810523987, + 0.9983055591583252, + 0.9983306527137756, + 0.9978960752487183, + 0.999506950378418, + 0.9982553124427795, + 0.998826801776886, + 0.9946483969688416, + 0.9837275743484497, + 0.9995023012161255, + 0.9897374510765076, + 0.9972172975540161, + 0.9936019778251648, + 0.989325761795044, + 0.9988495111465454, + 0.9981392621994019, + 0.9992881417274475, + 0.9968299269676208, + 0.9993577599525452, + 0.9968120455741882, + 0.9887654781341553, + 0.997117280960083, + 0.9992204904556274, + 0.9698554873466492, + 0.9987173080444336, + 0.9995046854019165, + 0.999488115310669 + ], + "sentiment_counts": { + "NEGATIVE": 13, + "POSITIVE": 21 + }, + "sentiment_distribution": { + "NEGATIVE": 0.38235294117647056, + "POSITIVE": 0.6176470588235294 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6176470588235294 + ] + }, + "final_label": "POSITIVE", + "final_count": 68, + "final_proportion": 0.6732673267326733, + "final_counts": { + "NEGATIVE": 33, + "POSITIVE": 68 + }, + "final_distribution": { + "NEGATIVE": 0.32673267326732675, + "POSITIVE": 0.6732673267326733 + } + } + }, + { + "season_code": "202301", + "requirements": "", + "description": "Required of first-year students. Presentation and discussion of topics and best practices relevant to responsible conduct of research including academic fraud and misconduct, conflict of interest and conflict of commitment, data acquisition and human subjects, use and care of animals, publication practices and responsible authorship, mentor/trainee responsibilities and peer review, and collaborative science.", "short_title": "Responsible Conduct of Research", "title": "Responsible Conduct of Research", "school": "GS", @@ -96328,10 +211977,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83906\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83906/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -96369,7 +212046,7 @@ "9:00", "10:15", "BCT CO31 - Becton Center CO31", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ], "Thursday": [ @@ -96377,7 +212054,7 @@ "9:00", "10:15", "BCT CO31 - Becton Center CO31", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ] }, @@ -96389,10 +212066,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83900\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83900/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -96432,7 +212137,7 @@ "18:00", "19:15", "BASS 405 - Bass Center 405", - "https:\/\/map.yale.edu\/?id=1910#!m\/560102" + "https://map.yale.edu/?id=1910#!m/560102" ] ], "Wednesday": [ @@ -96440,7 +212145,7 @@ "18:00", "19:15", "BASS 405 - Bass Center 405", - "https:\/\/map.yale.edu\/?id=1910#!m\/560102" + "https://map.yale.edu/?id=1910#!m/560102" ] ] }, @@ -96452,15 +212157,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84464\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84464/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "Required of first-year students in Chemical & Environmental Engineering, Electrical Engineering, and Mechanical Engineering & Materials Science. Presentation and discussion of topics and best practices relevant to responsible conduct of research including academic fraud and misconduct, conflict of interest and conflict of commitment, data acquisition and human subjects, use and care of animals, publication practices and responsible authorship, mentor\/trainee responsibilities and peer review, and collaborative science.", + "description": "Required of first-year students in Chemical & Environmental Engineering, Electrical Engineering, and Mechanical Engineering & Materials Science. Presentation and discussion of topics and best practices relevant to responsible conduct of research including academic fraud and misconduct, conflict of interest and conflict of commitment, data acquisition and human subjects, use and care of animals, publication practices and responsible authorship, mentor/trainee responsibilities and peer review, and collaborative science.", "short_title": "Responsible Conduct of Research", "title": "Responsible Conduct of Research", "school": "GS", @@ -96498,7 +212231,14 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -96540,7 +212280,7 @@ "16:00", "17:15", "BCT 107 - Becton Center 107", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ], "Wednesday": [ @@ -96548,7 +212288,7 @@ "16:00", "17:15", "BCT 107 - Becton Center 107", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ] }, @@ -96560,15 +212300,194 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83918\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83918/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "", - "description": "Teams of two to three students are paired to work on 3D medical innovation projects with biomedical engineering companies, industry leaders of personalized medicine.\u00a0This course serves as a potential \"route to employment\" by providing students with a year-long internship \/ \"internal interview\" with a biomedical technology company\u2019s engineering team.\u00a0These projects may involve the student developing novel software, hardware, manufacturing validations, medical devices, surgical instruments, or 3D printing modalities. This course is only open to graduate students enrolled in the M.S. in Personalized Medicine and Applied Engineering.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988884329795837, + 0.9987467527389526, + 0.9989126920700073, + 0.9988974332809448, + 0.9986911416053772, + 0.9987965822219849, + 0.9988775849342346, + 0.9987812638282776, + 0.9970787763595581, + 0.9988975524902344, + 0.9988909363746643, + 0.9984408020973206, + 0.9989093542098999, + 0.9988975524902344, + 0.9961948394775391, + 0.9988802075386047, + 0.9987797141075134, + 0.998815655708313, + 0.9989262223243713 + ], + "sentiment_counts": { + "POSITIVE": 19, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989058971405029, + 0.9989045858383179, + 0.992607831954956, + 0.99888676404953, + 0.9987735152244568, + 0.9989114999771118, + 0.9986045956611633, + 0.9987698197364807, + 0.9988709092140198, + 0.998856782913208, + 0.9994332194328308, + 0.9974697828292847, + 0.9844639897346497, + 0.9988527297973633, + 0.9988264441490173, + 0.9987998008728027, + 0.9989141225814819 + ], + "sentiment_counts": { + "POSITIVE": 15, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8823529411764706, + "NEGATIVE": 0.11764705882352941 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8823529411764706 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989001750946045, + 0.997817873954773, + 0.9988651275634766, + 0.9985816478729248, + 0.9989206790924072, + 0.9989334940910339, + 0.9988627433776855, + 0.9988340735435486, + 0.9989185333251953, + 0.9985446929931641, + 0.998915433883667, + 0.9988859295845032, + 0.998873770236969, + 0.9987025260925293, + 0.9988766312599182, + 0.998810887336731, + 0.9989173412322998, + 0.9988746047019958, + 0.9988998174667358, + 0.9989182949066162 + ], + "sentiment_counts": { + "POSITIVE": 20, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 54, + "final_proportion": 0.9642857142857143, + "final_counts": { + "POSITIVE": 54, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9642857142857143, + "NEGATIVE": 0.03571428571428571 + } + } + }, + { + "season_code": "202301", + "requirements": "", + "description": "Teams of two to three students are paired to work on 3D medical innovation projects with biomedical engineering companies, industry leaders of personalized medicine.\u00a0This course serves as a potential \"route to employment\" by providing students with a year-long internship / \"internal interview\" with a biomedical technology company\u2019s engineering team.\u00a0These projects may involve the student developing novel software, hardware, manufacturing validations, medical devices, surgical instruments, or 3D printing modalities. This course is only open to graduate students enrolled in the M.S. in Personalized Medicine and Applied Engineering.", "short_title": "Industry-Sponsored 3D Design ...", "title": "Industry-Sponsored 3D Design Project", "school": "GS", @@ -96600,12 +212519,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "Study of the interactions between tissues and biomaterials, with an emphasis on the importance of molecular- and cellular-level events in dictating the performance and longevity of clinically relevant devices. Attention to specific areas such as biomaterials for tissue engineering and the importance of stem\/progenitor cells, as well as biomaterial-mediated gene and drug delivery.", + "description": "Study of the interactions between tissues and biomaterials, with an emphasis on the importance of molecular- and cellular-level events in dictating the performance and longevity of clinically relevant devices. Attention to specific areas such as biomaterials for tissue engineering and the importance of stem/progenitor cells, as well as biomaterial-mediated gene and drug delivery.", "short_title": "Biomaterial-Tissue Interactions", "title": "Biomaterial-Tissue Interactions", "school": "GS", @@ -96639,7 +212586,7 @@ "9:00", "10:15", "GR109 ROSENFELD - 109 Grove Street ROSENFELD", - "https:\/\/map.yale.edu\/?id=1910#!m\/560109" + "https://map.yale.edu/?id=1910#!m/560109" ] ], "Thursday": [ @@ -96647,7 +212594,7 @@ "9:00", "10:15", "GR109 ROSENFELD - 109 Grove Street ROSENFELD", - "https:\/\/map.yale.edu\/?id=1910#!m\/560109" + "https://map.yale.edu/?id=1910#!m/560109" ] ] }, @@ -96659,10 +212606,173 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83398\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83398/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988099336624146, + 0.9987118244171143, + 0.9986279010772705, + 0.9936205744743347, + 0.9978612065315247, + 0.9986523985862732, + 0.9985289573669434, + 0.9988441467285156, + 0.9808270931243896, + 0.9985437393188477, + 0.9967505931854248, + 0.9986782670021057, + 0.9987407326698303, + 0.9986328482627869 + ], + "sentiment_counts": { + "POSITIVE": 14, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9994599223136902, + 0.9988892674446106, + 0.9988734126091003, + 0.9994027614593506, + 0.9968274235725403, + 0.997668445110321, + 0.9988721013069153, + 0.9988349080085754, + 0.998449444770813, + 0.9980111122131348, + 0.9911053776741028, + 0.9985089898109436, + 0.9983434677124023, + 0.9988825917243958, + 0.9987339377403259, + 0.9984373450279236, + 0.9994755387306213 + ], + "sentiment_counts": { + "NEGATIVE": 4, + "POSITIVE": 13 + }, + "sentiment_distribution": { + "NEGATIVE": 0.23529411764705882, + "POSITIVE": 0.7647058823529411 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7647058823529411 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9816270470619202, + 0.9989243149757385, + 0.9994673132896423, + 0.9975169897079468, + 0.9984714388847351, + 0.997117280960083, + 0.998829185962677, + 0.9989288449287415, + 0.9988935589790344, + 0.9995110034942627, + 0.9972569346427917, + 0.9987109899520874, + 0.9988420605659485, + 0.9988729357719421, + 0.9989044666290283, + 0.9988370537757874, + 0.9994608759880066 + ], + "sentiment_counts": { + "NEGATIVE": 4, + "POSITIVE": 13 + }, + "sentiment_distribution": { + "NEGATIVE": 0.23529411764705882, + "POSITIVE": 0.7647058823529411 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7647058823529411 + ] + }, + "final_label": "POSITIVE", + "final_count": 40, + "final_proportion": 0.8333333333333334, + "final_counts": { + "POSITIVE": 40, + "NEGATIVE": 8 + }, + "final_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + } + } }, { "season_code": "202301", @@ -96700,7 +212810,7 @@ "13:00", "14:15", "WTS A48 - Watson Center 60 Sachem Street A48", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -96708,7 +212818,7 @@ "13:00", "14:15", "WTS A48 - Watson Center 60 Sachem Street A48", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -96720,10 +212830,119 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83400\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83400/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9974295496940613, + 0.9976099729537964, + 0.9984604120254517, + 0.9984546899795532, + 0.9988836646080017, + 0.9904500842094421, + 0.9988289475440979, + 0.9968218803405762 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9948950409889221, + 0.9988282322883606, + 0.9984575510025024, + 0.9994239807128906, + 0.9982303977012634, + 0.9989176988601685, + 0.9988076686859131 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.7142857142857143, + "NEGATIVE": 0.2857142857142857 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7142857142857143 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9966024160385132, + 0.9988927245140076, + 0.999488115310669, + 0.9987666606903076, + 0.99893718957901, + 0.9987449645996094 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 0.8571428571428571, + "final_counts": { + "POSITIVE": 18, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + } + } }, { "season_code": "202301", @@ -96762,7 +212981,7 @@ "9:00", "10:15", "WTS A30 - Watson Center 60 Sachem Street A30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -96770,7 +212989,7 @@ "9:00", "10:15", "WTS A30 - Watson Center 60 Sachem Street A30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -96782,10 +213001,145 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83570\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83570/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982261061668396, + 0.9980424642562866, + 0.9987554550170898, + 0.9987717270851135, + 0.9987782835960388, + 0.9986363053321838, + 0.9986666440963745, + 0.9986757636070251, + 0.9988289475440979 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9934213757514954, + 0.998795747756958, + 0.9986681938171387, + 0.9494472742080688, + 0.9988514184951782, + 0.9989281296730042, + 0.9994989633560181, + 0.9988086223602295, + 0.9988332390785217, + 0.9986687898635864, + 0.9988106489181519, + 0.9955262541770935, + 0.9985602498054504, + 0.9986577033996582 + ], + "sentiment_counts": { + "NEGATIVE": 4, + "POSITIVE": 10 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2857142857142857, + "POSITIVE": 0.7142857142857143 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7142857142857143 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.999455988407135, + 0.9984502792358398, + 0.99607914686203, + 0.998892605304718, + 0.9921370148658752, + 0.9989142417907715, + 0.9995051622390747, + 0.9995021820068359, + 0.9994909763336182, + 0.998869001865387, + 0.9985986351966858 + ], + "sentiment_counts": { + "NEGATIVE": 6, + "POSITIVE": 5 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5454545454545454, + "POSITIVE": 0.45454545454545453 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "final_label": "POSITIVE", + "final_count": 24, + "final_proportion": 0.7058823529411765, + "final_counts": { + "POSITIVE": 24, + "NEGATIVE": 10 + }, + "final_distribution": { + "POSITIVE": 0.7058823529411765, + "NEGATIVE": 0.29411764705882354 + } + } }, { "season_code": "202301", @@ -96823,7 +213177,7 @@ "13:00", "14:15", "HLH17 03 - 17 Hillhouse Avenue 03", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Thursday": [ @@ -96831,7 +213185,7 @@ "13:00", "14:15", "HLH17 03 - 17 Hillhouse Avenue 03", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -96843,10 +213197,143 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83401\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83401/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986501336097717, + 0.9989213943481445, + 0.9988137483596802, + 0.9968516230583191, + 0.9988898634910583, + 0.9987149238586426, + 0.9987413287162781, + 0.99261075258255, + 0.9987421631813049, + 0.9988389611244202, + 0.9953122138977051 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989116191864014, + 0.9941645264625549, + 0.998934805393219, + 0.9988962411880493, + 0.9988152980804443, + 0.9988129138946533, + 0.9974353909492493, + 0.9989107847213745, + 0.9988219141960144, + 0.9988998174667358, + 0.9989352822303772 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989272952079773, + 0.9988431930541992, + 0.9989087581634521, + 0.9988929629325867, + 0.9989297986030579, + 0.9989004135131836, + 0.9979156851768494, + 0.9987726807594299, + 0.998414158821106, + 0.998832643032074, + 0.9989218711853027, + 0.998829185962677 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 34, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 34 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -96884,7 +213371,7 @@ "15:30", "17:20", "WTS A72 - Watson Center 60 Sachem Street A72", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -96896,10 +213383,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83403\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83403/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -96938,7 +213453,7 @@ "16:00", "17:15", "HLH17 05 - 17 Hillhouse Avenue 05", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Wednesday": [ @@ -96946,7 +213461,7 @@ "16:00", "17:15", "HLH17 05 - 17 Hillhouse Avenue 05", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -96958,10 +213473,87 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84547\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84547/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989162683486938, + 0.9983019828796387 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989301562309265, + 0.9987325072288513 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987786412239075, + 0.9987937211990356 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 6 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -97014,7 +213606,7 @@ "14:30", "15:45", "BASS 405 - Bass Center 405", - "https:\/\/map.yale.edu\/?id=1910#!m\/560102" + "https://map.yale.edu/?id=1910#!m/560102" ] ], "Thursday": [ @@ -97022,7 +213614,7 @@ "14:30", "15:45", "BASS 405 - Bass Center 405", - "https:\/\/map.yale.edu\/?id=1910#!m\/560102" + "https://map.yale.edu/?id=1910#!m/560102" ] ] }, @@ -97034,10 +213626,139 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84491\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84491/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988125562667847, + 0.9983453750610352, + 0.9986456036567688, + 0.9986985921859741, + 0.9977982044219971, + 0.9903422594070435, + 0.9986554384231567, + 0.9956871867179871, + 0.9983854293823242, + 0.9988418221473694, + 0.9961655139923096 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9090909090909091 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988546371459961, + 0.9924356341362, + 0.9994757771492004, + 0.998830258846283, + 0.9947176575660706, + 0.9983822107315063, + 0.9951450228691101, + 0.9986005425453186, + 0.9987438321113586, + 0.9995054006576538, + 0.9988664388656616 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.7272727272727273, + "NEGATIVE": 0.2727272727272727 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7272727272727273 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984412789344788, + 0.966108500957489, + 0.9989063739776611, + 0.9985975623130798, + 0.9945812821388245, + 0.9985987544059753, + 0.9927737712860107, + 0.9988572597503662, + 0.9988515377044678 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "final_label": "POSITIVE", + "final_count": 26, + "final_proportion": 0.8387096774193549, + "final_counts": { + "POSITIVE": 26, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.8387096774193549, + "NEGATIVE": 0.16129032258064516 + } + } }, { "season_code": "202301", @@ -97075,7 +213796,7 @@ "16:00", "17:15", "HLH17 113 - 17 Hillhouse Avenue 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Wednesday": [ @@ -97083,7 +213804,7 @@ "16:00", "17:15", "HLH17 113 - 17 Hillhouse Avenue 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -97095,10 +213816,93 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83408\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83408/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989023208618164, + 0.9985733032226562, + 0.9986081719398499, + 0.9970933198928833 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988765120506287, + 0.9596354365348816 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981922507286072, + 0.9981922507286072, + 0.997117280960083 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 9 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -97136,7 +213940,7 @@ "16:00", "17:15", "HLH17 115 - 17 Hillhouse Avenue 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Wednesday": [ @@ -97144,7 +213948,7 @@ "16:00", "17:15", "HLH17 115 - 17 Hillhouse Avenue 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -97156,10 +213960,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83411\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83411/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -97203,7 +214035,7 @@ "9:25", "10:15", "HLH17 115 - 17 Hillhouse Avenue 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Wednesday": [ @@ -97211,7 +214043,7 @@ "9:25", "10:15", "HLH17 115 - 17 Hillhouse Avenue 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Friday": [ @@ -97219,7 +214051,7 @@ "9:25", "10:15", "HLH17 115 - 17 Hillhouse Avenue 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -97231,15 +214063,126 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84506\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84506/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "", - "description": "The neuroenergetic and neurochemical basis of several dominant neuroimaging methods, including fMRI. Topics range from technical aspects of different methods to interpretation of the neuroimaging results. Controversies and\/or challenges for application of fMRI and related methods in medicine are identified.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983678460121155, + 0.9984408020973206, + 0.9988372921943665, + 0.9981305003166199, + 0.9989367127418518, + 0.9983301758766174 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989234805107117, + 0.9989125728607178, + 0.9988905787467957, + 0.9986975193023682, + 0.9995036125183105, + 0.9994183778762817, + 0.9880630373954773, + 0.9987654685974121 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989303946495056, + 0.9984606504440308, + 0.9988518953323364, + 0.9989318251609802, + 0.9987974166870117, + 0.9994534850120544, + 0.9988964796066284, + 0.9988728165626526 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 0.8636363636363636, + "final_counts": { + "POSITIVE": 19, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.8636363636363636, + "NEGATIVE": 0.13636363636363635 + } + } + }, + { + "season_code": "202301", + "requirements": "", + "description": "The neuroenergetic and neurochemical basis of several dominant neuroimaging methods, including fMRI. Topics range from technical aspects of different methods to interpretation of the neuroimaging results. Controversies and/or challenges for application of fMRI and related methods in medicine are identified.", "short_title": "Fundamentals of Neuroimaging", "title": "Fundamentals of Neuroimaging", "school": "GS", @@ -97279,7 +214222,7 @@ "15:30", "17:20", "WLH 116 - William L. Harkness Hall 116", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -97291,15 +214234,150 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83424\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83424/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "", - "description": "Aspects of computer-aided design and manufacture (CAD\/CAM). The computer\u2019s role in the mechanical design and manufacturing process; commercial tools for two- and three-dimensional drafting and assembly modeling; finite-element analysis software for modeling mechanical, thermal, and fluid systems.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984152317047119, + 0.9988691210746765, + 0.9983434677124023, + 0.9987943172454834, + 0.9988088607788086, + 0.9988570213317871, + 0.9988594055175781, + 0.9988573789596558, + 0.9988619089126587, + 0.9986060261726379, + 0.99543297290802 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.8711649179458618, + 0.9984152317047119, + 0.9917279481887817, + 0.9985619187355042, + 0.9985988736152649, + 0.9988551139831543, + 0.99378901720047, + 0.9988489151000977, + 0.9856882095336914, + 0.9988940358161926, + 0.998847246170044, + 0.9988923668861389, + 0.998746395111084 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 11 + }, + "sentiment_distribution": { + "NEGATIVE": 0.15384615384615385, + "POSITIVE": 0.8461538461538461 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8461538461538461 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984152317047119, + 0.99775630235672, + 0.9987223744392395, + 0.9987455606460571, + 0.9971369504928589, + 0.998694121837616, + 0.9964320659637451, + 0.9989017248153687, + 0.9987584352493286, + 0.9982553124427795 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 32, + "final_proportion": 0.9411764705882353, + "final_counts": { + "POSITIVE": 32, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9411764705882353, + "NEGATIVE": 0.058823529411764705 + } + } + }, + { + "season_code": "202301", + "requirements": "", + "description": "Aspects of computer-aided design and manufacture (CAD/CAM). The computer\u2019s role in the mechanical design and manufacturing process; commercial tools for two- and three-dimensional drafting and assembly modeling; finite-element analysis software for modeling mechanical, thermal, and fluid systems.", "short_title": "Computer-Aided Engineering", "title": "Computer-Aided Engineering", "school": "GS", @@ -97332,7 +214410,7 @@ "18:00", "19:15", "HLH17 111 - 17 Hillhouse Avenue 111", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Wednesday": [ @@ -97340,7 +214418,7 @@ "18:00", "19:15", "HLH17 111 - 17 Hillhouse Avenue 111", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -97352,10 +214430,233 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84541\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84541/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9979021549224854, + 0.9984152317047119, + 0.9988345503807068, + 0.9987831711769104, + 0.9981390237808228, + 0.9988539218902588, + 0.99873286485672, + 0.9988941550254822, + 0.9985862970352173, + 0.996218740940094, + 0.9985802173614502, + 0.9987216591835022, + 0.9972445964813232, + 0.9977554678916931, + 0.9986836314201355, + 0.9985400438308716, + 0.9988333582878113, + 0.9988574981689453, + 0.998829185962677, + 0.9988874793052673, + 0.9985870122909546, + 0.9988456964492798, + 0.9987114667892456, + 0.9988921284675598, + 0.9987586736679077, + 0.99892657995224, + 0.998484194278717 + ], + "sentiment_counts": { + "POSITIVE": 27, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.997462272644043, + 0.9984152317047119, + 0.9985368251800537, + 0.9989042282104492, + 0.9988822340965271, + 0.9988723397254944, + 0.998278021812439, + 0.9988717436790466, + 0.9989151954650879, + 0.9988203644752502, + 0.9989099502563477, + 0.9989169836044312, + 0.9988937973976135, + 0.9989283680915833, + 0.9988049268722534, + 0.9976050853729248, + 0.9988982677459717, + 0.9988874793052673, + 0.99891197681427, + 0.9988466501235962, + 0.9983129501342773, + 0.9989014863967896, + 0.9985935091972351, + 0.9989141225814819 + ], + "sentiment_counts": { + "POSITIVE": 23, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9583333333333334, + "NEGATIVE": 0.041666666666666664 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9583333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988445043563843, + 0.9984152317047119, + 0.9987937211990356, + 0.9985804557800293, + 0.9988837838172913, + 0.998755693435669, + 0.9987329840660095, + 0.998581051826477, + 0.9989287257194519, + 0.9988945126533508, + 0.9981608986854553, + 0.9988594055175781, + 0.9987664222717285, + 0.9987804293632507, + 0.9988569021224976, + 0.9988313317298889, + 0.9988206028938293, + 0.998593270778656, + 0.9987490177154541, + 0.9988874793052673, + 0.9989187717437744, + 0.9987678527832031, + 0.9988934397697449, + 0.9989295601844788, + 0.9989076852798462, + 0.998842179775238, + 0.9989207983016968 + ], + "sentiment_counts": { + "POSITIVE": 27, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 77, + "final_proportion": 0.9871794871794872, + "final_counts": { + "POSITIVE": 77, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9871794871794872, + "NEGATIVE": 0.01282051282051282 + } + } }, { "season_code": "202301", @@ -97392,7 +214693,7 @@ "9:00", "10:15", "BCT CO31 - Becton Center CO31", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ], "Wednesday": [ @@ -97400,7 +214701,7 @@ "9:00", "10:15", "BCT CO31 - Becton Center CO31", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ] }, @@ -97412,10 +214713,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83928\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83928/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -97452,7 +214781,7 @@ "14:30", "15:45", "WTS A46 - Watson Center 60 Sachem Street A46", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -97460,7 +214789,7 @@ "14:30", "15:45", "WTS A46 - Watson Center 60 Sachem Street A46", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -97472,10 +214801,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83932\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83932/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -97515,7 +214851,7 @@ "9:00", "10:15", "WLH 120 - William L. Harkness Hall 120", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -97523,7 +214859,7 @@ "9:00", "10:15", "WLH 120 - William L. Harkness Hall 120", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -97537,10 +214873,163 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84000\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84000/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9979950189590454, + 0.615541934967041, + 0.9988228678703308, + 0.9988138675689697, + 0.9988704323768616, + 0.998881995677948, + 0.9988383650779724, + 0.9994922876358032, + 0.9987836480140686, + 0.9987509250640869, + 0.9989140033721924, + 0.9989142417907715 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9934186935424805, + 0.9988797307014465, + 0.9986887574195862, + 0.9994482398033142, + 0.9982531666755676, + 0.9987189769744873, + 0.9988252520561218, + 0.994042694568634, + 0.998880922794342, + 0.997999370098114, + 0.9993979930877686, + 0.9995046854019165, + 0.9989185333251953, + 0.9866741895675659, + 0.999494194984436, + 0.9988957643508911 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 8 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9956783652305603, + 0.9987428784370422, + 0.9988299012184143, + 0.9982169270515442, + 0.9989100694656372, + 0.9975062012672424, + 0.9989068508148193, + 0.9989113807678223, + 0.9985276460647583, + 0.9989281296730042, + 0.9994916915893555, + 0.9989141225814819, + 0.9988870024681091, + 0.9988563060760498, + 0.9988686442375183 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 13 + }, + "sentiment_distribution": { + "NEGATIVE": 0.13333333333333333, + "POSITIVE": 0.8666666666666667 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8666666666666667 + ] + }, + "final_label": "POSITIVE", + "final_count": 31, + "final_proportion": 0.7209302325581395, + "final_counts": { + "POSITIVE": 31, + "NEGATIVE": 12 + }, + "final_distribution": { + "POSITIVE": 0.7209302325581395, + "NEGATIVE": 0.27906976744186046 + } + } }, { "season_code": "202301", @@ -97579,7 +215068,7 @@ "14:30", "15:45", "HLH17 05 - 17 Hillhouse Avenue 05", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Wednesday": [ @@ -97587,7 +215076,7 @@ "14:30", "15:45", "HLH17 05 - 17 Hillhouse Avenue 05", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -97601,15 +215090,116 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85231\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85231/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "", - "description": "The production and use of energy are among the most important sources of air pollution worldwide. It is impossible to effectively address the impacts and regulation of air quality without understanding the impacts and behavior of emissions from energy sources. Through an assessment of emissions and physical\/chemical processes, the course explores advanced topics (at the graduate level) on the behavior of pollutants from energy systems in the atmosphere. Topics include traditional and emerging energy technology, climate change, atmospheric aerosols, tropospheric ozone, as well as transport\/modeling\/mitigation.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987660646438599, + 0.994401752948761, + 0.997588038444519, + 0.9987271428108215, + 0.9943291544914246, + 0.9988089799880981 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985392093658447, + 0.9948831796646118, + 0.996239185333252, + 0.998918890953064, + 0.9989005327224731, + 0.9988734126091003 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9900023937225342, + 0.9981735944747925, + 0.9987284541130066, + 0.9989145994186401, + 0.9987632036209106 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.4, + "POSITIVE": 0.6 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 0.8235294117647058, + "final_counts": { + "POSITIVE": 14, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.8235294117647058, + "NEGATIVE": 0.17647058823529413 + } + } + }, + { + "season_code": "202301", + "requirements": "", + "description": "The production and use of energy are among the most important sources of air pollution worldwide. It is impossible to effectively address the impacts and regulation of air quality without understanding the impacts and behavior of emissions from energy sources. Through an assessment of emissions and physical/chemical processes, the course explores advanced topics (at the graduate level) on the behavior of pollutants from energy systems in the atmosphere. Topics include traditional and emerging energy technology, climate change, atmospheric aerosols, tropospheric ozone, as well as transport/modeling/mitigation.", "short_title": "Air Quality and Energy", "title": "Air Quality and Energy", "school": "GS", @@ -97642,7 +215232,7 @@ "11:35", "12:50", "HLH17 113 - 17 Hillhouse Avenue 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Wednesday": [ @@ -97650,7 +215240,7 @@ "11:35", "12:50", "HLH17 113 - 17 Hillhouse Avenue 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -97664,15 +215254,94 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84005\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84005/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "", - "description": "The purpose of this course is to introduce graduate students to state-of-the-art research in all areas of Mechanical Engineering & Materials Science (MEMS), as well as related disciplines, so that students understand the range of current research questions that are being addressed. An important goal is to encourage students to explore research topics beyond their particular field of study and develop the ability to contextualize their work in terms of larger research questions in MEMS. We therefore require that MEMS Ph.D. students enrolled in this course attend at least eight research seminars during the term: six must be part of the official MEMS seminar series, and two can be from any other relevant Yale graduate department\/program seminar series. This course is graded Sat\/Unsat with sign-in sheets used to monitor attendance. Required of first- and second-year MEMS Ph.D. students.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986818432807922, + 0.9930000305175781 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984623193740845, + 0.9988456964492798 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 1 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9727193117141724, + 0.9909674525260925 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 5, + "final_proportion": 0.8333333333333334, + "final_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + } + } + }, + { + "season_code": "202301", + "requirements": "", + "description": "The purpose of this course is to introduce graduate students to state-of-the-art research in all areas of Mechanical Engineering & Materials Science (MEMS), as well as related disciplines, so that students understand the range of current research questions that are being addressed. An important goal is to encourage students to explore research topics beyond their particular field of study and develop the ability to contextualize their work in terms of larger research questions in MEMS. We therefore require that MEMS Ph.D. students enrolled in this course attend at least eight research seminars during the term: six must be part of the official MEMS seminar series, and two can be from any other relevant Yale graduate department/program seminar series. This course is graded Sat/Unsat with sign-in sheets used to monitor attendance. Required of first- and second-year MEMS Ph.D. students.", "short_title": "Research Seminars in Mechanic...", "title": "Research Seminars in Mechanical Engineering & Materials Science", "school": "GS", @@ -97704,7 +215373,7 @@ "14:30", "15:30", "ML 107 - Mason Laboratory 107", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ] }, @@ -97719,7 +215388,14 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -97758,7 +215434,7 @@ "13:00", "14:15", "ML 104 - Mason Laboratory 104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ], "Thursday": [ @@ -97766,7 +215442,7 @@ "13:00", "14:15", "ML 104 - Mason Laboratory 104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ] }, @@ -97778,10 +215454,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86475\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86475/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -97822,7 +215526,7 @@ "13:30", "15:20", "BCT 408A - Becton Center 408A", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ] }, @@ -97834,10 +215538,93 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83386\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83386/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.980558454990387, + 0.9988019466400146, + 0.9935812950134277 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988067150115967, + 0.998853325843811, + 0.9988487958908081, + 0.9988963603973389 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998740017414093, + 0.9984889030456543 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 9 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -97876,7 +215663,7 @@ "13:00", "14:15", "WTS B31 - Watson Center 60 Sachem Street B31", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -97884,7 +215671,7 @@ "13:00", "14:15", "WTS B31 - Watson Center 60 Sachem Street B31", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -97896,10 +215683,83 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87136\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87136/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9955400824546814, + 0.9906514883041382 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987418055534363 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986652135848999 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 4, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 4 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -97937,7 +215797,7 @@ "11:35", "12:50", "WTS B74 - Watson Center 60 Sachem Street B74", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -97945,7 +215805,7 @@ "11:35", "12:50", "WTS B74 - Watson Center 60 Sachem Street B74", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -97957,10 +215817,103 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84558\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84558/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986799359321594, + 0.9986501336097717, + 0.9971542358398438, + 0.9961234927177429, + 0.998913049697876 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988012313842773, + 0.9989355206489563, + 0.9973846077919006 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9942479133605957, + 0.9989268183708191, + 0.991313636302948, + 0.9988246560096741, + 0.9985679388046265 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 0.9230769230769231, + "final_counts": { + "POSITIVE": 12, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9230769230769231, + "NEGATIVE": 0.07692307692307693 + } + } }, { "season_code": "202301", @@ -97998,7 +215951,7 @@ "13:00", "14:15", "HLH17 111 - 17 Hillhouse Avenue 111", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Wednesday": [ @@ -98006,7 +215959,7 @@ "13:00", "14:15", "HLH17 111 - 17 Hillhouse Avenue 111", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -98018,15 +215971,110 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83406\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83406/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9980886578559875, + 0.9988924860954285, + 0.9988449811935425, + 0.9916457533836365, + 0.9887624382972717 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989203214645386, + 0.9987576007843018, + 0.9988517761230469, + 0.9987911581993103 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998893678188324, + 0.998908281326294, + 0.9985602498054504, + 0.9988583326339722, + 0.9989097118377686 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 0.9285714285714286, + "final_counts": { + "POSITIVE": 13, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9285714285714286, + "NEGATIVE": 0.07142857142857142 + } + } }, { "season_code": "202301", "requirements": "Prerequisites: prior course work in solid mechanics and familiarity with MATLAB.", - "description": "This course covers topics including robot kinematics, elastic materials models, conductive composites, responsive material actuators, simple controllers, and physics-based soft robot simulation. The course also includes a project. Projects must involve theoretical modeling, design implementation, and\/or experimental testing of a scientific hypothesis, and must have a mechanics and\/or materials component.", + "description": "This course covers topics including robot kinematics, elastic materials models, conductive composites, responsive material actuators, simple controllers, and physics-based soft robot simulation. The course also includes a project. Projects must involve theoretical modeling, design implementation, and/or experimental testing of a scientific hypothesis, and must have a mechanics and/or materials component.", "short_title": "Introduction to Soft Robotics", "title": "Introduction to Soft Robotics", "school": "GS", @@ -98059,7 +216107,7 @@ "11:35", "12:50", "HLH17 115 - 17 Hillhouse Avenue 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Thursday": [ @@ -98067,7 +216115,7 @@ "11:35", "12:50", "HLH17 115 - 17 Hillhouse Avenue 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -98079,10 +216127,93 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83941\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83941/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988787770271301, + 0.9986740350723267, + 0.9989295601844788 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989222288131714, + 0.9988289475440979, + 0.9986863732337952 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989383816719055, + 0.9989123344421387, + 0.9989250302314758 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 9 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -98120,7 +216251,7 @@ "11:35", "12:50", "WTS A74 - Watson Center 60 Sachem Street A74", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -98128,7 +216259,7 @@ "11:35", "12:50", "WTS A74 - Watson Center 60 Sachem Street A74", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -98140,10 +216271,95 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84549\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84549/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9962852001190186, + 0.9984508752822876, + 0.9988389611244202 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9984775185585022, + 0.9988278746604919, + 0.999288022518158 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9987722039222717, + 0.9988266825675964, + 0.9989272952079773 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 0.7777777777777778, + "final_counts": { + "POSITIVE": 7, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.7777777777777778, + "NEGATIVE": 0.2222222222222222 + } + } }, { "season_code": "202301", @@ -98180,7 +216396,7 @@ "9:00", "10:15", "WTS B39 - Watson Center 60 Sachem Street B39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -98188,7 +216404,7 @@ "9:00", "10:15", "WTS B39 - Watson Center 60 Sachem Street B39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -98200,10 +216416,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85398\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85398/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -98242,7 +216486,7 @@ "13:00", "14:15", "HLH17 115 - 17 Hillhouse Avenue 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Wednesday": [ @@ -98250,7 +216494,7 @@ "13:00", "14:15", "HLH17 115 - 17 Hillhouse Avenue 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -98267,10 +216511,131 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83583\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83583/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982351064682007, + 0.9989233613014221, + 0.9986218214035034, + 0.9987925291061401, + 0.9988555908203125, + 0.995819091796875, + 0.9987886548042297, + 0.9989272952079773 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998798131942749, + 0.9989222288131714, + 0.9986710548400879, + 0.998903751373291, + 0.9988493919372559, + 0.9988844990730286, + 0.9986717700958252, + 0.9989041090011597, + 0.9988871216773987 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988312125205994, + 0.9986433386802673, + 0.9988918900489807, + 0.9978691339492798, + 0.9989333748817444, + 0.9978603720664978, + 0.9944349527359009, + 0.9989134073257446, + 0.9989190101623535, + 0.9989129304885864 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 26, + "final_proportion": 0.9629629629629629, + "final_counts": { + "POSITIVE": 26, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9629629629629629, + "NEGATIVE": 0.037037037037037035 + } + } }, { "season_code": "202301", @@ -98308,7 +216673,7 @@ "13:00", "14:15", "WTS A48 - Watson Center 60 Sachem Street A48", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -98316,7 +216681,7 @@ "13:00", "14:15", "WTS A48 - Watson Center 60 Sachem Street A48", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -98328,15 +216693,108 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83904\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83904/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986600875854492, + 0.9979197382926941, + 0.9988897442817688, + 0.9988118410110474, + 0.9989161491394043 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.99885094165802, + 0.9989323019981384, + 0.9988816380500793, + 0.9984868764877319 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989252686500549, + 0.9989262223243713, + 0.9989204406738281, + 0.9988493919372559, + 0.998748779296875 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 14 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", "requirements": "Prerequisites: Courses similar to CPSC 323, 223, and 202.\u00a0This is a programming-intensive course, so comfort with large programming projects is essential.", - "description": "This course offers a treatment of computer architectures for high-performance and power\/energy-efficient computer systems. Topics include the foundations of general-purpose computing, including instruction set architectures, pipelines, superscalar and out-of-order execution, speculation, support for precise exceptions, and simultaneous multi-threading. We also cover domain-specific hardware (e.g., graphics processing units), and ongoing industry efforts to elevate them to the status of first-class computing units. In tandem, we cover topics relevant to both general-purpose and domain-specific computing, including memory hierarchies, address translation and virtual memory, on-chip networks, machine learning techniques for resource management, and coherence techniques. If time permits, we study the basics of emerging non-classical computing paradigms like neuromorphic computing. Overall, this course offers insights on how the computing industry is combating the waning of traditional technology scaling via acceleration and heterogeneity.", + "description": "This course offers a treatment of computer architectures for high-performance and power/energy-efficient computer systems. Topics include the foundations of general-purpose computing, including instruction set architectures, pipelines, superscalar and out-of-order execution, speculation, support for precise exceptions, and simultaneous multi-threading. We also cover domain-specific hardware (e.g., graphics processing units), and ongoing industry efforts to elevate them to the status of first-class computing units. In tandem, we cover topics relevant to both general-purpose and domain-specific computing, including memory hierarchies, address translation and virtual memory, on-chip networks, machine learning techniques for resource management, and coherence techniques. If time permits, we study the basics of emerging non-classical computing paradigms like neuromorphic computing. Overall, this course offers insights on how the computing industry is combating the waning of traditional technology scaling via acceleration and heterogeneity.", "short_title": "Computer Architecture", "title": "Computer Architecture", "school": "GS", @@ -98371,7 +216829,7 @@ "13:00", "14:15", "HLH17 05 - 17 Hillhouse Avenue 05", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Wednesday": [ @@ -98379,7 +216837,7 @@ "13:00", "14:15", "HLH17 05 - 17 Hillhouse Avenue 05", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -98391,10 +216849,155 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83721\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83721/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982604384422302, + 0.9986782670021057, + 0.9970454573631287, + 0.9959930181503296, + 0.9987584352493286, + 0.9795193076133728, + 0.9988956451416016, + 0.9988253712654114, + 0.9978699684143066, + 0.9985839128494263, + 0.9417100548744202, + 0.9987838864326477 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.99887615442276, + 0.9988698363304138, + 0.9979227185249329, + 0.9987890124320984, + 0.9989078044891357, + 0.9857051372528076, + 0.9986310601234436, + 0.9984967708587646, + 0.9989223480224609, + 0.9989016056060791, + 0.9973451495170593, + 0.9964166879653931, + 0.9988887906074524 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.7692307692307693, + "NEGATIVE": 0.23076923076923078 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7692307692307693 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986953139305115, + 0.9988092184066772, + 0.9988666772842407, + 0.9989149570465088, + 0.998746395111084, + 0.9988855719566345, + 0.9950124621391296, + 0.9988293051719666, + 0.9988405108451843, + 0.9988589286804199, + 0.9987837672233582, + 0.9989293217658997, + 0.998904824256897, + 0.995049774646759 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9285714285714286, + "NEGATIVE": 0.07142857142857142 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9285714285714286 + ] + }, + "final_label": "POSITIVE", + "final_count": 35, + "final_proportion": 0.8974358974358975, + "final_counts": { + "POSITIVE": 35, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.8974358974358975, + "NEGATIVE": 0.10256410256410256 + } + } }, { "season_code": "202301", @@ -98435,7 +217038,7 @@ "11:35", "12:50", "BCT 408A - Becton Center 408A", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ], "Wednesday": [ @@ -98443,7 +217046,7 @@ "11:35", "12:50", "BCT 408A - Becton Center 408A", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ] }, @@ -98455,15 +217058,92 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83383\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83383/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "", - "description": "The functionality and performance of today's computer system is increasingly dependent on the characteristics of the memory components.\u00a0This course covers the semiconductor memory technologies from the device bit-cell structures to the memory array design with an emphasis on the industry trend and cutting-edge technologies. The first part of the course discusses the mainstream semiconductor memory technologies that enable various levels in the memory hierarchy, including SRAM, DRAM, and NAND FLASH. Issues such as basic operation principles, device physics, manufacturing processes, bit-cell design considerations, array architectures and technology scaling trends are discussed. The second part of the course discusses the emerging memory candidates that may have the potential to change the memory hierarchy, including MRAM, PCM, RRAM and FeFET\/FeRAM, as well as their new applications beyond the conventional applications, including reconfigurable logic, non-volatile logic, compute-in-memory, deep learning accelerators.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9919009804725647, + 0.9978255033493042 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986433386802673, + 0.9989079236984253 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981049299240112, + 0.9987448453903198 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 6 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } + }, + { + "season_code": "202301", + "requirements": "", + "description": "The functionality and performance of today's computer system is increasingly dependent on the characteristics of the memory components.\u00a0This course covers the semiconductor memory technologies from the device bit-cell structures to the memory array design with an emphasis on the industry trend and cutting-edge technologies. The first part of the course discusses the mainstream semiconductor memory technologies that enable various levels in the memory hierarchy, including SRAM, DRAM, and NAND FLASH. Issues such as basic operation principles, device physics, manufacturing processes, bit-cell design considerations, array architectures and technology scaling trends are discussed. The second part of the course discusses the emerging memory candidates that may have the potential to change the memory hierarchy, including MRAM, PCM, RRAM and FeFET/FeRAM, as well as their new applications beyond the conventional applications, including reconfigurable logic, non-volatile logic, compute-in-memory, deep learning accelerators.", "short_title": "Special Topics in Computer Sy...", "title": "Special Topics in Computer Systems", "school": "GS", @@ -98495,7 +217175,7 @@ "11:35", "12:50", "BCT CO31 - Becton Center CO31", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ], "Wednesday": [ @@ -98503,7 +217183,7 @@ "11:35", "12:50", "BCT CO31 - Becton Center CO31", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ] }, @@ -98515,10 +217195,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87316\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87316/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -98556,7 +217264,7 @@ "14:30", "15:45", "HLH17 03 - 17 Hillhouse Avenue 03", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Thursday": [ @@ -98564,7 +217272,7 @@ "14:30", "15:45", "HLH17 03 - 17 Hillhouse Avenue 03", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -98576,10 +217284,81 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83913\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83913/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984431862831116 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981557726860046 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9946463704109192 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 3, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 3 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -98616,7 +217395,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -98662,7 +217469,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -98700,7 +217535,7 @@ "13:00", "14:15", "BCT CO31 - Becton Center CO31", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ], "Wednesday": [ @@ -98708,7 +217543,7 @@ "13:00", "14:15", "BCT CO31 - Becton Center CO31", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ], "Friday": [ @@ -98716,7 +217551,7 @@ "10:30", "13:30", "", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ] }, @@ -98728,10 +217563,181 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84538\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84538/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988817572593689, + 0.998762845993042, + 0.9984331727027893, + 0.9986935257911682, + 0.9972537159919739, + 0.9979208111763, + 0.9903580546379089, + 0.9985890984535217, + 0.9985009431838989, + 0.9986076951026917, + 0.9994681477546692, + 0.9982275366783142, + 0.9980060458183289, + 0.9987364411354065, + 0.9927500486373901, + 0.9990290403366089 + ], + "sentiment_counts": { + "POSITIVE": 14, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9994786381721497, + 0.9986916184425354, + 0.9925663471221924, + 0.9965478777885437, + 0.9968634843826294, + 0.9359337687492371, + 0.9977951049804688, + 0.998127281665802, + 0.998809814453125, + 0.9976143836975098, + 0.9988644123077393, + 0.9987590312957764, + 0.9987120628356934, + 0.9994983673095703, + 0.9987345337867737, + 0.998688280582428, + 0.997938334941864, + 0.9991878867149353, + 0.9995075464248657 + ], + "sentiment_counts": { + "NEGATIVE": 9, + "POSITIVE": 10 + }, + "sentiment_distribution": { + "NEGATIVE": 0.47368421052631576, + "POSITIVE": 0.5263157894736842 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9928223490715027, + 0.9980202913284302, + 0.9950602650642395, + 0.9908508658409119, + 0.9983383417129517, + 0.9979522228240967, + 0.9988338351249695, + 0.9980877041816711, + 0.9924547672271729, + 0.9987401366233826, + 0.9984676241874695, + 0.9995110034942627, + 0.9988934397697449, + 0.9719647765159607, + 0.9879150390625, + 0.9987491369247437, + 0.9995070695877075 + ], + "sentiment_counts": { + "POSITIVE": 14, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.8235294117647058, + "NEGATIVE": 0.17647058823529413 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8235294117647058 + ] + }, + "final_label": "POSITIVE", + "final_count": 38, + "final_proportion": 0.7307692307692307, + "final_counts": { + "POSITIVE": 38, + "NEGATIVE": 14 + }, + "final_distribution": { + "POSITIVE": 0.7307692307692307, + "NEGATIVE": 0.2692307692307692 + } + } }, { "season_code": "202301", @@ -98770,7 +217776,7 @@ "11:35", "12:50", "LC 204 - Linsly-Chittenden Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -98778,7 +217784,7 @@ "11:35", "12:50", "LC 204 - Linsly-Chittenden Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -98789,17 +217795,112 @@ "Hu" ], "flags": [ - "YC English: 20th\/21st Century" + "YC English: 20th/21st Century" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83859\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83859/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989272952079773, + 0.9987183809280396, + 0.9989292025566101, + 0.9988992214202881, + 0.998879611492157 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989216327667236, + 0.9989234805107117, + 0.9988752007484436, + 0.9988736510276794, + 0.9988607168197632 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989120960235596, + 0.9989216327667236, + 0.998894989490509, + 0.9989330172538757, + 0.9989041090011597 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 15 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -98838,7 +217939,7 @@ "14:30", "15:45", "LC 105 - Linsly-Chittenden Hall 105", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -98846,7 +217947,7 @@ "14:30", "15:45", "LC 105 - Linsly-Chittenden Hall 105", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -98856,17 +217957,136 @@ ], "flags": [ "YC AMST: First-Year Sem", - "YC English: 18th\/19th Century " + "YC English: 18th/19th Century " ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83864\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83864/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989175796508789, + 0.9986910223960876, + 0.9987429976463318, + 0.9987626075744629, + 0.9989041090011597, + 0.9988994598388672, + 0.9988794922828674, + 0.9988011121749878, + 0.9988583326339722 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994024038314819, + 0.9987537860870361, + 0.9988158941268921, + 0.9989157915115356, + 0.9971063733100891, + 0.9989058971405029, + 0.9981903433799744, + 0.9989369511604309, + 0.9986433386802673 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 7 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2222222222222222, + "POSITIVE": 0.7777777777777778 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7777777777777778 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988930821418762, + 0.9988705515861511, + 0.998765230178833, + 0.998934805393219, + 0.9980506896972656, + 0.9988742470741272, + 0.9988773465156555, + 0.9989223480224609 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 24, + "final_proportion": 0.9230769230769231, + "final_counts": { + "POSITIVE": 24, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9230769230769231, + "NEGATIVE": 0.07692307692307693 + } + } }, { "season_code": "202301", @@ -98898,7 +218118,7 @@ "Hu" ], "flags": [ - "YC English: 20th\/21st Century" + "YC English: 20th/21st Century" ], "regnotes": "", "rp_attr": "", @@ -98908,7 +218128,35 @@ "syllabus_url": "", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -98946,7 +218194,7 @@ "9:00", "10:15", "WALL81 201 - 81 Wall Street 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ], "Thursday": [ @@ -98954,7 +218202,7 @@ "9:00", "10:15", "WALL81 201 - 81 Wall Street 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -98965,17 +218213,148 @@ "Hu" ], "flags": [ - "YC English: 20th\/21st Century" + "YC English: 20th/21st Century" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85693\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85693/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986006617546082, + 0.9987785220146179, + 0.9988621473312378, + 0.9988322854042053, + 0.9982118606567383, + 0.9988395571708679, + 0.9861804842948914, + 0.9986314177513123, + 0.9987465143203735, + 0.9988929629325867, + 0.9989351630210876 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988524913787842, + 0.9987836480140686, + 0.9978904128074646, + 0.9989093542098999, + 0.998837411403656, + 0.9989245533943176, + 0.9988868832588196, + 0.9986953139305115, + 0.998927652835846, + 0.9989042282104492, + 0.9988539218902588 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989150762557983, + 0.9988399147987366, + 0.9981381893157959, + 0.9984466433525085, + 0.9989060163497925, + 0.9989049434661865, + 0.9988247752189636, + 0.9988698363304138, + 0.9988956451416016, + 0.998932421207428, + 0.9989375472068787 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 33, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 33 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -99013,7 +218392,7 @@ "19:00", "21:00", "HQ 127 - Humanities Quadrangle 127", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Tuesday": [ @@ -99021,7 +218400,7 @@ "13:30", "15:20", "SML 118A - Sterling Memorial Library 118A", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -99032,17 +218411,144 @@ "Hu" ], "flags": [ - "YC English: 20th\/21st Century" + "YC English: 20th/21st Century" ], "regnotes": "", "rp_attr": "This course meets during the Reading Period: the week between the last week of classes and finals week. Meets Reading Period", "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84293\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84293/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998853325843811, + 0.998938262462616, + 0.997179388999939, + 0.9989060163497925, + 0.9989033937454224, + 0.9988340735435486, + 0.9986996650695801, + 0.9988929629325867, + 0.9988765120506287, + 0.9988468885421753 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989020824432373, + 0.9989257454872131, + 0.998895525932312, + 0.9988946318626404, + 0.9987049102783203, + 0.998893678188324, + 0.9988862872123718, + 0.9988811612129211, + 0.9989043474197388, + 0.998914361000061 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998892605304718, + 0.9988548755645752, + 0.9989206790924072, + 0.9988852143287659, + 0.9987719655036926, + 0.9989292025566101, + 0.9989244341850281, + 0.9988779425621033, + 0.9989367127418518, + 0.9988836646080017, + 0.9989151954650879 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 31, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 31 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -99080,7 +218586,7 @@ "13:00", "14:15", "PH 312 - Phelps Hall 312", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ], "Thursday": [ @@ -99088,7 +218594,7 @@ "13:00", "14:15", "PH 312 - Phelps Hall 312", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -99100,17 +218606,132 @@ ], "flags": [ "YC CLSS: Hist, Phil, Art, Arcg", - "YC English: 18th\/19th Century " + "YC English: 18th/19th Century " ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85292\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85292/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987068176269531, + 0.9988868832588196, + 0.9984763264656067, + 0.9989318251609802, + 0.9988767504692078, + 0.9987871050834656, + 0.9988489151000977, + 0.9988705515861511 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986646175384521, + 0.9989030361175537, + 0.9904860854148865, + 0.9989287257194519, + 0.9988309741020203, + 0.9989089965820312, + 0.9988657236099243, + 0.9987233281135559 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989219903945923, + 0.9988621473312378, + 0.9989076852798462, + 0.9988928437232971, + 0.9988756775856018, + 0.9954828023910522, + 0.9955392479896545, + 0.9988241791725159 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 23, + "final_proportion": 0.9583333333333334, + "final_counts": { + "POSITIVE": 23, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9583333333333334, + "NEGATIVE": 0.041666666666666664 + } + } }, { "season_code": "202301", @@ -99147,7 +218768,7 @@ "9:00", "10:15", "LC 208 - Linsly-Chittenden Hall 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -99155,7 +218776,7 @@ "9:00", "10:15", "LC 208 - Linsly-Chittenden Hall 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -99169,10 +218790,135 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83920\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83920/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9969406127929688, + 0.9989333748817444, + 0.998752236366272, + 0.99750155210495, + 0.9988372921943665, + 0.9988688826560974, + 0.9989175796508789, + 0.9988916516304016, + 0.9989252686500549 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989176988601685, + 0.9989182949066162, + 0.9988572597503662, + 0.9989367127418518, + 0.9988558292388916, + 0.9988114833831787, + 0.9989116191864014, + 0.9989122152328491, + 0.9986466765403748, + 0.9989103078842163 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988138675689697, + 0.9987878203392029, + 0.9987279772758484, + 0.9988880753517151, + 0.998832643032074, + 0.9986026883125305, + 0.9988903403282166, + 0.9983214735984802, + 0.99892657995224, + 0.9981753826141357, + 0.9988383650779724 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 30, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 30 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -99209,7 +218955,7 @@ "11:35", "12:50", "LC 208 - Linsly-Chittenden Hall 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -99217,7 +218963,7 @@ "11:35", "12:50", "LC 208 - Linsly-Chittenden Hall 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -99231,10 +218977,99 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83924\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83924/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9995023012161255, + 0.9988247752189636, + 0.9989192485809326, + 0.9988816380500793 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.25, + "POSITIVE": 0.75 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994632601737976, + 0.9989363551139832, + 0.9989145994186401 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9937505125999451, + 0.998893678188324, + 0.9989379048347473, + 0.9988792538642883 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.25, + "POSITIVE": 0.75 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 8, + "final_proportion": 0.7272727272727273, + "final_counts": { + "NEGATIVE": 3, + "POSITIVE": 8 + }, + "final_distribution": { + "NEGATIVE": 0.2727272727272727, + "POSITIVE": 0.7272727272727273 + } + } }, { "season_code": "202301", @@ -99271,7 +219106,7 @@ "14:30", "15:45", "LC 209 - Linsly-Chittenden Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -99279,7 +219114,7 @@ "14:30", "15:45", "LC 209 - Linsly-Chittenden Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -99293,10 +219128,129 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83911\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83911/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9976969361305237, + 0.9988094568252563, + 0.9989087581634521, + 0.998857855796814, + 0.9987512826919556, + 0.9986781477928162, + 0.9989010095596313, + 0.998809814453125, + 0.998415470123291 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989039897918701, + 0.998887836933136, + 0.9989014863967896, + 0.9987700581550598, + 0.9988656044006348, + 0.9989306330680847, + 0.9988038539886475, + 0.9989314675331116, + 0.9989243149757385 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987375140190125, + 0.9988880753517151, + 0.9988755583763123, + 0.9989374279975891, + 0.9989062547683716, + 0.9989351630210876, + 0.9989160299301147, + 0.9989169836044312, + 0.9989307522773743 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 27, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 27 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -99333,7 +219287,7 @@ "13:00", "14:15", "LC 104 - Linsly-Chittenden Hall 104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -99341,7 +219295,7 @@ "13:00", "14:15", "LC 104 - Linsly-Chittenden Hall 104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -99355,10 +219309,81 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83903\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83903/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988478422164917 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989081621170044 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989128112792969 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 3, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 3 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -99395,7 +219420,7 @@ "11:35", "12:50", "LC 103 - Linsly-Chittenden Hall 103", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -99403,7 +219428,7 @@ "11:35", "12:50", "LC 103 - Linsly-Chittenden Hall 103", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -99417,10 +219442,113 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83890\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83890/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988523721694946, + 0.9988791346549988, + 0.9987905621528625, + 0.9987049102783203, + 0.998766303062439, + 0.9988897442817688, + 0.998794674873352 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989203214645386, + 0.9958731532096863, + 0.9986559152603149, + 0.9988625049591064, + 0.9988375306129456 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989073276519775, + 0.998916506767273, + 0.998678982257843, + 0.997117280960083, + 0.9989243149757385, + 0.9989197254180908, + 0.9988669157028198 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 19 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -99457,7 +219585,7 @@ "13:00", "14:15", "LORIA 259 - Loria Center 259", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ], "Thursday": [ @@ -99465,7 +219593,7 @@ "13:00", "14:15", "LORIA 259 - Loria Center 259", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -99479,10 +219607,105 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83907\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83907/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984191656112671, + 0.9987402558326721, + 0.9983934760093689, + 0.9989135265350342, + 0.9988168478012085, + 0.998806357383728 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989213943481445, + 0.9988508224487305, + 0.9988850951194763, + 0.9987786412239075, + 0.986707329750061, + 0.9989007711410522 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987982511520386, + 0.9989292025566101, + 0.998916506767273 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 15 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -99519,7 +219742,7 @@ "11:35", "12:50", "LC 319 - Linsly-Chittenden Hall 319", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -99527,7 +219750,7 @@ "11:35", "12:50", "LC 319 - Linsly-Chittenden Hall 319", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -99541,10 +219764,89 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83880\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83880/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985107779502869, + 0.9989081621170044 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987987279891968, + 0.9976779818534851 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988952875137329, + 0.9987370371818542, + 0.9988208413124084 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 7 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -99581,7 +219883,7 @@ "16:00", "17:15", "LC 210 - Linsly-Chittenden Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -99589,7 +219891,7 @@ "16:00", "17:15", "LC 210 - Linsly-Chittenden Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -99603,10 +219905,107 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83916\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83916/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988130331039429, + 0.9988969564437866, + 0.9980292916297913, + 0.9987059831619263, + 0.9988440275192261 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989036321640015, + 0.9844411611557007, + 0.9988817572593689, + 0.9975594282150269 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.997117280960083, + 0.9987983703613281, + 0.9972845315933228, + 0.9989288449287415, + 0.9989235997200012, + 0.995018720626831 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 0.8, + "final_counts": { + "POSITIVE": 12, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + } + } }, { "season_code": "202301", @@ -99643,7 +220042,7 @@ "16:00", "17:15", "LC 203 - Linsly-Chittenden Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -99651,7 +220050,7 @@ "16:00", "17:15", "LC 203 - Linsly-Chittenden Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -99665,10 +220064,115 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83894\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83894/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986081719398499, + 0.9988774657249451, + 0.9988068342208862, + 0.9777122735977173, + 0.9988841414451599, + 0.9988657236099243, + 0.9988196492195129 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998539924621582, + 0.9988325238227844, + 0.9987234473228455, + 0.9947836995124817, + 0.9988701939582825, + 0.9988664388656616 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998890221118927, + 0.9986191987991333, + 0.998050332069397, + 0.9989198446273804, + 0.9988547563552856, + 0.9988507032394409, + 0.9989283680915833 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 20 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -99705,7 +220209,7 @@ "14:30", "15:45", "LC 318 - Linsly-Chittenden Hall 318", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -99713,7 +220217,7 @@ "14:30", "15:45", "LC 318 - Linsly-Chittenden Hall 318", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -99727,10 +220231,101 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83927\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83927/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989113807678223, + 0.9985111355781555, + 0.9988355040550232, + 0.9988736510276794, + 0.9969683289527893 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998867392539978, + 0.9989168643951416, + 0.9986929297447205 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987756609916687, + 0.9985857009887695, + 0.9988441467285156, + 0.9987599849700928, + 0.9985939860343933 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 13 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -99766,10 +220361,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83875\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83875/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -99806,7 +220429,7 @@ "9:00", "10:15", "LC 105 - Linsly-Chittenden Hall 105", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -99814,7 +220437,7 @@ "9:00", "10:15", "LC 105 - Linsly-Chittenden Hall 105", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -99828,10 +220451,129 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83886\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83886/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985476136207581, + 0.9986623525619507, + 0.994147539138794, + 0.9972789883613586, + 0.9988967180252075, + 0.998870313167572, + 0.9988933205604553, + 0.9987635612487793, + 0.9988862872123718 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988742470741272, + 0.9994887113571167, + 0.998879611492157, + 0.9989060163497925, + 0.9979038238525391, + 0.9989033937454224, + 0.9989161491394043, + 0.9987255930900574, + 0.9986467957496643, + 0.9989163875579834 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994332194328308, + 0.9986668825149536, + 0.9988077878952026, + 0.9981145858764648, + 0.9988752007484436, + 0.995790958404541, + 0.9988634586334229 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 6 + }, + "sentiment_distribution": { + "NEGATIVE": 0.14285714285714285, + "POSITIVE": 0.8571428571428571 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "final_label": "POSITIVE", + "final_count": 23, + "final_proportion": 0.8846153846153846, + "final_counts": { + "POSITIVE": 23, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.8846153846153846, + "NEGATIVE": 0.11538461538461539 + } + } }, { "season_code": "202301", @@ -99868,7 +220610,7 @@ "11:35", "12:50", "LORIA 259 - Loria Center 259", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ], "Thursday": [ @@ -99876,7 +220618,7 @@ "11:35", "12:50", "LORIA 259 - Loria Center 259", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -99890,10 +220632,103 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83899\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83899/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987442493438721, + 0.9966484904289246, + 0.9988335967063904, + 0.9988749623298645, + 0.998157799243927 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984474778175354, + 0.9988366961479187, + 0.9979107975959778, + 0.9987050294876099 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9978299736976624, + 0.9987385869026184, + 0.99880051612854, + 0.9988904595375061, + 0.9988730549812317 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 14 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -99948,10 +220783,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83933\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83933/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -99988,7 +220851,7 @@ "11:35", "12:50", "LORIA 258 - Loria Center 258", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ], "Thursday": [ @@ -99996,7 +220859,7 @@ "11:35", "12:50", "LORIA 258 - Loria Center 258", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -100012,10 +220875,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83940\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83940/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -100052,7 +220943,7 @@ "11:35", "12:50", "LC 104 - Linsly-Chittenden Hall 104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -100060,7 +220951,7 @@ "11:35", "12:50", "LC 104 - Linsly-Chittenden Hall 104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -100076,10 +220967,89 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83930\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83930/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988860487937927, + 0.9988906979560852 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989368319511414, + 0.9989253878593445 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989038705825806, + 0.9988811612129211, + 0.9974592328071594 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 7 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -100116,7 +221086,7 @@ "14:30", "15:45", "YK212 004 - 212 York Street 004", - "https:\/\/map.yale.edu\/?id=1910#!m\/559604" + "https://map.yale.edu/?id=1910#!m/559604" ] ], "Thursday": [ @@ -100124,7 +221094,7 @@ "14:30", "15:45", "YK212 004 - 212 York Street 004", - "https:\/\/map.yale.edu\/?id=1910#!m\/559604" + "https://map.yale.edu/?id=1910#!m/559604" ] ] }, @@ -100140,10 +221110,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83936\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83936/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -100180,7 +221178,7 @@ "13:00", "14:15", "LC 206 - Linsly-Chittenden Hall 206", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -100188,7 +221186,7 @@ "13:00", "14:15", "LC 206 - Linsly-Chittenden Hall 206", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -100202,10 +221200,115 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83943\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83943/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985490441322327, + 0.9987194538116455, + 0.9989217519760132, + 0.9988927245140076, + 0.9989205598831177, + 0.9986248016357422, + 0.9986718893051147 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984366297721863, + 0.9987890124320984, + 0.9988561868667603, + 0.9989339709281921, + 0.9988852143287659 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988688826560974, + 0.9989354014396667, + 0.9988813996315002, + 0.998914361000061, + 0.9989332556724548, + 0.99888676404953, + 0.9989010095596313, + 0.9988862872123718 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 20 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -100242,7 +221345,7 @@ "14:30", "15:45", "LC 206 - Linsly-Chittenden Hall 206", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -100250,7 +221353,7 @@ "14:30", "15:45", "LC 206 - Linsly-Chittenden Hall 206", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -100264,10 +221367,127 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83945\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83945/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985988736152649, + 0.9988564252853394, + 0.9940617680549622, + 0.998930037021637, + 0.9981884360313416, + 0.9984831213951111, + 0.998810887336731, + 0.9986476302146912, + 0.9989283680915833 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988596439361572, + 0.9969786405563354, + 0.997021496295929, + 0.9984826445579529, + 0.9988701939582825, + 0.998740017414093, + 0.9989392161369324 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987937211990356, + 0.9988464117050171, + 0.9989251494407654, + 0.9983575940132141, + 0.9988991022109985, + 0.9979828596115112, + 0.9989325404167175, + 0.9988982677459717, + 0.9989390969276428 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 24, + "final_proportion": 0.96, + "final_counts": { + "POSITIVE": 24, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.96, + "NEGATIVE": 0.04 + } + } }, { "season_code": "202301", @@ -100304,7 +221524,7 @@ "9:00", "10:15", "LC 104 - Linsly-Chittenden Hall 104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -100312,7 +221532,7 @@ "9:00", "10:15", "LC 104 - Linsly-Chittenden Hall 104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -100326,10 +221546,137 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83947\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83947/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987809062004089, + 0.9985895752906799, + 0.9987995624542236, + 0.9988962411880493, + 0.9988609552383423, + 0.998757004737854, + 0.9987747073173523, + 0.9985424280166626, + 0.9988794922828674, + 0.9988991022109985 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985727071762085, + 0.9987506866455078, + 0.9989274144172668, + 0.9986520409584045, + 0.9989153146743774, + 0.998902440071106, + 0.9987534284591675, + 0.9986823201179504, + 0.9988546371459961, + 0.9988905787467957 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998866081237793, + 0.99843829870224, + 0.9988246560096741, + 0.9988141059875488, + 0.9989221096038818, + 0.9988614320755005, + 0.9987329840660095, + 0.9988827109336853, + 0.9987912774085999, + 0.9988574981689453 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 29, + "final_proportion": 0.9666666666666667, + "final_counts": { + "POSITIVE": 29, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9666666666666667, + "NEGATIVE": 0.03333333333333333 + } + } }, { "season_code": "202301", @@ -100366,7 +221713,7 @@ "11:35", "12:50", "LC 105 - Linsly-Chittenden Hall 105", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -100374,7 +221721,7 @@ "11:35", "12:50", "LC 105 - Linsly-Chittenden Hall 105", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -100388,10 +221735,121 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83858\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83858/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989191293716431, + 0.9981529116630554, + 0.9987121820449829, + 0.9986489415168762, + 0.9987978935241699, + 0.9980574250221252, + 0.9988699555397034, + 0.9988545179367065 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988610744476318, + 0.9989307522773743, + 0.9988922476768494, + 0.998777449131012, + 0.9989257454872131, + 0.9988382458686829, + 0.9987700581550598 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9957591891288757, + 0.997117280960083, + 0.9988866448402405, + 0.9989125728607178, + 0.9989266991615295, + 0.9989367127418518, + 0.9988729357719421, + 0.9988974332809448 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 23, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 23 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -100428,7 +221886,7 @@ "14:30", "15:45", "LC 104 - Linsly-Chittenden Hall 104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -100436,7 +221894,7 @@ "14:30", "15:45", "LC 104 - Linsly-Chittenden Hall 104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -100450,10 +221908,115 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83865\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83865/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987927675247192, + 0.998485267162323, + 0.9988479614257812, + 0.998913049697876, + 0.9972304701805115, + 0.998613715171814, + 0.9987257122993469 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989226460456848, + 0.9986974596977234, + 0.9989402890205383, + 0.997575581073761, + 0.9989042282104492, + 0.9989203214645386 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986078143119812, + 0.9988932013511658, + 0.998873770236969, + 0.9989284873008728, + 0.9987406134605408, + 0.9989067316055298, + 0.9989228844642639 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 20 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -100490,7 +222053,7 @@ "11:35", "12:50", "LC 104 - Linsly-Chittenden Hall 104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -100498,7 +222061,7 @@ "11:35", "12:50", "LC 104 - Linsly-Chittenden Hall 104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -100512,10 +222075,121 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83868\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83868/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987390637397766, + 0.9983671307563782, + 0.9989026784896851, + 0.998812198638916, + 0.997148334980011, + 0.9988158941268921, + 0.9989155530929565, + 0.9984999895095825 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988574981689453, + 0.9988850951194763, + 0.9976430535316467, + 0.9988682270050049, + 0.998925507068634, + 0.9988241791725159, + 0.9988679885864258 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988527297973633, + 0.9989362359046936, + 0.9988821148872375, + 0.998925507068634, + 0.9988213181495667, + 0.9989001750946045, + 0.9988642930984497, + 0.9987534284591675 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 23, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 23 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -100552,7 +222226,7 @@ "13:00", "14:15", "YK220 002 - 220 York Street 002", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ], "Thursday": [ @@ -100560,7 +222234,7 @@ "13:00", "14:15", "YK220 002 - 220 York Street 002", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ] }, @@ -100574,10 +222248,139 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83872\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83872/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989249110221863, + 0.9987862706184387, + 0.9988734126091003, + 0.9983408451080322, + 0.9985951781272888, + 0.9989168643951416, + 0.9987776875495911, + 0.9988752007484436, + 0.9966747760772705, + 0.998857855796814 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988467693328857, + 0.9985993504524231, + 0.9989306330680847, + 0.9989190101623535, + 0.9988413453102112, + 0.9988853335380554, + 0.9987075328826904, + 0.9988400340080261, + 0.999116837978363, + 0.9980692267417908 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982807636260986, + 0.9988351464271545, + 0.9988535642623901, + 0.9985989928245544, + 0.9988783001899719, + 0.9989084005355835, + 0.998859167098999, + 0.9984851479530334, + 0.9988741278648376, + 0.9995031356811523, + 0.9989081621170044 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9090909090909091 + ] + }, + "final_label": "POSITIVE", + "final_count": 29, + "final_proportion": 0.9354838709677419, + "final_counts": { + "POSITIVE": 29, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9354838709677419, + "NEGATIVE": 0.06451612903225806 + } + } }, { "season_code": "202301", @@ -100614,7 +222417,7 @@ "9:00", "10:15", "LC 206 - Linsly-Chittenden Hall 206", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -100622,7 +222425,7 @@ "9:00", "10:15", "LC 206 - Linsly-Chittenden Hall 206", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -100636,10 +222439,151 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83877\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83877/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989161491394043, + 0.9988812804222107, + 0.9988948702812195, + 0.9989033937454224, + 0.9989203214645386, + 0.9988541603088379, + 0.9988601207733154, + 0.9951203465461731, + 0.9989179372787476, + 0.9989113807678223, + 0.9989151954650879, + 0.9987409710884094, + 0.9988019466400146 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988445043563843, + 0.9989349246025085, + 0.9989319443702698, + 0.998813271522522, + 0.998920202255249, + 0.9989151954650879, + 0.9987661838531494, + 0.9989194869995117, + 0.9989159107208252, + 0.9987372756004333, + 0.9980657696723938 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989315867424011, + 0.9989354014396667, + 0.9989330172538757, + 0.9989132881164551, + 0.9989318251609802, + 0.9989319443702698, + 0.9988834261894226, + 0.9988985061645508, + 0.9988743662834167, + 0.9988992214202881, + 0.9989238381385803, + 0.9989064931869507, + 0.9989181756973267, + 0.998908281326294 + ], + "sentiment_counts": { + "POSITIVE": 14, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 38, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 38 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -100676,7 +222620,7 @@ "13:00", "14:15", "LC 204 - Linsly-Chittenden Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -100684,7 +222628,7 @@ "13:00", "14:15", "LC 204 - Linsly-Chittenden Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -100698,10 +222642,101 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83881\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83881/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989140033721924, + 0.9988052845001221, + 0.9952954649925232, + 0.9988370537757874 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987894892692566, + 0.9989230036735535, + 0.9988749623298645, + 0.998907208442688 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989287257194519, + 0.998924195766449, + 0.9989055395126343, + 0.9989333748817444, + 0.9989351630210876 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 13 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -100738,7 +222773,7 @@ "9:00", "10:15", "LC 204 - Linsly-Chittenden Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -100746,7 +222781,7 @@ "9:00", "10:15", "LC 204 - Linsly-Chittenden Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -100760,10 +222795,125 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83884\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83884/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986989498138428, + 0.9988797307014465, + 0.9986750483512878, + 0.9980363249778748, + 0.9989099502563477, + 0.9986892342567444, + 0.9979777932167053, + 0.9988067150115967 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985730648040771, + 0.998933732509613, + 0.998924195766449, + 0.9989282488822937, + 0.9989320635795593, + 0.9988582134246826, + 0.9989066123962402, + 0.9989235997200012 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.997117280960083, + 0.9989169836044312, + 0.9989251494407654, + 0.9986023306846619, + 0.9989319443702698, + 0.998785674571991, + 0.9989050626754761, + 0.9989069700241089, + 0.9989112615585327 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 25, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 25 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -100800,7 +222950,7 @@ "13:00", "14:15", "YK212 004A - 212 York Street 004A", - "https:\/\/map.yale.edu\/?id=1910#!m\/559604" + "https://map.yale.edu/?id=1910#!m/559604" ] ], "Thursday": [ @@ -100808,7 +222958,7 @@ "13:00", "14:15", "YK212 004A - 212 York Street 004A", - "https:\/\/map.yale.edu\/?id=1910#!m\/559604" + "https://map.yale.edu/?id=1910#!m/559604" ] ] }, @@ -100822,10 +222972,125 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83889\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83889/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987780451774597, + 0.9983453750610352, + 0.9988753199577332, + 0.9988671541213989, + 0.9988313317298889, + 0.9984478950500488, + 0.9988962411880493, + 0.9988394379615784 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988505840301514, + 0.9989225268363953, + 0.9989320635795593, + 0.9989213943481445, + 0.9988275170326233, + 0.9989042282104492, + 0.9988370537757874, + 0.9973094463348389 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988986253738403, + 0.998920202255249, + 0.9988672733306885, + 0.9988946318626404, + 0.9989213943481445, + 0.9988864064216614, + 0.9988790154457092, + 0.9987924098968506, + 0.9989094734191895 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 25, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 25 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -100862,7 +223127,7 @@ "11:35", "12:50", "YK212 004A - 212 York Street 004A", - "https:\/\/map.yale.edu\/?id=1910#!m\/559604" + "https://map.yale.edu/?id=1910#!m/559604" ] ], "Thursday": [ @@ -100870,7 +223135,7 @@ "11:35", "12:50", "YK212 004A - 212 York Street 004A", - "https:\/\/map.yale.edu\/?id=1910#!m\/559604" + "https://map.yale.edu/?id=1910#!m/559604" ] ] }, @@ -100884,10 +223149,109 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83892\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83892/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988034963607788, + 0.9987025260925293, + 0.9984363913536072, + 0.9984460473060608, + 0.9989058971405029 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988961219787598, + 0.9988330006599426, + 0.9989035129547119, + 0.9975136518478394, + 0.9988657236099243, + 0.9988086223602295 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985443353652954, + 0.998846173286438, + 0.996683657169342, + 0.9988693594932556, + 0.9988222718238831 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 0.9375, + "final_counts": { + "POSITIVE": 15, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9375, + "NEGATIVE": 0.0625 + } + } }, { "season_code": "202301", @@ -100924,7 +223288,7 @@ "11:35", "12:50", "LC 212 - Linsly-Chittenden Hall 212", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -100932,7 +223296,7 @@ "11:35", "12:50", "LC 212 - Linsly-Chittenden Hall 212", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -100946,10 +223310,113 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83915\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83915/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988858103752136, + 0.998915433883667, + 0.9981631636619568, + 0.9989175796508789, + 0.9987567663192749, + 0.9987359642982483 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988019466400146, + 0.9978406429290771, + 0.9987564086914062, + 0.9989104270935059, + 0.9988483190536499, + 0.9994961023330688 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983124732971191, + 0.9988904595375061, + 0.998917818069458, + 0.9988489151000977, + 0.999509334564209, + 0.9989362359046936 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 0.8888888888888888, + "final_counts": { + "POSITIVE": 16, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + } + } }, { "season_code": "202301", @@ -100986,7 +223453,7 @@ "13:00", "14:15", "LC 318 - Linsly-Chittenden Hall 318", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -100994,7 +223461,7 @@ "13:00", "14:15", "LC 318 - Linsly-Chittenden Hall 318", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -101008,10 +223475,99 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83902\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83902/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988411068916321, + 0.9989128112792969, + 0.9989103078842163, + 0.9987491369247437 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988569021224976, + 0.9988873600959778, + 0.9989344477653503, + 0.9989101886749268 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989233613014221, + 0.9987473487854004, + 0.9988865256309509, + 0.9988000392913818 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 12 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -101048,7 +223604,7 @@ "11:35", "12:50", "LC 105 - Linsly-Chittenden Hall 105", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -101056,7 +223612,7 @@ "11:35", "12:50", "LC 105 - Linsly-Chittenden Hall 105", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -101070,10 +223626,115 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83909\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83909/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989058971405029, + 0.9987791180610657, + 0.9988659620285034, + 0.9989163875579834, + 0.9989163875579834, + 0.9989051818847656 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989272952079773, + 0.9989081621170044, + 0.9986791014671326, + 0.9988969564437866, + 0.9988731741905212, + 0.9989332556724548 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989217519760132, + 0.9961121678352356, + 0.9989078044891357, + 0.9974592328071594, + 0.9988799691200256, + 0.9988405108451843, + 0.9988542795181274 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 0.9473684210526315, + "final_counts": { + "POSITIVE": 18, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9473684210526315, + "NEGATIVE": 0.05263157894736842 + } + } }, { "season_code": "202301", @@ -101110,7 +223771,7 @@ "11:35", "12:50", "SML 120B - Sterling Memorial Library 120B", - "https:\/\/map.yale.edu\/?id=1910#!m\/563698" + "https://map.yale.edu/?id=1910#!m/563698" ] ], "Thursday": [ @@ -101118,7 +223779,7 @@ "11:35", "12:50", "SML 120B - Sterling Memorial Library 120B", - "https:\/\/map.yale.edu\/?id=1910#!m\/563698" + "https://map.yale.edu/?id=1910#!m/563698" ] ] }, @@ -101132,10 +223793,131 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83905\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83905/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987213015556335, + 0.9989144802093506, + 0.9986768364906311, + 0.9940138459205627, + 0.9989087581634521, + 0.9987000226974487, + 0.9980133771896362, + 0.9985923171043396, + 0.9987474679946899 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998927652835846, + 0.9989311099052429, + 0.9981581568717957, + 0.9989155530929565, + 0.9989243149757385, + 0.999504566192627, + 0.9988811612129211, + 0.9988471269607544 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982553124427795, + 0.9984610080718994, + 0.9987794756889343, + 0.9986900687217712, + 0.9988173842430115, + 0.99874347448349, + 0.9980168342590332, + 0.9988749623298645, + 0.9989205598831177, + 0.9988923668861389 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 25, + "final_proportion": 0.9259259259259259, + "final_counts": { + "POSITIVE": 25, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9259259259259259, + "NEGATIVE": 0.07407407407407407 + } + } }, { "season_code": "202301", @@ -101172,7 +223954,7 @@ "13:00", "14:15", "BASSLB L70 - Bass Library L70", - "https:\/\/map.yale.edu\/?id=1910#!m\/564574" + "https://map.yale.edu/?id=1910#!m/564574" ] ], "Thursday": [ @@ -101180,7 +223962,7 @@ "13:00", "14:15", "BASSLB L70 - Bass Library L70", - "https:\/\/map.yale.edu\/?id=1910#!m\/564574" + "https://map.yale.edu/?id=1910#!m/564574" ] ] }, @@ -101194,10 +223976,143 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83895\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83895/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.995011568069458, + 0.9988413453102112, + 0.9987208247184753, + 0.9988773465156555, + 0.9989074468612671, + 0.9988893866539001, + 0.9985032081604004, + 0.9989211559295654, + 0.9986623525619507, + 0.9988584518432617, + 0.9977980852127075 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9950732588768005, + 0.9989200830459595, + 0.9988884329795837, + 0.9989067316055298, + 0.9988351464271545, + 0.9994816184043884, + 0.9988813996315002, + 0.9989148378372192, + 0.998916506767273, + 0.9989355206489563, + 0.9988924860954285 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9090909090909091 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988952279090881, + 0.9989191293716431, + 0.9989359974861145, + 0.9988988637924194, + 0.9989136457443237, + 0.9980533123016357, + 0.9989261031150818, + 0.9989338517189026, + 0.9988043308258057, + 0.9989226460456848, + 0.9989355206489563 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9090909090909091 + ] + }, + "final_label": "POSITIVE", + "final_count": 31, + "final_proportion": 0.9393939393939394, + "final_counts": { + "POSITIVE": 31, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9393939393939394, + "NEGATIVE": 0.06060606060606061 + } + } }, { "season_code": "202301", @@ -101234,7 +224149,7 @@ "14:30", "15:45", "LC 208 - Linsly-Chittenden Hall 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -101242,7 +224157,7 @@ "14:30", "15:45", "LC 208 - Linsly-Chittenden Hall 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -101256,10 +224171,101 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83912\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83912/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987459182739258, + 0.9988289475440979, + 0.9989023208618164, + 0.9978228807449341, + 0.9987412095069885 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988396763801575, + 0.998847246170044, + 0.9989081621170044 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989016056060791, + 0.9988983869552612, + 0.998893678188324, + 0.9983495473861694, + 0.9989004135131836 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 13 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -101296,7 +224302,7 @@ "13:00", "14:15", "HQ 109 - Humanities Quadrangle 109", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -101304,7 +224310,7 @@ "13:00", "14:15", "HQ 109 - Humanities Quadrangle 109", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -101320,10 +224326,123 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83898\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83898/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985584616661072, + 0.9979623556137085, + 0.9984184503555298, + 0.9989023208618164, + 0.9988741278648376, + 0.9985278844833374, + 0.9989027976989746, + 0.9987753033638, + 0.9977676868438721 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987844824790955, + 0.9988858103752136, + 0.9988939166069031, + 0.9989138841629028, + 0.9989197254180908, + 0.9989173412322998, + 0.9989297986030579 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988935589790344, + 0.9989000558853149, + 0.9989205598831177, + 0.9989393353462219, + 0.998874843120575, + 0.9988642930984497, + 0.9988922476768494, + 0.9989038705825806 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 24, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 24 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -101360,7 +224479,7 @@ "13:00", "14:15", "LC 203 - Linsly-Chittenden Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -101368,7 +224487,7 @@ "13:00", "14:15", "LC 203 - Linsly-Chittenden Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -101382,10 +224501,113 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83919\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83919/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988645315170288, + 0.9985632300376892, + 0.9988831877708435, + 0.9989227652549744, + 0.9988585710525513, + 0.9989281296730042 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988860487937927, + 0.9989176988601685, + 0.9989319443702698, + 0.9989314675331116, + 0.9988445043563843 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9974391460418701, + 0.998916745185852, + 0.9989006519317627, + 0.9988116025924683, + 0.9989346861839294, + 0.9989007711410522, + 0.9989211559295654, + 0.9941602945327759 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 19 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -101422,7 +224644,7 @@ "11:35", "12:50", "LC 103 - Linsly-Chittenden Hall 103", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -101430,7 +224652,7 @@ "11:35", "12:50", "LC 103 - Linsly-Chittenden Hall 103", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -101446,10 +224668,107 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83923\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83923/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9891201257705688, + 0.9988119602203369, + 0.9989134073257446, + 0.9979933500289917, + 0.9986525177955627 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987384676933289, + 0.9985061287879944, + 0.9989249110221863, + 0.9980859756469727, + 0.998928964138031 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.4, + "POSITIVE": 0.6 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.999024510383606, + 0.9988767504692078, + 0.9933212399482727, + 0.9922826886177063, + 0.9989159107208252 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 4 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2, + "POSITIVE": 0.8 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 0.8, + "final_counts": { + "POSITIVE": 12, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + } + } }, { "season_code": "202301", @@ -101486,7 +224805,7 @@ "13:00", "14:15", "LC 212 - Linsly-Chittenden Hall 212", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -101494,7 +224813,7 @@ "13:00", "14:15", "LC 212 - Linsly-Chittenden Hall 212", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -101510,10 +224829,81 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83926\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83926/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988465309143066 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9976704716682434 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988697171211243 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 3, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 3 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -101550,7 +224940,7 @@ "9:00", "10:15", "LC 103 - Linsly-Chittenden Hall 103", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -101558,7 +224948,7 @@ "9:00", "10:15", "LC 103 - Linsly-Chittenden Hall 103", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -101574,10 +224964,125 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83929\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83929/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988530874252319, + 0.9988940358161926, + 0.9986041188240051, + 0.9988278746604919, + 0.9988957643508911, + 0.9982578158378601, + 0.9985687732696533, + 0.998939573764801 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998891294002533, + 0.998904824256897, + 0.9989124536514282, + 0.9989264607429504, + 0.9989263415336609, + 0.9989205598831177, + 0.9988586902618408, + 0.9989362359046936 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989259839057922, + 0.9988052845001221, + 0.9989134073257446, + 0.9954490065574646, + 0.998894989490509, + 0.9977543950080872, + 0.9932790398597717, + 0.9989362359046936 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "final_label": "POSITIVE", + "final_count": 23, + "final_proportion": 0.9583333333333334, + "final_counts": { + "POSITIVE": 23, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9583333333333334, + "NEGATIVE": 0.041666666666666664 + } + } }, { "season_code": "202301", @@ -101614,7 +225119,7 @@ "9:00", "10:15", "HQ 127 - Humanities Quadrangle 127", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -101622,7 +225127,7 @@ "9:00", "10:15", "HQ 127 - Humanities Quadrangle 127", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -101638,10 +225143,113 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83931\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83931/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988314509391785, + 0.9988676309585571, + 0.9989253878593445, + 0.9989205598831177, + 0.9984384179115295 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989114999771118, + 0.9988471269607544, + 0.9975282549858093, + 0.9989169836044312, + 0.9986541271209717 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981922507286072, + 0.9982553124427795, + 0.9989210367202759, + 0.9988422989845276, + 0.9989342093467712, + 0.9988991022109985, + 0.998935878276825, + 0.9989253878593445, + 0.9986042380332947 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 19 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -101678,7 +225286,7 @@ "11:35", "12:50", "LC 204 - Linsly-Chittenden Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -101686,7 +225294,7 @@ "11:35", "12:50", "LC 204 - Linsly-Chittenden Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -101702,10 +225310,109 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83934\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83934/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988594055175781, + 0.9988033771514893, + 0.9988995790481567, + 0.9984815716743469, + 0.9987591505050659 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987983703613281, + 0.9988975524902344, + 0.9988484382629395, + 0.9988987445831299, + 0.9988898634910583, + 0.998904824256897 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988853335380554, + 0.9979471564292908, + 0.9987768530845642, + 0.9984991550445557, + 0.9989073276519775, + 0.9989355206489563 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 17 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -101742,7 +225449,7 @@ "11:35", "12:50", "LC 208 - Linsly-Chittenden Hall 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -101750,7 +225457,7 @@ "11:35", "12:50", "LC 208 - Linsly-Chittenden Hall 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -101766,10 +225473,143 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83937\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83937/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998915433883667, + 0.9989224672317505, + 0.9986679553985596, + 0.9988858103752136, + 0.9989148378372192, + 0.9988617897033691, + 0.9988566637039185, + 0.998907208442688, + 0.9988067150115967, + 0.9986959099769592, + 0.9989064931869507 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989305138587952, + 0.9989054203033447, + 0.998934805393219, + 0.9989370703697205, + 0.9989328980445862, + 0.9989166259765625, + 0.9989362359046936, + 0.996896505355835, + 0.9989344477653503, + 0.9988929629325867, + 0.9989354014396667 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989047050476074, + 0.9989153146743774, + 0.9989299178123474, + 0.9989180564880371, + 0.9987922310829163, + 0.9989349246025085, + 0.9989309906959534, + 0.9988868832588196, + 0.9989033937454224, + 0.9988840222358704, + 0.9989352822303772, + 0.9989140033721924 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 34, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 34 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -101806,7 +225646,7 @@ "9:00", "10:15", "LC 105 - Linsly-Chittenden Hall 105", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -101814,7 +225654,7 @@ "9:00", "10:15", "LC 105 - Linsly-Chittenden Hall 105", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -101832,10 +225672,101 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83939\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83939/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987553358078003, + 0.9989222288131714, + 0.9987875819206238, + 0.9988594055175781 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988583326339722, + 0.9989299178123474, + 0.9987345337867737, + 0.9987603425979614 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9959631562232971, + 0.9989018440246582, + 0.9995003938674927, + 0.9988962411880493 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 0.75, + "final_counts": { + "POSITIVE": 9, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + } + } }, { "season_code": "202301", @@ -101872,7 +225803,7 @@ "11:35", "12:50", "LC 206 - Linsly-Chittenden Hall 206", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -101880,7 +225811,7 @@ "11:35", "12:50", "LC 206 - Linsly-Chittenden Hall 206", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -101898,10 +225829,125 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83942\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83942/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989092350006104, + 0.9986714124679565, + 0.9988600015640259, + 0.9988372921943665, + 0.9988844990730286, + 0.9981635212898254, + 0.9988489151000977, + 0.9989078044891357 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984216690063477, + 0.998928964138031, + 0.9988806843757629, + 0.998627781867981, + 0.9980721473693848, + 0.9989309906959534, + 0.9988061189651489 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9973594546318054, + 0.9987635612487793, + 0.998802661895752, + 0.9989350438117981, + 0.9989239573478699, + 0.9982873797416687, + 0.9988757967948914, + 0.995327353477478, + 0.998931348323822 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "final_label": "POSITIVE", + "final_count": 23, + "final_proportion": 0.9583333333333334, + "final_counts": { + "POSITIVE": 23, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9583333333333334, + "NEGATIVE": 0.041666666666666664 + } + } }, { "season_code": "202301", @@ -101938,7 +225984,7 @@ "11:35", "12:50", "LC 318 - Linsly-Chittenden Hall 318", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -101946,7 +225992,7 @@ "11:35", "12:50", "LC 318 - Linsly-Chittenden Hall 318", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -101964,10 +226010,121 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83948\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83948/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989203214645386, + 0.9989235997200012, + 0.9986180067062378, + 0.998879611492157, + 0.9988389611244202, + 0.9987533092498779, + 0.9988299012184143, + 0.9987797141075134 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987242817878723, + 0.9989088773727417, + 0.998795747756958, + 0.9986199140548706, + 0.9989245533943176, + 0.9986172914505005, + 0.9988769888877869 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989049434661865, + 0.9994906187057495, + 0.9982553124427795, + 0.9989364743232727, + 0.9989104270935059, + 0.9989114999771118, + 0.9986878037452698 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "final_label": "POSITIVE", + "final_count": 21, + "final_proportion": 0.9545454545454546, + "final_counts": { + "POSITIVE": 21, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9545454545454546, + "NEGATIVE": 0.045454545454545456 + } + } }, { "season_code": "202301", @@ -102004,7 +226161,7 @@ "13:00", "14:15", "LC 104 - Linsly-Chittenden Hall 104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -102012,7 +226169,7 @@ "13:00", "14:15", "LC 104 - Linsly-Chittenden Hall 104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -102030,10 +226187,111 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83949\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83949/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9965176582336426, + 0.9989145994186401, + 0.9988964796066284, + 0.9986400008201599, + 0.9988213181495667, + 0.9988662004470825 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981526732444763, + 0.9989352822303772, + 0.9807496666908264, + 0.998925507068634, + 0.9987719655036926 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 4 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2, + "POSITIVE": 0.8 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989181756973267, + 0.9977497458457947, + 0.9988877177238464, + 0.9987738728523254, + 0.9989331364631653, + 0.9989168643951416 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 0.9411764705882353, + "final_counts": { + "POSITIVE": 16, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9411764705882353, + "NEGATIVE": 0.058823529411764705 + } + } }, { "season_code": "202301", @@ -102070,7 +226328,7 @@ "11:35", "12:50", "LC 318 - Linsly-Chittenden Hall 318", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -102078,7 +226336,7 @@ "11:35", "12:50", "LC 318 - Linsly-Chittenden Hall 318", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -102096,10 +226354,125 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83950\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83950/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988040924072266, + 0.9989233613014221, + 0.998857855796814, + 0.99893718957901, + 0.9988381266593933, + 0.9989185333251953, + 0.9988282322883606 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989109039306641, + 0.9989187717437744, + 0.9993584752082825, + 0.9987940788269043, + 0.9988947510719299, + 0.9987082481384277, + 0.9988947510719299, + 0.9945769309997559 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998914361000061, + 0.9989328980445862, + 0.9981922507286072, + 0.9948287606239319, + 0.9989056587219238, + 0.998885452747345, + 0.998925507068634, + 0.9988818764686584, + 0.9928098917007446 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "final_label": "POSITIVE", + "final_count": 22, + "final_proportion": 0.9166666666666666, + "final_counts": { + "POSITIVE": 22, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + } + } }, { "season_code": "202301", @@ -102136,7 +226509,7 @@ "11:35", "12:50", "LC 210 - Linsly-Chittenden Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -102144,7 +226517,7 @@ "11:35", "12:50", "LC 210 - Linsly-Chittenden Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -102160,10 +226533,115 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83952\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83952/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988242983818054, + 0.998890221118927, + 0.9987720847129822, + 0.9988905787467957, + 0.9988092184066772 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989204406738281, + 0.99265056848526, + 0.9989302754402161, + 0.9988644123077393, + 0.9988861680030823, + 0.9989013671875, + 0.9989292025566101 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989100694656372, + 0.9988932013511658, + 0.998340368270874, + 0.9989243149757385, + 0.9988657236099243, + 0.998820960521698, + 0.9988749623298645, + 0.9989239573478699 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 20 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -102200,7 +226678,7 @@ "14:30", "15:45", "LC 204 - Linsly-Chittenden Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -102208,7 +226686,7 @@ "14:30", "15:45", "LC 204 - Linsly-Chittenden Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -102224,10 +226702,105 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83953\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83953/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989381432533264, + 0.9987278580665588, + 0.9989200830459595, + 0.9985601305961609, + 0.9987090826034546 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982895255088806, + 0.9989098310470581, + 0.9994229078292847, + 0.998863697052002, + 0.9989258646965027 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.4, + "POSITIVE": 0.6 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9953740239143372, + 0.9988062381744385, + 0.9988076686859131, + 0.998915433883667 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 0.8571428571428571, + "final_counts": { + "POSITIVE": 12, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + } + } }, { "season_code": "202301", @@ -102264,7 +226837,7 @@ "9:00", "10:15", "LC 319 - Linsly-Chittenden Hall 319", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -102272,7 +226845,7 @@ "9:00", "10:15", "LC 319 - Linsly-Chittenden Hall 319", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -102288,10 +226861,139 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83955\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83955/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987643957138062, + 0.9988402724266052, + 0.998900294303894, + 0.9988468885421753, + 0.9987659454345703, + 0.9988272786140442, + 0.9987940788269043, + 0.9988763928413391, + 0.9987803101539612, + 0.998815655708313, + 0.998916745185852 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989134073257446, + 0.9988634586334229, + 0.9989259839057922, + 0.9974417686462402, + 0.9988551139831543, + 0.9988368153572083, + 0.9986796975135803, + 0.9989271759986877, + 0.9987678527832031, + 0.8763799667358398 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988316893577576, + 0.9989312291145325, + 0.9988590478897095, + 0.9988841414451599, + 0.997370719909668, + 0.9989386200904846, + 0.9987806677818298, + 0.9987047910690308, + 0.9988551139831543, + 0.9904252886772156 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "final_label": "POSITIVE", + "final_count": 30, + "final_proportion": 0.967741935483871, + "final_counts": { + "POSITIVE": 30, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.967741935483871, + "NEGATIVE": 0.03225806451612903 + } + } }, { "season_code": "202301", @@ -102328,7 +227030,7 @@ "13:00", "14:15", "LC 209 - Linsly-Chittenden Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -102336,7 +227038,7 @@ "13:00", "14:15", "LC 209 - Linsly-Chittenden Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -102352,10 +227054,135 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83957\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83957/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989319443702698, + 0.998840868473053, + 0.9988511800765991, + 0.9987668991088867, + 0.9988927245140076, + 0.9984965324401855, + 0.9988893866539001, + 0.9988883137702942, + 0.9984042048454285, + 0.9989068508148193 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988538026809692, + 0.9988957643508911, + 0.9989319443702698, + 0.9988155364990234, + 0.9989157915115356, + 0.9989018440246582, + 0.998867392539978, + 0.9988928437232971, + 0.9988963603973389, + 0.9988144636154175, + 0.9988890290260315 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989357590675354, + 0.9989239573478699, + 0.9988634586334229, + 0.9988231062889099, + 0.9989393353462219, + 0.997664213180542, + 0.9989394545555115, + 0.9989394545555115, + 0.9988732933998108 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 30, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 30 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -102395,7 +227222,7 @@ "9:00", "10:15", "LC 209 - Linsly-Chittenden Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -102403,7 +227230,7 @@ "9:00", "10:15", "LC 209 - Linsly-Chittenden Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -102414,7 +227241,7 @@ "Hu" ], "flags": [ - "YC: THST Dramlit\/ThHist\/PerfTh", + "YC: THST Dramlit/ThHist/PerfTh", "YC: THST non-English Dram Lit", "YC: THST Histories", "YC: THST Performance Theory", @@ -102425,10 +227252,107 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83959\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83959/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988923668861389, + 0.9988337159156799, + 0.9986839890480042, + 0.9986152648925781, + 0.9989172220230103 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989262223243713, + 0.9981769323348999, + 0.998703122138977, + 0.99893718957901 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984195232391357, + 0.9989144802093506, + 0.9989256262779236, + 0.9971181154251099, + 0.9988946318626404, + 0.9989257454872131 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 0.9333333333333333, + "final_counts": { + "POSITIVE": 14, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9333333333333333, + "NEGATIVE": 0.06666666666666667 + } + } }, { "season_code": "202301", @@ -102466,7 +227390,7 @@ "14:30", "15:45", "LC 203 - Linsly-Chittenden Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -102474,7 +227398,7 @@ "14:30", "15:45", "LC 203 - Linsly-Chittenden Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -102490,10 +227414,107 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83961\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83961/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988464117050171, + 0.9988946318626404, + 0.9989078044891357, + 0.9989111423492432, + 0.9988853335380554 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986914992332458, + 0.9987916350364685, + 0.9989117383956909, + 0.9995005130767822, + 0.9988667964935303 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988740086555481, + 0.998916506767273, + 0.9989370703697205, + 0.9928299784660339, + 0.9989094734191895 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 0.8666666666666667, + "final_counts": { + "POSITIVE": 13, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8666666666666667, + "NEGATIVE": 0.13333333333333333 + } + } }, { "season_code": "202301", @@ -102531,7 +227552,7 @@ "9:00", "10:15", "LC 103 - Linsly-Chittenden Hall 103", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -102539,7 +227560,7 @@ "9:00", "10:15", "LC 103 - Linsly-Chittenden Hall 103", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -102553,13 +227574,148 @@ ], "regnotes": "", "rp_attr": "", - "classnotes": "This course may satisfy the Medieval, Renaissance, 18th\/19th century, or 20th\/21st century literature requirement for English majors with permission from the instructor and the DUS. The English Distribution Request Form is available at https:\/\/english.yale.edu\/undergraduate\/deadlines-and-forms.", + "classnotes": "This course may satisfy the Medieval, Renaissance, 18th/19th century, or 20th/21st century literature requirement for English majors with permission from the instructor and the DUS. The English Distribution Request Form is available at https://english.yale.edu/undergraduate/deadlines-and-forms.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83964\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83964/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987408518791199, + 0.9986926913261414, + 0.998714804649353, + 0.9986662864685059, + 0.998805046081543, + 0.9988605976104736, + 0.9988215565681458, + 0.9985091090202332, + 0.9989132881164551, + 0.9987004995346069, + 0.9987467527389526, + 0.9985331296920776 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989131689071655, + 0.9988866448402405, + 0.9989293217658997, + 0.9982072114944458, + 0.998771607875824, + 0.9989117383956909, + 0.9989299178123474, + 0.9988085031509399, + 0.9988732933998108 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9938562512397766, + 0.9989377856254578, + 0.9989100694656372, + 0.9974454641342163, + 0.9987572431564331, + 0.99782395362854, + 0.9988497495651245, + 0.9988790154457092, + 0.9989336133003235, + 0.9989007711410522, + 0.9988399147987366, + 0.9987071752548218, + 0.9984005093574524 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 11 + }, + "sentiment_distribution": { + "NEGATIVE": 0.15384615384615385, + "POSITIVE": 0.8461538461538461 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8461538461538461 + ] + }, + "final_label": "POSITIVE", + "final_count": 32, + "final_proportion": 0.9411764705882353, + "final_counts": { + "POSITIVE": 32, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9411764705882353, + "NEGATIVE": 0.058823529411764705 + } + } }, { "season_code": "202301", @@ -102596,7 +227752,7 @@ "11:35", "12:50", "LC 211 - Linsly-Chittenden Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -102604,7 +227760,7 @@ "11:35", "12:50", "LC 211 - Linsly-Chittenden Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -102622,10 +227778,129 @@ "classnotes": "", "final_exam": "Monday, May 8, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83969\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83969/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998856782913208, + 0.9986340403556824, + 0.9986618757247925, + 0.9985766410827637, + 0.9988859295845032, + 0.9988598823547363, + 0.9989283680915833, + 0.9988569021224976 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989280104637146, + 0.9994935989379883, + 0.9987117052078247, + 0.9989073276519775, + 0.9988610744476318, + 0.9987384676933289, + 0.9989228844642639, + 0.998892605304718 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989376664161682, + 0.9989282488822937, + 0.9988969564437866, + 0.9987785220146179, + 0.997117280960083, + 0.9991744160652161, + 0.9988579750061035, + 0.9989325404167175, + 0.9989194869995117, + 0.9958440661430359 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "final_label": "POSITIVE", + "final_count": 24, + "final_proportion": 0.9230769230769231, + "final_counts": { + "POSITIVE": 24, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9230769230769231, + "NEGATIVE": 0.07692307692307693 + } + } }, { "season_code": "202301", @@ -102656,7 +227931,7 @@ "14:30", "15:20", "YK220 002 - 220 York Street 002", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ] }, @@ -102675,7 +227950,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -102733,7 +228036,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -102764,7 +228095,7 @@ "16:00", "16:50", "LC 205 - Linsly-Chittenden Hall 205", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -102783,7 +228114,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -102815,7 +228174,7 @@ "16:00", "16:50", "WLH 004 - William L. Harkness Hall 004", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -102834,7 +228193,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -102866,7 +228253,7 @@ "9:25", "10:15", "WLH 004 - William L. Harkness Hall 004", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -102885,7 +228272,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -102917,7 +228332,7 @@ "14:30", "15:20", "WLH 013 - William L. Harkness Hall 013", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -102936,7 +228351,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -102968,7 +228411,7 @@ "10:30", "11:20", "LC 204 - Linsly-Chittenden Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -102987,7 +228430,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -103019,7 +228490,7 @@ "13:30", "14:20", "WTS A39 - Watson Center 60 Sachem Street A39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -103038,7 +228509,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -103070,7 +228569,7 @@ "16:00", "16:50", "BASSLB L70 - Bass Library L70", - "https:\/\/map.yale.edu\/?id=1910#!m\/564574" + "https://map.yale.edu/?id=1910#!m/564574" ] ] }, @@ -103089,7 +228588,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -103121,7 +228648,7 @@ "16:00", "16:50", "WLH 004 - William L. Harkness Hall 004", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -103140,7 +228667,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -103178,7 +228733,7 @@ "10:30", "11:20", "YUAG AUD - Yale University Art Gallery AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/559918" + "https://map.yale.edu/?id=1910#!m/559918" ] ], "Thursday": [ @@ -103186,7 +228741,7 @@ "10:30", "11:20", "YUAG AUD - Yale University Art Gallery AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/559918" + "https://map.yale.edu/?id=1910#!m/559918" ] ] }, @@ -103197,17 +228752,272 @@ "Hu" ], "flags": [ - "YC English: 18th\/19th Century " + "YC English: 18th/19th Century " ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "Wednesday, May 10, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83973\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83973/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988645315170288, + 0.9995013475418091, + 0.9994977712631226, + 0.9989238381385803, + 0.9988598823547363, + 0.9986265897750854, + 0.9985405206680298, + 0.9985699653625488, + 0.9984795451164246, + 0.9988988637924194, + 0.9984782338142395, + 0.9981585144996643, + 0.9989047050476074, + 0.9984954595565796, + 0.9988179802894592, + 0.9986463189125061, + 0.9995079040527344, + 0.998422384262085, + 0.998690664768219, + 0.9989264607429504, + 0.9928857684135437, + 0.9980339407920837, + 0.9987726807594299, + 0.9987905621528625, + 0.9988983869552612, + 0.9987647533416748, + 0.9981508851051331, + 0.9987510442733765 + ], + "sentiment_counts": { + "POSITIVE": 24, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994978904724121, + 0.9995114803314209, + 0.9988923668861389, + 0.9951263666152954, + 0.999504804611206, + 0.9995065927505493, + 0.9989343285560608, + 0.9988994598388672, + 0.9989271759986877, + 0.9989057779312134, + 0.9987217783927917, + 0.9980921149253845, + 0.9972932934761047, + 0.9943355917930603, + 0.9987760186195374, + 0.9988168478012085, + 0.9988514184951782, + 0.9984951019287109, + 0.9809538125991821, + 0.9987886548042297, + 0.9994924068450928, + 0.997000515460968, + 0.96026211977005, + 0.9547531008720398, + 0.9995081424713135, + 0.9989193677902222, + 0.9987461566925049, + 0.9983938336372375, + 0.9989238381385803, + 0.9987725615501404, + 0.9988067150115967, + 0.9989264607429504, + 0.9989393353462219, + 0.992837131023407, + 0.9979708790779114 + ], + "sentiment_counts": { + "NEGATIVE": 12, + "POSITIVE": 23 + }, + "sentiment_distribution": { + "NEGATIVE": 0.34285714285714286, + "POSITIVE": 0.6571428571428571 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6571428571428571 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9995050430297852, + 0.9995149374008179, + 0.9965571165084839, + 0.9994890689849854, + 0.9995021820068359, + 0.9989191293716431, + 0.9974592328071594, + 0.9989193677902222, + 0.9988679885864258, + 0.9985646605491638, + 0.9968486428260803, + 0.9986795783042908, + 0.9987590312957764, + 0.9989320635795593, + 0.997117280960083, + 0.9994879961013794, + 0.9988529682159424, + 0.9995083808898926, + 0.9995042085647583, + 0.9988846182823181, + 0.9988957643508911, + 0.9987456798553467, + 0.9994978904724121, + 0.9989206790924072, + 0.9988595247268677, + 0.9988648891448975, + 0.9987157583236694, + 0.9989356398582458, + 0.9988073110580444, + 0.9989207983016968, + 0.9988800883293152 + ], + "sentiment_counts": { + "NEGATIVE": 9, + "POSITIVE": 22 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2903225806451613, + "POSITIVE": 0.7096774193548387 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7096774193548387 + ] + }, + "final_label": "POSITIVE", + "final_count": 69, + "final_proportion": 0.7340425531914894, + "final_counts": { + "POSITIVE": 69, + "NEGATIVE": 25 + }, + "final_distribution": { + "POSITIVE": 0.7340425531914894, + "NEGATIVE": 0.26595744680851063 + } + } }, { "season_code": "202301", @@ -103247,7 +229057,7 @@ "13:00", "14:15", "HQ 129 - Humanities Quadrangle 129", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -103255,7 +229065,7 @@ "13:00", "14:15", "HQ 129 - Humanities Quadrangle 129", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Tuesday": [ @@ -103263,7 +229073,7 @@ "19:00", "22:00", "HQ L01 - Humanities Quadrangle L01", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -103272,7 +229082,7 @@ "Hu" ], "flags": [ - "YC English: 20th\/21st Century", + "YC English: 20th/21st Century", "YC FILM: World Cinema", "YC CPLT: Early Modern", "Writing Skill (Opt.)" @@ -103282,10 +229092,137 @@ "classnotes": "Plus film screening on Tuesdays - time TBA", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84388\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84388/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988595247268677, + 0.9946152567863464, + 0.9960386753082275, + 0.9943276047706604, + 0.9984118938446045, + 0.9987768530845642, + 0.9988961219787598, + 0.9988929629325867, + 0.9989141225814819, + 0.998917818069458 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994737505912781, + 0.9989266991615295, + 0.9940938353538513, + 0.9989174604415894, + 0.9988634586334229, + 0.9989370703697205, + 0.9994889497756958, + 0.9974939823150635 + ], + "sentiment_counts": { + "NEGATIVE": 4, + "POSITIVE": 4 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987943172454834, + 0.9985396862030029, + 0.9987170696258545, + 0.9989104270935059, + 0.9989056587219238, + 0.9945524334907532, + 0.9987840056419373, + 0.9988294243812561, + 0.9989365935325623, + 0.9988839030265808, + 0.9988992214202881, + 0.9985396862030029 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9166666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 25, + "final_proportion": 0.8333333333333334, + "final_counts": { + "POSITIVE": 25, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + } + } }, { "season_code": "202301", @@ -103323,7 +229260,7 @@ "10:30", "11:20", "LC 102 - Linsly-Chittenden Hall 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -103331,7 +229268,7 @@ "10:30", "11:20", "LC 102 - Linsly-Chittenden Hall 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -103342,17 +229279,274 @@ "Hu" ], "flags": [ - "YC English: 20th\/21st Century" + "YC English: 20th/21st Century" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "Friday, May 5, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84002\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84002/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9962520003318787, + 0.9987724423408508, + 0.9988201260566711, + 0.9988813996315002, + 0.9988885521888733, + 0.998916506767273, + 0.9989332556724548, + 0.9989112615585327, + 0.9987566471099854, + 0.9989287257194519, + 0.9987062215805054, + 0.9980868101119995, + 0.9986463189125061, + 0.9948846697807312, + 0.9988886713981628, + 0.9993695616722107, + 0.9987879395484924, + 0.9988603591918945, + 0.9987605810165405, + 0.9971306920051575, + 0.9987145662307739, + 0.9988999366760254, + 0.9989193677902222, + 0.9988515377044678, + 0.9988577365875244, + 0.9989191293716431, + 0.9985929131507874, + 0.9989301562309265, + 0.9989043474197388, + 0.9987394213676453, + 0.9751425385475159, + 0.9988570213317871, + 0.9989290833473206, + 0.998902440071106 + ], + "sentiment_counts": { + "POSITIVE": 33, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9705882352941176, + "NEGATIVE": 0.029411764705882353 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9705882352941176 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.909452497959137, + 0.9987956285476685, + 0.9989326596260071, + 0.9978213310241699, + 0.9989240765571594, + 0.9988818764686584, + 0.9988681077957153, + 0.9989123344421387, + 0.9988604784011841, + 0.9994557499885559, + 0.9986262321472168, + 0.9989191293716431, + 0.9988981485366821, + 0.998880922794342, + 0.9945606589317322, + 0.9988111257553101, + 0.9989184141159058, + 0.998893678188324, + 0.9987496137619019, + 0.9987984895706177, + 0.9986704587936401, + 0.9994981288909912, + 0.9987940788269043, + 0.9988553524017334, + 0.9989338517189026, + 0.9989125728607178, + 0.9987850785255432, + 0.9988166093826294 + ], + "sentiment_counts": { + "POSITIVE": 24, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988387227058411, + 0.9988849759101868, + 0.9988982677459717, + 0.9989245533943176, + 0.9988609552383423, + 0.9989004135131836, + 0.9989191293716431, + 0.9989315867424011, + 0.9977080821990967, + 0.9986833930015564, + 0.998793363571167, + 0.9987427592277527, + 0.9988192915916443, + 0.9980549812316895, + 0.9980157613754272, + 0.997117280960083, + 0.9988784193992615, + 0.9989042282104492, + 0.9987724423408508, + 0.9987695813179016, + 0.9986287355422974, + 0.9989264607429504, + 0.998915433883667, + 0.9989099502563477, + 0.9994980096817017, + 0.998890221118927, + 0.9989243149757385, + 0.9988569021224976, + 0.9989268183708191, + 0.9931409955024719, + 0.9989209175109863, + 0.9990161657333374, + 0.9988601207733154 + ], + "sentiment_counts": { + "POSITIVE": 28, + "NEGATIVE": 5 + }, + "sentiment_distribution": { + "POSITIVE": 0.8484848484848485, + "NEGATIVE": 0.15151515151515152 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8484848484848485 + ] + }, + "final_label": "POSITIVE", + "final_count": 85, + "final_proportion": 0.8947368421052632, + "final_counts": { + "POSITIVE": 85, + "NEGATIVE": 10 + }, + "final_distribution": { + "POSITIVE": 0.8947368421052632, + "NEGATIVE": 0.10526315789473684 + } + } }, { "season_code": "202301", @@ -103384,7 +229578,7 @@ "15:30", "16:20", "WLH 004 - William L. Harkness Hall 004", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -103403,7 +229597,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -103435,7 +229657,7 @@ "16:30", "17:20", "WTS A39 - Watson Center 60 Sachem Street A39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -103454,7 +229676,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -103486,7 +229736,7 @@ "19:00", "19:50", "HQ 127 - Humanities Quadrangle 127", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -103505,7 +229755,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -103537,7 +229815,7 @@ "19:00", "19:50", "LC 213 - Linsly-Chittenden Hall 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -103556,7 +229834,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -103588,7 +229894,7 @@ "13:30", "14:20", "HQ C07 - Humanities Quadrangle C07", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -103607,7 +229913,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -103639,7 +229973,7 @@ "14:30", "15:20", "LC 105 - Linsly-Chittenden Hall 105", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -103658,7 +229992,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -103690,7 +230052,7 @@ "10:30", "11:20", "HQ 129 - Humanities Quadrangle 129", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -103709,7 +230071,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -103741,7 +230131,7 @@ "11:35", "12:25", "LC 213 - Linsly-Chittenden Hall 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -103760,7 +230150,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -103801,7 +230219,7 @@ "13:00", "14:15", "LC 203 - Linsly-Chittenden Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -103809,7 +230227,7 @@ "13:00", "14:15", "LC 203 - Linsly-Chittenden Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -103820,7 +230238,7 @@ "Hu" ], "flags": [ - "YC English: 18th\/19th Century ", + "YC English: 18th/19th Century ", "YC English: Junior Seminar" ], "regnotes": "", @@ -103828,10 +230246,151 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83978\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83978/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987886548042297, + 0.9989235997200012, + 0.9988014698028564, + 0.9988394379615784, + 0.9986526966094971, + 0.9989210367202759, + 0.9986774325370789, + 0.9989051818847656, + 0.9989080429077148, + 0.9922418594360352, + 0.9989215135574341, + 0.9976261258125305 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989221096038818, + 0.9989117383956909, + 0.9989357590675354, + 0.9986698627471924, + 0.9988628625869751, + 0.998884379863739, + 0.9989380240440369, + 0.9986473917961121, + 0.9988166093826294, + 0.996723473072052, + 0.9989194869995117, + 0.9988259673118591 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989031553268433, + 0.9988774657249451, + 0.9988613128662109, + 0.9989162683486938, + 0.9994534850120544, + 0.9989126920700073, + 0.9989141225814819, + 0.9987918734550476, + 0.9962354302406311, + 0.9986783862113953, + 0.9984385371208191, + 0.9956462979316711, + 0.9973617196083069 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9230769230769231, + "NEGATIVE": 0.07692307692307693 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9230769230769231 + ] + }, + "final_label": "POSITIVE", + "final_count": 36, + "final_proportion": 0.972972972972973, + "final_counts": { + "POSITIVE": 36, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.972972972972973, + "NEGATIVE": 0.02702702702702703 + } + } }, { "season_code": "202301", @@ -103871,7 +230430,7 @@ "13:00", "14:15", "LC 210 - Linsly-Chittenden Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -103879,7 +230438,7 @@ "13:00", "14:15", "LC 210 - Linsly-Chittenden Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -103900,10 +230459,103 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83982\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83982/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987292885780334, + 0.9872334003448486, + 0.9894639253616333, + 0.9984715580940247 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988622665405273, + 0.9988981485366821, + 0.9993638396263123 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989308714866638, + 0.9988476037979126, + 0.998931348323822, + 0.9986861348152161, + 0.9935492873191833, + 0.9994437098503113 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 0.7692307692307693, + "final_counts": { + "POSITIVE": 10, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.7692307692307693, + "NEGATIVE": 0.23076923076923078 + } + } }, { "season_code": "202301", @@ -103941,7 +230593,7 @@ "13:30", "15:20", "LC 205 - Linsly-Chittenden Hall 205", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -103957,10 +230609,135 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84308\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84308/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988031387329102, + 0.9985154271125793, + 0.9988970756530762, + 0.998778760433197, + 0.9988439083099365, + 0.9988909363746643, + 0.9994575381278992, + 0.9989257454872131 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989200830459595, + 0.9981003403663635, + 0.999491810798645, + 0.9985044002532959, + 0.9985190033912659, + 0.998889148235321, + 0.9973049163818359, + 0.9988300204277039, + 0.9983243346214294, + 0.998935878276825, + 0.9989047050476074 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9090909090909091 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988685846328735, + 0.9976344108581543, + 0.9995131492614746, + 0.9995098114013672, + 0.9989332556724548, + 0.9981753826141357, + 0.9989338517189026, + 0.9988911747932434, + 0.9989338517189026, + 0.9989112615585327 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.7, + "NEGATIVE": 0.3 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7 + ] + }, + "final_label": "POSITIVE", + "final_count": 24, + "final_proportion": 0.8275862068965517, + "final_counts": { + "POSITIVE": 24, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.8275862068965517, + "NEGATIVE": 0.1724137931034483 + } + } }, { "season_code": "202301", @@ -103998,7 +230775,7 @@ "9:00", "10:15", "LC 210 - Linsly-Chittenden Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -104006,7 +230783,7 @@ "9:00", "10:15", "LC 210 - Linsly-Chittenden Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -104020,13 +230797,128 @@ ], "regnotes": "", "rp_attr": "", - "classnotes": "This course may satisfy the Medieval literature requirement for English majors with permission from the instructor and the DUS. The English Distribution Request Form is available at https:\/\/english.yale.edu\/undergraduate\/deadlines-and-forms.", + "classnotes": "This course may satisfy the Medieval literature requirement for English majors with permission from the instructor and the DUS. The English Distribution Request Form is available at https://english.yale.edu/undergraduate/deadlines-and-forms.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83987\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83987/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9902218580245972, + 0.9972189664840698, + 0.9985235333442688, + 0.9988841414451599, + 0.998860239982605, + 0.9984574317932129, + 0.9976771473884583, + 0.9988632202148438 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998778760433197, + 0.9988656044006348, + 0.9989057779312134, + 0.9990161657333374, + 0.9987384676933289, + 0.9989318251609802 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998863935470581, + 0.9979015588760376, + 0.9982553124427795, + 0.9989050626754761, + 0.9988887906074524, + 0.9988487958908081, + 0.9924758076667786, + 0.9988442659378052, + 0.9968116879463196, + 0.998927891254425 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "final_label": "POSITIVE", + "final_count": 21, + "final_proportion": 0.875, + "final_counts": { + "POSITIVE": 21, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + } + } }, { "season_code": "202301", @@ -104080,10 +230972,95 @@ "classnotes": "This course will meet Friday's 1:30-5:20pm, Location TBD", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84937\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84937/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988860487937927, + 0.9989308714866638, + 0.9987865090370178, + 0.9987726807594299 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994779229164124, + 0.9989150762557983, + 0.9978777170181274 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9949069619178772, + 0.9988915324211121 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 8, + "final_proportion": 0.8888888888888888, + "final_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + } + } }, { "season_code": "202301", @@ -104121,7 +231098,7 @@ "13:00", "14:15", "LC 204 - Linsly-Chittenden Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -104129,7 +231106,7 @@ "13:00", "14:15", "LC 204 - Linsly-Chittenden Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -104138,7 +231115,7 @@ "Hu" ], "flags": [ - "YC English: 18th\/19th Century ", + "YC English: 18th/19th Century ", "YC English: Junior Seminar" ], "regnotes": "", @@ -104146,10 +231123,113 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83991\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83991/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989331364631653, + 0.998917818069458, + 0.9987866282463074, + 0.9989288449287415 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.993428647518158, + 0.9959776997566223, + 0.9856961965560913, + 0.9988784193992615, + 0.9989288449287415, + 0.9988928437232971, + 0.9909442663192749 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.7142857142857143, + "NEGATIVE": 0.2857142857142857 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7142857142857143 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989342093467712, + 0.9989049434661865, + 0.9989308714866638, + 0.9986662864685059, + 0.9989043474197388, + 0.9986396431922913, + 0.99874347448349 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 0.8888888888888888, + "final_counts": { + "POSITIVE": 16, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + } + } }, { "season_code": "202301", @@ -104187,7 +231267,7 @@ "11:35", "12:50", "LC 319 - Linsly-Chittenden Hall 319", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -104195,7 +231275,7 @@ "11:35", "12:50", "LC 319 - Linsly-Chittenden Hall 319", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -104206,7 +231286,7 @@ "Hu" ], "flags": [ - "YC English: 18th\/19th Century ", + "YC English: 18th/19th Century ", "YC English: Junior Seminar", "YC: THST Histories" ], @@ -104215,10 +231295,91 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83995\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83995/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988269209861755, + 0.9988962411880493 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989076852798462, + 0.998930037021637 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989330172538757, + 0.9989209175109863, + 0.9989223480224609, + 0.998340368270874 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 8, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 8 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -104255,7 +231416,7 @@ "11:35", "12:50", "LC 203 - Linsly-Chittenden Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -104263,7 +231424,7 @@ "11:35", "12:50", "LC 203 - Linsly-Chittenden Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -104274,7 +231435,7 @@ "Hu" ], "flags": [ - "YC English: 18th\/19th Century ", + "YC English: 18th/19th Century ", "YC English: Junior Seminar" ], "regnotes": "", @@ -104282,10 +231443,147 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83999\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83999/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989288449287415, + 0.9989107847213745, + 0.9988715052604675, + 0.9985646605491638, + 0.9987723231315613, + 0.9988675117492676, + 0.9988138675689697, + 0.9988512992858887, + 0.9988211989402771, + 0.9988120794296265, + 0.9989206790924072 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989227652549744, + 0.9988765120506287, + 0.9988489151000977, + 0.9988960027694702, + 0.9989198446273804, + 0.9988760352134705, + 0.9988332390785217, + 0.9988697171211243, + 0.9985907673835754, + 0.997175931930542, + 0.9985328912734985, + 0.9989163875579834 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989033937454224, + 0.998933732509613, + 0.998515784740448, + 0.9988044500350952, + 0.9988435506820679, + 0.9984351992607117, + 0.9988815188407898, + 0.9992176294326782, + 0.9989321827888489, + 0.9981753826141357, + 0.9989010095596313, + 0.9989078044891357 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9166666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 34, + "final_proportion": 0.9714285714285714, + "final_counts": { + "POSITIVE": 34, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9714285714285714, + "NEGATIVE": 0.02857142857142857 + } + } }, { "season_code": "202301", @@ -104323,7 +231621,7 @@ "13:30", "15:20", "LC 213 - Linsly-Chittenden Hall 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -104333,7 +231631,7 @@ ], "flags": [ "YC AMST: Junior Seminars", - "YC English: 20th\/21st Century", + "YC English: 20th/21st Century", "YC English: Junior Seminar" ], "regnotes": "", @@ -104341,10 +231639,95 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83277\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83277/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9994540810585022, + 0.9984342455863953, + 0.999257504940033 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 1 + }, + "sentiment_distribution": { + "NEGATIVE": 0.6666666666666666, + "POSITIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.6666666666666666 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.998863697052002, + 0.9988842606544495, + 0.9994994401931763 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9994906187057495, + 0.9987939596176147, + 0.9995080232620239 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 1 + }, + "sentiment_distribution": { + "NEGATIVE": 0.6666666666666666, + "POSITIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.6666666666666666 + ] + }, + "final_label": "NEGATIVE", + "final_count": 5, + "final_proportion": 0.5555555555555556, + "final_counts": { + "NEGATIVE": 5, + "POSITIVE": 4 + }, + "final_distribution": { + "NEGATIVE": 0.5555555555555556, + "POSITIVE": 0.4444444444444444 + } + } }, { "season_code": "202301", @@ -104388,7 +231771,7 @@ "15:30", "17:20", "HQ 129 - Humanities Quadrangle 129", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -104406,10 +231789,129 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84797\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84797/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989339709281921, + 0.9838201999664307, + 0.9989207983016968, + 0.9988794922828674, + 0.9987175464630127, + 0.9987875819206238, + 0.9988642930984497, + 0.9988080263137817, + 0.9988754391670227 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989261031150818, + 0.9988849759101868, + 0.9964867830276489, + 0.9989225268363953, + 0.997114896774292, + 0.9988021850585938, + 0.9988846182823181, + 0.9984984397888184, + 0.998715877532959 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989318251609802, + 0.997117280960083, + 0.9994094371795654, + 0.9989306330680847, + 0.9989271759986877, + 0.9971302151679993, + 0.9983568787574768, + 0.9989226460456848 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "final_label": "POSITIVE", + "final_count": 24, + "final_proportion": 0.9230769230769231, + "final_counts": { + "POSITIVE": 24, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9230769230769231, + "NEGATIVE": 0.07692307692307693 + } + } }, { "season_code": "202301", @@ -104446,7 +231948,7 @@ "13:30", "15:20", "LC 212 - Linsly-Chittenden Hall 212", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -104457,7 +231959,7 @@ "Hu" ], "flags": [ - "YC English: 18th\/19th Century ", + "YC English: 18th/19th Century ", "YC English: Senior Seminar" ], "regnotes": "", @@ -104465,10 +231967,101 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84007\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84007/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982942938804626, + 0.9989380240440369, + 0.9989134073257446, + 0.9988510608673096 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988240599632263, + 0.9989368319511414, + 0.9989244341850281, + 0.9989327788352966 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982553124427795, + 0.9989296793937683, + 0.9985964894294739, + 0.9988858103752136, + 0.9989243149757385 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 13 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -104505,7 +232098,7 @@ "13:30", "15:20", "LC 205 - Linsly-Chittenden Hall 205", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -104524,10 +232117,107 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84013\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84013/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988771080970764, + 0.9988232254981995, + 0.9982751607894897, + 0.9987280964851379 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998918890953064, + 0.9989045858383179, + 0.9995062351226807, + 0.9992603659629822, + 0.9989282488822937 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.6, + "NEGATIVE": 0.4 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987358450889587, + 0.9989318251609802, + 0.9931307435035706, + 0.9994926452636719, + 0.9983665347099304, + 0.9989269375801086 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 0.8, + "final_counts": { + "POSITIVE": 12, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + } + } }, { "season_code": "202301", @@ -104564,7 +232254,7 @@ "13:30", "15:20", "LC 213 - Linsly-Chittenden Hall 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -104573,7 +232263,7 @@ "Hu" ], "flags": [ - "YC English: 20th\/21st Century", + "YC English: 20th/21st Century", "YC English: Senior Seminar" ], "regnotes": "", @@ -104581,10 +232271,111 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84018\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84018/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988558292388916, + 0.9987825751304626, + 0.9988700747489929, + 0.9988831877708435, + 0.9986761212348938 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989086389541626, + 0.9984201192855835, + 0.9981663823127747, + 0.9989123344421387, + 0.9989238381385803, + 0.9930428266525269 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989235997200012, + 0.9981922507286072, + 0.9984645843505859, + 0.9987385869026184, + 0.9989307522773743, + 0.9989327788352966, + 0.997117280960083 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 18 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -104622,7 +232413,7 @@ "9:25", "11:15", "LC 213 - Linsly-Chittenden Hall 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -104631,9 +232422,9 @@ "Hu" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", - "YC English: 20th\/21st Century", + "YC English: 20th/21st Century", "YC English: Junior Seminar" ], "regnotes": "", @@ -104641,10 +232432,93 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83371\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83371/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982315897941589, + 0.998418927192688 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9980140924453735, + 0.9989123344421387, + 0.9954847097396851 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998816728591919, + 0.9985755681991577, + 0.9988188147544861 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 0.875, + "final_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + } + } }, { "season_code": "202301", @@ -104682,7 +232556,7 @@ "11:35", "12:50", "WALL81 301 - 81 Wall Street 301", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ], "Wednesday": [ @@ -104690,7 +232564,7 @@ "11:35", "12:50", "WALL81 301 - 81 Wall Street 301", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -104699,7 +232573,7 @@ "Hu" ], "flags": [ - "YC English: 18th\/19th Century ", + "YC English: 18th/19th Century ", "YC English: Junior Seminar" ], "regnotes": "", @@ -104707,10 +232581,111 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83289\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83289/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988834261894226, + 0.9986984729766846, + 0.9909817576408386, + 0.9922723770141602, + 0.9989001750946045, + 0.9977837204933167 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989211559295654, + 0.9988718628883362, + 0.998814582824707, + 0.9962582588195801, + 0.9989333748817444, + 0.9988905787467957 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989332556724548, + 0.9989173412322998, + 0.9988560676574707, + 0.9987591505050659, + 0.9988998174667358 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 0.9411764705882353, + "final_counts": { + "POSITIVE": 16, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9411764705882353, + "NEGATIVE": 0.058823529411764705 + } + } }, { "season_code": "202301", @@ -104748,7 +232723,7 @@ "13:30", "15:20", "LC 208 - Linsly-Chittenden Hall 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -104759,7 +232734,7 @@ "Hu" ], "flags": [ - "YC English: 20th\/21st Century", + "YC English: 20th/21st Century", "YC English: Senior Seminar" ], "regnotes": "", @@ -104767,10 +232742,123 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84022\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84022/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987741112709045, + 0.9988027811050415, + 0.9988124370574951, + 0.9988706707954407, + 0.9988915324211121, + 0.9989103078842163, + 0.9988864064216614, + 0.998676598072052 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988481998443604, + 0.9989010095596313, + 0.9875633716583252, + 0.9988924860954285, + 0.9988652467727661, + 0.998863697052002, + 0.998933732509613, + 0.9989350438117981 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9927828311920166, + 0.9989331364631653, + 0.994300365447998, + 0.9987596273422241, + 0.998928964138031, + 0.9989309906959534, + 0.9982971549034119 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 6 + }, + "sentiment_distribution": { + "NEGATIVE": 0.14285714285714285, + "POSITIVE": 0.8571428571428571 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "final_label": "POSITIVE", + "final_count": 22, + "final_proportion": 0.9565217391304348, + "final_counts": { + "POSITIVE": 22, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9565217391304348, + "NEGATIVE": 0.043478260869565216 + } + } }, { "season_code": "202301", @@ -104803,7 +232891,7 @@ ], "flags": [ "YC AMST: Gateway Courses", - "YC English: 20th\/21st Century", + "YC English: 20th/21st Century", "YC English: Junior Seminar" ], "regnotes": "", @@ -104814,7 +232902,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -104853,7 +232969,7 @@ "14:30", "15:45", "LC 204 - Linsly-Chittenden Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -104861,7 +232977,7 @@ "14:30", "15:45", "LC 204 - Linsly-Chittenden Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -104872,7 +232988,7 @@ "Hu" ], "flags": [ - "YC English: 20th\/21st Century", + "YC English: 20th/21st Century", "YC English: Junior Seminar" ], "regnotes": "", @@ -104880,10 +232996,133 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85251\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/85251/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988866448402405, + 0.9981110095977783, + 0.9987994432449341, + 0.9988542795181274, + 0.9989246726036072, + 0.9988991022109985, + 0.9988576173782349, + 0.9989356398582458 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988665580749512, + 0.998231828212738, + 0.960239589214325, + 0.9988862872123718, + 0.9988569021224976, + 0.9987461566925049, + 0.9988692402839661, + 0.9988584518432617, + 0.9989084005355835, + 0.9977462887763977 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988058805465698, + 0.998923122882843, + 0.9986407160758972, + 0.9988548755645752, + 0.9989252686500549, + 0.9985023736953735, + 0.9987090826034546, + 0.9986791014671326, + 0.9989286065101624, + 0.998903751373291 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 27, + "final_proportion": 0.9642857142857143, + "final_counts": { + "POSITIVE": 27, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9642857142857143, + "NEGATIVE": 0.03571428571428571 + } + } }, { "season_code": "202301", @@ -104916,7 +233155,7 @@ "Hu" ], "flags": [ - "YC English: 20th\/21st Century", + "YC English: 20th/21st Century", "YC English: Junior Seminar" ], "regnotes": "", @@ -104927,7 +233166,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -104965,7 +233232,7 @@ "15:30", "17:20", "WALL81 401 - 81 Wall Street 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -104974,7 +233241,7 @@ "Hu" ], "flags": [ - "YC English: 20th\/21st Century", + "YC English: 20th/21st Century", "YC English: Junior Seminar" ], "regnotes": "", @@ -104982,10 +233249,107 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85879\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85879/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988988637924194, + 0.998790442943573, + 0.9987694621086121, + 0.9987491369247437, + 0.9988765120506287 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988473653793335, + 0.9988240599632263, + 0.9988239407539368, + 0.9989196062088013 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989277720451355, + 0.9982553124427795, + 0.9989303946495056, + 0.9982860684394836, + 0.9988473653793335, + 0.9989225268363953, + 0.9979793429374695 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 16 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -105023,7 +233387,7 @@ "13:30", "15:20", "LC 205 - Linsly-Chittenden Hall 205", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -105032,7 +233396,7 @@ "Hu" ], "flags": [ - "YC English: 20th\/21st Century", + "YC English: 20th/21st Century", "YC English: Senior Seminar", "YC: THST Histories" ], @@ -105041,10 +233405,111 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84942\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84942/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989136457443237, + 0.9988505840301514, + 0.9986504912376404, + 0.9988893866539001, + 0.9988561868667603 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988980293273926, + 0.9987878203392029, + 0.9929071664810181, + 0.9985846281051636, + 0.9989281296730042, + 0.9987493753433228 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988020658493042, + 0.9989330172538757, + 0.9980520009994507, + 0.9961864352226257, + 0.9989280104637146, + 0.9989174604415894 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 0.9411764705882353, + "final_counts": { + "POSITIVE": 16, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9411764705882353, + "NEGATIVE": 0.058823529411764705 + } + } }, { "season_code": "202301", @@ -105085,7 +233550,7 @@ "15:30", "17:20", "HQ 127 - Humanities Quadrangle 127", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Saturday": [ @@ -105093,7 +233558,7 @@ "19:00", "22:00", "HQ L01 - Humanities Quadrangle L01", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -105102,7 +233567,7 @@ "Hu" ], "flags": [ - "YC English: 20th\/21st Century", + "YC English: 20th/21st Century", "YC English: Junior Seminar", "YC FILM: Critical Studies" ], @@ -105111,10 +233576,99 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85688\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85688/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989221096038818, + 0.9986999034881592, + 0.998695433139801, + 0.9988186955451965 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989305138587952, + 0.9988945126533508, + 0.9967267513275146, + 0.9988848567008972 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988598823547363, + 0.9987875819206238, + 0.9988920092582703, + 0.9989221096038818 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 12 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -105152,7 +233706,7 @@ "13:00", "14:15", "WALL81 101 - 81 Wall Street 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ], "Thursday": [ @@ -105160,7 +233714,7 @@ "13:00", "14:15", "WALL81 101 - 81 Wall Street 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -105171,7 +233725,7 @@ "Hu" ], "flags": [ - "YC English: 20th\/21st Century", + "YC English: 20th/21st Century", "YC English: Junior Seminar" ], "regnotes": "", @@ -105179,10 +233733,115 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85873\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85873/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.99885094165802, + 0.9988707900047302, + 0.9988459348678589, + 0.9989080429077148, + 0.9988571405410767, + 0.9987119436264038 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989129304885864, + 0.9989066123962402, + 0.9983868598937988, + 0.9989094734191895, + 0.9989210367202759, + 0.998893678188324, + 0.9986422657966614 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989295601844788, + 0.9989019632339478, + 0.9989066123962402, + 0.9989245533943176, + 0.9989067316055298, + 0.9989092350006104, + 0.9988833069801331 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 20 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -105222,7 +233881,7 @@ "15:30", "17:20", "LC 213 - Linsly-Chittenden Hall 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -105233,7 +233892,7 @@ "Hu" ], "flags": [ - "YC English: 20th\/21st Century", + "YC English: 20th/21st Century", "YC English: Senior Seminar" ], "regnotes": "", @@ -105241,10 +233900,115 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84033\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84033/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988672733306885, + 0.9989069700241089, + 0.9989054203033447, + 0.9988871216773987, + 0.9988522529602051 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988466501235962, + 0.9988954067230225, + 0.9988530874252319, + 0.9989056587219238, + 0.9989100694656372, + 0.9989363551139832, + 0.9988939166069031 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.99883633852005, + 0.9988934397697449, + 0.9979865550994873, + 0.9989062547683716, + 0.9981436729431152, + 0.9989215135574341, + 0.9989238381385803, + 0.9989191293716431 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 20 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -105284,7 +234048,7 @@ "14:30", "15:45", "LC 203 - Linsly-Chittenden Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -105292,7 +234056,7 @@ "14:30", "15:45", "LC 203 - Linsly-Chittenden Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -105310,10 +234074,107 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83951\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83951/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998479425907135, + 0.9988629817962646, + 0.9987003803253174 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9718410968780518, + 0.99888676404953, + 0.9994925260543823, + 0.9981603026390076, + 0.998890221118927, + 0.9762670993804932 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.998927652835846, + 0.9988896250724792, + 0.9992108345031738, + 0.9953916072845459, + 0.9986447691917419, + 0.9995076656341553 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 0.8, + "final_counts": { + "POSITIVE": 12, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + } + } }, { "season_code": "202301", @@ -105350,7 +234211,7 @@ "14:30", "15:45", "LC 210 - Linsly-Chittenden Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -105358,7 +234219,7 @@ "14:30", "15:45", "LC 210 - Linsly-Chittenden Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -105374,10 +234235,123 @@ "classnotes": "Students interested in taking this course should submit a request for instructor permission through YCS.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83954\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83954/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988883137702942, + 0.9989356398582458, + 0.998286783695221, + 0.998832643032074, + 0.998488187789917, + 0.9983855485916138, + 0.9987596273422241, + 0.9989156723022461 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989193677902222, + 0.9989036321640015, + 0.9988846182823181, + 0.9988228678703308, + 0.9988304972648621, + 0.9988232254981995, + 0.9988535642623901 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989069700241089, + 0.9988539218902588, + 0.9989238381385803, + 0.9988755583763123, + 0.9988968372344971, + 0.9982525706291199, + 0.9982553124427795, + 0.9987967014312744, + 0.9987493753433228 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 24, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 24 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -105414,7 +234388,7 @@ "15:30", "17:30", "LC 319 - Linsly-Chittenden Hall 319", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -105425,13 +234399,110 @@ ], "regnotes": "", "rp_attr": "", - "classnotes": "See the English department website for a list of creative writing and journalism courses that require the submission of an application by noon on November 4. https:\/\/english.yale.edu\/undergraduate\/courses\/creative-writing-journalism-courses", + "classnotes": "See the English department website for a list of creative writing and journalism courses that require the submission of an application by noon on November 4. https://english.yale.edu/undergraduate/courses/creative-writing-journalism-courses", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83956\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83956/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988446235656738, + 0.9989103078842163, + 0.9982958436012268, + 0.9989327788352966, + 0.9987962245941162 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998908519744873, + 0.9989302754402161, + 0.9985609650611877, + 0.9982813596725464, + 0.9988611936569214 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986562728881836, + 0.9989252686500549, + 0.9988992214202881, + 0.998846173286438, + 0.9988980293273926, + 0.998913049697876 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 16 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -105466,13 +234537,41 @@ ], "regnotes": "", "rp_attr": "", - "classnotes": "This course may satisfy the junior seminar and 20th\/21st century requirements for students in the English major, with permission from the instructor and DUS. Download the English Distribution Request form at https:\/\/english.yale.edu\/undergraduate\/deadlines-and-forms.\n\nSee the English department website for a list of creative writing and journalism courses that require the submission of an application by noon on April 11. https:\/\/english.yale.edu\/undergraduate\/courses\/creative-writing-journalism-courses", + "classnotes": "This course may satisfy the junior seminar and 20th/21st century requirements for students in the English major, with permission from the instructor and DUS. Download the English Distribution Request form at https://english.yale.edu/undergraduate/deadlines-and-forms.\n\nSee the English department website for a list of creative writing and journalism courses that require the submission of an application by noon on April 11. https://english.yale.edu/undergraduate/courses/creative-writing-journalism-courses", "final_exam": "No regular final examination", "course_home_url": "", "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -105511,7 +234610,7 @@ "11:35", "12:50", "LC 213 - Linsly-Chittenden Hall 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -105519,7 +234618,7 @@ "11:35", "12:50", "LC 213 - Linsly-Chittenden Hall 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -105539,10 +234638,109 @@ "classnotes": "Students interested in taking this course should submit a request for instructor permission through YCS.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83963\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83963/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988842606544495, + 0.9886834025382996, + 0.9987492561340332, + 0.9988490343093872, + 0.9987173080444336, + 0.9985437393188477 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994897842407227, + 0.9972557425498962, + 0.9977363348007202, + 0.9988241791725159, + 0.9983092546463013 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 4 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2, + "POSITIVE": 0.8 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989006519317627, + 0.9988248944282532, + 0.9989137649536133, + 0.9987574815750122, + 0.998843789100647 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 0.9375, + "final_counts": { + "POSITIVE": 15, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9375, + "NEGATIVE": 0.0625 + } + } }, { "season_code": "202301", @@ -105579,7 +234777,7 @@ "15:30", "17:20", "LC 213 - Linsly-Chittenden Hall 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -105593,10 +234791,115 @@ "classnotes": "Students interested in taking this course should submit a request for instructor permission through YCS.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83968\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83968/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988735318183899, + 0.9986664056777954, + 0.9962117671966553, + 0.9988394379615784, + 0.9986035227775574, + 0.9985253214836121, + 0.9988846182823181 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988856911659241, + 0.9988971948623657, + 0.9989110231399536, + 0.9988960027694702, + 0.9988910555839539, + 0.9988901019096375 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989271759986877, + 0.9988310933113098, + 0.9981386661529541, + 0.998925507068634, + 0.9989252686500549, + 0.9989299178123474, + 0.9989221096038818 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 20 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -105633,7 +234936,7 @@ "13:30", "15:20", "LC 206 - Linsly-Chittenden Hall 206", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -105644,13 +234947,130 @@ ], "regnotes": "", "rp_attr": "", - "classnotes": "See the English department website for a list of creative writing and journalism courses that require the submission of an application by noon on November 4. https:\/\/english.yale.edu\/undergraduate\/courses\/creative-writing-journalism-courses", + "classnotes": "See the English department website for a list of creative writing and journalism courses that require the submission of an application by noon on November 4. https://english.yale.edu/undergraduate/courses/creative-writing-journalism-courses", "final_exam": "No regular final examination", "course_home_url": "", "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989362359046936, + 0.9988706707954407, + 0.9988471269607544, + 0.9988183379173279, + 0.9989346861839294, + 0.9987698197364807, + 0.9989261031150818, + 0.9989223480224609 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988794922828674, + 0.9989340901374817, + 0.9988061189651489, + 0.9983318448066711, + 0.9989346861839294, + 0.9987949132919312, + 0.9989239573478699, + 0.9988492727279663 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989153146743774, + 0.9989181756973267, + 0.9989375472068787, + 0.9989275336265564, + 0.9986593723297119, + 0.9989308714866638, + 0.9987379908561707, + 0.9989263415336609, + 0.9989277720451355, + 0.9988435506820679 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 26, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 26 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -105687,7 +235107,7 @@ "11:35", "12:50", "SML M104A - Sterling Memorial Library M104A", - "https:\/\/map.yale.edu\/?id=1910#!m\/563698" + "https://map.yale.edu/?id=1910#!m/563698" ] ], "Wednesday": [ @@ -105695,7 +235115,7 @@ "11:35", "12:50", "SML M104A - Sterling Memorial Library M104A", - "https:\/\/map.yale.edu\/?id=1910#!m\/563698" + "https://map.yale.edu/?id=1910#!m/563698" ] ] }, @@ -105708,13 +235128,132 @@ ], "regnotes": "", "rp_attr": "", - "classnotes": "See the English department website for a list of creative writing and journalism courses that require the submission of an application by noon on November 4. https:\/\/english.yale.edu\/undergraduate\/courses\/creative-writing-journalism-courses", + "classnotes": "See the English department website for a list of creative writing and journalism courses that require the submission of an application by noon on November 4. https://english.yale.edu/undergraduate/courses/creative-writing-journalism-courses", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83979\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83979/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988019466400146, + 0.9981420040130615, + 0.9989203214645386, + 0.9987340569496155, + 0.9989140033721924, + 0.9983720183372498, + 0.9989209175109863, + 0.998706579208374, + 0.9988721013069153 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989147186279297, + 0.9987648725509644, + 0.9988861680030823, + 0.9988818764686584, + 0.9988679885864258, + 0.9988662004470825, + 0.9988240599632263 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998925507068634, + 0.9950716495513916, + 0.9989086389541626, + 0.9989277720451355, + 0.9988994598388672, + 0.9988856911659241, + 0.9989345669746399, + 0.9989213943481445, + 0.998898983001709, + 0.9989204406738281 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 25, + "final_proportion": 0.9615384615384616, + "final_counts": { + "POSITIVE": 25, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9615384615384616, + "NEGATIVE": 0.038461538461538464 + } + } }, { "season_code": "202301", @@ -105753,7 +235292,7 @@ "9:25", "11:15", "LC 213 - Linsly-Chittenden Hall 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -105762,7 +235301,7 @@ "Hu" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC English: Creative Writing" ], @@ -105771,10 +235310,117 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84298\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84298/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987819790840149, + 0.9988090991973877, + 0.998837411403656, + 0.9989269375801086, + 0.9988377690315247, + 0.9989253878593445, + 0.9983886480331421 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989109039306641, + 0.9989126920700073, + 0.9988999366760254, + 0.9989186525344849, + 0.9989385008811951, + 0.9989142417907715, + 0.998909592628479 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982553124427795, + 0.9989036321640015, + 0.9989383816719055, + 0.9988756775856018, + 0.9989141225814819, + 0.9989344477653503, + 0.9985232949256897 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 21, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 21 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -105811,7 +235457,7 @@ "13:30", "15:20", "DAVIES AUD - Davies Auditorium, Becton Ctr AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ] }, @@ -105825,18 +235471,503 @@ ], "regnotes": "", "rp_attr": "", - "classnotes": "See the English department website for a list of creative writing and journalism courses that require the submission of an application by noon on November 4. https:\/\/english.yale.edu\/undergraduate\/courses\/creative-writing-journalism-courses", - "final_exam": "No regular final examination", - "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83985\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "", - "description": "A seminar\/workshop\/lecture in first-person writing. Students explore a series of themes (e.g., family, love, loss, identity) both by writing about their own lives and by reading American and British memoirs, autobiographies, personal essays, and letters. An older work, often from the nineteenth or early twentieth century, is paired each week with a more recent one on the same theme.", + "classnotes": "See the English department website for a list of creative writing and journalism courses that require the submission of an application by noon on November 4. https://english.yale.edu/undergraduate/courses/creative-writing-journalism-courses", + "final_exam": "No regular final examination", + "course_home_url": "", + "syllabus_url": "https://yale.instructure.com/courses/83985/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987072944641113, + 0.9986357092857361, + 0.997322142124176, + 0.9988272786140442, + 0.9983036518096924, + 0.995546817779541, + 0.9988521337509155, + 0.998915433883667, + 0.9989157915115356, + 0.9988987445831299, + 0.9975294470787048, + 0.998331606388092, + 0.9989230036735535, + 0.9983555674552917, + 0.9989282488822937, + 0.994870662689209, + 0.9987008571624756, + 0.9989309906959534, + 0.9989014863967896, + 0.998611569404602, + 0.9988783001899719, + 0.9986284971237183, + 0.9988002777099609, + 0.998691737651825, + 0.9987894892692566, + 0.9988288283348083, + 0.9988825917243958, + 0.9987630844116211, + 0.9986234903335571, + 0.9987672567367554, + 0.9989286065101624, + 0.9966564178466797, + 0.9995050430297852, + 0.9985201954841614, + 0.9987919926643372, + 0.9977260231971741, + 0.9987170696258545, + 0.9988327622413635, + 0.9988505840301514, + 0.9988915324211121, + 0.9924652576446533, + 0.9988677501678467, + 0.9988610744476318, + 0.9988811612129211, + 0.9987760186195374, + 0.9988940358161926, + 0.9994866847991943, + 0.9982821941375732, + 0.9984865188598633, + 0.9987861514091492, + 0.9988738894462585, + 0.9989182949066162, + 0.9987136125564575, + 0.9987637996673584, + 0.9987697005271912, + 0.9982411861419678, + 0.9989047050476074, + 0.998607337474823, + 0.9989217519760132, + 0.9987760186195374 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 57 + }, + "sentiment_distribution": { + "NEGATIVE": 0.05, + "POSITIVE": 0.95 + }, + "sentiment_overall": [ + "POSITIVE", + 0.95 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9993740916252136, + 0.9989253878593445, + 0.9963132739067078, + 0.9988446235656738, + 0.9807104468345642, + 0.9988287091255188, + 0.9984880685806274, + 0.9979967474937439, + 0.9989049434661865, + 0.9986836314201355, + 0.9975558519363403, + 0.999487042427063, + 0.9965223073959351, + 0.99871826171875, + 0.9988695979118347, + 0.9962154030799866, + 0.9986819624900818, + 0.9987450838088989, + 0.9903843402862549, + 0.9987277388572693, + 0.9987955093383789, + 0.998835027217865, + 0.9988092184066772, + 0.9984784722328186, + 0.9988490343093872, + 0.9987492561340332, + 0.9988905787467957, + 0.998784601688385, + 0.9988481998443604, + 0.9988359808921814, + 0.9994692206382751, + 0.9977306723594666, + 0.9989049434661865, + 0.998299777507782, + 0.9989387392997742, + 0.9995095729827881, + 0.9915000796318054, + 0.9993711113929749, + 0.9987573623657227, + 0.9994718432426453, + 0.9965445399284363, + 0.9994785189628601, + 0.9995001554489136, + 0.9988705515861511, + 0.9994789958000183, + 0.9988963603973389, + 0.991891622543335, + 0.9966210126876831, + 0.9880470037460327, + 0.9988545179367065, + 0.9756309986114502, + 0.9942639470100403, + 0.9993988275527954, + 0.9987497329711914, + 0.9985872507095337, + 0.9987637996673584, + 0.9963144659996033, + 0.9986525177955627, + 0.9989247918128967, + 0.998552143573761, + 0.9988884329795837, + 0.9988906979560852, + 0.9980408549308777, + 0.9947052597999573, + 0.9648224115371704, + 0.9988672733306885, + 0.9964298605918884, + 0.9988549947738647, + 0.9989185333251953, + 0.9986591339111328, + 0.9994000196456909, + 0.9992146492004395 + ], + "sentiment_counts": { + "NEGATIVE": 23, + "POSITIVE": 49 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3194444444444444, + "POSITIVE": 0.6805555555555556 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6805555555555556 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9995023012161255, + 0.9983974099159241, + 0.9982498288154602, + 0.998928964138031, + 0.9983243346214294, + 0.9988773465156555, + 0.9988716244697571, + 0.998885452747345, + 0.9989145994186401, + 0.9989334940910339, + 0.997117280960083, + 0.9989027976989746, + 0.9867987036705017, + 0.9983750581741333, + 0.9982553124427795, + 0.9987744688987732, + 0.9994637370109558, + 0.9982269406318665, + 0.9981600642204285, + 0.9944003224372864, + 0.9982553124427795, + 0.9988251328468323, + 0.998770534992218, + 0.9901081323623657, + 0.9987673759460449, + 0.9893346428871155, + 0.9988582134246826, + 0.9987999200820923, + 0.9989340901374817, + 0.9982478618621826, + 0.9988516569137573, + 0.9989141225814819, + 0.9995064735412598, + 0.9994983673095703, + 0.9988682270050049, + 0.9984315037727356, + 0.9989328980445862, + 0.9989008903503418, + 0.9995030164718628, + 0.9778835773468018, + 0.9989068508148193, + 0.9983487129211426, + 0.9949812293052673, + 0.9881533980369568, + 0.9989362359046936, + 0.9980016350746155, + 0.9989290833473206, + 0.9988634586334229, + 0.9976365566253662, + 0.9988481998443604, + 0.9994916915893555, + 0.9984104633331299, + 0.9982553124427795, + 0.9956141710281372, + 0.9989296793937683, + 0.9989084005355835, + 0.9980168342590332, + 0.9995050430297852, + 0.9981706142425537, + 0.9957444071769714, + 0.9939371347427368, + 0.9989006519317627, + 0.9983568787574768, + 0.9988560676574707, + 0.9989275336265564, + 0.9979121088981628, + 0.9988963603973389, + 0.9976582527160645, + 0.9988996982574463, + 0.998401939868927, + 0.9977067708969116, + 0.9899690747261047, + 0.9988837838172913, + 0.9988677501678467, + 0.9994908571243286, + 0.9958113431930542, + 0.9981922507286072 + ], + "sentiment_counts": { + "NEGATIVE": 18, + "POSITIVE": 59 + }, + "sentiment_distribution": { + "NEGATIVE": 0.23376623376623376, + "POSITIVE": 0.7662337662337663 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7662337662337663 + ] + }, + "final_label": "POSITIVE", + "final_count": 165, + "final_proportion": 0.7894736842105263, + "final_counts": { + "NEGATIVE": 44, + "POSITIVE": 165 + }, + "final_distribution": { + "NEGATIVE": 0.21052631578947367, + "POSITIVE": 0.7894736842105263 + } + } + }, + { + "season_code": "202301", + "requirements": "", + "description": "A seminar/workshop/lecture in first-person writing. Students explore a series of themes (e.g., family, love, loss, identity) both by writing about their own lives and by reading American and British memoirs, autobiographies, personal essays, and letters. An older work, often from the nineteenth or early twentieth century, is paired each week with a more recent one on the same theme.", "short_title": "Writing about Oneself", "title": "Writing about Oneself", "school": "YC", @@ -105868,7 +235999,7 @@ "14:30", "17:30", "LC 212 - Linsly-Chittenden Hall 212", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -105883,13 +236014,102 @@ ], "regnotes": "", "rp_attr": "", - "classnotes": "See the English department website for a list of creative writing and journalism courses that require the submission of an application by noon on November 4. https:\/\/english.yale.edu\/undergraduate\/courses\/creative-writing-journalism-courses", + "classnotes": "See the English department website for a list of creative writing and journalism courses that require the submission of an application by noon on November 4. https://english.yale.edu/undergraduate/courses/creative-writing-journalism-courses", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83992\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83992/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988874793052673, + 0.9988903403282166, + 0.9988753199577332, + 0.9988834261894226 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989238381385803, + 0.9989174604415894, + 0.998896598815918, + 0.998916745185852 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989318251609802, + 0.9986093044281006, + 0.9986164569854736, + 0.9980523586273193 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 12 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -105930,7 +236150,7 @@ "13:00", "14:15", "HQ 213 - Humanities Quadrangle 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -105938,7 +236158,7 @@ "13:00", "14:15", "HQ 213 - Humanities Quadrangle 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -105958,10 +236178,107 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84410\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84410/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.996685802936554, + 0.9981920123100281, + 0.9987937211990356, + 0.9988003969192505, + 0.9988400340080261 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987272620201111, + 0.9989301562309265, + 0.9989311099052429, + 0.9989060163497925, + 0.9989307522773743 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987375140190125, + 0.9988834261894226, + 0.9989318251609802, + 0.9989001750946045, + 0.9988529682159424, + 0.9989380240440369 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 16 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -105998,7 +236315,7 @@ "15:30", "17:20", "LC 213 - Linsly-Chittenden Hall 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -106009,13 +236326,116 @@ ], "regnotes": "", "rp_attr": "This course meets during the Reading Period: the week between the last week of classes and finals week. Meets Reading Period", - "classnotes": "See the English department website for a list of creative writing and journalism courses that require the submission of an application by noon on November 4. https:\/\/english.yale.edu\/undergraduate\/courses\/creative-writing-journalism-courses", + "classnotes": "See the English department website for a list of creative writing and journalism courses that require the submission of an application by noon on November 4. https://english.yale.edu/undergraduate/courses/creative-writing-journalism-courses", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83997\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83997/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987186193466187, + 0.9988982677459717, + 0.9975546002388, + 0.9988856911659241, + 0.9986680746078491, + 0.9987722039222717 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9971410036087036, + 0.9988304972648621, + 0.9960415363311768, + 0.9856396913528442, + 0.994679868221283 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988548755645752, + 0.9989374279975891, + 0.9994972944259644, + 0.9994950294494629, + 0.9947153925895691, + 0.9989179372787476, + 0.9989100694656372 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.7142857142857143, + "NEGATIVE": 0.2857142857142857 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7142857142857143 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 0.8888888888888888, + "final_counts": { + "POSITIVE": 16, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + } + } }, { "season_code": "202301", @@ -106052,7 +236472,7 @@ "15:30", "17:20", "LC 212 - Linsly-Chittenden Hall 212", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -106063,13 +236483,112 @@ ], "regnotes": "", "rp_attr": "", - "classnotes": "See the English department website for a list of creative writing and journalism courses that require the submission of an application by noon on November 4. https:\/\/english.yale.edu\/undergraduate\/courses\/creative-writing-journalism-courses", + "classnotes": "See the English department website for a list of creative writing and journalism courses that require the submission of an application by noon on November 4. https://english.yale.edu/undergraduate/courses/creative-writing-journalism-courses", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84004\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84004/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9977521300315857, + 0.9971590042114258, + 0.9988697171211243, + 0.9988740086555481, + 0.998908281326294 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988582134246826, + 0.9918361306190491, + 0.9989041090011597, + 0.9989264607429504, + 0.9987127780914307 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986642599105835, + 0.9988988637924194, + 0.9983124732971191, + 0.9989377856254578, + 0.9989243149757385, + 0.9988409876823425 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 0.9375, + "final_counts": { + "POSITIVE": 15, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9375, + "NEGATIVE": 0.0625 + } + } }, { "season_code": "202301", @@ -106108,7 +236627,7 @@ "13:30", "16:30", "LC 105 - Linsly-Chittenden Hall 105", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -106123,13 +236642,96 @@ ], "regnotes": "", "rp_attr": "", - "classnotes": "See the English department website for a list of creative writing and journalism courses that require the submission of an application by noon on November 4. https:\/\/english.yale.edu\/undergraduate\/courses\/creative-writing-journalism-courses", + "classnotes": "See the English department website for a list of creative writing and journalism courses that require the submission of an application by noon on November 4. https://english.yale.edu/undergraduate/courses/creative-writing-journalism-courses", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84011\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84011/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9968457818031311, + 0.9986718893051147, + 0.9981603026390076 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9986366629600525, + 0.9994993209838867 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9985764026641846, + 0.9962878227233887, + 0.9990259408950806 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 0.75, + "final_counts": { + "POSITIVE": 6, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + } + } }, { "season_code": "202301", @@ -106166,7 +236768,7 @@ "13:30", "15:20", "LC 318 - Linsly-Chittenden Hall 318", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -106182,10 +236784,111 @@ "classnotes": "Open to all undergraduate students on a first-come-first-served basis. ", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85232\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85232/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989068508148193, + 0.9988321661949158, + 0.9989137649536133, + 0.9989293217658997, + 0.9988837838172913, + 0.9989174604415894 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989007711410522, + 0.9989334940910339, + 0.9988659620285034, + 0.9988657236099243, + 0.9988879561424255, + 0.9988724589347839 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988877177238464, + 0.9989293217658997, + 0.9989293217658997, + 0.9989035129547119, + 0.9983208775520325, + 0.9988763928413391 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 18 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -106222,7 +236925,7 @@ "13:30", "15:20", "LC 319 - Linsly-Chittenden Hall 319", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -106238,10 +236941,103 @@ "classnotes": "Open to all undergraduate students on a first-come-first-served basis.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85926\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85926/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9967243075370789, + 0.9988746047019958, + 0.9987228512763977, + 0.9986283779144287, + 0.9986103773117065 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988716244697571, + 0.9988846182823181, + 0.9995125532150269, + 0.9989356398582458, + 0.9983348250389099 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.6, + "NEGATIVE": 0.4 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989225268363953, + 0.9964959025382996, + 0.9995061159133911 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 0.7692307692307693, + "final_counts": { + "POSITIVE": 10, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.7692307692307693, + "NEGATIVE": 0.23076923076923078 + } + } }, { "season_code": "202301", @@ -106278,7 +237074,7 @@ "13:30", "15:20", "LC 210 - Linsly-Chittenden Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -106289,13 +237085,122 @@ ], "regnotes": "", "rp_attr": "", - "classnotes": "See the English department website for a list of creative writing and journalism courses that require the submission of an application by noon on November 4. https:\/\/english.yale.edu\/undergraduate\/courses\/creative-writing-journalism-courses", + "classnotes": "See the English department website for a list of creative writing and journalism courses that require the submission of an application by noon on November 4. https://english.yale.edu/undergraduate/courses/creative-writing-journalism-courses", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84016\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84016/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988571405410767, + 0.9987596273422241, + 0.9989076852798462, + 0.9988757967948914, + 0.9978476762771606, + 0.9988665580749512, + 0.9987931251525879, + 0.9987267851829529 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989396929740906, + 0.9988559484481812, + 0.9989373087882996, + 0.9988728165626526, + 0.9988825917243958, + 0.998896598815918 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998906135559082, + 0.9988744854927063, + 0.9989051818847656, + 0.9988968372344971, + 0.9988906979560852, + 0.998806357383728, + 0.9989339709281921, + 0.9988964796066284 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 22, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 22 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -106333,7 +237238,7 @@ "9:25", "11:15", "LC 204 - Linsly-Chittenden Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -106347,13 +237252,114 @@ ], "regnotes": "", "rp_attr": "", - "classnotes": "See the English department website for a list of creative writing and journalism courses that require the submission of an application by noon on November 4. https:\/\/english.yale.edu\/undergraduate\/courses\/creative-writing-journalism-courses", + "classnotes": "See the English department website for a list of creative writing and journalism courses that require the submission of an application by noon on November 4. https://english.yale.edu/undergraduate/courses/creative-writing-journalism-courses", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84024\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84024/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989184141159058, + 0.9985151886940002, + 0.9943801760673523, + 0.998703122138977, + 0.9989091157913208 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989393353462219, + 0.9987137317657471, + 0.9988870024681091, + 0.9989257454872131, + 0.9994614720344543, + 0.9989025592803955 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989345669746399, + 0.9988428354263306, + 0.9989396929740906, + 0.9989334940910339, + 0.9987900853157043, + 0.9971877932548523 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 0.9411764705882353, + "final_counts": { + "POSITIVE": 16, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9411764705882353, + "NEGATIVE": 0.058823529411764705 + } + } }, { "season_code": "202301", @@ -106390,7 +237396,7 @@ "13:30", "15:20", "LC 213 - Linsly-Chittenden Hall 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -106405,13 +237411,44 @@ ], "regnotes": "", "rp_attr": "This course meets during the Reading Period: the week between the last week of classes and finals week. Meets Reading Period", - "classnotes": "See the English department website for a list of creative writing and journalism courses that require the submission of an application by noon on November 4. https:\/\/english.yale.edu\/undergraduate\/courses\/creative-writing-journalism-courses", + "classnotes": "See the English department website for a list of creative writing and journalism courses that require the submission of an application by noon on November 4. https://english.yale.edu/undergraduate/courses/creative-writing-journalism-courses", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84029\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84029/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC403": { + "sentiment_labels": [ + "NEGATIVE" + ], + "sentiment_scores": [ + 0.999474823474884 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 0 + }, + "sentiment_distribution": { + "NEGATIVE": 1.0, + "POSITIVE": 0.0 + }, + "sentiment_overall": [ + "NEGATIVE", + 1.0 + ] + }, + "final_label": "NEGATIVE", + "final_count": 1, + "final_proportion": 1.0, + "final_counts": { + "NEGATIVE": 1 + }, + "final_distribution": { + "NEGATIVE": 1.0 + } + } }, { "season_code": "202301", @@ -106449,7 +237486,7 @@ "13:30", "15:20", "YK220 100 - 220 York Street 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ] }, @@ -106461,10 +237498,131 @@ "classnotes": "Students should email branden.jacobs-jenkis@yale.edu with a 10-15 page writing sample as well as a couple paragraphs explaining why they want to take the course in the body of the email. ", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85207\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/85207/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9966591596603394, + 0.998246431350708, + 0.9983574748039246, + 0.9987047910690308, + 0.9984456896781921, + 0.793096661567688, + 0.9988515377044678, + 0.9987241625785828 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 6 + }, + "sentiment_distribution": { + "NEGATIVE": 0.25, + "POSITIVE": 0.75 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989218711853027, + 0.9981390237808228, + 0.9988669157028198, + 0.9989092350006104, + 0.9987350106239319, + 0.9989221096038818, + 0.995894193649292, + 0.9988686442375183, + 0.9985643029212952 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988633394241333, + 0.9988331198692322, + 0.9988909363746643, + 0.9989056587219238, + 0.9988158941268921, + 0.998875081539154, + 0.9988942742347717, + 0.9524402618408203, + 0.9988957643508911, + 0.9989230036735535 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "final_label": "POSITIVE", + "final_count": 23, + "final_proportion": 0.8518518518518519, + "final_counts": { + "NEGATIVE": 4, + "POSITIVE": 23 + }, + "final_distribution": { + "NEGATIVE": 0.14814814814814814, + "POSITIVE": 0.8518518518518519 + } + } }, { "season_code": "202301", @@ -106502,7 +237660,7 @@ "9:25", "11:15", "LC 213 - Linsly-Chittenden Hall 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -106518,13 +237676,122 @@ ], "regnotes": "", "rp_attr": "", - "classnotes": "See the English department website for a list of creative writing and journalism courses that require the submission of an application by noon on November 4. https:\/\/english.yale.edu\/undergraduate\/courses\/creative-writing-journalism-courses", + "classnotes": "See the English department website for a list of creative writing and journalism courses that require the submission of an application by noon on November 4. https://english.yale.edu/undergraduate/courses/creative-writing-journalism-courses", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84040\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84040/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989367127418518, + 0.9987649917602539, + 0.9986981153488159, + 0.9979945421218872, + 0.9988258481025696, + 0.9988551139831543 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989179372787476, + 0.9983956217765808, + 0.9989168643951416, + 0.9988569021224976, + 0.9986911416053772, + 0.9987801909446716, + 0.9989328980445862, + 0.9989144802093506 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987812638282776, + 0.9985294342041016, + 0.9988330006599426, + 0.9982055425643921, + 0.998896598815918, + 0.9989392161369324, + 0.9988792538642883 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 0.9523809523809523, + "final_counts": { + "POSITIVE": 20, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9523809523809523, + "NEGATIVE": 0.047619047619047616 + } + } }, { "season_code": "202301", @@ -106561,7 +237828,7 @@ "13:30", "16:00", "LC 213 - Linsly-Chittenden Hall 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -106572,13 +237839,120 @@ ], "regnotes": "", "rp_attr": "", - "classnotes": "See the English department website for a list of creative writing and journalism courses that require the submission of an application by noon on November 4. https:\/\/english.yale.edu\/undergraduate\/courses\/creative-writing-journalism-courses", + "classnotes": "See the English department website for a list of creative writing and journalism courses that require the submission of an application by noon on November 4. https://english.yale.edu/undergraduate/courses/creative-writing-journalism-courses", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84044\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84044/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988631010055542, + 0.9988790154457092, + 0.9984244108200073, + 0.9982086420059204, + 0.998903751373291, + 0.9988873600959778, + 0.9988208413124084 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988124370574951, + 0.9989007711410522, + 0.9988834261894226, + 0.9988007545471191, + 0.9988158941268921, + 0.998845100402832 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.997308611869812, + 0.9988825917243958, + 0.9989006519317627, + 0.9988089799880981, + 0.9988871216773987, + 0.9988889098167419, + 0.9988725781440735 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 0.95, + "final_counts": { + "POSITIVE": 19, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.95, + "NEGATIVE": 0.05 + } + } }, { "season_code": "202301", @@ -106616,7 +237990,7 @@ "15:30", "17:20", "YK220 100 - 220 York Street 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ] }, @@ -106630,10 +238004,93 @@ "classnotes": "Students should email branden.jacobs-jenkis@yale.edu with a 10-15 page writing sample as well as a couple paragraphs explaining why they want to take the course in the body of the email. ", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85413\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85413/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998723566532135, + 0.9988922476768494 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9936140179634094, + 0.9979832172393799, + 0.9989008903503418 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988853335380554, + 0.9982172846794128, + 0.9988401532173157 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 0.875, + "final_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + } + } }, { "season_code": "202301", @@ -106673,7 +238130,7 @@ "9:25", "11:15", "LC 319 - Linsly-Chittenden Hall 319", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -106687,15 +238144,100 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84394\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84394/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988617897033691, + 0.9983670115470886, + 0.9989296793937683 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988983869552612, + 0.9989319443702698 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981204867362976, + 0.9989350438117981, + 0.9986304044723511, + 0.998915433883667, + 0.9976826906204224 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 10 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", "requirements": "Prerequisites: two courses in writing.", - "description": "A writing tutorial in fiction, poetry, playwriting, screenwriting, or nonfiction for students who have already taken writing courses at the intermediate and advanced levels. Conducted with a faculty member after approval by the director of undergraduate studies. Proposals must be submitted to the DUS in the previous term; deadlines and instructions are posted at english.yale.edu\/undergraduate\/applications-and-deadlines.", + "description": "A writing tutorial in fiction, poetry, playwriting, screenwriting, or nonfiction for students who have already taken writing courses at the intermediate and advanced levels. Conducted with a faculty member after approval by the director of undergraduate studies. Proposals must be submitted to the DUS in the previous term; deadlines and instructions are posted at english.yale.edu/undergraduate/applications-and-deadlines.", "short_title": "Tutorial in Writing", "title": "Tutorial in Writing", "school": "YC", @@ -106729,18 +238271,46 @@ ], "regnotes": "", "rp_attr": "", - "classnotes": "Proposals are due prior to registration period. See https:\/\/english.yale.edu\/undergraduate\/deadlines-and-forms for details.", + "classnotes": "Proposals are due prior to registration period. See https://english.yale.edu/undergraduate/deadlines-and-forms for details.", "final_exam": "No regular final examination", "course_home_url": "", "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "Special projects set up by the student in an area of particular interest with the help of a faculty adviser and the director of undergraduate studies, intended to enable the student to cover material not otherwise offered by the department. The course may be used for research or for directed reading, but in either case a term paper or its equivalent is normally required. The student meets regularly with the faculty adviser. Proposals must be signed by the faculty adviser and submitted to the DUS in the previous term; deadlines and instructions are posted at english.yale.edu\/undergraduate\/applications-and-deadlines.", + "description": "Special projects set up by the student in an area of particular interest with the help of a faculty adviser and the director of undergraduate studies, intended to enable the student to cover material not otherwise offered by the department. The course may be used for research or for directed reading, but in either case a term paper or its equivalent is normally required. The student meets regularly with the faculty adviser. Proposals must be signed by the faculty adviser and submitted to the DUS in the previous term; deadlines and instructions are posted at english.yale.edu/undergraduate/applications-and-deadlines.", "short_title": "Special Projects for Juniors ...", "title": "Special Projects for Juniors or Seniors", "school": "YC", @@ -106772,18 +238342,46 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Proposals are due prior to registration period. See https:\/\/english.yale.edu\/undergraduate\/deadlines-and-forms for details.", + "classnotes": "Proposals are due prior to registration period. See https://english.yale.edu/undergraduate/deadlines-and-forms for details.", "final_exam": "No regular final examination", "course_home_url": "", "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "A term-long project in writing, under tutorial supervision, aimed at producing a single longer work (or a collection of related shorter works). The writing concentration accepts students with demonstrated commitment to creative writing at the end of the junior year or, occasionally, in the first term of senior year. Proposals for the writing concentration should be submitted during the designated sign-up period in the term before enrollment is intended. The project is due by the end of the last week of classes (fall term), or the end of the next-to-last week of classes (spring term). Proposal instructions and deadlines are posted at\u00a0english.yale.edu\/undergraduate\/applications-and-deadlines.", + "description": "A term-long project in writing, under tutorial supervision, aimed at producing a single longer work (or a collection of related shorter works). The writing concentration accepts students with demonstrated commitment to creative writing at the end of the junior year or, occasionally, in the first term of senior year. Proposals for the writing concentration should be submitted during the designated sign-up period in the term before enrollment is intended. The project is due by the end of the last week of classes (fall term), or the end of the next-to-last week of classes (spring term). Proposal instructions and deadlines are posted at\u00a0english.yale.edu/undergraduate/applications-and-deadlines.", "short_title": "The Writing Concentration Sen...", "title": "The Writing Concentration Senior Project", "school": "YC", @@ -106820,18 +238418,103 @@ ], "regnotes": "", "rp_attr": "", - "classnotes": "Proposals are due prior to registration period. See https:\/\/english.yale.edu\/undergraduate\/deadlines-and-forms for details.", + "classnotes": "Proposals are due prior to registration period. See https://english.yale.edu/undergraduate/deadlines-and-forms for details.", "final_exam": "No regular final examination", "course_home_url": "", "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "", - "description": "Students wishing to undertake an independent senior essay in English must submit a proposal to the DUS in the previous term; deadlines and instructions are posted at english.yale.edu\/undergraduate\/applications-and-deadlines. For one-term senior essays, the essay itself is due in the office of the director of undergraduate studies according to the following schedule: (1) end of the fourth week of classes: five to ten pages of writing and\/or an annotated bibliography; (2) end of the ninth week of classes: a rough draft of the complete essay; (3) end of the last week of classes (fall term) or end of the next-to-last week of classes (spring term): the completed essay. Consult the director of undergraduate studies regarding the schedule for submission of the yearlong senior essay.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987346529960632, + 0.9987900853157043, + 0.9986007809638977 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988617897033691, + 0.984171450138092, + 0.998868465423584 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982656836509705, + 0.998305082321167, + 0.9988692402839661 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 0.7777777777777778, + "final_counts": { + "POSITIVE": 7, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.7777777777777778, + "NEGATIVE": 0.2222222222222222 + } + } + }, + { + "season_code": "202301", + "requirements": "", + "description": "Students wishing to undertake an independent senior essay in English must submit a proposal to the DUS in the previous term; deadlines and instructions are posted at english.yale.edu/undergraduate/applications-and-deadlines. For one-term senior essays, the essay itself is due in the office of the director of undergraduate studies according to the following schedule: (1) end of the fourth week of classes: five to ten pages of writing and/or an annotated bibliography; (2) end of the ninth week of classes: a rough draft of the complete essay; (3) end of the last week of classes (fall term) or end of the next-to-last week of classes (spring term): the completed essay. Consult the director of undergraduate studies regarding the schedule for submission of the yearlong senior essay.", "short_title": "The Senior Essay I", "title": "The Senior Essay I", "school": "YC", @@ -106866,18 +238549,105 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Proposals are due prior to registration period. See https:\/\/english.yale.edu\/undergraduate\/deadlines-and-forms for details.", + "classnotes": "Proposals are due prior to registration period. See https://english.yale.edu/undergraduate/deadlines-and-forms for details.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84061\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84061/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983305335044861, + 0.9986773133277893, + 0.9988825917243958 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987963438034058, + 0.9981327652931213, + 0.9988307356834412, + 0.9989354014396667 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989333748817444, + 0.9986567497253418, + 0.9988419413566589, + 0.9982553124427795 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 11 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", "requirements": "After ENGL 490.", - "description": "Second term of the optional yearlong senior essay. Students may begin the yearlong essay in the spring term of the junior year, allowing for significant summer research, with permission of the instructor. Students must submit a proposal to the DUS in the previous term; deadlines and instructions are posted at english.yale.edu\/undergraduate\/applications-and-deadlines.", + "description": "Second term of the optional yearlong senior essay. Students may begin the yearlong essay in the spring term of the junior year, allowing for significant summer research, with permission of the instructor. Students must submit a proposal to the DUS in the previous term; deadlines and instructions are posted at english.yale.edu/undergraduate/applications-and-deadlines.", "short_title": "The Senior Essay II", "title": "The Senior Essay II", "school": "YC", @@ -106912,13 +238682,41 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Proposals are due prior to registration period. See https:\/\/english.yale.edu\/undergraduate\/deadlines-and-forms for details.", + "classnotes": "Proposals are due prior to registration period. See https://english.yale.edu/undergraduate/deadlines-and-forms for details.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84065\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84065/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -106956,10 +238754,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84492\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84492/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -107000,7 +238826,7 @@ "13:30", "15:20", "LC 319 - Linsly-Chittenden Hall 319", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -107011,13 +238837,41 @@ ], "regnotes": "", "rp_attr": "", - "classnotes": "This course may satisfy the Medieval or 20th\/21st Century English literature requirement with instructor permission.", + "classnotes": "This course may satisfy the Medieval or 20th/21st Century English literature requirement with instructor permission.", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84071\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84071/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -107056,7 +238910,7 @@ "15:30", "17:20", "PR406 203 - 406 Prospect St., Miller Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/559978" + "https://map.yale.edu/?id=1910#!m/559978" ] ] }, @@ -107068,10 +238922,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85922\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85922/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -107111,7 +238993,7 @@ "9:25", "11:15", "LC 319 - Linsly-Chittenden Hall 319", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -107123,10 +239005,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84072\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84072/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -107166,7 +239076,7 @@ "14:30", "15:45", "LC 203 - Linsly-Chittenden Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -107174,7 +239084,7 @@ "14:30", "15:45", "LC 203 - Linsly-Chittenden Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -107186,10 +239096,107 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83951\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83951/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998479425907135, + 0.9988629817962646, + 0.9987003803253174 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9718410968780518, + 0.99888676404953, + 0.9994925260543823, + 0.9981603026390076, + 0.998890221118927, + 0.9762670993804932 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.998927652835846, + 0.9988896250724792, + 0.9992108345031738, + 0.9953916072845459, + 0.9986447691917419, + 0.9995076656341553 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 0.8, + "final_counts": { + "POSITIVE": 12, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + } + } }, { "season_code": "202301", @@ -107229,7 +239236,7 @@ "15:30", "17:20", "LC 318 - Linsly-Chittenden Hall 318", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -107241,10 +239248,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84321\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84321/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -107282,7 +239317,7 @@ "10:30", "12:20", "LC 210 - Linsly-Chittenden Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -107297,10 +239332,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83958\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83958/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -107339,7 +239402,7 @@ "13:30", "15:20", "HQ 317 - Humanities Quadrangle 317", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -107351,10 +239414,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85803\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85803/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -107391,7 +239482,7 @@ "15:30", "17:20", "LC 319 - Linsly-Chittenden Hall 319", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -107403,10 +239494,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83962\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83962/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -107445,7 +239564,7 @@ "15:30", "17:20", "WLH 112 - William L. Harkness Hall 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -107457,10 +239576,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83695\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83695/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -107498,7 +239645,7 @@ "15:30", "17:20", "LC 104 - Linsly-Chittenden Hall 104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -107510,10 +239657,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84068\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84068/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -107553,14 +239728,14 @@ "15:30", "17:20", "LC 213 - Linsly-Chittenden Hall 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, "skills": [], "areas": [], "flags": [ - "YC English: 20th\/21st Century", + "YC English: 20th/21st Century", "YC English: Senior Seminar" ], "regnotes": "", @@ -107568,10 +239743,115 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84033\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84033/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988672733306885, + 0.9989069700241089, + 0.9989054203033447, + 0.9988871216773987, + 0.9988522529602051 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988466501235962, + 0.9988954067230225, + 0.9988530874252319, + 0.9989056587219238, + 0.9989100694656372, + 0.9989363551139832, + 0.9988939166069031 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.99883633852005, + 0.9988934397697449, + 0.9979865550994873, + 0.9989062547683716, + 0.9981436729431152, + 0.9989215135574341, + 0.9989238381385803, + 0.9989191293716431 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 20 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -107611,7 +239891,7 @@ "13:30", "15:20", "LC 319 - Linsly-Chittenden Hall 319", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -107623,10 +239903,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83967\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83967/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -107663,7 +239971,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -107701,7 +240037,7 @@ "13:30", "15:20", "SML 120B - Sterling Memorial Library 120B", - "https:\/\/map.yale.edu\/?id=1910#!m\/563698" + "https://map.yale.edu/?id=1910#!m/563698" ] ] }, @@ -107716,7 +240052,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -107765,15 +240129,122 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83977\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83977/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "", - "description": "n\/a", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998916506767273, + 0.9988002777099609, + 0.9989210367202759, + 0.9980006814002991, + 0.9989306330680847, + 0.998868465423584, + 0.9939261078834534 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988813996315002, + 0.9983758926391602, + 0.998898983001709, + 0.9989126920700073, + 0.9980639815330505, + 0.9988269209861755, + 0.9988985061645508 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987828135490417, + 0.998863935470581, + 0.9988395571708679, + 0.9975118637084961, + 0.9970046877861023, + 0.9989356398582458, + 0.9989243149757385 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 21, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 21 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } + }, + { + "season_code": "202301", + "requirements": "", + "description": "n/a", "short_title": "Project Course", "title": "Project Course", "school": "FS", @@ -107811,12 +240282,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "n\/a", + "description": "n/a", "short_title": "Project Course", "title": "Project Course", "school": "FS", @@ -107854,12 +240353,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "n\/a", + "description": "n/a", "short_title": "Project Course", "title": "Project Course", "school": "FS", @@ -107897,12 +240424,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "n\/a", + "description": "n/a", "short_title": "Project Course", "title": "Project Course", "school": "FS", @@ -107940,12 +240495,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "n\/a", + "description": "n/a", "short_title": "Project Course", "title": "Project Course", "school": "FS", @@ -107983,12 +240566,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "n\/a", + "description": "n/a", "short_title": "Project Course", "title": "Project Course", "school": "FS", @@ -108026,12 +240637,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "n\/a", + "description": "n/a", "short_title": "Project Course", "title": "Project Course", "school": "FS", @@ -108069,12 +240708,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "n\/a", + "description": "n/a", "short_title": "Project Course", "title": "Project Course", "school": "FS", @@ -108112,12 +240779,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "n\/a", + "description": "n/a", "short_title": "Project Course", "title": "Project Course", "school": "FS", @@ -108155,7 +240850,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -108198,7 +240921,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -108241,7 +240992,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -108284,7 +241063,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -108327,7 +241134,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -108370,7 +241205,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -108413,7 +241276,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -108456,7 +241347,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -108499,7 +241418,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -108542,7 +241489,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -108585,7 +241560,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -108628,7 +241631,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -108671,7 +241702,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -108714,7 +241773,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -108757,12 +241844,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "n\/a", + "description": "n/a", "short_title": "Project Course", "title": "Project Course", "school": "FS", @@ -108800,7 +241915,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -108843,7 +241986,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -108886,7 +242057,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -108929,12 +242128,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "n\/a", + "description": "n/a", "short_title": "Project Course", "title": "Project Course", "school": "FS", @@ -108972,7 +242199,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -109015,7 +242270,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -109058,7 +242341,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -109101,7 +242412,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -109144,7 +242483,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -109187,7 +242554,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -109230,12 +242625,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "n\/a", + "description": "n/a", "short_title": "Project Course", "title": "Project Course", "school": "FS", @@ -109273,7 +242696,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -109316,7 +242767,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -109359,12 +242838,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "n\/a", + "description": "n/a", "short_title": "Project Course", "title": "Project Course", "school": "FS", @@ -109402,7 +242909,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -109445,7 +242980,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -109488,7 +243051,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -109531,7 +243122,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -109574,7 +243193,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -109617,7 +243264,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -109660,7 +243335,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -109703,7 +243406,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -109746,7 +243477,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -109789,7 +243548,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -109832,12 +243619,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "N\/A", + "description": "N/A", "short_title": "Project Course", "title": "Project Course", "school": "FS", @@ -109875,7 +243690,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -109918,7 +243761,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -109961,7 +243832,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -110004,7 +243903,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -110047,7 +243974,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -110090,7 +244045,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -110133,7 +244116,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -110176,7 +244187,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -110219,7 +244258,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -110262,14 +244329,42 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "MESc\/MFS Research Thesis", - "short_title": "MESc\/MFS Research Thesis", - "title": "MESc\/MFS Research Thesis", + "description": "MESc/MFS Research Thesis", + "short_title": "MESc/MFS Research Thesis", + "title": "MESc/MFS Research Thesis", "school": "FS", "credits": 0.0, "extra_info": "ACTIVE", @@ -110305,14 +244400,42 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "MESc\/MFS Research Thesis", - "short_title": "MESc\/MFS Research Thesis", - "title": "MESc\/MFS Research Thesis", + "description": "MESc/MFS Research Thesis", + "short_title": "MESc/MFS Research Thesis", + "title": "MESc/MFS Research Thesis", "school": "FS", "credits": 0.0, "extra_info": "ACTIVE", @@ -110348,14 +244471,42 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "MESc\/MFS Research Thesis", - "short_title": "MESc\/MFS Research Thesis", - "title": "MESc\/MFS Research Thesis", + "description": "MESc/MFS Research Thesis", + "short_title": "MESc/MFS Research Thesis", + "title": "MESc/MFS Research Thesis", "school": "FS", "credits": 0.0, "extra_info": "ACTIVE", @@ -110391,14 +244542,42 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "MESc\/MFS Research Thesis", - "short_title": "MESc\/MFS Research Thesis", - "title": "MESc\/MFS Research Thesis", + "description": "MESc/MFS Research Thesis", + "short_title": "MESc/MFS Research Thesis", + "title": "MESc/MFS Research Thesis", "school": "FS", "credits": 0.0, "extra_info": "ACTIVE", @@ -110434,14 +244613,42 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "MESc\/MFS Research Thesis", - "short_title": "MESc\/MFS Research Thesis", - "title": "MESc\/MFS Research Thesis", + "description": "MESc/MFS Research Thesis", + "short_title": "MESc/MFS Research Thesis", + "title": "MESc/MFS Research Thesis", "school": "FS", "credits": 0.0, "extra_info": "ACTIVE", @@ -110477,14 +244684,42 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "MESc\/MFS Research Thesis", - "short_title": "MESc\/MFS Research Thesis", - "title": "MESc\/MFS Research Thesis", + "description": "MESc/MFS Research Thesis", + "short_title": "MESc/MFS Research Thesis", + "title": "MESc/MFS Research Thesis", "school": "FS", "credits": 0.0, "extra_info": "ACTIVE", @@ -110520,14 +244755,42 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "MESc\/MFS Research Thesis", - "short_title": "MESc\/MFS Research Thesis", - "title": "MESc\/MFS Research Thesis", + "description": "MESc/MFS Research Thesis", + "short_title": "MESc/MFS Research Thesis", + "title": "MESc/MFS Research Thesis", "school": "FS", "credits": 0.0, "extra_info": "ACTIVE", @@ -110563,14 +244826,42 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "MESc\/MFS Research Thesis", - "short_title": "MESc\/MFS Research Thesis", - "title": "MESc\/MFS Research Thesis", + "description": "MESc/MFS Research Thesis", + "short_title": "MESc/MFS Research Thesis", + "title": "MESc/MFS Research Thesis", "school": "FS", "credits": 0.0, "extra_info": "ACTIVE", @@ -110606,14 +244897,42 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "MESc\/MFS Research Thesis", - "short_title": "MESc\/MFS Research Thesis", - "title": "MESc\/MFS Research Thesis", + "description": "MESc/MFS Research Thesis", + "short_title": "MESc/MFS Research Thesis", + "title": "MESc/MFS Research Thesis", "school": "FS", "credits": 0.0, "extra_info": "ACTIVE", @@ -110649,14 +244968,42 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "MESc\/MFS Research Thesis", - "short_title": "MESc\/MFS Research Thesis", - "title": "MESc\/MFS Research Thesis", + "description": "MESc/MFS Research Thesis", + "short_title": "MESc/MFS Research Thesis", + "title": "MESc/MFS Research Thesis", "school": "FS", "credits": 0.0, "extra_info": "ACTIVE", @@ -110692,14 +245039,42 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "MESc\/MFS Research Thesis", - "short_title": "MESc\/MFS Research Thesis", - "title": "MESc\/MFS Research Thesis", + "description": "MESc/MFS Research Thesis", + "short_title": "MESc/MFS Research Thesis", + "title": "MESc/MFS Research Thesis", "school": "FS", "credits": 0.0, "extra_info": "ACTIVE", @@ -110735,14 +245110,42 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "MESc\/MFS Research Thesis", - "short_title": "MESc\/MFS Research Thesis", - "title": "MESc\/MFS Research Thesis", + "description": "MESc/MFS Research Thesis", + "short_title": "MESc/MFS Research Thesis", + "title": "MESc/MFS Research Thesis", "school": "FS", "credits": 0.0, "extra_info": "ACTIVE", @@ -110778,14 +245181,42 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "MESc\/MFS Research Thesis", - "short_title": "MESc\/MFS Research Thesis", - "title": "MESc\/MFS Research Thesis", + "description": "MESc/MFS Research Thesis", + "short_title": "MESc/MFS Research Thesis", + "title": "MESc/MFS Research Thesis", "school": "FS", "credits": 0.0, "extra_info": "ACTIVE", @@ -110821,14 +245252,42 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "MESc\/MFS Research Thesis", - "short_title": "MESc\/MFS Research Thesis", - "title": "MESc\/MFS Research Thesis", + "description": "MESc/MFS Research Thesis", + "short_title": "MESc/MFS Research Thesis", + "title": "MESc/MFS Research Thesis", "school": "FS", "credits": 0.0, "extra_info": "ACTIVE", @@ -110864,14 +245323,42 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "MESc\/MFS Research Thesis", - "short_title": "MESc\/MFS Research Thesis", - "title": "MESc\/MFS Research Thesis", + "description": "MESc/MFS Research Thesis", + "short_title": "MESc/MFS Research Thesis", + "title": "MESc/MFS Research Thesis", "school": "FS", "credits": 0.0, "extra_info": "ACTIVE", @@ -110907,14 +245394,42 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "MESc\/MFS Research Thesis", - "short_title": "MESc\/MFS Research Thesis", - "title": "MESc\/MFS Research Thesis", + "description": "MESc/MFS Research Thesis", + "short_title": "MESc/MFS Research Thesis", + "title": "MESc/MFS Research Thesis", "school": "FS", "credits": 0.0, "extra_info": "ACTIVE", @@ -110950,14 +245465,42 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "MESc\/MFS Research Thesis", - "short_title": "MESc\/MFS Research Thesis", - "title": "MESc\/MFS Research Thesis", + "description": "MESc/MFS Research Thesis", + "short_title": "MESc/MFS Research Thesis", + "title": "MESc/MFS Research Thesis", "school": "FS", "credits": 0.0, "extra_info": "ACTIVE", @@ -110993,14 +245536,42 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", "description": "na", - "short_title": "MESc\/MFS Research Thesis", - "title": "MESc\/MFS Research Thesis", + "short_title": "MESc/MFS Research Thesis", + "title": "MESc/MFS Research Thesis", "school": "FS", "credits": 0.0, "extra_info": "ACTIVE", @@ -111036,14 +245607,42 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "MESc\/MFS Research Thesis", - "short_title": "MESc\/MFS Research Thesis", - "title": "MESc\/MFS Research Thesis", + "description": "MESc/MFS Research Thesis", + "short_title": "MESc/MFS Research Thesis", + "title": "MESc/MFS Research Thesis", "school": "FS", "credits": 0.0, "extra_info": "ACTIVE", @@ -111079,14 +245678,42 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "MESc\/MFS Research Thesis", - "short_title": "MESc\/MFS Research Thesis", - "title": "MESc\/MFS Research Thesis", + "description": "MESc/MFS Research Thesis", + "short_title": "MESc/MFS Research Thesis", + "title": "MESc/MFS Research Thesis", "school": "FS", "credits": 0.0, "extra_info": "ACTIVE", @@ -111122,14 +245749,42 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "MESc\/MFS Research Thesis", - "short_title": "MESc\/MFS Research Thesis", - "title": "MESc\/MFS Research Thesis", + "description": "MESc/MFS Research Thesis", + "short_title": "MESc/MFS Research Thesis", + "title": "MESc/MFS Research Thesis", "school": "FS", "credits": 0.0, "extra_info": "ACTIVE", @@ -111165,14 +245820,42 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", "description": "na", - "short_title": "MESc\/MFS Research Thesis", - "title": "MESc\/MFS Research Thesis", + "short_title": "MESc/MFS Research Thesis", + "title": "MESc/MFS Research Thesis", "school": "FS", "credits": 0.0, "extra_info": "ACTIVE", @@ -111208,14 +245891,42 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "MESc\/MFS Research Thesis", - "short_title": "MESc\/MFS Research Thesis", - "title": "MESc\/MFS Research Thesis", + "description": "MESc/MFS Research Thesis", + "short_title": "MESc/MFS Research Thesis", + "title": "MESc/MFS Research Thesis", "school": "FS", "credits": 0.0, "extra_info": "ACTIVE", @@ -111251,14 +245962,42 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "MESc\/MFS Research Thesis", - "short_title": "MESc\/MFS Research Thesis", - "title": "MESc\/MFS Research Thesis", + "description": "MESc/MFS Research Thesis", + "short_title": "MESc/MFS Research Thesis", + "title": "MESc/MFS Research Thesis", "school": "FS", "credits": 0.0, "extra_info": "ACTIVE", @@ -111294,14 +246033,42 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "MESc\/MFS Research Thesis", - "short_title": "MESc\/MFS Research Thesis", - "title": "MESc\/MFS Research Thesis", + "description": "MESc/MFS Research Thesis", + "short_title": "MESc/MFS Research Thesis", + "title": "MESc/MFS Research Thesis", "school": "FS", "credits": 0.0, "extra_info": "ACTIVE", @@ -111337,14 +246104,42 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "MESc\/MFS Research Thesis", - "short_title": "MESc\/MFS Research Thesis", - "title": "MESc\/MFS Research Thesis", + "description": "MESc/MFS Research Thesis", + "short_title": "MESc/MFS Research Thesis", + "title": "MESc/MFS Research Thesis", "school": "FS", "credits": 0.0, "extra_info": "ACTIVE", @@ -111380,14 +246175,42 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "MESc\/MFS Research Thesis", - "short_title": "MESc\/MFS Research Thesis", - "title": "MESc\/MFS Research Thesis", + "description": "MESc/MFS Research Thesis", + "short_title": "MESc/MFS Research Thesis", + "title": "MESc/MFS Research Thesis", "school": "FS", "credits": 0.0, "extra_info": "ACTIVE", @@ -111423,14 +246246,42 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "MESc\/MFS Research Thesis", - "short_title": "MESc\/MFS Research Thesis", - "title": "MESc\/MFS Research Thesis", + "description": "MESc/MFS Research Thesis", + "short_title": "MESc/MFS Research Thesis", + "title": "MESc/MFS Research Thesis", "school": "FS", "credits": 0.0, "extra_info": "ACTIVE", @@ -111466,14 +246317,42 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "MESc\/MFS Research Thesis", - "short_title": "MESc\/MFS Research Thesis", - "title": "MESc\/MFS Research Thesis", + "description": "MESc/MFS Research Thesis", + "short_title": "MESc/MFS Research Thesis", + "title": "MESc/MFS Research Thesis", "school": "FS", "credits": 0.0, "extra_info": "ACTIVE", @@ -111509,14 +246388,42 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "MESc\/MFS Research Thesis", - "short_title": "MESc\/MFS Research Thesis", - "title": "MESc\/MFS Research Thesis", + "description": "MESc/MFS Research Thesis", + "short_title": "MESc/MFS Research Thesis", + "title": "MESc/MFS Research Thesis", "school": "FS", "credits": 0.0, "extra_info": "ACTIVE", @@ -111552,14 +246459,42 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", "description": "na", - "short_title": "MESc\/MFS Research Thesis", - "title": "MESc\/MFS Research Thesis", + "short_title": "MESc/MFS Research Thesis", + "title": "MESc/MFS Research Thesis", "school": "FS", "credits": 0.0, "extra_info": "ACTIVE", @@ -111595,14 +246530,42 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "MESc\/MFS Research Thesis", - "short_title": "MESc\/MFS Research Thesis", - "title": "MESc\/MFS Research Thesis", + "description": "MESc/MFS Research Thesis", + "short_title": "MESc/MFS Research Thesis", + "title": "MESc/MFS Research Thesis", "school": "FS", "credits": 0.0, "extra_info": "ACTIVE", @@ -111638,14 +246601,42 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "MESc\/MFS Research Thesis", - "short_title": "MESc\/MFS Research Thesis", - "title": "MESc\/MFS Research Thesis", + "description": "MESc/MFS Research Thesis", + "short_title": "MESc/MFS Research Thesis", + "title": "MESc/MFS Research Thesis", "school": "FS", "credits": 0.0, "extra_info": "ACTIVE", @@ -111681,14 +246672,42 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "MESc\/MFS Research Thesis", - "short_title": "MESc\/MFS Research Thesis", - "title": "MESc\/MFS Research Thesis", + "description": "MESc/MFS Research Thesis", + "short_title": "MESc/MFS Research Thesis", + "title": "MESc/MFS Research Thesis", "school": "FS", "credits": 0.0, "extra_info": "ACTIVE", @@ -111724,14 +246743,42 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "MESc\/MFS Research Thesis", - "short_title": "MESc\/MFS Research Thesis", - "title": "MESc\/MFS Research Thesis", + "description": "MESc/MFS Research Thesis", + "short_title": "MESc/MFS Research Thesis", + "title": "MESc/MFS Research Thesis", "school": "FS", "credits": 0.0, "extra_info": "ACTIVE", @@ -111767,14 +246814,42 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "MESc\/MFS Research Thesis", - "short_title": "MESc\/MFS Research Thesis", - "title": "MESc\/MFS Research Thesis", + "description": "MESc/MFS Research Thesis", + "short_title": "MESc/MFS Research Thesis", + "title": "MESc/MFS Research Thesis", "school": "FS", "credits": 0.0, "extra_info": "ACTIVE", @@ -111810,14 +246885,42 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "MESc\/MFS Research Thesis", - "short_title": "MESc\/MFS Research Thesis", - "title": "MESc\/MFS Research Thesis", + "description": "MESc/MFS Research Thesis", + "short_title": "MESc/MFS Research Thesis", + "title": "MESc/MFS Research Thesis", "school": "FS", "credits": 0.0, "extra_info": "ACTIVE", @@ -111853,14 +246956,42 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "MESc\/MFS Research Thesis", - "short_title": "MESc\/MFS Research Thesis", - "title": "MESc\/MFS Research Thesis", + "description": "MESc/MFS Research Thesis", + "short_title": "MESc/MFS Research Thesis", + "title": "MESc/MFS Research Thesis", "school": "FS", "credits": 0.0, "extra_info": "ACTIVE", @@ -111896,14 +247027,42 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "MESc\/MFS Research Thesis", - "short_title": "MESc\/MFS Research Thesis", - "title": "MESc\/MFS Research Thesis", + "description": "MESc/MFS Research Thesis", + "short_title": "MESc/MFS Research Thesis", + "title": "MESc/MFS Research Thesis", "school": "FS", "credits": 0.0, "extra_info": "ACTIVE", @@ -111939,14 +247098,42 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "MESc\/MFS Research Thesis", - "short_title": "MESc\/MFS Research Thesis", - "title": "MESc\/MFS Research Thesis", + "description": "MESc/MFS Research Thesis", + "short_title": "MESc/MFS Research Thesis", + "title": "MESc/MFS Research Thesis", "school": "FS", "credits": 0.0, "extra_info": "ACTIVE", @@ -111982,7 +247169,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -112025,7 +247240,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -112068,7 +247311,7 @@ "11:30", "12:50", "S 24 - Sage Hall 24", - "https:\/\/map.yale.edu\/?id=1910#!m\/559547" + "https://map.yale.edu/?id=1910#!m/559547" ] ] }, @@ -112080,10 +247323,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85852\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85852/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -112120,7 +247391,7 @@ "18:00", "20:00", "BOWERS AUD - Bowers Hall AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/559547" + "https://map.yale.edu/?id=1910#!m/559547" ] ] }, @@ -112132,10 +247403,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87321\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87321/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -112172,7 +247471,7 @@ "13:00", "14:20", "KRN G01 - Kroon Hall G01", - "https:\/\/map.yale.edu\/?id=1910#!m\/559995" + "https://map.yale.edu/?id=1910#!m/559995" ] ] }, @@ -112184,17 +247483,45 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87110\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87110/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", "description": "The\u00a0Yale Environment Review\u00a0is a student-run publication that aims to increase access to the latest developments in environmental studies. We aim to shed light on cutting-edge environmental research through summaries, analysis, and interviews. During this one-credit course, students produce one or two articles on subjects of their choosing for publication on the YER website. Please refer to our website and Canvas for an overview of the different types of content that YER produces. Students receive coaching to improve their writing skills, and their work goes through a rigorous editing process. Participation in Yale Environment Review helps students sharpen their writing skills and familiarize themselves with science communication, and it provides a platform to showcase their expertise.", - "short_title": "Yale Environment Review<\/i>", - "title": "Yale Environment Review<\/i>", + "short_title": "Yale Environment Review", + "title": "Yale Environment Review", "school": "FS", "credits": 0.0, "extra_info": "ACTIVE", @@ -112231,15 +247558,43 @@ "skills": [], "areas": [], "flags": [], - "regnotes": "Application Due: Dec 16, 5pm est\nhttp:\/\/bit.ly\/3haJTBn", + "regnotes": "Application Due: Dec 16, 5pm est\nhttp://bit.ly/3haJTBn", "rp_attr": "", "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85063\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85063/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -112279,7 +247634,7 @@ "9:00", "10:20", "KRN 319 - Kroon Hall 319", - "https:\/\/map.yale.edu\/?id=1910#!m\/559995" + "https://map.yale.edu/?id=1910#!m/559995" ] ], "Wednesday": [ @@ -112287,22 +247642,50 @@ "9:00", "10:20", "KRN 319 - Kroon Hall 319", - "https:\/\/map.yale.edu\/?id=1910#!m\/559995" + "https://map.yale.edu/?id=1910#!m/559995" ] ] }, "skills": [], "areas": [], "flags": [], - "regnotes": "Application Instructions can be found here: https:\/\/resources.environment.yale.edu\/cp\/courses\/detail\/2022-2023\/603\/\n\nMust be received by 5pm, December 16", + "regnotes": "Application Instructions can be found here: https://resources.environment.yale.edu/cp/courses/detail/2022-2023/603/\n\nMust be received by 5pm, December 16", "rp_attr": "", "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84998\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84998/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -112342,7 +247725,7 @@ "10:10", "11:30", "EVANS 4400 - Edward P Evans Hall 4400", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Wednesday": [ @@ -112350,7 +247733,7 @@ "10:10", "11:30", "EVANS 4400 - Edward P Evans Hall 4400", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -112365,7 +247748,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -112405,7 +247816,7 @@ "13:00", "14:20", "EVANS 4400 - Edward P Evans Hall 4400", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Wednesday": [ @@ -112413,7 +247824,7 @@ "13:00", "14:20", "EVANS 4400 - Edward P Evans Hall 4400", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -112428,7 +247839,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -112466,7 +247905,7 @@ "10:00", "11:50", "LEPH 103 - Laboratory of EPH 103", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ] }, @@ -112478,10 +247917,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84996\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84996/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -112530,10 +247997,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86204\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86204/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -112570,7 +248065,7 @@ "13:00", "15:50", "KRN 319 - Kroon Hall 319", - "https:\/\/map.yale.edu\/?id=1910#!m\/559995" + "https://map.yale.edu/?id=1910#!m/559995" ] ] }, @@ -112582,10 +248077,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84999\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84999/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -112636,10 +248159,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86677\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86677/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -112679,22 +248230,50 @@ "13:00", "15:50", "KRN G01 - Kroon Hall G01", - "https:\/\/map.yale.edu\/?id=1910#!m\/559995" + "https://map.yale.edu/?id=1910#!m/559995" ] ] }, "skills": [], "areas": [], "flags": [], - "regnotes": "Student Application: http:\/\/bit.ly\/3UAFDc3", + "regnotes": "Student Application: http://bit.ly/3UAFDc3", "rp_attr": "", "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85000\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85000/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -112733,7 +248312,7 @@ "9:00", "10:15", "LUCE 101 - Luce Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ], "Thursday": [ @@ -112741,7 +248320,7 @@ "9:00", "10:15", "LUCE 101 - Luce Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ] }, @@ -112753,10 +248332,249 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84062\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84062/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989332556724548, + 0.998915433883667, + 0.9891936182975769, + 0.998788058757782, + 0.9945852160453796, + 0.9987579584121704, + 0.9986727237701416, + 0.998865008354187, + 0.998894989490509, + 0.9987485408782959, + 0.9988663196563721, + 0.9989227652549744, + 0.9979153275489807, + 0.9985132813453674, + 0.998790442943573, + 0.9970226883888245, + 0.9985962510108948, + 0.9974486231803894, + 0.9987539052963257, + 0.998736560344696, + 0.9988119602203369, + 0.9988526105880737, + 0.9989209175109863, + 0.9985186457633972, + 0.9988144636154175, + 0.9989169836044312, + 0.9987366795539856 + ], + "sentiment_counts": { + "POSITIVE": 26, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9629629629629629, + "NEGATIVE": 0.037037037037037035 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9629629629629629 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988002777099609, + 0.9987773299217224, + 0.9995059967041016, + 0.9971598386764526, + 0.99950110912323, + 0.9995086193084717, + 0.9988172650337219, + 0.9989196062088013, + 0.9989017248153687, + 0.9985610842704773, + 0.9949237704277039, + 0.9986408352851868, + 0.9985164999961853, + 0.9994801878929138, + 0.9993270635604858, + 0.9988240599632263, + 0.9988434314727783, + 0.9988960027694702, + 0.9988116025924683, + 0.9984443783760071, + 0.9989222288131714, + 0.9987266659736633, + 0.998853325843811, + 0.9988480806350708, + 0.997979462146759, + 0.9987955093383789, + 0.9994897842407227, + 0.9985559582710266, + 0.9989370703697205, + 0.9989036321640015 + ], + "sentiment_counts": { + "POSITIVE": 21, + "NEGATIVE": 9 + }, + "sentiment_distribution": { + "POSITIVE": 0.7, + "NEGATIVE": 0.3 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987757802009583, + 0.998890221118927, + 0.9995061159133911, + 0.9989145994186401, + 0.9995065927505493, + 0.999512791633606, + 0.9988235831260681, + 0.9980236291885376, + 0.9989049434661865, + 0.9982553124427795, + 0.9988952279090881, + 0.9989067316055298, + 0.997117280960083, + 0.999489426612854, + 0.993126630783081, + 0.9988058805465698, + 0.9981436729431152, + 0.9989080429077148, + 0.9987064599990845, + 0.9988402724266052, + 0.9989199638366699, + 0.9983456134796143, + 0.9989196062088013, + 0.9978938698768616, + 0.9987866282463074, + 0.9974762797355652, + 0.9988738894462585, + 0.9988808035850525, + 0.9984097480773926 + ], + "sentiment_counts": { + "POSITIVE": 24, + "NEGATIVE": 5 + }, + "sentiment_distribution": { + "POSITIVE": 0.8275862068965517, + "NEGATIVE": 0.1724137931034483 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8275862068965517 + ] + }, + "final_label": "POSITIVE", + "final_count": 71, + "final_proportion": 0.8255813953488372, + "final_counts": { + "POSITIVE": 71, + "NEGATIVE": 15 + }, + "final_distribution": { + "POSITIVE": 0.8255813953488372, + "NEGATIVE": 0.1744186046511628 + } + } }, { "season_code": "202301", @@ -112793,7 +248611,7 @@ "13:00", "15:50", "S 24 - Sage Hall 24", - "https:\/\/map.yale.edu\/?id=1910#!m\/559547" + "https://map.yale.edu/?id=1910#!m/559547" ] ] }, @@ -112805,15 +248623,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87076\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87076/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "In this course students develop methane literacy, reviewing evidence from primary literature to understand the methane cycle and how it impacts the global climate system. Students read primary scientific literature, contribute questions\/topics for discussion, and map the provenance of research. Meeting time is used for presentations and discussions.", + "description": "In this course students develop methane literacy, reviewing evidence from primary literature to understand the methane cycle and how it impacts the global climate system. Students read primary scientific literature, contribute questions/topics for discussion, and map the provenance of research. Meeting time is used for presentations and discussions.", "short_title": "Seminar: The Role of Methane ...", "title": "Seminar: The Role of Methane in Global Climate Disruption: The Search for Solutions", "school": "FS", @@ -112845,7 +248691,7 @@ "13:00", "15:50", "KRN 319 - Kroon Hall 319", - "https:\/\/map.yale.edu\/?id=1910#!m\/559995" + "https://map.yale.edu/?id=1910#!m/559995" ] ] }, @@ -112856,11 +248702,39 @@ "rp_attr": "", "classnotes": "", "final_exam": "", - "course_home_url": "https:\/\/yale.instructure.com\/courses\/85001", + "course_home_url": "https://yale.instructure.com/courses/85001", "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -112897,7 +248771,7 @@ "13:00", "15:50", "S 32 - Sage Hall 32", - "https:\/\/map.yale.edu\/?id=1910#!m\/559547" + "https://map.yale.edu/?id=1910#!m/559547" ] ] }, @@ -112909,10 +248783,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85002\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85002/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -112953,7 +248855,7 @@ "10:30", "11:50", "KRN 301 - Kroon Hall 301", - "https:\/\/map.yale.edu\/?id=1910#!m\/559995" + "https://map.yale.edu/?id=1910#!m/559995" ] ], "Thursday": [ @@ -112961,7 +248863,7 @@ "10:30", "11:50", "KRN 301 - Kroon Hall 301", - "https:\/\/map.yale.edu\/?id=1910#!m\/559995" + "https://map.yale.edu/?id=1910#!m/559995" ] ] }, @@ -112975,10 +248877,245 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83989\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83989/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988275170326233, + 0.9988946318626404, + 0.998729407787323, + 0.9992610812187195, + 0.998835027217865, + 0.9988985061645508, + 0.9988452196121216, + 0.9988211989402771, + 0.9988341927528381, + 0.9986065030097961, + 0.998936116695404, + 0.9946814179420471, + 0.9986795783042908, + 0.9988184571266174, + 0.9985289573669434, + 0.9986119270324707, + 0.9967750906944275, + 0.9986779093742371, + 0.9941275119781494, + 0.9956504702568054, + 0.9987271428108215, + 0.9987574815750122, + 0.9986284971237183, + 0.9985648989677429, + 0.9987568855285645, + 0.9987369179725647 + ], + "sentiment_counts": { + "POSITIVE": 25, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9615384615384616, + "NEGATIVE": 0.038461538461538464 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9615384615384616 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9951076507568359, + 0.9994944334030151, + 0.9988332390785217, + 0.9967741370201111, + 0.9994920492172241, + 0.998891294002533, + 0.9989238381385803, + 0.9934818148612976, + 0.9931392073631287, + 0.9994889497756958, + 0.9995054006576538, + 0.9959478974342346, + 0.9989339709281921, + 0.993433952331543, + 0.9878794550895691, + 0.9994902610778809, + 0.9985858201980591, + 0.9987394213676453, + 0.998323380947113, + 0.9988505840301514, + 0.9989211559295654, + 0.9970923662185669, + 0.9973465204238892, + 0.9991353154182434, + 0.9982056617736816, + 0.9988642930984497 + ], + "sentiment_counts": { + "NEGATIVE": 13, + "POSITIVE": 13 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984593391418457, + 0.9979299306869507, + 0.987567663192749, + 0.9967310428619385, + 0.998766303062439, + 0.9975093603134155, + 0.9983795881271362, + 0.998904824256897, + 0.9987963438034058, + 0.9989084005355835, + 0.995220959186554, + 0.9994876384735107, + 0.9994996786117554, + 0.9966764450073242, + 0.9989376664161682, + 0.9981131553649902, + 0.998868465423584, + 0.9994975328445435, + 0.9988456964492798, + 0.9994959831237793, + 0.998843789100647, + 0.9955320358276367, + 0.997884213924408, + 0.9987637996673584, + 0.9984101057052612, + 0.9988148212432861, + 0.9986041188240051, + 0.9981021285057068, + 0.9988490343093872, + 0.9991829991340637, + 0.9927445650100708, + 0.9989068508148193 + ], + "sentiment_counts": { + "POSITIVE": 23, + "NEGATIVE": 9 + }, + "sentiment_distribution": { + "POSITIVE": 0.71875, + "NEGATIVE": 0.28125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.71875 + ] + }, + "final_label": "POSITIVE", + "final_count": 61, + "final_proportion": 0.7261904761904762, + "final_counts": { + "POSITIVE": 61, + "NEGATIVE": 23 + }, + "final_distribution": { + "POSITIVE": 0.7261904761904762, + "NEGATIVE": 0.27380952380952384 + } + } }, { "season_code": "202301", @@ -113015,7 +249152,7 @@ "9:00", "10:20", "KRN 321 - Kroon Hall 321", - "https:\/\/map.yale.edu\/?id=1910#!m\/559995" + "https://map.yale.edu/?id=1910#!m/559995" ] ], "Thursday": [ @@ -113023,7 +249160,7 @@ "9:00", "10:20", "KRN 321 - Kroon Hall 321", - "https:\/\/map.yale.edu\/?id=1910#!m\/559995" + "https://map.yale.edu/?id=1910#!m/559995" ] ] }, @@ -113035,15 +249172,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85003\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85003/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "The course is intended to be a practicum, exposing students to real-world tools of the trade as well as the theory underlying them. In place of a textbook, students are provided with approximately 400 pages of actual project documents used for a U.S. wind energy project constructed relatively recently. Through weekly homework assignments, students develop the skills necessary to construct a detailed financial model, largely comparable to what would be used by an investment firm, project developer, or independent power producer. Modeling skills include sizing debt capacity, sensitivity analysis, stochastic forecasting, taxes, and the creation of financial statements. Lectures also provide an introduction to risk management, energy market dynamics, alternative contractual structures, financial structuring, and the core engineering and risks inherent in the most common renewable energy technologies.\u00a0This course is entirely online. While cross-listed at the School of Management, it follow the YSE academic calendar.\u00a0Admission requires an application consisting of a one-paragraph statement of interest. The application is available on Google Forms and can be submitted at\u00a0https:\/\/forms.gle\/YHEM8fWh75f3AwmYA", + "description": "The course is intended to be a practicum, exposing students to real-world tools of the trade as well as the theory underlying them. In place of a textbook, students are provided with approximately 400 pages of actual project documents used for a U.S. wind energy project constructed relatively recently. Through weekly homework assignments, students develop the skills necessary to construct a detailed financial model, largely comparable to what would be used by an investment firm, project developer, or independent power producer. Modeling skills include sizing debt capacity, sensitivity analysis, stochastic forecasting, taxes, and the creation of financial statements. Lectures also provide an introduction to risk management, energy market dynamics, alternative contractual structures, financial structuring, and the core engineering and risks inherent in the most common renewable energy technologies.\u00a0This course is entirely online. While cross-listed at the School of Management, it follow the YSE academic calendar.\u00a0Admission requires an application consisting of a one-paragraph statement of interest. The application is available on Google Forms and can be submitted at\u00a0https://forms.gle/YHEM8fWh75f3AwmYA", "short_title": "Renewable Energy Project Finance", "title": "Renewable Energy Project Finance", "school": "FS", @@ -113093,15 +249258,43 @@ "flags": [ "GB: Elective" ], - "regnotes": "Application Required: https:\/\/forms.gle\/YHEM8fWh75f3AwmYA due by November 28", + "regnotes": "Application Required: https://forms.gle/YHEM8fWh75f3AwmYA due by November 28", "rp_attr": "", "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85004\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85004/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -113138,22 +249331,50 @@ "14:30", "17:20", "BOWERS AUD - Bowers Hall AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/559547" + "https://map.yale.edu/?id=1910#!m/559547" ] ] }, "skills": [], "areas": [], "flags": [], - "regnotes": "by application: due by January 13 at 5:00 pm ET: https:\/\/forms.gle\/bX7PfRJMx9ANmhuFA", + "regnotes": "by application: due by January 13 at 5:00 pm ET: https://forms.gle/bX7PfRJMx9ANmhuFA", "rp_attr": "", "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87187\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87187/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -113190,7 +249411,7 @@ "9:00", "11:50", "KRN 321 - Kroon Hall 321", - "https:\/\/map.yale.edu\/?id=1910#!m\/559995" + "https://map.yale.edu/?id=1910#!m/559995" ] ] }, @@ -113202,17 +249423,45 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86261\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86261/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "In this seminar, we focus on the evolution and development of the environmental justice movement. We pay particular attention to its embrace of climate justice, and we ask what conception of justice is at play in both the environmental justice and climate justice movements. We begin with a legal and social-historical survey but quickly bring the inquiry up to the current moment. We explore the legal and policy developments that have followed the environmental justice critique. Each student chooses a particular movement (or one expression of it) and writes a paper bringing to bear all of the questions we raise in the seminar. (For example, how did opposition from environmental justice advocates lead to a reformed climate change initiative in California? Or what is the genesis of the Sunrise movement, and what legal or policy changes would be required to make it a reality?) The paper need not focus on a domestic response, because the environmental\/climate justice critique is now global.", - "short_title": "Environmental Justice\/Climate...", - "title": "Environmental Justice\/Climate Justice", + "description": "In this seminar, we focus on the evolution and development of the environmental justice movement. We pay particular attention to its embrace of climate justice, and we ask what conception of justice is at play in both the environmental justice and climate justice movements. We begin with a legal and social-historical survey but quickly bring the inquiry up to the current moment. We explore the legal and policy developments that have followed the environmental justice critique. Each student chooses a particular movement (or one expression of it) and writes a paper bringing to bear all of the questions we raise in the seminar. (For example, how did opposition from environmental justice advocates lead to a reformed climate change initiative in California? Or what is the genesis of the Sunrise movement, and what legal or policy changes would be required to make it a reality?) The paper need not focus on a domestic response, because the environmental/climate justice critique is now global.", + "short_title": "Environmental Justice/Climate...", + "title": "Environmental Justice/Climate Justice", "school": "FS", "credits": 0.0, "extra_info": "ACTIVE", @@ -113242,7 +249491,7 @@ "16:00", "17:20", "KRN 301 - Kroon Hall 301", - "https:\/\/map.yale.edu\/?id=1910#!m\/559995" + "https://map.yale.edu/?id=1910#!m/559995" ] ], "Thursday": [ @@ -113250,7 +249499,7 @@ "16:00", "17:20", "KRN 301 - Kroon Hall 301", - "https:\/\/map.yale.edu\/?id=1910#!m\/559995" + "https://map.yale.edu/?id=1910#!m/559995" ] ] }, @@ -113265,10 +249514,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85005\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85005/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -113306,7 +249583,7 @@ "11:00", "12:50", "LORIA 260 - Loria Center 260", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -113315,18 +249592,46 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Architecture courses will be open for registration on January 12 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. (\u201cBlue Form.\u201d)\u201d.\n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https:\/\/www.architecture.yale.edu\/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on Yale SIS. \n", + "classnotes": "Architecture courses will be open for registration on January 12 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. (\u201cBlue Form.\u201d)\u201d.\n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https://www.architecture.yale.edu/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on Yale SIS. \n", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86535\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86535/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "The goal of this seminar is to offer an introduction to the ecology and management, and the policy drivers, of wildland fire in western North America. We seek to build a base of knowledge and understanding regarding fire and its applications\/management in modern forestry. We start by learning the basic history and ecology of forest fire, then look at landscape-level fire behavior, prescribed fire applications, and the drivers of catastrophic fire. The course concludes with an applied field-learning experience managing fire at Yale-Myers Forest. We meet once a week, with a guest Zoom lecturer from the field of fire ecology and management joining most weeks. Each week, there is a presentation followed by a discussion of the lecture content and reading material assigned by the guest lecturer. Students are expected to have read the papers and to come with questions and thoughts ready to discuss. There are several field trips, and if logistically feasible, a prescribed burn that\u00a0students are expected to participate in.", + "description": "The goal of this seminar is to offer an introduction to the ecology and management, and the policy drivers, of wildland fire in western North America. We seek to build a base of knowledge and understanding regarding fire and its applications/management in modern forestry. We start by learning the basic history and ecology of forest fire, then look at landscape-level fire behavior, prescribed fire applications, and the drivers of catastrophic fire. The course concludes with an applied field-learning experience managing fire at Yale-Myers Forest. We meet once a week, with a guest Zoom lecturer from the field of fire ecology and management joining most weeks. Each week, there is a presentation followed by a discussion of the lecture content and reading material assigned by the guest lecturer. Students are expected to have read the papers and to come with questions and thoughts ready to discuss. There are several field trips, and if logistically feasible, a prescribed burn that\u00a0students are expected to participate in.", "short_title": "Seminar in Wildland Fire of t...", "title": "Seminar in Wildland Fire of the Western United States", "school": "FS", @@ -113358,7 +249663,7 @@ "16:00", "17:20", "MARSH R - Marsh Hall R", - "https:\/\/map.yale.edu\/?id=1910#!m\/559984" + "https://map.yale.edu/?id=1910#!m/559984" ] ] }, @@ -113370,15 +249675,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85999\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85999/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This seminar traces the history and development of the biosphere concept and its consequences: biological, social, and cultural. The course starts with a discussion of four major contributors: Eduard Suess, a paleontologist\/geologist who coined the term; Vladimir Vernadsky, who amplified the concept; Arthur Tansley, who coined the term \"ecosystem\"; and G. Evelyn Hutchinson, who amplified and quantified the ecosystem concept. Energy flow in the biosphere is also discussed. Students are required to give seminars on topics of their choice.", + "description": "This seminar traces the history and development of the biosphere concept and its consequences: biological, social, and cultural. The course starts with a discussion of four major contributors: Eduard Suess, a paleontologist/geologist who coined the term; Vladimir Vernadsky, who amplified the concept; Arthur Tansley, who coined the term \"ecosystem\"; and G. Evelyn Hutchinson, who amplified and quantified the ecosystem concept. Energy flow in the biosphere is also discussed. Students are required to give seminars on topics of their choice.", "short_title": "Seminar in the Biosphere: His...", "title": "Seminar in the Biosphere: History, Development, and Consequences", "school": "FS", @@ -113410,7 +249743,7 @@ "13:00", "14:20", "MARSH 12 - Marsh Hall 12", - "https:\/\/map.yale.edu\/?id=1910#!m\/559984" + "https://map.yale.edu/?id=1910#!m/559984" ] ], "Thursday": [ @@ -113418,7 +249751,7 @@ "13:00", "14:20", "MARSH 12 - Marsh Hall 12", - "https:\/\/map.yale.edu\/?id=1910#!m\/559984" + "https://map.yale.edu/?id=1910#!m/559984" ] ] }, @@ -113433,7 +249766,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -113470,7 +249831,7 @@ "17:30", "18:50", "BOWERS AUD - Bowers Hall AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/559547" + "https://map.yale.edu/?id=1910#!m/559547" ] ] }, @@ -113482,10 +249843,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85007\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85007/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -113522,7 +249911,7 @@ "16:00", "17:20", "MARSH 12 - Marsh Hall 12", - "https:\/\/map.yale.edu\/?id=1910#!m\/559984" + "https://map.yale.edu/?id=1910#!m/559984" ] ], "Thursday": [ @@ -113530,7 +249919,7 @@ "16:00", "17:20", "MARSH 12 - Marsh Hall 12", - "https:\/\/map.yale.edu\/?id=1910#!m\/559984" + "https://map.yale.edu/?id=1910#!m/559984" ] ] }, @@ -113545,7 +249934,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -113582,7 +249999,7 @@ "8:30", "10:20", "KRN 301 - Kroon Hall 301", - "https:\/\/map.yale.edu\/?id=1910#!m\/559995" + "https://map.yale.edu/?id=1910#!m/559995" ] ], "Wednesday": [ @@ -113590,7 +250007,7 @@ "8:30", "10:20", "KRN 301 - Kroon Hall 301", - "https:\/\/map.yale.edu\/?id=1910#!m\/559995" + "https://map.yale.edu/?id=1910#!m/559995" ] ] }, @@ -113604,10 +250021,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85009\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85009/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -113647,10 +250092,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87189\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87189/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -113687,7 +250160,7 @@ "13:00", "14:20", "MARSH R - Marsh Hall R", - "https:\/\/map.yale.edu\/?id=1910#!m\/559984" + "https://map.yale.edu/?id=1910#!m/559984" ] ], "Wednesday": [ @@ -113695,7 +250168,7 @@ "13:00", "14:20", "MARSH R - Marsh Hall R", - "https:\/\/map.yale.edu\/?id=1910#!m\/559984" + "https://map.yale.edu/?id=1910#!m/559984" ] ] }, @@ -113704,7 +250177,7 @@ "flags": [ "PH: Climate Change and Health" ], - "regnotes": "To apply for the course, please fill out this brief Qualtrics survey located here https:\/\/resources.environment.yale.edu\/cp\/courses\/edit\/3267\/\n\nApplication deadline: 5pm, Fri Dec 21, 2022.", + "regnotes": "To apply for the course, please fill out this brief Qualtrics survey located here https://resources.environment.yale.edu/cp/courses/edit/3267/\n\nApplication deadline: 5pm, Fri Dec 21, 2022.", "rp_attr": "", "classnotes": "", "final_exam": "", @@ -113712,7 +250185,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -113749,7 +250250,7 @@ "14:30", "15:50", "MARSH R - Marsh Hall R", - "https:\/\/map.yale.edu\/?id=1910#!m\/559984" + "https://map.yale.edu/?id=1910#!m/559984" ] ], "Wednesday": [ @@ -113757,7 +250258,7 @@ "14:30", "15:50", "MARSH R - Marsh Hall R", - "https:\/\/map.yale.edu\/?id=1910#!m\/559984" + "https://map.yale.edu/?id=1910#!m/559984" ] ] }, @@ -113769,10 +250270,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85011\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85011/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -113812,7 +250341,7 @@ "10:00", "11:20", "MARSH 12 - Marsh Hall 12", - "https:\/\/map.yale.edu\/?id=1910#!m\/559984" + "https://map.yale.edu/?id=1910#!m/559984" ] ], "Thursday": [ @@ -113820,22 +250349,50 @@ "10:00", "11:20", "MARSH 12 - Marsh Hall 12", - "https:\/\/map.yale.edu\/?id=1910#!m\/559984" + "https://map.yale.edu/?id=1910#!m/559984" ] ] }, "skills": [], "areas": [], "flags": [], - "regnotes": "Application Required: https:\/\/forms.gle\/fdeMJDx1zSqew1vg8 \nmust register so you're visible in Canvas by January 14.", + "regnotes": "Application Required: https://forms.gle/fdeMJDx1zSqew1vg8 \nmust register so you're visible in Canvas by January 14.", "rp_attr": "", "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85012\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85012/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -113875,7 +250432,7 @@ "12:00", "13:50", "MARSH R - Marsh Hall R", - "https:\/\/map.yale.edu\/?id=1910#!m\/559984" + "https://map.yale.edu/?id=1910#!m/559984" ] ] }, @@ -113889,10 +250446,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85294\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85294/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -113930,7 +250515,7 @@ "13:00", "14:15", "S 24 - Sage Hall 24", - "https:\/\/map.yale.edu\/?id=1910#!m\/559547" + "https://map.yale.edu/?id=1910#!m/559547" ] ], "Wednesday": [ @@ -113938,7 +250523,7 @@ "13:00", "14:15", "S 24 - Sage Hall 24", - "https:\/\/map.yale.edu\/?id=1910#!m\/559547" + "https://map.yale.edu/?id=1910#!m/559547" ] ] }, @@ -113950,10 +250535,135 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83970\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83970/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988930821418762, + 0.9988548755645752, + 0.9987412095069885, + 0.9987366795539856, + 0.9987523555755615, + 0.9986716508865356, + 0.9985538125038147 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989386200904846, + 0.9987971782684326, + 0.9870963096618652, + 0.9989086389541626, + 0.998900294303894, + 0.9982860684394836, + 0.9964297413825989, + 0.9989268183708191, + 0.9988933205604553, + 0.998895525932312, + 0.9988532066345215 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8181818181818182, + "NEGATIVE": 0.18181818181818182 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8181818181818182 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989159107208252, + 0.998924195766449, + 0.9982553124427795, + 0.9989176988601685, + 0.9988307356834412, + 0.9975929856300354, + 0.9989192485809326, + 0.9981911778450012, + 0.998933732509613, + 0.9988722205162048, + 0.9974855184555054 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 27, + "final_proportion": 0.9310344827586207, + "final_counts": { + "POSITIVE": 27, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9310344827586207, + "NEGATIVE": 0.06896551724137931 + } + } }, { "season_code": "202301", @@ -113990,7 +250700,7 @@ "16:00", "17:20", "S 24 - Sage Hall 24", - "https:\/\/map.yale.edu\/?id=1910#!m\/559547" + "https://map.yale.edu/?id=1910#!m/559547" ] ], "Wednesday": [ @@ -113998,7 +250708,7 @@ "16:00", "17:20", "S 24 - Sage Hall 24", - "https:\/\/map.yale.edu\/?id=1910#!m\/559547" + "https://map.yale.edu/?id=1910#!m/559547" ] ] }, @@ -114012,10 +250722,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85013\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85013/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -114053,7 +250791,7 @@ "9:00", "10:15", "KGL 123 - Kline Geology Laboratory 123", - "https:\/\/map.yale.edu\/?id=1910#!m\/559996" + "https://map.yale.edu/?id=1910#!m/559996" ] ], "Wednesday": [ @@ -114061,7 +250799,7 @@ "9:00", "10:15", "KGL 123 - Kline Geology Laboratory 123", - "https:\/\/map.yale.edu\/?id=1910#!m\/559996" + "https://map.yale.edu/?id=1910#!m/559996" ] ] }, @@ -114073,10 +250811,263 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83976\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83976/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9973672032356262, + 0.9984196424484253, + 0.9988155364990234, + 0.9987756609916687, + 0.9988321661949158, + 0.9988376498222351, + 0.998891294002533, + 0.998855471611023, + 0.9987767338752747, + 0.9985948204994202, + 0.9985148310661316, + 0.9982708692550659, + 0.9986635446548462, + 0.9974820017814636, + 0.9989125728607178, + 0.9988941550254822, + 0.9986627101898193, + 0.9987019300460815, + 0.9986611604690552, + 0.9988906979560852, + 0.998856782913208, + 0.9987103939056396, + 0.9929103255271912, + 0.9986580610275269, + 0.998123824596405, + 0.9988232254981995, + 0.9988802075386047, + 0.9988172054290771, + 0.9988652467727661, + 0.9988498687744141 + ], + "sentiment_counts": { + "POSITIVE": 30, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989259839057922, + 0.9987524747848511, + 0.9989197254180908, + 0.9989147186279297, + 0.9987982511520386, + 0.9989350438117981, + 0.998928964138031, + 0.9993396401405334, + 0.9958699345588684, + 0.9949373006820679, + 0.9985887408256531, + 0.9988799691200256, + 0.9977669715881348, + 0.9988922476768494, + 0.9952493906021118, + 0.9988179802894592, + 0.9955682158470154, + 0.9989092350006104, + 0.9903212189674377, + 0.9988462924957275, + 0.9988456964492798, + 0.9988847374916077, + 0.9989185333251953, + 0.9988113641738892, + 0.9988829493522644, + 0.9987491369247437, + 0.9988868832588196, + 0.9989000558853149, + 0.994239091873169, + 0.9987298846244812 + ], + "sentiment_counts": { + "POSITIVE": 23, + "NEGATIVE": 7 + }, + "sentiment_distribution": { + "POSITIVE": 0.7666666666666667, + "NEGATIVE": 0.23333333333333334 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7666666666666667 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989168643951416, + 0.9983828067779541, + 0.9988759160041809, + 0.9989172220230103, + 0.9981922507286072, + 0.9989075660705566, + 0.9989122152328491, + 0.9943139553070068, + 0.9989264607429504, + 0.9995032548904419, + 0.9989029169082642, + 0.9979389309883118, + 0.998180627822876, + 0.9988411068916321, + 0.9980016350746155, + 0.9986448884010315, + 0.9982553124427795, + 0.9988738894462585, + 0.9988721013069153, + 0.993983805179596, + 0.9988844990730286, + 0.997117280960083, + 0.9917116165161133, + 0.99892657995224, + 0.9943850040435791, + 0.9989069700241089, + 0.9971603155136108, + 0.9988983869552612, + 0.9988300204277039, + 0.998910665512085, + 0.9988956451416016, + 0.9896087050437927, + 0.9975765347480774 + ], + "sentiment_counts": { + "POSITIVE": 29, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.8787878787878788, + "NEGATIVE": 0.12121212121212122 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8787878787878788 + ] + }, + "final_label": "POSITIVE", + "final_count": 82, + "final_proportion": 0.8817204301075269, + "final_counts": { + "POSITIVE": 82, + "NEGATIVE": 11 + }, + "final_distribution": { + "POSITIVE": 0.8817204301075269, + "NEGATIVE": 0.11827956989247312 + } + } }, { "season_code": "202301", @@ -114116,22 +251107,50 @@ "10:30", "11:50", "KRN 321 - Kroon Hall 321", - "https:\/\/map.yale.edu\/?id=1910#!m\/559995" + "https://map.yale.edu/?id=1910#!m/559995" ] ] }, "skills": [], "areas": [], "flags": [], - "regnotes": "Application Deadline: Dec 10, 5pm EST - See application information: https:\/\/resources.environment.yale.edu\/cp\/courses\/detail\/2022-2023\/717\/", + "regnotes": "Application Deadline: Dec 10, 5pm EST - See application information: https://resources.environment.yale.edu/cp/courses/detail/2022-2023/717/", "rp_attr": "", "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85014\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85014/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -114168,7 +251187,7 @@ "14:30", "15:50", "KRN 321 - Kroon Hall 321", - "https:\/\/map.yale.edu\/?id=1910#!m\/559995" + "https://map.yale.edu/?id=1910#!m/559995" ] ], "Wednesday": [ @@ -114176,7 +251195,7 @@ "14:30", "15:50", "KRN 321 - Kroon Hall 321", - "https:\/\/map.yale.edu\/?id=1910#!m\/559995" + "https://map.yale.edu/?id=1910#!m/559995" ] ] }, @@ -114190,10 +251209,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86254\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86254/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -114236,7 +251283,7 @@ "9:00", "10:15", "ESC 110 - Environmental Sciences Center 110", - "https:\/\/map.yale.edu\/?id=1910#!m\/560020" + "https://map.yale.edu/?id=1910#!m/560020" ] ], "Thursday": [ @@ -114244,7 +251291,7 @@ "9:00", "10:15", "ESC 110 - Environmental Sciences Center 110", - "https:\/\/map.yale.edu\/?id=1910#!m\/560020" + "https://map.yale.edu/?id=1910#!m/560020" ] ] }, @@ -114258,10 +251305,135 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83986\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83986/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9972192049026489, + 0.998807430267334, + 0.9986886382102966, + 0.9978384375572205, + 0.9989041090011597, + 0.9988611936569214, + 0.99888676404953, + 0.9980066418647766, + 0.9988403916358948, + 0.9986371397972107 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989226460456848, + 0.9989256262779236, + 0.9994869232177734, + 0.998843789100647, + 0.9989340901374817, + 0.998659610748291, + 0.9988831877708435, + 0.9985139966011047, + 0.9989125728607178 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.7777777777777778, + "NEGATIVE": 0.2222222222222222 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7777777777777778 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986080527305603, + 0.9988961219787598, + 0.9972487092018127, + 0.9985396862030029, + 0.9989063739776611, + 0.9989249110221863, + 0.99869304895401, + 0.9989124536514282, + 0.9989282488822937, + 0.9988740086555481 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 27, + "final_proportion": 0.9310344827586207, + "final_counts": { + "POSITIVE": 27, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9310344827586207, + "NEGATIVE": 0.06896551724137931 + } + } }, { "season_code": "202301", @@ -114298,7 +251470,7 @@ "13:00", "15:50", "KRN G01 - Kroon Hall G01", - "https:\/\/map.yale.edu\/?id=1910#!m\/559995" + "https://map.yale.edu/?id=1910#!m/559995" ] ] }, @@ -114313,10 +251485,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85015\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85015/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -114357,7 +251557,7 @@ "10:30", "11:45", "ESC 110 - Environmental Sciences Center 110", - "https:\/\/map.yale.edu\/?id=1910#!m\/560020" + "https://map.yale.edu/?id=1910#!m/560020" ] ], "Wednesday": [ @@ -114365,7 +251565,7 @@ "10:30", "11:45", "ESC 110 - Environmental Sciences Center 110", - "https:\/\/map.yale.edu\/?id=1910#!m\/560020" + "https://map.yale.edu/?id=1910#!m/560020" ] ] }, @@ -114379,10 +251579,129 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83983\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83983/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9995111227035522, + 0.9989364743232727, + 0.9987607002258301, + 0.9988276362419128, + 0.9995059967041016, + 0.998873770236969, + 0.9988117218017578, + 0.9989109039306641, + 0.9978885054588318 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 7 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2222222222222222, + "POSITIVE": 0.7777777777777778 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7777777777777778 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9995124340057373, + 0.9988172054290771, + 0.9923093318939209, + 0.9988491535186768, + 0.9995143413543701, + 0.9989230036735535, + 0.9987806677818298, + 0.9947256445884705 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 6 + }, + "sentiment_distribution": { + "NEGATIVE": 0.25, + "POSITIVE": 0.75 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9995095729827881, + 0.9988215565681458, + 0.9981653094291687, + 0.998860239982605, + 0.9995077848434448, + 0.9988996982574463, + 0.998842179775238, + 0.9988991022109985, + 0.9995162487030029 + ], + "sentiment_counts": { + "NEGATIVE": 4, + "POSITIVE": 5 + }, + "sentiment_distribution": { + "NEGATIVE": 0.4444444444444444, + "POSITIVE": 0.5555555555555556 + }, + "sentiment_overall": [ + "POSITIVE", + 0.5555555555555556 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 0.6923076923076923, + "final_counts": { + "NEGATIVE": 8, + "POSITIVE": 18 + }, + "final_distribution": { + "NEGATIVE": 0.3076923076923077, + "POSITIVE": 0.6923076923076923 + } + } }, { "season_code": "202301", @@ -114419,14 +251738,14 @@ "13:00", "15:50", "MARSH R - Marsh Hall R", - "https:\/\/map.yale.edu\/?id=1910#!m\/559984" + "https://map.yale.edu/?id=1910#!m/559984" ] ] }, "skills": [], "areas": [], "flags": [], - "regnotes": "Application required by Friday, Dec 9, 5pm Est\nInformation can be found here:\nhttps:\/\/resources.environment.yale.edu\/cp\/courses\/detail\/2022-2023\/731\/\n", + "regnotes": "Application required by Friday, Dec 9, 5pm Est\nInformation can be found here:\nhttps://resources.environment.yale.edu/cp/courses/detail/2022-2023/731/\n", "rp_attr": "", "classnotes": "", "final_exam": "", @@ -114434,12 +251753,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "Recommended prerequisite: college-level biology or ecology course.", - "description": "This course explores a range of oceanic ecosystems and how these environments function as coupled physical\/biological systems. Solar energy drives the structuring of the oceans in the vertical dimension, and the formation of both deep and surface currents. These currents are the means by\u00a0which heat and material are redistributed and are the determinants of where nutrients are available\u00a0for support of primary production. The currents and other physical processes also determine the distribution and abundance of organisms from phytoplankton to fish and whales. Anthropogenic\u00a0impacts on oceans are also explored, such as the effects of fishing and climate change. This\u00a0natural science course provides a foundation for those interested in the ecology of marine\u00a0systems and in the management of coastal zones. Enrollment limited to fifteen.", + "description": "This course explores a range of oceanic ecosystems and how these environments function as coupled physical/biological systems. Solar energy drives the structuring of the oceans in the vertical dimension, and the formation of both deep and surface currents. These currents are the means by\u00a0which heat and material are redistributed and are the determinants of where nutrients are available\u00a0for support of primary production. The currents and other physical processes also determine the distribution and abundance of organisms from phytoplankton to fish and whales. Anthropogenic\u00a0impacts on oceans are also explored, such as the effects of fishing and climate change. This\u00a0natural science course provides a foundation for those interested in the ecology of marine\u00a0systems and in the management of coastal zones. Enrollment limited to fifteen.", "short_title": "Biological Oceanography", "title": "Biological Oceanography", "school": "FS", @@ -114473,7 +251820,7 @@ "11:35", "12:50", "ESC 110 - Environmental Sciences Center 110", - "https:\/\/map.yale.edu\/?id=1910#!m\/560020" + "https://map.yale.edu/?id=1910#!m/560020" ] ], "Thursday": [ @@ -114481,7 +251828,7 @@ "11:35", "12:50", "ESC 110 - Environmental Sciences Center 110", - "https:\/\/map.yale.edu\/?id=1910#!m\/560020" + "https://map.yale.edu/?id=1910#!m/560020" ] ] }, @@ -114495,10 +251842,135 @@ "classnotes": "Preference will be given to YSE students, EVST seniors and juniors, and E&EB majors.", "final_exam": "Monday, May 8, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83984\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83984/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988021850585938, + 0.9988093376159668, + 0.9987090826034546, + 0.9989235997200012, + 0.9988585710525513, + 0.9985994696617126, + 0.9988605976104736, + 0.9988070726394653, + 0.998830258846283 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988647699356079, + 0.9987874627113342, + 0.9988347887992859, + 0.9989232420921326, + 0.9988313317298889, + 0.9989027976989746, + 0.9984787106513977, + 0.9985548853874207 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981436729431152, + 0.9989182949066162, + 0.9987651109695435, + 0.9988358616828918, + 0.9989180564880371, + 0.9930166006088257, + 0.9989044666290283, + 0.9987332224845886, + 0.9989073276519775, + 0.9989186525344849, + 0.9988166093826294, + 0.9989036321640015 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9166666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 28, + "final_proportion": 0.9655172413793104, + "final_counts": { + "POSITIVE": 28, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9655172413793104, + "NEGATIVE": 0.034482758620689655 + } + } }, { "season_code": "202301", @@ -114535,7 +252007,7 @@ "8:30", "9:50", "BOWERS AUD - Bowers Hall AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/559547" + "https://map.yale.edu/?id=1910#!m/559547" ] ], "Thursday": [ @@ -114543,7 +252015,7 @@ "8:30", "9:50", "BOWERS AUD - Bowers Hall AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/559547" + "https://map.yale.edu/?id=1910#!m/559547" ] ] }, @@ -114555,10 +252027,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85017\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85017/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -114595,7 +252095,7 @@ "10:30", "11:50", "MARSH R - Marsh Hall R", - "https:\/\/map.yale.edu\/?id=1910#!m\/559984" + "https://map.yale.edu/?id=1910#!m/559984" ] ], "Wednesday": [ @@ -114603,7 +252103,7 @@ "10:30", "11:50", "MARSH R - Marsh Hall R", - "https:\/\/map.yale.edu\/?id=1910#!m\/559984" + "https://map.yale.edu/?id=1910#!m/559984" ] ] }, @@ -114617,10 +252117,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85018\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85018/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -114663,7 +252191,7 @@ "9:00", "10:20", "MARSH R - Marsh Hall R", - "https:\/\/map.yale.edu\/?id=1910#!m\/559984" + "https://map.yale.edu/?id=1910#!m/559984" ] ], "Wednesday": [ @@ -114671,7 +252199,7 @@ "9:00", "10:20", "MARSH R - Marsh Hall R", - "https:\/\/map.yale.edu\/?id=1910#!m\/559984" + "https://map.yale.edu/?id=1910#!m/559984" ] ] }, @@ -114683,10 +252211,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85019\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85019/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -114723,7 +252279,7 @@ "10:30", "11:50", "MARSH 12 - Marsh Hall 12", - "https:\/\/map.yale.edu\/?id=1910#!m\/559984" + "https://map.yale.edu/?id=1910#!m/559984" ] ], "Wednesday": [ @@ -114731,7 +252287,7 @@ "10:30", "11:50", "MARSH 12 - Marsh Hall 12", - "https:\/\/map.yale.edu\/?id=1910#!m\/559984" + "https://map.yale.edu/?id=1910#!m/559984" ] ] }, @@ -114743,10 +252299,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85020\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85020/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -114783,7 +252367,7 @@ "13:00", "15:50", "BOWERS AUD - Bowers Hall AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/559547" + "https://map.yale.edu/?id=1910#!m/559547" ] ] }, @@ -114795,10 +252379,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85021\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85021/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -114838,7 +252450,7 @@ "9:00", "10:15", "YSB MARSH - Yale Science Building MARSH", - "https:\/\/map.yale.edu\/?id=1910#!m\/563700" + "https://map.yale.edu/?id=1910#!m/563700" ] ], "Thursday": [ @@ -114846,7 +252458,7 @@ "9:00", "10:15", "YSB MARSH - Yale Science Building MARSH", - "https:\/\/map.yale.edu\/?id=1910#!m\/563700" + "https://map.yale.edu/?id=1910#!m/563700" ] ] }, @@ -114860,15 +252472,690 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84854\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84854/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9957060217857361, + 0.9983963370323181, + 0.9987702965736389, + 0.9993384480476379, + 0.995563268661499, + 0.998848557472229, + 0.998505711555481, + 0.9986794590950012, + 0.9978664517402649, + 0.9987805485725403, + 0.8332710266113281, + 0.9985344409942627, + 0.9988658428192139, + 0.9980286955833435, + 0.9988411068916321, + 0.9979686141014099, + 0.9842320680618286, + 0.9987119436264038, + 0.9986373782157898, + 0.9965710639953613, + 0.9982958436012268, + 0.99853515625, + 0.9974263310432434, + 0.9988835453987122, + 0.9995074272155762, + 0.8332710266113281, + 0.9908440709114075, + 0.9957789182662964, + 0.9978261590003967, + 0.9984598159790039, + 0.9986514449119568, + 0.9542851448059082, + 0.998741090297699, + 0.995273768901825, + 0.9976206421852112, + 0.998802661895752, + 0.9986287355422974, + 0.9981252551078796, + 0.9988033771514893, + 0.998895525932312, + 0.9979217648506165, + 0.9986355900764465, + 0.9983229041099548, + 0.9986674785614014, + 0.9983331561088562, + 0.9981325268745422, + 0.9982004165649414, + 0.9987947940826416, + 0.9988102912902832, + 0.9988331198692322, + 0.998475968837738, + 0.9988492727279663, + 0.997967541217804, + 0.998588502407074, + 0.9985595345497131, + 0.9987999200820923, + 0.9987727999687195, + 0.9926827549934387, + 0.9985735416412354, + 0.998753547668457, + 0.9988164901733398, + 0.9854896068572998, + 0.9976977705955505, + 0.9984960556030273, + 0.998335063457489, + 0.9943777918815613, + 0.9986881613731384, + 0.9970759153366089, + 0.9982156753540039, + 0.9986394047737122, + 0.9938712120056152, + 0.9969344139099121, + 0.9983464479446411, + 0.998645007610321, + 0.9943760633468628, + 0.9982286095619202, + 0.9926155805587769, + 0.9981200098991394, + 0.9986714124679565, + 0.9985120892524719, + 0.9984087347984314, + 0.9988582134246826, + 0.9987971782684326, + 0.9859678745269775, + 0.9982370138168335, + 0.9975293278694153, + 0.9969696402549744, + 0.9981050491333008, + 0.9987435936927795, + 0.9988685846328735, + 0.9986504912376404, + 0.9986410737037659, + 0.8332710266113281, + 0.998822033405304, + 0.9979312419891357, + 0.9989093542098999, + 0.9981157779693604, + 0.9985456466674805, + 0.99813312292099, + 0.9975791573524475, + 0.9988284707069397, + 0.9988631010055542 + ], + "sentiment_counts": { + "POSITIVE": 94, + "NEGATIVE": 8 + }, + "sentiment_distribution": { + "POSITIVE": 0.9215686274509803, + "NEGATIVE": 0.0784313725490196 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9215686274509803 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.997785210609436, + 0.9988498687744141, + 0.9985697269439697, + 0.998359739780426, + 0.9928559064865112, + 0.9988481998443604, + 0.9916354417800903, + 0.9995044469833374, + 0.9987149238586426, + 0.9989234805107117, + 0.9989116191864014, + 0.9989184141159058, + 0.9987666606903076, + 0.9987647533416748, + 0.9988968372344971, + 0.9994920492172241, + 0.9989238381385803, + 0.9994913339614868, + 0.9994827508926392, + 0.9982263445854187, + 0.9995081424713135, + 0.994878888130188, + 0.9989320635795593, + 0.999496340751648, + 0.9900509715080261, + 0.9988180994987488, + 0.9984726309776306, + 0.9989206790924072, + 0.9987354874610901, + 0.9994760155677795, + 0.9988973140716553, + 0.9989012479782104, + 0.9988056421279907, + 0.998356282711029, + 0.9989137649536133, + 0.9986463189125061, + 0.9989293217658997, + 0.9973716735839844, + 0.9988036155700684, + 0.9986655712127686, + 0.9908451437950134, + 0.9982427358627319, + 0.9989362359046936, + 0.995399534702301, + 0.998257577419281, + 0.9987540245056152, + 0.9943718910217285, + 0.9832941293716431, + 0.9994181394577026, + 0.9939607381820679, + 0.9986636638641357, + 0.9986292123794556, + 0.9869707822799683, + 0.9953317046165466, + 0.9986482262611389, + 0.9954794645309448, + 0.9988459348678589, + 0.9851312041282654, + 0.9994962215423584, + 0.9980888962745667, + 0.9985330104827881, + 0.9980475902557373, + 0.9986332058906555, + 0.9986251592636108, + 0.9988232254981995, + 0.9956852197647095, + 0.9989041090011597, + 0.9987026453018188, + 0.9895289540290833, + 0.9982047080993652, + 0.9983447790145874, + 0.998909592628479, + 0.9987529516220093, + 0.998927652835846, + 0.9965546131134033, + 0.9988870024681091, + 0.998874843120575, + 0.9986299276351929, + 0.9986182451248169, + 0.9988904595375061, + 0.9982571005821228, + 0.9983726143836975, + 0.9987938404083252, + 0.9993858337402344, + 0.9985598921775818, + 0.994134247303009, + 0.9985162615776062, + 0.9984220266342163, + 0.9877961874008179, + 0.9989056587219238, + 0.9971858859062195, + 0.9894683957099915, + 0.9989056587219238, + 0.995390772819519, + 0.9988178610801697, + 0.9988706707954407, + 0.9987236857414246, + 0.9987381100654602, + 0.9989364743232727, + 0.9972062706947327, + 0.9988799691200256 + ], + "sentiment_counts": { + "NEGATIVE": 22, + "POSITIVE": 79 + }, + "sentiment_distribution": { + "NEGATIVE": 0.21782178217821782, + "POSITIVE": 0.7821782178217822 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7821782178217822 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988545179367065, + 0.9987943172454834, + 0.9994895458221436, + 0.9955366849899292, + 0.9937028288841248, + 0.9988535642623901, + 0.9994581341743469, + 0.9895998239517212, + 0.9974656105041504, + 0.700718104839325, + 0.9988890290260315, + 0.9995052814483643, + 0.998842179775238, + 0.9988429546356201, + 0.9988638162612915, + 0.9983245730400085, + 0.9989330172538757, + 0.9987275004386902, + 0.9987685084342957, + 0.9988576173782349, + 0.9953336119651794, + 0.9989141225814819, + 0.9989148378372192, + 0.9995099306106567, + 0.9960653185844421, + 0.9987586736679077, + 0.9983124732971191, + 0.9987994432449341, + 0.9989162683486938, + 0.995817244052887, + 0.9989250302314758, + 0.9974592328071594, + 0.997117280960083, + 0.9986811280250549, + 0.9988783001899719, + 0.99854576587677, + 0.9989367127418518, + 0.9994781613349915, + 0.9986039996147156, + 0.9987154006958008, + 0.999152421951294, + 0.9977813363075256, + 0.9988958835601807, + 0.9988234639167786, + 0.9978014826774597, + 0.9900681972503662, + 0.9983722567558289, + 0.9987381100654602, + 0.9994654059410095, + 0.9960653185844421, + 0.9782708287239075, + 0.9938364624977112, + 0.997117280960083, + 0.9987514019012451, + 0.9982553124427795, + 0.9983006119728088, + 0.9987483024597168, + 0.9960015416145325, + 0.9991791844367981, + 0.6829744577407837, + 0.9988372921943665, + 0.9994248151779175, + 0.9946631193161011, + 0.9955321550369263, + 0.9987132549285889, + 0.9977285265922546, + 0.9988968372344971, + 0.9963952898979187, + 0.9988008737564087, + 0.998875081539154, + 0.9979496598243713, + 0.9988853335380554, + 0.9989013671875, + 0.9984482526779175, + 0.9989057779312134, + 0.9915626645088196, + 0.9987432360649109, + 0.9988924860954285, + 0.9989084005355835, + 0.9988665580749512, + 0.9988929629325867, + 0.9988725781440735, + 0.9988448619842529, + 0.9910309314727783, + 0.996421217918396, + 0.9987500905990601, + 0.9975625276565552, + 0.9984638690948486, + 0.9962217807769775, + 0.9988784193992615, + 0.9987278580665588, + 0.9989045858383179, + 0.9989256262779236, + 0.9988155364990234, + 0.9988860487937927, + 0.9988576173782349, + 0.9986879229545593, + 0.9988355040550232, + 0.998835027217865, + 0.9988396763801575, + 0.9989180564880371 + ], + "sentiment_counts": { + "POSITIVE": 83, + "NEGATIVE": 18 + }, + "sentiment_distribution": { + "POSITIVE": 0.8217821782178217, + "NEGATIVE": 0.1782178217821782 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8217821782178217 + ] + }, + "final_label": "POSITIVE", + "final_count": 256, + "final_proportion": 0.8421052631578947, + "final_counts": { + "POSITIVE": 256, + "NEGATIVE": 48 + }, + "final_distribution": { + "POSITIVE": 0.8421052631578947, + "NEGATIVE": 0.15789473684210525 + } + } }, { "season_code": "202301", "requirements": "Prerequisites: a prior course in introductory statistics and a good understanding of multiple linear regression.", - "description": "An introduction to the analysis of multivariate data. Topics include multivariate analysis of variance (MANOVA), principal components analysis, cluster analysis, canonical correlation, ordination methods including multidimensional scaling, discriminate analysis, factor analysis, and structural equations modeling. Emphasis is placed on practical application of multivariate techniques to a variety of examples in the natural and social sciences. Students are required to select a dataset early in the term for use throughout the term. There are regular assignments and a final project. Extensive use of computers is required\u2014students may use any combination of R, SAS, SPSS, MINITAB, and STATA. Three hours lecture\/discussion.", + "description": "An introduction to the analysis of multivariate data. Topics include multivariate analysis of variance (MANOVA), principal components analysis, cluster analysis, canonical correlation, ordination methods including multidimensional scaling, discriminate analysis, factor analysis, and structural equations modeling. Emphasis is placed on practical application of multivariate techniques to a variety of examples in the natural and social sciences. Students are required to select a dataset early in the term for use throughout the term. There are regular assignments and a final project. Extensive use of computers is required\u2014students may use any combination of R, SAS, SPSS, MINITAB, and STATA. Three hours lecture/discussion.", "short_title": "Multivariate Data Analysis in...", "title": "Multivariate Data Analysis in the Environmental Sciences", "school": "FS", @@ -114924,10 +253211,515 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84872\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84872/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9974631071090698, + 0.998528003692627, + 0.9988002777099609, + 0.9970731735229492, + 0.9960675239562988, + 0.9659496545791626, + 0.997296154499054, + 0.9947056174278259, + 0.9981707334518433, + 0.9969160556793213, + 0.9977027773857117, + 0.997220516204834, + 0.9982934594154358, + 0.9980760812759399, + 0.9986336827278137, + 0.9994834661483765, + 0.9953943490982056, + 0.9984435439109802, + 0.9987187385559082, + 0.9982361793518066, + 0.9989237189292908, + 0.9988762736320496, + 0.9988179802894592, + 0.9986907839775085, + 0.998824417591095, + 0.9883784651756287, + 0.9988563060760498, + 0.9951117634773254, + 0.6081044673919678, + 0.9994456171989441, + 0.9958964586257935, + 0.9949340224266052, + 0.9985126852989197, + 0.9854406714439392, + 0.9988154172897339, + 0.9979081153869629, + 0.9988879561424255, + 0.9987120628356934, + 0.9988062381744385, + 0.9935043454170227, + 0.9932188391685486, + 0.9971977472305298, + 0.9979937076568604, + 0.9910203814506531, + 0.9984378218650818, + 0.9994788765907288, + 0.9947144389152527, + 0.9987976551055908, + 0.996218740940094, + 0.9987837672233582, + 0.995712399482727, + 0.9987578392028809, + 0.9967203736305237, + 0.9979610443115234, + 0.9961879849433899, + 0.9979415535926819, + 0.9972532391548157, + 0.9978043437004089, + 0.9960780739784241, + 0.9987622499465942, + 0.9986783862113953, + 0.9610385894775391, + 0.9982849955558777, + 0.9971428513526917, + 0.9915689826011658, + 0.9905773401260376, + 0.9972705245018005, + 0.9978042244911194, + 0.9986642599105835, + 0.9984989166259766, + 0.9982166886329651, + 0.9945003986358643, + 0.9987824559211731 + ], + "sentiment_counts": { + "POSITIVE": 68, + "NEGATIVE": 5 + }, + "sentiment_distribution": { + "POSITIVE": 0.9315068493150684, + "NEGATIVE": 0.0684931506849315 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9315068493150684 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9994578957557678, + 0.9988375306129456, + 0.9989497065544128, + 0.9987782835960388, + 0.9986897110939026, + 0.9988290667533875, + 0.9988730549812317, + 0.9988479614257812, + 0.9994533658027649, + 0.9987873435020447, + 0.9953585267066956, + 0.9992372989654541, + 0.9988511800765991, + 0.9986960291862488, + 0.9988130331039429, + 0.9988947510719299, + 0.9954173564910889, + 0.9989209175109863, + 0.9978182315826416, + 0.9922468662261963, + 0.9994290471076965, + 0.9988716244697571, + 0.9994946718215942, + 0.9994732737541199, + 0.9988227486610413, + 0.9989221096038818, + 0.9989126920700073, + 0.9988269209861755, + 0.9987199306488037, + 0.9972999691963196, + 0.998588502407074, + 0.9925130605697632, + 0.9990230798721313, + 0.9988324046134949, + 0.9986667633056641, + 0.9972211122512817, + 0.9983383417129517, + 0.995060384273529, + 0.9988479614257812, + 0.9989051818847656, + 0.9988699555397034, + 0.9994475245475769, + 0.9185613393783569, + 0.9986540079116821, + 0.9987469911575317, + 0.9981921315193176, + 0.9960364699363708, + 0.991152822971344, + 0.9988514184951782, + 0.9988914132118225, + 0.9989385008811951, + 0.9988906979560852, + 0.7822515368461609, + 0.998161256313324, + 0.9989172220230103, + 0.9994984865188599, + 0.9969452023506165, + 0.9939743876457214, + 0.9986761212348938, + 0.9989206790924072, + 0.9854721426963806, + 0.9988839030265808, + 0.9989269375801086, + 0.998724639415741, + 0.9988075494766235, + 0.998819887638092, + 0.9988993406295776, + 0.9988875985145569, + 0.9603727459907532, + 0.9988254904747009, + 0.9974647760391235, + 0.9962582588195801 + ], + "sentiment_counts": { + "NEGATIVE": 20, + "POSITIVE": 52 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2777777777777778, + "POSITIVE": 0.7222222222222222 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7222222222222222 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987584352493286, + 0.9986959099769592, + 0.9887033104896545, + 0.9984014630317688, + 0.9987432360649109, + 0.9987397789955139, + 0.9986951947212219, + 0.9978541731834412, + 0.9988546371459961, + 0.9985734224319458, + 0.9977577328681946, + 0.9988981485366821, + 0.9975903034210205, + 0.9985647797584534, + 0.9987255930900574, + 0.9968332648277283, + 0.9987712502479553, + 0.9987599849700928, + 0.9988337159156799, + 0.998817503452301, + 0.9990045428276062, + 0.997117280960083, + 0.9983184337615967, + 0.9989257454872131, + 0.9973255395889282, + 0.9793419241905212, + 0.9971292614936829, + 0.9988428354263306, + 0.9987934827804565, + 0.9974592328071594, + 0.9990301132202148, + 0.9982553124427795, + 0.999447762966156, + 0.9989218711853027, + 0.9954516291618347, + 0.9986667633056641, + 0.9982553124427795, + 0.9970216155052185, + 0.9987241625785828, + 0.9988901019096375, + 0.9988497495651245, + 0.9988411068916321, + 0.9985730648040771, + 0.9974592328071594, + 0.9979740977287292, + 0.9994804263114929, + 0.9988839030265808, + 0.9943140745162964, + 0.997117280960083, + 0.9988817572593689, + 0.9988898634910583, + 0.9988113641738892, + 0.9691007733345032, + 0.9939804077148438, + 0.9989174604415894, + 0.9995142221450806, + 0.9978918433189392, + 0.9982432126998901, + 0.9988896250724792, + 0.9989089965820312, + 0.9988692402839661, + 0.9987128973007202, + 0.9978887438774109, + 0.9988570213317871, + 0.9987962245941162, + 0.9958069324493408, + 0.9984657764434814, + 0.9989056587219238, + 0.9988873600959778, + 0.9987415671348572, + 0.9978981018066406, + 0.997117280960083, + 0.9974592328071594, + 0.9988345503807068 + ], + "sentiment_counts": { + "POSITIVE": 63, + "NEGATIVE": 11 + }, + "sentiment_distribution": { + "POSITIVE": 0.8513513513513513, + "NEGATIVE": 0.14864864864864866 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8513513513513513 + ] + }, + "final_label": "POSITIVE", + "final_count": 183, + "final_proportion": 0.8356164383561644, + "final_counts": { + "POSITIVE": 183, + "NEGATIVE": 36 + }, + "final_distribution": { + "POSITIVE": 0.8356164383561644, + "NEGATIVE": 0.1643835616438356 + } + } }, { "season_code": "202301", @@ -114967,7 +253759,7 @@ "17:30", "18:50", "S 41C - Sage Hall 41C", - "https:\/\/map.yale.edu\/?id=1910#!m\/559547" + "https://map.yale.edu/?id=1910#!m/559547" ] ], "Thursday": [ @@ -114975,7 +253767,7 @@ "17:30", "18:50", "S 41C - Sage Hall 41C", - "https:\/\/map.yale.edu\/?id=1910#!m\/559547" + "https://map.yale.edu/?id=1910#!m/559547" ] ] }, @@ -114987,15 +253779,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85022\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85022/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "As wildlife and wildland conservation programs have multiplied and grown in size, conservation organizations have sought methods to improve strategic project planning, assessment of progress, cross-project comparison, learning of lessons, and transparency for donors. To address these challenges, major nonprofit organizations have collaboratively designed a set of decision-support tools for planning field projects and programs and for monitoring their progress, summarized in the \"Open Standards for the Practice of Conservation\" (http:\/\/cmp-openstandards.org). Use of these tools has allowed organizations to more clearly articulate strategies, define priority actions, critically assess success, manage adaptively, and derive lessons\u2014all of which help to improve effectiveness and respond to donor interests. Students in this course explore a mutually reinforcing suite of these project tools: their underlying principles are introduced, students practice the techniques, and current case studies from field conservation are examined to explore tool utility. Students synthesize use of these design tools in a final project proposal focused on a single case study of their choice. The suite of decision-support tools covered includes situation (logic) models for project design, stakeholder assessments, threats and opportunities analysis, conservation target identification, and monitoring frameworks. Students gain experience in design of projects and their monitoring, as well as familiarity with budgeting. Enrollment limited to twelve.", + "description": "As wildlife and wildland conservation programs have multiplied and grown in size, conservation organizations have sought methods to improve strategic project planning, assessment of progress, cross-project comparison, learning of lessons, and transparency for donors. To address these challenges, major nonprofit organizations have collaboratively designed a set of decision-support tools for planning field projects and programs and for monitoring their progress, summarized in the \"Open Standards for the Practice of Conservation\" (http://cmp-openstandards.org). Use of these tools has allowed organizations to more clearly articulate strategies, define priority actions, critically assess success, manage adaptively, and derive lessons\u2014all of which help to improve effectiveness and respond to donor interests. Students in this course explore a mutually reinforcing suite of these project tools: their underlying principles are introduced, students practice the techniques, and current case studies from field conservation are examined to explore tool utility. Students synthesize use of these design tools in a final project proposal focused on a single case study of their choice. The suite of decision-support tools covered includes situation (logic) models for project design, stakeholder assessments, threats and opportunities analysis, conservation target identification, and monitoring frameworks. Students gain experience in design of projects and their monitoring, as well as familiarity with budgeting. Enrollment limited to twelve.", "short_title": "Tools for Conservation Projec...", "title": "Tools for Conservation Project Design and Management", "school": "FS", @@ -115030,7 +253850,7 @@ "14:30", "15:50", "S 41C - Sage Hall 41C", - "https:\/\/map.yale.edu\/?id=1910#!m\/559547" + "https://map.yale.edu/?id=1910#!m/559547" ] ], "Wednesday": [ @@ -115038,7 +253858,7 @@ "14:30", "15:50", "S 41C - Sage Hall 41C", - "https:\/\/map.yale.edu\/?id=1910#!m\/559547" + "https://map.yale.edu/?id=1910#!m/559547" ] ] }, @@ -115050,15 +253870,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85023\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85023/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This project-based course is for students engaged in social research, humanities study, applied management, natural science, and\/or conservation policy in Western US landscapes. Western lands and communities face growing ecological, cultural, economic, and social equity problems that require integrated solutions. Working individually or in small teams, students complete self-driven projects. There are two options for these projects: (1) scholarly research, or (2) applied research for a practitioner-client. Students conducting scholarly research hone and apply skills for data collection, analysis, and scholarly writing for publication. Applied students engage in similar work, but they establish a relationship with a client of their choosing and carry out a project with concrete deliverables informed by the needs of that client (e.g., NGOs, federal land agencies, Native Nations, local governments, etc.). The course counts toward the MEM Capstone, if desired. There is a mandatory field trip for experiential learning during spring break. As such, the course is capped at twelve and requires an application. No preference is given to a particular field of study. Some preference is given to students having prior experience with Western lands and communities.", + "description": "This project-based course is for students engaged in social research, humanities study, applied management, natural science, and/or conservation policy in Western US landscapes. Western lands and communities face growing ecological, cultural, economic, and social equity problems that require integrated solutions. Working individually or in small teams, students complete self-driven projects. There are two options for these projects: (1) scholarly research, or (2) applied research for a practitioner-client. Students conducting scholarly research hone and apply skills for data collection, analysis, and scholarly writing for publication. Applied students engage in similar work, but they establish a relationship with a client of their choosing and carry out a project with concrete deliverables informed by the needs of that client (e.g., NGOs, federal land agencies, Native Nations, local governments, etc.). The course counts toward the MEM Capstone, if desired. There is a mandatory field trip for experiential learning during spring break. As such, the course is capped at twelve and requires an application. No preference is given to a particular field of study. Some preference is given to students having prior experience with Western lands and communities.", "short_title": "Western Lands and Communities...", "title": "Western Lands and Communities Field Clinic: Research to Practice", "school": "FS", @@ -115105,7 +253953,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -115146,7 +254022,7 @@ "10:30", "11:50", "KRN 319 - Kroon Hall 319", - "https:\/\/map.yale.edu\/?id=1910#!m\/559995" + "https://map.yale.edu/?id=1910#!m/559995" ] ], "Wednesday": [ @@ -115154,7 +254030,7 @@ "10:30", "11:50", "KRN 319 - Kroon Hall 319", - "https:\/\/map.yale.edu\/?id=1910#!m\/559995" + "https://map.yale.edu/?id=1910#!m/559995" ] ] }, @@ -115166,10 +254042,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85874\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85874/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -115206,7 +254110,7 @@ "14:10", "15:35", "SLB 120 - Sterling Law Buildings 120", - "https:\/\/map.yale.edu\/?id=1910#!m\/531532" + "https://map.yale.edu/?id=1910#!m/531532" ] ], "Thursday": [ @@ -115214,7 +254118,7 @@ "14:10", "15:35", "SLB 120 - Sterling Law Buildings 120", - "https:\/\/map.yale.edu\/?id=1910#!m\/531532" + "https://map.yale.edu/?id=1910#!m/531532" ] ] }, @@ -115226,15 +254130,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85049\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85049/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "Prerequisite: introductory course in statistics is mandatory. An intermediate-level course in statistical modeling and handling spatial data is strongly preferred, but not required.", - "description": "An introduction to spatial statistical techniques with computer applications. Topics include modeling spatially correlated data, quantifying spatial association and autocorrelation, interpolation methods, variograms, kriging, and spatial point patterns. Examples are drawn from ecology, sociology, public health, and subjects proposed by students. Four to five lab\/homework assignments and a final project. The class makes extensive use of the R programming language.", + "description": "An introduction to spatial statistical techniques with computer applications. Topics include modeling spatially correlated data, quantifying spatial association and autocorrelation, interpolation methods, variograms, kriging, and spatial point patterns. Examples are drawn from ecology, sociology, public health, and subjects proposed by students. Four to five lab/homework assignments and a final project. The class makes extensive use of the R programming language.", "short_title": "Applied Spatial Statistics", "title": "Applied Spatial Statistics", "school": "FS", @@ -115267,7 +254199,7 @@ "10:30", "11:50", "MARSH R - Marsh Hall R", - "https:\/\/map.yale.edu\/?id=1910#!m\/559984" + "https://map.yale.edu/?id=1910#!m/559984" ] ], "Thursday": [ @@ -115275,7 +254207,7 @@ "10:30", "11:50", "MARSH R - Marsh Hall R", - "https:\/\/map.yale.edu\/?id=1910#!m\/559984" + "https://map.yale.edu/?id=1910#!m/559984" ] ] }, @@ -115287,10 +254219,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85025\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85025/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -115327,7 +254287,7 @@ "14:30", "15:50", "EDW380 - EDW380", - "https:\/\/map.yale.edu\/?id=1910#!m\/560003" + "https://map.yale.edu/?id=1910#!m/560003" ] ], "Thursday": [ @@ -115335,7 +254295,7 @@ "14:30", "15:50", "EDW380 - EDW380", - "https:\/\/map.yale.edu\/?id=1910#!m\/560003" + "https://map.yale.edu/?id=1910#!m/560003" ] ] }, @@ -115347,10 +254307,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86255\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86255/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -115387,7 +254375,7 @@ "9:00", "10:20", "KRN G01 - Kroon Hall G01", - "https:\/\/map.yale.edu\/?id=1910#!m\/559995" + "https://map.yale.edu/?id=1910#!m/559995" ] ], "Wednesday": [ @@ -115395,7 +254383,7 @@ "9:00", "10:20", "KRN G01 - Kroon Hall G01", - "https:\/\/map.yale.edu\/?id=1910#!m\/559995" + "https://map.yale.edu/?id=1910#!m/559995" ] ] }, @@ -115407,15 +254395,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86476\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86476/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "Seminar on the \"posthumanist\" turn toward multispecies ethnography. Section I, introduction to the course. Section II, the ontological turn: multispecies ethnography; and ecology and human consciousness. Section III, fauna: human-animal conflict; hunting and politics; and the bushmeat \"crisis.\" Section IV, flora: \"weedy\/invasive\/pest\" species; and ethnobotany. Section V, the long and broad view: the history of natural history; and the classics. Section VI, class contributions: student-selected readings; student presentations of seminar papers; and lecture by teaching fellow. Enrollment capped.", + "description": "Seminar on the \"posthumanist\" turn toward multispecies ethnography. Section I, introduction to the course. Section II, the ontological turn: multispecies ethnography; and ecology and human consciousness. Section III, fauna: human-animal conflict; hunting and politics; and the bushmeat \"crisis.\" Section IV, flora: \"weedy/invasive/pest\" species; and ethnobotany. Section V, the long and broad view: the history of natural history; and the classics. Section VI, class contributions: student-selected readings; student presentations of seminar papers; and lecture by teaching fellow. Enrollment capped.", "short_title": "Biopolitics of Human-Nonhuman...", "title": "Biopolitics of Human-Nonhuman Relations", "school": "FS", @@ -115447,7 +254463,7 @@ "13:00", "15:50", "KRN 321 - Kroon Hall 321", - "https:\/\/map.yale.edu\/?id=1910#!m\/559995" + "https://map.yale.edu/?id=1910#!m/559995" ] ] }, @@ -115459,10 +254475,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85026\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85026/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -115500,7 +254544,7 @@ "11:35", "12:50", "HQ L02 - Humanities Quadrangle L02", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -115508,7 +254552,7 @@ "11:35", "12:50", "HQ L02 - Humanities Quadrangle L02", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -115522,10 +254566,191 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83965\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83965/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988071918487549, + 0.9984865188598633, + 0.998892605304718, + 0.9988526105880737, + 0.9988114833831787, + 0.998894989490509, + 0.9980450868606567, + 0.9988895058631897, + 0.9989193677902222, + 0.9798096418380737, + 0.998837411403656, + 0.9988669157028198, + 0.9988062381744385, + 0.998691737651825, + 0.9988346695899963, + 0.9988308548927307, + 0.9985344409942627, + 0.9755300283432007, + 0.9988786578178406, + 0.9988778233528137 + ], + "sentiment_counts": { + "POSITIVE": 20, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998462438583374, + 0.9988842606544495, + 0.9986310601234436, + 0.9987244009971619, + 0.9989331364631653, + 0.9988605976104736, + 0.9988473653793335, + 0.9847033619880676, + 0.9989010095596313, + 0.9633054137229919, + 0.9961556792259216, + 0.9980265498161316, + 0.9957483410835266, + 0.9975737929344177, + 0.9988932013511658, + 0.998778760433197 + ], + "sentiment_counts": { + "NEGATIVE": 5, + "POSITIVE": 11 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3125, + "POSITIVE": 0.6875 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6875 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988816380500793, + 0.9988634586334229, + 0.9989222288131714, + 0.9982553124427795, + 0.9988420605659485, + 0.9989134073257446, + 0.9988362193107605, + 0.9989153146743774, + 0.9987609386444092, + 0.9988813996315002, + 0.9988806843757629, + 0.9962539672851562, + 0.9976826906204224, + 0.9989017248153687, + 0.9995025396347046, + 0.9989053010940552, + 0.9989060163497925, + 0.9995099306106567, + 0.997117280960083, + 0.9989026784896851, + 0.9988672733306885 + ], + "sentiment_counts": { + "POSITIVE": 19, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.9047619047619048, + "NEGATIVE": 0.09523809523809523 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9047619047619048 + ] + }, + "final_label": "POSITIVE", + "final_count": 50, + "final_proportion": 0.8771929824561403, + "final_counts": { + "POSITIVE": 50, + "NEGATIVE": 7 + }, + "final_distribution": { + "POSITIVE": 0.8771929824561403, + "NEGATIVE": 0.12280701754385964 + } + } }, { "season_code": "202301", @@ -115562,7 +254787,7 @@ "13:00", "14:20", "BOWERS AUD - Bowers Hall AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/559547" + "https://map.yale.edu/?id=1910#!m/559547" ] ], "Wednesday": [ @@ -115570,7 +254795,7 @@ "13:00", "14:20", "BOWERS AUD - Bowers Hall AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/559547" + "https://map.yale.edu/?id=1910#!m/559547" ] ] }, @@ -115582,15 +254807,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85027\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85027/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This seminar is based on outside speakers and internal student\/faculty presentations oriented toward original research in the field of environmental and natural resource economics and policy. Presentations are aimed at the doctoral level, but interested master\u2019s students may enroll with permission of the instructors.", + "description": "This seminar is based on outside speakers and internal student/faculty presentations oriented toward original research in the field of environmental and natural resource economics and policy. Presentations are aimed at the doctoral level, but interested master\u2019s students may enroll with permission of the instructors.", "short_title": "Seminar on Environmental and ...", "title": "Seminar on Environmental and Natural Resource Economics", "school": "FS", @@ -115625,7 +254878,7 @@ "15:00", "16:20", "KRN 319 - Kroon Hall 319", - "https:\/\/map.yale.edu\/?id=1910#!m\/559995" + "https://map.yale.edu/?id=1910#!m/559995" ] ] }, @@ -115640,12 +254893,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This is an applied course on the standards, guidelines, and tools for designing, implementing, auditing, and communicating a corporate environmental and social responsibility (CR) program. The purpose of the course is to introduce students to the knowledge and tools needed to enter a career in CR and sustainability. The course is designed for students who currently hold or will hold positions in organizations where they are or will be responsible for creating, implementing, measuring, and\/or managing internal CR and sustainability programs, or responsible for assisting a corporation in this area.", + "description": "This is an applied course on the standards, guidelines, and tools for designing, implementing, auditing, and communicating a corporate environmental and social responsibility (CR) program. The purpose of the course is to introduce students to the knowledge and tools needed to enter a career in CR and sustainability. The course is designed for students who currently hold or will hold positions in organizations where they are or will be responsible for creating, implementing, measuring, and/or managing internal CR and sustainability programs, or responsible for assisting a corporation in this area.", "short_title": "Metrics, Tools, and Indicator...", "title": "Metrics, Tools, and Indicators in Corporate Responsibility", "school": "FS", @@ -115678,7 +254959,7 @@ "10:10", "11:30", "EVANS 2230 - Edward P Evans Hall 2230", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Thursday": [ @@ -115686,7 +254967,7 @@ "10:10", "11:30", "EVANS 2230 - Edward P Evans Hall 2230", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -115698,10 +254979,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85054\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85054/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -115738,7 +255047,7 @@ "16:00", "17:20", "KRN G01 - Kroon Hall G01", - "https:\/\/map.yale.edu\/?id=1910#!m\/559995" + "https://map.yale.edu/?id=1910#!m/559995" ] ], "Wednesday": [ @@ -115746,7 +255055,7 @@ "16:00", "17:20", "KRN G01 - Kroon Hall G01", - "https:\/\/map.yale.edu\/?id=1910#!m\/559995" + "https://map.yale.edu/?id=1910#!m/559995" ] ] }, @@ -115760,10 +255069,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85029\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85029/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -115800,7 +255137,7 @@ "13:00", "14:20", "KRN 301 - Kroon Hall 301", - "https:\/\/map.yale.edu\/?id=1910#!m\/559995" + "https://map.yale.edu/?id=1910#!m/559995" ] ], "Wednesday": [ @@ -115808,7 +255145,7 @@ "13:00", "14:20", "KRN 301 - Kroon Hall 301", - "https:\/\/map.yale.edu\/?id=1910#!m\/559995" + "https://map.yale.edu/?id=1910#!m/559995" ] ] }, @@ -115820,10 +255157,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85030\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85030/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -115860,7 +255225,7 @@ "9:00", "11:50", "BOWERS AUD - Bowers Hall AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/559547" + "https://map.yale.edu/?id=1910#!m/559547" ] ] }, @@ -115874,10 +255239,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85031\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85031/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -115917,10 +255310,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85032\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85032/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -115957,7 +255378,7 @@ "10:30", "11:50", "BOWERS AUD - Bowers Hall AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/559547" + "https://map.yale.edu/?id=1910#!m/559547" ] ], "Thursday": [ @@ -115965,27 +255386,55 @@ "10:30", "11:50", "BOWERS AUD - Bowers Hall AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/559547" + "https://map.yale.edu/?id=1910#!m/559547" ] ] }, "skills": [], "areas": [], "flags": [], - "regnotes": "Application only by January 6, 2023\nApplication Link: https:\/\/bit.ly\/3FfHkrv\n\n", + "regnotes": "Application only by January 6, 2023\nApplication Link: https://bit.ly/3FfHkrv\n\n", "rp_attr": "", "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85033\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85033/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course examines the anthropology of power, particularly power in conservation interventions in the global South. It is intended to give students a toolbox of ideas about power in order to improve the effectiveness of conservation. Conservation thought and practice are power-laden: conservation thought is powerfully shaped by the history of ideas of nature and its relation to people, and conservation interventions govern and affect peoples and ecologies. This course argues that being able to think deeply, particularly about power, improves conservation policy making and practice. Political ecology is by far the best known and published approach to thinking about power in conservation; this course emphasizes the relatively neglected but robust anthropology of conservation literature outside political ecology, especially literature rooted in Foucault. It is intended to make four of Foucault\u2019s concepts of power accessible, concepts that are the most used in the anthropology of conservation: the power of discourses, discipline and governmentality, subject formation, and neoliberal governmentality. The important ethnographic literature that these concepts have stimulated is also examined. Together, theory and ethnography can underpin our emerging understanding of a new, Anthropocene-shaped world. This course will be of interest to students and scholars of conservation, environmental anthropology, and political ecology, as well as conservation practitioners and policy makers. It is a required course for students in the combined YSE\/Anthropology doctoral degree program. It is highly recommended for M.E.Sc. students who need an in-depth course on social science theory. M.E.M. students interested in conservation practice and policy making are also encouraged to consider this course, which makes an effort to bridge the gap between the best academic literature and practice. Open to advanced undergraduates. No prerequisites. Three-hour discussion-centered seminar.", + "description": "This course examines the anthropology of power, particularly power in conservation interventions in the global South. It is intended to give students a toolbox of ideas about power in order to improve the effectiveness of conservation. Conservation thought and practice are power-laden: conservation thought is powerfully shaped by the history of ideas of nature and its relation to people, and conservation interventions govern and affect peoples and ecologies. This course argues that being able to think deeply, particularly about power, improves conservation policy making and practice. Political ecology is by far the best known and published approach to thinking about power in conservation; this course emphasizes the relatively neglected but robust anthropology of conservation literature outside political ecology, especially literature rooted in Foucault. It is intended to make four of Foucault\u2019s concepts of power accessible, concepts that are the most used in the anthropology of conservation: the power of discourses, discipline and governmentality, subject formation, and neoliberal governmentality. The important ethnographic literature that these concepts have stimulated is also examined. Together, theory and ethnography can underpin our emerging understanding of a new, Anthropocene-shaped world. This course will be of interest to students and scholars of conservation, environmental anthropology, and political ecology, as well as conservation practitioners and policy makers. It is a required course for students in the combined YSE/Anthropology doctoral degree program. It is highly recommended for M.E.Sc. students who need an in-depth course on social science theory. M.E.M. students interested in conservation practice and policy making are also encouraged to consider this course, which makes an effort to bridge the gap between the best academic literature and practice. Open to advanced undergraduates. No prerequisites. Three-hour discussion-centered seminar.", "short_title": "Power in Conservation", "title": "Power in Conservation", "school": "FS", @@ -116017,24 +255466,52 @@ "13:00", "15:50", "KRN 321 - Kroon Hall 321", - "https:\/\/map.yale.edu\/?id=1910#!m\/559995" + "https://map.yale.edu/?id=1910#!m/559995" ] ] }, "skills": [], "areas": [], "flags": [ - "PH: Global Health, Psychosocial\/Social and behavioral\/Anthropology" + "PH: Global Health, Psychosocial/Social and behavioral/Anthropology" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85034\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85034/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -116071,7 +255548,7 @@ "16:10", "18:00", "SLB 109 - Sterling Law Buildings 109", - "https:\/\/map.yale.edu\/?id=1910#!m\/531532" + "https://map.yale.edu/?id=1910#!m/531532" ] ] }, @@ -116081,15 +255558,43 @@ "YC GLHTH: Bio & Env Influences", "YC GLHTH: Polit Econ & Govern" ], - "regnotes": "ENV 852 is only available to YSE students, those outside of YSE will need to go through the Yale Law school.\nYSE students please submit survey here by January 5, 5pm est.\nhttps:\/\/forms.gle\/R4zTvKKWfXui85gQA", + "regnotes": "ENV 852 is only available to YSE students, those outside of YSE will need to go through the Yale Law school.\nYSE students please submit survey here by January 5, 5pm est.\nhttps://forms.gle/R4zTvKKWfXui85gQA", "rp_attr": "", "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87489\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87489/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -116126,7 +255631,7 @@ "10:10", "12:00", "SLB 122 - Sterling Law Buildings 122", - "https:\/\/map.yale.edu\/?id=1910#!m\/531532" + "https://map.yale.edu/?id=1910#!m/531532" ] ] }, @@ -116140,15 +255645,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85455\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85455/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This seminar examines a variety of contemporary issues concerning the Law of the Sea: piracy, environmental protection, fisheries, maritime security, maritime delimitation, the exclusive economic zone, the continental and outer continental shelfs, human rights, unmanned vessels, artificial islands, the South China Sea, and the Arctic region. Enrollment is capped at eighteen. Scheduled examination or paper option. Also GLBL 7045\/LAW 21651.", + "description": "This seminar examines a variety of contemporary issues concerning the Law of the Sea: piracy, environmental protection, fisheries, maritime security, maritime delimitation, the exclusive economic zone, the continental and outer continental shelfs, human rights, unmanned vessels, artificial islands, the South China Sea, and the Arctic region. Enrollment is capped at eighteen. Scheduled examination or paper option. Also GLBL 7045/LAW 21651.", "short_title": "Law of the Sea", "title": "Law of the Sea", "school": "FS", @@ -116181,7 +255714,7 @@ "10:10", "12:00", "SLB 109 - Sterling Law Buildings 109", - "https:\/\/map.yale.edu\/?id=1910#!m\/531532" + "https://map.yale.edu/?id=1910#!m/531532" ] ] }, @@ -116193,10 +255726,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85048\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85048/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -116234,7 +255795,7 @@ "15:00", "16:50", "LEPH 101 - Laboratory of EPH 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ] }, @@ -116246,10 +255807,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84995\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84995/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -116287,7 +255876,7 @@ "13:00", "14:50", "LEPH 115 - Laboratory of EPH 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ], "Friday": [ @@ -116295,7 +255884,7 @@ "13:00", "13:50", "LEPH 102 - Laboratory of EPH 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ] }, @@ -116307,15 +255896,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84994\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84994/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "A biweekly seminar for Dove doctoral advisees and students in the combined YSE\/Anthropology doctoral program. Presentation and discussion of grant proposals, dissertation prospectuses, and dissertation chapters; trial runs of conference presentations and job talks; discussion of comprehensive exams, grantsmanship, fieldwork, data analysis, writing and publishing, and the job search; and collaborative writing and publishing projects.", + "description": "A biweekly seminar for Dove doctoral advisees and students in the combined YSE/Anthropology doctoral program. Presentation and discussion of grant proposals, dissertation prospectuses, and dissertation chapters; trial runs of conference presentations and job talks; discussion of comprehensive exams, grantsmanship, fieldwork, data analysis, writing and publishing, and the job search; and collaborative writing and publishing projects.", "short_title": "Environmental Anthropology Co...", "title": "Environmental Anthropology Colloquy", "school": "FS", @@ -116362,12 +255979,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is aimed at preparing advanced doctoral students for successful and rewarding careers in ecology and environmental science. Students learn about academic and non-academic careers from readings of and presentations by scientists in those positions. Students identify important steps toward planning and launching their career paths, and skills for being effective in these positions; and they develop their own career plan, curriculum vitae, teaching and research plans, and critiques of professional webpages. Finally, the course exposes students to resources and opportunities for continuing to apply and polish their skills. Pass\/Fail.", + "description": "This course is aimed at preparing advanced doctoral students for successful and rewarding careers in ecology and environmental science. Students learn about academic and non-academic careers from readings of and presentations by scientists in those positions. Students identify important steps toward planning and launching their career paths, and skills for being effective in these positions; and they develop their own career plan, curriculum vitae, teaching and research plans, and critiques of professional webpages. Finally, the course exposes students to resources and opportunities for continuing to apply and polish their skills. Pass/Fail.", "short_title": "Survival Skills for Finishing...", "title": "Survival Skills for Finishing Doctoral Students", "school": "FS", @@ -116402,22 +256047,50 @@ "13:00", "15:00", "KRN - KRN", - "https:\/\/map.yale.edu\/?id=1910#!m\/559995" + "https://map.yale.edu/?id=1910#!m/559995" ] ] }, "skills": [], "areas": [], "flags": [], - "regnotes": "PhD students within the Yale School of the Environment can enroll during their early registration period. All others must wait until their add\/drop period.", + "regnotes": "PhD students within the Yale School of the Environment can enroll during their early registration period. All others must wait until their add/drop period.", "rp_attr": "", "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85038\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85038/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -116454,7 +256127,7 @@ "13:00", "14:20", "S 41C - Sage Hall 41C", - "https:\/\/map.yale.edu\/?id=1910#!m\/559547" + "https://map.yale.edu/?id=1910#!m/559547" ] ], "Wednesday": [ @@ -116462,27 +256135,55 @@ "13:00", "14:20", "S 41C - Sage Hall 41C", - "https:\/\/map.yale.edu\/?id=1910#!m\/559547" + "https://map.yale.edu/?id=1910#!m/559547" ] ] }, "skills": [], "areas": [], "flags": [], - "regnotes": "Please see application instructions here: https:\/\/resources.environment.yale.edu\/cp\/courses\/detail\/2022-2023\/951\/", + "regnotes": "Please see application instructions here: https://resources.environment.yale.edu/cp/courses/detail/2022-2023/951/", "rp_attr": "", "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85039\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85039/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "The intended outcome of this course is to provide you with a \u2018capstone\u2019 experience; consulting to an organization in its early formative years, confronting real-life challenges at the intersections of starting-up, business strategy, and environmental sustainability; all with regular contact with the Founder\/Founding team of an entrepreneurial venture started by recent alumni or current student Founders. The course is designed for you to apply tools and insights gained in this and other courses to a defined project; creating deliverables that will be useful to the entrepreneurs leading their organization. It is designed to help prepare anyone who wishes to become a consultant after graduation; though it is also intended to be useful for those that intend to engage with consultants in their careers post-Yale and may be considering becoming an entrepreneur themselves. In short, there is hopefully something in it for many of you! If interested, please complete the online application form before 9am Wednesday January 12th. We will review applications and inform you of acceptance and project assignments by end of day on Friday January 14th. This course is cross-listed with Environment and will follow their academic calendar. Application:https:\/\/docs.google.com\/forms\/d\/e\/1FAIpQLSf9t0RWaY5v57f7YgbrNgAVKKOGPx8w7xjm3WzWuhkHSTCikA\/viewform", + "description": "The intended outcome of this course is to provide you with a \u2018capstone\u2019 experience; consulting to an organization in its early formative years, confronting real-life challenges at the intersections of starting-up, business strategy, and environmental sustainability; all with regular contact with the Founder/Founding team of an entrepreneurial venture started by recent alumni or current student Founders. The course is designed for you to apply tools and insights gained in this and other courses to a defined project; creating deliverables that will be useful to the entrepreneurs leading their organization. It is designed to help prepare anyone who wishes to become a consultant after graduation; though it is also intended to be useful for those that intend to engage with consultants in their careers post-Yale and may be considering becoming an entrepreneur themselves. In short, there is hopefully something in it for many of you! If interested, please complete the online application form before 9am Wednesday January 12th. We will review applications and inform you of acceptance and project assignments by end of day on Friday January 14th. This course is cross-listed with Environment and will follow their academic calendar. Application:https://docs.google.com/forms/d/e/1FAIpQLSf9t0RWaY5v57f7YgbrNgAVKKOGPx8w7xjm3WzWuhkHSTCikA/viewform", "short_title": "Sustainable Business Capstone...", "title": "Sustainable Business Capstone Consulting Clinic", "school": "FS", @@ -116515,7 +256216,7 @@ "13:00", "14:20", "KRN 319 - Kroon Hall 319", - "https:\/\/map.yale.edu\/?id=1910#!m\/559995" + "https://map.yale.edu/?id=1910#!m/559995" ] ], "Wednesday": [ @@ -116523,7 +256224,7 @@ "13:00", "14:20", "KRN 319 - Kroon Hall 319", - "https:\/\/map.yale.edu\/?id=1910#!m\/559995" + "https://map.yale.edu/?id=1910#!m/559995" ] ] }, @@ -116535,10 +256236,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85040\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85040/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -116575,7 +256304,7 @@ "17:00", "19:00", "MARSH 12 - Marsh Hall 12", - "https:\/\/map.yale.edu\/?id=1910#!m\/559984" + "https://map.yale.edu/?id=1910#!m/559984" ] ] }, @@ -116587,15 +256316,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87312\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87312/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This is a professional seminar on private land conservation strategies and techniques, with particular emphasis on the legal, financial, and management tools used in the United States. The seminar is built around presentations by guest speakers from land conservation organizations. Speakers are assigned topics across the land conservation spectrum, from identification of target sites, through the acquisition process, to ongoing stewardship of the land after the deal is done. The tools used to protect land are discussed, including the basics of real estate law, conservation finance, and project\/organization management. Students are required to undertake a clinical project with a local land conservation organization. Enrollment limited to twenty-five; preference to second-year students if limit reached.", + "description": "This is a professional seminar on private land conservation strategies and techniques, with particular emphasis on the legal, financial, and management tools used in the United States. The seminar is built around presentations by guest speakers from land conservation organizations. Speakers are assigned topics across the land conservation spectrum, from identification of target sites, through the acquisition process, to ongoing stewardship of the land after the deal is done. The tools used to protect land are discussed, including the basics of real estate law, conservation finance, and project/organization management. Students are required to undertake a clinical project with a local land conservation organization. Enrollment limited to twenty-five; preference to second-year students if limit reached.", "short_title": "Strategies for Land Conservation", "title": "Strategies for Land Conservation", "school": "FS", @@ -116627,7 +256384,7 @@ "14:30", "17:20", "S 24 - Sage Hall 24", - "https:\/\/map.yale.edu\/?id=1910#!m\/559547" + "https://map.yale.edu/?id=1910#!m/559547" ] ] }, @@ -116642,7 +256399,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -116683,7 +256468,7 @@ "15:00", "16:50", "LEPH 102 - Laboratory of EPH 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ] }, @@ -116695,10 +256480,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85047\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85047/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -116736,27 +256549,55 @@ "9:00", "11:50", "S 24 - Sage Hall 24", - "https:\/\/map.yale.edu\/?id=1910#!m\/559547" + "https://map.yale.edu/?id=1910#!m/559547" ] ] }, "skills": [], "areas": [], "flags": [], - "regnotes": "Application open: Oct 31 - Nov 18\nbit.ly\/3TQrhVm\n\nCourse also requires 1 hour discussion section", + "regnotes": "Application open: Oct 31 - Nov 18\nbit.ly/3TQrhVm\n\nCourse also requires 1 hour discussion section", "rp_attr": "", "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85042\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85042/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "The formidable task of \"living in harmony with nature by 2050\" demands grand strategies at all scales, from local to global. A strategy is the management of resources to achieve the desired outcomes stipulated and sought by a policy goal. A grand strategy enables us to see how concerted efforts by a community of practice, whether undertaken by an individual, a group, an organization, a state, or an international institution, can combine to realize an ambitious goal in the common interest. This capstone seminar course is integrative via interdisciplinary in an explicit, systematic sense. It aims to help students develop grand strategic thinking and planning skills. Students practice how to develop workable grand strategy to deal with three kinds of interrelated problems (ordinary\/technical, systematic\/governance, constitutive\/cultural) manifested in any conservation and natural resource management challenge. The seminar meets once weekly for discussions, guest presentations, and exercises. Students also go on a field trip to the Greater Yellowstone Ecosystem, including Yellowstone National Park during the spring break.", + "description": "The formidable task of \"living in harmony with nature by 2050\" demands grand strategies at all scales, from local to global. A strategy is the management of resources to achieve the desired outcomes stipulated and sought by a policy goal. A grand strategy enables us to see how concerted efforts by a community of practice, whether undertaken by an individual, a group, an organization, a state, or an international institution, can combine to realize an ambitious goal in the common interest. This capstone seminar course is integrative via interdisciplinary in an explicit, systematic sense. It aims to help students develop grand strategic thinking and planning skills. Students practice how to develop workable grand strategy to deal with three kinds of interrelated problems (ordinary/technical, systematic/governance, constitutive/cultural) manifested in any conservation and natural resource management challenge. The seminar meets once weekly for discussions, guest presentations, and exercises. Students also go on a field trip to the Greater Yellowstone Ecosystem, including Yellowstone National Park during the spring break.", "short_title": "Strategy and Grand Strategy i...", "title": "Strategy and Grand Strategy in Large Scale Conservation", "school": "FS", @@ -116788,22 +256629,50 @@ "14:30", "17:20", "S 32 - Sage Hall 32", - "https:\/\/map.yale.edu\/?id=1910#!m\/559547" + "https://map.yale.edu/?id=1910#!m/559547" ] ] }, "skills": [], "areas": [], "flags": [], - "regnotes": "Application Required: See https:\/\/resources.environment.yale.edu\/cp\/courses\/detail\/2022-2023\/968\/ for details", + "regnotes": "Application Required: See https://resources.environment.yale.edu/cp/courses/detail/2022-2023/968/ for details", "rp_attr": "", "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85043\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85043/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -116840,7 +256709,7 @@ "10:30", "11:50", "KRN G01 - Kroon Hall G01", - "https:\/\/map.yale.edu\/?id=1910#!m\/559995" + "https://map.yale.edu/?id=1910#!m/559995" ] ] }, @@ -116852,10 +256721,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85044\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85044/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -116895,7 +256792,7 @@ "9:00", "10:15", "WLH 120 - William L. Harkness Hall 120", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -116903,7 +256800,7 @@ "9:00", "10:15", "WLH 120 - William L. Harkness Hall 120", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -116915,15 +256812,168 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84000\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84000/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "", - "description": "This capstone workshop provides an opportunity for students to apply the theory of practice developed in ENV 817 (or comparable study\/experience) to a real-world, local urban planning project as part of an interdisciplinary student team. Up to two teams of up to six students each work together, for a client, to develop a strategy for a neighborhood in New Haven or its environs. The emphasis in each neighborhood is on identifying and overcoming the tensions and conflicts between economic, social, and environmental objectives to develop a balanced strategy for each neighborhood that meets stakeholders\u2019 goals while acknowledging the context of overarching regional, national, and global challenges and opportunities (e.g., climate change, demographic shifts). Toward that end, students are exposed to the detailed processes of local government as well as techniques used by city planners to collect and assess data and combine those quantitative tools with stakeholder engagement to develop strategies to achieve community vision. With a focus on interdisciplinary problem solving and the collective project management resulting in a client-driven work product, students learn valuable skills for their future careers.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9979950189590454, + 0.615541934967041, + 0.9988228678703308, + 0.9988138675689697, + 0.9988704323768616, + 0.998881995677948, + 0.9988383650779724, + 0.9994922876358032, + 0.9987836480140686, + 0.9987509250640869, + 0.9989140033721924, + 0.9989142417907715 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9934186935424805, + 0.9988797307014465, + 0.9986887574195862, + 0.9994482398033142, + 0.9982531666755676, + 0.9987189769744873, + 0.9988252520561218, + 0.994042694568634, + 0.998880922794342, + 0.997999370098114, + 0.9993979930877686, + 0.9995046854019165, + 0.9989185333251953, + 0.9866741895675659, + 0.999494194984436, + 0.9988957643508911 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 8 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9956783652305603, + 0.9987428784370422, + 0.9988299012184143, + 0.9982169270515442, + 0.9989100694656372, + 0.9975062012672424, + 0.9989068508148193, + 0.9989113807678223, + 0.9985276460647583, + 0.9989281296730042, + 0.9994916915893555, + 0.9989141225814819, + 0.9988870024681091, + 0.9988563060760498, + 0.9988686442375183 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 13 + }, + "sentiment_distribution": { + "NEGATIVE": 0.13333333333333333, + "POSITIVE": 0.8666666666666667 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8666666666666667 + ] + }, + "final_label": "POSITIVE", + "final_count": 31, + "final_proportion": 0.7209302325581395, + "final_counts": { + "POSITIVE": 31, + "NEGATIVE": 12 + }, + "final_distribution": { + "POSITIVE": 0.7209302325581395, + "NEGATIVE": 0.27906976744186046 + } + } + }, + { + "season_code": "202301", + "requirements": "", + "description": "This capstone workshop provides an opportunity for students to apply the theory of practice developed in ENV 817 (or comparable study/experience) to a real-world, local urban planning project as part of an interdisciplinary student team. Up to two teams of up to six students each work together, for a client, to develop a strategy for a neighborhood in New Haven or its environs. The emphasis in each neighborhood is on identifying and overcoming the tensions and conflicts between economic, social, and environmental objectives to develop a balanced strategy for each neighborhood that meets stakeholders\u2019 goals while acknowledging the context of overarching regional, national, and global challenges and opportunities (e.g., climate change, demographic shifts). Toward that end, students are exposed to the detailed processes of local government as well as techniques used by city planners to collect and assess data and combine those quantitative tools with stakeholder engagement to develop strategies to achieve community vision. With a focus on interdisciplinary problem solving and the collective project management resulting in a client-driven work product, students learn valuable skills for their future careers.", "short_title": "Capstone: Neighborhood Planni...", "title": "Capstone: Neighborhood Planning Workshop", "school": "FS", @@ -116955,7 +257005,7 @@ "16:00", "18:50", "KRN 321 - Kroon Hall 321", - "https:\/\/map.yale.edu\/?id=1910#!m\/559995" + "https://map.yale.edu/?id=1910#!m/559995" ] ] }, @@ -116967,15 +257017,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85046\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85046/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "Students in the CAFE Lab work with faculty, outside experts, and non-governmental organizations to develop innovative litigation and legislative initiatives to bring systemic change to the global food industry, which is one of the top contributors to climate change, animal suffering, human exploitation, and environmental degradation worldwide. The Lab\u2019s primary focus areas include litigation to address GHG emissions from industrial agriculture and legislative models to hold industrial food producers accountable for the currently uncounted, externalized costs of industrial agriculture for animals, workers, communities, and the environment. Students enrolled in the Lab work directly with the teaching team, NGO attorneys, and a wide range of stakeholders with expertise in food, animal, climate, and environmental law on real-world litigation and legislative intervention projects. The Lab includes orientation and training sessions, and students are required to meet regularly with Lab instructors and outside partners and experts, either as a group or in subgroups as we collaborate in each area of our work. More information on CAFE Lab projects is available for review on the CAFE Lab website. Enrollment limited. Permission of instructors is required. Attendance at the first class meeting is mandatory for admitted students and for those on the waiting list who wish to remain in consideration for admission if a place becomes available. Admitted students must confirm their participation in advance of the first class by a date designated by the instructors. A no-drop policy applies. Students who have accepted their places may drop up until August 20 but cannot drop during the normal add\/drop period after classes begin. Students from other graduate and professional schools are welcome to apply to this course by sending a resume and statement of interest directly to Professor Kysar (douglas.kysar@yale.edu) by December 12.", + "description": "Students in the CAFE Lab work with faculty, outside experts, and non-governmental organizations to develop innovative litigation and legislative initiatives to bring systemic change to the global food industry, which is one of the top contributors to climate change, animal suffering, human exploitation, and environmental degradation worldwide. The Lab\u2019s primary focus areas include litigation to address GHG emissions from industrial agriculture and legislative models to hold industrial food producers accountable for the currently uncounted, externalized costs of industrial agriculture for animals, workers, communities, and the environment. Students enrolled in the Lab work directly with the teaching team, NGO attorneys, and a wide range of stakeholders with expertise in food, animal, climate, and environmental law on real-world litigation and legislative intervention projects. The Lab includes orientation and training sessions, and students are required to meet regularly with Lab instructors and outside partners and experts, either as a group or in subgroups as we collaborate in each area of our work. More information on CAFE Lab projects is available for review on the CAFE Lab website. Enrollment limited. Permission of instructors is required. Attendance at the first class meeting is mandatory for admitted students and for those on the waiting list who wish to remain in consideration for admission if a place becomes available. Admitted students must confirm their participation in advance of the first class by a date designated by the instructors. A no-drop policy applies. Students who have accepted their places may drop up until August 20 but cannot drop during the normal add/drop period after classes begin. Students from other graduate and professional schools are welcome to apply to this course by sending a resume and statement of interest directly to Professor Kysar (douglas.kysar@yale.edu) by December 12.", "short_title": "Climate, Animals, Food, and E...", "title": "Climate, Animals, Food, and Environment Law and Policy Lab", "school": "FS", @@ -117016,7 +257094,7 @@ "18:10", "20:00", "SLB 110 - Sterling Law Buildings 110", - "https:\/\/map.yale.edu\/?id=1910#!m\/531532" + "https://map.yale.edu/?id=1910#!m/531532" ] ] }, @@ -117028,10 +257106,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85052\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85052/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -117089,10 +257195,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85446\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85446/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -117129,7 +257263,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -117194,15 +257356,170 @@ "classnotes": "", "final_exam": "Sunday, May 7, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83994\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83994/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988663196563721, + 0.9989081621170044, + 0.9986454844474792, + 0.9987214207649231, + 0.9985299110412598, + 0.9989011287689209, + 0.9983079433441162, + 0.9987536668777466, + 0.9989340901374817, + 0.998661994934082, + 0.9988478422164917, + 0.9974697828292847, + 0.9988365769386292, + 0.9987038373947144, + 0.9986253976821899 + ], + "sentiment_counts": { + "POSITIVE": 15, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989124536514282, + 0.9988973140716553, + 0.9987350106239319, + 0.9989373087882996, + 0.9989338517189026, + 0.9988065958023071, + 0.9994831085205078, + 0.9989172220230103, + 0.998552143573761, + 0.9989044666290283, + 0.9983583092689514, + 0.9989092350006104, + 0.9985435009002686 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9230769230769231, + "NEGATIVE": 0.07692307692307693 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9230769230769231 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987533092498779, + 0.998916745185852, + 0.998884379863739, + 0.9988935589790344, + 0.9989318251609802, + 0.9988724589347839, + 0.9977549910545349, + 0.9988429546356201, + 0.9976522326469421, + 0.9989226460456848, + 0.99893718957901, + 0.9989274144172668, + 0.9989112615585327, + 0.9988511800765991, + 0.9988698363304138, + 0.9968857169151306 + ], + "sentiment_counts": { + "POSITIVE": 15, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9375, + "NEGATIVE": 0.0625 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9375 + ] + }, + "final_label": "POSITIVE", + "final_count": 42, + "final_proportion": 0.9545454545454546, + "final_counts": { + "POSITIVE": 42, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9545454545454546, + "NEGATIVE": 0.045454545454545456 + } + } }, { "season_code": "202301", "requirements": "Prerequisite: ENAS 194 or permission of instructor.", - "description": "Unified treatment of momentum, energy, and chemical species transport including conservation laws, flux relations, and boundary conditions. Topics include convective and diffusive transport, transport with homogeneous and heterogeneous chemical reactions and\/or phase change, and interfacial transport phenomena. Emphasis on problem analysis and mathematical modeling, including problem formulation, scaling arguments, analytical methods, approximation techniques, and numerical solutions.", + "description": "Unified treatment of momentum, energy, and chemical species transport including conservation laws, flux relations, and boundary conditions. Topics include convective and diffusive transport, transport with homogeneous and heterogeneous chemical reactions and/or phase change, and interfacial transport phenomena. Emphasis on problem analysis and mathematical modeling, including problem formulation, scaling arguments, analytical methods, approximation techniques, and numerical solutions.", "short_title": "Transport Phenomena II", "title": "Transport Phenomena II", "school": "YC", @@ -117235,7 +257552,7 @@ "13:00", "14:15", "HLH17 05 - 17 Hillhouse Avenue 05", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Thursday": [ @@ -117243,7 +257560,7 @@ "13:00", "14:15", "HLH17 05 - 17 Hillhouse Avenue 05", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -117259,10 +257576,121 @@ "classnotes": "", "final_exam": "Sunday, May 7, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83420\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83420/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989124536514282, + 0.9985999464988708, + 0.9986905455589294, + 0.999498724937439, + 0.9983580708503723, + 0.9987227320671082 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9976551532745361, + 0.9969991445541382, + 0.997149646282196, + 0.9989038705825806, + 0.9867087602615356, + 0.9988584518432617, + 0.9989066123962402 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 4 + }, + "sentiment_distribution": { + "NEGATIVE": 0.42857142857142855, + "POSITIVE": 0.5714285714285714 + }, + "sentiment_overall": [ + "POSITIVE", + 0.5714285714285714 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9950166344642639, + 0.9908978343009949, + 0.9982700347900391, + 0.9995032548904419, + 0.9778754711151123, + 0.9984221458435059, + 0.9985939860343933, + 0.9995139837265015, + 0.9989311099052429 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 6 + }, + "sentiment_distribution": { + "POSITIVE": 0.3333333333333333, + "NEGATIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.6666666666666666 + ] + }, + "final_label": "neutral", + "final_count": 12, + "final_proportion": 0.5, + "final_counts": { + "POSITIVE": 12, + "NEGATIVE": 10 + }, + "final_distribution": { + "POSITIVE": 0.5454545454545454, + "NEGATIVE": 0.45454545454545453 + } + } }, { "season_code": "202301", @@ -117302,7 +257730,7 @@ "9:00", "10:15", "WLH 120 - William L. Harkness Hall 120", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -117310,7 +257738,7 @@ "9:00", "10:15", "WLH 120 - William L. Harkness Hall 120", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -117324,10 +257752,163 @@ "classnotes": "", "final_exam": "Tuesday, May 9, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84000\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84000/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9979950189590454, + 0.615541934967041, + 0.9988228678703308, + 0.9988138675689697, + 0.9988704323768616, + 0.998881995677948, + 0.9988383650779724, + 0.9994922876358032, + 0.9987836480140686, + 0.9987509250640869, + 0.9989140033721924, + 0.9989142417907715 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9934186935424805, + 0.9988797307014465, + 0.9986887574195862, + 0.9994482398033142, + 0.9982531666755676, + 0.9987189769744873, + 0.9988252520561218, + 0.994042694568634, + 0.998880922794342, + 0.997999370098114, + 0.9993979930877686, + 0.9995046854019165, + 0.9989185333251953, + 0.9866741895675659, + 0.999494194984436, + 0.9988957643508911 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 8 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9956783652305603, + 0.9987428784370422, + 0.9988299012184143, + 0.9982169270515442, + 0.9989100694656372, + 0.9975062012672424, + 0.9989068508148193, + 0.9989113807678223, + 0.9985276460647583, + 0.9989281296730042, + 0.9994916915893555, + 0.9989141225814819, + 0.9988870024681091, + 0.9988563060760498, + 0.9988686442375183 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 13 + }, + "sentiment_distribution": { + "NEGATIVE": 0.13333333333333333, + "POSITIVE": 0.8666666666666667 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8666666666666667 + ] + }, + "final_label": "POSITIVE", + "final_count": 31, + "final_proportion": 0.7209302325581395, + "final_counts": { + "POSITIVE": 31, + "NEGATIVE": 12 + }, + "final_distribution": { + "POSITIVE": 0.7209302325581395, + "NEGATIVE": 0.27906976744186046 + } + } }, { "season_code": "202301", @@ -117365,7 +257946,7 @@ "16:00", "17:15", "ML 104 - Mason Laboratory 104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ], "Thursday": [ @@ -117373,7 +257954,7 @@ "16:00", "17:15", "ML 104 - Mason Laboratory 104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ] }, @@ -117389,10 +257970,115 @@ "classnotes": "", "final_exam": "Wednesday, May 10, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83428\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83428/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9615212082862854, + 0.9974230527877808, + 0.998746395111084, + 0.9988065958023071, + 0.9980720281600952, + 0.9986854195594788 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9990315437316895, + 0.9983200430870056, + 0.9989288449287415, + 0.9994999170303345, + 0.998880922794342, + 0.9988963603973389, + 0.9985750913619995 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 4 + }, + "sentiment_distribution": { + "NEGATIVE": 0.42857142857142855, + "POSITIVE": 0.5714285714285714 + }, + "sentiment_overall": [ + "POSITIVE", + 0.5714285714285714 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998738706111908, + 0.9982991814613342, + 0.9926744103431702, + 0.9989379048347473, + 0.9982553124427795, + 0.9989091157913208 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 0.7894736842105263, + "final_counts": { + "POSITIVE": 15, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.7894736842105263, + "NEGATIVE": 0.21052631578947367 + } + } }, { "season_code": "202301", @@ -117431,7 +258117,7 @@ "14:30", "15:45", "HLH17 05 - 17 Hillhouse Avenue 05", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Wednesday": [ @@ -117439,7 +258125,7 @@ "14:30", "15:45", "HLH17 05 - 17 Hillhouse Avenue 05", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -117453,10 +258139,111 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85231\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85231/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987660646438599, + 0.994401752948761, + 0.997588038444519, + 0.9987271428108215, + 0.9943291544914246, + 0.9988089799880981 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985392093658447, + 0.9948831796646118, + 0.996239185333252, + 0.998918890953064, + 0.9989005327224731, + 0.9988734126091003 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9900023937225342, + 0.9981735944747925, + 0.9987284541130066, + 0.9989145994186401, + 0.9987632036209106 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.4, + "POSITIVE": 0.6 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 0.8235294117647058, + "final_counts": { + "POSITIVE": 14, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.8235294117647058, + "NEGATIVE": 0.17647058823529413 + } + } }, { "season_code": "202301", @@ -117499,12 +258286,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "Prerequisite: ENVE 373 or equivalent.", - "description": "The production and use of energy explored as a source of air pollution worldwide. Assessment of emissions and physical\/chemical processes; the effects of emissions from energy sources;\u00a0the behavior of pollutants in energy systems and in the atmosphere. Topics include traditional and emerging energy technology, climate change, atmospheric aerosols, tropospheric ozone, and transport\/modeling\/mitigation.", + "description": "The production and use of energy explored as a source of air pollution worldwide. Assessment of emissions and physical/chemical processes; the effects of emissions from energy sources;\u00a0the behavior of pollutants in energy systems and in the atmosphere. Topics include traditional and emerging energy technology, climate change, atmospheric aerosols, tropospheric ozone, and transport/modeling/mitigation.", "short_title": "Air Quality and Energy", "title": "Air Quality and Energy", "school": "YC", @@ -117537,7 +258352,7 @@ "11:35", "12:50", "HLH17 113 - 17 Hillhouse Avenue 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Wednesday": [ @@ -117545,7 +258360,7 @@ "11:35", "12:50", "HLH17 113 - 17 Hillhouse Avenue 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -117559,10 +258374,89 @@ "classnotes": "", "final_exam": "Saturday, May 6, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84005\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84005/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986818432807922, + 0.9930000305175781 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984623193740845, + 0.9988456964492798 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 1 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9727193117141724, + 0.9909674525260925 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 5, + "final_proportion": 0.8333333333333334, + "final_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + } + } }, { "season_code": "202301", @@ -117605,7 +258499,82 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.998880922794342 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9982513785362244, + 0.9933253526687622 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 0 + }, + "sentiment_distribution": { + "NEGATIVE": 1.0, + "POSITIVE": 0.0 + }, + "sentiment_overall": [ + "NEGATIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988019466400146 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "neutral", + "final_count": 0.5, + "final_proportion": 0.5, + "final_counts": { + "POSITIVE": 2, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + } + } }, { "season_code": "202301", @@ -117642,7 +258611,7 @@ "13:30", "15:20", "HLH31 108 - 31 Hillhouse Avenue 108", - "https:\/\/map.yale.edu\/?id=1910#!m\/559990" + "https://map.yale.edu/?id=1910#!m/559990" ] ] }, @@ -117657,10 +258626,119 @@ "classnotes": "When applying for early registration consideration, please explain your interest in this class and be sure to include your class and major.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84015\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84015/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987614154815674, + 0.9988695979118347, + 0.9989020824432373, + 0.9960022568702698, + 0.9985576272010803, + 0.9989092350006104, + 0.9989113807678223 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988262057304382, + 0.9975870847702026, + 0.9976811408996582, + 0.9988716244697571, + 0.9988027811050415, + 0.9988620281219482, + 0.9989323019981384 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.993861198425293, + 0.9978756904602051, + 0.9979034662246704, + 0.9982095956802368, + 0.9945461750030518, + 0.998907208442688, + 0.9989150762557983 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 0.9523809523809523, + "final_counts": { + "POSITIVE": 20, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9523809523809523, + "NEGATIVE": 0.047619047619047616 + } + } }, { "season_code": "202301", @@ -117697,7 +258775,7 @@ "13:30", "15:20", "HLH31 108 - 31 Hillhouse Avenue 108", - "https:\/\/map.yale.edu\/?id=1910#!m\/559990" + "https://map.yale.edu/?id=1910#!m/559990" ] ] }, @@ -117711,10 +258789,123 @@ "classnotes": "When applying for early registration consideration, please explain your interest in this class and be sure to include your class and major.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84020\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84020/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989287257194519, + 0.9987471103668213, + 0.9989101886749268, + 0.9987720847129822, + 0.9986264705657959, + 0.9989017248153687, + 0.9987823367118835 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988605976104736, + 0.9987788796424866, + 0.9987167119979858, + 0.9988417029380798, + 0.9989257454872131, + 0.9988183379173279, + 0.9987149238586426, + 0.9988491535186768 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989068508148193, + 0.9988767504692078, + 0.997840404510498, + 0.9971756935119629, + 0.9989162683486938, + 0.9985407590866089, + 0.9978975057601929, + 0.9988669157028198, + 0.9988771080970764 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 24, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 24 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -117753,7 +258944,7 @@ "9:25", "11:15", "WALL81 101 - 81 Wall Street 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -117770,10 +258961,115 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84089\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84089/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.998794674873352, + 0.9987566471099854, + 0.9988522529602051, + 0.998908519744873, + 0.9952634572982788, + 0.9994452595710754 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.8295912742614746, + 0.9958440661430359, + 0.9988793730735779, + 0.9995089769363403, + 0.9921929240226746, + 0.9995059967041016 + ], + "sentiment_counts": { + "NEGATIVE": 4, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.6666666666666666, + "POSITIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9987353682518005, + 0.9987649917602539, + 0.9995046854019165, + 0.9629638195037842, + 0.9995123147964478, + 0.9933921694755554, + 0.9994856119155884 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 5 + }, + "sentiment_distribution": { + "POSITIVE": 0.2857142857142857, + "NEGATIVE": 0.7142857142857143 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.7142857142857143 + ] + }, + "final_label": "neutral", + "final_count": 10, + "final_proportion": 0.5, + "final_counts": { + "POSITIVE": 9, + "NEGATIVE": 10 + }, + "final_distribution": { + "POSITIVE": 0.47368421052631576, + "NEGATIVE": 0.5263157894736842 + } + } }, { "season_code": "202301", @@ -117811,10 +259107,38 @@ "classnotes": "Along with your major, class year, and interest in the course, please list the courses in economics, math, and political theory or philosophy you have taken. Please note that a course in intermediate microeconomics and a course in calculus is required.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85167\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/85167/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -117855,7 +259179,7 @@ "15:30", "17:20", "LC 205 - Linsly-Chittenden Hall 205", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -117872,10 +259196,85 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84595\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84595/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987013339996338 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9972383975982666 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988670349121094, + 0.9995020627975464 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "final_label": "POSITIVE", + "final_count": 3, + "final_proportion": 0.75, + "final_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + } + } }, { "season_code": "202301", @@ -117913,7 +259312,7 @@ "9:25", "11:15", "LC 319 - Linsly-Chittenden Hall 319", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -117926,13 +259325,130 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Course enrollment or preregistration: Enrollment is capped at eighteen during preregistration. The instructor will review enrollment numbers during add\/drop in January and may admit additional students then. Admission is by permission of the instructor. Successfully navigating the preregistration process is a major qualification for admission. To preregister, follow the instructions provided by the registrar or those given by Ms. Farnham in the EP&E program office.\nEP&E and PLSC majors receive preferential consideration but Professor Fotos also reserves spots for non-majors or for students who were on leave or study abroad or otherwise unable to participate in fall registration. If you have questions about the seminar, feel free to email Professor Fotos directly.\n", + "classnotes": "Course enrollment or preregistration: Enrollment is capped at eighteen during preregistration. The instructor will review enrollment numbers during add/drop in January and may admit additional students then. Admission is by permission of the instructor. Successfully navigating the preregistration process is a major qualification for admission. To preregister, follow the instructions provided by the registrar or those given by Ms. Farnham in the EP&E program office.\nEP&E and PLSC majors receive preferential consideration but Professor Fotos also reserves spots for non-majors or for students who were on leave or study abroad or otherwise unable to participate in fall registration. If you have questions about the seminar, feel free to email Professor Fotos directly.\n", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84025\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84025/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989081621170044, + 0.9995124340057373, + 0.9988540410995483, + 0.9988521337509155, + 0.9989105463027954, + 0.9989159107208252, + 0.9994943141937256, + 0.9995095729827881 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.625, + "NEGATIVE": 0.375 + }, + "sentiment_overall": [ + "POSITIVE", + 0.625 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988415837287903, + 0.9994617104530334, + 0.9995120763778687, + 0.9989134073257446, + 0.9988969564437866, + 0.9982958436012268, + 0.9987983703613281, + 0.9935365319252014, + 0.999504566192627 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.5555555555555556, + "NEGATIVE": 0.4444444444444444 + }, + "sentiment_overall": [ + "POSITIVE", + 0.5555555555555556 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988633394241333, + 0.9983184337615967, + 0.9993867874145508, + 0.9988234639167786, + 0.9987782835960388, + 0.9989018440246582, + 0.999508261680603, + 0.9912145137786865 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.625, + "NEGATIVE": 0.375 + }, + "sentiment_overall": [ + "POSITIVE", + 0.625 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 0.6, + "final_counts": { + "POSITIVE": 15, + "NEGATIVE": 10 + }, + "final_distribution": { + "POSITIVE": 0.6, + "NEGATIVE": 0.4 + } + } }, { "season_code": "202301", @@ -117971,7 +259487,7 @@ "15:30", "17:20", "RKZ 202 - Rosenkranz Hall 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -117988,10 +259504,95 @@ "classnotes": "This course requires instructor permission. Please submit the following information with your registration request: your major, any previous coursework related to Europe, and what issues or problems pertaining to or involving the EU are of greatest interest to you. ", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85862\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85862/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987583160400391, + 0.9986431002616882, + 0.9961695075035095, + 0.9989149570465088 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987708926200867, + 0.9988362193107605, + 0.9989363551139832 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9978603720664978, + 0.9988988637924194, + 0.998896598815918 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 10 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -118029,7 +259630,7 @@ "9:25", "11:15", "LC 104 - Linsly-Chittenden Hall 104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -118045,10 +259646,97 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83825\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83825/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987702965736389, + 0.9977937936782837, + 0.9988992214202881, + 0.9965691566467285 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989297986030579, + 0.9989269375801086 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988818764686584, + 0.9988899827003479, + 0.9989314675331116, + 0.9988947510719299, + 0.9984641075134277 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 11 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -118085,7 +259773,7 @@ "13:30", "15:20", "CO493 208 - 493 College Street 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560001" + "https://map.yale.edu/?id=1910#!m/560001" ] ] }, @@ -118099,10 +259787,109 @@ "classnotes": "When applying for early registration consideration, please explain your interest in this class and be sure to include your class and major.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85295\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85295/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988681077957153, + 0.9986926913261414, + 0.9987799525260925, + 0.9986692667007446, + 0.9987655878067017 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988332390785217, + 0.9876071810722351, + 0.9994446635246277, + 0.9988061189651489, + 0.9989200830459595 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986336827278137, + 0.9988446235656738, + 0.9972250461578369, + 0.9988611936569214, + 0.9988998174667358, + 0.9989354014396667 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 0.875, + "final_counts": { + "POSITIVE": 14, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + } + } }, { "season_code": "202301", @@ -118142,7 +259929,7 @@ "15:30", "17:20", "RKZ 301 - Rosenkranz Hall 301", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -118155,13 +259942,94 @@ ], "regnotes": "", "rp_attr": "", - "classnotes": "This course requires instructor permission. Please submit the following information with your request to register.\n1. Full Name:\n2.\tRank: Undergraduate (major)? Master? PhD candidate?\n3.\tMajor and year\n4.\tGPA\n5.\tDo you wish you write your senior essay in one the seminars selected? If yes, on what topic?\n6.\tDo you have any previous course work that is related to State Formation\/State Building?\n7.\tDid you shop this course last year but did not get in?\n8.\tWhy do you wish to take this seminar?\n9.\tWhich period and region are you eager to study in this seminar? Why?\n10.\tDo you have any notion of quantitative analysis and or game theory? List relevant course work.\n", + "classnotes": "This course requires instructor permission. Please submit the following information with your request to register.\n1. Full Name:\n2.\tRank: Undergraduate (major)? Master? PhD candidate?\n3.\tMajor and year\n4.\tGPA\n5.\tDo you wish you write your senior essay in one the seminars selected? If yes, on what topic?\n6.\tDo you have any previous course work that is related to State Formation/State Building?\n7.\tDid you shop this course last year but did not get in?\n8.\tWhy do you wish to take this seminar?\n9.\tWhich period and region are you eager to study in this seminar? Why?\n10.\tDo you have any notion of quantitative analysis and or game theory? List relevant course work.\n", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85435\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85435/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988842606544495, + 0.9927089214324951, + 0.9987228512763977 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998900294303894, + 0.9988118410110474 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987723231315613, + 0.997117280960083, + 0.9987229704856873 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 8, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 8 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -118200,7 +260068,7 @@ "13:00", "14:50", "LEPH 101 - Laboratory of EPH 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ] }, @@ -118209,7 +260077,7 @@ "So" ], "flags": [ - "PH: Global Health, Development\/Political Economy", + "PH: Global Health, Development/Political Economy", "PH: Public Health Modeling", "YC GLHTH: Quantitative Data", "YC GLHTH: Polit Econ & Govern" @@ -118219,10 +260087,38 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83866\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83866/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -118259,7 +260155,7 @@ "9:25", "11:15", "HQ 401 - Humanities Quadrangle 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -118274,10 +260170,141 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86030\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86030/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988577365875244, + 0.9988571405410767, + 0.9988849759101868, + 0.9987356066703796, + 0.9915881752967834, + 0.8610638380050659, + 0.9987731575965881, + 0.9987309575080872, + 0.9988757967948914 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988565444946289, + 0.9988679885864258, + 0.9977340698242188, + 0.9989067316055298, + 0.9946712851524353, + 0.9986652135848999, + 0.998684823513031, + 0.9994921684265137, + 0.9938066005706787, + 0.9982413053512573, + 0.9986659288406372 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.6363636363636364, + "NEGATIVE": 0.36363636363636365 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6363636363636364 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989145994186401, + 0.9988928437232971, + 0.9988056421279907, + 0.9987812638282776, + 0.9986807703971863, + 0.8188024163246155, + 0.997117280960083, + 0.9995033740997314, + 0.9985312223434448, + 0.998155415058136, + 0.9989078044891357, + 0.9920763969421387 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 24, + "final_proportion": 0.75, + "final_counts": { + "POSITIVE": 24, + "NEGATIVE": 8 + }, + "final_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + } + } }, { "season_code": "202301", @@ -118315,7 +260342,7 @@ "15:30", "17:20", "HLH31 108 - 31 Hillhouse Avenue 108", - "https:\/\/map.yale.edu\/?id=1910#!m\/559990" + "https://map.yale.edu/?id=1910#!m/559990" ] ] }, @@ -118331,10 +260358,97 @@ "classnotes": "Preregistration for this course is for EPE and PLSC majors only and the form can be found on epe.yale.edu. In one paragraph, please explain your interest and make sure to include your class and major.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84030\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84030/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989078044891357, + 0.999506950378418 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998309850692749, + 0.9953481554985046, + 0.9975181818008423, + 0.9970601201057434 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9986119270324707, + 0.9988757967948914, + 0.9994319081306458, + 0.999500036239624 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.25, + "NEGATIVE": 0.75 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.75 + ] + }, + "final_label": "NEGATIVE", + "final_count": 6, + "final_proportion": 0.6, + "final_counts": { + "POSITIVE": 4, + "NEGATIVE": 6 + }, + "final_distribution": { + "POSITIVE": 0.4, + "NEGATIVE": 0.6 + } + } }, { "season_code": "202301", @@ -118373,7 +260487,7 @@ "13:30", "15:20", "LC 209 - Linsly-Chittenden Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -118389,10 +260503,113 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84035\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84035/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988871216773987, + 0.9989023208618164, + 0.9979787468910217, + 0.9986230134963989, + 0.9988742470741272, + 0.9905574321746826 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9878383874893188, + 0.9798460602760315, + 0.9989163875579834, + 0.9954485297203064, + 0.9988982677459717, + 0.9988564252853394 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9991509914398193, + 0.9990247488021851, + 0.9989286065101624, + 0.998799204826355, + 0.9989017248153687, + 0.9988563060760498 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 4 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 0.7777777777777778, + "final_counts": { + "POSITIVE": 14, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.7777777777777778, + "NEGATIVE": 0.2222222222222222 + } + } }, { "season_code": "202301", @@ -118430,7 +260647,7 @@ "13:30", "15:20", "HLH31 108 - 31 Hillhouse Avenue 108", - "https:\/\/map.yale.edu\/?id=1910#!m\/559990" + "https://map.yale.edu/?id=1910#!m/559990" ] ] }, @@ -118447,10 +260664,115 @@ "classnotes": "Preregistration for this course is for EPE and PLSC majors only and the form can be found on epe.yale.edu. In one paragraph, please explain your interest and make sure to include your class and major.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84038\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84038/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985092282295227, + 0.9985337257385254, + 0.9987996816635132, + 0.9988969564437866, + 0.9988905787467957, + 0.9989362359046936, + 0.9988353848457336 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989369511604309, + 0.9988715052604675, + 0.9974080920219421, + 0.9989284873008728, + 0.9989336133003235, + 0.9987886548042297 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989336133003235, + 0.9988634586334229, + 0.9986287355422974, + 0.9986818432807922, + 0.9989023208618164, + 0.9988877177238464, + 0.9942677021026611 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 20 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -118490,7 +260812,7 @@ "9:25", "10:15", "WLH 119 - William L. Harkness Hall 119", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -118498,7 +260820,7 @@ "9:25", "10:15", "WLH 119 - William L. Harkness Hall 119", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -118512,10 +260834,239 @@ "classnotes": "During the period between November 14 and November 24, enrollment will be limited to majors. After November 24, registration will be opened to all Yale College students. Please register your interest via the Yale Course Search website. ", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84684\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84684/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985846281051636, + 0.9988105297088623, + 0.9985256791114807, + 0.9985295534133911, + 0.9988969564437866, + 0.9988834261894226, + 0.9977514147758484, + 0.9988563060760498, + 0.9987576007843018, + 0.9975693821907043, + 0.9987862706184387, + 0.9986097812652588, + 0.9974665641784668, + 0.9988927245140076, + 0.9987136125564575, + 0.9987572431564331, + 0.998791515827179, + 0.9944117665290833, + 0.9888995885848999, + 0.9989033937454224, + 0.9988823533058167, + 0.9987388253211975, + 0.9987381100654602, + 0.9591807126998901, + 0.9987437129020691, + 0.9984278678894043 + ], + "sentiment_counts": { + "POSITIVE": 26, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987310767173767, + 0.9988885521888733, + 0.9971687197685242, + 0.998896598815918, + 0.998936116695404, + 0.9794125556945801, + 0.9989044666290283, + 0.9988607168197632, + 0.9988886713981628, + 0.9987872242927551, + 0.9959118366241455, + 0.9987677335739136, + 0.9988596439361572, + 0.9987506866455078, + 0.9949052333831787, + 0.9988143444061279, + 0.9985610842704773, + 0.9994980096817017, + 0.998879611492157, + 0.9988208413124084, + 0.9972012042999268, + 0.999474823474884, + 0.998870313167572, + 0.9988526105880737, + 0.9982838034629822, + 0.9988747239112854 + ], + "sentiment_counts": { + "POSITIVE": 22, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.8461538461538461, + "NEGATIVE": 0.15384615384615385 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8461538461538461 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989081621170044, + 0.9988532066345215, + 0.9982553124427795, + 0.9989147186279297, + 0.9988744854927063, + 0.9988996982574463, + 0.9988558292388916, + 0.9849560856819153, + 0.9989055395126343, + 0.9986552000045776, + 0.9984148740768433, + 0.998860239982605, + 0.9986028075218201, + 0.9982799291610718, + 0.9989160299301147, + 0.9988149404525757, + 0.9987614154815674, + 0.9980523586273193, + 0.9988523721694946, + 0.974129855632782, + 0.9989210367202759, + 0.9982553124427795, + 0.9989327788352966, + 0.9989131689071655, + 0.9989345669746399, + 0.9452022910118103, + 0.9987466335296631, + 0.9989161491394043, + 0.998930037021637 + ], + "sentiment_counts": { + "POSITIVE": 25, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.8620689655172413, + "NEGATIVE": 0.13793103448275862 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8620689655172413 + ] + }, + "final_label": "POSITIVE", + "final_count": 73, + "final_proportion": 0.9012345679012346, + "final_counts": { + "POSITIVE": 73, + "NEGATIVE": 8 + }, + "final_distribution": { + "POSITIVE": 0.9012345679012346, + "NEGATIVE": 0.09876543209876543 + } + } }, { "season_code": "202301", @@ -118549,7 +261100,7 @@ "9:25", "10:15", "BASSLB L70 - Bass Library L70", - "https:\/\/map.yale.edu\/?id=1910#!m\/564574" + "https://map.yale.edu/?id=1910#!m/564574" ] ] }, @@ -118566,7 +261117,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -118600,7 +261179,7 @@ "10:30", "11:20", "BASSLB L70 - Bass Library L70", - "https:\/\/map.yale.edu\/?id=1910#!m\/564574" + "https://map.yale.edu/?id=1910#!m/564574" ] ] }, @@ -118617,7 +261196,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -118651,7 +261258,7 @@ "16:00", "16:50", "WTS A38 - Watson Center 60 Sachem Street A38", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -118668,7 +261275,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -118702,7 +261337,7 @@ "17:00", "17:50", "WTS A38 - Watson Center 60 Sachem Street A38", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -118719,7 +261354,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -118761,7 +261424,7 @@ "14:30", "15:45", "PH 207 - Phelps Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ], "Thursday": [ @@ -118769,7 +261432,7 @@ "14:30", "15:45", "PH 207 - Phelps Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -118786,10 +261449,121 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84627\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84627/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988141059875488, + 0.9965903759002686, + 0.9988465309143066, + 0.9987828135490417, + 0.9995033740997314, + 0.9988623857498169, + 0.9986159801483154 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9990390539169312, + 0.9988694787025452, + 0.9988956451416016, + 0.991764485836029, + 0.9989331364631653, + 0.9987930059432983, + 0.9987930059432983 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 6 + }, + "sentiment_distribution": { + "NEGATIVE": 0.14285714285714285, + "POSITIVE": 0.8571428571428571 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982553124427795, + 0.9989118576049805, + 0.9988988637924194, + 0.9989111423492432, + 0.9995043277740479, + 0.998880922794342, + 0.9988678693771362, + 0.9988558292388916 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 0.8636363636363636, + "final_counts": { + "POSITIVE": 19, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.8636363636363636, + "NEGATIVE": 0.13636363636363635 + } + } }, { "season_code": "202301", @@ -118828,7 +261602,7 @@ "14:30", "15:45", "WALL81 301 - 81 Wall Street 301", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ], "Wednesday": [ @@ -118836,7 +261610,7 @@ "14:30", "15:45", "WALL81 301 - 81 Wall Street 301", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -118852,10 +261626,105 @@ "classnotes": "", "final_exam": "Thursday, May 4, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85394\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85394/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998908519744873, + 0.9988137483596802, + 0.989204466342926, + 0.9988657236099243, + 0.9986458420753479 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9978039860725403, + 0.9989005327224731, + 0.9988828301429749, + 0.9989194869995117, + 0.9988941550254822 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989277720451355, + 0.9984122514724731, + 0.9988321661949158, + 0.9989054203033447, + 0.9989309906959534 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 15 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -118896,7 +261765,7 @@ "15:30", "17:20", "RKZ 102 - Rosenkranz Hall 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -118910,10 +261779,83 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84667\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84667/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9919912219047546 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.99886155128479 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9943179488182068, + 0.9956592917442322 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 4, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 4 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -118953,7 +261895,7 @@ "16:00", "17:15", "HQ 225 - Humanities Quadrangle 225", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -118961,7 +261903,7 @@ "16:00", "17:15", "HQ 225 - Humanities Quadrangle 225", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -118970,7 +261912,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -118978,15 +261920,116 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85734\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85734/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "", - "description": "Examination of how freedom of speech and bias influence the criminal justice system, focusing on wrongful convictions and administration of the death penalty. Understanding the role of potential bias at various levels and the competing interests of protecting speech, due process, and the innocent. Topics include limitations on speech, practical effects of speech, the efficacy of the death penalty, actual innocence, gender\/race\/economic bias and its effects on the justice system, as well as best practices for improving our sense of justice.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987499713897705, + 0.9987164735794067, + 0.9988082647323608, + 0.9987187385559082 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984831213951111, + 0.9989250302314758, + 0.9989160299301147, + 0.9987025260925293, + 0.9989237189292908, + 0.998938262462616 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989321827888489, + 0.9989129304885864, + 0.9989251494407654, + 0.998212456703186, + 0.9988704323768616, + 0.9989181756973267, + 0.9989356398582458, + 0.9988330006599426 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 18 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } + }, + { + "season_code": "202301", + "requirements": "", + "description": "Examination of how freedom of speech and bias influence the criminal justice system, focusing on wrongful convictions and administration of the death penalty. Understanding the role of potential bias at various levels and the competing interests of protecting speech, due process, and the innocent. Topics include limitations on speech, practical effects of speech, the efficacy of the death penalty, actual innocence, gender/race/economic bias and its effects on the justice system, as well as best practices for improving our sense of justice.", "short_title": "Ethics, Law, and Current Issues", "title": "Ethics, Law, and Current Issues", "school": "YC", @@ -119019,7 +262062,7 @@ "18:30", "20:20", "HLH31 108 - 31 Hillhouse Avenue 108", - "https:\/\/map.yale.edu\/?id=1910#!m\/559990" + "https://map.yale.edu/?id=1910#!m/559990" ] ] }, @@ -119031,10 +262074,105 @@ "classnotes": "Preregistration for this course is for EPE and PLSC majors only and the form can be found on epe.yale.edu. In one paragraph, please explain your interest and make sure to include your class and major.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84047\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84047/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988081455230713, + 0.9988935589790344, + 0.9981517195701599, + 0.9987015724182129, + 0.9988853335380554 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989219903945923, + 0.9988847374916077, + 0.9985289573669434, + 0.9989194869995117 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989111423492432, + 0.9980168342590332, + 0.998896598815918, + 0.9989016056060791, + 0.9989032745361328, + 0.998915433883667 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 15 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -119077,7 +262215,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -119117,10 +262283,115 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85217\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85217/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.979477047920227, + 0.9978348612785339, + 0.9755168557167053, + 0.9957413673400879, + 0.9896921515464783, + 0.9989101886749268, + 0.9989264607429504 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9971765279769897, + 0.9986095428466797, + 0.9980223178863525, + 0.9987891316413879, + 0.9915829300880432 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.4, + "POSITIVE": 0.6 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9986826777458191, + 0.9884921312332153, + 0.9971765279769897, + 0.997117280960083, + 0.9974552989006042, + 0.9982553124427795, + 0.9958269000053406 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.7142857142857143, + "NEGATIVE": 0.2857142857142857 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7142857142857143 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 0.7894736842105263, + "final_counts": { + "POSITIVE": 15, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.7894736842105263, + "NEGATIVE": 0.21052631578947367 + } + } }, { "season_code": "202301", @@ -119160,10 +262431,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85218\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85218/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -119203,15 +262502,43 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85219\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85219/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "The Professional Skills Series is intended to prepare M.P.H. students for leadership positions as public health professionals. Material covered includes public speaking, presentation skills, professional writing, negotiation and conflict resolution, and networking and social media. Attendance at 4 sessions is required (elective for Advanced Professional M.P.H. and Accelerated M.B.A.\/M.P.H. students), and some homework is a part of the program. Although no credit or grade is awarded, satisfactory performance will be noted on the student\u2019s transcript.", + "description": "The Professional Skills Series is intended to prepare M.P.H. students for leadership positions as public health professionals. Material covered includes public speaking, presentation skills, professional writing, negotiation and conflict resolution, and networking and social media. Attendance at 4 sessions is required (elective for Advanced Professional M.P.H. and Accelerated M.B.A./M.P.H. students), and some homework is a part of the program. Although no credit or grade is awarded, satisfactory performance will be noted on the student\u2019s transcript.", "short_title": "Professional Skills Series", "title": "Professional Skills Series", "school": "PH", @@ -119246,13 +262573,13 @@ "12:00", "12:50", "CO47 106 A & B - 47 College Street (CLP) 106 A & B", - "https:\/\/map.yale.edu\/?id=1910#!m\/559997" + "https://map.yale.edu/?id=1910#!m/559997" ], [ "16:30", "17:30", "CO47 106 A & B - 47 College Street (CLP) 106 A & B", - "https:\/\/map.yale.edu\/?id=1910#!m\/559997" + "https://map.yale.edu/?id=1910#!m/559997" ] ], "Friday": [ @@ -119260,7 +262587,7 @@ "12:00", "12:50", "CO47 106 A & B - 47 College Street (CLP) 106 A & B", - "https:\/\/map.yale.edu\/?id=1910#!m\/559997" + "https://map.yale.edu/?id=1910#!m/559997" ] ] }, @@ -119272,14 +262599,42 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86093\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86093/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", - "requirements": "Open only to second-year M.P.H. students, Advanced Professional M.P.H. students, and Accelerated M.B.A.\/M.P.H. students.", + "requirements": "Open only to second-year M.P.H. students, Advanced Professional M.P.H. students, and Accelerated M.B.A./M.P.H. students.", "description": "This course is one of the options available to students to fulfill the practice requirement for the M.P.H. degree. The course design combines experiential learning and guided classroom discussion. Students are assigned to a field placement in an appropriate setting that affords the opportunity to apply public health concepts and competencies learned in the classroom through a practice experience that is relevant to the students\u2019 areas of specialization. Emphasis is placed on situating students in community-based organizations and other public health service settings such as local or state health departments, where they can work on authentic public health problems and issues. This course provides a means for students to gain exposure to the mission and activities of diverse public health organizations and thus may help to inform their decisions about professional work pursuits upon completion of the M.P.H. degree.", "short_title": "Public Health Practicum", "title": "Public Health Practicum", @@ -119312,7 +262667,7 @@ "8:00", "9:50", "LEPH WINSL - Laboratory of EPH WINSL", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ] }, @@ -119324,15 +262679,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86094\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86094/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "Open only to students in the U.S. Health Justice Concentration. Prerequisite: SBS 590 (may be taken concurrently).", - "description": "This is the practicum course for the U.S. Health Justice Concentration. All students participating in the U.S. Health Justice Concentration complete a practicum. (With additional approval of the Office of Public Health Practice, this course can also be used to meet the Applied Practice Experience requirement for graduation.) This practicum experience addresses the objectives of the concentration and is conducted in partnership with a public health or other community organization. Students who choose to complete the practicum during an academic term enroll in this course (in lieu of EPH 500). Prior to the practicum, students complete a work plan and project description that will be reviewed by a faculty adviser and their preceptor at the partner organization. Possible projects may include evaluation, needs assessment, advocacy, public health communication, and\/or service provision. Projects should be focused on understanding and ameliorating social or structural determinants of health inequality. During the practicum, students participate in biweekly group reflection meetings with concentration faculty and other concentration students. Upon completion of the practicum, students produce a minimum of two tangible work products or deliverables. These projects and deliverables must be distinct from the students\u2019 thesis work or work completed in other independent study courses.", + "description": "This is the practicum course for the U.S. Health Justice Concentration. All students participating in the U.S. Health Justice Concentration complete a practicum. (With additional approval of the Office of Public Health Practice, this course can also be used to meet the Applied Practice Experience requirement for graduation.) This practicum experience addresses the objectives of the concentration and is conducted in partnership with a public health or other community organization. Students who choose to complete the practicum during an academic term enroll in this course (in lieu of EPH 500). Prior to the practicum, students complete a work plan and project description that will be reviewed by a faculty adviser and their preceptor at the partner organization. Possible projects may include evaluation, needs assessment, advocacy, public health communication, and/or service provision. Projects should be focused on understanding and ameliorating social or structural determinants of health inequality. During the practicum, students participate in biweekly group reflection meetings with concentration faculty and other concentration students. Upon completion of the practicum, students produce a minimum of two tangible work products or deliverables. These projects and deliverables must be distinct from the students\u2019 thesis work or work completed in other independent study courses.", "short_title": "U.S. Health Justice Concentra...", "title": "U.S. Health Justice Concentration Practicum", "school": "PH", @@ -119370,7 +262753,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -119407,7 +262818,7 @@ "8:30", "9:50", "LEPH WINSL - Laboratory of EPH WINSL", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ], "Thursday": [ @@ -119415,7 +262826,7 @@ "8:30", "9:50", "LEPH WINSL - Laboratory of EPH WINSL", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ] }, @@ -119430,7 +262841,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -119467,7 +262906,7 @@ "10:00", "11:50", "CO47 106 A & B - 47 College Street (CLP) 106 A & B", - "https:\/\/map.yale.edu\/?id=1910#!m\/559997" + "https://map.yale.edu/?id=1910#!m/559997" ] ] }, @@ -119482,10 +262921,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86097\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86097/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -119522,7 +262989,7 @@ "13:00", "14:50", "CO47 106 A & B - 47 College Street (CLP) 106 A & B", - "https:\/\/map.yale.edu\/?id=1910#!m\/559997" + "https://map.yale.edu/?id=1910#!m/559997" ] ] }, @@ -119537,10 +263004,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86098\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86098/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -119577,7 +263072,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -119617,10 +263140,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87188\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87188/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -119660,10 +263211,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86101\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86101/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -119703,10 +263282,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86102\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86102/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -119746,10 +263353,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86103\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86103/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -119790,7 +263425,7 @@ "15:00", "16:50", "LEPH 102 - Laboratory of EPH 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ] }, @@ -119804,10 +263439,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85047\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85047/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -119844,7 +263507,7 @@ "15:00", "16:50", "LEPH 115 - Laboratory of EPH 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ] }, @@ -119856,10 +263519,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86104\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86104/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -119896,7 +263587,7 @@ "12:00", "12:50", "LEPH 115 - Laboratory of EPH 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ] }, @@ -119908,15 +263599,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86105\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86105/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This yearlong, monthly seminar is targeted most specifically to students in the Public Health Modeling Concentration but open to all interested members of the Yale community. The seminar features talks by faculty from across Yale University doing modeling-related research, as well as invited speakers from other universities and public health agencies. The objectives are to offer students the opportunity to witness the scope and range of questions in public health policy and practice that may be addressed, understood, and informed using model-based approaches; appreciate the breadth of public health modeling research being conducted around the University and beyond; explore possible collaborations\/relationships with other scholars and professionals; review, critique, and evaluate model-based public health research in a structured environment; and form their own opinions regarding the applicability, relevance, and responsible use of modeling methods. Two terms of this no-credit seminar are required of students in the Public Health Modeling Concentration. For each class, one or two readings are circulated\/posted on the course website prior to the talk. Students are encouraged to read the articles and articulate questions for the speaker.", + "description": "This yearlong, monthly seminar is targeted most specifically to students in the Public Health Modeling Concentration but open to all interested members of the Yale community. The seminar features talks by faculty from across Yale University doing modeling-related research, as well as invited speakers from other universities and public health agencies. The objectives are to offer students the opportunity to witness the scope and range of questions in public health policy and practice that may be addressed, understood, and informed using model-based approaches; appreciate the breadth of public health modeling research being conducted around the University and beyond; explore possible collaborations/relationships with other scholars and professionals; review, critique, and evaluate model-based public health research in a structured environment; and form their own opinions regarding the applicability, relevance, and responsible use of modeling methods. Two terms of this no-credit seminar are required of students in the Public Health Modeling Concentration. For each class, one or two readings are circulated/posted on the course website prior to the talk. Students are encouraged to read the articles and articulate questions for the speaker.", "short_title": "Seminar for Modeling in Publi...", "title": "Seminar for Modeling in Public Health", "school": "PH", @@ -119951,7 +263670,7 @@ "12:00", "12:50", "LEPH 115 - Laboratory of EPH 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ] }, @@ -119963,10 +263682,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86106\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86106/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -120003,7 +263750,7 @@ "10:00", "11:50", "CO47 106A - 47 College Street (CLP) 106A", - "https:\/\/map.yale.edu\/?id=1910#!m\/559997" + "https://map.yale.edu/?id=1910#!m/559997" ] ] }, @@ -120017,10 +263764,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86107\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86107/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -120061,7 +263836,7 @@ "14:30", "15:45", "AKW 100 - Arthur K. Watson Hall 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560119" + "https://map.yale.edu/?id=1910#!m/560119" ] ], "Wednesday": [ @@ -120069,7 +263844,7 @@ "14:30", "15:45", "AKW 100 - Arthur K. Watson Hall 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560119" + "https://map.yale.edu/?id=1910#!m/560119" ] ] }, @@ -120087,10 +263862,129 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83363\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83363/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987213015556335, + 0.9988129138946533, + 0.9972946047782898, + 0.9988101720809937, + 0.998798131942749, + 0.9989086389541626, + 0.9989030361175537, + 0.9988982677459717, + 0.9988283514976501 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987598657608032, + 0.9988417029380798, + 0.973635733127594, + 0.9989319443702698, + 0.9908389449119568, + 0.9988753199577332, + 0.9980974793434143, + 0.998778760433197, + 0.9978864789009094 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989151954650879, + 0.9989174604415894, + 0.8070329427719116, + 0.9989311099052429, + 0.9989210367202759, + 0.9989100694656372, + 0.9988678693771362, + 0.9988464117050171 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "final_label": "POSITIVE", + "final_count": 24, + "final_proportion": 0.9230769230769231, + "final_counts": { + "POSITIVE": 24, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9230769230769231, + "NEGATIVE": 0.07692307692307693 + } + } }, { "season_code": "202301", @@ -120134,7 +264028,7 @@ "11:35", "12:50", "KGL 123 - Kline Geology Laboratory 123", - "https:\/\/map.yale.edu\/?id=1910#!m\/559996" + "https://map.yale.edu/?id=1910#!m/559996" ] ], "Thursday": [ @@ -120142,7 +264036,7 @@ "11:35", "12:50", "KGL 123 - Kline Geology Laboratory 123", - "https:\/\/map.yale.edu\/?id=1910#!m\/559996" + "https://map.yale.edu/?id=1910#!m/559996" ] ] }, @@ -120158,10 +264052,159 @@ "classnotes": "", "final_exam": "Monday, May 8, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84051\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84051/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988229870796204, + 0.998746395111084, + 0.9988439083099365, + 0.9988125562667847, + 0.9987326264381409, + 0.9988486766815186, + 0.9987674951553345, + 0.9987096786499023, + 0.9989012479782104, + 0.9982265830039978, + 0.9989160299301147, + 0.9988980293273926 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998600423336029, + 0.9948050379753113, + 0.9994884729385376, + 0.9995003938674927, + 0.9987163543701172, + 0.9988633394241333, + 0.9908673763275146, + 0.9995038509368896, + 0.9987964630126953, + 0.9986912608146667, + 0.9896962642669678, + 0.9988836646080017, + 0.9995070695877075, + 0.9987861514091492, + 0.998934805393219 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 6 + }, + "sentiment_distribution": { + "POSITIVE": 0.6, + "NEGATIVE": 0.4 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9343546628952026, + 0.9985175728797913, + 0.9995015859603882, + 0.9994756579399109, + 0.9989269375801086, + 0.9989057779312134, + 0.9994738698005676, + 0.9989359974861145, + 0.9994420409202576, + 0.9988346695899963, + 0.9987185001373291, + 0.9917426705360413, + 0.9989321827888489, + 0.9989303946495056 + ], + "sentiment_counts": { + "NEGATIVE": 5, + "POSITIVE": 9 + }, + "sentiment_distribution": { + "NEGATIVE": 0.35714285714285715, + "POSITIVE": 0.6428571428571429 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6428571428571429 + ] + }, + "final_label": "POSITIVE", + "final_count": 30, + "final_proportion": 0.7317073170731707, + "final_counts": { + "POSITIVE": 30, + "NEGATIVE": 11 + }, + "final_distribution": { + "POSITIVE": 0.7317073170731707, + "NEGATIVE": 0.2682926829268293 + } + } }, { "season_code": "202301", @@ -120213,17 +264256,110 @@ "Sc" ], "flags": [ - "YC EVST: B.S. NatSci\/Field Lab" + "YC EVST: B.S. NatSci/Field Lab" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84056\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84056/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986876845359802, + 0.9988829493522644, + 0.9989066123962402, + 0.9973005652427673, + 0.9988407492637634 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9966890215873718, + 0.9989148378372192, + 0.9988368153572083, + 0.9982948899269104 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.25, + "POSITIVE": 0.75 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988939166069031, + 0.9988228678703308, + 0.9989068508148193, + 0.9945076107978821 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 0.9230769230769231, + "final_counts": { + "POSITIVE": 12, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9230769230769231, + "NEGATIVE": 0.07692307692307693 + } + } }, { "season_code": "202301", @@ -120260,7 +264396,7 @@ "9:25", "10:15", "WTS A51 - Watson Center 60 Sachem Street A51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -120268,7 +264404,7 @@ "9:25", "10:15", "WTS A51 - Watson Center 60 Sachem Street A51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Friday": [ @@ -120276,7 +264412,7 @@ "9:25", "10:15", "WTS A51 - Watson Center 60 Sachem Street A51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -120295,10 +264431,217 @@ "classnotes": "", "final_exam": "Saturday, May 6, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84059\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84059/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989258646965027, + 0.9987785220146179, + 0.9946054816246033, + 0.9988094568252563, + 0.9986680746078491, + 0.9959716200828552, + 0.9988277554512024, + 0.9988679885864258, + 0.9988804459571838, + 0.998713493347168, + 0.9988975524902344, + 0.997698962688446, + 0.998894989490509, + 0.9982140064239502, + 0.9922178983688354, + 0.9983769655227661, + 0.9985796213150024, + 0.9985270500183105, + 0.9945143461227417, + 0.9988106489181519, + 0.998823344707489, + 0.9988755583763123 + ], + "sentiment_counts": { + "POSITIVE": 22, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988064765930176, + 0.9989007711410522, + 0.9723278880119324, + 0.9995083808898926, + 0.9995036125183105, + 0.9987847208976746, + 0.9994513392448425, + 0.9986830353736877, + 0.9989288449287415, + 0.9993334412574768, + 0.9974662065505981, + 0.998866081237793, + 0.9989398121833801, + 0.9780707955360413, + 0.998852014541626, + 0.9988570213317871, + 0.9994459748268127, + 0.998222291469574, + 0.9818562865257263, + 0.9994997978210449, + 0.9923357367515564, + 0.9988394379615784, + 0.9988160133361816, + 0.9995065927505493 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 12 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988383650779724, + 0.999506950378418, + 0.9989175796508789, + 0.9994858503341675, + 0.9994876384735107, + 0.9990196228027344, + 0.9952422380447388, + 0.9991323351860046, + 0.9980134963989258, + 0.998809814453125, + 0.9992651343345642, + 0.9913455247879028, + 0.9988762736320496, + 0.998889148235321, + 0.9983012080192566, + 0.9987849593162537, + 0.9909594058990479, + 0.9994742274284363, + 0.9988440275192261, + 0.9995037317276001, + 0.999484658241272, + 0.9994329810142517, + 0.9989123344421387, + 0.9595930576324463 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 12 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "final_label": "POSITIVE", + "final_count": 46, + "final_proportion": 0.6571428571428571, + "final_counts": { + "POSITIVE": 46, + "NEGATIVE": 24 + }, + "final_distribution": { + "POSITIVE": 0.6571428571428571, + "NEGATIVE": 0.34285714285714286 + } + } }, { "season_code": "202301", @@ -120335,7 +264678,7 @@ "10:30", "11:20", "KGL 123 - Kline Geology Laboratory 123", - "https:\/\/map.yale.edu\/?id=1910#!m\/559996" + "https://map.yale.edu/?id=1910#!m/559996" ] ], "Wednesday": [ @@ -120343,7 +264686,7 @@ "10:30", "11:20", "KGL 123 - Kline Geology Laboratory 123", - "https:\/\/map.yale.edu\/?id=1910#!m\/559996" + "https://map.yale.edu/?id=1910#!m/559996" ] ], "Friday": [ @@ -120351,7 +264694,7 @@ "10:30", "11:20", "KGL 123 - Kline Geology Laboratory 123", - "https:\/\/map.yale.edu\/?id=1910#!m\/559996" + "https://map.yale.edu/?id=1910#!m/559996" ] ] }, @@ -120365,10 +264708,189 @@ "classnotes": "", "final_exam": "Friday, May 5, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84063\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84063/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984867572784424, + 0.9989491105079651, + 0.9979179501533508, + 0.9988798499107361, + 0.9927984476089478, + 0.9987666606903076, + 0.9979473948478699, + 0.9987336993217468, + 0.9968299269676208, + 0.9987878203392029, + 0.9986122846603394, + 0.9988609552383423, + 0.9982370138168335, + 0.9989099502563477, + 0.9979149699211121, + 0.9979662895202637, + 0.9977940320968628 + ], + "sentiment_counts": { + "POSITIVE": 16, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9411764705882353, + "NEGATIVE": 0.058823529411764705 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9411764705882353 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982617497444153, + 0.9994792342185974, + 0.9916172623634338, + 0.9989087581634521, + 0.9989332556724548, + 0.99529629945755, + 0.9970957040786743, + 0.9987358450889587, + 0.9995013475418091, + 0.9988725781440735, + 0.9971094727516174, + 0.9989162683486938, + 0.9988133907318115, + 0.9988717436790466, + 0.9989056587219238, + 0.999383807182312, + 0.9994445443153381, + 0.9976735711097717 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 5 + }, + "sentiment_distribution": { + "POSITIVE": 0.7222222222222222, + "NEGATIVE": 0.2777777777777778 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7222222222222222 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9979368448257446, + 0.9992953538894653, + 0.9988914132118225, + 0.9989357590675354, + 0.9989364743232727, + 0.9989213943481445, + 0.9987382292747498, + 0.9987013339996338, + 0.9989197254180908, + 0.9988935589790344, + 0.9995046854019165, + 0.9988932013511658, + 0.9989060163497925, + 0.9989107847213745, + 0.9983184337615967, + 0.9989232420921326, + 0.9988775849342346, + 0.9988468885421753, + 0.9994704127311707, + 0.9988961219787598, + 0.9823363423347473 + ], + "sentiment_counts": { + "POSITIVE": 16, + "NEGATIVE": 5 + }, + "sentiment_distribution": { + "POSITIVE": 0.7619047619047619, + "NEGATIVE": 0.23809523809523808 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7619047619047619 + ] + }, + "final_label": "POSITIVE", + "final_count": 45, + "final_proportion": 0.8035714285714286, + "final_counts": { + "POSITIVE": 45, + "NEGATIVE": 11 + }, + "final_distribution": { + "POSITIVE": 0.8035714285714286, + "NEGATIVE": 0.19642857142857142 + } + } }, { "season_code": "202301", @@ -120407,7 +264929,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -120444,7 +264994,7 @@ "13:00", "14:15", "KGL 120 - Kline Geology Laboratory 120", - "https:\/\/map.yale.edu\/?id=1910#!m\/559996" + "https://map.yale.edu/?id=1910#!m/559996" ] ], "Thursday": [ @@ -120452,7 +265002,7 @@ "13:00", "14:15", "KGL 120 - Kline Geology Laboratory 120", - "https:\/\/map.yale.edu\/?id=1910#!m\/559996" + "https://map.yale.edu/?id=1910#!m/559996" ] ] }, @@ -120466,10 +265016,151 @@ "classnotes": "", "final_exam": "Sunday, May 7, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84069\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84069/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9855920076370239, + 0.9987998008728027, + 0.9988886713981628, + 0.9986769556999207, + 0.9989326596260071, + 0.9985981583595276, + 0.9988547563552856, + 0.9934817552566528, + 0.9987819790840149, + 0.9936681389808655, + 0.9987664222717285, + 0.9987433552742004, + 0.99842369556427 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986045956611633, + 0.998891294002533, + 0.9979097247123718, + 0.9989063739776611, + 0.9989346861839294, + 0.9986628293991089, + 0.9988648891448975, + 0.9988911747932434, + 0.9989323019981384, + 0.9987527132034302, + 0.9985993504524231 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9980471134185791, + 0.9988418221473694, + 0.998935878276825, + 0.9984317421913147, + 0.9989179372787476, + 0.9985815286636353, + 0.9988207221031189, + 0.9989171028137207, + 0.9989191293716431, + 0.9989199638366699, + 0.9989226460456848, + 0.9989352822303772, + 0.9987525939941406, + 0.998895525932312 + ], + "sentiment_counts": { + "POSITIVE": 14, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 38, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 38 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -120506,7 +265197,7 @@ "11:35", "12:50", "WLH 204 - William L. Harkness Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -120514,7 +265205,7 @@ "11:35", "12:50", "WLH 204 - William L. Harkness Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -120528,10 +265219,113 @@ "classnotes": "", "final_exam": "Saturday, May 6, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85443\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85443/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9975117444992065, + 0.9989168643951416, + 0.9988489151000977, + 0.9987146854400635, + 0.9988816380500793, + 0.9985097050666809 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998920202255249, + 0.9986353516578674, + 0.9976469874382019, + 0.9989376664161682, + 0.9988048076629639 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989099502563477, + 0.9989364743232727, + 0.9988492727279663, + 0.9987257122993469, + 0.9989367127418518, + 0.998924195766449, + 0.9988604784011841, + 0.9989129304885864 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 19 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -120568,7 +265362,7 @@ "11:35", "12:50", "KGL 120 - Kline Geology Laboratory 120", - "https:\/\/map.yale.edu\/?id=1910#!m\/559996" + "https://map.yale.edu/?id=1910#!m/559996" ] ], "Wednesday": [ @@ -120576,7 +265370,7 @@ "11:35", "12:50", "KGL 120 - Kline Geology Laboratory 120", - "https:\/\/map.yale.edu\/?id=1910#!m\/559996" + "https://map.yale.edu/?id=1910#!m/559996" ] ] }, @@ -120590,10 +265384,133 @@ "classnotes": "", "final_exam": "Saturday, May 6, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83966\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83966/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986868500709534, + 0.9951545000076294, + 0.9988659620285034, + 0.9983900785446167, + 0.9989089965820312, + 0.9987485408782959, + 0.9988560676574707, + 0.9988871216773987, + 0.9985805749893188 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988214373588562, + 0.9989018440246582, + 0.9988429546356201, + 0.9987229704856873, + 0.9988952875137329, + 0.9873784184455872, + 0.9901577830314636, + 0.9988923668861389, + 0.9987911581993103, + 0.9986206293106079 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989162683486938, + 0.9988923668861389, + 0.9995133876800537, + 0.9980210065841675, + 0.9988942742347717, + 0.9983854293823242, + 0.9988569021224976, + 0.9982922673225403, + 0.998921275138855 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.7777777777777778, + "NEGATIVE": 0.2222222222222222 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7777777777777778 + ] + }, + "final_label": "POSITIVE", + "final_count": 25, + "final_proportion": 0.8928571428571429, + "final_counts": { + "POSITIVE": 25, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.8928571428571429, + "NEGATIVE": 0.10714285714285714 + } + } }, { "season_code": "202301", @@ -120631,7 +265548,7 @@ "13:00", "14:15", "ESC 200 - Environmental Sciences Center 200", - "https:\/\/map.yale.edu\/?id=1910#!m\/560020" + "https://map.yale.edu/?id=1910#!m/560020" ] ], "Wednesday": [ @@ -120639,7 +265556,7 @@ "13:00", "14:15", "ESC 200 - Environmental Sciences Center 200", - "https:\/\/map.yale.edu\/?id=1910#!m\/560020" + "https://map.yale.edu/?id=1910#!m/560020" ] ] }, @@ -120653,10 +265570,38 @@ "classnotes": "", "final_exam": "Tuesday, May 9, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83971\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83971/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -120694,7 +265639,7 @@ "9:00", "10:15", "KGL 123 - Kline Geology Laboratory 123", - "https:\/\/map.yale.edu\/?id=1910#!m\/559996" + "https://map.yale.edu/?id=1910#!m/559996" ] ], "Wednesday": [ @@ -120702,7 +265647,7 @@ "9:00", "10:15", "KGL 123 - Kline Geology Laboratory 123", - "https:\/\/map.yale.edu\/?id=1910#!m\/559996" + "https://map.yale.edu/?id=1910#!m/559996" ] ] }, @@ -120716,10 +265661,263 @@ "classnotes": "", "final_exam": "Saturday, May 6, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83976\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83976/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9973672032356262, + 0.9984196424484253, + 0.9988155364990234, + 0.9987756609916687, + 0.9988321661949158, + 0.9988376498222351, + 0.998891294002533, + 0.998855471611023, + 0.9987767338752747, + 0.9985948204994202, + 0.9985148310661316, + 0.9982708692550659, + 0.9986635446548462, + 0.9974820017814636, + 0.9989125728607178, + 0.9988941550254822, + 0.9986627101898193, + 0.9987019300460815, + 0.9986611604690552, + 0.9988906979560852, + 0.998856782913208, + 0.9987103939056396, + 0.9929103255271912, + 0.9986580610275269, + 0.998123824596405, + 0.9988232254981995, + 0.9988802075386047, + 0.9988172054290771, + 0.9988652467727661, + 0.9988498687744141 + ], + "sentiment_counts": { + "POSITIVE": 30, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989259839057922, + 0.9987524747848511, + 0.9989197254180908, + 0.9989147186279297, + 0.9987982511520386, + 0.9989350438117981, + 0.998928964138031, + 0.9993396401405334, + 0.9958699345588684, + 0.9949373006820679, + 0.9985887408256531, + 0.9988799691200256, + 0.9977669715881348, + 0.9988922476768494, + 0.9952493906021118, + 0.9988179802894592, + 0.9955682158470154, + 0.9989092350006104, + 0.9903212189674377, + 0.9988462924957275, + 0.9988456964492798, + 0.9988847374916077, + 0.9989185333251953, + 0.9988113641738892, + 0.9988829493522644, + 0.9987491369247437, + 0.9988868832588196, + 0.9989000558853149, + 0.994239091873169, + 0.9987298846244812 + ], + "sentiment_counts": { + "POSITIVE": 23, + "NEGATIVE": 7 + }, + "sentiment_distribution": { + "POSITIVE": 0.7666666666666667, + "NEGATIVE": 0.23333333333333334 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7666666666666667 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989168643951416, + 0.9983828067779541, + 0.9988759160041809, + 0.9989172220230103, + 0.9981922507286072, + 0.9989075660705566, + 0.9989122152328491, + 0.9943139553070068, + 0.9989264607429504, + 0.9995032548904419, + 0.9989029169082642, + 0.9979389309883118, + 0.998180627822876, + 0.9988411068916321, + 0.9980016350746155, + 0.9986448884010315, + 0.9982553124427795, + 0.9988738894462585, + 0.9988721013069153, + 0.993983805179596, + 0.9988844990730286, + 0.997117280960083, + 0.9917116165161133, + 0.99892657995224, + 0.9943850040435791, + 0.9989069700241089, + 0.9971603155136108, + 0.9988983869552612, + 0.9988300204277039, + 0.998910665512085, + 0.9988956451416016, + 0.9896087050437927, + 0.9975765347480774 + ], + "sentiment_counts": { + "POSITIVE": 29, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.8787878787878788, + "NEGATIVE": 0.12121212121212122 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8787878787878788 + ] + }, + "final_label": "POSITIVE", + "final_count": 82, + "final_proportion": 0.8817204301075269, + "final_counts": { + "POSITIVE": 82, + "NEGATIVE": 11 + }, + "final_distribution": { + "POSITIVE": 0.8817204301075269, + "NEGATIVE": 0.11827956989247312 + } + } }, { "season_code": "202301", @@ -120757,7 +265955,7 @@ "13:00", "14:15", "KGL 116 - Kline Geology Laboratory 116", - "https:\/\/map.yale.edu\/?id=1910#!m\/559996" + "https://map.yale.edu/?id=1910#!m/559996" ] ], "Thursday": [ @@ -120765,7 +265963,7 @@ "13:00", "14:15", "KGL 116 - Kline Geology Laboratory 116", - "https:\/\/map.yale.edu\/?id=1910#!m\/559996" + "https://map.yale.edu/?id=1910#!m/559996" ] ] }, @@ -120781,10 +265979,97 @@ "classnotes": "", "final_exam": "Sunday, May 7, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85946\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85946/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9533023834228516, + 0.9939945340156555, + 0.9983330368995667, + 0.9988804459571838 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987051486968994, + 0.9989396929740906, + 0.9988179802894592 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9986385703086853, + 0.9986762404441833, + 0.9991405010223389 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 0.9, + "final_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + } + } }, { "season_code": "202301", @@ -120822,7 +266107,7 @@ "11:35", "12:50", "KGL 116 - Kline Geology Laboratory 116", - "https:\/\/map.yale.edu\/?id=1910#!m\/559996" + "https://map.yale.edu/?id=1910#!m/559996" ] ], "Thursday": [ @@ -120830,7 +266115,7 @@ "11:35", "12:50", "KGL 116 - Kline Geology Laboratory 116", - "https:\/\/map.yale.edu\/?id=1910#!m\/559996" + "https://map.yale.edu/?id=1910#!m/559996" ] ] }, @@ -120846,10 +266131,89 @@ "classnotes": "", "final_exam": "Monday, May 8, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83981\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83981/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9871724843978882, + 0.9986212253570557 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988160133361816, + 0.9890950322151184 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9987737536430359, + 0.9883637428283691 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "final_label": "POSITIVE", + "final_count": 4, + "final_proportion": 0.6666666666666666, + "final_counts": { + "POSITIVE": 4, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + } + } }, { "season_code": "202301", @@ -120892,7 +266256,7 @@ "9:00", "10:15", "ESC 110 - Environmental Sciences Center 110", - "https:\/\/map.yale.edu\/?id=1910#!m\/560020" + "https://map.yale.edu/?id=1910#!m/560020" ] ], "Thursday": [ @@ -120900,7 +266264,7 @@ "9:00", "10:15", "ESC 110 - Environmental Sciences Center 110", - "https:\/\/map.yale.edu\/?id=1910#!m\/560020" + "https://map.yale.edu/?id=1910#!m/560020" ] ] }, @@ -120921,10 +266285,135 @@ "classnotes": "", "final_exam": "Tuesday, May 9, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83986\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83986/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9972192049026489, + 0.998807430267334, + 0.9986886382102966, + 0.9978384375572205, + 0.9989041090011597, + 0.9988611936569214, + 0.99888676404953, + 0.9980066418647766, + 0.9988403916358948, + 0.9986371397972107 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989226460456848, + 0.9989256262779236, + 0.9994869232177734, + 0.998843789100647, + 0.9989340901374817, + 0.998659610748291, + 0.9988831877708435, + 0.9985139966011047, + 0.9989125728607178 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.7777777777777778, + "NEGATIVE": 0.2222222222222222 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7777777777777778 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986080527305603, + 0.9988961219787598, + 0.9972487092018127, + 0.9985396862030029, + 0.9989063739776611, + 0.9989249110221863, + 0.99869304895401, + 0.9989124536514282, + 0.9989282488822937, + 0.9988740086555481 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 27, + "final_proportion": 0.9310344827586207, + "final_counts": { + "POSITIVE": 27, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9310344827586207, + "NEGATIVE": 0.06896551724137931 + } + } }, { "season_code": "202301", @@ -120962,7 +266451,7 @@ "14:30", "15:45", "KGL 116 - Kline Geology Laboratory 116", - "https:\/\/map.yale.edu\/?id=1910#!m\/559996" + "https://map.yale.edu/?id=1910#!m/559996" ] ], "Thursday": [ @@ -120970,7 +266459,7 @@ "14:30", "15:45", "KGL 116 - Kline Geology Laboratory 116", - "https:\/\/map.yale.edu\/?id=1910#!m\/559996" + "https://map.yale.edu/?id=1910#!m/559996" ] ] }, @@ -120984,10 +266473,103 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86291\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86291/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985729455947876, + 0.9974251985549927, + 0.9878742098808289 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9905257225036621, + 0.9988425970077515, + 0.9900851249694824, + 0.9967554211616516 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987687468528748, + 0.9984772801399231, + 0.9985503554344177, + 0.995798647403717, + 0.9988945126533508, + 0.9986166954040527 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 0.6923076923076923, + "final_counts": { + "POSITIVE": 9, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.6923076923076923, + "NEGATIVE": 0.3076923076923077 + } + } }, { "season_code": "202301", @@ -121025,7 +266607,7 @@ "11:35", "12:50", "KGL 226 - Kline Geology Laboratory 226", - "https:\/\/map.yale.edu\/?id=1910#!m\/559996" + "https://map.yale.edu/?id=1910#!m/559996" ] ], "Wednesday": [ @@ -121033,7 +266615,7 @@ "11:35", "12:50", "KGL 226 - Kline Geology Laboratory 226", - "https:\/\/map.yale.edu\/?id=1910#!m\/559996" + "https://map.yale.edu/?id=1910#!m/559996" ] ] }, @@ -121049,10 +266631,81 @@ "classnotes": "", "final_exam": "Saturday, May 6, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85970\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85970/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988899827003479 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988981485366821 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988547563552856 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 3, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 3 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -121090,7 +266743,7 @@ "13:00", "14:15", "KGL 226 - Kline Geology Laboratory 226", - "https:\/\/map.yale.edu\/?id=1910#!m\/559996" + "https://map.yale.edu/?id=1910#!m/559996" ] ], "Thursday": [ @@ -121098,7 +266751,7 @@ "13:00", "14:15", "KGL 226 - Kline Geology Laboratory 226", - "https:\/\/map.yale.edu\/?id=1910#!m\/559996" + "https://map.yale.edu/?id=1910#!m/559996" ] ] }, @@ -121114,10 +266767,38 @@ "classnotes": "", "final_exam": "Sunday, May 7, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85971\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/85971/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -121160,7 +266841,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -121203,7 +266912,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -121246,7 +266983,14 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -121289,7 +267033,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -121332,7 +267104,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -121370,7 +267170,7 @@ "13:00", "14:15", "KGL 116 - Kline Geology Laboratory 116", - "https:\/\/map.yale.edu\/?id=1910#!m\/559996" + "https://map.yale.edu/?id=1910#!m/559996" ] ], "Thursday": [ @@ -121378,7 +267178,7 @@ "13:00", "14:15", "KGL 116 - Kline Geology Laboratory 116", - "https:\/\/map.yale.edu\/?id=1910#!m\/559996" + "https://map.yale.edu/?id=1910#!m/559996" ] ] }, @@ -121390,10 +267190,97 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85946\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85946/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9533023834228516, + 0.9939945340156555, + 0.9983330368995667, + 0.9988804459571838 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987051486968994, + 0.9989396929740906, + 0.9988179802894592 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9986385703086853, + 0.9986762404441833, + 0.9991405010223389 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 0.9, + "final_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + } + } }, { "season_code": "202301", @@ -121431,7 +267318,7 @@ "11:35", "12:50", "KGL 226 - Kline Geology Laboratory 226", - "https:\/\/map.yale.edu\/?id=1910#!m\/559996" + "https://map.yale.edu/?id=1910#!m/559996" ] ], "Wednesday": [ @@ -121439,7 +267326,7 @@ "11:35", "12:50", "KGL 226 - Kline Geology Laboratory 226", - "https:\/\/map.yale.edu\/?id=1910#!m\/559996" + "https://map.yale.edu/?id=1910#!m/559996" ] ] }, @@ -121451,10 +267338,81 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85970\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85970/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988899827003479 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988981485366821 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988547563552856 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 3, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 3 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -121492,7 +267450,7 @@ "11:35", "12:50", "KGL 116 - Kline Geology Laboratory 116", - "https:\/\/map.yale.edu\/?id=1910#!m\/559996" + "https://map.yale.edu/?id=1910#!m/559996" ] ], "Thursday": [ @@ -121500,7 +267458,7 @@ "11:35", "12:50", "KGL 116 - Kline Geology Laboratory 116", - "https:\/\/map.yale.edu\/?id=1910#!m\/559996" + "https://map.yale.edu/?id=1910#!m/559996" ] ] }, @@ -121512,10 +267470,89 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83981\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83981/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9871724843978882, + 0.9986212253570557 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988160133361816, + 0.9890950322151184 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9987737536430359, + 0.9883637428283691 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "final_label": "POSITIVE", + "final_count": 4, + "final_proportion": 0.6666666666666666, + "final_counts": { + "POSITIVE": 4, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + } + } }, { "season_code": "202301", @@ -121552,7 +267589,7 @@ "10:30", "11:20", "KGL 119 - Kline Geology Laboratory 119", - "https:\/\/map.yale.edu\/?id=1910#!m\/559996" + "https://map.yale.edu/?id=1910#!m/559996" ] ], "Wednesday": [ @@ -121560,7 +267597,7 @@ "10:30", "11:20", "KGL 119 - Kline Geology Laboratory 119", - "https:\/\/map.yale.edu\/?id=1910#!m\/559996" + "https://map.yale.edu/?id=1910#!m/559996" ] ], "Friday": [ @@ -121568,7 +267605,7 @@ "10:30", "11:20", "KGL 119 - Kline Geology Laboratory 119", - "https:\/\/map.yale.edu\/?id=1910#!m\/559996" + "https://map.yale.edu/?id=1910#!m/559996" ] ] }, @@ -121580,10 +267617,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85983\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85983/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -121626,7 +267691,7 @@ "9:00", "10:15", "ESC 110 - Environmental Sciences Center 110", - "https:\/\/map.yale.edu\/?id=1910#!m\/560020" + "https://map.yale.edu/?id=1910#!m/560020" ] ], "Thursday": [ @@ -121634,7 +267699,7 @@ "9:00", "10:15", "ESC 110 - Environmental Sciences Center 110", - "https:\/\/map.yale.edu\/?id=1910#!m\/560020" + "https://map.yale.edu/?id=1910#!m/560020" ] ] }, @@ -121648,10 +267713,135 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83986\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83986/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9972192049026489, + 0.998807430267334, + 0.9986886382102966, + 0.9978384375572205, + 0.9989041090011597, + 0.9988611936569214, + 0.99888676404953, + 0.9980066418647766, + 0.9988403916358948, + 0.9986371397972107 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989226460456848, + 0.9989256262779236, + 0.9994869232177734, + 0.998843789100647, + 0.9989340901374817, + 0.998659610748291, + 0.9988831877708435, + 0.9985139966011047, + 0.9989125728607178 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.7777777777777778, + "NEGATIVE": 0.2222222222222222 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7777777777777778 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986080527305603, + 0.9988961219787598, + 0.9972487092018127, + 0.9985396862030029, + 0.9989063739776611, + 0.9989249110221863, + 0.99869304895401, + 0.9989124536514282, + 0.9989282488822937, + 0.9988740086555481 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 27, + "final_proportion": 0.9310344827586207, + "final_counts": { + "POSITIVE": 27, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9310344827586207, + "NEGATIVE": 0.06896551724137931 + } + } }, { "season_code": "202301", @@ -121694,7 +267884,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -121731,7 +267949,7 @@ "10:30", "11:20", "KGL 116 - Kline Geology Laboratory 116", - "https:\/\/map.yale.edu\/?id=1910#!m\/559996" + "https://map.yale.edu/?id=1910#!m/559996" ] ], "Thursday": [ @@ -121739,7 +267957,7 @@ "10:30", "11:20", "KGL 116 - Kline Geology Laboratory 116", - "https:\/\/map.yale.edu\/?id=1910#!m\/559996" + "https://map.yale.edu/?id=1910#!m/559996" ] ] }, @@ -121751,10 +267969,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84009\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84009/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -121792,7 +268038,7 @@ "13:00", "14:15", "KGL 226 - Kline Geology Laboratory 226", - "https:\/\/map.yale.edu\/?id=1910#!m\/559996" + "https://map.yale.edu/?id=1910#!m/559996" ] ], "Thursday": [ @@ -121800,7 +268046,7 @@ "13:00", "14:15", "KGL 226 - Kline Geology Laboratory 226", - "https:\/\/map.yale.edu\/?id=1910#!m\/559996" + "https://map.yale.edu/?id=1910#!m/559996" ] ] }, @@ -121812,10 +268058,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85971\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85971/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -121852,7 +268126,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -121889,7 +268191,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -121929,10 +268259,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87322\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87322/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -121981,10 +268339,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85113\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85113/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -122021,7 +268407,7 @@ "16:00", "17:30", "KGL 226 - Kline Geology Laboratory 226", - "https:\/\/map.yale.edu\/?id=1910#!m\/559996" + "https://map.yale.edu/?id=1910#!m/559996" ] ] }, @@ -122033,10 +268419,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85947\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85947/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -122076,10 +268490,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87101\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87101/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -122117,7 +268559,7 @@ "14:30", "15:45", "KGL 116 - Kline Geology Laboratory 116", - "https:\/\/map.yale.edu\/?id=1910#!m\/559996" + "https://map.yale.edu/?id=1910#!m/559996" ] ], "Thursday": [ @@ -122125,7 +268567,7 @@ "14:30", "15:45", "KGL 116 - Kline Geology Laboratory 116", - "https:\/\/map.yale.edu\/?id=1910#!m\/559996" + "https://map.yale.edu/?id=1910#!m/559996" ] ] }, @@ -122137,10 +268579,103 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86291\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86291/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985729455947876, + 0.9974251985549927, + 0.9878742098808289 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9905257225036621, + 0.9988425970077515, + 0.9900851249694824, + 0.9967554211616516 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987687468528748, + 0.9984772801399231, + 0.9985503554344177, + 0.995798647403717, + 0.9988945126533508, + 0.9986166954040527 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 0.6923076923076923, + "final_counts": { + "POSITIVE": 9, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.6923076923076923, + "NEGATIVE": 0.3076923076923077 + } + } }, { "season_code": "202301", @@ -122174,10 +268709,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84014\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84014/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -122220,7 +268783,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -122257,7 +268848,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -122294,7 +268913,7 @@ "9:00", "10:15", "WLH 007 - William L. Harkness Hall 007", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -122302,7 +268921,7 @@ "9:00", "10:15", "WLH 007 - William L. Harkness Hall 007", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -122319,10 +268938,111 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84019\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84019/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9969674944877625, + 0.9987449645996094, + 0.9989184141159058, + 0.9988755583763123, + 0.9988994598388672 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983919262886047, + 0.9988235831260681, + 0.9988922476768494, + 0.9989297986030579, + 0.9957370758056641, + 0.9988378882408142 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988523721694946, + 0.9988585710525513, + 0.9989376664161682, + 0.997117280960083, + 0.9989266991615295, + 0.9989237189292908, + 0.9989062547683716 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 18 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -122355,7 +269075,7 @@ "14:30", "15:20", "WLH 004 - William L. Harkness Hall 004", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -122374,7 +269094,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -122407,7 +269155,7 @@ "15:30", "16:20", "WLH 115 - William L. Harkness Hall 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -122426,7 +269174,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -122459,7 +269235,7 @@ "16:00", "16:50", "WLH 004 - William L. Harkness Hall 004", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -122478,7 +269254,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -122517,7 +269321,7 @@ "11:35", "12:50", "WLH 119 - William L. Harkness Hall 119", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -122525,7 +269329,7 @@ "11:35", "12:50", "WLH 119 - William L. Harkness Hall 119", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -122534,7 +269338,7 @@ "Hu" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC History: United States", "YC History: Cultural History", @@ -122550,10 +269354,195 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84120\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84120/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988976716995239, + 0.9981581568717957, + 0.9988256096839905, + 0.998914361000061, + 0.9988784193992615, + 0.9988855719566345, + 0.9988792538642883, + 0.9988859295845032, + 0.9988511800765991, + 0.9988211989402771, + 0.9818598628044128, + 0.9986016154289246, + 0.9989354014396667, + 0.9988081455230713, + 0.9987228512763977, + 0.9985349178314209, + 0.9987442493438721, + 0.9987358450889587 + ], + "sentiment_counts": { + "POSITIVE": 18, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9976886510848999, + 0.999294638633728, + 0.9989166259765625, + 0.9830789566040039, + 0.9989305138587952, + 0.998824417591095, + 0.9987088441848755, + 0.9988985061645508, + 0.9995061159133911, + 0.9976128339767456, + 0.9986706972122192, + 0.9961349964141846, + 0.9979481101036072, + 0.9986960291862488, + 0.9988349080085754, + 0.9995013475418091, + 0.9995057582855225, + 0.9989029169082642, + 0.9983946681022644 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 6 + }, + "sentiment_distribution": { + "POSITIVE": 0.6842105263157895, + "NEGATIVE": 0.3157894736842105 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6842105263157895 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989209175109863, + 0.9924600720405579, + 0.9964550733566284, + 0.9989292025566101, + 0.9989263415336609, + 0.9988822340965271, + 0.9989282488822937, + 0.9988425970077515, + 0.9989334940910339, + 0.9994993209838867, + 0.9986735582351685, + 0.9988254904747009, + 0.9992857575416565, + 0.9973172545433044, + 0.9988986253738403, + 0.9987059831619263, + 0.9989305138587952, + 0.9987673759460449, + 0.9980136156082153, + 0.9989374279975891, + 0.9994974136352539, + 0.9984540939331055 + ], + "sentiment_counts": { + "POSITIVE": 18, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.8181818181818182, + "NEGATIVE": 0.18181818181818182 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8181818181818182 + ] + }, + "final_label": "POSITIVE", + "final_count": 49, + "final_proportion": 0.8305084745762712, + "final_counts": { + "POSITIVE": 49, + "NEGATIVE": 10 + }, + "final_distribution": { + "POSITIVE": 0.8305084745762712, + "NEGATIVE": 0.1694915254237288 + } + } }, { "season_code": "202301", @@ -122586,7 +269575,7 @@ "10:30", "11:20", "LC 210 - Linsly-Chittenden Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -122605,7 +269594,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -122638,7 +269655,7 @@ "11:35", "12:25", "LC 212 - Linsly-Chittenden Hall 212", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -122657,7 +269674,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -122698,7 +269743,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -122737,7 +269810,7 @@ "16:00", "17:15", "WTS A30 - Watson Center 60 Sachem Street A30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -122745,7 +269818,7 @@ "16:00", "17:15", "WTS A30 - Watson Center 60 Sachem Street A30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -122759,10 +269832,133 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84961\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84961/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988954067230225, + 0.9989269375801086, + 0.997858464717865, + 0.9989088773727417, + 0.9988744854927063, + 0.9988141059875488, + 0.9989349246025085, + 0.9987757802009583 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988096952438354, + 0.9989193677902222, + 0.9957420229911804, + 0.9985496401786804, + 0.9989087581634521, + 0.9989333748817444, + 0.9989045858383179, + 0.9984965324401855, + 0.9988749623298645, + 0.9988137483596802 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9976966977119446, + 0.998934805393219, + 0.9988683462142944, + 0.9967030882835388, + 0.9989286065101624, + 0.9989368319511414, + 0.9989171028137207, + 0.9987916350364685, + 0.9989103078842163, + 0.9987819790840149 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 27, + "final_proportion": 0.9642857142857143, + "final_counts": { + "POSITIVE": 27, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9642857142857143, + "NEGATIVE": 0.03571428571428571 + } + } }, { "season_code": "202301", @@ -122801,7 +269997,7 @@ "13:30", "15:20", "LC 209 - Linsly-Chittenden Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -122817,10 +270013,91 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85441\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85441/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981787204742432, + 0.9988449811935425 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988112449645996, + 0.9989196062088013 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9995088577270508, + 0.9986069798469543, + 0.9985492825508118 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 0.8571428571428571, + "final_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + } + } }, { "season_code": "202301", @@ -122864,7 +270141,7 @@ "10:30", "11:20", "WLH 113 - William L. Harkness Hall 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -122872,7 +270149,7 @@ "10:30", "11:20", "WLH 113 - William L. Harkness Hall 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -122886,10 +270163,155 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84819\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84819/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998536229133606, + 0.998810887336731, + 0.9985824823379517, + 0.9988592863082886, + 0.9959073066711426, + 0.99871826171875, + 0.9989239573478699, + 0.9989050626754761, + 0.9988049268722534, + 0.9962486624717712, + 0.9900902509689331, + 0.9985747337341309, + 0.9988892674446106, + 0.9986215829849243 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9285714285714286, + "NEGATIVE": 0.07142857142857142 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9285714285714286 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988436698913574, + 0.9989302754402161, + 0.9989068508148193, + 0.9980466365814209, + 0.9963915944099426, + 0.9974145889282227, + 0.9988678693771362, + 0.9989114999771118, + 0.999232292175293, + 0.9986825585365295, + 0.9987850785255432, + 0.9988842606544495, + 0.9989342093467712 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9230769230769231, + "NEGATIVE": 0.07692307692307693 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9230769230769231 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986013770103455, + 0.9988812804222107, + 0.9988468885421753, + 0.9989006519317627, + 0.9988101720809937, + 0.9989246726036072, + 0.9987888932228088, + 0.9985087513923645, + 0.9982649683952332, + 0.9905369877815247, + 0.9989036321640015, + 0.9989244341850281 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9166666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 36, + "final_proportion": 0.9230769230769231, + "final_counts": { + "POSITIVE": 36, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.9230769230769231, + "NEGATIVE": 0.07692307692307693 + } + } }, { "season_code": "202301", @@ -122924,7 +270346,7 @@ "17:00", "17:50", "HQ C07 - Humanities Quadrangle C07", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -122941,7 +270363,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -122976,7 +270426,7 @@ "10:30", "11:20", "HQ C07 - Humanities Quadrangle C07", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -122993,7 +270443,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -123032,7 +270510,7 @@ "9:25", "11:15", "HQ C64 - Humanities Quadrangle C64", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -123041,7 +270519,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -123049,15 +270527,132 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84023\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84023/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "", - "description": "This course is an interdisciplinary seminar exploring the historical, political, social, cultural, and economic factors contributing to current experiences and responses to human trafficking. The focus is on the public health response and human rights framework with special consideration given to displaced and im\/migrant communities in the Americas and along the US\/MX border. The primary objective is to provide a comprehensive understanding of domestic and global human trafficking from a critical public health perspective and to engage students in thinking through intersecting policies, systems of oppression, and interventions.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989288449287415, + 0.9987844824790955, + 0.9989166259765625, + 0.9989097118377686, + 0.99863201379776, + 0.998916506767273, + 0.9987566471099854, + 0.9988452196121216 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998921275138855, + 0.9989266991615295, + 0.9986843466758728, + 0.9988682270050049, + 0.9988901019096375, + 0.9964128136634827, + 0.9989172220230103 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989333748817444, + 0.997117280960083, + 0.9989145994186401, + 0.998802900314331, + 0.9988590478897095, + 0.9989140033721924, + 0.9988597631454468, + 0.99883633852005, + 0.9988880753517151, + 0.9989270567893982, + 0.9989181756973267 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 26, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 26 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } + }, + { + "season_code": "202301", + "requirements": "", + "description": "This course is an interdisciplinary seminar exploring the historical, political, social, cultural, and economic factors contributing to current experiences and responses to human trafficking. The focus is on the public health response and human rights framework with special consideration given to displaced and im/migrant communities in the Americas and along the US/MX border. The primary objective is to provide a comprehensive understanding of domestic and global human trafficking from a critical public health perspective and to engage students in thinking through intersecting policies, systems of oppression, and interventions.", "short_title": "The Intersection of Rights an...", "title": "The Intersection of Rights and Risks: A Public Health Response to Human Trafficking", "school": "YC", @@ -123089,7 +270684,7 @@ "13:30", "15:20", "HQ C01 - Humanities Quadrangle C01", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -123106,10 +270701,121 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85940\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/85940/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989357590675354, + 0.998918890953064, + 0.9989261031150818, + 0.9988967180252075, + 0.9988827109336853, + 0.9988738894462585, + 0.998862624168396, + 0.9982947707176208 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989148378372192, + 0.9989233613014221, + 0.9989123344421387, + 0.99888676404953, + 0.9989194869995117, + 0.9989327788352966, + 0.9989354014396667, + 0.9987659454345703 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.99892657995224, + 0.9989004135131836, + 0.9989131689071655, + 0.9988440275192261, + 0.9988101720809937, + 0.9987433552742004, + 0.9989228844642639 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 23, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 23 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -123148,7 +270854,7 @@ "9:25", "11:15", "WLH 006 - William L. Harkness Hall 006", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -123164,10 +270870,131 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85296\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85296/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988999366760254, + 0.9989321827888489, + 0.9988307356834412, + 0.998918890953064, + 0.9988825917243958, + 0.9987898468971252, + 0.9988561868667603, + 0.9988757967948914, + 0.9986746311187744 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989103078842163, + 0.9989330172538757, + 0.9987560510635376, + 0.9989126920700073, + 0.9989287257194519, + 0.9988481998443604, + 0.9994658827781677, + 0.9989271759986877, + 0.9989063739776611 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989389777183533, + 0.9988960027694702, + 0.9987475872039795, + 0.998925507068634, + 0.9989000558853149, + 0.9969366788864136, + 0.9987292885780334, + 0.998910665512085, + 0.9982553124427795 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 26, + "final_proportion": 0.9629629629629629, + "final_counts": { + "POSITIVE": 26, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9629629629629629, + "NEGATIVE": 0.037037037037037035 + } + } }, { "season_code": "202301", @@ -123207,7 +271034,7 @@ "11:35", "12:50", "WLH 201 - William L. Harkness Hall 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -123215,7 +271042,7 @@ "11:35", "12:50", "WLH 201 - William L. Harkness Hall 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -123225,7 +271052,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -123233,10 +271060,287 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83362\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83362/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9944273233413696, + 0.9988986253738403, + 0.9989239573478699, + 0.998918890953064, + 0.9987027645111084, + 0.9981843829154968, + 0.998914361000061, + 0.9987805485725403, + 0.9987607002258301, + 0.9988158941268921, + 0.9989057779312134, + 0.998930037021637, + 0.9988939166069031, + 0.998790442943573, + 0.9987103939056396, + 0.9910886287689209, + 0.9987867474555969, + 0.9995083808898926, + 0.998880922794342, + 0.9995052814483643, + 0.9988871216773987, + 0.9986042380332947, + 0.9989161491394043, + 0.998835027217865, + 0.9988269209861755, + 0.9988269209861755, + 0.9986566305160522, + 0.9989162683486938, + 0.9985319375991821, + 0.9986377358436584 + ], + "sentiment_counts": { + "POSITIVE": 28, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.9333333333333333, + "NEGATIVE": 0.06666666666666667 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9333333333333333 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986831545829773, + 0.9986336827278137, + 0.9988625049591064, + 0.9989078044891357, + 0.9986060261726379, + 0.9988481998443604, + 0.9986518025398254, + 0.9994981288909912, + 0.9986425042152405, + 0.9995063543319702, + 0.9985685348510742, + 0.9988466501235962, + 0.9989294409751892, + 0.9938819408416748, + 0.9987922310829163, + 0.9988736510276794, + 0.9968108534812927, + 0.9988744854927063, + 0.999502420425415, + 0.9988064765930176, + 0.9988455772399902, + 0.9994230270385742, + 0.9811413884162903, + 0.9995037317276001, + 0.9988105297088623, + 0.9934137463569641, + 0.9987344145774841, + 0.937844455242157, + 0.9987655878067017, + 0.9974685907363892, + 0.9469312429428101, + 0.9989070892333984, + 0.9988446235656738, + 0.9988981485366821, + 0.999242901802063, + 0.9976551532745361 + ], + "sentiment_counts": { + "POSITIVE": 27, + "NEGATIVE": 9 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981409311294556, + 0.9966179728507996, + 0.9983184337615967, + 0.9982252717018127, + 0.9949954748153687, + 0.9988924860954285, + 0.9987180233001709, + 0.9975698590278625, + 0.9961349964141846, + 0.9983940720558167, + 0.9983274340629578, + 0.9968445301055908, + 0.998736560344696, + 0.9988449811935425, + 0.9989351630210876, + 0.998920202255249, + 0.9989142417907715, + 0.998741090297699, + 0.9987003803253174, + 0.9985774755477905, + 0.7381450533866882, + 0.9989122152328491, + 0.9989204406738281, + 0.9980016350746155, + 0.998401939868927, + 0.999508261680603, + 0.9989388585090637, + 0.9989350438117981, + 0.9994799494743347, + 0.9988722205162048, + 0.9925923943519592, + 0.9953004121780396, + 0.9989240765571594, + 0.9987947940826416, + 0.9989268183708191, + 0.9988850951194763, + 0.9988704323768616, + 0.9984244108200073, + 0.9988484382629395 + ], + "sentiment_counts": { + "POSITIVE": 32, + "NEGATIVE": 7 + }, + "sentiment_distribution": { + "POSITIVE": 0.8205128205128205, + "NEGATIVE": 0.1794871794871795 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8205128205128205 + ] + }, + "final_label": "POSITIVE", + "final_count": 87, + "final_proportion": 0.8285714285714286, + "final_counts": { + "POSITIVE": 87, + "NEGATIVE": 18 + }, + "final_distribution": { + "POSITIVE": 0.8285714285714286, + "NEGATIVE": 0.17142857142857143 + } + } }, { "season_code": "202301", @@ -123270,7 +271374,7 @@ "9:25", "10:15", "WLH 204 - William L. Harkness Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -123288,7 +271392,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -123322,7 +271454,7 @@ "11:35", "12:25", "HQ C03 - Humanities Quadrangle C03", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -123340,7 +271472,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -123374,7 +271534,7 @@ "11:35", "12:25", "HQ 225 - Humanities Quadrangle 225", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -123392,7 +271552,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -123426,7 +271614,7 @@ "13:30", "14:20", "HQ 225 - Humanities Quadrangle 225", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -123444,7 +271632,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -123478,7 +271694,7 @@ "15:30", "16:20", "HQ C03 - Humanities Quadrangle C03", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -123496,7 +271712,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -123530,7 +271774,7 @@ "16:30", "17:20", "HQ C03 - Humanities Quadrangle C03", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -123548,7 +271792,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -123589,7 +271861,7 @@ "13:00", "14:15", "WLH 113 - William L. Harkness Hall 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -123597,7 +271869,7 @@ "13:00", "14:15", "WLH 113 - William L. Harkness Hall 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -123611,10 +271883,143 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86173\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/86173/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987286925315857, + 0.9987770915031433, + 0.9988585710525513, + 0.9987416863441467, + 0.9989053010940552, + 0.9986703395843506, + 0.9985929131507874, + 0.9988076686859131, + 0.9987892508506775, + 0.9989145994186401, + 0.997857391834259 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989179372787476, + 0.9988939166069031, + 0.9982935786247253, + 0.9988971948623657, + 0.9989332556724548, + 0.9989209175109863, + 0.9988062381744385, + 0.9750773310661316, + 0.9988754391670227, + 0.9989145994186401, + 0.9987932443618774, + 0.9983556866645813 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9166666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988995790481567, + 0.9981922507286072, + 0.9989373087882996, + 0.9988808035850525, + 0.9989155530929565, + 0.998898983001709, + 0.9988975524902344, + 0.9989354014396667, + 0.9902792572975159, + 0.999200165271759 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "final_label": "POSITIVE", + "final_count": 31, + "final_proportion": 0.9393939393939394, + "final_counts": { + "POSITIVE": 31, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9393939393939394, + "NEGATIVE": 0.06060606060606061 + } + } }, { "season_code": "202301", @@ -123653,7 +272058,7 @@ "13:30", "15:20", "WLH 210 - William L. Harkness Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -123662,7 +272067,7 @@ "Hu" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -123670,10 +272075,89 @@ "classnotes": "Please send an email describing your interest in this course to hector.peralta@yale.edu.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83376\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83376/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988231062889099, + 0.9988419413566589 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987760186195374, + 0.9986621141433716, + 0.9988853335380554 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989235997200012, + 0.998609185218811 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 7 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -123712,7 +272196,7 @@ "14:30", "15:20", "WLH 201 - William L. Harkness Hall 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -123720,7 +272204,7 @@ "14:30", "15:20", "WLH 201 - William L. Harkness Hall 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -123743,10 +272227,353 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84131\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84131/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988821148872375, + 0.9988042116165161, + 0.9985100626945496, + 0.9987772107124329, + 0.9985538125038147, + 0.9988449811935425, + 0.9988535642623901, + 0.998914361000061, + 0.9988906979560852, + 0.9987525939941406, + 0.998920202255249, + 0.9986106157302856, + 0.9986710548400879, + 0.9989033937454224, + 0.9988641738891602, + 0.9987832903862, + 0.9988817572593689, + 0.9987995624542236, + 0.9989302754402161, + 0.9988273978233337, + 0.9987772107124329, + 0.9989225268363953, + 0.9982748031616211, + 0.9986695051193237, + 0.9986887574195862, + 0.9989207983016968, + 0.9979619979858398, + 0.9988006353378296, + 0.9948878884315491, + 0.9986237287521362, + 0.9985758066177368, + 0.9988853335380554, + 0.9989272952079773, + 0.9988340735435486, + 0.998928964138031, + 0.9986149072647095, + 0.9987910389900208, + 0.9987691044807434, + 0.998675525188446, + 0.998889148235321, + 0.9989140033721924, + 0.9985870122909546, + 0.9989171028137207, + 0.9912418127059937 + ], + "sentiment_counts": { + "POSITIVE": 44, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9986746311187744, + 0.9983491897583008, + 0.9976388216018677, + 0.9988123178482056, + 0.9988798499107361, + 0.9982489347457886, + 0.998677670955658, + 0.9989209175109863, + 0.9971734285354614, + 0.9988725781440735, + 0.9988899827003479, + 0.9983364939689636, + 0.9988560676574707, + 0.9988095760345459, + 0.9988422989845276, + 0.9988686442375183, + 0.9918957352638245, + 0.998039186000824, + 0.9988069534301758, + 0.9985533356666565, + 0.9988621473312378, + 0.9989292025566101, + 0.9989054203033447, + 0.9988310933113098, + 0.9982636570930481, + 0.9973795413970947, + 0.9984666109085083, + 0.9921112060546875, + 0.9984812140464783, + 0.9984152317047119, + 0.9987910389900208, + 0.9988184571266174, + 0.9983879327774048, + 0.9987698197364807, + 0.9950554370880127, + 0.9989379048347473, + 0.9987527132034302, + 0.998809814453125, + 0.9980660080909729, + 0.9982581734657288, + 0.998770534992218, + 0.995491087436676, + 0.9950394034385681, + 0.9994792342185974 + ], + "sentiment_counts": { + "POSITIVE": 40, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9090909090909091 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988759160041809, + 0.9988805651664734, + 0.9957616925239563, + 0.9988521337509155, + 0.9988981485366821, + 0.9986335635185242, + 0.9988784193992615, + 0.9989012479782104, + 0.998579740524292, + 0.998849630355835, + 0.9988645315170288, + 0.9989318251609802, + 0.9988646507263184, + 0.9989019632339478, + 0.9987772107124329, + 0.9984422326087952, + 0.9988294243812561, + 0.9988640546798706, + 0.996837854385376, + 0.9989098310470581, + 0.997117280960083, + 0.998920202255249, + 0.998837411403656, + 0.9988502264022827, + 0.9988784193992615, + 0.9988237023353577, + 0.9987549781799316, + 0.9988892674446106, + 0.998897910118103, + 0.998737633228302, + 0.9989272952079773, + 0.9989069700241089, + 0.997117280960083, + 0.9989228844642639, + 0.9978317618370056, + 0.9987198114395142, + 0.9980168342590332, + 0.9987407326698303, + 0.9989079236984253, + 0.9988685846328735, + 0.9941771030426025, + 0.9989144802093506, + 0.998900294303894, + 0.9985544085502625, + 0.9988909363746643, + 0.9989157915115356, + 0.9988598823547363, + 0.9913177490234375, + 0.9988487958908081, + 0.998727023601532 + ], + "sentiment_counts": { + "POSITIVE": 50, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 134, + "final_proportion": 0.9710144927536232, + "final_counts": { + "POSITIVE": 134, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.9710144927536232, + "NEGATIVE": 0.028985507246376812 + } + } }, { "season_code": "202301", @@ -123779,7 +272606,7 @@ "15:30", "16:20", "WLH 001 - William L. Harkness Hall 001", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -123796,7 +272623,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -123829,7 +272684,7 @@ "15:30", "16:20", "WALL81 401 - 81 Wall Street 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -123846,7 +272701,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -123879,7 +272762,7 @@ "10:30", "11:20", "HQ C64 - Humanities Quadrangle C64", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -123896,7 +272779,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -123929,7 +272840,7 @@ "11:35", "12:25", "HQ 401 - Humanities Quadrangle 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -123946,7 +272857,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -123979,7 +272918,7 @@ "20:00", "20:50", "HQ C07 - Humanities Quadrangle C07", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -123996,7 +272935,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -124029,7 +272996,7 @@ "16:30", "17:20", "HQ 213 - Humanities Quadrangle 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -124046,7 +273013,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -124083,7 +273078,7 @@ "13:30", "15:20", "LORIA 259 - Loria Center 259", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -124097,10 +273092,89 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86227\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86227/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.998689591884613, + 0.9995118379592896 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989386200904846, + 0.9995077848434448 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989314675331116, + 0.9995043277740479 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "final_label": "neutral", + "final_count": 0.5, + "final_proportion": 0.5, + "final_counts": { + "POSITIVE": 3, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + } + } }, { "season_code": "202301", @@ -124139,7 +273213,7 @@ "13:00", "14:15", "HQ 133 - Humanities Quadrangle 133", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -124147,7 +273221,7 @@ "13:00", "14:15", "HQ 133 - Humanities Quadrangle 133", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -124161,10 +273235,121 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84909\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84909/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987851977348328, + 0.998835027217865, + 0.998849630355835, + 0.9987677335739136, + 0.9988548755645752, + 0.9987525939941406, + 0.9988691210746765 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988992214202881, + 0.998865008354187, + 0.9985793828964233, + 0.9982191920280457, + 0.9995031356811523, + 0.9988693594932556, + 0.9900122880935669, + 0.998909592628479 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988564252853394, + 0.9988006353378296, + 0.9989051818847656, + 0.998049259185791, + 0.9989219903945923, + 0.9994945526123047, + 0.9989356398582458 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 0.9090909090909091, + "final_counts": { + "POSITIVE": 20, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + } + } }, { "season_code": "202301", @@ -124207,7 +273392,7 @@ "9:25", "11:15", "HQ 401 - Humanities Quadrangle 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -124227,10 +273412,121 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84206\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84206/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.994451105594635, + 0.99888676404953, + 0.9988627433776855, + 0.9989333748817444, + 0.9987595081329346, + 0.9988391995429993 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.998842716217041, + 0.9989129304885864, + 0.9989238381385803, + 0.9962312579154968, + 0.9969401359558105, + 0.9986774325370789, + 0.9989373087882996, + 0.9936462640762329 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985981583595276, + 0.9980226755142212, + 0.9988202452659607, + 0.9988977909088135, + 0.9971134662628174, + 0.9987371563911438, + 0.9989243149757385, + 0.9989074468612671 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 0.9090909090909091, + "final_counts": { + "POSITIVE": 20, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + } + } }, { "season_code": "202301", @@ -124269,7 +273565,7 @@ "11:35", "12:50", "HQ C07 - Humanities Quadrangle C07", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -124277,7 +273573,7 @@ "11:35", "12:50", "HQ C07 - Humanities Quadrangle C07", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -124286,7 +273582,7 @@ "Hu" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -124294,10 +273590,111 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83381\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83381/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989016056060791, + 0.9987323880195618, + 0.9989314675331116, + 0.9989388585090637, + 0.9988126754760742, + 0.9891110062599182, + 0.9988378882408142 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988805651664734, + 0.9988908171653748, + 0.9989149570465088, + 0.9987832903862, + 0.9987952709197998 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989142417907715, + 0.998839795589447, + 0.9989023208618164, + 0.9981922507286072, + 0.9988651275634766, + 0.9989197254180908 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 18 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -124337,7 +273734,7 @@ "16:00", "17:15", "HQ 225 - Humanities Quadrangle 225", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -124345,7 +273742,7 @@ "16:00", "17:15", "HQ 225 - Humanities Quadrangle 225", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -124354,7 +273751,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -124362,15 +273759,116 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85734\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85734/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "", - "description": "Historiographic narrative of United States history over the past century and critical\/methodological practices of thinking historically and of identifying ways in which our present has been conditioned by historical legacies, both momentous and subtle. Topics include the New Deal, WWII, the arms race, Reaganomics, and 9\/11 in terms of their lasting influence on American conditions in the present.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987499713897705, + 0.9987164735794067, + 0.9988082647323608, + 0.9987187385559082 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984831213951111, + 0.9989250302314758, + 0.9989160299301147, + 0.9987025260925293, + 0.9989237189292908, + 0.998938262462616 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989321827888489, + 0.9989129304885864, + 0.9989251494407654, + 0.998212456703186, + 0.9988704323768616, + 0.9989181756973267, + 0.9989356398582458, + 0.9988330006599426 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 18 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } + }, + { + "season_code": "202301", + "requirements": "", + "description": "Historiographic narrative of United States history over the past century and critical/methodological practices of thinking historically and of identifying ways in which our present has been conditioned by historical legacies, both momentous and subtle. Topics include the New Deal, WWII, the arms race, Reaganomics, and 9/11 in terms of their lasting influence on American conditions in the present.", "short_title": "The History of Right Now", "title": "The History of Right Now", "school": "YC", @@ -124399,7 +273897,7 @@ "Hu" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -124410,7 +273908,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -124447,7 +273973,7 @@ "13:30", "15:20", "RKZ 04 - Rosenkranz Hall 04", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -124463,10 +273989,95 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84028\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84028/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988370537757874, + 0.9989005327224731, + 0.9989271759986877 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985864162445068, + 0.9988800883293152, + 0.9988933205604553 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9912450909614563, + 0.9986938834190369, + 0.9989233613014221 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 8, + "final_proportion": 0.8888888888888888, + "final_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + } + } }, { "season_code": "202301", @@ -124503,7 +274114,7 @@ "15:30", "17:20", "HQ C01 - Humanities Quadrangle C01", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -124519,10 +274130,113 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85168\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85168/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988570213317871, + 0.9988306164741516, + 0.9988335967063904, + 0.9987595081329346, + 0.9989081621170044 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989330172538757, + 0.9988765120506287, + 0.9989008903503418, + 0.9988069534301758, + 0.9988971948623657, + 0.9989301562309265, + 0.9989290833473206 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988969564437866, + 0.998918890953064, + 0.9989365935325623, + 0.9988150596618652, + 0.9950119256973267, + 0.998923122882843, + 0.9989246726036072 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 19 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -124562,7 +274276,7 @@ "15:30", "17:20", "WLH 208 - William L. Harkness Hall 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -124576,10 +274290,123 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84398\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84398/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987761378288269, + 0.9988526105880737, + 0.9988616704940796, + 0.9988709092140198, + 0.9988692402839661, + 0.998865008354187 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982339143753052, + 0.999426007270813, + 0.9988495111465454, + 0.9988961219787598, + 0.9988528490066528, + 0.9995020627975464, + 0.9989275336265564 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.7142857142857143, + "NEGATIVE": 0.2857142857142857 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7142857142857143 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987536668777466, + 0.9988459348678589, + 0.9988019466400146, + 0.998782217502594, + 0.9988957643508911, + 0.9988753199577332, + 0.9995001554489136, + 0.9989253878593445, + 0.9989050626754761, + 0.9986708164215088 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 0.8695652173913043, + "final_counts": { + "POSITIVE": 20, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.8695652173913043, + "NEGATIVE": 0.13043478260869565 + } + } }, { "season_code": "202301", @@ -124619,7 +274446,7 @@ "13:30", "15:20", "HQ C03 - Humanities Quadrangle C03", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -124636,10 +274463,113 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84032\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84032/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987165927886963, + 0.9989297986030579, + 0.9989022016525269, + 0.9987567663192749 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989044666290283, + 0.9987654685974121, + 0.9982131719589233, + 0.9987983703613281, + 0.9989168643951416, + 0.9988625049591064 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988883137702942, + 0.9989199638366699, + 0.9995104074478149, + 0.9989161491394043, + 0.9987264275550842, + 0.9988746047019958, + 0.998871386051178, + 0.998908281326294 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 0.9444444444444444, + "final_counts": { + "POSITIVE": 17, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9444444444444444, + "NEGATIVE": 0.05555555555555555 + } + } }, { "season_code": "202301", @@ -124678,7 +274608,7 @@ "11:35", "12:25", "LC 101 - Linsly-Chittenden Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -124686,7 +274616,7 @@ "11:35", "12:25", "LC 101 - Linsly-Chittenden Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -124709,10 +274639,235 @@ "classnotes": "", "final_exam": "Monday, May 8, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84152\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84152/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987562894821167, + 0.9988101720809937, + 0.998812198638916, + 0.9987877011299133, + 0.9989226460456848, + 0.9986705780029297, + 0.992493212223053, + 0.9987874627113342, + 0.9981644749641418, + 0.9986024498939514, + 0.9988968372344971, + 0.9988287091255188, + 0.9988141059875488, + 0.9988805651664734, + 0.9989277720451355, + 0.9989349246025085, + 0.9989283680915833, + 0.9987395405769348, + 0.998838484287262, + 0.998607337474823, + 0.9973012804985046, + 0.998441755771637, + 0.9985637068748474 + ], + "sentiment_counts": { + "POSITIVE": 23, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989344477653503, + 0.9977486729621887, + 0.9988313317298889, + 0.9903234243392944, + 0.9988895058631897, + 0.9988394379615784, + 0.9977655410766602, + 0.9989011287689209, + 0.9977489113807678, + 0.9989079236984253, + 0.967765212059021, + 0.9988524913787842, + 0.9962761402130127, + 0.9992448091506958, + 0.9988967180252075, + 0.9988719820976257, + 0.9988642930984497, + 0.9988962411880493, + 0.9988676309585571, + 0.9988985061645508, + 0.9985074400901794, + 0.998654842376709, + 0.9987982511520386, + 0.9949601888656616, + 0.9984134435653687 + ], + "sentiment_counts": { + "POSITIVE": 23, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.92, + "NEGATIVE": 0.08 + }, + "sentiment_overall": [ + "POSITIVE", + 0.92 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998842716217041, + 0.9988793730735779, + 0.9989176988601685, + 0.9987180233001709, + 0.9984157085418701, + 0.9985045194625854, + 0.9989129304885864, + 0.9987353682518005, + 0.997117280960083, + 0.9989315867424011, + 0.9987334609031677, + 0.9989283680915833, + 0.9988105297088623, + 0.9989203214645386, + 0.9988334774971008, + 0.9987239241600037, + 0.9986592531204224, + 0.9988738894462585, + 0.9994937181472778, + 0.9989111423492432, + 0.9989197254180908, + 0.9982553124427795, + 0.9987375140190125, + 0.9989107847213745, + 0.9989123344421387, + 0.9987045526504517, + 0.9988260865211487, + 0.9966247081756592, + 0.9988939166069031, + 0.9989058971405029, + 0.9988914132118225 + ], + "sentiment_counts": { + "POSITIVE": 30, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.967741935483871, + "NEGATIVE": 0.03225806451612903 + }, + "sentiment_overall": [ + "POSITIVE", + 0.967741935483871 + ] + }, + "final_label": "POSITIVE", + "final_count": 76, + "final_proportion": 0.9620253164556962, + "final_counts": { + "POSITIVE": 76, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.9620253164556962, + "NEGATIVE": 0.0379746835443038 + } + } }, { "season_code": "202301", @@ -124745,7 +274900,7 @@ "16:00", "16:50", "LC 210 - Linsly-Chittenden Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -124762,7 +274917,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -124795,7 +274978,7 @@ "17:00", "17:50", "LC 210 - Linsly-Chittenden Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -124812,7 +274995,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -124845,7 +275056,7 @@ "19:00", "19:50", "LC 213 - Linsly-Chittenden Hall 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -124862,7 +275073,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -124895,7 +275134,7 @@ "10:30", "11:20", "HQ 401 - Humanities Quadrangle 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -124912,7 +275151,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -124951,7 +275218,7 @@ "13:30", "15:20", "HQ C01 - Humanities Quadrangle C01", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -124961,7 +275228,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -124969,10 +275236,103 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85291\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85291/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989148378372192, + 0.9989301562309265, + 0.9988470077514648 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989328980445862, + 0.9989349246025085, + 0.9988600015640259, + 0.9985889792442322, + 0.9986955523490906 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987051486968994, + 0.9989172220230103, + 0.9988988637924194, + 0.9994789958000183, + 0.9984238147735596 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 0.9230769230769231, + "final_counts": { + "POSITIVE": 12, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9230769230769231, + "NEGATIVE": 0.07692307692307693 + } + } }, { "season_code": "202301", @@ -125009,7 +275369,7 @@ "11:35", "12:50", "HQ 401 - Humanities Quadrangle 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -125017,7 +275377,7 @@ "11:35", "12:50", "HQ 401 - Humanities Quadrangle 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -125035,10 +275395,149 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84036\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84036/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987671375274658, + 0.9988206028938293, + 0.9987162351608276, + 0.9987911581993103, + 0.9989383816719055, + 0.9988939166069031, + 0.9988988637924194, + 0.998572587966919, + 0.9986928105354309, + 0.9988440275192261, + 0.9988501071929932, + 0.9985865354537964 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989147186279297, + 0.9989134073257446, + 0.9989266991615295, + 0.998848557472229, + 0.9989025592803955, + 0.998918890953064, + 0.9988895058631897, + 0.9988709092140198, + 0.9964563250541687, + 0.9989168643951416, + 0.9984408020973206 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9090909090909091 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989104270935059, + 0.9989345669746399, + 0.9982553124427795, + 0.9984875917434692, + 0.9989206790924072, + 0.9988781809806824, + 0.998543381690979, + 0.9989080429077148, + 0.9987271428108215, + 0.9989129304885864, + 0.9940868616104126, + 0.9989147186279297, + 0.9987820982933044 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 35, + "final_proportion": 0.9722222222222222, + "final_counts": { + "POSITIVE": 35, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9722222222222222, + "NEGATIVE": 0.027777777777777776 + } + } }, { "season_code": "202301", @@ -125075,7 +275574,7 @@ "13:30", "15:20", "HQ 227 - Humanities Quadrangle 227", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -125091,10 +275590,107 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86228\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86228/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988610744476318, + 0.9989284873008728, + 0.9988921284675598, + 0.9987936019897461, + 0.9986280202865601 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988095760345459, + 0.9989342093467712, + 0.9989250302314758, + 0.9988628625869751, + 0.9969807267189026 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994989633560181, + 0.9988709092140198, + 0.9989351630210876, + 0.9989080429077148, + 0.9989222288131714 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 4 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2, + "POSITIVE": 0.8 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 0.9333333333333333, + "final_counts": { + "POSITIVE": 14, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9333333333333333, + "NEGATIVE": 0.06666666666666667 + } + } }, { "season_code": "202301", @@ -125131,7 +275727,7 @@ "13:30", "15:20", "HQ 227 - Humanities Quadrangle 227", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -125148,10 +275744,115 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85927\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85927/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989327788352966, + 0.9988110065460205, + 0.9979968667030334, + 0.9987049102783203, + 0.9984696507453918, + 0.9987236857414246 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9973837733268738, + 0.9988538026809692, + 0.9988588094711304, + 0.9995118379592896, + 0.9984103441238403, + 0.9994565844535828, + 0.999503493309021 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.42857142857142855, + "NEGATIVE": 0.5714285714285714 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.5714285714285714 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989141225814819, + 0.9989125728607178, + 0.9995126724243164, + 0.9995125532150269, + 0.9995015859603882, + 0.9995001554489136 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.3333333333333333, + "NEGATIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.6666666666666666 + ] + }, + "final_label": "neutral", + "final_count": 10, + "final_proportion": 0.5, + "final_counts": { + "POSITIVE": 10, + "NEGATIVE": 9 + }, + "final_distribution": { + "POSITIVE": 0.5263157894736842, + "NEGATIVE": 0.47368421052631576 + } + } }, { "season_code": "202301", @@ -125199,7 +275900,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -125242,7 +275971,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -125293,10 +276050,125 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86006\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86006/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988412261009216, + 0.9986773133277893, + 0.9989186525344849, + 0.998857855796814, + 0.9989286065101624, + 0.9989299178123474, + 0.9986966252326965 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989306330680847, + 0.9989257454872131, + 0.9987809062004089, + 0.99891197681427, + 0.9988962411880493, + 0.9989330172538757, + 0.9988952875137329, + 0.9989163875579834 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988571405410767, + 0.9989237189292908, + 0.9989099502563477, + 0.998849630355835, + 0.9989227652549744, + 0.9981574416160583, + 0.9989109039306641, + 0.9989257454872131, + 0.9988722205162048, + 0.9989344477653503 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 25, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 25 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -125333,7 +276205,7 @@ "14:30", "15:45", "BASSLB L70 - Bass Library L70", - "https:\/\/map.yale.edu\/?id=1910#!m\/564574" + "https://map.yale.edu/?id=1910#!m/564574" ] ], "Thursday": [ @@ -125341,7 +276213,7 @@ "14:30", "15:45", "BASSLB L70 - Bass Library L70", - "https:\/\/map.yale.edu\/?id=1910#!m\/564574" + "https://map.yale.edu/?id=1910#!m/564574" ] ] }, @@ -125357,10 +276229,111 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86007\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86007/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981174468994141, + 0.9988769888877869, + 0.9987847208976746, + 0.9989342093467712, + 0.9988676309585571, + 0.998651921749115 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988250136375427, + 0.998874843120575, + 0.9988424181938171, + 0.9989239573478699, + 0.9989054203033447, + 0.9988716244697571 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989209175109863, + 0.9941776990890503, + 0.9967118501663208, + 0.9989031553268433, + 0.9989233613014221, + 0.9989350438117981 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 18 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -125400,7 +276373,7 @@ "13:30", "15:20", "WTS B39 - Watson Center 60 Sachem Street B39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -125416,10 +276389,117 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84500\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84500/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998842179775238, + 0.998589813709259, + 0.9985631108283997, + 0.9984286427497864, + 0.9988778233528137, + 0.9980494976043701 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989332556724548, + 0.9989296793937683, + 0.9989269375801086, + 0.9987540245056152, + 0.997100293636322, + 0.998879611492157 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989259839057922, + 0.9989350438117981, + 0.9986311793327332, + 0.9988939166069031, + 0.9988688826560974, + 0.9988760352134705, + 0.9957029223442078, + 0.9989074468612671, + 0.9988679885864258 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 21, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 21 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -125457,7 +276537,7 @@ "15:30", "17:20", "WLH 208 - William L. Harkness Hall 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -125474,15 +276554,162 @@ "classnotes": "Instructor permission required. Preferred proficiency in Spanish.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87109\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87109/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "", - "description": "This course examines a series of transnational literary texts and films that illuminate how the displaced\u2014migrants, exiles, and refugees\u2014 remake home away from their native countries. The twentieth and twenty-first centuries have produced massive displacements due to wars, genocides, racial, ethnic and religious conflicts, economic and climate change, among other factors. Our course focuses on several texts that explore questions of home, nation, and self in the context of specific historical events such as the Holocaust, civil rights movements in the U.S., internment, the Indian partition, African decolonization, and Middle Eastern\/Arab ethno-religious conflicts and wars. We examine these events alongside the shifting legal and political policies and categories related to asylum, humanitarian parole, refugee, and illegal alien status. Exploring themes such as nostalgia, longing, trauma, and memory, we look at the possibilities and limitations of creating, contesting, and imagining home in the diaspora. Our objective is to debate and develop the ethical, political, geographic, and imaginative articulations of home in an era of mass displacements and geo-political crises. We examine how notions of home are imagined alongside and against categories of race, gender, and sexuality.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988917708396912, + 0.9988516569137573, + 0.9988903403282166, + 0.9987475872039795, + 0.9988583326339722, + 0.9988800883293152, + 0.9989253878593445, + 0.9989075660705566, + 0.9988868832588196, + 0.998927652835846 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987742304801941, + 0.9986374974250793, + 0.9989356398582458, + 0.9988753199577332, + 0.998227059841156, + 0.998900294303894, + 0.9972379207611084, + 0.9989120960235596, + 0.998648464679718, + 0.9988059997558594, + 0.9985864162445068, + 0.9988881945610046, + 0.9842084050178528, + 0.9985851049423218, + 0.9989078044891357 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986079335212708, + 0.9988734126091003, + 0.9988981485366821, + 0.9989333748817444, + 0.9989216327667236, + 0.9983287453651428, + 0.9986995458602905, + 0.9988420605659485, + 0.9988583326339722, + 0.9962838292121887, + 0.9991474151611328, + 0.9980564713478088, + 0.9989008903503418, + 0.9989357590675354, + 0.9988182187080383 + ], + "sentiment_counts": { + "POSITIVE": 14, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9333333333333333, + "NEGATIVE": 0.06666666666666667 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9333333333333333 + ] + }, + "final_label": "POSITIVE", + "final_count": 36, + "final_proportion": 0.9, + "final_counts": { + "POSITIVE": 36, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + } + } + }, + { + "season_code": "202301", + "requirements": "", + "description": "This course examines a series of transnational literary texts and films that illuminate how the displaced\u2014migrants, exiles, and refugees\u2014 remake home away from their native countries. The twentieth and twenty-first centuries have produced massive displacements due to wars, genocides, racial, ethnic and religious conflicts, economic and climate change, among other factors. Our course focuses on several texts that explore questions of home, nation, and self in the context of specific historical events such as the Holocaust, civil rights movements in the U.S., internment, the Indian partition, African decolonization, and Middle Eastern/Arab ethno-religious conflicts and wars. We examine these events alongside the shifting legal and political policies and categories related to asylum, humanitarian parole, refugee, and illegal alien status. Exploring themes such as nostalgia, longing, trauma, and memory, we look at the possibilities and limitations of creating, contesting, and imagining home in the diaspora. Our objective is to debate and develop the ethical, political, geographic, and imaginative articulations of home in an era of mass displacements and geo-political crises. We examine how notions of home are imagined alongside and against categories of race, gender, and sexuality.", "short_title": "The Displaced: Migrant and Re...", "title": "The Displaced: Migrant and Refugee Narratives of the 20th and 21st Centuries", "school": "YC", @@ -125520,7 +276747,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -125559,7 +276814,7 @@ "15:30", "17:20", "SML 207 - Sterling Memorial Library 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/563698" + "https://map.yale.edu/?id=1910#!m/563698" ] ] }, @@ -125573,10 +276828,109 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83789\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83789/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989134073257446, + 0.9988141059875488, + 0.9989134073257446, + 0.9987566471099854, + 0.9966346621513367 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9898389577865601, + 0.9988338351249695, + 0.9989342093467712, + 0.9988613128662109, + 0.99883633852005, + 0.9988731741905212 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998785674571991, + 0.9989246726036072, + 0.9989206790924072, + 0.9989014863967896, + 0.9988817572593689, + 0.9989301562309265 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 17 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -125619,7 +276973,7 @@ "13:30", "15:20", "WLH 203 - William L. Harkness Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -125637,15 +276991,108 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85108\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85108/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "", - "description": "For students who wish to pursue a close study in the subjects of ethnicity, race, and\/or migration, not otherwise covered by departmental offerings. May be used for research, a special project, or a substantial research paper under faculty supervision. A term paper or its equivalent and regular meetings with the adviser are required. To apply for admission, a student should present a prospectus and a bibliography, signed by the adviser, to the director of undergraduate studies. Enrollment limited.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987395405769348, + 0.9988908171653748, + 0.9986171722412109, + 0.9986900687217712 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989182949066162, + 0.9989043474197388, + 0.9984216690063477, + 0.996428906917572 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989389777183533, + 0.9987634420394897, + 0.9988518953323364, + 0.9986575841903687, + 0.998894989490509 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 0.9230769230769231, + "final_counts": { + "POSITIVE": 12, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9230769230769231, + "NEGATIVE": 0.07692307692307693 + } + } + }, + { + "season_code": "202301", + "requirements": "", + "description": "For students who wish to pursue a close study in the subjects of ethnicity, race, and/or migration, not otherwise covered by departmental offerings. May be used for research, a special project, or a substantial research paper under faculty supervision. A term paper or its equivalent and regular meetings with the adviser are required. To apply for admission, a student should present a prospectus and a bibliography, signed by the adviser, to the director of undergraduate studies. Enrollment limited.", "short_title": "Independent Study", "title": "Independent Study", "school": "YC", @@ -125683,7 +277130,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -125726,7 +277201,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -125771,7 +277274,90 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988779425621033, + 0.9978237152099609, + 0.9972885847091675 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989042282104492, + 0.9988774657249451 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988188147544861, + 0.998881995677948, + 0.9941331744194031 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 0.875, + "final_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + } + } }, { "season_code": "202301", @@ -125808,7 +277394,7 @@ "9:25", "11:15", "BASSLB L72 - Bass Library L72", - "https:\/\/map.yale.edu\/?id=1910#!m\/564574" + "https://map.yale.edu/?id=1910#!m/564574" ] ] }, @@ -125820,10 +277406,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85797\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85797/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -125861,7 +277475,7 @@ "9:25", "11:15", "WLH 012 - William L. Harkness Hall 012", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -125873,10 +277487,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85798\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85798/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -125919,7 +277561,7 @@ "13:30", "15:20", "WLH 203 - William L. Harkness Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -125931,10 +277573,103 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85108\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85108/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987395405769348, + 0.9988908171653748, + 0.9986171722412109, + 0.9986900687217712 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989182949066162, + 0.9989043474197388, + 0.9984216690063477, + 0.996428906917572 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989389777183533, + 0.9987634420394897, + 0.9988518953323364, + 0.9986575841903687, + 0.998894989490509 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 0.9230769230769231, + "final_counts": { + "POSITIVE": 12, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9230769230769231, + "NEGATIVE": 0.07692307692307693 + } + } }, { "season_code": "202301", @@ -125973,7 +277708,7 @@ "9:00", "10:15", "HQ 127 - Humanities Quadrangle 127", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -125981,7 +277716,7 @@ "9:00", "10:15", "HQ 127 - Humanities Quadrangle 127", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -125996,10 +277731,103 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84612\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84612/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988387227058411, + 0.998810887336731, + 0.9989144802093506, + 0.9988585710525513 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988695979118347, + 0.9989066123962402, + 0.9987351298332214, + 0.9982700347900391, + 0.9988608360290527 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986628293991089, + 0.9986855387687683, + 0.9981655478477478, + 0.9989280104637146, + 0.9988676309585571 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 14 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -126036,7 +277864,7 @@ "13:00", "14:15", "WLH 002 - William L. Harkness Hall 002", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -126044,7 +277872,7 @@ "13:00", "14:15", "WLH 002 - William L. Harkness Hall 002", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -126060,10 +277888,117 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84050\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84050/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986082911491394, + 0.9987245202064514, + 0.9988917708396912, + 0.9989331364631653, + 0.9989016056060791, + 0.9988815188407898, + 0.9988431930541992 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9994352459907532, + 0.9995015859603882, + 0.9982207417488098, + 0.9989215135574341, + 0.9846906065940857 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.6, + "POSITIVE": 0.4 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.6 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981467723846436, + 0.9989357590675354, + 0.9994969367980957, + 0.9988976716995239, + 0.9988732933998108, + 0.998859167098999, + 0.9989245533943176, + 0.9987896084785461 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 0.8, + "final_counts": { + "POSITIVE": 16, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + } + } }, { "season_code": "202301", @@ -126104,7 +278039,7 @@ "14:30", "15:45", "AKW 100 - Arthur K. Watson Hall 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560119" + "https://map.yale.edu/?id=1910#!m/560119" ] ], "Wednesday": [ @@ -126112,7 +278047,7 @@ "14:30", "15:45", "AKW 100 - Arthur K. Watson Hall 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560119" + "https://map.yale.edu/?id=1910#!m/560119" ] ] }, @@ -126130,10 +278065,129 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83363\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83363/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987213015556335, + 0.9988129138946533, + 0.9972946047782898, + 0.9988101720809937, + 0.998798131942749, + 0.9989086389541626, + 0.9989030361175537, + 0.9988982677459717, + 0.9988283514976501 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987598657608032, + 0.9988417029380798, + 0.973635733127594, + 0.9989319443702698, + 0.9908389449119568, + 0.9988753199577332, + 0.9980974793434143, + 0.998778760433197, + 0.9978864789009094 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989151954650879, + 0.9989174604415894, + 0.8070329427719116, + 0.9989311099052429, + 0.9989210367202759, + 0.9989100694656372, + 0.9988678693771362, + 0.9988464117050171 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "final_label": "POSITIVE", + "final_count": 24, + "final_proportion": 0.9230769230769231, + "final_counts": { + "POSITIVE": 24, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9230769230769231, + "NEGATIVE": 0.07692307692307693 + } + } }, { "season_code": "202301", @@ -126171,7 +278225,7 @@ "10:30", "11:20", "HQ L02 - Humanities Quadrangle L02", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -126179,7 +278233,7 @@ "10:30", "11:20", "HQ L02 - Humanities Quadrangle L02", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -126204,10 +278258,357 @@ "classnotes": "", "final_exam": "Wednesday, May 10, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84116\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84116/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988895058631897, + 0.9988062381744385, + 0.9988294243812561, + 0.9985639452934265, + 0.9987727999687195, + 0.9988225102424622, + 0.9988085031509399, + 0.9988025426864624, + 0.9988672733306885, + 0.9988529682159424, + 0.9985485672950745, + 0.9978627562522888, + 0.9989010095596313, + 0.9989032745361328, + 0.998783528804779, + 0.9988710284233093, + 0.9988504648208618, + 0.9988487958908081, + 0.9988493919372559, + 0.9988491535186768, + 0.9988711476325989, + 0.9988312125205994, + 0.998407781124115, + 0.9988794922828674, + 0.9988846182823181, + 0.9983068704605103, + 0.9988192915916443, + 0.9988852143287659, + 0.9986194372177124, + 0.9988918900489807, + 0.9989001750946045, + 0.998791515827179, + 0.9987335801124573, + 0.9984404444694519, + 0.998812198638916, + 0.9988512992858887, + 0.9974391460418701, + 0.9988653659820557, + 0.9989063739776611, + 0.9989016056060791, + 0.9989141225814819, + 0.9980952143669128, + 0.99883633852005, + 0.9988341927528381 + ], + "sentiment_counts": { + "POSITIVE": 44, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989122152328491, + 0.9986916184425354, + 0.9989068508148193, + 0.9987642765045166, + 0.998928964138031, + 0.9985886216163635, + 0.9983034133911133, + 0.998791515827179, + 0.9995051622390747, + 0.9985184073448181, + 0.9988879561424255, + 0.9975737929344177, + 0.9989120960235596, + 0.9988964796066284, + 0.9989006519317627, + 0.9989270567893982, + 0.998908281326294, + 0.9988952279090881, + 0.9989073276519775, + 0.9988262057304382, + 0.9988692402839661, + 0.9988677501678467, + 0.9989287257194519, + 0.9949931502342224, + 0.9989224672317505, + 0.9990686774253845, + 0.9989020824432373, + 0.9989109039306641, + 0.9981839060783386, + 0.9988471269607544, + 0.9988296627998352, + 0.9988512992858887, + 0.9988954067230225, + 0.9989110231399536, + 0.9987564086914062, + 0.992164134979248, + 0.9926303625106812, + 0.9984294772148132, + 0.9989209175109863, + 0.9987879395484924, + 0.9988999366760254, + 0.9987263083457947, + 0.9989008903503418, + 0.9987389445304871, + 0.9988693594932556, + 0.9989094734191895, + 0.9988528490066528 + ], + "sentiment_counts": { + "POSITIVE": 40, + "NEGATIVE": 7 + }, + "sentiment_distribution": { + "POSITIVE": 0.851063829787234, + "NEGATIVE": 0.14893617021276595 + }, + "sentiment_overall": [ + "POSITIVE", + 0.851063829787234 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988914132118225, + 0.9987176656723022, + 0.9985799789428711, + 0.9957824945449829, + 0.9987953901290894, + 0.9988031387329102, + 0.9989132881164551, + 0.9989306330680847, + 0.9982553124427795, + 0.9989092350006104, + 0.9985374212265015, + 0.9974592328071594, + 0.9988678693771362, + 0.9988916516304016, + 0.9987803101539612, + 0.998855710029602, + 0.9980736970901489, + 0.9989318251609802, + 0.9989162683486938, + 0.9989134073257446, + 0.9988868832588196, + 0.9988861680030823, + 0.9989275336265564, + 0.9989020824432373, + 0.9982744455337524, + 0.9989340901374817, + 0.9989030361175537, + 0.9982553124427795, + 0.9989266991615295, + 0.9988915324211121, + 0.9989244341850281, + 0.9982798099517822, + 0.9989314675331116, + 0.9988388419151306, + 0.9989374279975891, + 0.9980168342590332, + 0.9980168342590332, + 0.9986971020698547, + 0.9988705515861511, + 0.9987724423408508, + 0.9989141225814819, + 0.9974592328071594, + 0.9989137649536133, + 0.9988648891448975, + 0.9988433122634888, + 0.9988923668861389, + 0.9987640380859375, + 0.9983683228492737, + 0.9988872408866882 + ], + "sentiment_counts": { + "POSITIVE": 48, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9795918367346939, + "NEGATIVE": 0.02040816326530612 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9795918367346939 + ] + }, + "final_label": "POSITIVE", + "final_count": 132, + "final_proportion": 0.9428571428571428, + "final_counts": { + "POSITIVE": 132, + "NEGATIVE": 8 + }, + "final_distribution": { + "POSITIVE": 0.9428571428571428, + "NEGATIVE": 0.05714285714285714 + } + } }, { "season_code": "202301", @@ -126239,7 +278640,7 @@ "16:00", "16:50", "WTS A46 - Watson Center 60 Sachem Street A46", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -126256,7 +278657,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -126288,7 +278717,7 @@ "17:00", "17:50", "WTS A68 - Watson Center 60 Sachem Street A68", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -126305,7 +278734,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -126337,7 +278794,7 @@ "19:00", "19:50", "WTS A68 - Watson Center 60 Sachem Street A68", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -126354,7 +278811,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -126386,7 +278871,7 @@ "20:00", "20:50", "WTS A68 - Watson Center 60 Sachem Street A68", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -126403,7 +278888,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -126435,7 +278948,7 @@ "13:30", "14:20", "WTS B52 - Watson Center 60 Sachem Street B52", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -126452,7 +278965,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -126484,7 +279025,7 @@ "11:35", "12:25", "WTS A35 - Watson Center 60 Sachem Street A35", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -126501,7 +279042,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -126533,7 +279102,7 @@ "10:30", "11:20", "WTS A35 - Watson Center 60 Sachem Street A35", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -126550,7 +279119,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -126582,7 +279179,7 @@ "16:00", "16:50", "WTS A48 - Watson Center 60 Sachem Street A48", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -126599,7 +279196,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -126636,7 +279261,7 @@ "14:30", "15:45", "SPL 59 - Sloane Physics Laboratory 59", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ], "Wednesday": [ @@ -126644,7 +279269,7 @@ "14:30", "15:45", "SPL 59 - Sloane Physics Laboratory 59", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ] }, @@ -126660,10 +279285,167 @@ "classnotes": "Preference to EVST majors.", "final_exam": "Thursday, May 4, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84058\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84058/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9974640607833862, + 0.9989137649536133, + 0.99886155128479, + 0.9985206723213196, + 0.9981403350830078, + 0.998863697052002, + 0.9944296479225159, + 0.998836100101471, + 0.9979180693626404, + 0.9988623857498169, + 0.9989221096038818, + 0.998873770236969, + 0.9987528324127197, + 0.9989075660705566, + 0.9987517595291138 + ], + "sentiment_counts": { + "POSITIVE": 15, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986922144889832, + 0.9988352656364441, + 0.9989275336265564, + 0.9989117383956909, + 0.9989140033721924, + 0.9989244341850281, + 0.9989035129547119, + 0.9988487958908081, + 0.9913762211799622, + 0.9693366289138794, + 0.998791515827179, + 0.9987719655036926, + 0.9989240765571594, + 0.9989223480224609, + 0.9982752799987793 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8666666666666667, + "NEGATIVE": 0.13333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8666666666666667 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988231062889099, + 0.9982553124427795, + 0.9989156723022461, + 0.9989193677902222, + 0.998939573764801, + 0.9988371729850769, + 0.998927891254425, + 0.9988051652908325, + 0.9867982268333435, + 0.9985271692276001, + 0.999300479888916, + 0.9985936284065247, + 0.9988715052604675, + 0.9989359974861145, + 0.9989053010940552 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8666666666666667, + "NEGATIVE": 0.13333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8666666666666667 + ] + }, + "final_label": "POSITIVE", + "final_count": 41, + "final_proportion": 0.9111111111111111, + "final_counts": { + "POSITIVE": 41, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.9111111111111111, + "NEGATIVE": 0.08888888888888889 + } + } }, { "season_code": "202301", @@ -126694,7 +279476,7 @@ "9:25", "10:15", "WTS B51 - Watson Center 60 Sachem Street B51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -126711,7 +279493,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -126742,7 +279552,7 @@ "10:30", "11:20", "AKW 100 - Arthur K. Watson Hall 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560119" + "https://map.yale.edu/?id=1910#!m/560119" ] ] }, @@ -126759,7 +279569,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -126798,7 +279636,7 @@ "9:00", "10:15", "LUCE 101 - Luce Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ], "Thursday": [ @@ -126806,7 +279644,7 @@ "9:00", "10:15", "LUCE 101 - Luce Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ] }, @@ -126815,17 +279653,256 @@ "So" ], "flags": [ - "YC EVST: Core Human\/Social Sci" + "YC EVST: Core Human/Social Sci" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84062\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84062/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989332556724548, + 0.998915433883667, + 0.9891936182975769, + 0.998788058757782, + 0.9945852160453796, + 0.9987579584121704, + 0.9986727237701416, + 0.998865008354187, + 0.998894989490509, + 0.9987485408782959, + 0.9988663196563721, + 0.9989227652549744, + 0.9979153275489807, + 0.9985132813453674, + 0.998790442943573, + 0.9970226883888245, + 0.9985962510108948, + 0.9974486231803894, + 0.9987539052963257, + 0.998736560344696, + 0.9988119602203369, + 0.9988526105880737, + 0.9989209175109863, + 0.9985186457633972, + 0.9988144636154175, + 0.9989169836044312, + 0.9987366795539856 + ], + "sentiment_counts": { + "POSITIVE": 26, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9629629629629629, + "NEGATIVE": 0.037037037037037035 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9629629629629629 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988002777099609, + 0.9987773299217224, + 0.9995059967041016, + 0.9971598386764526, + 0.99950110912323, + 0.9995086193084717, + 0.9988172650337219, + 0.9989196062088013, + 0.9989017248153687, + 0.9985610842704773, + 0.9949237704277039, + 0.9986408352851868, + 0.9985164999961853, + 0.9994801878929138, + 0.9993270635604858, + 0.9988240599632263, + 0.9988434314727783, + 0.9988960027694702, + 0.9988116025924683, + 0.9984443783760071, + 0.9989222288131714, + 0.9987266659736633, + 0.998853325843811, + 0.9988480806350708, + 0.997979462146759, + 0.9987955093383789, + 0.9994897842407227, + 0.9985559582710266, + 0.9989370703697205, + 0.9989036321640015 + ], + "sentiment_counts": { + "POSITIVE": 21, + "NEGATIVE": 9 + }, + "sentiment_distribution": { + "POSITIVE": 0.7, + "NEGATIVE": 0.3 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987757802009583, + 0.998890221118927, + 0.9995061159133911, + 0.9989145994186401, + 0.9995065927505493, + 0.999512791633606, + 0.9988235831260681, + 0.9980236291885376, + 0.9989049434661865, + 0.9982553124427795, + 0.9988952279090881, + 0.9989067316055298, + 0.997117280960083, + 0.999489426612854, + 0.993126630783081, + 0.9988058805465698, + 0.9981436729431152, + 0.9989080429077148, + 0.9987064599990845, + 0.9988402724266052, + 0.9989199638366699, + 0.9983456134796143, + 0.9989196062088013, + 0.9978938698768616, + 0.9987866282463074, + 0.9974762797355652, + 0.9988738894462585, + 0.9988808035850525, + 0.9984097480773926 + ], + "sentiment_counts": { + "POSITIVE": 24, + "NEGATIVE": 5 + }, + "sentiment_distribution": { + "POSITIVE": 0.8275862068965517, + "NEGATIVE": 0.1724137931034483 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8275862068965517 + ] + }, + "final_label": "POSITIVE", + "final_count": 71, + "final_proportion": 0.8255813953488372, + "final_counts": { + "POSITIVE": 71, + "NEGATIVE": 15 + }, + "final_distribution": { + "POSITIVE": 0.8255813953488372, + "NEGATIVE": 0.1744186046511628 + } + } }, { "season_code": "202301", @@ -126857,7 +279934,7 @@ "13:30", "14:20", "WTS A39 - Watson Center 60 Sachem Street A39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -126874,7 +279951,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -126906,7 +280011,7 @@ "14:30", "15:20", "WTS A39 - Watson Center 60 Sachem Street A39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -126923,7 +280028,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -126955,7 +280088,7 @@ "9:25", "10:15", "PH 310 - Phelps Hall 310", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -126972,7 +280105,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -127004,7 +280165,7 @@ "13:30", "14:20", "LC 212 - Linsly-Chittenden Hall 212", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -127021,7 +280182,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -127053,7 +280242,7 @@ "16:00", "16:50", "WTS B51 - Watson Center 60 Sachem Street B51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -127070,7 +280259,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -127102,7 +280319,7 @@ "17:00", "17:50", "WTS B51 - Watson Center 60 Sachem Street B51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -127119,7 +280336,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -127159,7 +280404,7 @@ "11:35", "12:50", "HQ 129 - Humanities Quadrangle 129", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -127167,7 +280412,7 @@ "11:35", "12:50", "HQ 129 - Humanities Quadrangle 129", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -127176,17 +280421,134 @@ "Hu" ], "flags": [ - "YC EVST: Core Human\/Social Sci" + "YC EVST: Core Human/Social Sci" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84303\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84303/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989239573478699, + 0.997658371925354, + 0.998891294002533, + 0.9987801909446716, + 0.9988897442817688, + 0.9988964796066284, + 0.9988486766815186, + 0.9988806843757629, + 0.9989103078842163 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989364743232727, + 0.9988723397254944, + 0.9988699555397034, + 0.9988604784011841, + 0.9988333582878113, + 0.9989116191864014, + 0.9988388419151306 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988983869552612, + 0.9989307522773743, + 0.9988526105880737, + 0.9988763928413391, + 0.9989306330680847, + 0.9981436729431152, + 0.9989198446273804, + 0.9982477426528931, + 0.9989131689071655, + 0.9988601207733154 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 26, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 26 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -127226,7 +280588,7 @@ "13:30", "15:20", "HQ 132 - Humanities Quadrangle 132", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -127235,7 +280597,7 @@ "So" ], "flags": [ - "YC EVST: Core Human\/Social Sci", + "YC EVST: Core Human/Social Sci", "YC GLHTH: Health & Societies", "YC GLHTH: Polit Econ & Govern" ], @@ -127244,15 +280606,150 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84066\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84066/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "", - "description": "This class examines how the Greeks and Romans exploited their natural surroundings not only as physical resources, but as resources for human thought. The focus is on how ancient thinkers, living lives that were largely city-bound and detached from nature, structured their thoughts about the lives they lived (and about human existence more generally) by reference to their nonhuman surroundings: creatures, plants and places, some of which existed in the real world (in places far off, largely unknown and elsewhere; in places penetrated, explored, and\/or told of), others of which existed entirely in the imagination, whether as inherited lore, or as places and creatures invented ad hoc by individuals and groups to get certain kinds of cultural work done. We look not only at the how and what, but at the why of nature\u2019s encoding via culture, and vice versa (their symbiosis), paying special attention to ancient Rome (though with a short first glance at Homer, Hesiod and Aristotle). We begin by scrutinizing the categories themselves, attempting to find historically appropriate ways to connect modern ecocritical concerns and ways of thought to the ancient world. Topics include:\u00a0the cosmos, the heavens, and the first humans (and first peoples in their places); humans in their \u2018kinds\u2019 and animals, wild and tame; mountains, rivers, the sea and the undersea; human and animal foods, farming and food ways; wine and fermentation; groves, forests and trees; gardens, flowers, vegetables and fungi; birds, fish, weasels and snakes; earthquakes, floods and natural disasters; pollution, dirt and the city of Rome; the ecocultural lives of others.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988701939582825, + 0.9988918900489807, + 0.9921477437019348, + 0.9988276362419128, + 0.9987004995346069, + 0.9988986253738403, + 0.9989198446273804, + 0.9988481998443604, + 0.9988188147544861, + 0.9987941980361938, + 0.9987064599990845 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9823588728904724, + 0.9988149404525757, + 0.9989333748817444, + 0.9989256262779236, + 0.9989344477653503, + 0.9989063739776611, + 0.9989162683486938, + 0.9983733892440796, + 0.9973631501197815, + 0.9989039897918701, + 0.9989022016525269 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 8 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2727272727272727, + "POSITIVE": 0.7272727272727273 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7272727272727273 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998782217502594, + 0.9987050294876099, + 0.9988222718238831, + 0.9948569536209106, + 0.9984742999076843, + 0.9984195232391357, + 0.9988653659820557, + 0.9989256262779236, + 0.9986452460289001, + 0.9988420605659485, + 0.9984684586524963, + 0.9988973140716553 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9166666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 30, + "final_proportion": 0.8823529411764706, + "final_counts": { + "POSITIVE": 30, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.8823529411764706, + "NEGATIVE": 0.11764705882352941 + } + } + }, + { + "season_code": "202301", + "requirements": "", + "description": "This class examines how the Greeks and Romans exploited their natural surroundings not only as physical resources, but as resources for human thought. The focus is on how ancient thinkers, living lives that were largely city-bound and detached from nature, structured their thoughts about the lives they lived (and about human existence more generally) by reference to their nonhuman surroundings: creatures, plants and places, some of which existed in the real world (in places far off, largely unknown and elsewhere; in places penetrated, explored, and/or told of), others of which existed entirely in the imagination, whether as inherited lore, or as places and creatures invented ad hoc by individuals and groups to get certain kinds of cultural work done. We look not only at the how and what, but at the why of nature\u2019s encoding via culture, and vice versa (their symbiosis), paying special attention to ancient Rome (though with a short first glance at Homer, Hesiod and Aristotle). We begin by scrutinizing the categories themselves, attempting to find historically appropriate ways to connect modern ecocritical concerns and ways of thought to the ancient world. Topics include:\u00a0the cosmos, the heavens, and the first humans (and first peoples in their places); humans in their \u2018kinds\u2019 and animals, wild and tame; mountains, rivers, the sea and the undersea; human and animal foods, farming and food ways; wine and fermentation; groves, forests and trees; gardens, flowers, vegetables and fungi; birds, fish, weasels and snakes; earthquakes, floods and natural disasters; pollution, dirt and the city of Rome; the ecocultural lives of others.", "short_title": "Ecocultures of Antiquity: Eco...", "title": "Ecocultures of Antiquity: Ecocritical Approaches to Ancient Greece and Rome", "school": "YC", @@ -127286,7 +280783,7 @@ "13:00", "14:15", "PH 207 - Phelps Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ], "Thursday": [ @@ -127294,7 +280791,7 @@ "13:00", "14:15", "PH 207 - Phelps Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -127310,15 +280807,136 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83687\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "", - "description": "This class examines how the Greeks and Romans exploited their natural surroundings not only as physical resources, but as resources for human thought. The focus is on how ancient thinkers, living lives that were largely city-bound and detached from nature, structured their thoughts about the lives they lived (and about human existence more generally) by reference to their nonhuman surroundings: creatures, plants and places, some of which existed in the real world (in places far off, largely unknown and elsewhere; in places penetrated, explored, and\/or told of), others of which existed entirely in the imagination, whether as inherited lore, or as places and creatures invented ad hoc by individuals and groups to get certain kinds of cultural work done. We look not only at the how and what, but at the why of nature\u2019s encoding via culture, and vice versa (their symbiosis), paying special attention to ancient Rome (though with a short first glance at Homer, Hesiod and Aristotle). We begin by scrutinizing the categories themselves, attempting to find historically appropriate ways to connect modern ecocritical concerns and ways of thought to the ancient world. Topics include:\u00a0the cosmos, the heavens, and the first humans (and first peoples in their places); humans in their \u2018kinds\u2019 and animals, wild and tame; mountains, rivers, the sea and the undersea; human and animal foods, farming and food ways; wine and fermentation; groves, forests and trees; gardens, flowers, vegetables and fungi; birds, fish, weasels and snakes; earthquakes, floods and natural disasters; pollution, dirt and the city of Rome; the ecocultural lives of others.", + "syllabus_url": "https://yale.instructure.com/courses/83687/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986658096313477, + 0.9987549781799316, + 0.9988769888877869, + 0.998818576335907, + 0.9989176988601685, + 0.998852014541626, + 0.9986240863800049, + 0.9985535740852356, + 0.9988571405410767 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988806843757629, + 0.9989176988601685, + 0.998863935470581, + 0.9989005327224731, + 0.998892605304718, + 0.9894417524337769, + 0.9989171028137207, + 0.9989120960235596 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987706542015076, + 0.9987742304801941, + 0.9989327788352966, + 0.9974020719528198, + 0.9989235997200012, + 0.9989352822303772, + 0.998933732509613, + 0.9989099502563477, + 0.998870313167572, + 0.9988740086555481 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 9 + }, + "sentiment_distribution": { + "NEGATIVE": 0.1, + "POSITIVE": 0.9 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "final_label": "POSITIVE", + "final_count": 25, + "final_proportion": 0.9259259259259259, + "final_counts": { + "POSITIVE": 25, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9259259259259259, + "NEGATIVE": 0.07407407407407407 + } + } + }, + { + "season_code": "202301", + "requirements": "", + "description": "This class examines how the Greeks and Romans exploited their natural surroundings not only as physical resources, but as resources for human thought. The focus is on how ancient thinkers, living lives that were largely city-bound and detached from nature, structured their thoughts about the lives they lived (and about human existence more generally) by reference to their nonhuman surroundings: creatures, plants and places, some of which existed in the real world (in places far off, largely unknown and elsewhere; in places penetrated, explored, and/or told of), others of which existed entirely in the imagination, whether as inherited lore, or as places and creatures invented ad hoc by individuals and groups to get certain kinds of cultural work done. We look not only at the how and what, but at the why of nature\u2019s encoding via culture, and vice versa (their symbiosis), paying special attention to ancient Rome (though with a short first glance at Homer, Hesiod and Aristotle). We begin by scrutinizing the categories themselves, attempting to find historically appropriate ways to connect modern ecocritical concerns and ways of thought to the ancient world. Topics include:\u00a0the cosmos, the heavens, and the first humans (and first peoples in their places); humans in their \u2018kinds\u2019 and animals, wild and tame; mountains, rivers, the sea and the undersea; human and animal foods, farming and food ways; wine and fermentation; groves, forests and trees; gardens, flowers, vegetables and fungi; birds, fish, weasels and snakes; earthquakes, floods and natural disasters; pollution, dirt and the city of Rome; the ecocultural lives of others.", "short_title": "Ecocultures of Antiquity: Eco...", "title": "Ecocultures of Antiquity: Ecocritical Approaches to Ancient Greece and Rome", "school": "YC", @@ -127346,7 +280964,7 @@ "14:30", "15:20", "HQ 207 - Humanities Quadrangle 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -127363,12 +280981,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This class examines how the Greeks and Romans exploited their natural surroundings not only as physical resources, but as resources for human thought. The focus is on how ancient thinkers, living lives that were largely city-bound and detached from nature, structured their thoughts about the lives they lived (and about human existence more generally) by reference to their nonhuman surroundings: creatures, plants and places, some of which existed in the real world (in places far off, largely unknown and elsewhere; in places penetrated, explored, and\/or told of), others of which existed entirely in the imagination, whether as inherited lore, or as places and creatures invented ad hoc by individuals and groups to get certain kinds of cultural work done. We look not only at the how and what, but at the why of nature\u2019s encoding via culture, and vice versa (their symbiosis), paying special attention to ancient Rome (though with a short first glance at Homer, Hesiod and Aristotle). We begin by scrutinizing the categories themselves, attempting to find historically appropriate ways to connect modern ecocritical concerns and ways of thought to the ancient world. Topics include:\u00a0the cosmos, the heavens, and the first humans (and first peoples in their places); humans in their \u2018kinds\u2019 and animals, wild and tame; mountains, rivers, the sea and the undersea; human and animal foods, farming and food ways; wine and fermentation; groves, forests and trees; gardens, flowers, vegetables and fungi; birds, fish, weasels and snakes; earthquakes, floods and natural disasters; pollution, dirt and the city of Rome; the ecocultural lives of others.", + "description": "This class examines how the Greeks and Romans exploited their natural surroundings not only as physical resources, but as resources for human thought. The focus is on how ancient thinkers, living lives that were largely city-bound and detached from nature, structured their thoughts about the lives they lived (and about human existence more generally) by reference to their nonhuman surroundings: creatures, plants and places, some of which existed in the real world (in places far off, largely unknown and elsewhere; in places penetrated, explored, and/or told of), others of which existed entirely in the imagination, whether as inherited lore, or as places and creatures invented ad hoc by individuals and groups to get certain kinds of cultural work done. We look not only at the how and what, but at the why of nature\u2019s encoding via culture, and vice versa (their symbiosis), paying special attention to ancient Rome (though with a short first glance at Homer, Hesiod and Aristotle). We begin by scrutinizing the categories themselves, attempting to find historically appropriate ways to connect modern ecocritical concerns and ways of thought to the ancient world. Topics include:\u00a0the cosmos, the heavens, and the first humans (and first peoples in their places); humans in their \u2018kinds\u2019 and animals, wild and tame; mountains, rivers, the sea and the undersea; human and animal foods, farming and food ways; wine and fermentation; groves, forests and trees; gardens, flowers, vegetables and fungi; birds, fish, weasels and snakes; earthquakes, floods and natural disasters; pollution, dirt and the city of Rome; the ecocultural lives of others.", "short_title": "Ecocultures of Antiquity: Eco...", "title": "Ecocultures of Antiquity: Ecocritical Approaches to Ancient Greece and Rome", "school": "YC", @@ -127396,7 +281042,7 @@ "16:30", "17:20", "HQ 207 - Humanities Quadrangle 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -127413,7 +281059,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -127452,7 +281126,7 @@ "13:30", "15:20", "WLH 210 - William L. Harkness Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -127461,7 +281135,7 @@ "Hu" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -127469,15 +281143,94 @@ "classnotes": "Please send an email describing your interest in this course to hector.peralta@yale.edu.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83376\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83376/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "", - "description": "The course takes up a pressing topic from the sciences and looks at it from the angle of the humanities: how are ecological crises, how is\u2013most specifically and urgently\u2013our current climate crisis represented and reflected upon in non-scientific public discourse: in journalism, in the social media, in literature, and in film? With a focus on, but not limited to literary texts, the course draws on established categories of literary analysis, such as plot patterns or the techniques of narration and\/vs. description, and links them to philosophical concepts such as Karen Barad\u2019s agential realism and Donna Haraway\u2019s \"chthulucene.\" In so doing the course not only looks into (and questions) the common accusation that literature is conspicuously silent when it comes to the matter of the climate crisis, but also investigates (literary and non-literary) ecological narration as situated at the intersection of representation and ethics. Literary readings include Adalbert Stifter, Amitav Ghosh, W.G. Sebald, Ian McEwan, Judith Hermann, Ilija Trojanow, and Kim Stanley Robinson.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988231062889099, + 0.9988419413566589 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987760186195374, + 0.9986621141433716, + 0.9988853335380554 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989235997200012, + 0.998609185218811 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 7 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } + }, + { + "season_code": "202301", + "requirements": "", + "description": "The course takes up a pressing topic from the sciences and looks at it from the angle of the humanities: how are ecological crises, how is\u2013most specifically and urgently\u2013our current climate crisis represented and reflected upon in non-scientific public discourse: in journalism, in the social media, in literature, and in film? With a focus on, but not limited to literary texts, the course draws on established categories of literary analysis, such as plot patterns or the techniques of narration and/vs. description, and links them to philosophical concepts such as Karen Barad\u2019s agential realism and Donna Haraway\u2019s \"chthulucene.\" In so doing the course not only looks into (and questions) the common accusation that literature is conspicuously silent when it comes to the matter of the climate crisis, but also investigates (literary and non-literary) ecological narration as situated at the intersection of representation and ethics. Literary readings include Adalbert Stifter, Amitav Ghosh, W.G. Sebald, Ian McEwan, Judith Hermann, Ilija Trojanow, and Kim Stanley Robinson.", "short_title": "Ecology, Ecocriticism, and Na...", "title": "Ecology, Ecocriticism, and Narration", "school": "YC", @@ -127513,7 +281266,7 @@ "9:25", "11:15", "HQ C11 - Humanities Quadrangle C11", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -127527,10 +281280,99 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85992\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85992/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988914132118225, + 0.9989128112792969, + 0.9985442161560059, + 0.998870313167572, + 0.9988595247268677 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987063407897949, + 0.9989110231399536, + 0.998933732509613, + 0.9989099502563477 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987555742263794, + 0.9989058971405029, + 0.9989321827888489 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 12 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -127568,7 +281410,7 @@ "13:00", "14:15", "ESC 200 - Environmental Sciences Center 200", - "https:\/\/map.yale.edu\/?id=1910#!m\/560020" + "https://map.yale.edu/?id=1910#!m/560020" ] ], "Wednesday": [ @@ -127576,7 +281418,7 @@ "13:00", "14:15", "ESC 200 - Environmental Sciences Center 200", - "https:\/\/map.yale.edu\/?id=1910#!m\/560020" + "https://map.yale.edu/?id=1910#!m/560020" ] ] }, @@ -127590,10 +281432,38 @@ "classnotes": "", "final_exam": "Tuesday, May 9, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83971\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83971/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -127631,7 +281501,7 @@ "9:25", "11:15", "AKW 100 - Arthur K. Watson Hall 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560119" + "https://map.yale.edu/?id=1910#!m/560119" ] ] }, @@ -127639,7 +281509,7 @@ "areas": [], "flags": [ "YC EVST: Core BA Natural Scie", - "YC EVST: B.S. NatSci\/Field Lab", + "YC EVST: B.S. NatSci/Field Lab", "YC S&DS: Data Analy Disc Area", "YC Urban Studies: Methods Crse" ], @@ -127648,10 +281518,143 @@ "classnotes": "EVST majors have priority for enrollment.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84070\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84070/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988048076629639, + 0.9988976716995239, + 0.998769223690033, + 0.9987961053848267, + 0.9988454580307007, + 0.9987629652023315, + 0.9988638162612915, + 0.9963585734367371, + 0.9988102912902832, + 0.9988677501678467, + 0.9986504912376404 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989047050476074, + 0.9989125728607178, + 0.9989350438117981, + 0.9985013008117676, + 0.9988527297973633, + 0.9987770915031433, + 0.9963381290435791, + 0.998822033405304, + 0.985805332660675, + 0.9989364743232727, + 0.9994871616363525 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8181818181818182, + "NEGATIVE": 0.18181818181818182 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8181818181818182 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988886713981628, + 0.9989001750946045, + 0.9988909363746643, + 0.9982799291610718, + 0.9988709092140198, + 0.9973155856132507, + 0.9979391694068909, + 0.9988276362419128, + 0.997802197933197, + 0.9974029660224915, + 0.9990214109420776 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8181818181818182, + "NEGATIVE": 0.18181818181818182 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8181818181818182 + ] + }, + "final_label": "POSITIVE", + "final_count": 29, + "final_proportion": 0.8787878787878788, + "final_counts": { + "POSITIVE": 29, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.8787878787878788, + "NEGATIVE": 0.12121212121212122 + } + } }, { "season_code": "202301", @@ -127689,7 +281692,7 @@ "11:35", "12:50", "HQ L02 - Humanities Quadrangle L02", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -127697,7 +281700,7 @@ "11:35", "12:50", "HQ L02 - Humanities Quadrangle L02", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -127713,10 +281716,191 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83965\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83965/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988071918487549, + 0.9984865188598633, + 0.998892605304718, + 0.9988526105880737, + 0.9988114833831787, + 0.998894989490509, + 0.9980450868606567, + 0.9988895058631897, + 0.9989193677902222, + 0.9798096418380737, + 0.998837411403656, + 0.9988669157028198, + 0.9988062381744385, + 0.998691737651825, + 0.9988346695899963, + 0.9988308548927307, + 0.9985344409942627, + 0.9755300283432007, + 0.9988786578178406, + 0.9988778233528137 + ], + "sentiment_counts": { + "POSITIVE": 20, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998462438583374, + 0.9988842606544495, + 0.9986310601234436, + 0.9987244009971619, + 0.9989331364631653, + 0.9988605976104736, + 0.9988473653793335, + 0.9847033619880676, + 0.9989010095596313, + 0.9633054137229919, + 0.9961556792259216, + 0.9980265498161316, + 0.9957483410835266, + 0.9975737929344177, + 0.9988932013511658, + 0.998778760433197 + ], + "sentiment_counts": { + "NEGATIVE": 5, + "POSITIVE": 11 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3125, + "POSITIVE": 0.6875 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6875 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988816380500793, + 0.9988634586334229, + 0.9989222288131714, + 0.9982553124427795, + 0.9988420605659485, + 0.9989134073257446, + 0.9988362193107605, + 0.9989153146743774, + 0.9987609386444092, + 0.9988813996315002, + 0.9988806843757629, + 0.9962539672851562, + 0.9976826906204224, + 0.9989017248153687, + 0.9995025396347046, + 0.9989053010940552, + 0.9989060163497925, + 0.9995099306106567, + 0.997117280960083, + 0.9989026784896851, + 0.9988672733306885 + ], + "sentiment_counts": { + "POSITIVE": 19, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.9047619047619048, + "NEGATIVE": 0.09523809523809523 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9047619047619048 + ] + }, + "final_label": "POSITIVE", + "final_count": 50, + "final_proportion": 0.8771929824561403, + "final_counts": { + "POSITIVE": 50, + "NEGATIVE": 7 + }, + "final_distribution": { + "POSITIVE": 0.8771929824561403, + "NEGATIVE": 0.12280701754385964 + } + } }, { "season_code": "202301", @@ -127754,7 +281938,7 @@ "13:00", "14:15", "S 24 - Sage Hall 24", - "https:\/\/map.yale.edu\/?id=1910#!m\/559547" + "https://map.yale.edu/?id=1910#!m/559547" ] ], "Wednesday": [ @@ -127762,7 +281946,7 @@ "13:00", "14:15", "S 24 - Sage Hall 24", - "https:\/\/map.yale.edu\/?id=1910#!m\/559547" + "https://map.yale.edu/?id=1910#!m/559547" ] ] }, @@ -127776,10 +281960,135 @@ "classnotes": "", "final_exam": "Thursday, May 4, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83970\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83970/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988930821418762, + 0.9988548755645752, + 0.9987412095069885, + 0.9987366795539856, + 0.9987523555755615, + 0.9986716508865356, + 0.9985538125038147 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989386200904846, + 0.9987971782684326, + 0.9870963096618652, + 0.9989086389541626, + 0.998900294303894, + 0.9982860684394836, + 0.9964297413825989, + 0.9989268183708191, + 0.9988933205604553, + 0.998895525932312, + 0.9988532066345215 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8181818181818182, + "NEGATIVE": 0.18181818181818182 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8181818181818182 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989159107208252, + 0.998924195766449, + 0.9982553124427795, + 0.9989176988601685, + 0.9988307356834412, + 0.9975929856300354, + 0.9989192485809326, + 0.9981911778450012, + 0.998933732509613, + 0.9988722205162048, + 0.9974855184555054 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 27, + "final_proportion": 0.9310344827586207, + "final_counts": { + "POSITIVE": 27, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9310344827586207, + "NEGATIVE": 0.06896551724137931 + } + } }, { "season_code": "202301", @@ -127818,7 +282127,7 @@ "15:30", "17:20", "SA10 105 - 10 Sachem Street 105", - "https:\/\/map.yale.edu\/?id=1910#!m\/559538" + "https://map.yale.edu/?id=1910#!m/559538" ] ] }, @@ -127827,7 +282136,7 @@ "So" ], "flags": [ - "YC EVST: Core Human\/Social Sci", + "YC EVST: Core Human/Social Sci", "YC EVST: Advanced Seminar", "YC GLBL: Elective" ], @@ -127836,10 +282145,157 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83325\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83325/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.99860018491745, + 0.9989238381385803, + 0.9988252520561218, + 0.9988376498222351, + 0.9989175796508789, + 0.9989101886749268, + 0.9988933205604553, + 0.9988798499107361, + 0.9986162185668945, + 0.998915433883667, + 0.9987706542015076, + 0.9988420605659485, + 0.9988958835601807 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998677670955658, + 0.9987567663192749, + 0.9986740350723267, + 0.9988020658493042, + 0.9989363551139832, + 0.9989389777183533, + 0.9988321661949158, + 0.9988962411880493, + 0.9948179125785828, + 0.7278205752372742, + 0.9979246854782104, + 0.9989235997200012, + 0.9985648989677429 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981452226638794, + 0.9989356398582458, + 0.9988096952438354, + 0.9987229704856873, + 0.9989365935325623, + 0.9983274340629578, + 0.9982132911682129, + 0.9988000392913818, + 0.9988648891448975, + 0.9839995503425598, + 0.998340368270874, + 0.9988783001899719, + 0.998056173324585, + 0.9989100694656372, + 0.9989136457443237 + ], + "sentiment_counts": { + "POSITIVE": 15, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 41, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 41 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -127879,7 +282335,7 @@ "13:30", "15:20", "HQ C64 - Humanities Quadrangle C64", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -127901,10 +282357,151 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84217\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84217/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988019466400146, + 0.998892605304718, + 0.9986458420753479, + 0.9984921216964722, + 0.9987829327583313, + 0.9988552331924438, + 0.9987409710884094, + 0.998660683631897, + 0.9986459612846375, + 0.9989140033721924, + 0.998863935470581 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988906979560852, + 0.9989392161369324, + 0.998782217502594, + 0.9989249110221863, + 0.9984185695648193, + 0.9952402114868164, + 0.999497652053833, + 0.998212456703186, + 0.9994988441467285, + 0.9988641738891602, + 0.9987277388572693, + 0.9987916350364685, + 0.998910665512085 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.7692307692307693, + "NEGATIVE": 0.23076923076923078 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7692307692307693 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9962408542633057, + 0.9989253878593445, + 0.9891315698623657, + 0.9986081719398499, + 0.9953621029853821, + 0.9924246072769165, + 0.9994633793830872, + 0.9989211559295654, + 0.9994999170303345, + 0.998910665512085, + 0.999414324760437, + 0.9988836646080017, + 0.9989055395126343 + ], + "sentiment_counts": { + "NEGATIVE": 5, + "POSITIVE": 8 + }, + "sentiment_distribution": { + "NEGATIVE": 0.38461538461538464, + "POSITIVE": 0.6153846153846154 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6153846153846154 + ] + }, + "final_label": "POSITIVE", + "final_count": 29, + "final_proportion": 0.7837837837837838, + "final_counts": { + "POSITIVE": 29, + "NEGATIVE": 8 + }, + "final_distribution": { + "POSITIVE": 0.7837837837837838, + "NEGATIVE": 0.21621621621621623 + } + } }, { "season_code": "202301", @@ -127948,7 +282545,7 @@ "15:30", "17:20", "WLH 001 - William L. Harkness Hall 001", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -127958,7 +282555,7 @@ "So" ], "flags": [ - "YC EVST: Core Human\/Social Sci", + "YC EVST: Core Human/Social Sci", "YC EVST: Advanced Seminar" ], "regnotes": "", @@ -127966,10 +282563,97 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83975\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83975/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9911019802093506, + 0.9986314177513123 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 1 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9995094537734985, + 0.9995040893554688, + 0.9995088577270508, + 0.9989113807678223, + 0.998471200466156 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.6, + "POSITIVE": 0.4 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.6 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9992269277572632, + 0.9988889098167419, + 0.9989245533943176 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "neutral", + "final_count": 0.5, + "final_proportion": 0.5, + "final_counts": { + "NEGATIVE": 5, + "POSITIVE": 5 + }, + "final_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + } + } }, { "season_code": "202301", @@ -128012,7 +282696,7 @@ "9:00", "10:15", "ESC 110 - Environmental Sciences Center 110", - "https:\/\/map.yale.edu\/?id=1910#!m\/560020" + "https://map.yale.edu/?id=1910#!m/560020" ] ], "Thursday": [ @@ -128020,7 +282704,7 @@ "9:00", "10:15", "ESC 110 - Environmental Sciences Center 110", - "https:\/\/map.yale.edu\/?id=1910#!m\/560020" + "https://map.yale.edu/?id=1910#!m/560020" ] ] }, @@ -128041,10 +282725,135 @@ "classnotes": "", "final_exam": "Tuesday, May 9, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83986\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83986/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9972192049026489, + 0.998807430267334, + 0.9986886382102966, + 0.9978384375572205, + 0.9989041090011597, + 0.9988611936569214, + 0.99888676404953, + 0.9980066418647766, + 0.9988403916358948, + 0.9986371397972107 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989226460456848, + 0.9989256262779236, + 0.9994869232177734, + 0.998843789100647, + 0.9989340901374817, + 0.998659610748291, + 0.9988831877708435, + 0.9985139966011047, + 0.9989125728607178 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.7777777777777778, + "NEGATIVE": 0.2222222222222222 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7777777777777778 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986080527305603, + 0.9988961219787598, + 0.9972487092018127, + 0.9985396862030029, + 0.9989063739776611, + 0.9989249110221863, + 0.99869304895401, + 0.9989124536514282, + 0.9989282488822937, + 0.9988740086555481 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 27, + "final_proportion": 0.9310344827586207, + "final_counts": { + "POSITIVE": 27, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9310344827586207, + "NEGATIVE": 0.06896551724137931 + } + } }, { "season_code": "202301", @@ -128087,7 +282896,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -128126,7 +282963,7 @@ "11:35", "12:50", "ESC 110 - Environmental Sciences Center 110", - "https:\/\/map.yale.edu\/?id=1910#!m\/560020" + "https://map.yale.edu/?id=1910#!m/560020" ] ], "Thursday": [ @@ -128134,7 +282971,7 @@ "11:35", "12:50", "ESC 110 - Environmental Sciences Center 110", - "https:\/\/map.yale.edu\/?id=1910#!m\/560020" + "https://map.yale.edu/?id=1910#!m/560020" ] ] }, @@ -128144,17 +282981,142 @@ ], "flags": [ "YC EVST: Core BA Natural Scie", - "YC EVST: B.S. NatSci\/Field Lab" + "YC EVST: B.S. NatSci/Field Lab" ], "regnotes": "", "rp_attr": "", "classnotes": "Preference will be given to YSE students, EVST seniors and juniors, and E&EB majors.", "final_exam": "Monday, May 8, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83984\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83984/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988021850585938, + 0.9988093376159668, + 0.9987090826034546, + 0.9989235997200012, + 0.9988585710525513, + 0.9985994696617126, + 0.9988605976104736, + 0.9988070726394653, + 0.998830258846283 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988647699356079, + 0.9987874627113342, + 0.9988347887992859, + 0.9989232420921326, + 0.9988313317298889, + 0.9989027976989746, + 0.9984787106513977, + 0.9985548853874207 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981436729431152, + 0.9989182949066162, + 0.9987651109695435, + 0.9988358616828918, + 0.9989180564880371, + 0.9930166006088257, + 0.9989044666290283, + 0.9987332224845886, + 0.9989073276519775, + 0.9989186525344849, + 0.9988166093826294, + 0.9989036321640015 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9166666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 28, + "final_proportion": 0.9655172413793104, + "final_counts": { + "POSITIVE": 28, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9655172413793104, + "NEGATIVE": 0.034482758620689655 + } + } }, { "season_code": "202301", @@ -128193,7 +283155,7 @@ "13:00", "14:15", "HLH17 115 - 17 Hillhouse Avenue 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Wednesday": [ @@ -128201,7 +283163,7 @@ "13:00", "14:15", "HLH17 115 - 17 Hillhouse Avenue 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -128217,10 +283179,131 @@ "classnotes": "", "final_exam": "Tuesday, May 9, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83583\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83583/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982351064682007, + 0.9989233613014221, + 0.9986218214035034, + 0.9987925291061401, + 0.9988555908203125, + 0.995819091796875, + 0.9987886548042297, + 0.9989272952079773 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998798131942749, + 0.9989222288131714, + 0.9986710548400879, + 0.998903751373291, + 0.9988493919372559, + 0.9988844990730286, + 0.9986717700958252, + 0.9989041090011597, + 0.9988871216773987 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988312125205994, + 0.9986433386802673, + 0.9988918900489807, + 0.9978691339492798, + 0.9989333748817444, + 0.9978603720664978, + 0.9944349527359009, + 0.9989134073257446, + 0.9989190101623535, + 0.9989129304885864 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 26, + "final_proportion": 0.9629629629629629, + "final_counts": { + "POSITIVE": 26, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9629629629629629, + "NEGATIVE": 0.037037037037037035 + } + } }, { "season_code": "202301", @@ -128261,7 +283344,7 @@ "10:30", "11:45", "ESC 110 - Environmental Sciences Center 110", - "https:\/\/map.yale.edu\/?id=1910#!m\/560020" + "https://map.yale.edu/?id=1910#!m/560020" ] ], "Wednesday": [ @@ -128269,7 +283352,7 @@ "10:30", "11:45", "ESC 110 - Environmental Sciences Center 110", - "https:\/\/map.yale.edu\/?id=1910#!m\/560020" + "https://map.yale.edu/?id=1910#!m/560020" ] ] }, @@ -128286,10 +283369,129 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83983\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83983/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9995111227035522, + 0.9989364743232727, + 0.9987607002258301, + 0.9988276362419128, + 0.9995059967041016, + 0.998873770236969, + 0.9988117218017578, + 0.9989109039306641, + 0.9978885054588318 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 7 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2222222222222222, + "POSITIVE": 0.7777777777777778 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7777777777777778 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9995124340057373, + 0.9988172054290771, + 0.9923093318939209, + 0.9988491535186768, + 0.9995143413543701, + 0.9989230036735535, + 0.9987806677818298, + 0.9947256445884705 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 6 + }, + "sentiment_distribution": { + "NEGATIVE": 0.25, + "POSITIVE": 0.75 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9995095729827881, + 0.9988215565681458, + 0.9981653094291687, + 0.998860239982605, + 0.9995077848434448, + 0.9988996982574463, + 0.998842179775238, + 0.9988991022109985, + 0.9995162487030029 + ], + "sentiment_counts": { + "NEGATIVE": 4, + "POSITIVE": 5 + }, + "sentiment_distribution": { + "NEGATIVE": 0.4444444444444444, + "POSITIVE": 0.5555555555555556 + }, + "sentiment_overall": [ + "POSITIVE", + 0.5555555555555556 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 0.6923076923076923, + "final_counts": { + "NEGATIVE": 8, + "POSITIVE": 18 + }, + "final_distribution": { + "NEGATIVE": 0.3076923076923077, + "POSITIVE": 0.6923076923076923 + } + } }, { "season_code": "202301", @@ -128330,7 +283532,7 @@ "10:30", "11:50", "KRN 301 - Kroon Hall 301", - "https:\/\/map.yale.edu\/?id=1910#!m\/559995" + "https://map.yale.edu/?id=1910#!m/559995" ] ], "Thursday": [ @@ -128338,7 +283540,7 @@ "10:30", "11:50", "KRN 301 - Kroon Hall 301", - "https:\/\/map.yale.edu\/?id=1910#!m\/559995" + "https://map.yale.edu/?id=1910#!m/559995" ] ] }, @@ -128356,10 +283558,245 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83989\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83989/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988275170326233, + 0.9988946318626404, + 0.998729407787323, + 0.9992610812187195, + 0.998835027217865, + 0.9988985061645508, + 0.9988452196121216, + 0.9988211989402771, + 0.9988341927528381, + 0.9986065030097961, + 0.998936116695404, + 0.9946814179420471, + 0.9986795783042908, + 0.9988184571266174, + 0.9985289573669434, + 0.9986119270324707, + 0.9967750906944275, + 0.9986779093742371, + 0.9941275119781494, + 0.9956504702568054, + 0.9987271428108215, + 0.9987574815750122, + 0.9986284971237183, + 0.9985648989677429, + 0.9987568855285645, + 0.9987369179725647 + ], + "sentiment_counts": { + "POSITIVE": 25, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9615384615384616, + "NEGATIVE": 0.038461538461538464 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9615384615384616 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9951076507568359, + 0.9994944334030151, + 0.9988332390785217, + 0.9967741370201111, + 0.9994920492172241, + 0.998891294002533, + 0.9989238381385803, + 0.9934818148612976, + 0.9931392073631287, + 0.9994889497756958, + 0.9995054006576538, + 0.9959478974342346, + 0.9989339709281921, + 0.993433952331543, + 0.9878794550895691, + 0.9994902610778809, + 0.9985858201980591, + 0.9987394213676453, + 0.998323380947113, + 0.9988505840301514, + 0.9989211559295654, + 0.9970923662185669, + 0.9973465204238892, + 0.9991353154182434, + 0.9982056617736816, + 0.9988642930984497 + ], + "sentiment_counts": { + "NEGATIVE": 13, + "POSITIVE": 13 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984593391418457, + 0.9979299306869507, + 0.987567663192749, + 0.9967310428619385, + 0.998766303062439, + 0.9975093603134155, + 0.9983795881271362, + 0.998904824256897, + 0.9987963438034058, + 0.9989084005355835, + 0.995220959186554, + 0.9994876384735107, + 0.9994996786117554, + 0.9966764450073242, + 0.9989376664161682, + 0.9981131553649902, + 0.998868465423584, + 0.9994975328445435, + 0.9988456964492798, + 0.9994959831237793, + 0.998843789100647, + 0.9955320358276367, + 0.997884213924408, + 0.9987637996673584, + 0.9984101057052612, + 0.9988148212432861, + 0.9986041188240051, + 0.9981021285057068, + 0.9988490343093872, + 0.9991829991340637, + 0.9927445650100708, + 0.9989068508148193 + ], + "sentiment_counts": { + "POSITIVE": 23, + "NEGATIVE": 9 + }, + "sentiment_distribution": { + "POSITIVE": 0.71875, + "NEGATIVE": 0.28125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.71875 + ] + }, + "final_label": "POSITIVE", + "final_count": 61, + "final_proportion": 0.7261904761904762, + "final_counts": { + "POSITIVE": 61, + "NEGATIVE": 23 + }, + "final_distribution": { + "POSITIVE": 0.7261904761904762, + "NEGATIVE": 0.27380952380952384 + } + } }, { "season_code": "202301", @@ -128399,7 +283836,7 @@ "19:00", "22:00", "HQ 127 - Humanities Quadrangle 127", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -128407,7 +283844,7 @@ "10:30", "13:20", "CCAM 110 - Center for Collab Arts & Media 110", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -128423,10 +283860,38 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85399\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/85399/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -128487,10 +283952,93 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83993\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83993/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988704323768616, + 0.9989033937454224, + 0.998374342918396 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9981757402420044, + 0.9989141225814819, + 0.9976440072059631 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9980484247207642, + 0.9987350106239319 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 0.875, + "final_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + } + } }, { "season_code": "202301", @@ -128551,10 +284099,93 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83998\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83998/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987356066703796, + 0.995657205581665 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998635470867157, + 0.9988793730735779, + 0.9959802627563477, + 0.9982149600982666 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9971616268157959, + 0.9978711605072021, + 0.9802706241607666 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 9 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -128591,7 +284222,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -128631,7 +284290,7 @@ "13:30", "15:20", "HQ 132 - Humanities Quadrangle 132", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -128640,7 +284299,7 @@ "So" ], "flags": [ - "YC EVST: Core Human\/Social Sci", + "YC EVST: Core Human/Social Sci", "YC GLHTH: Health & Societies", "YC GLHTH: Polit Econ & Govern" ], @@ -128649,10 +284308,145 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84066\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84066/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988701939582825, + 0.9988918900489807, + 0.9921477437019348, + 0.9988276362419128, + 0.9987004995346069, + 0.9988986253738403, + 0.9989198446273804, + 0.9988481998443604, + 0.9988188147544861, + 0.9987941980361938, + 0.9987064599990845 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9823588728904724, + 0.9988149404525757, + 0.9989333748817444, + 0.9989256262779236, + 0.9989344477653503, + 0.9989063739776611, + 0.9989162683486938, + 0.9983733892440796, + 0.9973631501197815, + 0.9989039897918701, + 0.9989022016525269 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 8 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2727272727272727, + "POSITIVE": 0.7272727272727273 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7272727272727273 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998782217502594, + 0.9987050294876099, + 0.9988222718238831, + 0.9948569536209106, + 0.9984742999076843, + 0.9984195232391357, + 0.9988653659820557, + 0.9989256262779236, + 0.9986452460289001, + 0.9988420605659485, + 0.9984684586524963, + 0.9988973140716553 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9166666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 30, + "final_proportion": 0.8823529411764706, + "final_counts": { + "POSITIVE": 30, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.8823529411764706, + "NEGATIVE": 0.11764705882352941 + } + } }, { "season_code": "202301", @@ -128690,7 +284484,7 @@ "10:30", "11:20", "LC 102 - Linsly-Chittenden Hall 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -128698,7 +284492,7 @@ "10:30", "11:20", "LC 102 - Linsly-Chittenden Hall 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -128709,17 +284503,274 @@ "Hu" ], "flags": [ - "YC English: 20th\/21st Century" + "YC English: 20th/21st Century" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "Friday, May 5, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84002\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84002/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9962520003318787, + 0.9987724423408508, + 0.9988201260566711, + 0.9988813996315002, + 0.9988885521888733, + 0.998916506767273, + 0.9989332556724548, + 0.9989112615585327, + 0.9987566471099854, + 0.9989287257194519, + 0.9987062215805054, + 0.9980868101119995, + 0.9986463189125061, + 0.9948846697807312, + 0.9988886713981628, + 0.9993695616722107, + 0.9987879395484924, + 0.9988603591918945, + 0.9987605810165405, + 0.9971306920051575, + 0.9987145662307739, + 0.9988999366760254, + 0.9989193677902222, + 0.9988515377044678, + 0.9988577365875244, + 0.9989191293716431, + 0.9985929131507874, + 0.9989301562309265, + 0.9989043474197388, + 0.9987394213676453, + 0.9751425385475159, + 0.9988570213317871, + 0.9989290833473206, + 0.998902440071106 + ], + "sentiment_counts": { + "POSITIVE": 33, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9705882352941176, + "NEGATIVE": 0.029411764705882353 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9705882352941176 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.909452497959137, + 0.9987956285476685, + 0.9989326596260071, + 0.9978213310241699, + 0.9989240765571594, + 0.9988818764686584, + 0.9988681077957153, + 0.9989123344421387, + 0.9988604784011841, + 0.9994557499885559, + 0.9986262321472168, + 0.9989191293716431, + 0.9988981485366821, + 0.998880922794342, + 0.9945606589317322, + 0.9988111257553101, + 0.9989184141159058, + 0.998893678188324, + 0.9987496137619019, + 0.9987984895706177, + 0.9986704587936401, + 0.9994981288909912, + 0.9987940788269043, + 0.9988553524017334, + 0.9989338517189026, + 0.9989125728607178, + 0.9987850785255432, + 0.9988166093826294 + ], + "sentiment_counts": { + "POSITIVE": 24, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988387227058411, + 0.9988849759101868, + 0.9988982677459717, + 0.9989245533943176, + 0.9988609552383423, + 0.9989004135131836, + 0.9989191293716431, + 0.9989315867424011, + 0.9977080821990967, + 0.9986833930015564, + 0.998793363571167, + 0.9987427592277527, + 0.9988192915916443, + 0.9980549812316895, + 0.9980157613754272, + 0.997117280960083, + 0.9988784193992615, + 0.9989042282104492, + 0.9987724423408508, + 0.9987695813179016, + 0.9986287355422974, + 0.9989264607429504, + 0.998915433883667, + 0.9989099502563477, + 0.9994980096817017, + 0.998890221118927, + 0.9989243149757385, + 0.9988569021224976, + 0.9989268183708191, + 0.9931409955024719, + 0.9989209175109863, + 0.9990161657333374, + 0.9988601207733154 + ], + "sentiment_counts": { + "POSITIVE": 28, + "NEGATIVE": 5 + }, + "sentiment_distribution": { + "POSITIVE": 0.8484848484848485, + "NEGATIVE": 0.15151515151515152 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8484848484848485 + ] + }, + "final_label": "POSITIVE", + "final_count": 85, + "final_proportion": 0.8947368421052632, + "final_counts": { + "POSITIVE": 85, + "NEGATIVE": 10 + }, + "final_distribution": { + "POSITIVE": 0.8947368421052632, + "NEGATIVE": 0.10526315789473684 + } + } }, { "season_code": "202301", @@ -128751,7 +284802,7 @@ "15:30", "16:20", "WLH 004 - William L. Harkness Hall 004", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -128770,7 +284821,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -128802,7 +284881,7 @@ "16:30", "17:20", "WTS A39 - Watson Center 60 Sachem Street A39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -128821,7 +284900,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -128853,7 +284960,7 @@ "19:00", "19:50", "HQ 127 - Humanities Quadrangle 127", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -128872,7 +284979,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -128904,7 +285039,7 @@ "19:00", "19:50", "LC 213 - Linsly-Chittenden Hall 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -128923,7 +285058,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -128955,7 +285118,7 @@ "13:30", "14:20", "HQ C07 - Humanities Quadrangle C07", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -128974,7 +285137,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -129006,7 +285197,7 @@ "14:30", "15:20", "LC 105 - Linsly-Chittenden Hall 105", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -129025,7 +285216,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -129057,7 +285276,7 @@ "10:30", "11:20", "HQ 129 - Humanities Quadrangle 129", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -129076,7 +285295,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -129108,7 +285355,7 @@ "11:35", "12:25", "LC 213 - Linsly-Chittenden Hall 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -129127,7 +285374,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -129165,7 +285440,7 @@ "13:30", "17:20", "EDG36 023 - 36 Edgewood Ave. Sculpture Bld 023", - "https:\/\/map.yale.edu\/?id=1910#!m\/560028" + "https://map.yale.edu/?id=1910#!m/560028" ] ] }, @@ -129179,10 +285454,115 @@ "classnotes": "Instructor: Luchina Fisher", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83473\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83473/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987059831619263, + 0.9989215135574341, + 0.9987737536430359, + 0.9987257122993469, + 0.9988501071929932, + 0.9988240599632263, + 0.9987313151359558 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984973669052124, + 0.9982321858406067, + 0.9994956254959106, + 0.9988755583763123, + 0.9988369345664978, + 0.9989387392997742 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988994598388672, + 0.9982553124427795, + 0.9994051456451416, + 0.9988328814506531, + 0.9987418055534363, + 0.9988914132118225 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 0.8947368421052632, + "final_counts": { + "POSITIVE": 17, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8947368421052632, + "NEGATIVE": 0.10526315789473684 + } + } }, { "season_code": "202301", @@ -129220,13 +285600,13 @@ "14:30", "15:20", "HQ L01 - Humanities Quadrangle L01", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ], [ "19:00", "22:00", "HQ L02 - Humanities Quadrangle L02", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -129234,7 +285614,7 @@ "14:30", "15:20", "HQ L01 - Humanities Quadrangle L01", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -129252,10 +285632,225 @@ "classnotes": "Instructor Permission Required. \nWhen submitting your request, please indicate the section (A,B,C,D) you intend to join.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84008\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84008/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988629817962646, + 0.9988934397697449, + 0.9987406134605408, + 0.9987249970436096, + 0.9989017248153687, + 0.9989293217658997, + 0.9987717270851135, + 0.9988516569137573, + 0.998388409614563, + 0.9988344311714172, + 0.9989293217658997, + 0.998916506767273, + 0.9988371729850769, + 0.9988880753517151, + 0.9915394186973572, + 0.9988665580749512, + 0.9987614154815674, + 0.9987265467643738, + 0.9983407258987427, + 0.9989340901374817, + 0.996711015701294, + 0.9980133771896362, + 0.9987173080444336 + ], + "sentiment_counts": { + "POSITIVE": 23, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989257454872131, + 0.9988918900489807, + 0.9989373087882996, + 0.998927652835846, + 0.9989249110221863, + 0.9989311099052429, + 0.9989256262779236, + 0.9988069534301758, + 0.998902440071106, + 0.9989141225814819, + 0.9989114999771118, + 0.9989393353462219, + 0.9988598823547363, + 0.9988732933998108, + 0.9988572597503662, + 0.9989303946495056, + 0.9989008903503418, + 0.9989148378372192, + 0.998934805393219, + 0.9985055923461914, + 0.9989272952079773, + 0.9989266991615295, + 0.9988861680030823 + ], + "sentiment_counts": { + "POSITIVE": 23, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989150762557983, + 0.9982694387435913, + 0.9987974166870117, + 0.9989162683486938, + 0.998932421207428, + 0.9986732006072998, + 0.9989184141159058, + 0.9989326596260071, + 0.9988934397697449, + 0.9988780617713928, + 0.9986988306045532, + 0.9988755583763123, + 0.9980168342590332, + 0.9989332556724548, + 0.9989142417907715, + 0.9986925721168518, + 0.9989237189292908, + 0.9987543821334839, + 0.9989137649536133, + 0.9989027976989746, + 0.9989294409751892, + 0.998894989490509, + 0.9989317059516907, + 0.9989257454872131, + 0.9989168643951416, + 0.9989018440246582, + 0.998924195766449, + 0.9989320635795593, + 0.9981426000595093 + ], + "sentiment_counts": { + "POSITIVE": 29, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 75, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 75 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -129286,7 +285881,7 @@ "16:00", "16:50", "HQ 113 - Humanities Quadrangle 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -129305,7 +285900,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -129336,7 +285959,7 @@ "16:00", "16:50", "HQ 129 - Humanities Quadrangle 129", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -129355,7 +285978,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -129386,7 +286037,7 @@ "16:00", "16:50", "HQ 109 - Humanities Quadrangle 109", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -129405,7 +286056,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -129436,7 +286115,7 @@ "16:00", "16:50", "HQ 127 - Humanities Quadrangle 127", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -129455,7 +286134,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -129496,7 +286203,7 @@ "13:00", "14:15", "WLH 113 - William L. Harkness Hall 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -129504,7 +286211,7 @@ "13:00", "14:15", "WLH 113 - William L. Harkness Hall 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -129518,10 +286225,143 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86173\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/86173/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987286925315857, + 0.9987770915031433, + 0.9988585710525513, + 0.9987416863441467, + 0.9989053010940552, + 0.9986703395843506, + 0.9985929131507874, + 0.9988076686859131, + 0.9987892508506775, + 0.9989145994186401, + 0.997857391834259 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989179372787476, + 0.9988939166069031, + 0.9982935786247253, + 0.9988971948623657, + 0.9989332556724548, + 0.9989209175109863, + 0.9988062381744385, + 0.9750773310661316, + 0.9988754391670227, + 0.9989145994186401, + 0.9987932443618774, + 0.9983556866645813 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9166666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988995790481567, + 0.9981922507286072, + 0.9989373087882996, + 0.9988808035850525, + 0.9989155530929565, + 0.998898983001709, + 0.9988975524902344, + 0.9989354014396667, + 0.9902792572975159, + 0.999200165271759 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "final_label": "POSITIVE", + "final_count": 31, + "final_proportion": 0.9393939393939394, + "final_counts": { + "POSITIVE": 31, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9393939393939394, + "NEGATIVE": 0.06060606060606061 + } + } }, { "season_code": "202301", @@ -129561,7 +286401,7 @@ "13:00", "14:15", "HQ 129 - Humanities Quadrangle 129", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -129569,7 +286409,7 @@ "13:00", "14:15", "HQ 129 - Humanities Quadrangle 129", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Tuesday": [ @@ -129577,7 +286417,7 @@ "19:00", "22:00", "HQ L01 - Humanities Quadrangle L01", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -129586,7 +286426,7 @@ "Hu" ], "flags": [ - "YC English: 20th\/21st Century", + "YC English: 20th/21st Century", "YC FILM: World Cinema", "YC CPLT: Early Modern", "Writing Skill (Opt.)" @@ -129596,10 +286436,137 @@ "classnotes": "Plus film screening on Tuesdays - time TBA", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84388\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84388/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988595247268677, + 0.9946152567863464, + 0.9960386753082275, + 0.9943276047706604, + 0.9984118938446045, + 0.9987768530845642, + 0.9988961219787598, + 0.9988929629325867, + 0.9989141225814819, + 0.998917818069458 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994737505912781, + 0.9989266991615295, + 0.9940938353538513, + 0.9989174604415894, + 0.9988634586334229, + 0.9989370703697205, + 0.9994889497756958, + 0.9974939823150635 + ], + "sentiment_counts": { + "NEGATIVE": 4, + "POSITIVE": 4 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987943172454834, + 0.9985396862030029, + 0.9987170696258545, + 0.9989104270935059, + 0.9989056587219238, + 0.9945524334907532, + 0.9987840056419373, + 0.9988294243812561, + 0.9989365935325623, + 0.9988839030265808, + 0.9988992214202881, + 0.9985396862030029 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9166666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 25, + "final_proportion": 0.8333333333333334, + "final_counts": { + "POSITIVE": 25, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + } + } }, { "season_code": "202301", @@ -129637,7 +286604,7 @@ "13:00", "14:15", "HQ 132 - Humanities Quadrangle 132", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -129645,7 +286612,7 @@ "13:00", "14:15", "HQ 132 - Humanities Quadrangle 132", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Saturday": [ @@ -129653,7 +286620,7 @@ "19:00", "22:00", "HQ 109 - Humanities Quadrangle 109", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -129667,10 +286634,107 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84729\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84729/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986767172813416, + 0.9988625049591064, + 0.998883068561554, + 0.9988157749176025, + 0.9988585710525513, + 0.998923122882843 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989161491394043, + 0.9988330006599426, + 0.9989376664161682, + 0.9987642765045166, + 0.9988202452659607 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983280301094055, + 0.9989286065101624, + 0.9989275336265564, + 0.9989224672317505, + 0.9988356232643127 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 16 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -129709,7 +286773,7 @@ "13:30", "15:20", "RKZ 241 - Rosenkranz Hall 241", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -129725,10 +286789,95 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85110\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85110/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998704195022583, + 0.9987578392028809, + 0.9987120628356934 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989099502563477, + 0.9987390637397766, + 0.9987488985061646, + 0.9985461235046387 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987868666648865, + 0.9988558292388916, + 0.9988013505935669 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 10 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -129765,7 +286914,7 @@ "9:00", "10:15", "WLH 202 - William L. Harkness Hall 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -129773,7 +286922,7 @@ "9:00", "10:15", "WLH 202 - William L. Harkness Hall 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -129781,7 +286930,7 @@ "19:00", "22:00", "WLH 120 - William L. Harkness Hall 120", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -129797,10 +286946,87 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84012\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84012/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987302422523499, + 0.9987126588821411 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988201260566711, + 0.9989060163497925 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989033937454224, + 0.9988915324211121 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 6 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -129840,7 +287066,7 @@ "16:00", "17:15", "HQ 225 - Humanities Quadrangle 225", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -129848,7 +287074,7 @@ "16:00", "17:15", "HQ 225 - Humanities Quadrangle 225", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -129857,7 +287083,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -129865,10 +287091,111 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85734\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85734/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987499713897705, + 0.9987164735794067, + 0.9988082647323608, + 0.9987187385559082 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984831213951111, + 0.9989250302314758, + 0.9989160299301147, + 0.9987025260925293, + 0.9989237189292908, + 0.998938262462616 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989321827888489, + 0.9989129304885864, + 0.9989251494407654, + 0.998212456703186, + 0.9988704323768616, + 0.9989181756973267, + 0.9989356398582458, + 0.9988330006599426 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 18 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -129907,7 +287234,7 @@ "15:30", "17:20", "WLH 011 - William L. Harkness Hall 011", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -129915,7 +287242,7 @@ "19:00", "22:00", "HQ 109 - Humanities Quadrangle 109", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -129929,10 +287256,111 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85958\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85958/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986597299575806, + 0.9988497495651245, + 0.9988797307014465, + 0.9989299178123474, + 0.9988003969192505, + 0.9988829493522644 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998918890953064, + 0.9989271759986877, + 0.9977853298187256, + 0.9993553757667542, + 0.9989044666290283 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.6, + "NEGATIVE": 0.4 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985954165458679, + 0.9989338517189026, + 0.9987930059432983, + 0.9989270567893982, + 0.9988512992858887, + 0.9989194869995117 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 0.8823529411764706, + "final_counts": { + "POSITIVE": 15, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8823529411764706, + "NEGATIVE": 0.11764705882352941 + } + } }, { "season_code": "202301", @@ -129970,7 +287398,7 @@ "19:00", "22:00", "HQ L01 - Humanities Quadrangle L01", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -129978,7 +287406,7 @@ "13:30", "15:20", "WLH 202 - William L. Harkness Hall 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -129992,10 +287420,105 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84017\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84017/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987987279891968, + 0.9987961053848267, + 0.9988191723823547, + 0.998809814453125, + 0.9983493089675903 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988710284233093, + 0.9989112615585327, + 0.9987612962722778, + 0.9989017248153687 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989331364631653, + 0.998906135559082, + 0.9989193677902222, + 0.998887836933136, + 0.9978651404380798, + 0.9989386200904846 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 15 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -130033,7 +287556,7 @@ "13:30", "15:20", "WALL81 201 - 81 Wall Street 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ], "Saturday": [ @@ -130041,7 +287564,7 @@ "19:00", "22:00", "HQ 127 - Humanities Quadrangle 127", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -130059,10 +287582,109 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85841\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85841/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988237023353577, + 0.9962582588195801, + 0.998925507068634, + 0.9989169836044312, + 0.9988961219787598 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989369511604309, + 0.9988805651664734, + 0.9962582588195801, + 0.9987672567367554, + 0.9988778233528137, + 0.9989050626754761 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9980652928352356, + 0.998849630355835, + 0.9988816380500793, + 0.9994797110557556, + 0.9969326257705688 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.4, + "POSITIVE": 0.6 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 0.6875, + "final_counts": { + "POSITIVE": 11, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.6875, + "NEGATIVE": 0.3125 + } + } }, { "season_code": "202301", @@ -130099,7 +287721,7 @@ "12:00", "15:00", "HQ 129 - Humanities Quadrangle 129", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -130115,10 +287737,121 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86184\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/86184/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989296793937683, + 0.9988738894462585, + 0.9986425042152405, + 0.9989018440246582, + 0.998907208442688, + 0.9989120960235596, + 0.998653769493103, + 0.9989251494407654 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988539218902588, + 0.9989319443702698, + 0.9988008737564087, + 0.9988932013511658, + 0.9988866448402405, + 0.9988207221031189 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989367127418518, + 0.9980940222740173, + 0.9979664087295532, + 0.9981654286384583, + 0.998927891254425, + 0.9989259839057922, + 0.9988173842430115, + 0.9988988637924194 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "final_label": "POSITIVE", + "final_count": 21, + "final_proportion": 0.9545454545454546, + "final_counts": { + "POSITIVE": 21, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9545454545454546, + "NEGATIVE": 0.045454545454545456 + } + } }, { "season_code": "202301", @@ -130159,7 +287892,7 @@ "19:00", "22:00", "HQ L02 - Humanities Quadrangle L02", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -130167,7 +287900,7 @@ "9:25", "11:15", "HQ 113 - Humanities Quadrangle 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -130183,15 +287916,94 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84021\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84021/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "", - "description": "East Asian screen culture, ranging from cinema, television, musical video, to online games, has (re)shaped the global and national\/regional imaginings of East Asia. The Post-Cold War intensification of intra-Asian interactions has precipitated the rise of a Pan-Asian regional identity wherein the nation-state is not yet obsolete. What role does screen culture play in the border-crossing interplay among languages, ideologies, aesthetics, and affect? How do we understand the storytelling and politics of East Asian screen cultures in relation to its historical and social context? How does screen culture capture local\/global desires in a digital time? Within the contemporary media ecologies, how does screen culture create an audiovisual relation that traverses screen and actuality? How do screen culture continue to push forward the history of transformation of sign system from the written words to visual moving images in the contemporary sensory over-loaded world of screens. This course deals with issues of (trans)nationalism, (un)translatability, locality and globality, (post)modernity, virtuality and actuality, and politics of gender. Students learn how to think and write about screen cultures of East Asia in particular and of contemporary screen culture in general.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988338351249695, + 0.9989303946495056 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9975897073745728, + 0.9981322884559631 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9953613877296448, + 0.9988667964935303, + 0.9989263415336609 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 7 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } + }, + { + "season_code": "202301", + "requirements": "", + "description": "East Asian screen culture, ranging from cinema, television, musical video, to online games, has (re)shaped the global and national/regional imaginings of East Asia. The Post-Cold War intensification of intra-Asian interactions has precipitated the rise of a Pan-Asian regional identity wherein the nation-state is not yet obsolete. What role does screen culture play in the border-crossing interplay among languages, ideologies, aesthetics, and affect? How do we understand the storytelling and politics of East Asian screen cultures in relation to its historical and social context? How does screen culture capture local/global desires in a digital time? Within the contemporary media ecologies, how does screen culture create an audiovisual relation that traverses screen and actuality? How do screen culture continue to push forward the history of transformation of sign system from the written words to visual moving images in the contemporary sensory over-loaded world of screens. This course deals with issues of (trans)nationalism, (un)translatability, locality and globality, (post)modernity, virtuality and actuality, and politics of gender. Students learn how to think and write about screen cultures of East Asia in particular and of contemporary screen culture in general.", "short_title": "Politics of East Asian Screen...", "title": "Politics of East Asian Screen Culture", "school": "YC", @@ -130225,7 +288037,7 @@ "11:35", "12:50", "WLH 114 - William L. Harkness Hall 114", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -130233,7 +288045,7 @@ "11:35", "12:50", "WLH 114 - William L. Harkness Hall 114", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -130247,10 +288059,147 @@ "classnotes": "Course restricted to undergraduate enrollment only.", "final_exam": "Monday, May 8, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83776\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83776/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989365935325623, + 0.9881654977798462, + 0.998796820640564, + 0.9977607727050781, + 0.9988763928413391, + 0.9988577365875244, + 0.9973335266113281, + 0.9989321827888489, + 0.9988293051719666, + 0.9984190464019775, + 0.9988771080970764, + 0.9987854361534119 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9166666666666666 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987342953681946, + 0.9986086487770081, + 0.9989210367202759, + 0.9988417029380798, + 0.998742401599884, + 0.9986854195594788, + 0.9989042282104492, + 0.9989284873008728, + 0.9988787770271301, + 0.9989230036735535, + 0.9987078905105591 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987133741378784, + 0.9988294243812561, + 0.9989086389541626, + 0.9985887408256531, + 0.9988895058631897, + 0.9988771080970764, + 0.9962624907493591, + 0.9989277720451355, + 0.9989140033721924, + 0.9986685514450073, + 0.9986792206764221, + 0.998908519744873 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 34, + "final_proportion": 0.9714285714285714, + "final_counts": { + "POSITIVE": 34, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9714285714285714, + "NEGATIVE": 0.02857142857142857 + } + } }, { "season_code": "202301", @@ -130289,7 +288238,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -130326,7 +288303,7 @@ "15:30", "17:20", "HQ 127 - Humanities Quadrangle 127", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -130340,10 +288317,109 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86457\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86457/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989176988601685, + 0.9987075328826904, + 0.9986876845359802, + 0.9943116903305054, + 0.9981599450111389 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9950965046882629, + 0.9986635446548462, + 0.9879494905471802, + 0.9982075691223145, + 0.9989092350006104 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988813996315002, + 0.9989200830459595, + 0.99882572889328, + 0.997117280960083, + 0.9988148212432861, + 0.9959985017776489, + 0.9985620379447937 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 17 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -130380,7 +288456,7 @@ "9:25", "11:15", "HQ 113 - Humanities Quadrangle 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -130396,10 +288472,101 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84031\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84031/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987083673477173, + 0.9988459348678589, + 0.9988596439361572, + 0.9988946318626404, + 0.9985734224319458 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988935589790344, + 0.9988598823547363, + 0.9988407492637634, + 0.9988492727279663 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989210367202759, + 0.9985357522964478, + 0.9989022016525269, + 0.9978251457214355 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 13 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -130437,7 +288604,7 @@ "13:30", "17:20", "HQ 307 - Humanities Quadrangle 307", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -130451,10 +288618,95 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83480\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83480/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987738728523254, + 0.9989066123962402 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986646175384521, + 0.9989315867424011, + 0.9909951090812683 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994078874588013, + 0.9948681592941284, + 0.9988642930984497, + 0.9988452196121216 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.25, + "POSITIVE": 0.75 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 8, + "final_proportion": 0.8888888888888888, + "final_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + } + } }, { "season_code": "202301", @@ -130492,7 +288744,7 @@ "8:25", "12:20", "EDG36 023 - 36 Edgewood Ave. Sculpture Bld 023", - "https:\/\/map.yale.edu\/?id=1910#!m\/560028" + "https://map.yale.edu/?id=1910#!m/560028" ] ] }, @@ -130511,7 +288763,100 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988390803337097, + 0.9987114667892456, + 0.9987195730209351, + 0.9988120794296265 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989245533943176, + 0.9988880753517151, + 0.998412013053894, + 0.998638927936554 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986826777458191, + 0.9985713958740234, + 0.9995083808898926, + 0.9988490343093872, + 0.998340368270874 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 0.8461538461538461, + "final_counts": { + "POSITIVE": 11, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8461538461538461, + "NEGATIVE": 0.15384615384615385 + } + } }, { "season_code": "202301", @@ -130551,7 +288896,7 @@ "13:00", "14:15", "WLH 003 - William L. Harkness Hall 003", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -130559,7 +288904,7 @@ "13:00", "14:15", "WLH 003 - William L. Harkness Hall 003", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -130577,10 +288922,133 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84822\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84822/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988582134246826, + 0.9989280104637146, + 0.998777449131012, + 0.9989126920700073, + 0.9989179372787476, + 0.998863697052002, + 0.9988943934440613, + 0.9987834095954895, + 0.9986822009086609, + 0.9988324046134949 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987791180610657, + 0.9989171028137207, + 0.9989173412322998, + 0.9988341927528381, + 0.9982849955558777, + 0.9989211559295654, + 0.9975069165229797, + 0.9946286082267761 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988653659820557, + 0.9989029169082642, + 0.998855471611023, + 0.9989078044891357, + 0.9986862540245056, + 0.9988903403282166, + 0.9987357258796692, + 0.9987905621528625, + 0.9989303946495056, + 0.9989020824432373, + 0.9988893866539001 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 29, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 29 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -130621,7 +289089,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -130660,7 +289156,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -130699,7 +289223,7 @@ "11:35", "12:50", "LC 213 - Linsly-Chittenden Hall 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -130707,7 +289231,7 @@ "11:35", "12:50", "LC 213 - Linsly-Chittenden Hall 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -130727,10 +289251,109 @@ "classnotes": "Students interested in taking this course should submit a request for instructor permission through YCS.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83963\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83963/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988842606544495, + 0.9886834025382996, + 0.9987492561340332, + 0.9988490343093872, + 0.9987173080444336, + 0.9985437393188477 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994897842407227, + 0.9972557425498962, + 0.9977363348007202, + 0.9988241791725159, + 0.9983092546463013 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 4 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2, + "POSITIVE": 0.8 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989006519317627, + 0.9988248944282532, + 0.9989137649536133, + 0.9987574815750122, + 0.998843789100647 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 0.9375, + "final_counts": { + "POSITIVE": 15, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9375, + "NEGATIVE": 0.0625 + } + } }, { "season_code": "202301", @@ -130769,7 +289392,7 @@ "13:30", "16:30", "LC 105 - Linsly-Chittenden Hall 105", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -130784,13 +289407,96 @@ ], "regnotes": "", "rp_attr": "", - "classnotes": "See the English department website for a list of creative writing and journalism courses that require the submission of an application by noon on November 4. https:\/\/english.yale.edu\/undergraduate\/courses\/creative-writing-journalism-courses", + "classnotes": "See the English department website for a list of creative writing and journalism courses that require the submission of an application by noon on November 4. https://english.yale.edu/undergraduate/courses/creative-writing-journalism-courses", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84011\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84011/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9968457818031311, + 0.9986718893051147, + 0.9981603026390076 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9986366629600525, + 0.9994993209838867 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9985764026641846, + 0.9962878227233887, + 0.9990259408950806 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 0.75, + "final_counts": { + "POSITIVE": 6, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + } + } }, { "season_code": "202301", @@ -130829,7 +289535,7 @@ "19:00", "22:00", "WLH 120 - William L. Harkness Hall 120", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Friday": [ @@ -130837,7 +289543,7 @@ "13:30", "15:20", "WLH 112 - William L. Harkness Hall 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -130853,15 +289559,106 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84037\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84037/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "", - "description": "This production course explores strategies of archive aesthetics and community storytelling in film and media. It allows students to create projects that draw from archives\u2014including news sources, personal narratives, and found archives\u2014to produce collaborative community storytelling. Conducted as a production workshop, the course explores the use of archives in constructing real and fictive narratives across a variety of disciplines, such as\u2014participants create and develop autobiographies, biographies, or fiction-based projects, tailored to their own work in film\/new media around Natalie Goldberg\u2019s concept that \"our lives are at once ordinary and mythical.\"", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988962411880493, + 0.9988152980804443, + 0.9894706010818481, + 0.9988996982574463 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984103441238403, + 0.9848409295082092, + 0.9988724589347839, + 0.9989186525344849 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989010095596313, + 0.998916745185852, + 0.9986836314201355, + 0.9989197254180908, + 0.9988890290260315 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 13 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } + }, + { + "season_code": "202301", + "requirements": "", + "description": "This production course explores strategies of archive aesthetics and community storytelling in film and media. It allows students to create projects that draw from archives\u2014including news sources, personal narratives, and found archives\u2014to produce collaborative community storytelling. Conducted as a production workshop, the course explores the use of archives in constructing real and fictive narratives across a variety of disciplines, such as\u2014participants create and develop autobiographies, biographies, or fiction-based projects, tailored to their own work in film/new media around Natalie Goldberg\u2019s concept that \"our lives are at once ordinary and mythical.\"", "short_title": "Archive Aesthetics and Commun...", "title": "Archive Aesthetics and Community Storytelling", "school": "YC", @@ -130894,7 +289691,7 @@ "19:30", "22:30", "HQ L02 - Humanities Quadrangle L02", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Tuesday": [ @@ -130902,7 +289699,7 @@ "15:30", "18:20", "CCAM 103 - Center for Collab Arts & Media 103", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -130919,10 +289716,141 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84041\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84041/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989268183708191, + 0.9988923668861389, + 0.998816967010498, + 0.9977096319198608, + 0.9966937303543091, + 0.9989249110221863, + 0.9989006519317627 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9960164427757263, + 0.9989074468612671, + 0.9988766312599182, + 0.9986780285835266, + 0.9942988157272339, + 0.998923122882843, + 0.9988258481025696, + 0.9965846538543701, + 0.9988459348678589, + 0.9987757802009583, + 0.9989134073257446, + 0.9988939166069031 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9166666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987510442733765, + 0.9989301562309265, + 0.9989277720451355, + 0.9974592328071594, + 0.9976686835289001, + 0.9989135265350342, + 0.9986288547515869, + 0.9985287189483643, + 0.9994567036628723, + 0.9902106523513794, + 0.9989025592803955, + 0.9982336759567261, + 0.9988942742347717 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9230769230769231, + "NEGATIVE": 0.07692307692307693 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9230769230769231 + ] + }, + "final_label": "POSITIVE", + "final_count": 30, + "final_proportion": 0.9375, + "final_counts": { + "POSITIVE": 30, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9375, + "NEGATIVE": 0.0625 + } + } }, { "season_code": "202301", @@ -130963,7 +289891,7 @@ "15:30", "17:20", "HQ 127 - Humanities Quadrangle 127", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Saturday": [ @@ -130971,7 +289899,7 @@ "19:00", "22:00", "HQ L01 - Humanities Quadrangle L01", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -130980,7 +289908,7 @@ "Hu" ], "flags": [ - "YC English: 20th\/21st Century", + "YC English: 20th/21st Century", "YC English: Junior Seminar", "YC FILM: Critical Studies" ], @@ -130989,10 +289917,99 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85688\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85688/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989221096038818, + 0.9986999034881592, + 0.998695433139801, + 0.9988186955451965 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989305138587952, + 0.9988945126533508, + 0.9967267513275146, + 0.9988848567008972 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988598823547363, + 0.9987875819206238, + 0.9988920092582703, + 0.9989221096038818 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 12 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -131035,7 +290052,7 @@ "11:35", "12:50", "WLH 202 - William L. Harkness Hall 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -131043,7 +290060,7 @@ "11:35", "12:50", "WLH 202 - William L. Harkness Hall 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Tuesday": [ @@ -131051,7 +290068,7 @@ "19:00", "22:00", "PH 310 - Phelps Hall 310", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -131067,10 +290084,91 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83794\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83794/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987472295761108, + 0.9986357092857361, + 0.9988648891448975 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989204406738281, + 0.9991139769554138 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9987896084785461, + 0.9830719232559204 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "final_label": "POSITIVE", + "final_count": 5, + "final_proportion": 0.7142857142857143, + "final_counts": { + "POSITIVE": 5, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.7142857142857143, + "NEGATIVE": 0.2857142857142857 + } + } }, { "season_code": "202301", @@ -131107,7 +290205,7 @@ "19:00", "22:00", "HQ 129 - Humanities Quadrangle 129", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Tuesday": [ @@ -131115,7 +290213,7 @@ "13:30", "15:20", "HQ 123 - Humanities Quadrangle 123", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -131131,10 +290229,38 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86266\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/86266/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -131174,7 +290300,7 @@ "19:00", "22:00", "HQ 127 - Humanities Quadrangle 127", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -131182,7 +290308,7 @@ "10:30", "13:20", "CCAM 110 - Center for Collab Arts & Media 110", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -131198,10 +290324,38 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85399\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/85399/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -131240,7 +290394,7 @@ "16:00", "17:15", "WLH 116 - William L. Harkness Hall 116", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -131248,7 +290402,7 @@ "16:00", "17:15", "WLH 116 - William L. Harkness Hall 116", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -131256,7 +290410,7 @@ "19:30", "22:00", "", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -131274,10 +290428,211 @@ "classnotes": "", "final_exam": "Wednesday, May 10, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84313\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84313/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984297156333923, + 0.9985164999961853, + 0.9980825185775757, + 0.9978620409965515, + 0.9974600672721863, + 0.9986905455589294, + 0.9985004663467407, + 0.998833954334259, + 0.9989036321640015, + 0.9970345497131348, + 0.9961720108985901, + 0.9987850785255432, + 0.9743879437446594, + 0.9988478422164917, + 0.9987547397613525, + 0.9987503290176392, + 0.9988273978233337, + 0.9932063817977905, + 0.9962466359138489, + 0.9988787770271301, + 0.9980508089065552 + ], + "sentiment_counts": { + "POSITIVE": 21, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988524913787842, + 0.9988352656364441, + 0.9983114004135132, + 0.9979947805404663, + 0.9987784028053284, + 0.998814582824707, + 0.9883044958114624, + 0.9943663477897644, + 0.9989060163497925, + 0.997983455657959, + 0.9995017051696777, + 0.9988667964935303, + 0.998637855052948, + 0.998656153678894, + 0.9989120960235596, + 0.9976654052734375, + 0.979790985584259, + 0.9987584352493286, + 0.9989238381385803, + 0.9994978904724121, + 0.9988058805465698, + 0.9984209537506104 + ], + "sentiment_counts": { + "POSITIVE": 18, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.8181818181818182, + "NEGATIVE": 0.18181818181818182 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8181818181818182 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989327788352966, + 0.9987508058547974, + 0.988050639629364, + 0.9986817240715027, + 0.9983729124069214, + 0.9982598423957825, + 0.9988725781440735, + 0.9988852143287659, + 0.9988939166069031, + 0.9984661340713501, + 0.9988865256309509, + 0.9949772953987122, + 0.9988874793052673, + 0.9989209175109863, + 0.9814485907554626, + 0.9989136457443237, + 0.9795332551002502, + 0.9804028272628784, + 0.9989145994186401, + 0.9989012479782104, + 0.9988786578178406, + 0.9994825124740601, + 0.9989269375801086, + 0.9904578924179077 + ], + "sentiment_counts": { + "POSITIVE": 19, + "NEGATIVE": 5 + }, + "sentiment_distribution": { + "POSITIVE": 0.7916666666666666, + "NEGATIVE": 0.20833333333333334 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7916666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 58, + "final_proportion": 0.8656716417910447, + "final_counts": { + "POSITIVE": 58, + "NEGATIVE": 9 + }, + "final_distribution": { + "POSITIVE": 0.8656716417910447, + "NEGATIVE": 0.13432835820895522 + } + } }, { "season_code": "202301", @@ -131320,7 +290675,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -131358,7 +290741,7 @@ "8:25", "12:20", "PH 310 - Phelps Hall 310", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -131372,10 +290755,81 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83494\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83494/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987990856170654 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988911747932434 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988629817962646 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 3, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 3 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -131412,7 +290866,7 @@ "15:30", "17:20", "HQ 123 - Humanities Quadrangle 123", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -131426,10 +290880,119 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84049\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84049/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987909197807312, + 0.9988607168197632, + 0.997370719909668, + 0.9988866448402405, + 0.998907208442688, + 0.9988540410995483, + 0.998831570148468, + 0.9989114999771118 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998790442943573, + 0.9986283779144287, + 0.987970769405365, + 0.9989180564880371, + 0.9988576173782349, + 0.998415470123291, + 0.9827921986579895 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989299178123474, + 0.9910405278205872, + 0.995266318321228, + 0.9989136457443237, + 0.997117280960083, + 0.9914740324020386 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 0.9047619047619048, + "final_counts": { + "POSITIVE": 19, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9047619047619048, + "NEGATIVE": 0.09523809523809523 + } + } }, { "season_code": "202301", @@ -131466,7 +291029,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -131503,7 +291094,14 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -131543,10 +291141,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86108\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86108/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -131587,7 +291192,7 @@ "15:30", "17:20", "HQ 127 - Humanities Quadrangle 127", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Saturday": [ @@ -131595,7 +291200,7 @@ "19:00", "22:00", "HQ L01 - Humanities Quadrangle L01", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -131607,10 +291212,99 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85688\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85688/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989221096038818, + 0.9986999034881592, + 0.998695433139801, + 0.9988186955451965 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989305138587952, + 0.9988945126533508, + 0.9967267513275146, + 0.9988848567008972 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988598823547363, + 0.9987875819206238, + 0.9988920092582703, + 0.9989221096038818 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 12 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -131651,7 +291345,7 @@ "19:00", "22:00", "HQ L02 - Humanities Quadrangle L02", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -131659,7 +291353,7 @@ "9:25", "11:15", "HQ 113 - Humanities Quadrangle 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -131671,10 +291365,89 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84021\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84021/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988338351249695, + 0.9989303946495056 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9975897073745728, + 0.9981322884559631 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9953613877296448, + 0.9988667964935303, + 0.9989263415336609 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 7 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -131713,7 +291486,7 @@ "9:25", "11:15", "STOECK 211 - Stoeckel Hall (renovated) 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ] }, @@ -131725,10 +291498,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85188\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85188/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -131771,7 +291572,7 @@ "11:35", "12:50", "WLH 202 - William L. Harkness Hall 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -131779,7 +291580,7 @@ "11:35", "12:50", "WLH 202 - William L. Harkness Hall 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Tuesday": [ @@ -131787,7 +291588,7 @@ "19:00", "22:00", "PH 310 - Phelps Hall 310", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -131799,10 +291600,91 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83794\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83794/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987472295761108, + 0.9986357092857361, + 0.9988648891448975 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989204406738281, + 0.9991139769554138 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9987896084785461, + 0.9830719232559204 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "final_label": "POSITIVE", + "final_count": 5, + "final_proportion": 0.7142857142857143, + "final_counts": { + "POSITIVE": 5, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.7142857142857143, + "NEGATIVE": 0.2857142857142857 + } + } }, { "season_code": "202301", @@ -131839,7 +291721,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -131876,7 +291786,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -131919,7 +291857,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -131957,7 +291923,7 @@ "15:30", "17:20", "LC 104 - Linsly-Chittenden Hall 104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -131969,10 +291935,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84068\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84068/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -132009,7 +292003,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -132040,7 +292062,7 @@ "17:10", "19:00", "DOW 420 - Dow Hall 420", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ], "Thursday": [ @@ -132048,7 +292070,7 @@ "17:10", "19:00", "DOW 420 - Dow Hall 420", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ] }, @@ -132065,7 +292087,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -132102,7 +292152,7 @@ "14:30", "15:45", "HQ 317 - Humanities Quadrangle 317", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -132110,7 +292160,7 @@ "14:30", "15:45", "HQ 317 - Humanities Quadrangle 317", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -132124,10 +292174,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84075\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84075/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -132164,7 +292242,7 @@ "15:30", "17:20", "HQ C11 - Humanities Quadrangle C11", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -132176,10 +292254,81 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84076\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84076/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9973824620246887 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989086389541626 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9966205358505249 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 3, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 3 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -132216,7 +292365,7 @@ "8:20", "9:10", "LC 318 - Linsly-Chittenden Hall 318", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Tuesday": [ @@ -132224,7 +292373,7 @@ "8:20", "9:10", "LC 318 - Linsly-Chittenden Hall 318", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -132232,7 +292381,7 @@ "8:20", "9:10", "LC 318 - Linsly-Chittenden Hall 318", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -132240,7 +292389,7 @@ "8:20", "9:10", "LC 318 - Linsly-Chittenden Hall 318", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Friday": [ @@ -132248,7 +292397,7 @@ "8:20", "9:10", "LC 318 - Linsly-Chittenden Hall 318", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -132262,10 +292411,115 @@ "classnotes": "", "final_exam": "Friday, May 5, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84077\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84077/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988821148872375, + 0.9984765648841858, + 0.9986963868141174, + 0.998434841632843, + 0.9987618923187256, + 0.9984996318817139 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.997114896774292, + 0.995785653591156, + 0.9989179372787476, + 0.9988180994987488, + 0.9988583326339722, + 0.9989186525344849, + 0.9987599849700928 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9958708882331848, + 0.9994926452636719, + 0.9988903403282166, + 0.9955926537513733, + 0.9988694787025452, + 0.998766303062439 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 0.9473684210526315, + "final_counts": { + "POSITIVE": 18, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9473684210526315, + "NEGATIVE": 0.05263157894736842 + } + } }, { "season_code": "202301", @@ -132302,7 +292556,7 @@ "9:25", "10:15", "LC 318 - Linsly-Chittenden Hall 318", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Tuesday": [ @@ -132310,7 +292564,7 @@ "9:25", "10:15", "LC 318 - Linsly-Chittenden Hall 318", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -132318,7 +292572,7 @@ "9:25", "10:15", "LC 318 - Linsly-Chittenden Hall 318", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -132326,7 +292580,7 @@ "9:25", "10:15", "LC 318 - Linsly-Chittenden Hall 318", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Friday": [ @@ -132334,7 +292588,7 @@ "9:25", "10:15", "LC 318 - Linsly-Chittenden Hall 318", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -132348,10 +292602,95 @@ "classnotes": "", "final_exam": "Friday, May 5, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84078\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84078/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988977909088135, + 0.996868908405304 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989269375801086, + 0.9900050759315491, + 0.9988897442817688 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.99893718957901, + 0.9988676309585571, + 0.9988200068473816, + 0.99853515625, + 0.9988850951194763 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 10 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -132388,7 +292727,7 @@ "10:30", "11:20", "LC 103 - Linsly-Chittenden Hall 103", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Tuesday": [ @@ -132396,7 +292735,7 @@ "10:30", "11:20", "LC 103 - Linsly-Chittenden Hall 103", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -132404,7 +292743,7 @@ "10:30", "11:20", "LC 103 - Linsly-Chittenden Hall 103", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -132412,7 +292751,7 @@ "10:30", "11:20", "LC 103 - Linsly-Chittenden Hall 103", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Friday": [ @@ -132420,7 +292759,7 @@ "10:30", "11:20", "LC 103 - Linsly-Chittenden Hall 103", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -132434,10 +292773,133 @@ "classnotes": "", "final_exam": "Friday, May 5, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84079\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84079/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989174604415894, + 0.9984791874885559, + 0.9989336133003235, + 0.9988975524902344, + 0.9988492727279663, + 0.99873286485672, + 0.9979187846183777, + 0.9987548589706421, + 0.9989235997200012 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.996402382850647, + 0.9994825124740601, + 0.9988658428192139, + 0.9987567663192749, + 0.9994572997093201, + 0.9989334940910339, + 0.9925243258476257, + 0.9995054006576538, + 0.9989138841629028, + 0.9989370703697205 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.6, + "NEGATIVE": 0.4 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985836744308472, + 0.9988492727279663, + 0.9983155727386475, + 0.9988744854927063, + 0.9988473653793335, + 0.99885094165802, + 0.9976365566253662, + 0.9988947510719299, + 0.9989389777183533 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 24, + "final_proportion": 0.8571428571428571, + "final_counts": { + "POSITIVE": 24, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + } + } }, { "season_code": "202301", @@ -132474,7 +292936,7 @@ "10:30", "11:20", "WALL53 108 - 53 Wall Street 108", - "https:\/\/map.yale.edu\/?id=1910#!m\/559554" + "https://map.yale.edu/?id=1910#!m/559554" ] ], "Tuesday": [ @@ -132482,7 +292944,7 @@ "10:30", "11:20", "WALL53 108 - 53 Wall Street 108", - "https:\/\/map.yale.edu\/?id=1910#!m\/559554" + "https://map.yale.edu/?id=1910#!m/559554" ] ], "Wednesday": [ @@ -132490,7 +292952,7 @@ "10:30", "11:20", "WALL53 108 - 53 Wall Street 108", - "https:\/\/map.yale.edu\/?id=1910#!m\/559554" + "https://map.yale.edu/?id=1910#!m/559554" ] ], "Thursday": [ @@ -132498,7 +292960,7 @@ "10:30", "11:20", "WALL53 108 - 53 Wall Street 108", - "https:\/\/map.yale.edu\/?id=1910#!m\/559554" + "https://map.yale.edu/?id=1910#!m/559554" ] ], "Friday": [ @@ -132506,7 +292968,7 @@ "10:30", "11:20", "WALL53 108 - 53 Wall Street 108", - "https:\/\/map.yale.edu\/?id=1910#!m\/559554" + "https://map.yale.edu/?id=1910#!m/559554" ] ] }, @@ -132520,10 +292982,38 @@ "classnotes": "", "final_exam": "Friday, May 5, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84080\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84080/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -132560,7 +293050,7 @@ "11:35", "12:25", "WALL53 108 - 53 Wall Street 108", - "https:\/\/map.yale.edu\/?id=1910#!m\/559554" + "https://map.yale.edu/?id=1910#!m/559554" ] ], "Tuesday": [ @@ -132568,7 +293058,7 @@ "11:35", "12:25", "WALL53 108 - 53 Wall Street 108", - "https:\/\/map.yale.edu\/?id=1910#!m\/559554" + "https://map.yale.edu/?id=1910#!m/559554" ] ], "Wednesday": [ @@ -132576,7 +293066,7 @@ "11:35", "12:25", "WALL53 108 - 53 Wall Street 108", - "https:\/\/map.yale.edu\/?id=1910#!m\/559554" + "https://map.yale.edu/?id=1910#!m/559554" ] ], "Thursday": [ @@ -132584,7 +293074,7 @@ "11:35", "12:25", "WALL53 108 - 53 Wall Street 108", - "https:\/\/map.yale.edu\/?id=1910#!m\/559554" + "https://map.yale.edu/?id=1910#!m/559554" ] ], "Friday": [ @@ -132592,7 +293082,7 @@ "11:35", "12:25", "WALL53 108 - 53 Wall Street 108", - "https:\/\/map.yale.edu\/?id=1910#!m\/559554" + "https://map.yale.edu/?id=1910#!m/559554" ] ] }, @@ -132606,10 +293096,89 @@ "classnotes": "", "final_exam": "Friday, May 5, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84081\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84081/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985612034797668, + 0.9987540245056152, + 0.9989058971405029 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988574981689453, + 0.9988586902618408 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988532066345215, + 0.9989029169082642 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 7 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -132646,7 +293215,7 @@ "9:25", "10:15", "BASSLB L73 - Bass Library L73", - "https:\/\/map.yale.edu\/?id=1910#!m\/564574" + "https://map.yale.edu/?id=1910#!m/564574" ] ], "Tuesday": [ @@ -132654,7 +293223,7 @@ "9:25", "10:15", "BASSLB L73 - Bass Library L73", - "https:\/\/map.yale.edu\/?id=1910#!m\/564574" + "https://map.yale.edu/?id=1910#!m/564574" ] ], "Wednesday": [ @@ -132662,7 +293231,7 @@ "9:25", "10:15", "BASSLB L73 - Bass Library L73", - "https:\/\/map.yale.edu\/?id=1910#!m\/564574" + "https://map.yale.edu/?id=1910#!m/564574" ] ], "Thursday": [ @@ -132670,7 +293239,7 @@ "9:25", "10:15", "BASSLB L73 - Bass Library L73", - "https:\/\/map.yale.edu\/?id=1910#!m\/564574" + "https://map.yale.edu/?id=1910#!m/564574" ] ], "Friday": [ @@ -132678,7 +293247,7 @@ "9:25", "10:15", "BASSLB L73 - Bass Library L73", - "https:\/\/map.yale.edu\/?id=1910#!m\/564574" + "https://map.yale.edu/?id=1910#!m/564574" ] ] }, @@ -132692,10 +293261,85 @@ "classnotes": "", "final_exam": "Friday, May 5, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84082\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84082/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989045858383179 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985716342926025, + 0.9988898634910583 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 1 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989270567893982 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 3, + "final_proportion": 0.75, + "final_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + } + } }, { "season_code": "202301", @@ -132732,7 +293376,7 @@ "10:30", "11:20", "LC 209 - Linsly-Chittenden Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Tuesday": [ @@ -132740,7 +293384,7 @@ "10:30", "11:20", "LC 209 - Linsly-Chittenden Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -132748,7 +293392,7 @@ "10:30", "11:20", "LC 209 - Linsly-Chittenden Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -132756,7 +293400,7 @@ "10:30", "11:20", "LC 209 - Linsly-Chittenden Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Friday": [ @@ -132764,7 +293408,7 @@ "10:30", "11:20", "LC 209 - Linsly-Chittenden Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -132778,10 +293422,93 @@ "classnotes": "", "final_exam": "Friday, May 5, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84083\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84083/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988718628883362, + 0.9985887408256531 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9994757771492004, + 0.9987239241600037, + 0.9971244931221008 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 1 + }, + "sentiment_distribution": { + "NEGATIVE": 0.6666666666666666, + "POSITIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9948050379753113, + 0.9988484382629395, + 0.9957520961761475 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 5, + "final_proportion": 0.625, + "final_counts": { + "POSITIVE": 5, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.625, + "NEGATIVE": 0.375 + } + } }, { "season_code": "202301", @@ -132818,7 +293545,7 @@ "11:35", "12:25", "WLH 001 - William L. Harkness Hall 001", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Tuesday": [ @@ -132826,7 +293553,7 @@ "11:35", "12:25", "WLH 001 - William L. Harkness Hall 001", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -132834,7 +293561,7 @@ "11:35", "12:25", "WLH 001 - William L. Harkness Hall 001", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -132842,7 +293569,7 @@ "11:35", "12:25", "WLH 001 - William L. Harkness Hall 001", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Friday": [ @@ -132850,7 +293577,7 @@ "11:35", "12:25", "WLH 001 - William L. Harkness Hall 001", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -132864,10 +293591,101 @@ "classnotes": "", "final_exam": "Friday, May 5, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84084\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84084/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987636804580688, + 0.9988594055175781, + 0.9924312829971313, + 0.998817503452301 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9752141833305359, + 0.9989078044891357, + 0.9988310933113098, + 0.9992844462394714 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 1 + }, + "sentiment_distribution": { + "NEGATIVE": 0.75, + "POSITIVE": 0.25 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9979711174964905, + 0.9984533786773682, + 0.9994767308235168, + 0.9989264607429504 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 8, + "final_proportion": 0.6666666666666666, + "final_counts": { + "POSITIVE": 8, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + } + } }, { "season_code": "202301", @@ -132947,7 +293765,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -132984,7 +293830,7 @@ "10:30", "11:20", "HQ 127 - Humanities Quadrangle 127", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Tuesday": [ @@ -132992,7 +293838,7 @@ "10:30", "11:20", "HQ 127 - Humanities Quadrangle 127", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -133000,7 +293846,7 @@ "10:30", "11:20", "HQ 127 - Humanities Quadrangle 127", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Friday": [ @@ -133008,7 +293854,7 @@ "10:30", "11:20", "HQ 127 - Humanities Quadrangle 127", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -133016,7 +293862,7 @@ "10:30", "11:20", "HQ 209 - Humanities Quadrangle 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -133030,10 +293876,123 @@ "classnotes": "", "final_exam": "Friday, May 5, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84085\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84085/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987984895706177, + 0.9965511560440063, + 0.9971299767494202, + 0.9987723231315613, + 0.9988321661949158, + 0.9987175464630127, + 0.9986963868141174, + 0.9986893534660339 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.986997127532959, + 0.994403600692749, + 0.998843789100647, + 0.9981720447540283, + 0.9989148378372192, + 0.9974017143249512, + 0.9989153146743774, + 0.9994981288909912 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.994865357875824, + 0.9919431209564209, + 0.9986317753791809, + 0.9994671940803528, + 0.9988787770271301, + 0.9987452030181885, + 0.9988671541213989 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 5 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2857142857142857, + "POSITIVE": 0.7142857142857143 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7142857142857143 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 0.8260869565217391, + "final_counts": { + "POSITIVE": 19, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.8260869565217391, + "NEGATIVE": 0.17391304347826086 + } + } }, { "season_code": "202301", @@ -133070,7 +294029,7 @@ "9:25", "10:15", "LC 203 - Linsly-Chittenden Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Tuesday": [ @@ -133078,7 +294037,7 @@ "9:25", "10:15", "LC 203 - Linsly-Chittenden Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -133086,7 +294045,7 @@ "9:25", "10:15", "LC 203 - Linsly-Chittenden Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -133094,7 +294053,7 @@ "9:25", "10:15", "LC 203 - Linsly-Chittenden Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Friday": [ @@ -133102,7 +294061,7 @@ "9:25", "10:15", "LC 203 - Linsly-Chittenden Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -133116,10 +294075,119 @@ "classnotes": "", "final_exam": "Friday, May 5, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84088\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84088/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988823533058167, + 0.9964711666107178, + 0.9989282488822937, + 0.9987095594406128, + 0.9984525442123413, + 0.9988235831260681 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989000558853149, + 0.9941376447677612, + 0.99893718957901, + 0.9988852143287659, + 0.9995033740997314, + 0.9939508438110352, + 0.9986978769302368, + 0.9986318945884705 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989332556724548, + 0.9988611936569214, + 0.9985421895980835, + 0.9989018440246582, + 0.9988527297973633, + 0.9953553676605225, + 0.9981093406677246 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 0.8571428571428571, + "final_counts": { + "POSITIVE": 18, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + } + } }, { "season_code": "202301", @@ -133156,7 +294224,7 @@ "10:30", "11:20", "LC 203 - Linsly-Chittenden Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Tuesday": [ @@ -133164,7 +294232,7 @@ "10:30", "11:20", "LC 203 - Linsly-Chittenden Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -133172,7 +294240,7 @@ "10:30", "11:20", "LC 203 - Linsly-Chittenden Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -133180,7 +294248,7 @@ "10:30", "11:20", "LC 203 - Linsly-Chittenden Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Friday": [ @@ -133188,7 +294256,7 @@ "10:30", "11:20", "LC 203 - Linsly-Chittenden Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -133202,10 +294270,125 @@ "classnotes": "", "final_exam": "Friday, May 5, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84091\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84091/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987209439277649, + 0.998898983001709, + 0.9988493919372559, + 0.9987956285476685, + 0.9987344145774841, + 0.993595540523529, + 0.9988226294517517, + 0.9988879561424255, + 0.9987897276878357 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988840222358704, + 0.9989153146743774, + 0.998860239982605, + 0.9971707463264465, + 0.9888705015182495, + 0.9993520379066467, + 0.9986769556999207 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998917818069458, + 0.9988355040550232, + 0.9994891881942749, + 0.9988793730735779, + 0.9985272884368896, + 0.9941056966781616, + 0.9910833835601807, + 0.998292863368988 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "final_label": "POSITIVE", + "final_count": 22, + "final_proportion": 0.9166666666666666, + "final_counts": { + "POSITIVE": 22, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + } + } }, { "season_code": "202301", @@ -133242,7 +294425,7 @@ "11:35", "12:25", "LC 209 - Linsly-Chittenden Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Tuesday": [ @@ -133250,7 +294433,7 @@ "11:35", "12:25", "LC 209 - Linsly-Chittenden Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -133258,7 +294441,7 @@ "11:35", "12:25", "LC 209 - Linsly-Chittenden Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -133266,7 +294449,7 @@ "11:35", "12:25", "LC 209 - Linsly-Chittenden Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Friday": [ @@ -133274,7 +294457,7 @@ "11:35", "12:25", "LC 209 - Linsly-Chittenden Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -133288,10 +294471,125 @@ "classnotes": "", "final_exam": "Friday, May 5, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84094\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84094/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988724589347839, + 0.9987943172454834, + 0.9985933899879456, + 0.998485267162323, + 0.9988225102424622, + 0.9986451268196106, + 0.9985038042068481, + 0.9986633062362671 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989101886749268, + 0.9988732933998108, + 0.9981580376625061, + 0.998427152633667, + 0.9945576190948486, + 0.9926171898841858, + 0.9977645874023438, + 0.9989244341850281 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987397789955139, + 0.9974592328071594, + 0.998604953289032, + 0.9988137483596802, + 0.9989036321640015, + 0.997117280960083, + 0.9979259967803955, + 0.9989375472068787 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "final_label": "POSITIVE", + "final_count": 22, + "final_proportion": 0.9166666666666666, + "final_counts": { + "POSITIVE": 22, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + } + } }, { "season_code": "202301", @@ -133328,7 +294626,7 @@ "10:30", "11:20", "LC 318 - Linsly-Chittenden Hall 318", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Tuesday": [ @@ -133336,7 +294634,7 @@ "10:30", "11:20", "LC 318 - Linsly-Chittenden Hall 318", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -133344,7 +294642,7 @@ "10:30", "11:20", "LC 318 - Linsly-Chittenden Hall 318", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -133352,7 +294650,7 @@ "10:30", "11:20", "LC 318 - Linsly-Chittenden Hall 318", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Friday": [ @@ -133360,7 +294658,7 @@ "10:30", "11:20", "LC 318 - Linsly-Chittenden Hall 318", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -133374,10 +294672,111 @@ "classnotes": "", "final_exam": "Friday, May 5, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85994\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85994/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988155364990234, + 0.9987478256225586, + 0.9987518787384033, + 0.9988018274307251, + 0.9985716342926025 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988542795181274, + 0.9994978904724121, + 0.9988296627998352, + 0.9995088577270508, + 0.9988641738891602, + 0.9989240765571594, + 0.9988512992858887 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.7142857142857143, + "NEGATIVE": 0.2857142857142857 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7142857142857143 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988541603088379, + 0.9987404942512512, + 0.9989222288131714, + 0.9989017248153687, + 0.9984295964241028 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 0.8235294117647058, + "final_counts": { + "POSITIVE": 14, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.8235294117647058, + "NEGATIVE": 0.17647058823529413 + } + } }, { "season_code": "202301", @@ -133414,7 +294813,7 @@ "9:25", "11:15", "DOW 112 - Dow Hall 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ], "Tuesday": [ @@ -133422,7 +294821,7 @@ "9:25", "11:15", "DOW 112 - Dow Hall 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ], "Wednesday": [ @@ -133430,7 +294829,7 @@ "9:25", "11:15", "DOW 112 - Dow Hall 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ], "Thursday": [ @@ -133438,7 +294837,7 @@ "9:25", "11:15", "DOW 112 - Dow Hall 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ], "Friday": [ @@ -133446,7 +294845,7 @@ "9:25", "11:15", "DOW 112 - Dow Hall 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ] }, @@ -133461,14 +294860,42 @@ "classnotes": "M-F 9:25am - 11:15am", "final_exam": "Friday, May 5, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84096\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "Conducted entirely in French. After FREN 140, 145, or a satisfactory placement test score.\u00a0 Online preregistration required; see http:\/\/french.yale.edu\/academics\/placement-and-registration for details.", + "syllabus_url": "https://yale.instructure.com/courses/84096/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } + }, + { + "season_code": "202301", + "requirements": "Conducted entirely in French. After FREN 140, 145, or a satisfactory placement test score.\u00a0 Online preregistration required; see http://french.yale.edu/academics/placement-and-registration for details.", "description": "An advanced language course intended to improve students' comprehension of spoken and written French as well as their speaking and writing skills. Modern fiction and nonfiction texts familiarize students with idiomatic French. Special attention to grammar review and vocabulary acquisition.", "short_title": "Advanced Language Practice", "title": "Advanced Language Practice", @@ -133501,7 +294928,7 @@ "10:30", "11:20", "HQ 313 - Humanities Quadrangle 313", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -133509,7 +294936,7 @@ "10:30", "11:20", "HQ 313 - Humanities Quadrangle 313", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Friday": [ @@ -133517,7 +294944,7 @@ "10:30", "11:20", "HQ 313 - Humanities Quadrangle 313", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -133531,14 +294958,105 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84100\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84100/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "Conducted entirely in French. After FREN 140, 145, or a satisfactory placement test score.\u00a0 Online preregistration required; see http:\/\/french.yale.edu\/academics\/placement-and-registration for details.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987658262252808, + 0.9987331032752991, + 0.9882198572158813, + 0.998721182346344, + 0.9988308548927307 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988387227058411, + 0.9994624257087708, + 0.9994937181472778 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.3333333333333333, + "NEGATIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9986853003501892, + 0.9951202273368835, + 0.9982426166534424, + 0.9950206279754639 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 0.75, + "final_counts": { + "POSITIVE": 9, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + } + } + }, + { + "season_code": "202301", + "requirements": "Conducted entirely in French. After FREN 140, 145, or a satisfactory placement test score.\u00a0 Online preregistration required; see http://french.yale.edu/academics/placement-and-registration for details.", "description": "An advanced language course intended to improve students' comprehension of spoken and written French as well as their speaking and writing skills. Modern fiction and nonfiction texts familiarize students with idiomatic French. Special attention to grammar review and vocabulary acquisition.", "short_title": "Advanced Language Practice", "title": "Advanced Language Practice", @@ -133571,7 +295089,7 @@ "11:35", "12:25", "LC 203 - Linsly-Chittenden Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -133579,7 +295097,7 @@ "11:35", "12:25", "LC 203 - Linsly-Chittenden Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Friday": [ @@ -133587,7 +295105,7 @@ "11:35", "12:25", "LC 203 - Linsly-Chittenden Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -133601,10 +295119,105 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84104\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84104/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9972411394119263, + 0.9988458156585693, + 0.9988991022109985, + 0.9985098242759705, + 0.9988080263137817 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998695433139801, + 0.9987908005714417, + 0.9988856911659241, + 0.9986674785614014, + 0.9987975358963013 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988678693771362, + 0.9987578392028809, + 0.9988058805465698, + 0.9986967444419861, + 0.9988466501235962 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 15 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -133641,7 +295254,7 @@ "11:35", "12:50", "HQ 313 - Humanities Quadrangle 313", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -133649,7 +295262,7 @@ "11:35", "12:50", "HQ 313 - Humanities Quadrangle 313", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -133663,10 +295276,131 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84108\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84108/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998794436454773, + 0.9987691044807434, + 0.9989166259765625, + 0.9987726807594299, + 0.9987461566925049, + 0.9988937973976135, + 0.99861741065979, + 0.9988420605659485, + 0.9988191723823547 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988659620285034, + 0.9986503720283508, + 0.998930037021637, + 0.9960999488830566, + 0.9993152618408203, + 0.9988601207733154, + 0.9985034465789795, + 0.9994949102401733, + 0.9988617897033691 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.7777777777777778, + "NEGATIVE": 0.2222222222222222 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7777777777777778 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983662962913513, + 0.9988918900489807, + 0.9987661838531494, + 0.99801105260849, + 0.994121253490448, + 0.9988386034965515, + 0.9977784752845764, + 0.9988895058631897, + 0.998872697353363 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "final_label": "POSITIVE", + "final_count": 24, + "final_proportion": 0.8888888888888888, + "final_counts": { + "POSITIVE": 24, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + } + } }, { "season_code": "202301", @@ -133703,7 +295437,7 @@ "13:00", "14:15", "HQ 207 - Humanities Quadrangle 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -133711,7 +295445,7 @@ "13:00", "14:15", "HQ 207 - Humanities Quadrangle 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -133725,10 +295459,111 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85995\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85995/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988372921943665, + 0.9988600015640259, + 0.9988487958908081, + 0.9988341927528381, + 0.9988890290260315, + 0.9988375306129456, + 0.996881365776062 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988508224487305, + 0.9866442084312439, + 0.9988998174667358, + 0.9989086389541626, + 0.9989205598831177 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998762845993042, + 0.9994872808456421, + 0.9988238215446472, + 0.9989246726036072, + 0.9989044666290283 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 0.9411764705882353, + "final_counts": { + "POSITIVE": 16, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9411764705882353, + "NEGATIVE": 0.058823529411764705 + } + } }, { "season_code": "202301", @@ -133765,7 +295600,7 @@ "11:35", "12:50", "HQ 123 - Humanities Quadrangle 123", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -133773,7 +295608,7 @@ "11:35", "12:50", "HQ 123 - Humanities Quadrangle 123", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -133789,10 +295624,95 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84110\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84110/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988921284675598, + 0.9985199570655823, + 0.9984288811683655 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989340901374817, + 0.998902440071106, + 0.9988982677459717 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998855710029602, + 0.9982467889785767, + 0.9988662004470825, + 0.9988791346549988 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 10 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -133829,7 +295749,7 @@ "14:30", "15:45", "HQ 127 - Humanities Quadrangle 127", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -133837,7 +295757,7 @@ "14:30", "15:45", "HQ 127 - Humanities Quadrangle 127", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -133853,10 +295773,99 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84115\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84115/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9967418313026428, + 0.9987587928771973, + 0.9988538026809692 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9987905621528625, + 0.9989328980445862, + 0.9987908005714417, + 0.9994155168533325 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982553124427795, + 0.9988094568252563, + 0.9983124732971191, + 0.998903751373291 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 0.9090909090909091, + "final_counts": { + "POSITIVE": 10, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + } + } }, { "season_code": "202301", @@ -133893,7 +295902,7 @@ "9:00", "10:15", "HQ 401 - Humanities Quadrangle 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -133901,7 +295910,7 @@ "9:00", "10:15", "HQ 401 - Humanities Quadrangle 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -133915,10 +295924,101 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84119\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84119/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9978548884391785, + 0.9987459182739258, + 0.9988388419151306, + 0.9985478520393372 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9947070479393005, + 0.9977266192436218, + 0.9988692402839661, + 0.9994627833366394 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9774842858314514, + 0.9984993934631348, + 0.9989327788352966, + 0.9988585710525513 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 0.9166666666666666, + "final_counts": { + "POSITIVE": 11, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + } + } }, { "season_code": "202301", @@ -133955,7 +296055,7 @@ "9:00", "10:15", "HQ 123 - Humanities Quadrangle 123", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -133963,7 +296063,7 @@ "9:00", "10:15", "HQ 123 - Humanities Quadrangle 123", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -133977,10 +296077,113 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84123\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84123/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988701939582825, + 0.9988975524902344, + 0.9989100694656372, + 0.9989196062088013, + 0.9982981085777283, + 0.9987348914146423, + 0.9988359808921814 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985228180885315, + 0.9989060163497925, + 0.9989268183708191, + 0.9989266991615295, + 0.9978557229042053, + 0.9972189664840698 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989137649536133, + 0.997117280960083, + 0.99882572889328, + 0.9988870024681091, + 0.9989297986030579, + 0.9988746047019958 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 19 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -134017,7 +296220,7 @@ "13:30", "15:20", "WLH 115 - William L. Harkness Hall 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -134031,10 +296234,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84126\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84126/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -134072,7 +296303,7 @@ "9:25", "11:15", "HQ C07 - Humanities Quadrangle C07", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -134088,15 +296319,130 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84090\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84090/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988918900489807, + 0.9989309906959534, + 0.9988710284233093, + 0.9987903237342834, + 0.998619794845581, + 0.9987683892250061, + 0.9985923171043396, + 0.9985895752906799 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988358616828918, + 0.9987603425979614, + 0.9988905787467957, + 0.9989215135574341, + 0.998881995677948, + 0.998559296131134, + 0.9988904595375061, + 0.9982232451438904 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989145994186401, + 0.9986051917076111, + 0.9989280104637146, + 0.9989308714866638, + 0.9988842606544495, + 0.9988605976104736, + 0.9989292025566101, + 0.9989288449287415, + 0.9985693693161011 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 25, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 25 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", "requirements": "This course can be taken as a sequel to FREN 191 and FREN 192.", - "description": "The seminar explores cultural\u00a0issues and debates around contemporary translations of English-French\/French-English fiction. Weekly themes include: the music of language and the physicality of translation; translation and ideology; economies of translation; retranslations; analyzing translators\u2019 manuscripts at the Beinecke; translation as a factor in the formation of transnational dialogue; and the question of who translates.\u00a0 Each class session includes a practical component of translation exercises. The course qualifies for the French Department translation track and the Yale College translation certificate.", + "description": "The seminar explores cultural\u00a0issues and debates around contemporary translations of English-French/French-English fiction. Weekly themes include: the music of language and the physicality of translation; translation and ideology; economies of translation; retranslations; analyzing translators\u2019 manuscripts at the Beinecke; translation as a factor in the formation of transnational dialogue; and the question of who translates.\u00a0 Each class session includes a practical component of translation exercises. The course qualifies for the French Department translation track and the Yale College translation certificate.", "short_title": "Translation, Literature, Culture", "title": "Translation, Literature, Culture", "school": "YC", @@ -134131,7 +296477,7 @@ "13:30", "15:20", "HQ C15 - Humanities Quadrangle C15", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -134145,10 +296491,97 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84098\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84098/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987993240356445, + 0.9987541437149048, + 0.9989227652549744, + 0.998824417591095 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989365935325623, + 0.9989297986030579 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989268183708191, + 0.998932421207428, + 0.9985143542289734, + 0.9989027976989746, + 0.9988430738449097 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 11 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -134187,7 +296620,7 @@ "13:30", "15:20", "HQ C11 - Humanities Quadrangle C11", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -134203,10 +296636,95 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84102\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84102/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989058971405029, + 0.9987586736679077, + 0.9988293051719666 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988430738449097, + 0.9987479448318481, + 0.9988402724266052 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989259839057922, + 0.9903659820556641, + 0.9918021559715271 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 8, + "final_proportion": 0.8888888888888888, + "final_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + } + } }, { "season_code": "202301", @@ -134248,7 +296766,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -134287,7 +296833,7 @@ "9:25", "11:15", "HQ C03 - Humanities Quadrangle C03", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -134303,10 +296849,103 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85444\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85444/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988112449645996, + 0.9988905787467957, + 0.9988864064216614, + 0.9978811144828796 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989191293716431, + 0.9989144802093506, + 0.9989323019981384, + 0.9946439266204834 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988698363304138, + 0.9988847374916077, + 0.9989292025566101, + 0.9989120960235596, + 0.998765230178833 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 0.8461538461538461, + "final_counts": { + "POSITIVE": 11, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8461538461538461, + "NEGATIVE": 0.15384615384615385 + } + } }, { "season_code": "202301", @@ -134345,7 +296984,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -134386,7 +297053,7 @@ "13:30", "15:20", "WLH 112 - William L. Harkness Hall 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -134404,10 +297071,111 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84117\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84117/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988515377044678, + 0.9988743662834167, + 0.9988071918487549, + 0.998790442943573, + 0.9988538026809692, + 0.9989251494407654 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988933205604553, + 0.9988358616828918, + 0.9988014698028564, + 0.998714804649353, + 0.9989399313926697, + 0.9989112615585327 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984431862831116, + 0.9989135265350342, + 0.9989309906959534, + 0.9988670349121094, + 0.9989182949066162, + 0.9989275336265564 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 18 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -134446,7 +297214,7 @@ "19:00", "22:00", "WLH 120 - William L. Harkness Hall 120", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Friday": [ @@ -134454,7 +297222,7 @@ "13:30", "15:20", "WLH 112 - William L. Harkness Hall 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -134470,10 +297238,101 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84037\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84037/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988962411880493, + 0.9988152980804443, + 0.9894706010818481, + 0.9988996982574463 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984103441238403, + 0.9848409295082092, + 0.9988724589347839, + 0.9989186525344849 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989010095596313, + 0.998916745185852, + 0.9986836314201355, + 0.9989197254180908, + 0.9988890290260315 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 13 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -134514,7 +297373,7 @@ "13:30", "15:20", "WLH 209 - William L. Harkness Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -134530,10 +297389,111 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84122\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84122/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988210797309875, + 0.9989069700241089, + 0.9988895058631897, + 0.9987397789955139, + 0.9989055395126343 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987258315086365, + 0.9988890290260315, + 0.9988699555397034, + 0.9986448884010315, + 0.9987479448318481, + 0.998298704624176 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988559484481812, + 0.9989215135574341, + 0.9988529682159424, + 0.9983460903167725, + 0.995510458946228, + 0.9989089965820312, + 0.9974592328071594 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 18 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -134579,7 +297539,7 @@ "13:30", "15:20", "WLH 202 - William L. Harkness Hall 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -134599,10 +297559,93 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84127\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84127/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998846173286438, + 0.9987742304801941, + 0.9987353682518005 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989000558853149, + 0.9988996982574463, + 0.9988102912902832 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989320635795593, + 0.9989295601844788, + 0.9988728165626526 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 9 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -134642,10 +297685,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84132\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84132/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -134685,10 +297756,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84136\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84136/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -134728,10 +297827,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85464\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85464/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -134772,10 +297899,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84141\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84141/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -134816,10 +297971,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86686\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86686/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -134860,10 +298043,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84141\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84141/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -134904,10 +298115,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86686\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86686/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -134944,7 +298183,7 @@ "9:25", "11:15", "HQ 209 - Humanities Quadrangle 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -134956,10 +298195,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84144\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84144/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -134996,7 +298263,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -135033,7 +298328,7 @@ "13:30", "15:20", "WLH 112 - William L. Harkness Hall 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -135045,10 +298340,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84153\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84153/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -135085,7 +298408,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -135122,7 +298473,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -135161,7 +298540,7 @@ "9:25", "11:15", "HQ 109 - Humanities Quadrangle 109", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -135173,10 +298552,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84166\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84166/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -135222,7 +298629,7 @@ "13:30", "15:20", "WLH 202 - William L. Harkness Hall 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -135237,10 +298644,93 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84127\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84127/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998846173286438, + 0.9987742304801941, + 0.9987353682518005 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989000558853149, + 0.9988996982574463, + 0.9988102912902832 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989320635795593, + 0.9989295601844788, + 0.9988728165626526 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 9 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -135277,7 +298767,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -135320,7 +298838,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -135363,7 +298909,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -135402,7 +298976,7 @@ "10:00", "11:50", "CO47 106B - 47 College Street (CLP) 106B", - "https:\/\/map.yale.edu\/?id=1910#!m\/559997" + "https://map.yale.edu/?id=1910#!m/559997" ] ] }, @@ -135414,15 +298988,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83440\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83440/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "Students gain experience in preparing and delivering seminars and in discussing presentations by other students. A variety of topics in molecular, cellular, developmental, and population genetics are covered. Required of all second-year students in Genetics. Graded Satisfactory\/Unsatisfactory.", + "description": "Students gain experience in preparing and delivering seminars and in discussing presentations by other students. A variety of topics in molecular, cellular, developmental, and population genetics are covered. Required of all second-year students in Genetics. Graded Satisfactory/Unsatisfactory.", "short_title": "Graduate Student Seminar: Cri...", "title": "Graduate Student Seminar: Critical Analysis and Presentation of Scientific Literature", "school": "GS", @@ -135472,7 +299074,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -135511,7 +299141,7 @@ "10:00", "11:45", "BCMM 101 - Boyer Ctr Molecular Medicine 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/560055" + "https://map.yale.edu/?id=1910#!m/560055" ] ], "Thursday": [ @@ -135519,7 +299149,7 @@ "10:00", "11:45", "BCMM 101 - Boyer Ctr Molecular Medicine 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/560055" + "https://map.yale.edu/?id=1910#!m/560055" ] ] }, @@ -135531,10 +299161,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84513\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84513/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -135583,7 +299241,7 @@ "11:35", "12:50", "BASS 405 - Bass Center 405", - "https:\/\/map.yale.edu\/?id=1910#!m\/560102" + "https://map.yale.edu/?id=1910#!m/560102" ] ], "Thursday": [ @@ -135591,7 +299249,7 @@ "11:35", "12:50", "BASS 405 - Bass Center 405", - "https:\/\/map.yale.edu\/?id=1910#!m\/560102" + "https://map.yale.edu/?id=1910#!m/560102" ] ] }, @@ -135603,15 +299261,94 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84441\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84441/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987372756004333, + 0.9989155530929565 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9987972974777222, + 0.9874308109283447 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9972468614578247, + 0.9989346861839294 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 5, + "final_proportion": 0.8333333333333334, + "final_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + } + } }, { "season_code": "202301", "requirements": "Interested students must contact the instructor early in the fall term to discuss their prior experience and expectations for the course. Enrollment limited to twenty. Prerequisite: permission of the instructor.", - "description": "Introduction to the analysis and interpretation of genomic datasets. The focus is on next-generation sequencing (NGS) applications including RNA-seq, ChIP-seq, and exome and whole genome sequencing. By the end of the course, each student will be able to process and analyze large-scale NGS datasets and interpret the results. This course is intended only for graduate students who are interested in applying genomic approaches in their thesis research. At a minimum, students must have basic familiarity with working in a UNIX\/Linux computing environment. Prior experience with shell scripting or a scripting language such as Perl, Python, or Ruby is strongly recommended.", + "description": "Introduction to the analysis and interpretation of genomic datasets. The focus is on next-generation sequencing (NGS) applications including RNA-seq, ChIP-seq, and exome and whole genome sequencing. By the end of the course, each student will be able to process and analyze large-scale NGS datasets and interpret the results. This course is intended only for graduate students who are interested in applying genomic approaches in their thesis research. At a minimum, students must have basic familiarity with working in a UNIX/Linux computing environment. Prior experience with shell scripting or a scripting language such as Perl, Python, or Ruby is strongly recommended.", "short_title": "Genomic Methods for Genetic A...", "title": "Genomic Methods for Genetic Analysis", "school": "GS", @@ -135649,10 +299386,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84175\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84175/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -135714,10 +299479,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84179\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84179/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -135759,10 +299552,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86190\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86190/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -135798,10 +299619,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86191\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86191/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -135838,7 +299687,7 @@ "11:35", "12:50", "LUCE 101 - Luce Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ], "Wednesday": [ @@ -135846,7 +299695,7 @@ "11:35", "12:50", "LUCE 101 - Luce Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ] }, @@ -135861,13 +299710,350 @@ ], "regnotes": "", "rp_attr": "", - "classnotes": "Jackson Graduate Students: This course is limited to 6 graduate students. As of 11\/18 one space is open.", + "classnotes": "Jackson Graduate Students: This course is limited to 6 graduate students. As of 11/18 one space is open.", "final_exam": "Saturday, May 6, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84183\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84183/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983637928962708, + 0.9983198046684265, + 0.9755401015281677, + 0.9984297156333923, + 0.9988961219787598, + 0.9987689852714539, + 0.9988724589347839, + 0.9988196492195129, + 0.9988852143287659, + 0.998917818069458, + 0.9988090991973877, + 0.9981870055198669, + 0.9946416616439819, + 0.9987738728523254, + 0.9987484216690063, + 0.9988871216773987, + 0.99874347448349, + 0.9987874627113342, + 0.998557984828949, + 0.9988473653793335, + 0.9967079162597656, + 0.9983360171318054, + 0.9988071918487549, + 0.9987945556640625, + 0.9987614154815674, + 0.998364269733429, + 0.9986435770988464, + 0.9988852143287659, + 0.9987127780914307, + 0.9976646900177002, + 0.9982652068138123, + 0.9985427856445312, + 0.9987630844116211, + 0.9983921647071838, + 0.9986613988876343, + 0.9971141815185547, + 0.9983800649642944, + 0.9855356216430664, + 0.997951090335846, + 0.9988312125205994, + 0.9986244440078735, + 0.9987795948982239, + 0.9988511800765991, + 0.998467743396759 + ], + "sentiment_counts": { + "POSITIVE": 43, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9772727272727273, + "NEGATIVE": 0.022727272727272728 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9772727272727273 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9978070855140686, + 0.9987817406654358, + 0.9987982511520386, + 0.998778760433197, + 0.9992511868476868, + 0.9984257221221924, + 0.9986270666122437, + 0.9988763928413391, + 0.9966891407966614, + 0.9827495813369751, + 0.9988873600959778, + 0.9743669629096985, + 0.998838484287262, + 0.9986843466758728, + 0.9987456798553467, + 0.998900294303894, + 0.9988343119621277, + 0.9988592863082886, + 0.9989162683486938, + 0.9994246959686279, + 0.9989355206489563, + 0.9943240880966187, + 0.9974621534347534, + 0.999500036239624, + 0.9988231062889099, + 0.9987847208976746, + 0.9989211559295654, + 0.9989161491394043, + 0.9988582134246826, + 0.998261034488678, + 0.9988491535186768, + 0.9987579584121704, + 0.9995023012161255, + 0.9988657236099243, + 0.998924195766449, + 0.998281717300415, + 0.9969626069068909, + 0.9988901019096375, + 0.9994994401931763, + 0.9989312291145325, + 0.9988495111465454, + 0.9989387392997742, + 0.9987917542457581, + 0.998863935470581, + 0.9988885521888733 + ], + "sentiment_counts": { + "POSITIVE": 38, + "NEGATIVE": 7 + }, + "sentiment_distribution": { + "POSITIVE": 0.8444444444444444, + "NEGATIVE": 0.15555555555555556 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8444444444444444 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998441755771637, + 0.9983333945274353, + 0.99875807762146, + 0.9969844222068787, + 0.9987993240356445, + 0.9987984895706177, + 0.9982694387435913, + 0.9989031553268433, + 0.9988777041435242, + 0.9989192485809326, + 0.9994478821754456, + 0.9994970560073853, + 0.9987708926200867, + 0.9754584431648254, + 0.9988083839416504, + 0.995668888092041, + 0.9988470077514648, + 0.9989246726036072, + 0.9989207983016968, + 0.9989134073257446, + 0.9989180564880371, + 0.9987832903862, + 0.9986777901649475, + 0.998803973197937, + 0.9993926286697388, + 0.9987502098083496, + 0.9958348274230957, + 0.9988089799880981, + 0.9988890290260315, + 0.9988981485366821, + 0.9981922507286072, + 0.9984820485115051, + 0.9987704157829285, + 0.9988565444946289, + 0.9968544840812683, + 0.9989349246025085, + 0.9988576173782349, + 0.9995051622390747, + 0.9987383484840393, + 0.9980168342590332, + 0.9989209175109863, + 0.9989275336265564, + 0.9982383251190186, + 0.9989094734191895, + 0.9989237189292908, + 0.9984412789344788 + ], + "sentiment_counts": { + "NEGATIVE": 8, + "POSITIVE": 38 + }, + "sentiment_distribution": { + "NEGATIVE": 0.17391304347826086, + "POSITIVE": 0.8260869565217391 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8260869565217391 + ] + }, + "final_label": "POSITIVE", + "final_count": 119, + "final_proportion": 0.8814814814814815, + "final_counts": { + "POSITIVE": 119, + "NEGATIVE": 16 + }, + "final_distribution": { + "POSITIVE": 0.8814814814814815, + "NEGATIVE": 0.11851851851851852 + } + } }, { "season_code": "202301", @@ -135898,7 +300084,7 @@ "13:30", "14:20", "HQ 132 - Humanities Quadrangle 132", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -135915,7 +300101,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -135946,7 +300160,7 @@ "14:30", "15:20", "WTS A35 - Watson Center 60 Sachem Street A35", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -135963,7 +300177,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -135994,7 +300236,7 @@ "16:00", "16:50", "WTS B39 - Watson Center 60 Sachem Street B39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -136011,7 +300253,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -136042,7 +300312,7 @@ "10:30", "11:20", "HQ C65 - Humanities Quadrangle C65", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -136059,7 +300329,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -136090,7 +300388,7 @@ "13:30", "14:20", "WTS A42 - Watson Center 60 Sachem Street A42", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -136107,7 +300405,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -136145,7 +300471,7 @@ "13:00", "14:15", "LORIA B51 - Loria Center B51", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ], "Thursday": [ @@ -136153,7 +300479,7 @@ "13:00", "14:15", "LORIA B51 - Loria Center B51", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -136168,10 +300494,139 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84224\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84224/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981470108032227, + 0.9987320303916931, + 0.9980549812316895, + 0.9968497157096863, + 0.999478280544281, + 0.9984647035598755, + 0.9987634420394897, + 0.9987115859985352, + 0.9988327622413635, + 0.99642014503479 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987406134605408, + 0.998910665512085, + 0.9989283680915833, + 0.9975742697715759, + 0.9991297125816345, + 0.9987951517105103, + 0.9994500279426575, + 0.9988183379173279, + 0.9772070050239563, + 0.9988769888877869, + 0.9989075660705566 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.7272727272727273, + "NEGATIVE": 0.2727272727272727 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7272727272727273 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987034797668457, + 0.9986055493354797, + 0.997117280960083, + 0.9988037347793579, + 0.9970025420188904, + 0.9988669157028198, + 0.9988277554512024, + 0.9995051622390747, + 0.9988973140716553, + 0.998908519744873 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "final_label": "POSITIVE", + "final_count": 26, + "final_proportion": 0.8387096774193549, + "final_counts": { + "POSITIVE": 26, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.8387096774193549, + "NEGATIVE": 0.16129032258064516 + } + } }, { "season_code": "202301", @@ -136238,10 +300693,111 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85116\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85116/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985811710357666, + 0.9982442855834961, + 0.99828040599823, + 0.998134195804596, + 0.9988487958908081 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988825917243958, + 0.9981696605682373, + 0.9860562086105347, + 0.9894806146621704, + 0.999483585357666, + 0.998816967010498, + 0.9989206790924072 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.42857142857142855, + "NEGATIVE": 0.5714285714285714 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.5714285714285714 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9971264004707336, + 0.9753815531730652, + 0.998755931854248, + 0.9986746311187744, + 0.9988407492637634 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 0.7058823529411765, + "final_counts": { + "POSITIVE": 12, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.7058823529411765, + "NEGATIVE": 0.29411764705882354 + } + } }, { "season_code": "202301", @@ -136273,7 +300829,7 @@ "14:30", "15:20", "WTS B60 - Watson Center 60 Sachem Street B60", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -136292,7 +300848,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -136324,7 +300908,7 @@ "9:25", "10:15", "WTS B39 - Watson Center 60 Sachem Street B39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -136343,7 +300927,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -136381,7 +300993,7 @@ "13:30", "15:20", "RKZ 05 - Rosenkranz Hall 05", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -136393,10 +301005,119 @@ "classnotes": "Please submit the following information with your request to enroll in this course:\n1. Name\n2. Major\n3. Year at Yale\n4. A brief statement (paragraph or less) on interest in this course", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84644\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84644/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988231062889099, + 0.9987173080444336, + 0.9989089965820312, + 0.9984062314033508, + 0.998872697353363, + 0.9985907673835754, + 0.9989305138587952 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988908171653748, + 0.998719334602356, + 0.9976693987846375, + 0.9939032196998596, + 0.9988182187080383, + 0.9987388253211975, + 0.9987238049507141 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987247586250305, + 0.998761773109436, + 0.9988330006599426, + 0.9827225208282471, + 0.9987637996673584, + 0.9933218359947205, + 0.9986885190010071 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.7142857142857143, + "NEGATIVE": 0.2857142857142857 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7142857142857143 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 0.8095238095238095, + "final_counts": { + "POSITIVE": 17, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.8095238095238095, + "NEGATIVE": 0.19047619047619047 + } + } }, { "season_code": "202301", @@ -136434,7 +301155,7 @@ "13:00", "14:15", "WTS A51 - Watson Center 60 Sachem Street A51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -136442,7 +301163,7 @@ "13:00", "14:15", "WTS A51 - Watson Center 60 Sachem Street A51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -136461,15 +301182,170 @@ "classnotes": "", "final_exam": "Sunday, May 7, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83809\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "", - "description": "Learn about the application of advanced quantitative research methods through research on African politics and development topics. Students develop their proficiency to critically engage social science research while also learning how to implement these techniques. The class begins with a discussion of research in developing contexts, including discussions of data availability and using research to support policy-making, followed by an overview of causal inference. Next, students are introduced to several prominent research design techniques including time series analysis, regression discontinuity design, difference-in-difference methods, instrumental variables analysis and various experimental designs. Each week students discuss papers using these methods on topics related to ethnic favoritism and clientelism, conflict and economic growth, rural\/ urban politics and voter turnout in the African context. Students learn to implement some of these analyses using R statistical software and data from African sources such as Afrobarometer and Statistics South Africa.", + "syllabus_url": "https://yale.instructure.com/courses/83809/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9790672659873962, + 0.998815655708313, + 0.9899131059646606, + 0.9965803027153015, + 0.9987680315971375, + 0.9987868666648865, + 0.9988184571266174, + 0.9985621571540833, + 0.9962312579154968, + 0.9977613687515259, + 0.99688321352005, + 0.9985203146934509, + 0.9988999366760254, + 0.998927891254425, + 0.9987778067588806, + 0.9979885816574097 + ], + "sentiment_counts": { + "POSITIVE": 15, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9375, + "NEGATIVE": 0.0625 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9375 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9986400008201599, + 0.9985315799713135, + 0.9989351630210876, + 0.9988310933113098, + 0.998835027217865, + 0.9988934397697449, + 0.9988817572593689, + 0.9989256262779236, + 0.9988331198692322, + 0.9934710264205933, + 0.9988322854042053, + 0.9995015859603882 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.997117280960083, + 0.9989197254180908, + 0.9988356232643127, + 0.9988561868667603, + 0.9989094734191895, + 0.9980168342590332, + 0.9988027811050415, + 0.9986258745193481, + 0.9989307522773743, + 0.9987486600875854, + 0.9988667964935303, + 0.9989134073257446, + 0.9988846182823181, + 0.9988052845001221, + 0.9985248446464539, + 0.9974592328071594 + ], + "sentiment_counts": { + "POSITIVE": 16, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 41, + "final_proportion": 0.9318181818181818, + "final_counts": { + "POSITIVE": 41, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.9318181818181818, + "NEGATIVE": 0.06818181818181818 + } + } + }, + { + "season_code": "202301", + "requirements": "", + "description": "Learn about the application of advanced quantitative research methods through research on African politics and development topics. Students develop their proficiency to critically engage social science research while also learning how to implement these techniques. The class begins with a discussion of research in developing contexts, including discussions of data availability and using research to support policy-making, followed by an overview of causal inference. Next, students are introduced to several prominent research design techniques including time series analysis, regression discontinuity design, difference-in-difference methods, instrumental variables analysis and various experimental designs. Each week students discuss papers using these methods on topics related to ethnic favoritism and clientelism, conflict and economic growth, rural/ urban politics and voter turnout in the African context. Students learn to implement some of these analyses using R statistical software and data from African sources such as Afrobarometer and Statistics South Africa.", "short_title": "Causal Inference and African ...", "title": "Causal Inference and African Politics", "school": "YC", @@ -136502,7 +301378,7 @@ "13:00", "14:15", "WTS A46 - Watson Center 60 Sachem Street A46", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -136510,7 +301386,7 @@ "13:00", "14:15", "WTS A46 - Watson Center 60 Sachem Street A46", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -136526,10 +301402,89 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84187\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84187/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989235997200012, + 0.9935652613639832 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988514184951782, + 0.9987741112709045 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989216327667236, + 0.9987987279891968, + 0.9988746047019958 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 7 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -136567,7 +301522,7 @@ "11:35", "12:25", "LORIA 250 - Loria Center 250", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ], "Thursday": [ @@ -136575,7 +301530,7 @@ "11:35", "12:25", "LORIA 250 - Loria Center 250", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -136592,10 +301547,251 @@ "classnotes": "", "final_exam": "Monday, May 8, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84220\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84220/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988430738449097, + 0.9987469911575317, + 0.9986618757247925, + 0.9984194040298462, + 0.9986987113952637, + 0.9979054927825928, + 0.9989171028137207, + 0.9988040924072266, + 0.9988779425621033, + 0.9988023042678833, + 0.9989222288131714, + 0.9989179372787476, + 0.998776376247406, + 0.9693039059638977, + 0.9987851977348328, + 0.9989001750946045, + 0.9989092350006104, + 0.998917818069458, + 0.9979745745658875, + 0.9988822340965271, + 0.9985876083374023, + 0.9967492818832397, + 0.9989109039306641, + 0.9987943172454834, + 0.9986176490783691, + 0.9970394968986511, + 0.9988974332809448, + 0.9987525939941406, + 0.9989079236984253, + 0.9988235831260681, + 0.9989058971405029 + ], + "sentiment_counts": { + "POSITIVE": 28, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.9032258064516129, + "NEGATIVE": 0.0967741935483871 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9032258064516129 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9973748922348022, + 0.9988666772842407, + 0.9987930059432983, + 0.9978727102279663, + 0.9984986782073975, + 0.9984215497970581, + 0.998908519744873, + 0.998828113079071, + 0.9988293051719666, + 0.9988692402839661, + 0.9988935589790344, + 0.9980916380882263, + 0.9988347887992859, + 0.9948239326477051, + 0.9989030361175537, + 0.9988920092582703, + 0.9987978935241699, + 0.9984912872314453, + 0.9987384676933289, + 0.9995087385177612, + 0.9983331561088562, + 0.9986922144889832, + 0.9988389611244202, + 0.9846109747886658 + ], + "sentiment_counts": { + "POSITIVE": 23, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9583333333333334, + "NEGATIVE": 0.041666666666666664 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9583333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9984752535820007, + 0.9989033937454224, + 0.9984197616577148, + 0.9994951486587524, + 0.9989215135574341, + 0.998112678527832, + 0.9988251328468323, + 0.9983333945274353, + 0.9989269375801086, + 0.9974064230918884, + 0.9982553124427795, + 0.9989026784896851, + 0.9989097118377686, + 0.9988616704940796, + 0.997117280960083, + 0.9988135099411011, + 0.9989290833473206, + 0.9988994598388672, + 0.9974592328071594, + 0.9989049434661865, + 0.9988552331924438, + 0.9987035989761353, + 0.9989222288131714, + 0.9989323019981384, + 0.9988561868667603, + 0.9994227886199951, + 0.997117280960083, + 0.9968611001968384, + 0.9982553124427795, + 0.9989268183708191, + 0.9976589679718018, + 0.9992321729660034 + ], + "sentiment_counts": { + "POSITIVE": 26, + "NEGATIVE": 6 + }, + "sentiment_distribution": { + "POSITIVE": 0.8125, + "NEGATIVE": 0.1875 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8125 + ] + }, + "final_label": "POSITIVE", + "final_count": 77, + "final_proportion": 0.8850574712643678, + "final_counts": { + "POSITIVE": 77, + "NEGATIVE": 10 + }, + "final_distribution": { + "POSITIVE": 0.8850574712643678, + "NEGATIVE": 0.11494252873563218 + } + } }, { "season_code": "202301", @@ -136627,7 +301823,7 @@ "17:00", "17:50", "LORIA 358 - Loria Center 358", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -136644,7 +301840,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -136676,7 +301900,7 @@ "19:00", "19:50", "LORIA 358 - Loria Center 358", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -136693,7 +301917,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -136725,7 +301977,7 @@ "20:00", "20:50", "LORIA 360 - Loria Center 360", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -136742,7 +301994,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -136774,7 +302054,7 @@ "19:00", "19:50", "LORIA 360 - Loria Center 360", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -136791,7 +302071,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -136823,7 +302131,7 @@ "19:00", "19:50", "WTS B51 - Watson Center 60 Sachem Street B51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -136840,7 +302148,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -136872,7 +302208,7 @@ "17:00", "17:50", "LORIA B50 - Loria Center B50", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -136889,7 +302225,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -136926,7 +302290,7 @@ "9:00", "10:15", "LUCE 101 - Luce Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ], "Wednesday": [ @@ -136934,7 +302298,7 @@ "9:00", "10:15", "LUCE 101 - Luce Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ] }, @@ -136953,10 +302317,277 @@ "classnotes": "New Faculty: Ardina Hasanbasri", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84191\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84191/assignments/syllabus", "fysem": false, "sysem": true, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9984980821609497, + 0.9985747337341309, + 0.9991801381111145, + 0.9985823631286621, + 0.9988864064216614, + 0.9993880987167358, + 0.999498724937439, + 0.9982510209083557, + 0.9995050430297852, + 0.9988579750061035, + 0.9988529682159424, + 0.9994906187057495, + 0.998660683631897, + 0.9967300891876221, + 0.9937175512313843, + 0.8755084276199341, + 0.9987123012542725, + 0.9985589385032654, + 0.99836665391922, + 0.9984265565872192, + 0.998775064945221, + 0.9986201524734497, + 0.9803302884101868, + 0.9987748265266418, + 0.9937512278556824, + 0.9994869232177734, + 0.9987137317657471, + 0.9995077848434448 + ], + "sentiment_counts": { + "POSITIVE": 18, + "NEGATIVE": 10 + }, + "sentiment_distribution": { + "POSITIVE": 0.6428571428571429, + "NEGATIVE": 0.35714285714285715 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6428571428571429 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988476037979126, + 0.9994704127311707, + 0.9952566027641296, + 0.9993876218795776, + 0.9977225661277771, + 0.9994951486587524, + 0.9981347322463989, + 0.9994993209838867, + 0.9983413219451904, + 0.9985492825508118, + 0.9994974136352539, + 0.9981569647789001, + 0.9845697283744812, + 0.9995012283325195, + 0.9994943141937256, + 0.9988896250724792, + 0.9984525442123413, + 0.9952764511108398, + 0.9995038509368896, + 0.9974191188812256, + 0.999509334564209, + 0.999488115310669, + 0.9995111227035522, + 0.998643696308136, + 0.9994981288909912, + 0.9912700653076172, + 0.9987459182739258, + 0.9994823932647705, + 0.9988486766815186, + 0.997521698474884, + 0.9988679885864258, + 0.9735767841339111, + 0.999496579170227, + 0.9976179003715515, + 0.9988651275634766, + 0.9995090961456299 + ], + "sentiment_counts": { + "POSITIVE": 14, + "NEGATIVE": 22 + }, + "sentiment_distribution": { + "POSITIVE": 0.3888888888888889, + "NEGATIVE": 0.6111111111111112 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.6111111111111112 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9980734586715698, + 0.9957090616226196, + 0.9994890689849854, + 0.9990791082382202, + 0.9974592328071594, + 0.9994959831237793, + 0.9994199275970459, + 0.9995055198669434, + 0.9833749532699585, + 0.9955862760543823, + 0.9966322779655457, + 0.9994938373565674, + 0.9987190961837769, + 0.9965049028396606, + 0.9994787573814392, + 0.9984903335571289, + 0.9983184337615967, + 0.9978991746902466, + 0.999506950378418, + 0.9983682036399841, + 0.9925838708877563, + 0.999506950378418, + 0.9941207766532898, + 0.9993044137954712, + 0.998340368270874, + 0.9989854693412781, + 0.9989213943481445, + 0.9986335635185242, + 0.9986862540245056, + 0.9964430928230286, + 0.9979183077812195, + 0.9994834661483765, + 0.9994840621948242, + 0.9994943141937256, + 0.9989226460456848, + 0.9995156526565552 + ], + "sentiment_counts": { + "POSITIVE": 16, + "NEGATIVE": 20 + }, + "sentiment_distribution": { + "POSITIVE": 0.4444444444444444, + "NEGATIVE": 0.5555555555555556 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.5555555555555556 + ] + }, + "final_label": "neutral", + "final_count": 52, + "final_proportion": 0.5, + "final_counts": { + "POSITIVE": 48, + "NEGATIVE": 52 + }, + "final_distribution": { + "POSITIVE": 0.48, + "NEGATIVE": 0.52 + } + } }, { "season_code": "202301", @@ -136987,7 +302618,7 @@ "16:00", "16:50", "HLH17 111 - 17 Hillhouse Avenue 111", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -137006,7 +302637,35 @@ "syllabus_url": "", "fysem": false, "sysem": true, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -137037,7 +302696,7 @@ "13:30", "14:20", "HLH17 111 - 17 Hillhouse Avenue 111", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -137056,7 +302715,35 @@ "syllabus_url": "", "fysem": false, "sysem": true, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -137087,7 +302774,7 @@ "15:30", "16:20", "DL 120 - Dunham Laboratory 120", - "https:\/\/map.yale.edu\/?id=1910#!m\/560005" + "https://map.yale.edu/?id=1910#!m/560005" ] ] }, @@ -137106,7 +302793,35 @@ "syllabus_url": "", "fysem": false, "sysem": true, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -137137,7 +302852,7 @@ "13:30", "14:20", "HLH17 111 - 17 Hillhouse Avenue 111", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -137156,7 +302871,35 @@ "syllabus_url": "", "fysem": false, "sysem": true, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -137193,7 +302936,7 @@ "9:25", "11:15", "LC 211 - Linsly-Chittenden Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -137207,10 +302950,147 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84196\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84196/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988647699356079, + 0.9989017248153687, + 0.9988942742347717, + 0.9989031553268433, + 0.9984713196754456, + 0.998925507068634, + 0.9988825917243958, + 0.998891294002533, + 0.9983775615692139, + 0.9987084865570068, + 0.9985780715942383 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988862872123718, + 0.998891294002533, + 0.9989172220230103, + 0.9988722205162048, + 0.9987987279891968, + 0.9989225268363953, + 0.9989256262779236, + 0.9989038705825806, + 0.9989209175109863, + 0.6377096772193909, + 0.9988787770271301, + 0.998871386051178 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9166666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989294409751892, + 0.9988195300102234, + 0.9989137649536133, + 0.998928964138031, + 0.9989134073257446, + 0.998842716217041, + 0.9989320635795593, + 0.9989240765571594, + 0.9981974959373474, + 0.9988442659378052, + 0.99892657995224, + 0.9989217519760132 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 34, + "final_proportion": 0.9714285714285714, + "final_counts": { + "POSITIVE": 34, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9714285714285714, + "NEGATIVE": 0.02857142857142857 + } + } }, { "season_code": "202301", @@ -137248,7 +303128,7 @@ "13:00", "14:15", "WLH 119 - William L. Harkness Hall 119", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -137256,7 +303136,7 @@ "13:00", "14:15", "WLH 119 - William L. Harkness Hall 119", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -137270,10 +303150,139 @@ "classnotes": "", "final_exam": "Tuesday, May 9, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83791\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83791/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9994499087333679, + 0.9935628175735474, + 0.998683512210846, + 0.9988177418708801, + 0.9988738894462585, + 0.9988996982574463, + 0.9987407326698303, + 0.9986531734466553, + 0.9994858503341675 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 6 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9983792304992676, + 0.9995003938674927, + 0.9968775510787964, + 0.9989067316055298, + 0.998543381690979, + 0.9989355206489563, + 0.9989010095596313, + 0.9995062351226807, + 0.9989151954650879, + 0.9988179802894592, + 0.9995005130767822 + ], + "sentiment_counts": { + "NEGATIVE": 4, + "POSITIVE": 7 + }, + "sentiment_distribution": { + "NEGATIVE": 0.36363636363636365, + "POSITIVE": 0.6363636363636364 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6363636363636364 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9995064735412598, + 0.9957501888275146, + 0.9988375306129456, + 0.9988773465156555, + 0.9986376166343689, + 0.998907208442688, + 0.9974306225776672, + 0.9974205493927002, + 0.9995061159133911, + 0.9988576173782349, + 0.9995038509368896 + ], + "sentiment_counts": { + "NEGATIVE": 4, + "POSITIVE": 7 + }, + "sentiment_distribution": { + "NEGATIVE": 0.36363636363636365, + "POSITIVE": 0.6363636363636364 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6363636363636364 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 0.6451612903225806, + "final_counts": { + "NEGATIVE": 11, + "POSITIVE": 20 + }, + "final_distribution": { + "NEGATIVE": 0.3548387096774194, + "POSITIVE": 0.6451612903225806 + } + } }, { "season_code": "202301", @@ -137315,7 +303324,7 @@ "14:30", "15:20", "SSS 114 - Sheffield-Sterling-Strathcona 114", - "https:\/\/map.yale.edu\/?id=1910#!m\/563689" + "https://map.yale.edu/?id=1910#!m/563689" ] ], "Wednesday": [ @@ -137323,7 +303332,7 @@ "14:30", "15:20", "SSS 114 - Sheffield-Sterling-Strathcona 114", - "https:\/\/map.yale.edu\/?id=1910#!m\/563689" + "https://map.yale.edu/?id=1910#!m/563689" ] ] }, @@ -137337,10 +303346,209 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83798\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83798/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998935878276825, + 0.9982777833938599, + 0.9968156218528748, + 0.9984039664268494, + 0.9962582588195801, + 0.9989311099052429, + 0.9988338351249695, + 0.9954687356948853, + 0.998785674571991, + 0.9987488985061646, + 0.9988712668418884, + 0.9985829591751099, + 0.998740017414093, + 0.9989156723022461, + 0.9994814991950989, + 0.9988394379615784, + 0.9989112615585327, + 0.9986221790313721, + 0.9988502264022827, + 0.998793363571167, + 0.9989294409751892, + 0.9989286065101624 + ], + "sentiment_counts": { + "POSITIVE": 20, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9090909090909091 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9987419247627258, + 0.99887615442276, + 0.9989142417907715, + 0.9986788630485535, + 0.9962582588195801, + 0.9994927644729614, + 0.9988754391670227, + 0.9988775849342346, + 0.9972184896469116, + 0.9870812296867371, + 0.9940172433853149, + 0.9986811280250549, + 0.999489426612854, + 0.9988136291503906, + 0.9992954730987549, + 0.9966887831687927, + 0.9993485808372498, + 0.9988741278648376, + 0.9994860887527466, + 0.9989207983016968, + 0.9983103275299072, + 0.9982118606567383, + 0.9987824559211731, + 0.9847177863121033 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 11 + }, + "sentiment_distribution": { + "POSITIVE": 0.5416666666666666, + "NEGATIVE": 0.4583333333333333 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989104270935059, + 0.9977057576179504, + 0.9988704323768616, + 0.9984052777290344, + 0.9962582588195801, + 0.9989359974861145, + 0.9988816380500793, + 0.9974592328071594, + 0.9982234835624695, + 0.9990212917327881, + 0.9985746145248413, + 0.9979425072669983, + 0.9988999366760254, + 0.9995064735412598, + 0.991790771484375, + 0.9988986253738403, + 0.9988992214202881, + 0.9983044862747192, + 0.9988798499107361, + 0.9987069368362427 + ], + "sentiment_counts": { + "POSITIVE": 14, + "NEGATIVE": 6 + }, + "sentiment_distribution": { + "POSITIVE": 0.7, + "NEGATIVE": 0.3 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7 + ] + }, + "final_label": "POSITIVE", + "final_count": 47, + "final_proportion": 0.7121212121212122, + "final_counts": { + "POSITIVE": 47, + "NEGATIVE": 19 + }, + "final_distribution": { + "POSITIVE": 0.7121212121212122, + "NEGATIVE": 0.2878787878787879 + } + } }, { "season_code": "202301", @@ -137401,7 +303609,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -137437,7 +303673,7 @@ "10:30", "11:20", "HQ 129 - Humanities Quadrangle 129", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -137454,7 +303690,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -137490,7 +303754,7 @@ "14:30", "15:20", "HQ 133 - Humanities Quadrangle 133", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -137507,7 +303771,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -137543,7 +303835,7 @@ "14:30", "15:20", "HQ 132 - Humanities Quadrangle 132", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -137560,7 +303852,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -137596,7 +303916,7 @@ "16:00", "16:50", "HQ 401 - Humanities Quadrangle 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -137613,7 +303933,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -137674,7 +304022,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -137735,7 +304111,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -137796,7 +304200,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -137857,7 +304289,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -137918,7 +304378,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -137959,7 +304447,7 @@ "10:30", "11:20", "LORIA 351 - Loria Center 351", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ], "Thursday": [ @@ -137967,7 +304455,7 @@ "10:30", "11:20", "LORIA 351 - Loria Center 351", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -137988,10 +304476,193 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83387\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83387/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985113739967346, + 0.9993385672569275, + 0.9989054203033447, + 0.9987413287162781, + 0.9988246560096741, + 0.9989179372787476, + 0.9987403750419617, + 0.9988346695899963, + 0.998862624168396, + 0.9988658428192139, + 0.9988833069801331, + 0.9987567663192749, + 0.9987362027168274, + 0.9983325600624084, + 0.991707980632782, + 0.9995017051696777, + 0.9976261258125305 + ], + "sentiment_counts": { + "POSITIVE": 15, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8823529411764706, + "NEGATIVE": 0.11764705882352941 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8823529411764706 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981862902641296, + 0.9988204836845398, + 0.9995107650756836, + 0.9989113807678223, + 0.9987157583236694, + 0.9995076656341553, + 0.9887896776199341, + 0.9989262223243713, + 0.9988092184066772, + 0.9994956254959106, + 0.9995019435882568, + 0.9973430037498474, + 0.9980487823486328, + 0.9912784695625305, + 0.9981743097305298, + 0.9986567497253418, + 0.9995007514953613, + 0.9941630959510803 + ], + "sentiment_counts": { + "NEGATIVE": 8, + "POSITIVE": 10 + }, + "sentiment_distribution": { + "NEGATIVE": 0.4444444444444444, + "POSITIVE": 0.5555555555555556 + }, + "sentiment_overall": [ + "POSITIVE", + 0.5555555555555556 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.986362636089325, + 0.9980016350746155, + 0.9976667165756226, + 0.9995057582855225, + 0.9995101690292358, + 0.998887836933136, + 0.998101532459259, + 0.9941808581352234, + 0.9926744103431702, + 0.9988856911659241, + 0.9986157417297363, + 0.9989258646965027, + 0.9995089769363403, + 0.9994294047355652, + 0.9989312291145325, + 0.9978559613227844, + 0.9989157915115356, + 0.9986143112182617, + 0.998832643032074, + 0.9982798099517822, + 0.9995107650756836, + 0.9995071887969971, + 0.999388575553894 + ], + "sentiment_counts": { + "POSITIVE": 14, + "NEGATIVE": 9 + }, + "sentiment_distribution": { + "POSITIVE": 0.6086956521739131, + "NEGATIVE": 0.391304347826087 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6086956521739131 + ] + }, + "final_label": "POSITIVE", + "final_count": 39, + "final_proportion": 0.6724137931034483, + "final_counts": { + "POSITIVE": 39, + "NEGATIVE": 19 + }, + "final_distribution": { + "POSITIVE": 0.6724137931034483, + "NEGATIVE": 0.3275862068965517 + } + } }, { "season_code": "202301", @@ -138025,7 +304696,7 @@ "13:30", "14:20", "RDH 211 - Rudolph Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/559534" + "https://map.yale.edu/?id=1910#!m/559534" ] ] }, @@ -138042,7 +304713,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -138076,7 +304775,7 @@ "17:00", "17:50", "WLH 114 - William L. Harkness Hall 114", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -138093,7 +304792,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -138127,7 +304854,7 @@ "16:00", "16:50", "RDH 211 - Rudolph Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/559534" + "https://map.yale.edu/?id=1910#!m/559534" ] ] }, @@ -138144,7 +304871,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -138178,7 +304933,7 @@ "14:30", "15:20", "RDH 211 - Rudolph Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/559534" + "https://map.yale.edu/?id=1910#!m/559534" ] ] }, @@ -138195,7 +304950,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -138252,7 +305035,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -138292,7 +305103,7 @@ "15:30", "17:20", "RKZ 301 - Rosenkranz Hall 301", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -138305,13 +305116,94 @@ ], "regnotes": "", "rp_attr": "", - "classnotes": "This course requires instructor permission. Please submit the following information with your request to register.\n1. Full Name:\n2.\tRank: Undergraduate (major)? Master? PhD candidate?\n3.\tMajor and year\n4.\tGPA\n5.\tDo you wish you write your senior essay in one the seminars selected? If yes, on what topic?\n6.\tDo you have any previous course work that is related to State Formation\/State Building?\n7.\tDid you shop this course last year but did not get in?\n8.\tWhy do you wish to take this seminar?\n9.\tWhich period and region are you eager to study in this seminar? Why?\n10.\tDo you have any notion of quantitative analysis and or game theory? List relevant course work.\n", + "classnotes": "This course requires instructor permission. Please submit the following information with your request to register.\n1. Full Name:\n2.\tRank: Undergraduate (major)? Master? PhD candidate?\n3.\tMajor and year\n4.\tGPA\n5.\tDo you wish you write your senior essay in one the seminars selected? If yes, on what topic?\n6.\tDo you have any previous course work that is related to State Formation/State Building?\n7.\tDid you shop this course last year but did not get in?\n8.\tWhy do you wish to take this seminar?\n9.\tWhich period and region are you eager to study in this seminar? Why?\n10.\tDo you have any notion of quantitative analysis and or game theory? List relevant course work.\n", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85435\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85435/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988842606544495, + 0.9927089214324951, + 0.9987228512763977 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998900294303894, + 0.9988118410110474 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987723231315613, + 0.997117280960083, + 0.9987229704856873 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 8, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 8 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -138351,7 +305243,7 @@ "13:30", "15:20", "HQ 132 - Humanities Quadrangle 132", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -138360,7 +305252,7 @@ "So" ], "flags": [ - "YC EVST: Core Human\/Social Sci", + "YC EVST: Core Human/Social Sci", "YC GLHTH: Health & Societies", "YC GLHTH: Polit Econ & Govern" ], @@ -138369,10 +305261,145 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84066\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84066/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988701939582825, + 0.9988918900489807, + 0.9921477437019348, + 0.9988276362419128, + 0.9987004995346069, + 0.9988986253738403, + 0.9989198446273804, + 0.9988481998443604, + 0.9988188147544861, + 0.9987941980361938, + 0.9987064599990845 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9823588728904724, + 0.9988149404525757, + 0.9989333748817444, + 0.9989256262779236, + 0.9989344477653503, + 0.9989063739776611, + 0.9989162683486938, + 0.9983733892440796, + 0.9973631501197815, + 0.9989039897918701, + 0.9989022016525269 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 8 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2727272727272727, + "POSITIVE": 0.7272727272727273 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7272727272727273 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998782217502594, + 0.9987050294876099, + 0.9988222718238831, + 0.9948569536209106, + 0.9984742999076843, + 0.9984195232391357, + 0.9988653659820557, + 0.9989256262779236, + 0.9986452460289001, + 0.9988420605659485, + 0.9984684586524963, + 0.9988973140716553 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9166666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 30, + "final_proportion": 0.8823529411764706, + "final_counts": { + "POSITIVE": 30, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.8823529411764706, + "NEGATIVE": 0.11764705882352941 + } + } }, { "season_code": "202301", @@ -138412,7 +305439,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -138452,7 +305507,7 @@ "9:25", "10:15", "WLH 119 - William L. Harkness Hall 119", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -138460,7 +305515,7 @@ "9:25", "10:15", "WLH 119 - William L. Harkness Hall 119", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -138474,10 +305529,239 @@ "classnotes": "During the period between November 14 and November 24, enrollment will be limited to majors. After November 24, registration will be opened to all Yale College students. Please register your interest via the Yale Course Search website. ", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84684\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84684/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985846281051636, + 0.9988105297088623, + 0.9985256791114807, + 0.9985295534133911, + 0.9988969564437866, + 0.9988834261894226, + 0.9977514147758484, + 0.9988563060760498, + 0.9987576007843018, + 0.9975693821907043, + 0.9987862706184387, + 0.9986097812652588, + 0.9974665641784668, + 0.9988927245140076, + 0.9987136125564575, + 0.9987572431564331, + 0.998791515827179, + 0.9944117665290833, + 0.9888995885848999, + 0.9989033937454224, + 0.9988823533058167, + 0.9987388253211975, + 0.9987381100654602, + 0.9591807126998901, + 0.9987437129020691, + 0.9984278678894043 + ], + "sentiment_counts": { + "POSITIVE": 26, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987310767173767, + 0.9988885521888733, + 0.9971687197685242, + 0.998896598815918, + 0.998936116695404, + 0.9794125556945801, + 0.9989044666290283, + 0.9988607168197632, + 0.9988886713981628, + 0.9987872242927551, + 0.9959118366241455, + 0.9987677335739136, + 0.9988596439361572, + 0.9987506866455078, + 0.9949052333831787, + 0.9988143444061279, + 0.9985610842704773, + 0.9994980096817017, + 0.998879611492157, + 0.9988208413124084, + 0.9972012042999268, + 0.999474823474884, + 0.998870313167572, + 0.9988526105880737, + 0.9982838034629822, + 0.9988747239112854 + ], + "sentiment_counts": { + "POSITIVE": 22, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.8461538461538461, + "NEGATIVE": 0.15384615384615385 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8461538461538461 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989081621170044, + 0.9988532066345215, + 0.9982553124427795, + 0.9989147186279297, + 0.9988744854927063, + 0.9988996982574463, + 0.9988558292388916, + 0.9849560856819153, + 0.9989055395126343, + 0.9986552000045776, + 0.9984148740768433, + 0.998860239982605, + 0.9986028075218201, + 0.9982799291610718, + 0.9989160299301147, + 0.9988149404525757, + 0.9987614154815674, + 0.9980523586273193, + 0.9988523721694946, + 0.974129855632782, + 0.9989210367202759, + 0.9982553124427795, + 0.9989327788352966, + 0.9989131689071655, + 0.9989345669746399, + 0.9452022910118103, + 0.9987466335296631, + 0.9989161491394043, + 0.998930037021637 + ], + "sentiment_counts": { + "POSITIVE": 25, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.8620689655172413, + "NEGATIVE": 0.13793103448275862 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8620689655172413 + ] + }, + "final_label": "POSITIVE", + "final_count": 73, + "final_proportion": 0.9012345679012346, + "final_counts": { + "POSITIVE": 73, + "NEGATIVE": 8 + }, + "final_distribution": { + "POSITIVE": 0.9012345679012346, + "NEGATIVE": 0.09876543209876543 + } + } }, { "season_code": "202301", @@ -138511,7 +305795,7 @@ "9:25", "10:15", "BASSLB L70 - Bass Library L70", - "https:\/\/map.yale.edu\/?id=1910#!m\/564574" + "https://map.yale.edu/?id=1910#!m/564574" ] ] }, @@ -138528,7 +305812,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -138562,7 +305874,7 @@ "10:30", "11:20", "BASSLB L70 - Bass Library L70", - "https:\/\/map.yale.edu\/?id=1910#!m\/564574" + "https://map.yale.edu/?id=1910#!m/564574" ] ] }, @@ -138579,7 +305891,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -138613,7 +305953,7 @@ "16:00", "16:50", "WTS A38 - Watson Center 60 Sachem Street A38", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -138630,7 +305970,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -138664,7 +306032,7 @@ "17:00", "17:50", "WTS A38 - Watson Center 60 Sachem Street A38", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -138681,7 +306049,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -138718,7 +306114,7 @@ "13:30", "15:20", "WTS A35 - Watson Center 60 Sachem Street A35", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -138734,10 +306130,113 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85948\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85948/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9976099729537964, + 0.9988956451416016, + 0.9987762570381165, + 0.9988527297973633, + 0.9987820982933044, + 0.9988976716995239 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988709092140198, + 0.9986191987991333, + 0.9989386200904846, + 0.9989172220230103, + 0.9989272952079773, + 0.9988545179367065 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998802661895752, + 0.998913049697876, + 0.9988155364990234, + 0.9989134073257446, + 0.9989221096038818, + 0.9988905787467957, + 0.998816967010498 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 19 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -138774,7 +306273,7 @@ "13:00", "14:15", "WTS A68 - Watson Center 60 Sachem Street A68", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -138782,7 +306281,7 @@ "13:00", "14:15", "WTS A68 - Watson Center 60 Sachem Street A68", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -138796,10 +306295,135 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84086\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84086/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998745322227478, + 0.998801589012146, + 0.9975597858428955, + 0.9988570213317871, + 0.9989068508148193, + 0.9987497329711914, + 0.9988873600959778, + 0.9989105463027954, + 0.9987840056419373, + 0.9989045858383179 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989182949066162, + 0.9988536834716797, + 0.998908519744873, + 0.998903751373291, + 0.9989224672317505, + 0.9989256262779236, + 0.9988778233528137, + 0.998917818069458, + 0.9989238381385803 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9976826906204224, + 0.9989233613014221, + 0.9988325238227844, + 0.9982553124427795, + 0.9989216327667236, + 0.9988014698028564, + 0.9989194869995117, + 0.9989150762557983, + 0.998837411403656, + 0.9989148378372192, + 0.9989045858383179 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 30, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 30 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -138836,7 +306460,7 @@ "15:30", "17:20", "WLH 203 - William L. Harkness Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -138854,10 +306478,101 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85460\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85460/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988499879837036, + 0.9988150596618652, + 0.9986734390258789, + 0.998498797416687 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987223744392395, + 0.998837411403656, + 0.99871826171875, + 0.9986581802368164 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981631636619568, + 0.9981716871261597, + 0.9913210272789001, + 0.9989282488822937 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 0.9166666666666666, + "final_counts": { + "POSITIVE": 11, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + } + } }, { "season_code": "202301", @@ -138894,7 +306609,7 @@ "13:30", "15:20", "WLH 009 - William L. Harkness Hall 009", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -138910,10 +306625,95 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86257\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86257/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988627433776855, + 0.9988069534301758, + 0.9888110160827637 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987390637397766, + 0.9989297986030579, + 0.9988590478897095, + 0.9989296793937683 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989022016525269, + 0.998938262462616, + 0.9989380240440369 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 10 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -138952,7 +306752,7 @@ "9:25", "11:15", "WALL81 101 - 81 Wall Street 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -138969,10 +306769,115 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84089\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84089/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.998794674873352, + 0.9987566471099854, + 0.9988522529602051, + 0.998908519744873, + 0.9952634572982788, + 0.9994452595710754 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.8295912742614746, + 0.9958440661430359, + 0.9988793730735779, + 0.9995089769363403, + 0.9921929240226746, + 0.9995059967041016 + ], + "sentiment_counts": { + "NEGATIVE": 4, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.6666666666666666, + "POSITIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9987353682518005, + 0.9987649917602539, + 0.9995046854019165, + 0.9629638195037842, + 0.9995123147964478, + 0.9933921694755554, + 0.9994856119155884 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 5 + }, + "sentiment_distribution": { + "POSITIVE": 0.2857142857142857, + "NEGATIVE": 0.7142857142857143 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.7142857142857143 + ] + }, + "final_label": "neutral", + "final_count": 10, + "final_proportion": 0.5, + "final_counts": { + "POSITIVE": 9, + "NEGATIVE": 10 + }, + "final_distribution": { + "POSITIVE": 0.47368421052631576, + "NEGATIVE": 0.5263157894736842 + } + } }, { "season_code": "202301", @@ -139010,7 +306915,7 @@ "13:30", "15:20", "RKZ 05 - Rosenkranz Hall 05", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -139024,10 +306929,113 @@ "classnotes": "This course requires instructor permission. Please indicate any prior background related to the course and a brief description of why you are interested. ", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84687\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84687/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989047050476074, + 0.9988040924072266, + 0.9988923668861389, + 0.9988695979118347, + 0.998256504535675, + 0.9987826943397522 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9974164962768555, + 0.9988880753517151, + 0.9988406300544739, + 0.998755931854248, + 0.9987934827804565, + 0.9969363212585449, + 0.9955209493637085 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988747239112854, + 0.9983333945274353, + 0.998371422290802, + 0.9987722039222717, + 0.9941530823707581 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 0.9444444444444444, + "final_counts": { + "POSITIVE": 17, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9444444444444444, + "NEGATIVE": 0.05555555555555555 + } + } }, { "season_code": "202301", @@ -139070,7 +307078,7 @@ "14:30", "15:45", "HQ 132 - Humanities Quadrangle 132", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -139078,7 +307086,7 @@ "14:30", "15:45", "HQ 132 - Humanities Quadrangle 132", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -139101,10 +307109,107 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84093\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84093/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989114999771118, + 0.998789370059967, + 0.998908519744873, + 0.9989155530929565, + 0.9989334940910339 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983221888542175, + 0.9966064691543579, + 0.9981992840766907, + 0.9989176988601685, + 0.9853879809379578 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9924666285514832, + 0.9987484216690063, + 0.9988945126533508, + 0.9987887740135193, + 0.998930037021637 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 4 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2, + "POSITIVE": 0.8 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 0.9333333333333333, + "final_counts": { + "POSITIVE": 14, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9333333333333333, + "NEGATIVE": 0.06666666666666667 + } + } }, { "season_code": "202301", @@ -139141,7 +307246,7 @@ "9:25", "11:15", "WTS B74 - Watson Center 60 Sachem Street B74", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -139155,15 +307260,106 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84097\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84097/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "Prerequisite: Any introductory game theory course, e.g., ECON\/GLBL 159, MGT 822 or\u00a0Game\u00a0Theory\u00a0in the SOM Core.", - "description": "This is a second half of the semester class on applications of game theory. We build on the learnings from introductory game theory courses like ECON\/GLBL 159 or MGT 822. The course aims to introduce important ideas and tools from game theory, and use them to answer questions in social sciences, law, and business. For instance, how can we use game theory to design sound environmental policies and formulate environmental treaties? How large should juries be, and should we require unanimous verdicts? Why do bargaining parties sometimes engage in lengthy and costly legal battles? How do sellers decide the best format for an auction to sell a good? When do we see price wars? The topics include basics of mechanism design, bargaining with incomplete information, dynamic pricing, and applications of repeated games.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988787770271301, + 0.9988464117050171, + 0.9988070726394653, + 0.9988313317298889 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988924860954285, + 0.9988250136375427, + 0.9988824725151062, + 0.9988529682159424 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989320635795593, + 0.9989280104637146, + 0.9989205598831177, + 0.8150507807731628, + 0.9989168643951416 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 13 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } + }, + { + "season_code": "202301", + "requirements": "Prerequisite: Any introductory game theory course, e.g., ECON/GLBL 159, MGT 822 or\u00a0Game\u00a0Theory\u00a0in the SOM Core.", + "description": "This is a second half of the semester class on applications of game theory. We build on the learnings from introductory game theory courses like ECON/GLBL 159 or MGT 822. The course aims to introduce important ideas and tools from game theory, and use them to answer questions in social sciences, law, and business. For instance, how can we use game theory to design sound environmental policies and formulate environmental treaties? How large should juries be, and should we require unanimous verdicts? Why do bargaining parties sometimes engage in lengthy and costly legal battles? How do sellers decide the best format for an auction to sell a good? When do we see price wars? The topics include basics of mechanism design, bargaining with incomplete information, dynamic pricing, and applications of repeated games.", "short_title": "Applications of Game Theory", "title": "Applications of Game Theory", "school": "YC", @@ -139200,7 +307396,7 @@ "14:40", "16:00", "EVANS 4400 - Edward P Evans Hall 4400", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Thursday": [ @@ -139208,7 +307404,7 @@ "14:40", "16:00", "EVANS 4400 - Edward P Evans Hall 4400", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -139224,10 +307420,97 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84520\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84520/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988510608673096, + 0.9989043474197388, + 0.9988664388656616 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987670183181763, + 0.9983845949172974 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988986253738403, + 0.9956117272377014, + 0.9989016056060791, + 0.9987834095954895, + 0.9908202290534973 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 0.9, + "final_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + } + } }, { "season_code": "202301", @@ -139265,7 +307548,7 @@ "9:25", "11:15", "WTS A74 - Watson Center 60 Sachem Street A74", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -139281,10 +307564,109 @@ "classnotes": "Students also participate in the Yale Cyber Leadership Forum, a collaboration between the Yale Law School\u2019s Center for Global Legal Challenges and the Jackson School\u2019s new Schmidt Program on Artificial Intelligence, Emerging Technologies, and National Power, which brings together a mix of academics, lawyers, technologists, policymakers, and business leaders to discuss cyber security issues from different vantage points. The Forum will take place March 8-10, with additional details to be announced in the syllabus of the course\n", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84101\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84101/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988597631454468, + 0.9988320469856262, + 0.9988932013511658, + 0.9988592863082886 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989264607429504, + 0.9987623691558838, + 0.9987909197807312, + 0.9986087679862976, + 0.9989239573478699 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989330172538757, + 0.9981922507286072, + 0.9989206790924072, + 0.9987834095954895, + 0.9989301562309265, + 0.998927652835846, + 0.9986567497253418, + 0.9989315867424011 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 17 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -139318,7 +307700,7 @@ "So" ], "flags": [ - "PH: Global Health, Ethics\/Humanities\/History" + "PH: Global Health, Ethics/Humanities/History" ], "regnotes": "", "rp_attr": "", @@ -139328,7 +307710,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -139371,7 +307781,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -139408,7 +307846,7 @@ "15:30", "17:20", "HLH17 113 - 17 Hillhouse Avenue 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -139420,10 +307858,131 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84118\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84118/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985393285751343, + 0.9986764788627625, + 0.9988871216773987, + 0.9988204836845398, + 0.9989280104637146, + 0.9987620115280151, + 0.9988849759101868, + 0.9979984164237976, + 0.9989315867424011 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982883334159851, + 0.9989250302314758, + 0.9988749623298645, + 0.99886155128479, + 0.9989045858383179, + 0.9989309906959534, + 0.9989269375801086, + 0.9938288331031799, + 0.998935878276825 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998573899269104, + 0.9989105463027954, + 0.9989269375801086, + 0.9986680746078491, + 0.9985461235046387, + 0.9989025592803955, + 0.9989060163497925, + 0.9983580708503723, + 0.9989105463027954 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 8 + }, + "sentiment_distribution": { + "NEGATIVE": 0.1111111111111111, + "POSITIVE": 0.8888888888888888 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "final_label": "POSITIVE", + "final_count": 26, + "final_proportion": 0.9629629629629629, + "final_counts": { + "POSITIVE": 26, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9629629629629629, + "NEGATIVE": 0.037037037037037035 + } + } }, { "season_code": "202301", @@ -139461,7 +308020,7 @@ "skills": [], "areas": [], "flags": [ - "PH: Global Health, Development\/Political Economy" + "PH: Global Health, Development/Political Economy" ], "regnotes": "", "rp_attr": "", @@ -139471,7 +308030,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -139508,7 +308095,7 @@ "14:30", "15:45", "WALL81 401 - 81 Wall Street 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ], "Wednesday": [ @@ -139516,7 +308103,7 @@ "14:30", "15:45", "WALL81 401 - 81 Wall Street 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -139531,10 +308118,38 @@ "classnotes": "First half of spring term.", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85066\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/85066/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -139571,7 +308186,7 @@ "9:25", "11:15", "WLH 203 - William L. Harkness Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -139586,10 +308201,38 @@ "classnotes": "2nd half of term", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85067\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/85067/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -139640,10 +308283,38 @@ "classnotes": "IMPORTANT: Class will be held in the GM room (55 Hillhouse Avenue). Ignore the location posted above.", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85069\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/85069/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -139680,7 +308351,7 @@ "11:30", "13:20", "WTS B52 - Watson Center 60 Sachem Street B52", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -139692,15 +308363,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85070\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85070/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "Prerequisite: Graduate course in statistics and permission of the instructor required.", - "description": "This course provides students with practical hands-on instruction in the analysis of survey data using the statistical package Stata. It serves as a bridge between the theory of statistics\/econometrics and the practice of social science research. Throughout the term, students learn to investigate a variety of policy and management issues using data from the United States as well as several developing countries. The course assumes no prior knowledge of the statistical package Stata.", + "description": "This course provides students with practical hands-on instruction in the analysis of survey data using the statistical package Stata. It serves as a bridge between the theory of statistics/econometrics and the practice of social science research. Throughout the term, students learn to investigate a variety of policy and management issues using data from the United States as well as several developing countries. The course assumes no prior knowledge of the statistical package Stata.", "short_title": "Practicum Data Analysis", "title": "Practicum Data Analysis", "school": "GB", @@ -139733,7 +308432,7 @@ "16:00", "17:30", "EVANS 2210 - Edward P Evans Hall 2210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Wednesday": [ @@ -139741,7 +308440,7 @@ "16:00", "17:30", "EVANS 2210 - Edward P Evans Hall 2210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -139753,10 +308452,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85071\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85071/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -139795,7 +308522,7 @@ "13:00", "14:50", "LEPH 101 - Laboratory of EPH 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ] }, @@ -139810,10 +308537,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83866\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83866/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -139856,7 +308611,7 @@ "9:25", "11:15", "HQ 401 - Humanities Quadrangle 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -139868,10 +308623,121 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84206\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84206/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.994451105594635, + 0.99888676404953, + 0.9988627433776855, + 0.9989333748817444, + 0.9987595081329346, + 0.9988391995429993 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.998842716217041, + 0.9989129304885864, + 0.9989238381385803, + 0.9962312579154968, + 0.9969401359558105, + 0.9986774325370789, + 0.9989373087882996, + 0.9936462640762329 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985981583595276, + 0.9980226755142212, + 0.9988202452659607, + 0.9988977909088135, + 0.9971134662628174, + 0.9987371563911438, + 0.9989243149757385, + 0.9989074468612671 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 0.9090909090909091, + "final_counts": { + "POSITIVE": 20, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + } + } }, { "season_code": "202301", @@ -139909,7 +308775,7 @@ "14:10", "16:00", "SLB 113 - Sterling Law Buildings 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/531532" + "https://map.yale.edu/?id=1910#!m/531532" ] ] }, @@ -139921,10 +308787,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86167\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86167/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -139961,7 +308855,7 @@ "16:00", "17:50", "WTS A38 - Watson Center 60 Sachem Street A38", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -139975,10 +308869,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85073\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85073/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -140015,7 +308937,7 @@ "16:00", "17:50", "WTS B74 - Watson Center 60 Sachem Street B74", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -140027,10 +308949,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85074\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85074/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -140069,12 +309019,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "It is time to \"reopen and reimagine Africa.\" This course requires students to research and redesign policies that will help African nations emerge economically stronger and with a population that is better educated and healthier by 2050. Similarly, students examine, analyze, and support and\/or criticize the long-term policies of African nations. This requires students to engage with up-and-coming African scholars, businesspersons, educators, and policy makers to ensure that the recommendations are not conceived in a vacuum. This course also has to examine the obstacles and challenges of great-power competition among the United States, PRC, Russia, and the EU on Africa when designing alternative or status quo policies.", + "description": "It is time to \"reopen and reimagine Africa.\" This course requires students to research and redesign policies that will help African nations emerge economically stronger and with a population that is better educated and healthier by 2050. Similarly, students examine, analyze, and support and/or criticize the long-term policies of African nations. This requires students to engage with up-and-coming African scholars, businesspersons, educators, and policy makers to ensure that the recommendations are not conceived in a vacuum. This course also has to examine the obstacles and challenges of great-power competition among the United States, PRC, Russia, and the EU on Africa when designing alternative or status quo policies.", "short_title": "Reopening and Reimagining Africa", "title": "Reopening and Reimagining Africa", "school": "GB", @@ -140107,7 +309085,7 @@ "13:30", "15:20", "HQ 229 - Humanities Quadrangle 229", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -140119,10 +309097,38 @@ "classnotes": "Open enrollment. Permission of instructor not required.", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85075\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/85075/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -140159,7 +309165,7 @@ "16:00", "17:50", "WTS A42 - Watson Center 60 Sachem Street A42", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -140171,10 +309177,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85076\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85076/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -140211,7 +309245,7 @@ "18:00", "19:50", "WTS A38 - Watson Center 60 Sachem Street A38", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -140223,10 +309257,38 @@ "classnotes": "The instructor of this course will be Srinath Raghavan.", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85990\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/85990/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -140263,7 +309325,7 @@ "9:25", "11:15", "HQ 307 - Humanities Quadrangle 307", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -140275,10 +309337,38 @@ "classnotes": "The specific client and problem focus will be announced in the fall!", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85077\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/85077/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -140318,7 +309408,7 @@ "10:10", "11:30", "EVANS 4400 - Edward P Evans Hall 4400", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Wednesday": [ @@ -140326,7 +309416,7 @@ "10:10", "11:30", "EVANS 4400 - Edward P Evans Hall 4400", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -140343,7 +309433,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -140383,7 +309501,7 @@ "13:00", "14:20", "EVANS 4400 - Edward P Evans Hall 4400", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Wednesday": [ @@ -140391,7 +309509,7 @@ "13:00", "14:20", "EVANS 4400 - Edward P Evans Hall 4400", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -140408,7 +309526,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -140446,7 +309592,7 @@ "14:40", "16:00", "EVANS 2210 - Edward P Evans Hall 2210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Thursday": [ @@ -140454,7 +309600,7 @@ "14:40", "16:00", "EVANS 2210 - Edward P Evans Hall 2210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -140466,10 +309612,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85448\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85448/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -140506,7 +309680,7 @@ "9:00", "10:15", "WTS A48 - Watson Center 60 Sachem Street A48", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -140514,7 +309688,7 @@ "9:00", "10:15", "WTS A48 - Watson Center 60 Sachem Street A48", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -140526,10 +309700,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85079\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85079/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -140573,7 +309775,7 @@ "14:40", "16:00", "EVANS 2210 - Edward P Evans Hall 2210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Wednesday": [ @@ -140581,7 +309783,7 @@ "14:40", "16:00", "EVANS 2210 - Edward P Evans Hall 2210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -140593,10 +309795,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85080\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85080/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -140633,24 +309863,52 @@ "13:30", "15:20", "WTS B35 - Watson Center 60 Sachem Street B35", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, "skills": [], "areas": [], "flags": [ - "PH: Global Health, Development\/Political Economy" + "PH: Global Health, Development/Political Economy" ], "regnotes": "", "rp_attr": "", - "classnotes": "Please submit 1-2 sentences describing your background in economics and\/or development, including courses taken, and\/or work experience when requesting enrollment using Yale Course Search\/Yale HUB or the enrollment request form for professional school students. More information regarding enrollment for students from other professional schools is listed on canvas. ", + "classnotes": "Please submit 1-2 sentences describing your background in economics and/or development, including courses taken, and/or work experience when requesting enrollment using Yale Course Search/Yale HUB or the enrollment request form for professional school students. More information regarding enrollment for students from other professional schools is listed on canvas. ", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85081\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85081/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -140687,7 +309945,7 @@ "13:30", "15:20", "WTS A74 - Watson Center 60 Sachem Street A74", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -140699,10 +309957,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85082\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85082/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -140740,7 +310026,7 @@ "10:10", "12:00", "SLB 109 - Sterling Law Buildings 109", - "https:\/\/map.yale.edu\/?id=1910#!m\/531532" + "https://map.yale.edu/?id=1910#!m/531532" ] ] }, @@ -140752,10 +310038,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85048\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85048/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -140792,7 +310106,7 @@ "15:30", "17:20", "WTS B51 - Watson Center 60 Sachem Street B51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -140804,15 +310118,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85083\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85083/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "For nearly twenty years, the world has seen the role, funding, and employment of Special Operations Forces (SOF) increase in ways that might seem unrecognizable to previous generations of military leaders. A twenty-year chapter of highly kinetic ground operations for SOF units is seemingly winding down, but that by no means suggests that the next chapter in military strategy will be any less important for Special Operations. With the pivot toward Great Power Competition, and with the challenges posed by climate change, global political instability, the exponential rise in mis\/disinformation, and myriad other new challenges, civilian and military leadership alike are forced to consider: What could or should the role of SOF be going forward? In this course, students with appropriate\/informed backgrounds are challenged to rebuild SOF from the ground up. Students are given the latitude to work individually, as teams, or as a large group. The intent is to start with clean-slate thinking and tackle one or several major issues that the SOF community should be revamping now so that these critical communities are ready to tackle the challenges of the next one to two decades. Students have the opportunity to present their concepts and innovative proposals at SOFCON; and to submit a formal paper to the leadership of Special Forces Command, SOCOM, and other SOF units.", + "description": "For nearly twenty years, the world has seen the role, funding, and employment of Special Operations Forces (SOF) increase in ways that might seem unrecognizable to previous generations of military leaders. A twenty-year chapter of highly kinetic ground operations for SOF units is seemingly winding down, but that by no means suggests that the next chapter in military strategy will be any less important for Special Operations. With the pivot toward Great Power Competition, and with the challenges posed by climate change, global political instability, the exponential rise in mis/disinformation, and myriad other new challenges, civilian and military leadership alike are forced to consider: What could or should the role of SOF be going forward? In this course, students with appropriate/informed backgrounds are challenged to rebuild SOF from the ground up. Students are given the latitude to work individually, as teams, or as a large group. The intent is to start with clean-slate thinking and tackle one or several major issues that the SOF community should be revamping now so that these critical communities are ready to tackle the challenges of the next one to two decades. Students have the opportunity to present their concepts and innovative proposals at SOFCON; and to submit a formal paper to the leadership of Special Forces Command, SOCOM, and other SOF units.", "short_title": "Rethinking Special Operations", "title": "Rethinking Special Operations", "school": "GB", @@ -140847,7 +310189,7 @@ "18:00", "19:50", "WLH 001 - William L. Harkness Hall 001", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -140859,10 +310201,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85084\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85084/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -140913,10 +310283,38 @@ "classnotes": "course is held online.", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85085\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/85085/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -140953,7 +310351,7 @@ "16:00", "17:50", "WLH 012 - William L. Harkness Hall 012", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -140965,10 +310363,38 @@ "classnotes": "Please include answers to the following questions in your request for enrolment:\nAn introduction to yourself and your career to date, your focus at Yale now, including your program and graduation date, what you are hoping to do after graduating (and unanswered questions that you have about your next steps \u2013 these are perhaps the most important!). \nWhy you would like to take the course, any experience you have in international development or living and working abroad; and if you know what geographies you are looking at working in in the future. ENROLLMENT RESTRICTED TO JACKSON SCHOOL STUDENTS ONLY", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85087\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/85087/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -141005,7 +310431,7 @@ "11:30", "13:20", "HQ 401 - Humanities Quadrangle 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -141017,10 +310443,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85088\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85088/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -141057,7 +310511,7 @@ "9:25", "11:15", "HQ C64 - Humanities Quadrangle C64", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -141069,10 +310523,38 @@ "classnotes": "Open enrollment. Permission of instructor not required.", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85991\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/85991/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -141110,7 +310592,7 @@ "9:25", "11:15", "WTS A39 - Watson Center 60 Sachem Street A39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -141122,10 +310604,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85089\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85089/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -141162,7 +310672,7 @@ "15:30", "17:20", "WTS B52 - Watson Center 60 Sachem Street B52", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -141174,10 +310684,38 @@ "classnotes": "Open enrollment. Permission of instructor not required.", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85091\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/85091/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -141215,7 +310753,7 @@ "15:30", "17:20", "WLH 112 - William L. Harkness Hall 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -141227,10 +310765,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85092\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85092/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -141268,7 +310834,7 @@ "9:25", "11:15", "WTS A74 - Watson Center 60 Sachem Street A74", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -141280,10 +310846,109 @@ "classnotes": "Students also participate in the Yale Cyber Leadership Forum, a collaboration between the Yale Law School\u2019s Center for Global Legal Challenges and the Jackson School\u2019s new Schmidt Program on Artificial Intelligence, Emerging Technologies, and National Power, which brings together a mix of academics, lawyers, technologists, policymakers, and business leaders to discuss cyber security issues from different vantage points. The Forum will take place March 8-10, with additional details to be announced in the syllabus of the course\n", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84101\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84101/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988597631454468, + 0.9988320469856262, + 0.9988932013511658, + 0.9988592863082886 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989264607429504, + 0.9987623691558838, + 0.9987909197807312, + 0.9986087679862976, + 0.9989239573478699 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989330172538757, + 0.9981922507286072, + 0.9989206790924072, + 0.9987834095954895, + 0.9989301562309265, + 0.998927652835846, + 0.9986567497253418, + 0.9989315867424011 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 17 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -141320,7 +310985,7 @@ "10:10", "12:00", "SLB 128 - Sterling Law Buildings 128", - "https:\/\/map.yale.edu\/?id=1910#!m\/531532" + "https://map.yale.edu/?id=1910#!m/531532" ] ], "Wednesday": [ @@ -141328,7 +310993,7 @@ "10:10", "12:00", "SLB 128 - Sterling Law Buildings 128", - "https:\/\/map.yale.edu\/?id=1910#!m\/531532" + "https://map.yale.edu/?id=1910#!m/531532" ] ] }, @@ -141340,10 +311005,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85098\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85098/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -141380,7 +311073,7 @@ "15:30", "17:20", "WTS A38 - Watson Center 60 Sachem Street A38", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -141392,10 +311085,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85093\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85093/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -141435,10 +311156,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87143\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87143/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -141478,10 +311227,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87645\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87645/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -141518,7 +311295,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -141555,7 +311360,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -141598,7 +311431,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -141641,7 +311502,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -141684,7 +311573,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -141727,7 +311644,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -141773,7 +311718,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -141816,10 +311789,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87685\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87685/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -141862,7 +311863,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -141899,7 +311928,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -141942,7 +311999,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -141985,7 +312070,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -142022,7 +312135,7 @@ "11:35", "12:50", "HQ 207 - Humanities Quadrangle 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -142030,7 +312143,7 @@ "11:35", "12:50", "HQ 207 - Humanities Quadrangle 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -142042,14 +312155,93 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85195\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85195/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "To be followed by GMAN 120. Enrollment limited to 14 per section. Students must preregister through Preference Selection during the online preregistration period. Details and a link to Preference Selection are provided on the German department Web site at http:\/\/german.yale.edu.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9976353645324707, + 0.9988767504692078 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9987987279891968, + 0.9963518381118774 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.997117280960083, + 0.9988425970077515 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 5, + "final_proportion": 0.8333333333333334, + "final_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + } + } + }, + { + "season_code": "202301", + "requirements": "To be followed by GMAN 120. Enrollment limited to 14 per section. Students must preregister through Preference Selection during the online preregistration period. Details and a link to Preference Selection are provided on the German department Web site at http://german.yale.edu.", "description": "A beginning content- and task-based course that focuses on the acquisition of spoken and written communication skills, as well as on the development of cultural awareness and of foundations in grammar and vocabulary. Topics such as school, family life, and housing. Course materials include a variety of authentic readings, a feature film, and shorter video clips. Tutors are available for extra help.", "short_title": "Elementary German I", "title": "Elementary German I", @@ -142082,7 +312274,7 @@ "10:30", "11:20", "HQ 213 - Humanities Quadrangle 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Tuesday": [ @@ -142090,7 +312282,7 @@ "10:30", "11:20", "HQ 213 - Humanities Quadrangle 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -142098,7 +312290,7 @@ "10:30", "11:20", "HQ 213 - Humanities Quadrangle 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -142106,7 +312298,7 @@ "10:30", "11:20", "HQ 213 - Humanities Quadrangle 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Friday": [ @@ -142114,7 +312306,7 @@ "10:30", "11:20", "HQ 213 - Humanities Quadrangle 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -142128,14 +312320,125 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85193\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85193/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "To be followed by GMAN 130. Enrollment limited to 14 per section. Students must preregister through Preference Selection during the online preregistration period. Details and a link to Preference Selection are provided on the German department Web site at http:\/\/german.yale.edu.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9987004995346069, + 0.9989141225814819, + 0.9976391792297363, + 0.9987899661064148, + 0.9988449811935425, + 0.9982321858406067, + 0.9794952869415283 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.7142857142857143, + "NEGATIVE": 0.2857142857142857 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7142857142857143 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.998823344707489, + 0.9974368214607239, + 0.9986081719398499, + 0.9988486766815186, + 0.9988077878952026, + 0.99893718957901, + 0.9978427886962891 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989125728607178, + 0.9989299178123474, + 0.9989287257194519, + 0.9988918900489807, + 0.9988754391670227, + 0.998880922794342, + 0.9989088773727417, + 0.9986439347267151 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 0.8636363636363636, + "final_counts": { + "POSITIVE": 19, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.8636363636363636, + "NEGATIVE": 0.13636363636363635 + } + } + }, + { + "season_code": "202301", + "requirements": "To be followed by GMAN 130. Enrollment limited to 14 per section. Students must preregister through Preference Selection during the online preregistration period. Details and a link to Preference Selection are provided on the German department Web site at http://german.yale.edu.", "description": "Continuation of GMAN 110. A content- and task-based course that focuses on the acquisition of communicative competence in speaking and writing and on the development of strong cultural awareness. Topics such as multiculturalism, food, childhood, and travel; units on Switzerland and Austria. Course materials include a variety of authentic readings, a feature film, and shorter video clips. Tutors are available for extra help.", "short_title": "Elementary German II", "title": "Elementary German II", @@ -142168,7 +312471,7 @@ "9:25", "10:15", "HQ 132 - Humanities Quadrangle 132", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -142176,7 +312479,7 @@ "9:25", "10:15", "HQ 132 - Humanities Quadrangle 132", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Friday": [ @@ -142184,7 +312487,7 @@ "9:25", "10:15", "HQ 132 - Humanities Quadrangle 132", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Monday": [ @@ -142192,7 +312495,7 @@ "9:25", "10:15", "HQ 133 - Humanities Quadrangle 133", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -142200,7 +312503,7 @@ "9:25", "10:15", "", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -142214,14 +312517,115 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85196\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85196/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "To be followed by GMAN 130. Enrollment limited to 14 per section. Students must preregister through Preference Selection during the online preregistration period. Details and a link to Preference Selection are provided on the German department Web site at http:\/\/german.yale.edu.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986326098442078, + 0.9989309906959534, + 0.9986024498939514, + 0.9988592863082886, + 0.9988700747489929, + 0.9974823594093323 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9994959831237793, + 0.9988971948623657, + 0.9679917693138123, + 0.9988705515861511, + 0.9994301199913025, + 0.999294638633728, + 0.9995003938674927 + ], + "sentiment_counts": { + "NEGATIVE": 5, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.7142857142857143, + "POSITIVE": 0.2857142857142857 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.7142857142857143 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989293217658997, + 0.9987552165985107, + 0.9989023208618164, + 0.9987210631370544 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 0.7058823529411765, + "final_counts": { + "POSITIVE": 12, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.7058823529411765, + "NEGATIVE": 0.29411764705882354 + } + } + }, + { + "season_code": "202301", + "requirements": "To be followed by GMAN 130. Enrollment limited to 14 per section. Students must preregister through Preference Selection during the online preregistration period. Details and a link to Preference Selection are provided on the German department Web site at http://german.yale.edu.", "description": "Continuation of GMAN 110. A content- and task-based course that focuses on the acquisition of communicative competence in speaking and writing and on the development of strong cultural awareness. Topics such as multiculturalism, food, childhood, and travel; units on Switzerland and Austria. Course materials include a variety of authentic readings, a feature film, and shorter video clips. Tutors are available for extra help.", "short_title": "Elementary German II", "title": "Elementary German II", @@ -142254,7 +312658,7 @@ "10:30", "11:20", "WLH 202 - William L. Harkness Hall 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Tuesday": [ @@ -142262,7 +312666,7 @@ "10:30", "11:20", "WLH 202 - William L. Harkness Hall 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -142270,7 +312674,7 @@ "10:30", "11:20", "WLH 202 - William L. Harkness Hall 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -142278,7 +312682,7 @@ "10:30", "11:20", "WLH 202 - William L. Harkness Hall 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Friday": [ @@ -142286,7 +312690,7 @@ "10:30", "11:20", "WLH 202 - William L. Harkness Hall 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -142300,14 +312704,103 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85197\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85197/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "To be followed by GMAN 130. Enrollment limited to 14 per section. Students must preregister through Preference Selection during the online preregistration period. Details and a link to Preference Selection are provided on the German department Web site at http:\/\/german.yale.edu.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989035129547119, + 0.9988247752189636, + 0.9982117414474487 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998934805393219, + 0.997461199760437, + 0.9994801878929138, + 0.9989066123962402 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989166259765625, + 0.9982553124427795, + 0.9989162683486938, + 0.9988099336624146 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 0.9090909090909091, + "final_counts": { + "POSITIVE": 10, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + } + } + }, + { + "season_code": "202301", + "requirements": "To be followed by GMAN 130. Enrollment limited to 14 per section. Students must preregister through Preference Selection during the online preregistration period. Details and a link to Preference Selection are provided on the German department Web site at http://german.yale.edu.", "description": "Continuation of GMAN 110. A content- and task-based course that focuses on the acquisition of communicative competence in speaking and writing and on the development of strong cultural awareness. Topics such as multiculturalism, food, childhood, and travel; units on Switzerland and Austria. Course materials include a variety of authentic readings, a feature film, and shorter video clips. Tutors are available for extra help.", "short_title": "Elementary German II", "title": "Elementary German II", @@ -142340,7 +312833,7 @@ "11:35", "12:25", "WLH 003 - William L. Harkness Hall 003", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Tuesday": [ @@ -142348,7 +312841,7 @@ "11:35", "12:25", "WLH 003 - William L. Harkness Hall 003", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -142356,7 +312849,7 @@ "11:35", "12:25", "WLH 003 - William L. Harkness Hall 003", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -142364,7 +312857,7 @@ "11:35", "12:25", "WLH 003 - William L. Harkness Hall 003", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Friday": [ @@ -142372,7 +312865,7 @@ "11:35", "12:25", "WLH 003 - William L. Harkness Hall 003", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -142388,14 +312881,95 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85198\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85198/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "After GMAN 120 or according to placement examination. Followed by GMAN 140. Enrollment limited to 14 per section. Students must preregister through Preference Selection during the online preregistration period. Details and a link to Preference Selection are provided on the German department Web site at http:\/\/german.yale.edu.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988752007484436, + 0.9986352324485779 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989016056060791, + 0.9987900853157043 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989225268363953, + 0.9989311099052429, + 0.9989091157913208, + 0.9985652565956116 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 8, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 8 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } + }, + { + "season_code": "202301", + "requirements": "After GMAN 120 or according to placement examination. Followed by GMAN 140. Enrollment limited to 14 per section. Students must preregister through Preference Selection during the online preregistration period. Details and a link to Preference Selection are provided on the German department Web site at http://german.yale.edu.", "description": "Builds on and expands knowledge acquired in GMAN 120. A content- and task-based course that helps students improve their oral and written linguistic skills and their cultural awareness through a variety of materials related to German literature, culture, history, and politics. Course materials include authentic readings, a feature film, and shorter video clips. Tutors are available for extra help.", "short_title": "Intermediate German I", "title": "Intermediate German I", @@ -142428,7 +313002,7 @@ "10:30", "11:20", "HQ 123 - Humanities Quadrangle 123", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -142436,7 +313010,7 @@ "10:30", "11:20", "HQ 123 - Humanities Quadrangle 123", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Friday": [ @@ -142444,7 +313018,7 @@ "10:30", "11:20", "HQ 123 - Humanities Quadrangle 123", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Monday": [ @@ -142452,7 +313026,7 @@ "10:30", "11:20", "HQ 209 - Humanities Quadrangle 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -142460,7 +313034,7 @@ "10:30", "11:20", "", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -142474,14 +313048,93 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85199\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85199/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "After GMAN 130 or according to placement examination. Normally followed by GMAN 150 or, with permission of the director of undergraduate studies, by GMAN 171. Enrollment limited to 14 per section. Students must preregister through Preference Selection during the online preregistration period. Details and a link to Preference Selection are provided on the German department Web site at http:\/\/german.yale.edu.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988405108451843, + 0.9989123344421387, + 0.998668909072876 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9944149255752563, + 0.9986907839775085 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988622665405273, + 0.9989319443702698 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 7 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } + }, + { + "season_code": "202301", + "requirements": "After GMAN 130 or according to placement examination. Normally followed by GMAN 150 or, with permission of the director of undergraduate studies, by GMAN 171. Enrollment limited to 14 per section. Students must preregister through Preference Selection during the online preregistration period. Details and a link to Preference Selection are provided on the German department Web site at http://german.yale.edu.", "description": "Builds on and expands knowledge acquired in GMAN 130. A content- and task-based course that helps students improve their oral and written linguistic skills and their cultural awareness through a variety of materials related to German literature, culture, history, and politics. Course materials include authentic readings, a feature film, and shorter video clips. Tutors are available for extra help.", "short_title": "Intermediate German II", "title": "Intermediate German II", @@ -142514,7 +313167,7 @@ "10:30", "11:20", "HQ 227 - Humanities Quadrangle 227", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Tuesday": [ @@ -142522,7 +313175,7 @@ "10:30", "11:20", "HQ 227 - Humanities Quadrangle 227", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -142530,7 +313183,7 @@ "10:30", "11:20", "HQ 227 - Humanities Quadrangle 227", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -142538,7 +313191,7 @@ "10:30", "11:20", "HQ 227 - Humanities Quadrangle 227", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Friday": [ @@ -142546,7 +313199,7 @@ "10:30", "11:20", "HQ 227 - Humanities Quadrangle 227", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -142560,10 +313213,93 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85200\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85200/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988088607788086, + 0.998773992061615, + 0.9988521337509155 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988677501678467, + 0.9983358979225159, + 0.9987155199050903 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987911581993103, + 0.9988549947738647, + 0.9988908171653748 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 9 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -142600,7 +313336,7 @@ "11:35", "12:50", "WLH 202 - William L. Harkness Hall 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -142608,7 +313344,7 @@ "11:35", "12:50", "WLH 202 - William L. Harkness Hall 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -142624,15 +313360,132 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85211\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/85211/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9523360133171082, + 0.998875081539154, + 0.9987908005714417, + 0.9982801675796509, + 0.9987969398498535, + 0.9988406300544739, + 0.9989113807678223, + 0.998799204826355 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988792538642883, + 0.9989245533943176, + 0.9988865256309509, + 0.9988640546798706, + 0.9987473487854004, + 0.9957050681114197, + 0.9989272952079773, + 0.9989380240440369, + 0.9988994598388672 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987401366233826, + 0.9989237189292908, + 0.9988535642623901, + 0.9988301396369934, + 0.9969788789749146, + 0.9988712668418884, + 0.9989305138587952, + 0.9989312291145325, + 0.9988669157028198 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 26, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 26 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", "requirements": "Prerequisite: L5 class or equivalent, or permission of the instructor.", - "description": "Climate change and global warming, with their catastrophic effects on life on earth, such as accelerated ice-melting and extreme weather patterns, loss of biodiversity and habitat, safety and health risks, are the defining issues of our time. How did we get there? How will we get out?\u00a0In this course, we explore Germany\u2019s history and culture of environmentalism and sustainability, which is often traced back to Saxon mining administrator Hans Carl von Carlowitz\u2019 demand in 1716 that only so much wood be cut as could be regrown.\u00a0We discuss Germany's history and culture of environmentalism and sustainability from 1900 (Lebensreform, biodynamic agriculture, vegetarianism, Gartenstadt inspired settlements) to the present, with emphasis on 70s and 80s social (justice) movements (alternative life-styles,anti-nuclear protests, Green Party) to the present (Energiewende, renewables, coal and nuclear phase-out, food waste, factory farming & bioethics, consumerism & sustainable life-styles, slow growth\/degrowth).", + "description": "Climate change and global warming, with their catastrophic effects on life on earth, such as accelerated ice-melting and extreme weather patterns, loss of biodiversity and habitat, safety and health risks, are the defining issues of our time. How did we get there? How will we get out?\u00a0In this course, we explore Germany\u2019s history and culture of environmentalism and sustainability, which is often traced back to Saxon mining administrator Hans Carl von Carlowitz\u2019 demand in 1716 that only so much wood be cut as could be regrown.\u00a0We discuss Germany's history and culture of environmentalism and sustainability from 1900 (Lebensreform, biodynamic agriculture, vegetarianism, Gartenstadt inspired settlements) to the present, with emphasis on 70s and 80s social (justice) movements (alternative life-styles,anti-nuclear protests, Green Party) to the present (Energiewende, renewables, coal and nuclear phase-out, food waste, factory farming & bioethics, consumerism & sustainable life-styles, slow growth/degrowth).", "short_title": "Green Germany, History and Cu...", "title": "Green Germany, History and Culture of Sustainability", "school": "YC", @@ -142664,7 +313517,7 @@ "11:35", "12:50", "HQ 113 - Humanities Quadrangle 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -142672,7 +313525,7 @@ "11:35", "12:50", "HQ 113 - Humanities Quadrangle 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -142688,10 +313541,97 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85201\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85201/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998913049697876, + 0.9988324046134949, + 0.998879611492157, + 0.9988608360290527 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989364743232727, + 0.9989035129547119, + 0.9989299178123474, + 0.9988483190536499 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988952279090881, + 0.998862624168396, + 0.9989084005355835 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 11 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -142728,7 +313668,7 @@ "9:00", "10:15", "WLH 112 - William L. Harkness Hall 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -142736,7 +313676,7 @@ "9:00", "10:15", "WLH 112 - William L. Harkness Hall 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -142752,10 +313692,105 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85202\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85202/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9968823194503784, + 0.9989168643951416, + 0.9987773299217224, + 0.9988969564437866, + 0.9987736344337463 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9979224801063538, + 0.6288837194442749, + 0.998719334602356, + 0.9988679885864258, + 0.9988490343093872 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.998083233833313, + 0.9994509816169739, + 0.9988604784011841, + 0.9530268311500549 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 0.8571428571428571, + "final_counts": { + "POSITIVE": 12, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + } + } }, { "season_code": "202301", @@ -142797,7 +313832,7 @@ "13:30", "15:20", "WALL81 101 - 81 Wall Street 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -142811,10 +313846,97 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85984\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85984/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985761642456055, + 0.9988330006599426, + 0.9989045858383179, + 0.9988504648208618 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989185333251953, + 0.9987831711769104, + 0.9988816380500793 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988638162612915, + 0.9988977909088135, + 0.9988879561424255, + 0.9985513091087341 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 11 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -142857,7 +313979,7 @@ "13:30", "15:20", "LC 211 - Linsly-Chittenden Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -142875,10 +313997,123 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84403\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84403/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9938866496086121, + 0.9989053010940552, + 0.9977352619171143, + 0.998863697052002, + 0.9988037347793579, + 0.9987534284591675, + 0.9989042282104492, + 0.9989140033721924 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987389445304871, + 0.998935878276825, + 0.9989338517189026, + 0.9988526105880737, + 0.9988893866539001, + 0.9980757236480713, + 0.9989306330680847, + 0.992807149887085 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9979275465011597, + 0.9987668991088867, + 0.9981922507286072, + 0.9970254302024841, + 0.9989197254180908, + 0.9989100694656372, + 0.99888676404953, + 0.9988850951194763 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 24, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 24 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -142917,7 +314152,7 @@ "13:00", "14:15", "HQ 127 - Humanities Quadrangle 127", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -142925,7 +314160,7 @@ "13:00", "14:15", "HQ 127 - Humanities Quadrangle 127", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -142939,15 +314174,110 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85985\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85985/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "", - "description": "The course takes up a pressing topic from the sciences and looks at it from the angle of the humanities: how are ecological crises, how is\u2013most specifically and urgently\u2013our current climate crisis represented and reflected upon in non-scientific public discourse: in journalism, in the social media, in literature, and in film? With a focus on, but not limited to literary texts, the course draws on established categories of literary analysis, such as plot patterns or the techniques of narration and\/vs. description, and links them to philosophical concepts such as Karen Barad\u2019s agential realism and Donna Haraway\u2019s \"chthulucene.\" In so doing the course not only looks into (and questions) the common accusation that literature is conspicuously silent when it comes to the matter of the climate crisis, but also investigates (literary and non-literary) ecological narration as situated at the intersection of representation and ethics. Literary readings include Adalbert Stifter, Amitav Ghosh, W.G. Sebald, Ian McEwan, Judith Hermann, Ilija Trojanow, and Kim Stanley Robinson.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988647699356079, + 0.9989080429077148, + 0.998887836933136, + 0.9989396929740906, + 0.9986685514450073 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989323019981384, + 0.9989363551139832, + 0.9991251826286316, + 0.9988910555839539 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989346861839294, + 0.9989344477653503, + 0.9989020824432373, + 0.9984412789344788, + 0.9989064931869507 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 0.9285714285714286, + "final_counts": { + "POSITIVE": 13, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9285714285714286, + "NEGATIVE": 0.07142857142857142 + } + } + }, + { + "season_code": "202301", + "requirements": "", + "description": "The course takes up a pressing topic from the sciences and looks at it from the angle of the humanities: how are ecological crises, how is\u2013most specifically and urgently\u2013our current climate crisis represented and reflected upon in non-scientific public discourse: in journalism, in the social media, in literature, and in film? With a focus on, but not limited to literary texts, the course draws on established categories of literary analysis, such as plot patterns or the techniques of narration and/vs. description, and links them to philosophical concepts such as Karen Barad\u2019s agential realism and Donna Haraway\u2019s \"chthulucene.\" In so doing the course not only looks into (and questions) the common accusation that literature is conspicuously silent when it comes to the matter of the climate crisis, but also investigates (literary and non-literary) ecological narration as situated at the intersection of representation and ethics. Literary readings include Adalbert Stifter, Amitav Ghosh, W.G. Sebald, Ian McEwan, Judith Hermann, Ilija Trojanow, and Kim Stanley Robinson.", "short_title": "Ecology, Ecocriticism, and Na...", "title": "Ecology, Ecocriticism, and Narration", "school": "YC", @@ -142983,7 +314313,7 @@ "9:25", "11:15", "HQ C11 - Humanities Quadrangle C11", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -142997,10 +314327,99 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85992\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85992/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988914132118225, + 0.9989128112792969, + 0.9985442161560059, + 0.998870313167572, + 0.9988595247268677 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987063407897949, + 0.9989110231399536, + 0.998933732509613, + 0.9989099502563477 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987555742263794, + 0.9989058971405029, + 0.9989321827888489 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 12 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -143043,7 +314462,7 @@ "13:30", "15:20", "WLH 210 - William L. Harkness Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -143059,10 +314478,111 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84129\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84129/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988349080085754, + 0.9989114999771118, + 0.9988352656364441, + 0.9988980293273926, + 0.9981107711791992, + 0.9989091157913208 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998519241809845, + 0.9988806843757629, + 0.9989018440246582, + 0.9989277720451355, + 0.9988627433776855, + 0.998831570148468 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988400340080261, + 0.9989107847213745, + 0.9988746047019958, + 0.9989101886749268, + 0.9985346794128418, + 0.9982048273086548 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 18 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -143100,7 +314620,7 @@ "9:25", "11:15", "HQ C03 - Humanities Quadrangle C03", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -143116,10 +314636,127 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84135\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84135/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988664388656616, + 0.9988588094711304, + 0.9987695813179016, + 0.9988945126533508, + 0.9988137483596802, + 0.9989111423492432, + 0.9988365769386292, + 0.998770534992218 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988150596618652, + 0.9903063774108887, + 0.9989277720451355, + 0.9986897110939026, + 0.9991602897644043, + 0.9988958835601807, + 0.9987414479255676, + 0.9988999366760254 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.99882572889328, + 0.9988434314727783, + 0.9989264607429504, + 0.9988773465156555, + 0.9966872334480286, + 0.9983691573143005, + 0.9989388585090637, + 0.9994727969169617, + 0.9988588094711304 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "final_label": "POSITIVE", + "final_count": 22, + "final_proportion": 0.88, + "final_counts": { + "POSITIVE": 22, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.88, + "NEGATIVE": 0.12 + } + } }, { "season_code": "202301", @@ -143158,7 +314795,7 @@ "15:30", "17:20", "WLH 011 - William L. Harkness Hall 011", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -143166,7 +314803,7 @@ "19:00", "22:00", "HQ 109 - Humanities Quadrangle 109", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -143180,10 +314817,111 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85958\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85958/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986597299575806, + 0.9988497495651245, + 0.9988797307014465, + 0.9989299178123474, + 0.9988003969192505, + 0.9988829493522644 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998918890953064, + 0.9989271759986877, + 0.9977853298187256, + 0.9993553757667542, + 0.9989044666290283 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.6, + "NEGATIVE": 0.4 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985954165458679, + 0.9989338517189026, + 0.9987930059432983, + 0.9989270567893982, + 0.9988512992858887, + 0.9989194869995117 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 0.8823529411764706, + "final_counts": { + "POSITIVE": 15, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8823529411764706, + "NEGATIVE": 0.11764705882352941 + } + } }, { "season_code": "202301", @@ -143224,7 +314962,7 @@ "19:00", "22:00", "HQ L02 - Humanities Quadrangle L02", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -143232,7 +314970,7 @@ "9:25", "11:15", "HQ 113 - Humanities Quadrangle 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -143248,10 +314986,89 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84021\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84021/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988338351249695, + 0.9989303946495056 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9975897073745728, + 0.9981322884559631 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9953613877296448, + 0.9988667964935303, + 0.9989263415336609 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 7 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -143288,7 +315105,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -143325,7 +315170,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -143364,7 +315237,7 @@ "13:30", "15:20", "LORIA 258 - Loria Center 258", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -143382,10 +315255,99 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84270\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84270/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998818576335907, + 0.9987797141075134, + 0.9988659620285034, + 0.9987853169441223 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9951058626174927, + 0.987722635269165, + 0.9988899827003479, + 0.9982530474662781 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988431930541992, + 0.9985417127609253, + 0.9966233968734741, + 0.9988805651664734 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 12 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -143425,10 +315387,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85205\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85205/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -143465,7 +315455,7 @@ "12:00", "13:50", "HQ - HQ", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -143477,15 +315467,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85206\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85206/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "Film offers unique ways to approach the human body. Film makes bodies visible, it helps to explore and understand them, and it has effects on the bodies of the spectator. In this course, we look at a selection of European and German films and trace their particular employment and engagement of the human body. Spanning a period of almost a century (1929\u20132019), the material assembles cinematic traditions across epochs: from Weimar cinema\u2019s last years of silent film, via post war Austrian filmic activism, various cinematic traditions from East and West Germany, all the way up to the present, the Berlin School and transnational European Cinema.\u00a0Structured in four larger segments, the course approaches bodies on film by means of thematic vectors. We take a look at the body\u2019s depiction, at its disciplining, at cinema\u2019s role in terms of the body\u2019s representation, as well as its commodification. Each thematic session is paired with a critical readings on the topic and the cinematic body in question, which helps trace to the cultural contexts they emerge from, without adhering to a strict chronology. Exploring the cinematic bodies created over the past century in their astonishing variety\u2014acting bodies and bodies filmed by accident, idealized bodies and those celebrating imperfection, absent and elusive bodies, all the way up to the human\u2019s replacement by animation\u2014allows the class to explore important milestones in the history of German and European cinema, while also learning about different ways of representing, engaging with, and creating cinematic bodies.\u00a0These \"cinematic bodies\", the course hopes to show, signify different things for different films. They become significant by means of their actions (dance, gymnastics, sports, sex), they take shape in the disciplining of their representation (queerness, femininities & masculinities, abled-ness, ethnicity), and fulfill different functions for the genres they cite (actionist cinema, pornography, documentation, narrative film). The unsettling effect cinematic bodies have on filmic genre distinctions\u2014such as those between fiction and report, between pornography and its documentation, between scripted narrative and spontaneous improvisation\u2014are of particular interest.\u00a0Assembling a number of filmmakers with an emphasis on German\/European traditions, the course revisits the filmic canon and introduces filmmakers from outside film studies\u2019 canonical scope. Established auteurs such as G.W. Pabst, Werner Herzog, R. W. Fassbinder, Michael Haneke and VALIE EXPORT will be juxtaposed and paired with lesser known artists such as Heiner Carow or Mara Mattuschka, and newcomers such as Jan Soldat or Pia Hellenthal, to convey the diversity within film\u2019s and filmmakers\u2019 exploration of the human body.\u00a0As the thematic vector brings together auteurs of entirely different traditions, it also draws attention to filmic genres often neglected by academics, such as anime, music videos, pornography or short films.", + "description": "Film offers unique ways to approach the human body. Film makes bodies visible, it helps to explore and understand them, and it has effects on the bodies of the spectator. In this course, we look at a selection of European and German films and trace their particular employment and engagement of the human body. Spanning a period of almost a century (1929\u20132019), the material assembles cinematic traditions across epochs: from Weimar cinema\u2019s last years of silent film, via post war Austrian filmic activism, various cinematic traditions from East and West Germany, all the way up to the present, the Berlin School and transnational European Cinema.\u00a0Structured in four larger segments, the course approaches bodies on film by means of thematic vectors. We take a look at the body\u2019s depiction, at its disciplining, at cinema\u2019s role in terms of the body\u2019s representation, as well as its commodification. Each thematic session is paired with a critical readings on the topic and the cinematic body in question, which helps trace to the cultural contexts they emerge from, without adhering to a strict chronology. Exploring the cinematic bodies created over the past century in their astonishing variety\u2014acting bodies and bodies filmed by accident, idealized bodies and those celebrating imperfection, absent and elusive bodies, all the way up to the human\u2019s replacement by animation\u2014allows the class to explore important milestones in the history of German and European cinema, while also learning about different ways of representing, engaging with, and creating cinematic bodies.\u00a0These \"cinematic bodies\", the course hopes to show, signify different things for different films. They become significant by means of their actions (dance, gymnastics, sports, sex), they take shape in the disciplining of their representation (queerness, femininities & masculinities, abled-ness, ethnicity), and fulfill different functions for the genres they cite (actionist cinema, pornography, documentation, narrative film). The unsettling effect cinematic bodies have on filmic genre distinctions\u2014such as those between fiction and report, between pornography and its documentation, between scripted narrative and spontaneous improvisation\u2014are of particular interest.\u00a0Assembling a number of filmmakers with an emphasis on German/European traditions, the course revisits the filmic canon and introduces filmmakers from outside film studies\u2019 canonical scope. Established auteurs such as G.W. Pabst, Werner Herzog, R. W. Fassbinder, Michael Haneke and VALIE EXPORT will be juxtaposed and paired with lesser known artists such as Heiner Carow or Mara Mattuschka, and newcomers such as Jan Soldat or Pia Hellenthal, to convey the diversity within film\u2019s and filmmakers\u2019 exploration of the human body.\u00a0As the thematic vector brings together auteurs of entirely different traditions, it also draws attention to filmic genres often neglected by academics, such as anime, music videos, pornography or short films.", "short_title": "Bodies in Cinema, Cinematic B...", "title": "Bodies in Cinema, Cinematic Bodies", "school": "GS", @@ -143519,7 +315537,7 @@ "15:30", "17:20", "WLH 011 - William L. Harkness Hall 011", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -143527,7 +315545,7 @@ "19:00", "22:00", "HQ 109 - Humanities Quadrangle 109", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -143539,10 +315557,111 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85958\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85958/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986597299575806, + 0.9988497495651245, + 0.9988797307014465, + 0.9989299178123474, + 0.9988003969192505, + 0.9988829493522644 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998918890953064, + 0.9989271759986877, + 0.9977853298187256, + 0.9993553757667542, + 0.9989044666290283 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.6, + "NEGATIVE": 0.4 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985954165458679, + 0.9989338517189026, + 0.9987930059432983, + 0.9989270567893982, + 0.9988512992858887, + 0.9989194869995117 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 0.8823529411764706, + "final_counts": { + "POSITIVE": 15, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8823529411764706, + "NEGATIVE": 0.11764705882352941 + } + } }, { "season_code": "202301", @@ -143583,7 +315702,7 @@ "9:25", "11:15", "HQ C11 - Humanities Quadrangle C11", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -143595,10 +315714,99 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85992\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85992/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988914132118225, + 0.9989128112792969, + 0.9985442161560059, + 0.998870313167572, + 0.9988595247268677 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987063407897949, + 0.9989110231399536, + 0.998933732509613, + 0.9989099502563477 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987555742263794, + 0.9989058971405029, + 0.9989321827888489 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 12 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -143639,7 +315847,7 @@ "19:00", "22:00", "HQ L02 - Humanities Quadrangle L02", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -143647,7 +315855,7 @@ "9:25", "11:15", "HQ 113 - Humanities Quadrangle 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -143659,10 +315867,89 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84021\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84021/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988338351249695, + 0.9989303946495056 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9975897073745728, + 0.9981322884559631 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9953613877296448, + 0.9988667964935303, + 0.9989263415336609 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 7 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -143696,17 +315983,45 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84129\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84129/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", "description": "A systematic, chapter-by-chapter study of Heidegger\u2019s Being and Time, arguably the most important work of philosophy of the twentieth century. All the major themes of the book are addressed in detail, with a particular emphasis on care, time, death, and the meaning of being.", "short_title": "Heidegger\u2019s Being and Time...", - "title": "Heidegger\u2019s Being and Time<\/i>", + "title": "Heidegger\u2019s Being and Time", "school": "GS", "credits": 1.0, "extra_info": "ACTIVE", @@ -143742,7 +316057,7 @@ "13:30", "15:20", "LC 211 - Linsly-Chittenden Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -143754,10 +316069,123 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84403\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84403/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9938866496086121, + 0.9989053010940552, + 0.9977352619171143, + 0.998863697052002, + 0.9988037347793579, + 0.9987534284591675, + 0.9989042282104492, + 0.9989140033721924 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987389445304871, + 0.998935878276825, + 0.9989338517189026, + 0.9988526105880737, + 0.9988893866539001, + 0.9980757236480713, + 0.9989306330680847, + 0.992807149887085 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9979275465011597, + 0.9987668991088867, + 0.9981922507286072, + 0.9970254302024841, + 0.9989197254180908, + 0.9989100694656372, + 0.99888676404953, + 0.9988850951194763 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 24, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 24 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -143794,7 +316222,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -143831,7 +316287,7 @@ "10:30", "11:20", "LC 212 - Linsly-Chittenden Hall 212", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Tuesday": [ @@ -143839,7 +316295,7 @@ "10:30", "11:20", "LC 212 - Linsly-Chittenden Hall 212", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -143847,7 +316303,7 @@ "10:30", "11:20", "LC 212 - Linsly-Chittenden Hall 212", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -143855,7 +316311,7 @@ "10:30", "11:20", "LC 212 - Linsly-Chittenden Hall 212", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Friday": [ @@ -143863,7 +316319,7 @@ "10:30", "11:20", "LC 212 - Linsly-Chittenden Hall 212", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -143877,10 +316333,97 @@ "classnotes": "", "final_exam": "Wednesday, May 10, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84133\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84133/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988411068916321, + 0.9987512826919556, + 0.986128568649292, + 0.9940834641456604 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985266923904419, + 0.9980251789093018, + 0.9970541000366211 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988334774971008, + 0.9905810952186584, + 0.9983684420585632, + 0.9988852143287659 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 11 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -143917,7 +316460,7 @@ "9:00", "11:15", "PH 207 - Phelps Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ], "Tuesday": [ @@ -143925,7 +316468,7 @@ "9:00", "11:15", "PH 207 - Phelps Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ], "Wednesday": [ @@ -143933,7 +316476,7 @@ "9:00", "11:15", "PH 207 - Phelps Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ], "Thursday": [ @@ -143941,7 +316484,7 @@ "9:00", "11:15", "PH 207 - Phelps Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ], "Friday": [ @@ -143949,7 +316492,7 @@ "9:00", "11:15", "PH 207 - Phelps Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -143964,10 +316507,109 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84137\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84137/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.99882572889328, + 0.9988195300102234, + 0.9989074468612671, + 0.9988704323768616, + 0.9982339143753052 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988359808921814, + 0.9989180564880371, + 0.9988561868667603, + 0.998939573764801, + 0.9987714886665344 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982553124427795, + 0.9989237189292908, + 0.9988238215446472, + 0.9988487958908081, + 0.9987975358963013, + 0.9989270567893982, + 0.9979464411735535 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 17 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -144004,7 +316646,7 @@ "10:30", "11:20", "PH 407 - Phelps Hall 407", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ], "Wednesday": [ @@ -144012,7 +316654,7 @@ "10:30", "11:20", "PH 407 - Phelps Hall 407", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ], "Friday": [ @@ -144020,7 +316662,7 @@ "10:30", "11:20", "PH 407 - Phelps Hall 407", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -144034,10 +316676,93 @@ "classnotes": "", "final_exam": "Friday, May 5, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84140\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84140/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9995031356811523, + 0.9986407160758972 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 1 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9985587000846863, + 0.9987033605575562, + 0.9942131638526917 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 1 + }, + "sentiment_distribution": { + "NEGATIVE": 0.6666666666666666, + "POSITIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9995056390762329, + 0.9988824725151062, + 0.9986338019371033 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "neutral", + "final_count": 0.5, + "final_proportion": 0.5, + "final_counts": { + "NEGATIVE": 4, + "POSITIVE": 4 + }, + "final_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + } + } }, { "season_code": "202301", @@ -144075,7 +316800,7 @@ "14:30", "15:45", "PH 310 - Phelps Hall 310", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ], "Thursday": [ @@ -144083,7 +316808,7 @@ "14:30", "15:45", "PH 310 - Phelps Hall 310", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -144099,10 +316824,85 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84145\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84145/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987159967422485 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9976359605789185, + 0.9988177418708801 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 1 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9949585795402527 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 3, + "final_proportion": 0.75, + "final_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + } + } }, { "season_code": "202301", @@ -144140,7 +316940,7 @@ "13:00", "14:15", "WLH 115 - William L. Harkness Hall 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -144148,7 +316948,7 @@ "13:00", "14:15", "WLH 115 - William L. Harkness Hall 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -144164,10 +316964,95 @@ "classnotes": "", "final_exam": "Sunday, May 7, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84983\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84983/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988372921943665, + 0.9988754391670227, + 0.9988779425621033 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989116191864014, + 0.9988804459571838, + 0.9988987445831299 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989224672317505, + 0.9989321827888489, + 0.9988407492637634, + 0.9988658428192139 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 10 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -144210,7 +317095,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -144248,7 +317161,7 @@ "14:30", "15:45", "PH 310 - Phelps Hall 310", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ], "Thursday": [ @@ -144256,7 +317169,7 @@ "14:30", "15:45", "PH 310 - Phelps Hall 310", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -144268,10 +317181,85 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84145\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84145/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987159967422485 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9976359605789185, + 0.9988177418708801 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 1 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9949585795402527 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 3, + "final_proportion": 0.75, + "final_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + } + } }, { "season_code": "202301", @@ -144309,7 +317297,7 @@ "13:00", "14:15", "WLH 115 - William L. Harkness Hall 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -144317,7 +317305,7 @@ "13:00", "14:15", "WLH 115 - William L. Harkness Hall 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -144329,10 +317317,95 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84983\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84983/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988372921943665, + 0.9988754391670227, + 0.9988779425621033 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989116191864014, + 0.9988804459571838, + 0.9988987445831299 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989224672317505, + 0.9989321827888489, + 0.9988407492637634, + 0.9988658428192139 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 10 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -144370,7 +317443,7 @@ "10:30", "11:20", "WLH 211 - William L. Harkness Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Tuesday": [ @@ -144378,7 +317451,7 @@ "10:30", "11:20", "WLH 211 - William L. Harkness Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -144386,7 +317459,7 @@ "10:30", "11:20", "WLH 211 - William L. Harkness Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -144394,7 +317467,7 @@ "10:30", "11:20", "WLH 211 - William L. Harkness Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Friday": [ @@ -144402,7 +317475,7 @@ "10:30", "11:20", "WLH 211 - William L. Harkness Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -144416,10 +317489,125 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84167\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84167/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984952211380005, + 0.998211145401001, + 0.9849584102630615, + 0.9986984729766846, + 0.9987383484840393, + 0.9948678016662598, + 0.9988866448402405, + 0.9987251162528992 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989303946495056, + 0.9986396431922913, + 0.995072066783905, + 0.993309736251831, + 0.9995003938674927, + 0.9973878264427185, + 0.9989331364631653, + 0.9988405108451843 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.625, + "NEGATIVE": 0.375 + }, + "sentiment_overall": [ + "POSITIVE", + 0.625 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982553124427795, + 0.9988752007484436, + 0.9872768521308899, + 0.9985944628715515, + 0.9985188841819763, + 0.9875626564025879, + 0.9988808035850525, + 0.9989128112792969 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.625, + "NEGATIVE": 0.375 + }, + "sentiment_overall": [ + "POSITIVE", + 0.625 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 0.75, + "final_counts": { + "POSITIVE": 18, + "NEGATIVE": 6 + }, + "final_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + } + } }, { "season_code": "202301", @@ -144457,7 +317645,7 @@ "11:35", "12:25", "WLH 211 - William L. Harkness Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Tuesday": [ @@ -144465,7 +317653,7 @@ "11:35", "12:25", "WLH 211 - William L. Harkness Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -144473,7 +317661,7 @@ "11:35", "12:25", "WLH 211 - William L. Harkness Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -144481,7 +317669,7 @@ "11:35", "12:25", "WLH 211 - William L. Harkness Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Friday": [ @@ -144489,7 +317677,7 @@ "11:35", "12:25", "WLH 211 - William L. Harkness Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -144503,10 +317691,38 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84167\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84167/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -144544,7 +317760,7 @@ "18:00", "19:15", "WLH 015 - William L. Harkness Hall 015", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -144552,7 +317768,7 @@ "18:00", "19:15", "WLH 015 - William L. Harkness Hall 015", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -144566,10 +317782,38 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84177\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84177/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -144607,7 +317851,7 @@ "13:30", "14:20", "WLH 211 - William L. Harkness Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Tuesday": [ @@ -144615,7 +317859,7 @@ "13:30", "14:20", "WLH 211 - William L. Harkness Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -144623,7 +317867,7 @@ "13:30", "14:20", "WLH 211 - William L. Harkness Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -144631,7 +317875,7 @@ "13:30", "14:20", "WLH 211 - William L. Harkness Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Friday": [ @@ -144639,7 +317883,7 @@ "13:30", "14:20", "WLH 211 - William L. Harkness Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -144653,10 +317897,95 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84181\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84181/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998866081237793, + 0.9989264607429504, + 0.9987204074859619, + 0.9988675117492676 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998871386051178, + 0.9977057576179504, + 0.9988610744476318 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988601207733154, + 0.9984594583511353, + 0.9989069700241089 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 10 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -144695,7 +318024,7 @@ "14:30", "15:45", "HQ 129 - Humanities Quadrangle 129", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -144703,7 +318032,7 @@ "14:30", "15:45", "HQ 129 - Humanities Quadrangle 129", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -144717,10 +318046,99 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84186\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84186/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988287091255188, + 0.9987917542457581, + 0.9985260963439941, + 0.9989026784896851 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988827109336853, + 0.9988239407539368, + 0.9988918900489807, + 0.9989213943481445 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988976716995239, + 0.9988875985145569, + 0.9988822340965271, + 0.9985650181770325 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 12 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -144761,7 +318179,7 @@ "11:35", "12:50", "HQ 129 - Humanities Quadrangle 129", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -144769,7 +318187,7 @@ "11:35", "12:50", "HQ 129 - Humanities Quadrangle 129", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -144785,10 +318203,87 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84193\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84193/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988137483596802, + 0.9989005327224731 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9966269731521606 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 0 + }, + "sentiment_distribution": { + "NEGATIVE": 1.0, + "POSITIVE": 0.0 + }, + "sentiment_overall": [ + "NEGATIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988827109336853, + 0.9989258646965027 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 4, + "final_proportion": 0.8, + "final_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + } + } }, { "season_code": "202301", @@ -144826,7 +318321,7 @@ "11:35", "12:25", "WLH 211 - William L. Harkness Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Tuesday": [ @@ -144834,7 +318329,7 @@ "11:35", "12:25", "WLH 211 - William L. Harkness Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -144842,7 +318337,7 @@ "11:35", "12:25", "WLH 211 - William L. Harkness Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -144850,7 +318345,7 @@ "11:35", "12:25", "WLH 211 - William L. Harkness Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Friday": [ @@ -144858,7 +318353,7 @@ "11:35", "12:25", "WLH 211 - William L. Harkness Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -144870,10 +318365,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84167\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84167/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -144911,7 +318434,7 @@ "10:30", "11:20", "WLH 211 - William L. Harkness Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Tuesday": [ @@ -144919,7 +318442,7 @@ "10:30", "11:20", "WLH 211 - William L. Harkness Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -144927,7 +318450,7 @@ "10:30", "11:20", "WLH 211 - William L. Harkness Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -144935,7 +318458,7 @@ "10:30", "11:20", "WLH 211 - William L. Harkness Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Friday": [ @@ -144943,7 +318466,7 @@ "10:30", "11:20", "WLH 211 - William L. Harkness Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -144955,10 +318478,125 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84167\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84167/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984952211380005, + 0.998211145401001, + 0.9849584102630615, + 0.9986984729766846, + 0.9987383484840393, + 0.9948678016662598, + 0.9988866448402405, + 0.9987251162528992 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989303946495056, + 0.9986396431922913, + 0.995072066783905, + 0.993309736251831, + 0.9995003938674927, + 0.9973878264427185, + 0.9989331364631653, + 0.9988405108451843 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.625, + "NEGATIVE": 0.375 + }, + "sentiment_overall": [ + "POSITIVE", + 0.625 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982553124427795, + 0.9988752007484436, + 0.9872768521308899, + 0.9985944628715515, + 0.9985188841819763, + 0.9875626564025879, + 0.9988808035850525, + 0.9989128112792969 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.625, + "NEGATIVE": 0.375 + }, + "sentiment_overall": [ + "POSITIVE", + 0.625 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 0.75, + "final_counts": { + "POSITIVE": 18, + "NEGATIVE": 6 + }, + "final_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + } + } }, { "season_code": "202301", @@ -144996,7 +318634,7 @@ "13:30", "14:20", "WLH 211 - William L. Harkness Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Tuesday": [ @@ -145004,7 +318642,7 @@ "13:30", "14:20", "WLH 211 - William L. Harkness Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -145012,7 +318650,7 @@ "13:30", "14:20", "WLH 211 - William L. Harkness Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -145020,7 +318658,7 @@ "13:30", "14:20", "WLH 211 - William L. Harkness Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Friday": [ @@ -145028,7 +318666,7 @@ "13:30", "14:20", "WLH 211 - William L. Harkness Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -145040,10 +318678,95 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84181\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84181/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998866081237793, + 0.9989264607429504, + 0.9987204074859619, + 0.9988675117492676 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998871386051178, + 0.9977057576179504, + 0.9988610744476318 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988601207733154, + 0.9984594583511353, + 0.9989069700241089 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 10 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -145082,7 +318805,7 @@ "14:30", "15:45", "HQ 129 - Humanities Quadrangle 129", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -145090,7 +318813,7 @@ "14:30", "15:45", "HQ 129 - Humanities Quadrangle 129", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -145102,10 +318825,99 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84186\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84186/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988287091255188, + 0.9987917542457581, + 0.9985260963439941, + 0.9989026784896851 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988827109336853, + 0.9988239407539368, + 0.9988918900489807, + 0.9989213943481445 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988976716995239, + 0.9988875985145569, + 0.9988822340965271, + 0.9985650181770325 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 12 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -145143,7 +318955,7 @@ "18:00", "19:15", "WLH 015 - William L. Harkness Hall 015", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -145151,7 +318963,7 @@ "18:00", "19:15", "WLH 015 - William L. Harkness Hall 015", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -145163,10 +318975,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84177\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84177/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -145207,7 +319047,7 @@ "11:35", "12:50", "HQ 129 - Humanities Quadrangle 129", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -145215,7 +319055,7 @@ "11:35", "12:50", "HQ 129 - Humanities Quadrangle 129", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -145227,10 +319067,87 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84193\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84193/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988137483596802, + 0.9989005327224731 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9966269731521606 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 0 + }, + "sentiment_distribution": { + "NEGATIVE": 1.0, + "POSITIVE": 0.0 + }, + "sentiment_overall": [ + "NEGATIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988827109336853, + 0.9989258646965027 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 4, + "final_proportion": 0.8, + "final_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + } + } }, { "season_code": "202301", @@ -145261,7 +319178,7 @@ "9:10", "11:00", "DOW B-11 - Dow Hall B-11", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ], "Thursday": [ @@ -145269,7 +319186,7 @@ "9:10", "11:00", "DOW B-11 - Dow Hall B-11", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ] }, @@ -145286,7 +319203,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -145342,7 +319287,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -145380,7 +319353,7 @@ "13:00", "14:15", "BASSLB L71 - Bass Library L71", - "https:\/\/map.yale.edu\/?id=1910#!m\/564574" + "https://map.yale.edu/?id=1910#!m/564574" ] ], "Wednesday": [ @@ -145388,7 +319361,7 @@ "13:00", "14:15", "BASSLB L71 - Bass Library L71", - "https:\/\/map.yale.edu\/?id=1910#!m\/564574" + "https://map.yale.edu/?id=1910#!m/564574" ] ] }, @@ -145397,7 +319370,7 @@ "Hu" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: First-Year Sem", "YC AMST: Gateway Courses", "YC History: United States", @@ -145412,10 +319385,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84095\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84095/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -145460,7 +319461,35 @@ "syllabus_url": "", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -145506,7 +319535,35 @@ "syllabus_url": "", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -145543,7 +319600,7 @@ "13:00", "14:15", "HQ 209 - Humanities Quadrangle 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -145551,7 +319608,7 @@ "13:00", "14:15", "HQ 209 - Humanities Quadrangle 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -145575,10 +319632,109 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85179\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85179/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985764026641846, + 0.9989218711853027, + 0.9988553524017334, + 0.998887836933136, + 0.9988716244697571 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9954227805137634, + 0.9989157915115356, + 0.9989370703697205, + 0.9984222650527954, + 0.9989297986030579, + 0.999365508556366 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981922507286072, + 0.9988805651664734, + 0.9982553124427795, + 0.998846173286438, + 0.9989105463027954 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 0.9375, + "final_counts": { + "POSITIVE": 15, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9375, + "NEGATIVE": 0.0625 + } + } }, { "season_code": "202301", @@ -145619,10 +319775,38 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86034\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86034/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -145669,7 +319853,35 @@ "syllabus_url": "", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -145706,7 +319918,7 @@ "13:30", "14:20", "WLH 119 - William L. Harkness Hall 119", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -145714,7 +319926,7 @@ "13:30", "14:20", "WLH 119 - William L. Harkness Hall 119", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -145733,10 +319945,213 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84109\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84109/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989113807678223, + 0.9988934397697449, + 0.9980331063270569, + 0.9986822009086609, + 0.9987071752548218, + 0.9989069700241089, + 0.9989198446273804, + 0.9987999200820923, + 0.9988654851913452, + 0.9987999200820923, + 0.9988985061645508, + 0.9988741278648376, + 0.9988942742347717, + 0.9988886713981628, + 0.9988124370574951, + 0.9987959861755371, + 0.9989047050476074, + 0.998664140701294, + 0.9987584352493286, + 0.9987671375274658, + 0.9987407326698303 + ], + "sentiment_counts": { + "POSITIVE": 20, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9523809523809523, + "NEGATIVE": 0.047619047619047616 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9523809523809523 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989295601844788, + 0.9939560294151306, + 0.5837735533714294, + 0.9585340619087219, + 0.999510645866394, + 0.999509334564209, + 0.9989386200904846, + 0.9989116191864014, + 0.9988441467285156, + 0.9981849789619446, + 0.9986810088157654, + 0.9988436698913574, + 0.9988162517547607, + 0.9896239638328552, + 0.9988903403282166, + 0.9987823367118835, + 0.9942684173583984, + 0.999505877494812, + 0.995053231716156, + 0.9981366395950317, + 0.999470055103302, + 0.996351957321167, + 0.9989018440246582 + ], + "sentiment_counts": { + "POSITIVE": 14, + "NEGATIVE": 9 + }, + "sentiment_distribution": { + "POSITIVE": 0.6086956521739131, + "NEGATIVE": 0.391304347826087 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6086956521739131 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989066123962402, + 0.9994964599609375, + 0.9987168312072754, + 0.998802661895752, + 0.999502420425415, + 0.9937753677368164, + 0.9989256262779236, + 0.9995023012161255, + 0.9989198446273804, + 0.998773992061615, + 0.9983484745025635, + 0.9989325404167175, + 0.9995062351226807, + 0.997117280960083, + 0.9989275336265564, + 0.918818473815918, + 0.9985193610191345, + 0.9903274178504944, + 0.9994921684265137, + 0.998891294002533, + 0.9983019828796387, + 0.9981922507286072, + 0.9934053421020508, + 0.9924330711364746 + ], + "sentiment_counts": { + "POSITIVE": 17, + "NEGATIVE": 7 + }, + "sentiment_distribution": { + "POSITIVE": 0.7083333333333334, + "NEGATIVE": 0.2916666666666667 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7083333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 51, + "final_proportion": 0.75, + "final_counts": { + "POSITIVE": 51, + "NEGATIVE": 17 + }, + "final_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + } + } }, { "season_code": "202301", @@ -145767,7 +320182,7 @@ "15:30", "16:20", "LORIA B50 - Loria Center B50", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -145784,7 +320199,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -145815,7 +320258,7 @@ "17:00", "17:50", "HQ C11 - Humanities Quadrangle C11", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -145832,7 +320275,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -145863,7 +320334,7 @@ "19:00", "19:50", "HQ C64 - Humanities Quadrangle C64", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -145880,7 +320351,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -145911,7 +320410,7 @@ "10:30", "11:20", "LC 204 - Linsly-Chittenden Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -145928,7 +320427,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -145975,7 +320502,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -146013,7 +320568,7 @@ "13:30", "14:20", "HQ L02 - Humanities Quadrangle L02", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -146021,7 +320576,7 @@ "13:30", "14:20", "HQ L02 - Humanities Quadrangle L02", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -146030,7 +320585,7 @@ "Hu" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -146038,10 +320593,209 @@ "classnotes": "", "final_exam": "Tuesday, May 9, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85437\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/85437/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998650848865509, + 0.9988651275634766, + 0.9953464865684509, + 0.9988678693771362, + 0.998870313167572, + 0.9995046854019165, + 0.9994913339614868, + 0.9987381100654602, + 0.9777122735977173, + 0.9986141920089722, + 0.9915369749069214, + 0.9960952401161194, + 0.9980641007423401, + 0.9989124536514282, + 0.9989161491394043, + 0.9989332556724548, + 0.9988885521888733, + 0.9989281296730042 + ], + "sentiment_counts": { + "POSITIVE": 14, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.7777777777777778, + "NEGATIVE": 0.2222222222222222 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7777777777777778 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9995027780532837, + 0.9995092153549194, + 0.999229907989502, + 0.9977614879608154, + 0.9994871616363525, + 0.998869001865387, + 0.9994908571243286, + 0.9988732933998108, + 0.9994874000549316, + 0.9995101690292358, + 0.9995046854019165, + 0.9957003593444824, + 0.9967719912528992, + 0.9995079040527344, + 0.9995086193084717, + 0.9984155893325806, + 0.9994732737541199, + 0.9994638562202454, + 0.9987758994102478, + 0.9995065927505493, + 0.9989227652549744, + 0.9994751811027527, + 0.9989338517189026, + 0.998896598815918, + 0.9978325963020325 + ], + "sentiment_counts": { + "NEGATIVE": 17, + "POSITIVE": 8 + }, + "sentiment_distribution": { + "NEGATIVE": 0.68, + "POSITIVE": 0.32 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.68 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9966368675231934, + 0.9995102882385254, + 0.9994988441467285, + 0.9987887740135193, + 0.8382492065429688, + 0.9988510608673096, + 0.9989306330680847, + 0.9989216327667236, + 0.9995131492614746, + 0.9995089769363403, + 0.9994780421257019, + 0.9992399215698242, + 0.9975749850273132, + 0.9922950267791748, + 0.9995018243789673, + 0.9980016350746155, + 0.9995025396347046, + 0.9995095729827881, + 0.9989333748817444, + 0.9995073080062866, + 0.9989153146743774, + 0.99882572889328, + 0.998297393321991 + ], + "sentiment_counts": { + "NEGATIVE": 17, + "POSITIVE": 6 + }, + "sentiment_distribution": { + "NEGATIVE": 0.7391304347826086, + "POSITIVE": 0.2608695652173913 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.7391304347826086 + ] + }, + "final_label": "NEGATIVE", + "final_count": 38, + "final_proportion": 0.5757575757575758, + "final_counts": { + "POSITIVE": 28, + "NEGATIVE": 38 + }, + "final_distribution": { + "POSITIVE": 0.42424242424242425, + "NEGATIVE": 0.5757575757575758 + } + } }, { "season_code": "202301", @@ -146073,7 +320827,7 @@ "13:30", "14:20", "HQ 229 - Humanities Quadrangle 229", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -146090,7 +320844,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -146122,7 +320904,7 @@ "14:30", "15:20", "HQ 229 - Humanities Quadrangle 229", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -146139,7 +320921,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -146171,7 +320981,7 @@ "13:30", "14:20", "WALL53 208 - 53 Wall Street 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/559554" + "https://map.yale.edu/?id=1910#!m/559554" ] ] }, @@ -146188,7 +320998,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -146220,7 +321058,7 @@ "14:30", "15:20", "WALL53 208 - 53 Wall Street 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/559554" + "https://map.yale.edu/?id=1910#!m/559554" ] ] }, @@ -146237,7 +321075,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -146274,7 +321140,7 @@ "9:25", "11:15", "WLH 009 - William L. Harkness Hall 009", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -146294,10 +321160,111 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84114\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84114/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988932013511658, + 0.9986444115638733, + 0.998116135597229, + 0.9987916350364685, + 0.9833570718765259 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9984769225120544, + 0.9986135959625244, + 0.9988527297973633, + 0.9989144802093506, + 0.9994801878929138, + 0.9994833469390869 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989187717437744, + 0.9988433122634888, + 0.997336208820343, + 0.9988310933113098, + 0.9995037317276001, + 0.996327817440033 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 0.7058823529411765, + "final_counts": { + "POSITIVE": 12, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.7058823529411765, + "NEGATIVE": 0.29411764705882354 + } + } }, { "season_code": "202301", @@ -146330,7 +321297,7 @@ "14:30", "15:20", "WLH 004 - William L. Harkness Hall 004", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -146349,7 +321316,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -146382,7 +321377,7 @@ "15:30", "16:20", "WLH 115 - William L. Harkness Hall 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -146401,7 +321396,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -146434,7 +321457,7 @@ "16:00", "16:50", "WLH 004 - William L. Harkness Hall 004", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -146453,7 +321476,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -146492,7 +321543,7 @@ "11:35", "12:50", "WLH 119 - William L. Harkness Hall 119", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -146500,7 +321551,7 @@ "11:35", "12:50", "WLH 119 - William L. Harkness Hall 119", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -146509,7 +321560,7 @@ "Hu" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC History: United States", "YC History: Cultural History", @@ -146525,10 +321576,195 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84120\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84120/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988976716995239, + 0.9981581568717957, + 0.9988256096839905, + 0.998914361000061, + 0.9988784193992615, + 0.9988855719566345, + 0.9988792538642883, + 0.9988859295845032, + 0.9988511800765991, + 0.9988211989402771, + 0.9818598628044128, + 0.9986016154289246, + 0.9989354014396667, + 0.9988081455230713, + 0.9987228512763977, + 0.9985349178314209, + 0.9987442493438721, + 0.9987358450889587 + ], + "sentiment_counts": { + "POSITIVE": 18, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9976886510848999, + 0.999294638633728, + 0.9989166259765625, + 0.9830789566040039, + 0.9989305138587952, + 0.998824417591095, + 0.9987088441848755, + 0.9988985061645508, + 0.9995061159133911, + 0.9976128339767456, + 0.9986706972122192, + 0.9961349964141846, + 0.9979481101036072, + 0.9986960291862488, + 0.9988349080085754, + 0.9995013475418091, + 0.9995057582855225, + 0.9989029169082642, + 0.9983946681022644 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 6 + }, + "sentiment_distribution": { + "POSITIVE": 0.6842105263157895, + "NEGATIVE": 0.3157894736842105 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6842105263157895 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989209175109863, + 0.9924600720405579, + 0.9964550733566284, + 0.9989292025566101, + 0.9989263415336609, + 0.9988822340965271, + 0.9989282488822937, + 0.9988425970077515, + 0.9989334940910339, + 0.9994993209838867, + 0.9986735582351685, + 0.9988254904747009, + 0.9992857575416565, + 0.9973172545433044, + 0.9988986253738403, + 0.9987059831619263, + 0.9989305138587952, + 0.9987673759460449, + 0.9980136156082153, + 0.9989374279975891, + 0.9994974136352539, + 0.9984540939331055 + ], + "sentiment_counts": { + "POSITIVE": 18, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.8181818181818182, + "NEGATIVE": 0.18181818181818182 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8181818181818182 + ] + }, + "final_label": "POSITIVE", + "final_count": 49, + "final_proportion": 0.8305084745762712, + "final_counts": { + "POSITIVE": 49, + "NEGATIVE": 10 + }, + "final_distribution": { + "POSITIVE": 0.8305084745762712, + "NEGATIVE": 0.1694915254237288 + } + } }, { "season_code": "202301", @@ -146561,7 +321797,7 @@ "10:30", "11:20", "LC 210 - Linsly-Chittenden Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -146580,7 +321816,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -146613,7 +321877,7 @@ "11:35", "12:25", "LC 212 - Linsly-Chittenden Hall 212", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -146632,7 +321896,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -146669,7 +321961,7 @@ "13:30", "14:20", "WLH 117 - William L. Harkness Hall 117", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -146677,7 +321969,7 @@ "13:30", "14:20", "WLH 117 - William L. Harkness Hall 117", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -146698,10 +321990,169 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84125\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84125/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988470077514648, + 0.9988884329795837, + 0.9988497495651245, + 0.9989144802093506, + 0.9989136457443237, + 0.9982206225395203, + 0.9890648126602173, + 0.9987830519676208, + 0.99892657995224, + 0.9988580942153931, + 0.9984295964241028, + 0.9987745881080627, + 0.9988262057304382, + 0.9988858103752136, + 0.9988524913787842 + ], + "sentiment_counts": { + "POSITIVE": 14, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9333333333333333, + "NEGATIVE": 0.06666666666666667 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9333333333333333 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989010095596313, + 0.9987878203392029, + 0.9989305138587952, + 0.9989283680915833, + 0.998930037021637, + 0.9940404295921326, + 0.9883191585540771, + 0.9989194869995117, + 0.9988946318626404, + 0.9989354014396667, + 0.9987853169441223, + 0.9988983869552612, + 0.9989147186279297, + 0.9989357590675354, + 0.9989392161369324, + 0.9989225268363953 + ], + "sentiment_counts": { + "POSITIVE": 16, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989091157913208, + 0.9989191293716431, + 0.9989192485809326, + 0.9989161491394043, + 0.9988837838172913, + 0.9989228844642639, + 0.9989312291145325, + 0.9989247918128967, + 0.9989305138587952, + 0.9989290833473206, + 0.9986841082572937, + 0.998892605304718, + 0.9989336133003235, + 0.9989001750946045, + 0.998895525932312 + ], + "sentiment_counts": { + "POSITIVE": 15, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 45, + "final_proportion": 0.9782608695652174, + "final_counts": { + "POSITIVE": 45, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9782608695652174, + "NEGATIVE": 0.021739130434782608 + } + } }, { "season_code": "202301", @@ -146732,7 +322183,7 @@ "15:30", "16:20", "HQ 307 - Humanities Quadrangle 307", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -146749,7 +322200,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -146780,7 +322259,7 @@ "17:00", "17:50", "HQ 307 - Humanities Quadrangle 307", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -146797,7 +322276,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -146835,7 +322342,7 @@ "15:30", "17:20", "HQ 209 - Humanities Quadrangle 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -146862,10 +322369,117 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84238\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84238/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987781643867493, + 0.998830258846283, + 0.9985963702201843, + 0.998863935470581, + 0.9988699555397034, + 0.9989104270935059, + 0.9965689182281494 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989280104637146, + 0.9994874000549316, + 0.9987373948097229, + 0.9988909363746643, + 0.9989271759986877, + 0.9988380074501038, + 0.9995014667510986 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.7142857142857143, + "NEGATIVE": 0.2857142857142857 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7142857142857143 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.998935878276825, + 0.9994605183601379, + 0.9989207983016968, + 0.998806357383728, + 0.9989232420921326, + 0.9985368251800537 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 0.8, + "final_counts": { + "POSITIVE": 16, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + } + } }, { "season_code": "202301", @@ -146903,7 +322517,7 @@ "13:30", "15:20", "HQ C11 - Humanities Quadrangle C11", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -146928,10 +322542,119 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84130\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84130/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987892508506775, + 0.9988318085670471, + 0.9988960027694702, + 0.9987145662307739, + 0.9988780617713928, + 0.9988214373588562, + 0.9988611936569214 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998903751373291, + 0.9989362359046936, + 0.9988456964492798, + 0.9981629252433777, + 0.9986252784729004, + 0.9986976385116577, + 0.9988201260566711 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988335967063904, + 0.9989392161369324, + 0.9988880753517151, + 0.9989302754402161, + 0.9989266991615295, + 0.9983274340629578, + 0.9981574416160583, + 0.998887836933136 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 22, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 22 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -146971,7 +322694,7 @@ "9:25", "11:15", "WALL81 201 - 81 Wall Street 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -146987,15 +322710,140 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83303\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83303/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "", - "description": "How can we study a history so broad, complex, and evolving as the history of American immigration policy?\u00a0 This course explores that question by studying U.S. immigration law, politics, and activism from the colonial era to the present day.\u00a0 Chronologically, we particularly examine: (1) antebellum immigration policy in the context of forced migration, settler colonialism, and slavery, (2) the rise of a federal \"gatekeeping\" immigration regime in the post-Civil War era, and (3) transformations in immigration policymaking and policies during the long twentieth century. Thematically, we emphasize how U.S. immigration policies have often been framed\u2014and challenged by immigrant rights advocates\u2014on the grounds of racialized and gendered exclusion and\/or subordination.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988480806350708, + 0.9989012479782104, + 0.9989172220230103, + 0.9986692667007446, + 0.9986727237701416, + 0.9987316727638245, + 0.9988932013511658, + 0.9989190101623535, + 0.9988895058631897 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.998233437538147, + 0.9988462924957275, + 0.9989042282104492, + 0.9988855719566345, + 0.9989101886749268, + 0.9989123344421387, + 0.9989299178123474, + 0.9989319443702698, + 0.9989330172538757, + 0.9888333082199097 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988939166069031, + 0.9986318945884705, + 0.9989064931869507, + 0.9986655712127686, + 0.9985539317131042, + 0.998836100101471, + 0.9989390969276428, + 0.9989014863967896, + 0.9986961483955383, + 0.9986067414283752 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 28, + "final_proportion": 0.9655172413793104, + "final_counts": { + "POSITIVE": 28, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9655172413793104, + "NEGATIVE": 0.034482758620689655 + } + } + }, + { + "season_code": "202301", + "requirements": "", + "description": "How can we study a history so broad, complex, and evolving as the history of American immigration policy?\u00a0 This course explores that question by studying U.S. immigration law, politics, and activism from the colonial era to the present day.\u00a0 Chronologically, we particularly examine: (1) antebellum immigration policy in the context of forced migration, settler colonialism, and slavery, (2) the rise of a federal \"gatekeeping\" immigration regime in the post-Civil War era, and (3) transformations in immigration policymaking and policies during the long twentieth century. Thematically, we emphasize how U.S. immigration policies have often been framed\u2014and challenged by immigrant rights advocates\u2014on the grounds of racialized and gendered exclusion and/or subordination.", "short_title": "U.S. Immigration Policy: Hist...", "title": "U.S. Immigration Policy: History, Politics, and Activism, 1607-Present", "school": "YC", @@ -147027,7 +322875,7 @@ "9:25", "11:15", "HQ C15 - Humanities Quadrangle C15", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -147049,10 +322897,111 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84134\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84134/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988688826560974, + 0.9987220168113708, + 0.9986660480499268, + 0.998913049697876, + 0.9988251328468323, + 0.9988129138946533 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989144802093506, + 0.9989101886749268, + 0.9989016056060791, + 0.9764984250068665, + 0.9987755417823792 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989328980445862, + 0.9988430738449097, + 0.9989364743232727, + 0.9988993406295776, + 0.9928493499755859, + 0.9979748129844666 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 0.8823529411764706, + "final_counts": { + "POSITIVE": 15, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8823529411764706, + "NEGATIVE": 0.11764705882352941 + } + } }, { "season_code": "202301", @@ -147090,7 +323039,7 @@ "10:30", "11:20", "WLH 201 - William L. Harkness Hall 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -147098,7 +323047,7 @@ "10:30", "11:20", "WLH 201 - William L. Harkness Hall 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -147121,10 +323070,299 @@ "classnotes": "", "final_exam": "Wednesday, May 10, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85860\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/85860/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988357424736023, + 0.998641312122345, + 0.9988828301429749, + 0.995060384273529, + 0.9989118576049805, + 0.9988993406295776, + 0.9984632730484009, + 0.9988316893577576, + 0.9984533786773682, + 0.9987635612487793, + 0.9988839030265808, + 0.9989274144172668, + 0.9988388419151306, + 0.9987737536430359, + 0.9989125728607178, + 0.9988518953323364, + 0.9984373450279236, + 0.9984844326972961, + 0.9989367127418518, + 0.9988859295845032, + 0.9987726807594299, + 0.9988346695899963, + 0.9943361878395081, + 0.998738706111908, + 0.9985645413398743, + 0.9988736510276794, + 0.9989018440246582, + 0.994705855846405, + 0.9988963603973389, + 0.9989107847213745, + 0.9989262223243713, + 0.9989262223243713, + 0.9988491535186768 + ], + "sentiment_counts": { + "POSITIVE": 32, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9696969696969697, + "NEGATIVE": 0.030303030303030304 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9696969696969697 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9945210218429565, + 0.998977541923523, + 0.9987581968307495, + 0.9995009899139404, + 0.9989125728607178, + 0.9988717436790466, + 0.6535438895225525, + 0.9986972212791443, + 0.9988390803337097, + 0.9987088441848755, + 0.9988541603088379, + 0.9989056587219238, + 0.9988213181495667, + 0.9988105297088623, + 0.9988644123077393, + 0.9989338517189026, + 0.9862333536148071, + 0.9988151788711548, + 0.9994993209838867, + 0.9989124536514282, + 0.9982929825782776, + 0.9980018734931946, + 0.9964787364006042, + 0.9865348935127258, + 0.998699426651001, + 0.9975727200508118, + 0.9987725615501404, + 0.9989487528800964, + 0.9948786497116089, + 0.9994681477546692, + 0.998933732509613, + 0.998879611492157, + 0.997542142868042, + 0.998907208442688, + 0.9987366795539856, + 0.9988222718238831, + 0.9988883137702942, + 0.9975486397743225 + ], + "sentiment_counts": { + "NEGATIVE": 9, + "POSITIVE": 29 + }, + "sentiment_distribution": { + "NEGATIVE": 0.23684210526315788, + "POSITIVE": 0.7631578947368421 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7631578947368421 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986477494239807, + 0.9988870024681091, + 0.9985597729682922, + 0.9988859295845032, + 0.998868465423584, + 0.9989282488822937, + 0.9812535643577576, + 0.9992520213127136, + 0.9988492727279663, + 0.9989251494407654, + 0.9989367127418518, + 0.9989005327224731, + 0.997117280960083, + 0.9777986407279968, + 0.998895525932312, + 0.9989218711853027, + 0.9989049434661865, + 0.9988542795181274, + 0.9987670183181763, + 0.9988763928413391, + 0.9984995126724243, + 0.9988112449645996, + 0.9976409673690796, + 0.9988024234771729, + 0.9988839030265808, + 0.9988822340965271, + 0.9987996816635132, + 0.9987679123878479, + 0.9988431930541992, + 0.9992881417274475, + 0.997117280960083, + 0.997117280960083, + 0.9989060163497925, + 0.9989323019981384, + 0.997117280960083, + 0.9989238381385803, + 0.9989296793937683, + 0.9989234805107117, + 0.9988788962364197, + 0.9989063739776611 + ], + "sentiment_counts": { + "POSITIVE": 35, + "NEGATIVE": 5 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "final_label": "POSITIVE", + "final_count": 96, + "final_proportion": 0.8648648648648649, + "final_counts": { + "POSITIVE": 96, + "NEGATIVE": 15 + }, + "final_distribution": { + "POSITIVE": 0.8648648648648649, + "NEGATIVE": 0.13513513513513514 + } + } }, { "season_code": "202301", @@ -147162,7 +323400,7 @@ "9:25", "11:15", "HQ C07 - Humanities Quadrangle C07", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -147186,10 +323424,107 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84138\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84138/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998764157295227, + 0.9978411197662354, + 0.9974895715713501, + 0.9984826445579529, + 0.9989262223243713 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9968435764312744, + 0.9988378882408142, + 0.9988467693328857, + 0.998907208442688, + 0.9987995624542236 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989043474197388, + 0.9988406300544739, + 0.9988792538642883, + 0.9986971020698547, + 0.9988584518432617, + 0.9988861680030823 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 16 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -147237,7 +323572,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -147275,7 +323638,7 @@ "9:25", "11:15", "LORIA 258 - Loria Center 258", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -147301,10 +323664,123 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84233\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84233/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9949499368667603, + 0.9986943602561951, + 0.998267650604248, + 0.9985992312431335, + 0.9989247918128967, + 0.9988240599632263, + 0.9989008903503418 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9612988233566284, + 0.9987875819206238, + 0.9989253878593445, + 0.9988986253738403, + 0.9987375140190125, + 0.9989303946495056, + 0.997349739074707 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9987491369247437, + 0.9988896250724792, + 0.9988893866539001, + 0.9989250302314758, + 0.9988771080970764, + 0.998647153377533, + 0.9989263415336609, + 0.9988419413566589, + 0.9983184337615967 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "final_label": "POSITIVE", + "final_count": 21, + "final_proportion": 0.9130434782608695, + "final_counts": { + "POSITIVE": 21, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9130434782608695, + "NEGATIVE": 0.08695652173913043 + } + } }, { "season_code": "202301", @@ -147336,7 +323812,7 @@ "16:00", "16:50", "HQ 213 - Humanities Quadrangle 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -147357,7 +323833,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -147389,7 +323893,7 @@ "16:30", "17:20", "WALL53 208 - 53 Wall Street 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/559554" + "https://map.yale.edu/?id=1910#!m/559554" ] ] }, @@ -147410,7 +323914,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -147442,7 +323974,7 @@ "9:25", "10:15", "HQ C65 - Humanities Quadrangle C65", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -147463,7 +323995,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -147495,7 +324055,7 @@ "10:30", "11:20", "HQ 313 - Humanities Quadrangle 313", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -147516,7 +324076,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -147548,7 +324136,7 @@ "13:30", "14:20", "WLH 007 - William L. Harkness Hall 007", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -147569,7 +324157,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -147601,7 +324217,7 @@ "16:00", "16:50", "WALL81 101 - 81 Wall Street 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -147622,7 +324238,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -147654,7 +324298,7 @@ "16:00", "16:50", "HQ 209 - Humanities Quadrangle 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -147675,7 +324319,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -147713,7 +324385,7 @@ "14:30", "15:20", "LC 102 - Linsly-Chittenden Hall 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -147721,7 +324393,7 @@ "14:30", "15:20", "LC 102 - Linsly-Chittenden Hall 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -147744,10 +324416,155 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84147\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84147/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987548589706421, + 0.9988214373588562, + 0.9988816380500793, + 0.9987995624542236, + 0.988921046257019, + 0.9931396842002869, + 0.998670220375061, + 0.99892657995224, + 0.998696506023407, + 0.9989192485809326, + 0.9988435506820679, + 0.9988479614257812, + 0.9983874559402466 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9230769230769231, + "NEGATIVE": 0.07692307692307693 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9230769230769231 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998890221118927, + 0.9988538026809692, + 0.998896598815918, + 0.9986960291862488, + 0.9988196492195129, + 0.9988917708396912, + 0.9987082481384277, + 0.9987390637397766, + 0.9986845850944519, + 0.9989066123962402, + 0.9988107681274414 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989062547683716, + 0.9987801909446716, + 0.9988665580749512, + 0.9987926483154297, + 0.9988824725151062, + 0.9970756769180298, + 0.997117280960083, + 0.9987276196479797, + 0.9988777041435242, + 0.9988743662834167, + 0.9989308714866638, + 0.9989294409751892, + 0.997117280960083, + 0.998915433883667, + 0.9989293217658997 + ], + "sentiment_counts": { + "POSITIVE": 15, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 38, + "final_proportion": 0.9743589743589743, + "final_counts": { + "POSITIVE": 38, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9743589743589743, + "NEGATIVE": 0.02564102564102564 + } + } }, { "season_code": "202301", @@ -147786,7 +324603,7 @@ "10:30", "11:20", "WALL53 AUD - 53 Wall Street AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/559554" + "https://map.yale.edu/?id=1910#!m/559554" ] ], "Wednesday": [ @@ -147794,7 +324611,7 @@ "10:30", "11:20", "WALL53 AUD - 53 Wall Street AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/559554" + "https://map.yale.edu/?id=1910#!m/559554" ] ] }, @@ -147814,10 +324631,425 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84301\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84301/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989299178123474, + 0.9989270567893982, + 0.9987040758132935, + 0.9986178874969482, + 0.9983515739440918, + 0.9989331364631653, + 0.9986147880554199, + 0.9988495111465454, + 0.9989032745361328, + 0.998913049697876, + 0.9976812601089478, + 0.9989338517189026, + 0.9980559349060059, + 0.9987653493881226, + 0.9989036321640015, + 0.9983876943588257, + 0.9987586736679077, + 0.998809814453125, + 0.998754620552063, + 0.9986563920974731, + 0.9988502264022827, + 0.9988983869552612, + 0.9989294409751892, + 0.998893678188324, + 0.9988231062889099, + 0.9988514184951782, + 0.9988755583763123, + 0.9988946318626404, + 0.9989020824432373, + 0.9984809756278992, + 0.9988265633583069, + 0.9988288283348083, + 0.9988980293273926, + 0.9985200762748718, + 0.9988293051719666, + 0.9989159107208252, + 0.998218834400177, + 0.9986300468444824, + 0.9988031387329102, + 0.998924195766449, + 0.9987465143203735, + 0.9988443851470947, + 0.9987773299217224, + 0.9988628625869751, + 0.9986258745193481, + 0.9987885355949402, + 0.9984702467918396, + 0.9988866448402405, + 0.9985070824623108, + 0.9988640546798706, + 0.9989114999771118, + 0.9988663196563721, + 0.9987837672233582 + ], + "sentiment_counts": { + "POSITIVE": 53, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988957643508911, + 0.998507559299469, + 0.9988139867782593, + 0.9988749623298645, + 0.9989029169082642, + 0.9989017248153687, + 0.9989352822303772, + 0.9989385008811951, + 0.9989055395126343, + 0.9992756247520447, + 0.998898983001709, + 0.9988547563552856, + 0.998809814453125, + 0.9989244341850281, + 0.9988590478897095, + 0.9976262450218201, + 0.9987931251525879, + 0.9984152317047119, + 0.9988620281219482, + 0.9932077527046204, + 0.9989162683486938, + 0.9989318251609802, + 0.9989333748817444, + 0.9989387392997742, + 0.998892605304718, + 0.9989320635795593, + 0.9988131523132324, + 0.9988865256309509, + 0.998869001865387, + 0.9989006519317627, + 0.9982866644859314, + 0.9988147020339966, + 0.9988935589790344, + 0.9989103078842163, + 0.9989393353462219, + 0.9988767504692078, + 0.9988114833831787, + 0.9989151954650879, + 0.9696354269981384, + 0.998915433883667, + 0.9989098310470581, + 0.9988934397697449, + 0.9989369511604309, + 0.9987194538116455, + 0.9989114999771118, + 0.9995015859603882, + 0.9988596439361572, + 0.9989171028137207, + 0.9989269375801086, + 0.998918890953064, + 0.9987429976463318 + ], + "sentiment_counts": { + "POSITIVE": 48, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.9411764705882353, + "NEGATIVE": 0.058823529411764705 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9411764705882353 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989251494407654, + 0.9987576007843018, + 0.9988538026809692, + 0.9987697005271912, + 0.9989213943481445, + 0.9988566637039185, + 0.9946840405464172, + 0.9987020492553711, + 0.9989042282104492, + 0.998742401599884, + 0.9986594915390015, + 0.998920202255249, + 0.9989261031150818, + 0.9988788962364197, + 0.9924303889274597, + 0.9989374279975891, + 0.9989197254180908, + 0.9983333945274353, + 0.9893378019332886, + 0.9989377856254578, + 0.9988186955451965, + 0.9974592328071594, + 0.9989359974861145, + 0.9989064931869507, + 0.9974592328071594, + 0.9922722578048706, + 0.9988862872123718, + 0.9988952875137329, + 0.9988642930984497, + 0.997117280960083, + 0.9989030361175537, + 0.9978070855140686, + 0.9988833069801331, + 0.9989175796508789, + 0.9989056587219238, + 0.9989230036735535, + 0.9982553124427795, + 0.9989340901374817, + 0.998863935470581, + 0.9988999366760254, + 0.997117280960083, + 0.9988697171211243, + 0.9975022673606873, + 0.9982553124427795, + 0.9989243149757385, + 0.9987970590591431, + 0.9978901743888855, + 0.9989350438117981, + 0.9989237189292908, + 0.9985508322715759, + 0.9988566637039185, + 0.9989039897918701, + 0.9988991022109985, + 0.9988752007484436, + 0.9989314675331116, + 0.9986849427223206, + 0.9987533092498779, + 0.9986975193023682, + 0.9989213943481445, + 0.9989330172538757, + 0.9989295601844788, + 0.997117280960083, + 0.9985619187355042, + 0.9987754225730896, + 0.9988873600959778, + 0.9989193677902222, + 0.9989206790924072, + 0.9988893866539001, + 0.998902440071106, + 0.998927652835846 + ], + "sentiment_counts": { + "POSITIVE": 69, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9857142857142858, + "NEGATIVE": 0.014285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9857142857142858 + ] + }, + "final_label": "POSITIVE", + "final_count": 170, + "final_proportion": 0.9770114942528736, + "final_counts": { + "POSITIVE": 170, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.9770114942528736, + "NEGATIVE": 0.022988505747126436 + } + } }, { "season_code": "202301", @@ -147850,7 +325082,7 @@ "13:30", "14:20", "LORIA B50 - Loria Center B50", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -147868,7 +325100,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -147901,7 +325161,7 @@ "15:30", "16:20", "LORIA 360 - Loria Center 360", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -147919,7 +325179,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -147952,7 +325240,7 @@ "14:30", "15:20", "HQ 401 - Humanities Quadrangle 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -147970,7 +325258,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -148003,7 +325319,7 @@ "16:30", "17:20", "WLH 001 - William L. Harkness Hall 001", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -148021,7 +325337,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -148054,7 +325398,7 @@ "9:25", "10:15", "HQ 227 - Humanities Quadrangle 227", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -148072,7 +325416,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -148105,7 +325477,7 @@ "10:30", "11:20", "HQ 129 - Humanities Quadrangle 129", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -148123,7 +325495,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -148156,7 +325556,7 @@ "15:30", "16:20", "CO493 106 - 493 College Street 106", - "https:\/\/map.yale.edu\/?id=1910#!m\/560001" + "https://map.yale.edu/?id=1910#!m/560001" ] ] }, @@ -148174,7 +325574,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -148207,7 +325635,7 @@ "14:30", "15:20", "HQ 113 - Humanities Quadrangle 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -148225,7 +325653,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -148258,7 +325714,7 @@ "16:00", "16:50", "HQ 313 - Humanities Quadrangle 313", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -148276,7 +325732,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -148313,7 +325797,7 @@ "13:30", "15:20", "DC 215 - Davenport College 215", - "https:\/\/map.yale.edu\/?id=1910#!m\/560004" + "https://map.yale.edu/?id=1910#!m/560004" ] ] }, @@ -148336,10 +325820,125 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85169\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85169/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.997961163520813, + 0.9988147020339966, + 0.998890221118927, + 0.9987070560455322, + 0.9988027811050415, + 0.9989218711853027, + 0.9988124370574951 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988855719566345, + 0.9989284873008728, + 0.9978137016296387, + 0.9989333748817444, + 0.998149037361145, + 0.9989162683486938, + 0.9989240765571594 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988962411880493, + 0.9989101886749268, + 0.9989029169082642, + 0.9989182949066162, + 0.9987006187438965, + 0.9988935589790344, + 0.998892605304718, + 0.9984130859375, + 0.998885452747345, + 0.9989261031150818, + 0.9986774325370789 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 25, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 25 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -148376,7 +325975,7 @@ "15:30", "17:20", "DC 215 - Davenport College 215", - "https:\/\/map.yale.edu\/?id=1910#!m\/560004" + "https://map.yale.edu/?id=1910#!m/560004" ] ] }, @@ -148399,10 +325998,113 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85170\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85170/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988638162612915, + 0.9989239573478699, + 0.9986709356307983, + 0.9989150762557983 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985910058021545, + 0.9995129108428955, + 0.9989017248153687, + 0.9968389272689819, + 0.9989275336265564 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.4, + "POSITIVE": 0.6 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9976181387901306, + 0.9984118938446045, + 0.9985151886940002, + 0.9982314705848694, + 0.9989230036735535, + 0.9988299012184143, + 0.9988769888877869, + 0.9947463870048523, + 0.9988429546356201 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 0.8333333333333334, + "final_counts": { + "POSITIVE": 15, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + } + } }, { "season_code": "202301", @@ -148440,7 +326142,7 @@ "13:30", "15:20", "WLH 009 - William L. Harkness Hall 009", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -148456,10 +326158,115 @@ "classnotes": "Priority is given to History majors and students in Education Studies (certificate & scholars program), and then by course year. Priority is also given to students who have taken EDST110. As you request permission on courses.yale.edu, please indicate why you hope to take the course, your major, EDST program and whether you've taken EDST 110.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85178\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85178/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989005327224731, + 0.998744010925293, + 0.9988083839416504, + 0.9989271759986877, + 0.9989105463027954, + 0.9988749623298645 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989032745361328, + 0.9987850785255432, + 0.9989114999771118, + 0.9989097118377686, + 0.9988829493522644, + 0.9988277554512024, + 0.9989297986030579 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983333945274353, + 0.9988940358161926, + 0.9989271759986877, + 0.9988424181938171, + 0.99887615442276, + 0.9938871264457703, + 0.9987900853157043 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 20 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -148499,10 +326306,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83283\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83283/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -148539,7 +326374,7 @@ "9:25", "11:15", "HQ C65 - Humanities Quadrangle C65", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -148564,15 +326399,108 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86244\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86244/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "", - "description": "Historiographic narrative of United States history over the past century and critical\/methodological practices of thinking historically and of identifying ways in which our present has been conditioned by historical legacies, both momentous and subtle. Topics include the New Deal, WWII, the arms race, Reaganomics, and 9\/11 in terms of their lasting influence on American conditions in the present.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985904097557068, + 0.9988589286804199, + 0.9989110231399536, + 0.9989190101623535 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987697005271912, + 0.9989062547683716, + 0.9924004077911377, + 0.9965065121650696 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986932873725891, + 0.9989261031150818, + 0.9984433054924011, + 0.9981452226638794, + 0.9988605976104736, + 0.9989134073257446 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 14 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } + }, + { + "season_code": "202301", + "requirements": "", + "description": "Historiographic narrative of United States history over the past century and critical/methodological practices of thinking historically and of identifying ways in which our present has been conditioned by historical legacies, both momentous and subtle. Topics include the New Deal, WWII, the arms race, Reaganomics, and 9/11 in terms of their lasting influence on American conditions in the present.", "short_title": "The History of Right Now", "title": "The History of Right Now", "school": "YC", @@ -148601,7 +326529,7 @@ "Hu" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -148612,7 +326540,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -148649,7 +326605,7 @@ "13:30", "15:20", "WTS A74 - Watson Center 60 Sachem Street A74", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -148671,10 +326627,123 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84151\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84151/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988973140716553, + 0.9988219141960144, + 0.9988038539886475, + 0.9988139867782593, + 0.9988424181938171, + 0.9989301562309265, + 0.9989305138587952, + 0.9988920092582703 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987531900405884, + 0.9988579750061035, + 0.9883747100830078, + 0.9988911747932434, + 0.9988356232643127, + 0.9983987212181091, + 0.9989218711853027, + 0.9989237189292908 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983974099159241, + 0.9988534450531006, + 0.9989204406738281, + 0.9988320469856262, + 0.998920202255249, + 0.9988747239112854, + 0.9985176920890808, + 0.9988434314727783 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 24, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 24 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -148708,7 +326777,7 @@ "15:30", "16:20", "WLH 002 - William L. Harkness Hall 002", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -148727,7 +326796,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -148761,7 +326858,7 @@ "16:30", "17:20", "WLH 002 - William L. Harkness Hall 002", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -148780,7 +326877,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -148841,7 +326966,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -148902,7 +327055,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -148942,7 +327123,7 @@ "10:30", "11:20", "WLH 207 - William L. Harkness Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -148950,7 +327131,7 @@ "10:30", "11:20", "WLH 207 - William L. Harkness Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -148961,7 +327142,7 @@ "Hu" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -148969,10 +327150,131 @@ "classnotes": "", "final_exam": "Wednesday, May 10, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83279\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83279/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988565444946289, + 0.9988932013511658, + 0.9986244440078735, + 0.9989213943481445, + 0.9987640380859375, + 0.9988493919372559, + 0.9988866448402405 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9978806972503662, + 0.9990952014923096, + 0.9989263415336609, + 0.9980321526527405, + 0.9963645339012146, + 0.9988352656364441, + 0.998491644859314, + 0.9989197254180908, + 0.9888995289802551, + 0.9984050393104553, + 0.9918504357337952 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 8 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2727272727272727, + "POSITIVE": 0.7272727272727273 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7272727272727273 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9976517558097839, + 0.9988802075386047, + 0.997117280960083, + 0.9946708083152771, + 0.9989094734191895, + 0.9988920092582703, + 0.9989240765571594, + 0.9995013475418091, + 0.9987043142318726 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 21, + "final_proportion": 0.7777777777777778, + "final_counts": { + "POSITIVE": 21, + "NEGATIVE": 6 + }, + "final_distribution": { + "POSITIVE": 0.7777777777777778, + "NEGATIVE": 0.2222222222222222 + } + } }, { "season_code": "202301", @@ -149010,7 +327312,7 @@ "15:30", "17:20", "HQ C03 - Humanities Quadrangle C03", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -149026,10 +327328,111 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87080\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87080/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985658526420593, + 0.9987475872039795, + 0.998890221118927, + 0.9982740879058838, + 0.998742401599884, + 0.9988314509391785 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987070560455322, + 0.9988859295845032, + 0.9966222047805786, + 0.9978321194648743, + 0.9988260865211487, + 0.9989331364631653 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9995075464248657, + 0.9989049434661865, + 0.998907208442688, + 0.9989174604415894, + 0.9988403916358948 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 4 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2, + "POSITIVE": 0.8 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 0.8235294117647058, + "final_counts": { + "POSITIVE": 14, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.8235294117647058, + "NEGATIVE": 0.17647058823529413 + } + } }, { "season_code": "202301", @@ -149069,7 +327472,7 @@ "11:35", "12:50", "WLH 201 - William L. Harkness Hall 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -149077,7 +327480,7 @@ "11:35", "12:50", "WLH 201 - William L. Harkness Hall 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -149087,7 +327490,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -149095,10 +327498,287 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83362\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83362/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9944273233413696, + 0.9988986253738403, + 0.9989239573478699, + 0.998918890953064, + 0.9987027645111084, + 0.9981843829154968, + 0.998914361000061, + 0.9987805485725403, + 0.9987607002258301, + 0.9988158941268921, + 0.9989057779312134, + 0.998930037021637, + 0.9988939166069031, + 0.998790442943573, + 0.9987103939056396, + 0.9910886287689209, + 0.9987867474555969, + 0.9995083808898926, + 0.998880922794342, + 0.9995052814483643, + 0.9988871216773987, + 0.9986042380332947, + 0.9989161491394043, + 0.998835027217865, + 0.9988269209861755, + 0.9988269209861755, + 0.9986566305160522, + 0.9989162683486938, + 0.9985319375991821, + 0.9986377358436584 + ], + "sentiment_counts": { + "POSITIVE": 28, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.9333333333333333, + "NEGATIVE": 0.06666666666666667 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9333333333333333 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986831545829773, + 0.9986336827278137, + 0.9988625049591064, + 0.9989078044891357, + 0.9986060261726379, + 0.9988481998443604, + 0.9986518025398254, + 0.9994981288909912, + 0.9986425042152405, + 0.9995063543319702, + 0.9985685348510742, + 0.9988466501235962, + 0.9989294409751892, + 0.9938819408416748, + 0.9987922310829163, + 0.9988736510276794, + 0.9968108534812927, + 0.9988744854927063, + 0.999502420425415, + 0.9988064765930176, + 0.9988455772399902, + 0.9994230270385742, + 0.9811413884162903, + 0.9995037317276001, + 0.9988105297088623, + 0.9934137463569641, + 0.9987344145774841, + 0.937844455242157, + 0.9987655878067017, + 0.9974685907363892, + 0.9469312429428101, + 0.9989070892333984, + 0.9988446235656738, + 0.9988981485366821, + 0.999242901802063, + 0.9976551532745361 + ], + "sentiment_counts": { + "POSITIVE": 27, + "NEGATIVE": 9 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981409311294556, + 0.9966179728507996, + 0.9983184337615967, + 0.9982252717018127, + 0.9949954748153687, + 0.9988924860954285, + 0.9987180233001709, + 0.9975698590278625, + 0.9961349964141846, + 0.9983940720558167, + 0.9983274340629578, + 0.9968445301055908, + 0.998736560344696, + 0.9988449811935425, + 0.9989351630210876, + 0.998920202255249, + 0.9989142417907715, + 0.998741090297699, + 0.9987003803253174, + 0.9985774755477905, + 0.7381450533866882, + 0.9989122152328491, + 0.9989204406738281, + 0.9980016350746155, + 0.998401939868927, + 0.999508261680603, + 0.9989388585090637, + 0.9989350438117981, + 0.9994799494743347, + 0.9988722205162048, + 0.9925923943519592, + 0.9953004121780396, + 0.9989240765571594, + 0.9987947940826416, + 0.9989268183708191, + 0.9988850951194763, + 0.9988704323768616, + 0.9984244108200073, + 0.9988484382629395 + ], + "sentiment_counts": { + "POSITIVE": 32, + "NEGATIVE": 7 + }, + "sentiment_distribution": { + "POSITIVE": 0.8205128205128205, + "NEGATIVE": 0.1794871794871795 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8205128205128205 + ] + }, + "final_label": "POSITIVE", + "final_count": 87, + "final_proportion": 0.8285714285714286, + "final_counts": { + "POSITIVE": 87, + "NEGATIVE": 18 + }, + "final_distribution": { + "POSITIVE": 0.8285714285714286, + "NEGATIVE": 0.17142857142857143 + } + } }, { "season_code": "202301", @@ -149132,7 +327812,7 @@ "9:25", "10:15", "WLH 204 - William L. Harkness Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -149150,7 +327830,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -149184,7 +327892,7 @@ "11:35", "12:25", "HQ C03 - Humanities Quadrangle C03", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -149202,7 +327910,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -149236,7 +327972,7 @@ "11:35", "12:25", "HQ 225 - Humanities Quadrangle 225", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -149254,7 +327990,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -149288,7 +328052,7 @@ "13:30", "14:20", "HQ 225 - Humanities Quadrangle 225", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -149306,7 +328070,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -149340,7 +328132,7 @@ "15:30", "16:20", "HQ C03 - Humanities Quadrangle C03", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -149358,7 +328150,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -149392,7 +328212,7 @@ "16:30", "17:20", "HQ C03 - Humanities Quadrangle C03", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -149410,7 +328230,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -149447,7 +328295,7 @@ "13:30", "15:20", "HQ C15 - Humanities Quadrangle C15", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -149472,10 +328320,97 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84155\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84155/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9978328347206116, + 0.9935890436172485, + 0.9987276196479797 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984233379364014, + 0.990189254283905, + 0.9989336133003235, + 0.9989217519760132 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9953514337539673, + 0.9988985061645508, + 0.9989159107208252, + 0.9989064931869507 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 11 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -149513,7 +328448,7 @@ "13:30", "15:20", "HQ C11 - Humanities Quadrangle C11", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -149539,10 +328474,119 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84159\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84159/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986571073532104, + 0.9986770749092102, + 0.998874843120575, + 0.9989238381385803, + 0.9989232420921326 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.998908281326294, + 0.9988724589347839, + 0.9988952875137329, + 0.9988856911659241, + 0.9988139867782593, + 0.993047297000885, + 0.998924195766449, + 0.9965834021568298 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988671541213989, + 0.9989104270935059, + 0.9984447360038757, + 0.9989243149757385, + 0.9989368319511414, + 0.9984751343727112, + 0.9989200830459595, + 0.9989151954650879 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 0.9047619047619048, + "final_counts": { + "POSITIVE": 19, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9047619047619048, + "NEGATIVE": 0.09523809523809523 + } + } }, { "season_code": "202301", @@ -149580,7 +328624,7 @@ "9:25", "11:15", "HQ 113 - Humanities Quadrangle 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -149606,15 +328650,116 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84209\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84209/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "", - "description": "This class examines how the Greeks and Romans exploited their natural surroundings not only as physical resources, but as resources for human thought. The focus is on how ancient thinkers, living lives that were largely city-bound and detached from nature, structured their thoughts about the lives they lived (and about human existence more generally) by reference to their nonhuman surroundings: creatures, plants and places, some of which existed in the real world (in places far off, largely unknown and elsewhere; in places penetrated, explored, and\/or told of), others of which existed entirely in the imagination, whether as inherited lore, or as places and creatures invented ad hoc by individuals and groups to get certain kinds of cultural work done. We look not only at the how and what, but at the why of nature\u2019s encoding via culture, and vice versa (their symbiosis), paying special attention to ancient Rome (though with a short first glance at Homer, Hesiod and Aristotle). We begin by scrutinizing the categories themselves, attempting to find historically appropriate ways to connect modern ecocritical concerns and ways of thought to the ancient world. Topics include:\u00a0the cosmos, the heavens, and the first humans (and first peoples in their places); humans in their \u2018kinds\u2019 and animals, wild and tame; mountains, rivers, the sea and the undersea; human and animal foods, farming and food ways; wine and fermentation; groves, forests and trees; gardens, flowers, vegetables and fungi; birds, fish, weasels and snakes; earthquakes, floods and natural disasters; pollution, dirt and the city of Rome; the ecocultural lives of others.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998923122882843, + 0.9989070892333984, + 0.998862624168396, + 0.9986743927001953, + 0.9989137649536133 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987409710884094, + 0.9989355206489563, + 0.9989396929740906, + 0.9989332556724548, + 0.9989113807678223, + 0.9988662004470825 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9950631260871887, + 0.9988534450531006, + 0.9989117383956909, + 0.998934805393219, + 0.9989142417907715, + 0.9989171028137207 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 5 + }, + "sentiment_distribution": { + "NEGATIVE": 0.16666666666666666, + "POSITIVE": 0.8333333333333334 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 0.9411764705882353, + "final_counts": { + "POSITIVE": 16, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9411764705882353, + "NEGATIVE": 0.058823529411764705 + } + } + }, + { + "season_code": "202301", + "requirements": "", + "description": "This class examines how the Greeks and Romans exploited their natural surroundings not only as physical resources, but as resources for human thought. The focus is on how ancient thinkers, living lives that were largely city-bound and detached from nature, structured their thoughts about the lives they lived (and about human existence more generally) by reference to their nonhuman surroundings: creatures, plants and places, some of which existed in the real world (in places far off, largely unknown and elsewhere; in places penetrated, explored, and/or told of), others of which existed entirely in the imagination, whether as inherited lore, or as places and creatures invented ad hoc by individuals and groups to get certain kinds of cultural work done. We look not only at the how and what, but at the why of nature\u2019s encoding via culture, and vice versa (their symbiosis), paying special attention to ancient Rome (though with a short first glance at Homer, Hesiod and Aristotle). We begin by scrutinizing the categories themselves, attempting to find historically appropriate ways to connect modern ecocritical concerns and ways of thought to the ancient world. Topics include:\u00a0the cosmos, the heavens, and the first humans (and first peoples in their places); humans in their \u2018kinds\u2019 and animals, wild and tame; mountains, rivers, the sea and the undersea; human and animal foods, farming and food ways; wine and fermentation; groves, forests and trees; gardens, flowers, vegetables and fungi; birds, fish, weasels and snakes; earthquakes, floods and natural disasters; pollution, dirt and the city of Rome; the ecocultural lives of others.", "short_title": "Ecocultures of Antiquity: Eco...", "title": "Ecocultures of Antiquity: Ecocritical Approaches to Ancient Greece and Rome", "school": "YC", @@ -149648,7 +328793,7 @@ "13:00", "14:15", "PH 207 - Phelps Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ], "Thursday": [ @@ -149656,7 +328801,7 @@ "13:00", "14:15", "PH 207 - Phelps Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -149672,15 +328817,136 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83687\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "", - "description": "This class examines how the Greeks and Romans exploited their natural surroundings not only as physical resources, but as resources for human thought. The focus is on how ancient thinkers, living lives that were largely city-bound and detached from nature, structured their thoughts about the lives they lived (and about human existence more generally) by reference to their nonhuman surroundings: creatures, plants and places, some of which existed in the real world (in places far off, largely unknown and elsewhere; in places penetrated, explored, and\/or told of), others of which existed entirely in the imagination, whether as inherited lore, or as places and creatures invented ad hoc by individuals and groups to get certain kinds of cultural work done. We look not only at the how and what, but at the why of nature\u2019s encoding via culture, and vice versa (their symbiosis), paying special attention to ancient Rome (though with a short first glance at Homer, Hesiod and Aristotle). We begin by scrutinizing the categories themselves, attempting to find historically appropriate ways to connect modern ecocritical concerns and ways of thought to the ancient world. Topics include:\u00a0the cosmos, the heavens, and the first humans (and first peoples in their places); humans in their \u2018kinds\u2019 and animals, wild and tame; mountains, rivers, the sea and the undersea; human and animal foods, farming and food ways; wine and fermentation; groves, forests and trees; gardens, flowers, vegetables and fungi; birds, fish, weasels and snakes; earthquakes, floods and natural disasters; pollution, dirt and the city of Rome; the ecocultural lives of others.", + "syllabus_url": "https://yale.instructure.com/courses/83687/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986658096313477, + 0.9987549781799316, + 0.9988769888877869, + 0.998818576335907, + 0.9989176988601685, + 0.998852014541626, + 0.9986240863800049, + 0.9985535740852356, + 0.9988571405410767 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988806843757629, + 0.9989176988601685, + 0.998863935470581, + 0.9989005327224731, + 0.998892605304718, + 0.9894417524337769, + 0.9989171028137207, + 0.9989120960235596 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987706542015076, + 0.9987742304801941, + 0.9989327788352966, + 0.9974020719528198, + 0.9989235997200012, + 0.9989352822303772, + 0.998933732509613, + 0.9989099502563477, + 0.998870313167572, + 0.9988740086555481 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 9 + }, + "sentiment_distribution": { + "NEGATIVE": 0.1, + "POSITIVE": 0.9 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "final_label": "POSITIVE", + "final_count": 25, + "final_proportion": 0.9259259259259259, + "final_counts": { + "POSITIVE": 25, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9259259259259259, + "NEGATIVE": 0.07407407407407407 + } + } + }, + { + "season_code": "202301", + "requirements": "", + "description": "This class examines how the Greeks and Romans exploited their natural surroundings not only as physical resources, but as resources for human thought. The focus is on how ancient thinkers, living lives that were largely city-bound and detached from nature, structured their thoughts about the lives they lived (and about human existence more generally) by reference to their nonhuman surroundings: creatures, plants and places, some of which existed in the real world (in places far off, largely unknown and elsewhere; in places penetrated, explored, and/or told of), others of which existed entirely in the imagination, whether as inherited lore, or as places and creatures invented ad hoc by individuals and groups to get certain kinds of cultural work done. We look not only at the how and what, but at the why of nature\u2019s encoding via culture, and vice versa (their symbiosis), paying special attention to ancient Rome (though with a short first glance at Homer, Hesiod and Aristotle). We begin by scrutinizing the categories themselves, attempting to find historically appropriate ways to connect modern ecocritical concerns and ways of thought to the ancient world. Topics include:\u00a0the cosmos, the heavens, and the first humans (and first peoples in their places); humans in their \u2018kinds\u2019 and animals, wild and tame; mountains, rivers, the sea and the undersea; human and animal foods, farming and food ways; wine and fermentation; groves, forests and trees; gardens, flowers, vegetables and fungi; birds, fish, weasels and snakes; earthquakes, floods and natural disasters; pollution, dirt and the city of Rome; the ecocultural lives of others.", "short_title": "Ecocultures of Antiquity: Eco...", "title": "Ecocultures of Antiquity: Ecocritical Approaches to Ancient Greece and Rome", "school": "YC", @@ -149708,7 +328974,7 @@ "14:30", "15:20", "HQ 207 - Humanities Quadrangle 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -149725,12 +328991,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This class examines how the Greeks and Romans exploited their natural surroundings not only as physical resources, but as resources for human thought. The focus is on how ancient thinkers, living lives that were largely city-bound and detached from nature, structured their thoughts about the lives they lived (and about human existence more generally) by reference to their nonhuman surroundings: creatures, plants and places, some of which existed in the real world (in places far off, largely unknown and elsewhere; in places penetrated, explored, and\/or told of), others of which existed entirely in the imagination, whether as inherited lore, or as places and creatures invented ad hoc by individuals and groups to get certain kinds of cultural work done. We look not only at the how and what, but at the why of nature\u2019s encoding via culture, and vice versa (their symbiosis), paying special attention to ancient Rome (though with a short first glance at Homer, Hesiod and Aristotle). We begin by scrutinizing the categories themselves, attempting to find historically appropriate ways to connect modern ecocritical concerns and ways of thought to the ancient world. Topics include:\u00a0the cosmos, the heavens, and the first humans (and first peoples in their places); humans in their \u2018kinds\u2019 and animals, wild and tame; mountains, rivers, the sea and the undersea; human and animal foods, farming and food ways; wine and fermentation; groves, forests and trees; gardens, flowers, vegetables and fungi; birds, fish, weasels and snakes; earthquakes, floods and natural disasters; pollution, dirt and the city of Rome; the ecocultural lives of others.", + "description": "This class examines how the Greeks and Romans exploited their natural surroundings not only as physical resources, but as resources for human thought. The focus is on how ancient thinkers, living lives that were largely city-bound and detached from nature, structured their thoughts about the lives they lived (and about human existence more generally) by reference to their nonhuman surroundings: creatures, plants and places, some of which existed in the real world (in places far off, largely unknown and elsewhere; in places penetrated, explored, and/or told of), others of which existed entirely in the imagination, whether as inherited lore, or as places and creatures invented ad hoc by individuals and groups to get certain kinds of cultural work done. We look not only at the how and what, but at the why of nature\u2019s encoding via culture, and vice versa (their symbiosis), paying special attention to ancient Rome (though with a short first glance at Homer, Hesiod and Aristotle). We begin by scrutinizing the categories themselves, attempting to find historically appropriate ways to connect modern ecocritical concerns and ways of thought to the ancient world. Topics include:\u00a0the cosmos, the heavens, and the first humans (and first peoples in their places); humans in their \u2018kinds\u2019 and animals, wild and tame; mountains, rivers, the sea and the undersea; human and animal foods, farming and food ways; wine and fermentation; groves, forests and trees; gardens, flowers, vegetables and fungi; birds, fish, weasels and snakes; earthquakes, floods and natural disasters; pollution, dirt and the city of Rome; the ecocultural lives of others.", "short_title": "Ecocultures of Antiquity: Eco...", "title": "Ecocultures of Antiquity: Ecocritical Approaches to Ancient Greece and Rome", "school": "YC", @@ -149758,7 +329052,7 @@ "16:30", "17:20", "HQ 207 - Humanities Quadrangle 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -149775,7 +329069,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -149814,7 +329136,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -149858,7 +329208,7 @@ "15:30", "17:20", "WLH 001 - William L. Harkness Hall 001", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -149868,7 +329218,7 @@ "So" ], "flags": [ - "YC EVST: Core Human\/Social Sci", + "YC EVST: Core Human/Social Sci", "YC EVST: Advanced Seminar" ], "regnotes": "", @@ -149876,10 +329226,97 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83975\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83975/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9911019802093506, + 0.9986314177513123 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 1 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9995094537734985, + 0.9995040893554688, + 0.9995088577270508, + 0.9989113807678223, + 0.998471200466156 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.6, + "POSITIVE": 0.4 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.6 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9992269277572632, + 0.9988889098167419, + 0.9989245533943176 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "neutral", + "final_count": 0.5, + "final_proportion": 0.5, + "final_counts": { + "NEGATIVE": 5, + "POSITIVE": 5 + }, + "final_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + } + } }, { "season_code": "202301", @@ -149917,7 +329354,7 @@ "15:30", "17:20", "HQ C64 - Humanities Quadrangle C64", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -149939,10 +329376,38 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84168\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84168/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -149979,7 +329444,7 @@ "14:30", "15:20", "WLH 119 - William L. Harkness Hall 119", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -149987,7 +329452,7 @@ "14:30", "15:20", "WLH 119 - William L. Harkness Hall 119", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -150010,10 +329475,201 @@ "classnotes": "", "final_exam": "Wednesday, May 10, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84173\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84173/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988657236099243, + 0.9987714886665344, + 0.9987050294876099, + 0.9987767338752747, + 0.998746395111084, + 0.9988929629325867, + 0.9988583326339722, + 0.9988859295845032, + 0.9909685254096985, + 0.9987126588821411, + 0.9989064931869507, + 0.9986780285835266, + 0.9988173842430115, + 0.9987862706184387, + 0.998802900314331, + 0.993648111820221, + 0.9943141341209412, + 0.9987887740135193 + ], + "sentiment_counts": { + "POSITIVE": 17, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9444444444444444, + "NEGATIVE": 0.05555555555555555 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9444444444444444 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989225268363953, + 0.9987208247184753, + 0.9989387392997742, + 0.9988711476325989, + 0.9988577365875244, + 0.9988787770271301, + 0.7742772698402405, + 0.9989176988601685, + 0.9989271759986877, + 0.9989311099052429, + 0.9988985061645508, + 0.9987516403198242, + 0.9989296793937683, + 0.9985353946685791, + 0.9994888305664062, + 0.9988447427749634, + 0.9978389143943787, + 0.9971953630447388, + 0.992473840713501, + 0.9882069230079651 + ], + "sentiment_counts": { + "POSITIVE": 15, + "NEGATIVE": 5 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989293217658997, + 0.9988279938697815, + 0.9988755583763123, + 0.9989338517189026, + 0.9989094734191895, + 0.9982553124427795, + 0.9983872175216675, + 0.9985353946685791, + 0.9988577365875244, + 0.9989263415336609, + 0.9989351630210876, + 0.9989362359046936, + 0.9988945126533508, + 0.9989036321640015, + 0.998928964138031, + 0.9981922507286072, + 0.9988441467285156, + 0.9988771080970764, + 0.9987097978591919, + 0.9988504648208618, + 0.9988507032394409, + 0.9995096921920776, + 0.9988632202148438, + 0.9994314312934875 + ], + "sentiment_counts": { + "POSITIVE": 22, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9166666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 54, + "final_proportion": 0.8709677419354839, + "final_counts": { + "POSITIVE": 54, + "NEGATIVE": 8 + }, + "final_distribution": { + "POSITIVE": 0.8709677419354839, + "NEGATIVE": 0.12903225806451613 + } + } }, { "season_code": "202301", @@ -150044,7 +329700,7 @@ "16:00", "16:50", "HQ C15 - Humanities Quadrangle C15", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -150061,7 +329717,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -150092,7 +329776,7 @@ "11:35", "12:25", "HQ C01 - Humanities Quadrangle C01", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -150109,7 +329793,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -150140,7 +329852,7 @@ "15:30", "16:20", "HQ C01 - Humanities Quadrangle C01", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -150157,7 +329869,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -150188,7 +329928,7 @@ "10:30", "11:20", "LORIA 360 - Loria Center 360", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -150205,7 +329945,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -150243,7 +330011,7 @@ "9:25", "11:15", "HQ 309 - Humanities Quadrangle 309", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -150264,10 +330032,101 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84176\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84176/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998872697353363, + 0.9989053010940552, + 0.9987013339996338 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987402558326721, + 0.9989033937454224, + 0.9930926561355591, + 0.9989270567893982, + 0.9982925057411194 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989173412322998, + 0.9989228844642639, + 0.9984827637672424, + 0.9989172220230103, + 0.9987867474555969 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 13 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -150304,7 +330163,7 @@ "13:30", "15:20", "HQ 229 - Humanities Quadrangle 229", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -150327,10 +330186,121 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84180\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84180/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988316893577576, + 0.9989237189292908, + 0.998676598072052, + 0.9988617897033691, + 0.9987677335739136, + 0.9987635612487793, + 0.9987505674362183 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984925985336304, + 0.9988815188407898, + 0.9988465309143066, + 0.996441662311554, + 0.8460829854011536, + 0.998897910118103, + 0.998904824256897, + 0.998649537563324 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988872408866882, + 0.9988767504692078, + 0.997117280960083, + 0.9989080429077148, + 0.9988512992858887, + 0.9988314509391785, + 0.9988021850585938, + 0.9989162683486938 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 23, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 23 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -150367,7 +330337,7 @@ "9:25", "11:15", "HQ 113 - Humanities Quadrangle 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -150391,10 +330361,107 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85180\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85180/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998829185962677, + 0.9988781809806824, + 0.9988923668861389, + 0.9988855719566345, + 0.9987562894821167 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989244341850281, + 0.9987209439277649, + 0.998782217502594, + 0.9988505840301514, + 0.9923406839370728 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.998887836933136, + 0.9988837838172913, + 0.9988459348678589, + 0.9989051818847656, + 0.984526515007019 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 0.9333333333333333, + "final_counts": { + "POSITIVE": 14, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9333333333333333, + "NEGATIVE": 0.06666666666666667 + } + } }, { "season_code": "202301", @@ -150427,7 +330494,7 @@ "16:00", "16:50", "HQ 123 - Humanities Quadrangle 123", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -150446,7 +330513,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -150479,7 +330574,7 @@ "15:30", "16:20", "HQ 401 - Humanities Quadrangle 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -150498,7 +330593,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -150537,7 +330660,7 @@ "14:30", "15:20", "HQ 133 - Humanities Quadrangle 133", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -150545,7 +330668,7 @@ "14:30", "15:20", "HQ 133 - Humanities Quadrangle 133", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -150566,10 +330689,111 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84184\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84184/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988340735435486, + 0.9988924860954285, + 0.9988946318626404, + 0.9986358284950256, + 0.9988049268722534, + 0.998917818069458 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985674619674683, + 0.9988283514976501, + 0.9988425970077515, + 0.9995055198669434, + 0.6169186234474182, + 0.9980123043060303 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9953234791755676, + 0.998761773109436, + 0.9988918900489807, + 0.998449444770813, + 0.9988927245140076 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 0.8823529411764706, + "final_counts": { + "POSITIVE": 15, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8823529411764706, + "NEGATIVE": 0.11764705882352941 + } + } }, { "season_code": "202301", @@ -150620,7 +330844,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -150663,7 +330915,7 @@ "13:30", "15:20", "HQ C07 - Humanities Quadrangle C07", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -150686,10 +330938,38 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84194\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84194/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -150733,7 +331013,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -150774,7 +331082,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -150812,7 +331148,7 @@ "11:35", "12:25", "HQ 207 - Humanities Quadrangle 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -150820,7 +331156,7 @@ "11:35", "12:25", "HQ 207 - Humanities Quadrangle 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -150837,10 +331173,119 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84297\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84297/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989050626754761, + 0.9988806843757629, + 0.9987437129020691, + 0.9985950589179993, + 0.9987475872039795, + 0.998839795589447, + 0.9988413453102112 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988322854042053, + 0.9949876070022583, + 0.9988723397254944, + 0.9993842840194702, + 0.9987940788269043, + 0.9988628625869751, + 0.9988962411880493 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985511898994446, + 0.9989118576049805, + 0.9965938925743103, + 0.9989249110221863, + 0.9988055229187012, + 0.9989386200904846, + 0.9985373020172119 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 0.9523809523809523, + "final_counts": { + "POSITIVE": 20, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9523809523809523, + "NEGATIVE": 0.047619047619047616 + } + } }, { "season_code": "202301", @@ -150872,7 +331317,7 @@ "10:30", "11:20", "YK220 001 - 220 York Street 001", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ] }, @@ -150889,7 +331334,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -150921,7 +331394,7 @@ "16:00", "16:50", "HQ 133 - Humanities Quadrangle 133", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -150938,7 +331411,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -150976,7 +331477,7 @@ "13:30", "15:20", "HQ C65 - Humanities Quadrangle C65", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -150990,10 +331491,93 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84487\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84487/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988240599632263, + 0.9988573789596558, + 0.9988905787467957 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989227652549744, + 0.9988529682159424, + 0.9989033937454224 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988523721694946, + 0.9988453388214111, + 0.9988436698913574 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 9 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -151033,7 +331617,7 @@ "9:25", "11:15", "LUCE 202 - Luce Hall 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ] }, @@ -151049,10 +331633,103 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84495\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84495/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989238381385803, + 0.9988835453987122, + 0.9988100528717041, + 0.9986996650695801, + 0.9987648725509644 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986563920974731, + 0.9988893866539001, + 0.9988890290260315, + 0.9989286065101624 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989092350006104, + 0.9988270401954651, + 0.9988270401954651, + 0.9988808035850525, + 0.9938933253288269 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 14 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -151090,7 +331767,7 @@ "10:30", "11:20", "HQ L02 - Humanities Quadrangle L02", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -151098,7 +331775,7 @@ "10:30", "11:20", "HQ L02 - Humanities Quadrangle L02", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -151123,10 +331800,357 @@ "classnotes": "", "final_exam": "Wednesday, May 10, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84116\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84116/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988895058631897, + 0.9988062381744385, + 0.9988294243812561, + 0.9985639452934265, + 0.9987727999687195, + 0.9988225102424622, + 0.9988085031509399, + 0.9988025426864624, + 0.9988672733306885, + 0.9988529682159424, + 0.9985485672950745, + 0.9978627562522888, + 0.9989010095596313, + 0.9989032745361328, + 0.998783528804779, + 0.9988710284233093, + 0.9988504648208618, + 0.9988487958908081, + 0.9988493919372559, + 0.9988491535186768, + 0.9988711476325989, + 0.9988312125205994, + 0.998407781124115, + 0.9988794922828674, + 0.9988846182823181, + 0.9983068704605103, + 0.9988192915916443, + 0.9988852143287659, + 0.9986194372177124, + 0.9988918900489807, + 0.9989001750946045, + 0.998791515827179, + 0.9987335801124573, + 0.9984404444694519, + 0.998812198638916, + 0.9988512992858887, + 0.9974391460418701, + 0.9988653659820557, + 0.9989063739776611, + 0.9989016056060791, + 0.9989141225814819, + 0.9980952143669128, + 0.99883633852005, + 0.9988341927528381 + ], + "sentiment_counts": { + "POSITIVE": 44, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989122152328491, + 0.9986916184425354, + 0.9989068508148193, + 0.9987642765045166, + 0.998928964138031, + 0.9985886216163635, + 0.9983034133911133, + 0.998791515827179, + 0.9995051622390747, + 0.9985184073448181, + 0.9988879561424255, + 0.9975737929344177, + 0.9989120960235596, + 0.9988964796066284, + 0.9989006519317627, + 0.9989270567893982, + 0.998908281326294, + 0.9988952279090881, + 0.9989073276519775, + 0.9988262057304382, + 0.9988692402839661, + 0.9988677501678467, + 0.9989287257194519, + 0.9949931502342224, + 0.9989224672317505, + 0.9990686774253845, + 0.9989020824432373, + 0.9989109039306641, + 0.9981839060783386, + 0.9988471269607544, + 0.9988296627998352, + 0.9988512992858887, + 0.9988954067230225, + 0.9989110231399536, + 0.9987564086914062, + 0.992164134979248, + 0.9926303625106812, + 0.9984294772148132, + 0.9989209175109863, + 0.9987879395484924, + 0.9988999366760254, + 0.9987263083457947, + 0.9989008903503418, + 0.9987389445304871, + 0.9988693594932556, + 0.9989094734191895, + 0.9988528490066528 + ], + "sentiment_counts": { + "POSITIVE": 40, + "NEGATIVE": 7 + }, + "sentiment_distribution": { + "POSITIVE": 0.851063829787234, + "NEGATIVE": 0.14893617021276595 + }, + "sentiment_overall": [ + "POSITIVE", + 0.851063829787234 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988914132118225, + 0.9987176656723022, + 0.9985799789428711, + 0.9957824945449829, + 0.9987953901290894, + 0.9988031387329102, + 0.9989132881164551, + 0.9989306330680847, + 0.9982553124427795, + 0.9989092350006104, + 0.9985374212265015, + 0.9974592328071594, + 0.9988678693771362, + 0.9988916516304016, + 0.9987803101539612, + 0.998855710029602, + 0.9980736970901489, + 0.9989318251609802, + 0.9989162683486938, + 0.9989134073257446, + 0.9988868832588196, + 0.9988861680030823, + 0.9989275336265564, + 0.9989020824432373, + 0.9982744455337524, + 0.9989340901374817, + 0.9989030361175537, + 0.9982553124427795, + 0.9989266991615295, + 0.9988915324211121, + 0.9989244341850281, + 0.9982798099517822, + 0.9989314675331116, + 0.9988388419151306, + 0.9989374279975891, + 0.9980168342590332, + 0.9980168342590332, + 0.9986971020698547, + 0.9988705515861511, + 0.9987724423408508, + 0.9989141225814819, + 0.9974592328071594, + 0.9989137649536133, + 0.9988648891448975, + 0.9988433122634888, + 0.9988923668861389, + 0.9987640380859375, + 0.9983683228492737, + 0.9988872408866882 + ], + "sentiment_counts": { + "POSITIVE": 48, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9795918367346939, + "NEGATIVE": 0.02040816326530612 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9795918367346939 + ] + }, + "final_label": "POSITIVE", + "final_count": 132, + "final_proportion": 0.9428571428571428, + "final_counts": { + "POSITIVE": 132, + "NEGATIVE": 8 + }, + "final_distribution": { + "POSITIVE": 0.9428571428571428, + "NEGATIVE": 0.05714285714285714 + } + } }, { "season_code": "202301", @@ -151158,7 +332182,7 @@ "16:00", "16:50", "WTS A46 - Watson Center 60 Sachem Street A46", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -151175,7 +332199,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -151207,7 +332259,7 @@ "17:00", "17:50", "WTS A68 - Watson Center 60 Sachem Street A68", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -151224,7 +332276,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -151256,7 +332336,7 @@ "19:00", "19:50", "WTS A68 - Watson Center 60 Sachem Street A68", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -151273,7 +332353,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -151305,7 +332413,7 @@ "20:00", "20:50", "WTS A68 - Watson Center 60 Sachem Street A68", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -151322,7 +332430,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -151354,7 +332490,7 @@ "13:30", "14:20", "WTS B52 - Watson Center 60 Sachem Street B52", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -151371,7 +332507,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -151403,7 +332567,7 @@ "11:35", "12:25", "WTS A35 - Watson Center 60 Sachem Street A35", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -151420,7 +332584,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -151452,7 +332644,7 @@ "10:30", "11:20", "WTS A35 - Watson Center 60 Sachem Street A35", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -151469,7 +332661,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -151501,7 +332721,7 @@ "16:00", "16:50", "WTS A48 - Watson Center 60 Sachem Street A48", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -151518,7 +332738,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -151556,7 +332804,7 @@ "9:25", "11:15", "HQ C11 - Humanities Quadrangle C11", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -151579,10 +332827,115 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85171\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85171/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988659620285034, + 0.9986296892166138, + 0.9988407492637634, + 0.9988816380500793, + 0.9988504648208618, + 0.9988693594932556 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998925507068634, + 0.9988853335380554, + 0.9988773465156555, + 0.9988892674446106, + 0.9989306330680847, + 0.9988753199577332 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989075660705566, + 0.997117280960083, + 0.9988526105880737, + 0.9989179372787476, + 0.9989294409751892, + 0.9987922310829163, + 0.9988799691200256, + 0.9989280104637146 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 20 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -151621,7 +332974,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -151659,7 +333040,7 @@ "15:30", "17:20", "HQ C64 - Humanities Quadrangle C64", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -151678,10 +333059,38 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84128\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84128/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -151725,7 +333134,7 @@ "10:30", "11:20", "WLH 113 - William L. Harkness Hall 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -151733,7 +333142,7 @@ "10:30", "11:20", "WLH 113 - William L. Harkness Hall 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -151747,10 +333156,155 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84819\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84819/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998536229133606, + 0.998810887336731, + 0.9985824823379517, + 0.9988592863082886, + 0.9959073066711426, + 0.99871826171875, + 0.9989239573478699, + 0.9989050626754761, + 0.9988049268722534, + 0.9962486624717712, + 0.9900902509689331, + 0.9985747337341309, + 0.9988892674446106, + 0.9986215829849243 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9285714285714286, + "NEGATIVE": 0.07142857142857142 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9285714285714286 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988436698913574, + 0.9989302754402161, + 0.9989068508148193, + 0.9980466365814209, + 0.9963915944099426, + 0.9974145889282227, + 0.9988678693771362, + 0.9989114999771118, + 0.999232292175293, + 0.9986825585365295, + 0.9987850785255432, + 0.9988842606544495, + 0.9989342093467712 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9230769230769231, + "NEGATIVE": 0.07692307692307693 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9230769230769231 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986013770103455, + 0.9988812804222107, + 0.9988468885421753, + 0.9989006519317627, + 0.9988101720809937, + 0.9989246726036072, + 0.9987888932228088, + 0.9985087513923645, + 0.9982649683952332, + 0.9905369877815247, + 0.9989036321640015, + 0.9989244341850281 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9166666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 36, + "final_proportion": 0.9230769230769231, + "final_counts": { + "POSITIVE": 36, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.9230769230769231, + "NEGATIVE": 0.07692307692307693 + } + } }, { "season_code": "202301", @@ -151785,7 +333339,7 @@ "17:00", "17:50", "HQ C07 - Humanities Quadrangle C07", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -151802,7 +333356,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -151837,7 +333419,7 @@ "10:30", "11:20", "HQ C07 - Humanities Quadrangle C07", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -151854,7 +333436,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -151893,7 +333503,7 @@ "14:30", "15:20", "WLH 201 - William L. Harkness Hall 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -151901,7 +333511,7 @@ "14:30", "15:20", "WLH 201 - William L. Harkness Hall 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -151924,10 +333534,353 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84131\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84131/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988821148872375, + 0.9988042116165161, + 0.9985100626945496, + 0.9987772107124329, + 0.9985538125038147, + 0.9988449811935425, + 0.9988535642623901, + 0.998914361000061, + 0.9988906979560852, + 0.9987525939941406, + 0.998920202255249, + 0.9986106157302856, + 0.9986710548400879, + 0.9989033937454224, + 0.9988641738891602, + 0.9987832903862, + 0.9988817572593689, + 0.9987995624542236, + 0.9989302754402161, + 0.9988273978233337, + 0.9987772107124329, + 0.9989225268363953, + 0.9982748031616211, + 0.9986695051193237, + 0.9986887574195862, + 0.9989207983016968, + 0.9979619979858398, + 0.9988006353378296, + 0.9948878884315491, + 0.9986237287521362, + 0.9985758066177368, + 0.9988853335380554, + 0.9989272952079773, + 0.9988340735435486, + 0.998928964138031, + 0.9986149072647095, + 0.9987910389900208, + 0.9987691044807434, + 0.998675525188446, + 0.998889148235321, + 0.9989140033721924, + 0.9985870122909546, + 0.9989171028137207, + 0.9912418127059937 + ], + "sentiment_counts": { + "POSITIVE": 44, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9986746311187744, + 0.9983491897583008, + 0.9976388216018677, + 0.9988123178482056, + 0.9988798499107361, + 0.9982489347457886, + 0.998677670955658, + 0.9989209175109863, + 0.9971734285354614, + 0.9988725781440735, + 0.9988899827003479, + 0.9983364939689636, + 0.9988560676574707, + 0.9988095760345459, + 0.9988422989845276, + 0.9988686442375183, + 0.9918957352638245, + 0.998039186000824, + 0.9988069534301758, + 0.9985533356666565, + 0.9988621473312378, + 0.9989292025566101, + 0.9989054203033447, + 0.9988310933113098, + 0.9982636570930481, + 0.9973795413970947, + 0.9984666109085083, + 0.9921112060546875, + 0.9984812140464783, + 0.9984152317047119, + 0.9987910389900208, + 0.9988184571266174, + 0.9983879327774048, + 0.9987698197364807, + 0.9950554370880127, + 0.9989379048347473, + 0.9987527132034302, + 0.998809814453125, + 0.9980660080909729, + 0.9982581734657288, + 0.998770534992218, + 0.995491087436676, + 0.9950394034385681, + 0.9994792342185974 + ], + "sentiment_counts": { + "POSITIVE": 40, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9090909090909091 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988759160041809, + 0.9988805651664734, + 0.9957616925239563, + 0.9988521337509155, + 0.9988981485366821, + 0.9986335635185242, + 0.9988784193992615, + 0.9989012479782104, + 0.998579740524292, + 0.998849630355835, + 0.9988645315170288, + 0.9989318251609802, + 0.9988646507263184, + 0.9989019632339478, + 0.9987772107124329, + 0.9984422326087952, + 0.9988294243812561, + 0.9988640546798706, + 0.996837854385376, + 0.9989098310470581, + 0.997117280960083, + 0.998920202255249, + 0.998837411403656, + 0.9988502264022827, + 0.9988784193992615, + 0.9988237023353577, + 0.9987549781799316, + 0.9988892674446106, + 0.998897910118103, + 0.998737633228302, + 0.9989272952079773, + 0.9989069700241089, + 0.997117280960083, + 0.9989228844642639, + 0.9978317618370056, + 0.9987198114395142, + 0.9980168342590332, + 0.9987407326698303, + 0.9989079236984253, + 0.9988685846328735, + 0.9941771030426025, + 0.9989144802093506, + 0.998900294303894, + 0.9985544085502625, + 0.9988909363746643, + 0.9989157915115356, + 0.9988598823547363, + 0.9913177490234375, + 0.9988487958908081, + 0.998727023601532 + ], + "sentiment_counts": { + "POSITIVE": 50, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 134, + "final_proportion": 0.9710144927536232, + "final_counts": { + "POSITIVE": 134, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.9710144927536232, + "NEGATIVE": 0.028985507246376812 + } + } }, { "season_code": "202301", @@ -151960,7 +333913,7 @@ "15:30", "16:20", "WLH 001 - William L. Harkness Hall 001", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -151977,7 +333930,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -152010,7 +333991,7 @@ "15:30", "16:20", "WALL81 401 - 81 Wall Street 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -152027,7 +334008,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -152060,7 +334069,7 @@ "10:30", "11:20", "HQ C64 - Humanities Quadrangle C64", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -152077,7 +334086,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -152110,7 +334147,7 @@ "11:35", "12:25", "HQ 401 - Humanities Quadrangle 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -152127,7 +334164,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -152160,7 +334225,7 @@ "20:00", "20:50", "HQ C07 - Humanities Quadrangle C07", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -152177,7 +334242,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -152210,7 +334303,7 @@ "16:30", "17:20", "HQ 213 - Humanities Quadrangle 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -152227,7 +334320,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -152265,7 +334386,7 @@ "9:25", "11:15", "HQ C03 - Humanities Quadrangle C03", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -152287,10 +334408,127 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84135\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84135/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988664388656616, + 0.9988588094711304, + 0.9987695813179016, + 0.9988945126533508, + 0.9988137483596802, + 0.9989111423492432, + 0.9988365769386292, + 0.998770534992218 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988150596618652, + 0.9903063774108887, + 0.9989277720451355, + 0.9986897110939026, + 0.9991602897644043, + 0.9988958835601807, + 0.9987414479255676, + 0.9988999366760254 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.99882572889328, + 0.9988434314727783, + 0.9989264607429504, + 0.9988773465156555, + 0.9966872334480286, + 0.9983691573143005, + 0.9989388585090637, + 0.9994727969169617, + 0.9988588094711304 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "final_label": "POSITIVE", + "final_count": 22, + "final_proportion": 0.88, + "final_counts": { + "POSITIVE": 22, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.88, + "NEGATIVE": 0.12 + } + } }, { "season_code": "202301", @@ -152328,7 +334566,7 @@ "14:30", "15:20", "WLH 116 - William L. Harkness Hall 116", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -152336,7 +334574,7 @@ "14:30", "15:20", "WLH 116 - William L. Harkness Hall 116", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -152352,10 +334590,143 @@ "classnotes": "", "final_exam": "Wednesday, May 10, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84781\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84781/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989004135131836, + 0.9988998174667358, + 0.9988511800765991, + 0.9987518787384033, + 0.9989045858383179, + 0.9987347722053528, + 0.9985275268554688, + 0.9988605976104736, + 0.9988945126533508, + 0.9987760186195374, + 0.9987919926643372 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988904595375061, + 0.9989282488822937, + 0.9989181756973267, + 0.998607337474823, + 0.998833954334259, + 0.995821475982666, + 0.9989325404167175, + 0.998908519744873, + 0.9987301230430603, + 0.9994900226593018, + 0.9988791346549988 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9090909090909091 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989081621170044, + 0.9989123344421387, + 0.9989293217658997, + 0.9988767504692078, + 0.99741530418396, + 0.9989008903503418, + 0.998925507068634, + 0.9986608028411865, + 0.9987756609916687, + 0.9978930354118347, + 0.9732471704483032 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9090909090909091 + ] + }, + "final_label": "POSITIVE", + "final_count": 31, + "final_proportion": 0.9393939393939394, + "final_counts": { + "POSITIVE": 31, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9393939393939394, + "NEGATIVE": 0.06060606060606061 + } + } }, { "season_code": "202301", @@ -152387,7 +334758,7 @@ "15:30", "16:20", "WLH 204 - William L. Harkness Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -152404,7 +334775,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -152436,7 +334835,7 @@ "10:30", "11:20", "HQ C01 - Humanities Quadrangle C01", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -152453,7 +334852,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -152493,7 +334920,7 @@ "13:30", "15:20", "HQ C11 - Humanities Quadrangle C11", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -152520,10 +334947,109 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84305\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84305/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988833069801331, + 0.9989172220230103, + 0.99886155128479, + 0.9988523721694946 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989222288131714, + 0.9984582662582397, + 0.9989299178123474, + 0.9995007514953613, + 0.9988815188407898, + 0.998892605304718, + 0.9988194108009338 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.7142857142857143, + "NEGATIVE": 0.2857142857142857 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7142857142857143 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989200830459595, + 0.9995023012161255, + 0.9989251494407654, + 0.9989091157913208, + 0.9988189339637756 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 0.8125, + "final_counts": { + "POSITIVE": 13, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.8125, + "NEGATIVE": 0.1875 + } + } }, { "season_code": "202301", @@ -152561,7 +335087,7 @@ "11:35", "12:25", "HQ 132 - Humanities Quadrangle 132", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -152569,7 +335095,7 @@ "11:35", "12:25", "HQ 132 - Humanities Quadrangle 132", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -152593,10 +335119,127 @@ "classnotes": "", "final_exam": "Saturday, May 6, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84139\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84139/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998819887638092, + 0.9902189373970032, + 0.9987629652023315, + 0.9988877177238464, + 0.9989012479782104, + 0.998920202255249, + 0.9987710118293762, + 0.998788058757782 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988393187522888, + 0.9989110231399536, + 0.9922208189964294, + 0.998894989490509, + 0.9988123178482056, + 0.9989198446273804, + 0.9988510608673096, + 0.9988394379615784, + 0.9965879917144775 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.7777777777777778, + "NEGATIVE": 0.2222222222222222 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7777777777777778 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998696506023407, + 0.998684823513031, + 0.9989104270935059, + 0.9989210367202759, + 0.9989101886749268, + 0.998932421207428, + 0.9938870072364807, + 0.9988594055175781 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 23, + "final_proportion": 0.92, + "final_counts": { + "POSITIVE": 23, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.92, + "NEGATIVE": 0.08 + } + } }, { "season_code": "202301", @@ -152628,7 +335271,7 @@ "19:00", "19:50", "HQ C07 - Humanities Quadrangle C07", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -152645,7 +335288,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -152677,7 +335348,7 @@ "16:00", "16:50", "HQ C07 - Humanities Quadrangle C07", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -152694,7 +335365,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -152737,7 +335436,7 @@ "9:25", "11:15", "HQ 401 - Humanities Quadrangle 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -152757,10 +335456,121 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84206\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84206/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.994451105594635, + 0.99888676404953, + 0.9988627433776855, + 0.9989333748817444, + 0.9987595081329346, + 0.9988391995429993 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.998842716217041, + 0.9989129304885864, + 0.9989238381385803, + 0.9962312579154968, + 0.9969401359558105, + 0.9986774325370789, + 0.9989373087882996, + 0.9936462640762329 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985981583595276, + 0.9980226755142212, + 0.9988202452659607, + 0.9988977909088135, + 0.9971134662628174, + 0.9987371563911438, + 0.9989243149757385, + 0.9989074468612671 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 0.9090909090909091, + "final_counts": { + "POSITIVE": 20, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + } + } }, { "season_code": "202301", @@ -152799,7 +335609,7 @@ "9:25", "11:15", "WLH 006 - William L. Harkness Hall 006", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -152821,10 +335631,131 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85296\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85296/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988999366760254, + 0.9989321827888489, + 0.9988307356834412, + 0.998918890953064, + 0.9988825917243958, + 0.9987898468971252, + 0.9988561868667603, + 0.9988757967948914, + 0.9986746311187744 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989103078842163, + 0.9989330172538757, + 0.9987560510635376, + 0.9989126920700073, + 0.9989287257194519, + 0.9988481998443604, + 0.9994658827781677, + 0.9989271759986877, + 0.9989063739776611 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989389777183533, + 0.9988960027694702, + 0.9987475872039795, + 0.998925507068634, + 0.9989000558853149, + 0.9969366788864136, + 0.9987292885780334, + 0.998910665512085, + 0.9982553124427795 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 26, + "final_proportion": 0.9629629629629629, + "final_counts": { + "POSITIVE": 26, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9629629629629629, + "NEGATIVE": 0.037037037037037035 + } + } }, { "season_code": "202301", @@ -152862,7 +335793,7 @@ "13:30", "15:20", "WLH 003 - William L. Harkness Hall 003", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -152883,10 +335814,113 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84142\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84142/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9952391386032104, + 0.9989199638366699, + 0.9988969564437866, + 0.9989163875579834, + 0.9989175796508789 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988939166069031, + 0.9989194869995117, + 0.9988436698913574, + 0.9989350438117981, + 0.9989251494407654, + 0.9988800883293152, + 0.9989233613014221 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989355206489563, + 0.9988786578178406, + 0.998928964138031, + 0.9989389777183533, + 0.9989385008811951, + 0.9988604784011841, + 0.998915433883667 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 19 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -152924,7 +335958,7 @@ "11:35", "12:50", "WLH 208 - William L. Harkness Hall 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -152932,7 +335966,7 @@ "11:35", "12:50", "WLH 208 - William L. Harkness Hall 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -152953,10 +335987,193 @@ "classnotes": "", "final_exam": "Monday, May 8, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84146\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84146/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986863732337952, + 0.998016357421875, + 0.9989026784896851, + 0.9988932013511658, + 0.9988516569137573, + 0.9989199638366699, + 0.9989173412322998, + 0.9987525939941406, + 0.9987741112709045, + 0.9983794689178467, + 0.998877227306366, + 0.9989063739776611, + 0.9989093542098999, + 0.9984622001647949, + 0.9970171451568604, + 0.9988952279090881, + 0.9988683462142944, + 0.998796820640564, + 0.9986860156059265 + ], + "sentiment_counts": { + "POSITIVE": 18, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9473684210526315, + "NEGATIVE": 0.05263157894736842 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9473684210526315 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988946318626404, + 0.9988724589347839, + 0.998908519744873, + 0.9988831877708435, + 0.9988834261894226, + 0.9988779425621033, + 0.9957242012023926, + 0.9938845038414001, + 0.9980383515357971, + 0.998913049697876, + 0.9967135190963745, + 0.9989051818847656, + 0.9994346499443054, + 0.9988834261894226, + 0.998855710029602, + 0.9989250302314758, + 0.997509241104126, + 0.9989290833473206 + ], + "sentiment_counts": { + "POSITIVE": 15, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988589286804199, + 0.9989144802093506, + 0.9988829493522644, + 0.9988014698028564, + 0.997117280960083, + 0.9988813996315002, + 0.9744277596473694, + 0.9989216327667236, + 0.9988824725151062, + 0.9988774657249451, + 0.9989282488822937, + 0.9988958835601807, + 0.9989161491394043, + 0.9989258646965027, + 0.9989182949066162, + 0.9989330172538757, + 0.9982553124427795, + 0.9989238381385803, + 0.9988937973976135, + 0.9989332556724548, + 0.998916506767273 + ], + "sentiment_counts": { + "POSITIVE": 21, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 54, + "final_proportion": 0.9310344827586207, + "final_counts": { + "POSITIVE": 54, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.9310344827586207, + "NEGATIVE": 0.06896551724137931 + } + } }, { "season_code": "202301", @@ -152988,7 +336205,7 @@ "13:30", "14:20", "WLH 009 - William L. Harkness Hall 009", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -153005,7 +336222,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -153037,7 +336282,7 @@ "11:35", "12:25", "HQ 127 - Humanities Quadrangle 127", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -153054,7 +336299,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -153086,7 +336359,7 @@ "19:00", "19:50", "WLH 013 - William L. Harkness Hall 013", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -153103,7 +336376,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -153135,7 +336436,7 @@ "17:00", "17:50", "WTS B39 - Watson Center 60 Sachem Street B39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -153152,7 +336453,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -153190,7 +336519,7 @@ "15:30", "17:20", "WLH 202 - William L. Harkness Hall 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -153207,10 +336536,125 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84376\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84376/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987840056419373, + 0.9987983703613281, + 0.9986916184425354, + 0.9989252686500549, + 0.9988539218902588, + 0.9986775517463684, + 0.9988804459571838, + 0.998931348323822 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986259937286377, + 0.998900294303894, + 0.9989151954650879, + 0.9989243149757385, + 0.9989277720451355, + 0.998913049697876, + 0.9989144802093506 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988552331924438, + 0.9989305138587952, + 0.9989181756973267, + 0.998938262462616, + 0.9988704323768616, + 0.9988358616828918, + 0.998930037021637, + 0.9989026784896851, + 0.9989261031150818, + 0.9985365867614746 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 25, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 25 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -153250,7 +336694,7 @@ "9:25", "11:15", "HQ C01 - Humanities Quadrangle C01", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -153272,10 +336716,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86245\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86245/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -153321,10 +336793,38 @@ "classnotes": "This course is only open to students participating in the Yale in London program.", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86672\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/86672/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -153361,7 +336861,7 @@ "13:30", "15:20", "WLH 004 - William L. Harkness Hall 004", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -153385,10 +336885,38 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86246\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/86246/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -153429,7 +336957,7 @@ "13:30", "15:20", "RKZ 08 - Rosenkranz Hall 08", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -153450,10 +336978,103 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84148\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84148/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988284707069397, + 0.9983834028244019, + 0.9988755583763123, + 0.9988542795181274, + 0.9988899827003479 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998868465423584, + 0.9976916313171387, + 0.9988811612129211, + 0.998725950717926 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989032745361328, + 0.9989186525344849, + 0.9989033937454224, + 0.9989346861839294, + 0.9988142251968384 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 14 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -153490,7 +337111,7 @@ "13:30", "15:20", "WLH 007 - William L. Harkness Hall 007", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -153517,10 +337138,111 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85247\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85247/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998785674571991, + 0.9988009929656982, + 0.9987119436264038, + 0.9988977909088135, + 0.9988904595375061, + 0.9988254904747009, + 0.9989193677902222 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9987745881080627, + 0.9989129304885864, + 0.9989277720451355, + 0.9921749234199524 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988958835601807, + 0.998898983001709, + 0.9988924860954285, + 0.9989173412322998, + 0.9988521337509155, + 0.9989266991615295 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 0.9411764705882353, + "final_counts": { + "POSITIVE": 16, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9411764705882353, + "NEGATIVE": 0.058823529411764705 + } + } }, { "season_code": "202301", @@ -153559,7 +337281,7 @@ "11:35", "12:25", "LC 101 - Linsly-Chittenden Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -153567,7 +337289,7 @@ "11:35", "12:25", "LC 101 - Linsly-Chittenden Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -153590,10 +337312,235 @@ "classnotes": "", "final_exam": "Monday, May 8, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84152\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84152/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987562894821167, + 0.9988101720809937, + 0.998812198638916, + 0.9987877011299133, + 0.9989226460456848, + 0.9986705780029297, + 0.992493212223053, + 0.9987874627113342, + 0.9981644749641418, + 0.9986024498939514, + 0.9988968372344971, + 0.9988287091255188, + 0.9988141059875488, + 0.9988805651664734, + 0.9989277720451355, + 0.9989349246025085, + 0.9989283680915833, + 0.9987395405769348, + 0.998838484287262, + 0.998607337474823, + 0.9973012804985046, + 0.998441755771637, + 0.9985637068748474 + ], + "sentiment_counts": { + "POSITIVE": 23, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989344477653503, + 0.9977486729621887, + 0.9988313317298889, + 0.9903234243392944, + 0.9988895058631897, + 0.9988394379615784, + 0.9977655410766602, + 0.9989011287689209, + 0.9977489113807678, + 0.9989079236984253, + 0.967765212059021, + 0.9988524913787842, + 0.9962761402130127, + 0.9992448091506958, + 0.9988967180252075, + 0.9988719820976257, + 0.9988642930984497, + 0.9988962411880493, + 0.9988676309585571, + 0.9988985061645508, + 0.9985074400901794, + 0.998654842376709, + 0.9987982511520386, + 0.9949601888656616, + 0.9984134435653687 + ], + "sentiment_counts": { + "POSITIVE": 23, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.92, + "NEGATIVE": 0.08 + }, + "sentiment_overall": [ + "POSITIVE", + 0.92 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998842716217041, + 0.9988793730735779, + 0.9989176988601685, + 0.9987180233001709, + 0.9984157085418701, + 0.9985045194625854, + 0.9989129304885864, + 0.9987353682518005, + 0.997117280960083, + 0.9989315867424011, + 0.9987334609031677, + 0.9989283680915833, + 0.9988105297088623, + 0.9989203214645386, + 0.9988334774971008, + 0.9987239241600037, + 0.9986592531204224, + 0.9988738894462585, + 0.9994937181472778, + 0.9989111423492432, + 0.9989197254180908, + 0.9982553124427795, + 0.9987375140190125, + 0.9989107847213745, + 0.9989123344421387, + 0.9987045526504517, + 0.9988260865211487, + 0.9966247081756592, + 0.9988939166069031, + 0.9989058971405029, + 0.9988914132118225 + ], + "sentiment_counts": { + "POSITIVE": 30, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.967741935483871, + "NEGATIVE": 0.03225806451612903 + }, + "sentiment_overall": [ + "POSITIVE", + 0.967741935483871 + ] + }, + "final_label": "POSITIVE", + "final_count": 76, + "final_proportion": 0.9620253164556962, + "final_counts": { + "POSITIVE": 76, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.9620253164556962, + "NEGATIVE": 0.0379746835443038 + } + } }, { "season_code": "202301", @@ -153626,7 +337573,7 @@ "16:00", "16:50", "LC 210 - Linsly-Chittenden Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -153643,7 +337590,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -153676,7 +337651,7 @@ "17:00", "17:50", "LC 210 - Linsly-Chittenden Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -153693,7 +337668,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -153726,7 +337729,7 @@ "19:00", "19:50", "LC 213 - Linsly-Chittenden Hall 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -153743,7 +337746,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -153776,7 +337807,7 @@ "10:30", "11:20", "HQ 401 - Humanities Quadrangle 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -153793,12 +337824,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "In this course we plunge into the vibrant history of modernity and tradition in India and South Asia using healthcare as a broad case study. Scholars have shown that modernity, as a historical process and experience, was not uniform everywhere and was radically influenced by specific histories and cultures of different communities. Thus, while biomedicine began to dominate healthcare policy in the South Asian region in the nineteenth century, the diverse forms of healthcare beliefs, services, and practices which had historically defined the region\u2019s landscape also continued to thrive. How did the existing forms of traditions, especially those based on caste and religion, influence the nineteenth and twentieth century ideas and practices of modernity which emerged in the region? We also\u00a0discuss how a historical perspective can thus help us think productively about dichotomized entities commonly referred to as modern, traditional, indigenous, foreign, Western, and Eastern. We especially focus on the idea of \"pure\" traditions seen alongside the reality of exchange and \"circulation\", and learn how traditions can also be \"invented\". Apart from relevant primary sources (including images and videos), the readings for this course cover several disciplines including South Asian history, history of science\/medicine, medical anthropology, and STS.", + "description": "In this course we plunge into the vibrant history of modernity and tradition in India and South Asia using healthcare as a broad case study. Scholars have shown that modernity, as a historical process and experience, was not uniform everywhere and was radically influenced by specific histories and cultures of different communities. Thus, while biomedicine began to dominate healthcare policy in the South Asian region in the nineteenth century, the diverse forms of healthcare beliefs, services, and practices which had historically defined the region\u2019s landscape also continued to thrive. How did the existing forms of traditions, especially those based on caste and religion, influence the nineteenth and twentieth century ideas and practices of modernity which emerged in the region? We also\u00a0discuss how a historical perspective can thus help us think productively about dichotomized entities commonly referred to as modern, traditional, indigenous, foreign, Western, and Eastern. We especially focus on the idea of \"pure\" traditions seen alongside the reality of exchange and \"circulation\", and learn how traditions can also be \"invented\". Apart from relevant primary sources (including images and videos), the readings for this course cover several disciplines including South Asian history, history of science/medicine, medical anthropology, and STS.", "short_title": "Tradition, Modernity, Medicin...", "title": "Tradition, Modernity, Medicine in South Asia", "school": "YC", @@ -153832,7 +337891,7 @@ "13:30", "15:20", "WALL81 401 - 81 Wall Street 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -153851,11 +337910,152 @@ "rp_attr": "", "classnotes": "", "final_exam": "HTBA", - "course_home_url": "https:\/\/yale.instructure.com\/courses\/85863", - "syllabus_url": "", - "fysem": false, - "sysem": false, - "colsem": false + "course_home_url": "https://yale.instructure.com/courses/85863", + "syllabus_url": "", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989230036735535, + 0.9987348914146423, + 0.9988467693328857, + 0.9981142282485962, + 0.9989023208618164, + 0.9988031387329102, + 0.9987388253211975, + 0.9988933205604553, + 0.998741090297699, + 0.9985155463218689, + 0.9982210993766785, + 0.9987156391143799 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988930821418762, + 0.9989266991615295, + 0.9989331364631653, + 0.998788058757782, + 0.9987188577651978, + 0.9989352822303772, + 0.9989175796508789, + 0.9989297986030579, + 0.9989151954650879, + 0.9977465271949768, + 0.99885094165802 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988681077957153, + 0.9989049434661865, + 0.9989114999771118, + 0.9988995790481567, + 0.998913049697876, + 0.9989171028137207, + 0.9945160746574402, + 0.9989035129547119, + 0.9989045858383179, + 0.998762845993042, + 0.9987779259681702, + 0.9988565444946289, + 0.9985139966011047, + 0.9989350438117981, + 0.99886155128479 + ], + "sentiment_counts": { + "POSITIVE": 15, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 38, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 38 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -153893,7 +338093,7 @@ "9:25", "10:15", "WLH 211 - William L. Harkness Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -153901,7 +338101,7 @@ "9:25", "10:15", "WLH 211 - William L. Harkness Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -153921,10 +338121,89 @@ "classnotes": "", "final_exam": "Tuesday, May 9, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84156\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84156/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988722205162048, + 0.9988704323768616 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.998871386051178, + 0.9994980096817017 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9987930059432983, + 0.9977242350578308 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "final_label": "POSITIVE", + "final_count": 4, + "final_proportion": 0.6666666666666666, + "final_counts": { + "POSITIVE": 4, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + } + } }, { "season_code": "202301", @@ -153956,7 +338235,7 @@ "17:00", "17:50", "WTS A42 - Watson Center 60 Sachem Street A42", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -153973,7 +338252,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -154005,7 +338312,7 @@ "19:00", "19:50", "WLH 009 - William L. Harkness Hall 009", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -154022,7 +338329,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -154066,7 +338401,7 @@ "11:35", "12:50", "HQ 307 - Humanities Quadrangle 307", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -154074,7 +338409,7 @@ "11:35", "12:50", "HQ 307 - Humanities Quadrangle 307", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -154101,15 +338436,178 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84160\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "", - "description": "The peculiar nature of Portugal as a colonial power produced a very distinct history in the five Portuguese-speaking African countries, namely Angola, Guin\u00e9-Bissau (Guinea-Bissau), Mo\u00e7ambique (Mozambique), and the Atlantic islands of Cabo-Verde (Cape Verde) and S\u00e3o Tom\u00e9 e Pr\u00edncipe. Lusophone Africa is a lose term that refers to the world created by Portugal\u2019s colonialism in Africa. This course explores this distinct history through the lens of culture and politics. Focusing on the long twentieth-century, we consider Lusophone Africa as a study unit, dissecting its disparate societies, cultures, and political trajectories, while remaining anchored in the general context of Africa. Military conquest, colonial rule, race\/lusotropicalism, nationalism, and liberation struggle are some of the core themes of the course. We begin with a brief assessment of Portugal\u2019s efforts to retain its colonial enclaves amid the voracious expansion of British, French, Belgian, and German presence in Africa in the late 19th century. But our focus is on the twentieth-century, from the establishment of the colonial administration in the early 1900s to the fall of the Portuguese empire in 1974. We dedicate a good portion of the term to exploring the multiple ways (cultural and political) in which Africans responded to Portugal\u2019s encroachment and how they navigated the color bar that came to dictate their social mobility under colonial rule. We end with the multifaceted longings for self-determination that led to the longest and bloodiest liberation wars in Africa. Our readings include scholarly essays (old and recent), primary sources, literary works (novels, poetry and short stories), photographs, music and films. We become acquainted with Portuguese-speaking African voices, faces, and places. Lu\u00eds Bernardo Honwana\u2019s collection of short stories in We Killed Mangy Dog and Other Stories (1964) and Zez\u00e9 Gamboa\u2019s film The Great Kilapy (2012) carry us through the important theme of race and race relations. While cautious in situating the discussion of race in its historical context, these and other materials challenge us to think about race relations and emancipation in our time.", + "syllabus_url": "https://yale.instructure.com/courses/84160/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984762072563171, + 0.9965823292732239, + 0.9987420439720154, + 0.998738706111908, + 0.9988890290260315, + 0.9987844824790955, + 0.9989080429077148, + 0.9968896508216858, + 0.99891197681427, + 0.9962582588195801, + 0.9987926483154297, + 0.9988880753517151, + 0.9988172650337219, + 0.9989134073257446 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9285714285714286, + "NEGATIVE": 0.07142857142857142 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9285714285714286 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994984865188599, + 0.9981104135513306, + 0.9988154172897339, + 0.9942962527275085, + 0.9994580149650574, + 0.9982935786247253, + 0.9988263249397278, + 0.9989131689071655, + 0.9988403916358948, + 0.9987169504165649, + 0.9989199638366699, + 0.9962582588195801, + 0.9988699555397034, + 0.9973528385162354, + 0.9985707998275757, + 0.99857497215271, + 0.979805052280426, + 0.9986971020698547 + ], + "sentiment_counts": { + "NEGATIVE": 4, + "POSITIVE": 14 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2222222222222222, + "POSITIVE": 0.7777777777777778 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7777777777777778 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988037347793579, + 0.9988871216773987, + 0.9984511137008667, + 0.9986259937286377, + 0.987037181854248, + 0.9987447261810303, + 0.998930037021637, + 0.9989023208618164, + 0.9988842606544495, + 0.9878063797950745, + 0.9989326596260071, + 0.9962582588195801, + 0.9988477230072021, + 0.9910148978233337, + 0.9989182949066162, + 0.9986000657081604 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.8125, + "NEGATIVE": 0.1875 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8125 + ] + }, + "final_label": "POSITIVE", + "final_count": 40, + "final_proportion": 0.8333333333333334, + "final_counts": { + "POSITIVE": 40, + "NEGATIVE": 8 + }, + "final_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + } + } + }, + { + "season_code": "202301", + "requirements": "", + "description": "The peculiar nature of Portugal as a colonial power produced a very distinct history in the five Portuguese-speaking African countries, namely Angola, Guin\u00e9-Bissau (Guinea-Bissau), Mo\u00e7ambique (Mozambique), and the Atlantic islands of Cabo-Verde (Cape Verde) and S\u00e3o Tom\u00e9 e Pr\u00edncipe. Lusophone Africa is a lose term that refers to the world created by Portugal\u2019s colonialism in Africa. This course explores this distinct history through the lens of culture and politics. Focusing on the long twentieth-century, we consider Lusophone Africa as a study unit, dissecting its disparate societies, cultures, and political trajectories, while remaining anchored in the general context of Africa. Military conquest, colonial rule, race/lusotropicalism, nationalism, and liberation struggle are some of the core themes of the course. We begin with a brief assessment of Portugal\u2019s efforts to retain its colonial enclaves amid the voracious expansion of British, French, Belgian, and German presence in Africa in the late 19th century. But our focus is on the twentieth-century, from the establishment of the colonial administration in the early 1900s to the fall of the Portuguese empire in 1974. We dedicate a good portion of the term to exploring the multiple ways (cultural and political) in which Africans responded to Portugal\u2019s encroachment and how they navigated the color bar that came to dictate their social mobility under colonial rule. We end with the multifaceted longings for self-determination that led to the longest and bloodiest liberation wars in Africa. Our readings include scholarly essays (old and recent), primary sources, literary works (novels, poetry and short stories), photographs, music and films. We become acquainted with Portuguese-speaking African voices, faces, and places. Lu\u00eds Bernardo Honwana\u2019s collection of short stories in We Killed Mangy Dog and Other Stories (1964) and Zez\u00e9 Gamboa\u2019s film The Great Kilapy (2012) carry us through the important theme of race and race relations. While cautious in situating the discussion of race in its historical context, these and other materials challenge us to think about race relations and emancipation in our time.", "short_title": "Culture and Politics in Lusop...", "title": "Culture and Politics in Lusophone Africa, 1885-1992", "school": "YC", @@ -154142,7 +338640,7 @@ "13:30", "15:20", "HQ 317 - Humanities Quadrangle 317", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -154166,10 +338664,103 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84162\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84162/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988481998443604, + 0.9988793730735779, + 0.998910665512085, + 0.9986259937286377, + 0.9987245202064514 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989155530929565, + 0.9989134073257446, + 0.9989193677902222, + 0.9980341792106628, + 0.9989042282104492 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988823533058167, + 0.9982553124427795, + 0.9989373087882996, + 0.9988514184951782 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 14 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -154207,7 +338798,7 @@ "13:30", "15:20", "WLH 007 - William L. Harkness Hall 007", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -154231,10 +338822,147 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84165\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84165/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989144802093506, + 0.9988609552383423, + 0.9988040924072266, + 0.9985374212265015, + 0.9988196492195129, + 0.9985608458518982, + 0.9981890320777893, + 0.9986839890480042, + 0.9989104270935059, + 0.9989111423492432, + 0.9988411068916321 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988855719566345, + 0.9989269375801086, + 0.9989321827888489, + 0.9989232420921326, + 0.9986838698387146, + 0.9989163875579834, + 0.9989087581634521, + 0.9988995790481567, + 0.9989269375801086, + 0.9989111423492432, + 0.9989104270935059, + 0.9988400340080261 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988231062889099, + 0.9989247918128967, + 0.99891197681427, + 0.998893678188324, + 0.9988717436790466, + 0.9987547397613525, + 0.9987553358078003, + 0.9989136457443237, + 0.9983460903167725, + 0.9989250302314758, + 0.9988133907318115, + 0.9987767338752747, + 0.9988046884536743 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 36, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 36 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -154271,7 +338999,7 @@ "15:30", "16:20", "HQ 133 - Humanities Quadrangle 133", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -154279,7 +339007,7 @@ "15:30", "16:20", "HQ 133 - Humanities Quadrangle 133", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -154304,10 +339032,99 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86185\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86185/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987223744392395, + 0.9987447261810303, + 0.9985253214836121, + 0.9988203644752502 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988058805465698, + 0.9988178610801697, + 0.9988162517547607, + 0.9987863898277283 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988791346549988, + 0.9987723231315613, + 0.9988492727279663, + 0.9989039897918701 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 12 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -154338,7 +339155,7 @@ "19:00", "19:50", "HQ C64 - Humanities Quadrangle C64", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -154355,7 +339172,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -154386,7 +339231,7 @@ "20:00", "20:50", "HQ C07 - Humanities Quadrangle C07", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -154403,7 +339248,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -154440,7 +339313,7 @@ "13:30", "14:20", "WLH 208 - William L. Harkness Hall 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -154448,7 +339321,7 @@ "13:30", "14:20", "WLH 208 - William L. Harkness Hall 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -154474,10 +339347,137 @@ "classnotes": "", "final_exam": "Sunday, May 7, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85400\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/85400/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994977712631226, + 0.9989205598831177, + 0.9988803267478943, + 0.9988458156585693, + 0.9986982345581055, + 0.9988382458686829, + 0.9612578749656677, + 0.9988133907318115, + 0.9964050054550171 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 7 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2222222222222222, + "POSITIVE": 0.7777777777777778 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7777777777777778 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985150694847107, + 0.9987057447433472, + 0.9993506073951721, + 0.9964219331741333, + 0.9987718462944031, + 0.9859362840652466, + 0.9986392855644226, + 0.9985833168029785, + 0.9988816380500793, + 0.9969218373298645, + 0.997943103313446 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.6363636363636364, + "NEGATIVE": 0.36363636363636365 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6363636363636364 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983184337615967, + 0.9988470077514648, + 0.9988263249397278, + 0.998688280582428, + 0.998857855796814, + 0.9971873164176941, + 0.9965169429779053, + 0.9989737272262573, + 0.9989258646965027, + 0.998807430267334 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 7 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3, + "POSITIVE": 0.7 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7 + ] + }, + "final_label": "POSITIVE", + "final_count": 21, + "final_proportion": 0.7, + "final_counts": { + "NEGATIVE": 9, + "POSITIVE": 21 + }, + "final_distribution": { + "NEGATIVE": 0.3, + "POSITIVE": 0.7 + } + } }, { "season_code": "202301", @@ -154508,7 +339508,7 @@ "14:30", "15:20", "HQ C07 - Humanities Quadrangle C07", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -154525,7 +339525,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -154556,7 +339584,7 @@ "16:00", "16:50", "HQ C07 - Humanities Quadrangle C07", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -154573,7 +339601,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -154621,7 +339677,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -154659,7 +339743,7 @@ "13:30", "15:20", "WLH 001 - William L. Harkness Hall 001", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -154682,10 +339766,137 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84169\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84169/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985640645027161, + 0.9989367127418518, + 0.9982323050498962, + 0.9988573789596558, + 0.9988158941268921, + 0.9976891279220581, + 0.9988183379173279, + 0.9987140893936157 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989114999771118, + 0.9992039799690247, + 0.9929284453392029, + 0.9989000558853149, + 0.9988652467727661, + 0.9989062547683716, + 0.9987396597862244, + 0.9989100694656372, + 0.9989317059516907, + 0.9988303780555725 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988718628883362, + 0.9981794357299805, + 0.9988988637924194, + 0.9987340569496155, + 0.9989336133003235, + 0.9982768297195435, + 0.9988942742347717, + 0.9989362359046936, + 0.9988498687744141, + 0.9989053010940552, + 0.9989327788352966, + 0.9989001750946045 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 27, + "final_proportion": 0.9, + "final_counts": { + "POSITIVE": 27, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + } + } }, { "season_code": "202301", @@ -154723,7 +339934,7 @@ "13:30", "15:20", "HQ C64 - Humanities Quadrangle C64", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -154747,10 +339958,107 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84228\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84228/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986869692802429, + 0.9984258413314819, + 0.9987284541130066, + 0.9985878467559814, + 0.9130777716636658 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988986253738403, + 0.9988718628883362, + 0.9989299178123474, + 0.9988780617713928, + 0.9979777932167053 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989340901374817, + 0.9988766312599182, + 0.9988995790481567, + 0.9982940554618835, + 0.9250795841217041 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 0.9333333333333333, + "final_counts": { + "POSITIVE": 14, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9333333333333333, + "NEGATIVE": 0.06666666666666667 + } + } }, { "season_code": "202301", @@ -154791,7 +340099,7 @@ "13:30", "15:20", "WLH 006 - William L. Harkness Hall 006", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -154809,15 +340117,118 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85961\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85961/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "No prior background is required. However, it will be helpful to have taken either WGSS 291\/HIST 287J or WGSS 306 before or in concurrence with this course.", - "description": "What are the historical forms of gender non-conformity? This course investigates expressions of gender that were considered non-conforming within their historical contexts. Our point of departure is the idea that gender constitutes a \"useful category of historical analysis\" (Joan Scott). In this course we ask how deviant gender expression can be a category of historical analysis. How do we write history from the perspective of gender fluidity, non-binarism, and gender transgression? How can this history give us the tools to critique regnant norms of gender expression, then and now? How does this historical approach relate to trans* and non-binary people & movements today? The course is historically wide-ranging, from Antiquity to the Early Modern period, and geographically diverse, including Europe, the Middle East, and the colonial Americas. The breath of contexts enable us to consider broad patterns, continuities, and discontinuities. At the same time, we discuss the specificities of particular contexts, emphasizing the connection between gender fluidity\/non-conformity, on the one hand, and local cultural norms around gender and sex, on the other.\u00a0We investigate intellectual and cultural trends, as well as the lives of gender fluid\/non-conforming individuals. We analyze sources drawn from law, medicine, religion, philosophy, visual arts & literature, biographies, and memoirs. All readings are in English translation.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984681010246277, + 0.9989023208618164, + 0.9987999200820923, + 0.9988932013511658, + 0.9989064931869507, + 0.9989149570465088, + 0.998826801776886 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989259839057922, + 0.9979013204574585, + 0.9987432360649109, + 0.9989210367202759, + 0.9988973140716553, + 0.9988835453987122 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9971141815185547, + 0.9985865354537964, + 0.9988549947738647, + 0.9988499879837036, + 0.9986931681632996, + 0.9988263249397278 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 19 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } + }, + { + "season_code": "202301", + "requirements": "No prior background is required. However, it will be helpful to have taken either WGSS 291/HIST 287J or WGSS 306 before or in concurrence with this course.", + "description": "What are the historical forms of gender non-conformity? This course investigates expressions of gender that were considered non-conforming within their historical contexts. Our point of departure is the idea that gender constitutes a \"useful category of historical analysis\" (Joan Scott). In this course we ask how deviant gender expression can be a category of historical analysis. How do we write history from the perspective of gender fluidity, non-binarism, and gender transgression? How can this history give us the tools to critique regnant norms of gender expression, then and now? How does this historical approach relate to trans* and non-binary people & movements today? The course is historically wide-ranging, from Antiquity to the Early Modern period, and geographically diverse, including Europe, the Middle East, and the colonial Americas. The breath of contexts enable us to consider broad patterns, continuities, and discontinuities. At the same time, we discuss the specificities of particular contexts, emphasizing the connection between gender fluidity/non-conformity, on the one hand, and local cultural norms around gender and sex, on the other.\u00a0We investigate intellectual and cultural trends, as well as the lives of gender fluid/non-conforming individuals. We analyze sources drawn from law, medicine, religion, philosophy, visual arts & literature, biographies, and memoirs. All readings are in English translation.", "short_title": "Gender Expression Before Mode...", "title": "Gender Expression Before Modernity", "school": "YC", @@ -154850,7 +340261,7 @@ "15:30", "17:20", "WLH 112 - William L. Harkness Hall 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -154867,10 +340278,125 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84966\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84966/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984365105628967, + 0.9989006519317627, + 0.9987877011299133, + 0.998930037021637, + 0.9986578226089478, + 0.9989001750946045, + 0.9989217519760132, + 0.99885094165802 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9979259967803955, + 0.9988646507263184, + 0.9971369504928589, + 0.9987909197807312, + 0.9987679123878479, + 0.9949491024017334, + 0.9989292025566101, + 0.9989144802093506 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982049465179443, + 0.9989221096038818, + 0.9979680180549622, + 0.998262345790863, + 0.9989185333251953, + 0.9988176226615906, + 0.9989387392997742, + 0.9988930821418762 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 22, + "final_proportion": 0.9166666666666666, + "final_counts": { + "POSITIVE": 22, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + } + } }, { "season_code": "202301", @@ -154907,7 +340433,7 @@ "15:30", "17:20", "HQ C15 - Humanities Quadrangle C15", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -154930,10 +340456,123 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84171\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84171/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9968407154083252, + 0.9989064931869507, + 0.9936671853065491, + 0.9988908171653748, + 0.9973750114440918, + 0.9989224672317505, + 0.998846173286438, + 0.9987975358963013, + 0.9982349872589111 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987855553627014, + 0.9988775849342346, + 0.9939378499984741, + 0.9988752007484436, + 0.9988848567008972 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9987446069717407, + 0.9987776875495911, + 0.9989261031150818, + 0.9800409078598022, + 0.9952352643013, + 0.9988909363746643, + 0.998921275138855, + 0.9988486766815186, + 0.9985405206680298 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.7777777777777778, + "NEGATIVE": 0.2222222222222222 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7777777777777778 + ] + }, + "final_label": "POSITIVE", + "final_count": 21, + "final_proportion": 0.9130434782608695, + "final_counts": { + "POSITIVE": 21, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9130434782608695, + "NEGATIVE": 0.08695652173913043 + } + } }, { "season_code": "202301", @@ -154971,7 +340610,7 @@ "9:25", "11:15", "WLH 009 - William L. Harkness Hall 009", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -154996,10 +340635,109 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85396\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85396/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985933899879456, + 0.9989339709281921, + 0.9987154006958008, + 0.9989069700241089, + 0.9986647367477417 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9970364570617676, + 0.9989144802093506, + 0.9989373087882996, + 0.9988921284675598, + 0.9989112615585327, + 0.9988201260566711 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989190101623535, + 0.9988967180252075, + 0.9989287257194519, + 0.9989292025566101, + 0.9989057779312134, + 0.9988619089126587 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 17 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -155037,7 +340775,7 @@ "15:30", "17:20", "HQ 209 - Humanities Quadrangle 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -155059,10 +340797,125 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85853\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/85853/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988585710525513, + 0.9988853335380554, + 0.9987825751304626, + 0.9989342093467712, + 0.9989305138587952, + 0.9989274144172668, + 0.9987348914146423, + 0.998881995677948, + 0.9988501071929932 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989264607429504, + 0.9989275336265564, + 0.9989120960235596, + 0.9989151954650879, + 0.9986602067947388, + 0.9989022016525269, + 0.9988349080085754, + 0.9987732768058777, + 0.9989129304885864 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989105463027954, + 0.9989305138587952, + 0.9988704323768616, + 0.9989342093467712, + 0.9988299012184143, + 0.9988981485366821, + 0.9989156723022461 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 25, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 25 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -155105,10 +340958,38 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84211\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84211/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -155141,7 +341022,7 @@ "Hu" ], "flags": [ - "PH: Global Health, Ethics\/Humanities\/History" + "PH: Global Health, Ethics/Humanities/History" ], "regnotes": "", "rp_attr": "", @@ -155151,7 +341032,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -155190,7 +341099,7 @@ "15:30", "17:20", "BASSLB L73 - Bass Library L73", - "https:\/\/map.yale.edu\/?id=1910#!m\/564574" + "https://map.yale.edu/?id=1910#!m/564574" ] ] }, @@ -155215,10 +341124,117 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84219\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84219/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987775683403015, + 0.9970136880874634, + 0.9923905730247498, + 0.9988505840301514, + 0.9989007711410522, + 0.9988163709640503, + 0.9988088607788086 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983166456222534, + 0.9986822009086609, + 0.9986955523490906, + 0.9989274144172668, + 0.9989302754402161, + 0.9989227652549744, + 0.9987403750419617 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988903403282166, + 0.9989305138587952, + 0.9987758994102478, + 0.9989244341850281, + 0.9989315867424011, + 0.9988715052604675, + 0.998820960521698 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 21, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 21 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -155258,7 +341274,7 @@ "13:30", "15:20", "HQ C64 - Humanities Quadrangle C64", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -155280,10 +341296,151 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84217\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84217/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988019466400146, + 0.998892605304718, + 0.9986458420753479, + 0.9984921216964722, + 0.9987829327583313, + 0.9988552331924438, + 0.9987409710884094, + 0.998660683631897, + 0.9986459612846375, + 0.9989140033721924, + 0.998863935470581 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988906979560852, + 0.9989392161369324, + 0.998782217502594, + 0.9989249110221863, + 0.9984185695648193, + 0.9952402114868164, + 0.999497652053833, + 0.998212456703186, + 0.9994988441467285, + 0.9988641738891602, + 0.9987277388572693, + 0.9987916350364685, + 0.998910665512085 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.7692307692307693, + "NEGATIVE": 0.23076923076923078 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7692307692307693 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9962408542633057, + 0.9989253878593445, + 0.9891315698623657, + 0.9986081719398499, + 0.9953621029853821, + 0.9924246072769165, + 0.9994633793830872, + 0.9989211559295654, + 0.9994999170303345, + 0.998910665512085, + 0.999414324760437, + 0.9988836646080017, + 0.9989055395126343 + ], + "sentiment_counts": { + "NEGATIVE": 5, + "POSITIVE": 8 + }, + "sentiment_distribution": { + "NEGATIVE": 0.38461538461538464, + "POSITIVE": 0.6153846153846154 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6153846153846154 + ] + }, + "final_label": "POSITIVE", + "final_count": 29, + "final_proportion": 0.7837837837837838, + "final_counts": { + "POSITIVE": 29, + "NEGATIVE": 8 + }, + "final_distribution": { + "POSITIVE": 0.7837837837837838, + "NEGATIVE": 0.21621621621621623 + } + } }, { "season_code": "202301", @@ -155321,7 +341478,7 @@ "13:30", "15:20", "HQ C65 - Humanities Quadrangle C65", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -155344,10 +341501,121 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84182\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84182/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989253878593445, + 0.9987775683403015, + 0.9989041090011597, + 0.998801589012146, + 0.9989151954650879, + 0.9949454665184021, + 0.9989283680915833 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989345669746399, + 0.998904824256897, + 0.9989354014396667, + 0.9989365935325623, + 0.9989394545555115, + 0.9987803101539612, + 0.9989138841629028, + 0.9988675117492676 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998934805393219, + 0.9985302686691284, + 0.9988322854042053, + 0.9989138841629028, + 0.9988975524902344, + 0.997117280960083, + 0.9988204836845398, + 0.9989203214645386 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 23, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 23 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -155387,7 +341655,7 @@ "11:35", "12:50", "HQ 129 - Humanities Quadrangle 129", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -155395,7 +341663,7 @@ "11:35", "12:50", "HQ 129 - Humanities Quadrangle 129", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -155404,22 +341672,139 @@ "Hu" ], "flags": [ - "YC EVST: Core Human\/Social Sci" + "YC EVST: Core Human/Social Sci" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84303\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "", - "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse\/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", + "syllabus_url": "https://yale.instructure.com/courses/84303/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989239573478699, + 0.997658371925354, + 0.998891294002533, + 0.9987801909446716, + 0.9988897442817688, + 0.9988964796066284, + 0.9988486766815186, + 0.9988806843757629, + 0.9989103078842163 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989364743232727, + 0.9988723397254944, + 0.9988699555397034, + 0.9988604784011841, + 0.9988333582878113, + 0.9989116191864014, + 0.9988388419151306 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988983869552612, + 0.9989307522773743, + 0.9988526105880737, + 0.9988763928413391, + 0.9989306330680847, + 0.9981436729431152, + 0.9989198446273804, + 0.9982477426528931, + 0.9989131689071655, + 0.9988601207733154 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 26, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 26 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } + }, + { + "season_code": "202301", + "requirements": "", + "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", "short_title": "Sickness and Health in Africa...", "title": "Sickness and Health in African American History", "school": "YC", @@ -155454,7 +341839,7 @@ "13:30", "14:20", "YSB MARSH - Yale Science Building MARSH", - "https:\/\/map.yale.edu\/?id=1910#!m\/563700" + "https://map.yale.edu/?id=1910#!m/563700" ] ], "Thursday": [ @@ -155462,7 +341847,7 @@ "13:30", "14:20", "YSB MARSH - Yale Science Building MARSH", - "https:\/\/map.yale.edu\/?id=1910#!m\/563700" + "https://map.yale.edu/?id=1910#!m/563700" ] ] }, @@ -155482,15 +341867,1032 @@ "classnotes": "This course is full and we are no longer accepting instructor permission requests. Thank you!", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83282\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "", - "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse\/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", + "syllabus_url": "https://yale.instructure.com/courses/83282/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988340735435486, + 0.9986395239830017, + 0.9986968636512756, + 0.9989031553268433, + 0.9988620281219482, + 0.9988137483596802, + 0.9969080090522766, + 0.9983807802200317, + 0.9987789988517761, + 0.9987564086914062, + 0.9984493255615234, + 0.9986536502838135, + 0.9982695579528809, + 0.9982789754867554, + 0.9989293217658997, + 0.9946243166923523, + 0.9987239241600037, + 0.9980498552322388, + 0.998616099357605, + 0.9987815022468567, + 0.9968481659889221, + 0.9988880753517151, + 0.9988828301429749, + 0.9989162683486938, + 0.9989081621170044, + 0.9987485408782959, + 0.9989271759986877, + 0.9989168643951416, + 0.9984915256500244, + 0.9989184141159058, + 0.9989076852798462, + 0.9988468885421753, + 0.9985731840133667, + 0.9989288449287415, + 0.9986717700958252, + 0.9950319528579712, + 0.9988815188407898, + 0.9988020658493042, + 0.994141161441803, + 0.9968734383583069, + 0.9988811612129211, + 0.9978400468826294, + 0.9986481070518494, + 0.9988192915916443, + 0.9986947178840637, + 0.9989357590675354, + 0.9987982511520386, + 0.9985961318016052, + 0.9988431930541992, + 0.9987500905990601, + 0.9988921284675598, + 0.9988847374916077, + 0.9986405968666077, + 0.9964800477027893, + 0.9986070990562439, + 0.9984385371208191, + 0.9980556964874268, + 0.9986239671707153, + 0.9987909197807312, + 0.9988508224487305, + 0.9979257583618164, + 0.9989352822303772, + 0.9989070892333984, + 0.998741090297699, + 0.998672366142273, + 0.9984409213066101, + 0.9989080429077148, + 0.9989086389541626, + 0.9988235831260681, + 0.9985793828964233, + 0.9988088607788086, + 0.9986900687217712, + 0.9745175242424011, + 0.9828008413314819, + 0.9988285899162292, + 0.9988735318183899, + 0.998863935470581, + 0.9988976716995239, + 0.9986427426338196, + 0.9988811612129211, + 0.9984429478645325, + 0.9986421465873718, + 0.9986189603805542, + 0.9988147020339966, + 0.9950065612792969, + 0.9988425970077515, + 0.9986833930015564, + 0.9989243149757385, + 0.9989123344421387, + 0.9988893866539001, + 0.9988316893577576, + 0.9983320832252502, + 0.9987965822219849, + 0.9985906481742859, + 0.9987419247627258, + 0.9986976385116577, + 0.9986771941184998, + 0.9988052845001221, + 0.9988552331924438, + 0.998722493648529, + 0.9986487030982971, + 0.998903751373291, + 0.9989225268363953, + 0.9988188147544861, + 0.9827929735183716, + 0.9989330172538757, + 0.9986029267311096, + 0.9986230134963989, + 0.9988352656364441, + 0.9988930821418762, + 0.9988430738449097, + 0.9985798597335815, + 0.9985494017601013, + 0.9988065958023071, + 0.9989227652549744, + 0.9986359477043152, + 0.998755693435669, + 0.9989282488822937, + 0.9988858103752136, + 0.9986497759819031, + 0.9989180564880371, + 0.9986276626586914, + 0.9987366795539856, + 0.9988987445831299, + 0.9989117383956909, + 0.9984443783760071, + 0.9987707734107971, + 0.9986522793769836, + 0.9987888932228088, + 0.998904824256897, + 0.9988356232643127, + 0.9987788796424866, + 0.9989029169082642, + 0.9988052845001221 + ], + "sentiment_counts": { + "POSITIVE": 132, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.9850746268656716, + "NEGATIVE": 0.014925373134328358 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9850746268656716 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989101886749268, + 0.9985139966011047, + 0.9989320635795593, + 0.9986590147018433, + 0.998939573764801, + 0.9988256096839905, + 0.9988693594932556, + 0.9989269375801086, + 0.9988569021224976, + 0.9989309906959534, + 0.9988852143287659, + 0.9989275336265564, + 0.998847484588623, + 0.9986892342567444, + 0.9986897110939026, + 0.9985847473144531, + 0.9989288449287415, + 0.9988588094711304, + 0.9989238381385803, + 0.9989116191864014, + 0.9989094734191895, + 0.9989234805107117, + 0.9989333748817444, + 0.9989383816719055, + 0.9989296793937683, + 0.9989339709281921, + 0.9988177418708801, + 0.998874843120575, + 0.9989140033721924, + 0.9988942742347717, + 0.9989244341850281, + 0.9988756775856018, + 0.9989215135574341, + 0.9988221526145935, + 0.9985874891281128, + 0.9989200830459595, + 0.9989151954650879, + 0.9989259839057922, + 0.9988903403282166, + 0.9988194108009338, + 0.9988852143287659, + 0.9989200830459595, + 0.9988514184951782, + 0.9988941550254822, + 0.9989367127418518, + 0.9989240765571594, + 0.9989283680915833, + 0.998916506767273, + 0.9987910389900208, + 0.9989217519760132, + 0.9989098310470581, + 0.9989373087882996, + 0.9988885521888733, + 0.9989268183708191, + 0.9989142417907715, + 0.9989210367202759, + 0.9987784028053284, + 0.9988576173782349, + 0.9986928105354309, + 0.9988359808921814, + 0.9989284873008728, + 0.9988395571708679, + 0.9989044666290283, + 0.998880922794342, + 0.9988688826560974, + 0.9989117383956909, + 0.9988538026809692, + 0.9989325404167175, + 0.9989030361175537, + 0.9989042282104492, + 0.9988289475440979, + 0.9988977909088135, + 0.9988352656364441, + 0.9987223744392395, + 0.9989356398582458, + 0.9987284541130066, + 0.9989343285560608, + 0.9989288449287415, + 0.9989168643951416, + 0.998934805393219, + 0.9986547231674194, + 0.9989112615585327, + 0.9989155530929565, + 0.9989089965820312, + 0.9989166259765625, + 0.9989354014396667, + 0.9989245533943176, + 0.9988939166069031, + 0.9989140033721924, + 0.9989355206489563, + 0.9987800717353821, + 0.9989000558853149, + 0.9989272952079773, + 0.998875081539154, + 0.9986833930015564, + 0.9989184141159058, + 0.9986955523490906, + 0.9988547563552856, + 0.9989318251609802, + 0.9989166259765625, + 0.9989308714866638, + 0.9981245398521423, + 0.9984752535820007, + 0.9986801743507385, + 0.9986653327941895, + 0.9989244341850281, + 0.9971017241477966, + 0.998755931854248, + 0.9986880421638489, + 0.998789370059967, + 0.9989027976989746, + 0.9989237189292908, + 0.9989036321640015, + 0.9968572854995728, + 0.9989172220230103, + 0.9988908171653748, + 0.9987608194351196, + 0.9994779229164124, + 0.9989295601844788, + 0.998917818069458, + 0.9989301562309265, + 0.9988760352134705, + 0.9989249110221863, + 0.9967356324195862, + 0.9989045858383179, + 0.998923122882843, + 0.99893718957901, + 0.9984885454177856, + 0.9989292025566101, + 0.9989392161369324, + 0.9974145889282227, + 0.9989198446273804, + 0.9988732933998108, + 0.998925507068634, + 0.9987367987632751, + 0.9988483190536499, + 0.9985429048538208, + 0.9988239407539368, + 0.998930037021637, + 0.9989349246025085, + 0.9989305138587952, + 0.9989393353462219, + 0.9989190101623535, + 0.9988657236099243, + 0.9988666772842407, + 0.9988998174667358, + 0.9989162683486938 + ], + "sentiment_counts": { + "POSITIVE": 144, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.9795918367346939, + "NEGATIVE": 0.02040816326530612 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9795918367346939 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983974099159241, + 0.9888043999671936, + 0.998786985874176, + 0.9986128807067871, + 0.9989315867424011, + 0.9988334774971008, + 0.9987927675247192, + 0.9989320635795593, + 0.9963850975036621, + 0.997117280960083, + 0.9988308548927307, + 0.9980233907699585, + 0.9974019527435303, + 0.9983333945274353, + 0.9989299178123474, + 0.9984614849090576, + 0.9988381266593933, + 0.9987615346908569, + 0.9982694387435913, + 0.9989383816719055, + 0.9986180067062378, + 0.9989035129547119, + 0.9988532066345215, + 0.9987928867340088, + 0.998872697353363, + 0.9902652502059937, + 0.9988453388214111, + 0.9987645149230957, + 0.9989226460456848, + 0.9989016056060791, + 0.9989362359046936, + 0.9985417127609253, + 0.9988675117492676, + 0.9988947510719299, + 0.9989292025566101, + 0.9988635778427124, + 0.9988839030265808, + 0.9989066123962402, + 0.9988988637924194, + 0.9988574981689453, + 0.9989055395126343, + 0.9989317059516907, + 0.9984641075134277, + 0.9987357258796692, + 0.9988387227058411, + 0.9989053010940552, + 0.9988917708396912, + 0.9987099170684814, + 0.9989288449287415, + 0.998921275138855, + 0.9989187717437744, + 0.9988780617713928, + 0.9986422657966614, + 0.9988622665405273, + 0.9988786578178406, + 0.998932421207428, + 0.9989190101623535, + 0.9982553124427795, + 0.9982553124427795, + 0.9985672235488892, + 0.9986905455589294, + 0.9988991022109985, + 0.9987295269966125, + 0.998909592628479, + 0.9988479614257812, + 0.9988248944282532, + 0.9989368319511414, + 0.9989263415336609, + 0.9989081621170044, + 0.9988775849342346, + 0.9989221096038818, + 0.9989272952079773, + 0.9989270567893982, + 0.9988561868667603, + 0.9988903403282166, + 0.9988571405410767, + 0.9963590502738953, + 0.9982553124427795, + 0.9981878399848938, + 0.9983333945274353, + 0.9988864064216614, + 0.9980168342590332, + 0.9987473487854004, + 0.9988362193107605, + 0.9987902045249939, + 0.9984739422798157, + 0.9989058971405029, + 0.9986993074417114, + 0.9989184141159058, + 0.9989271759986877, + 0.9986972212791443, + 0.9989074468612671, + 0.998891294002533, + 0.9982694387435913, + 0.9989138841629028, + 0.9994202852249146, + 0.9989217519760132, + 0.9989379048347473, + 0.9984965324401855, + 0.9984285235404968, + 0.9985841512680054, + 0.9988813996315002, + 0.9989080429077148, + 0.9987743496894836, + 0.9989148378372192, + 0.9989377856254578, + 0.9988741278648376, + 0.9989117383956909, + 0.998400866985321, + 0.997117280960083, + 0.9987142086029053, + 0.9988915324211121, + 0.99891197681427, + 0.998900294303894, + 0.9988792538642883, + 0.998932421207428, + 0.9987950325012207, + 0.9989086389541626, + 0.9989376664161682, + 0.9989032745361328, + 0.9989134073257446, + 0.9989307522773743, + 0.9989053010940552, + 0.998904824256897, + 0.998918890953064, + 0.9988715052604675, + 0.9989161491394043, + 0.9988309741020203, + 0.9988928437232971, + 0.9969774484634399, + 0.9987527132034302, + 0.9989199638366699, + 0.9988387227058411, + 0.9989400506019592, + 0.998762845993042, + 0.9978189468383789, + 0.9989193677902222, + 0.9989359974861145, + 0.9988927245140076, + 0.9989250302314758, + 0.9989191293716431, + 0.9987592697143555, + 0.9987151622772217, + 0.998938262462616, + 0.9988916516304016, + 0.9987849593162537, + 0.9986801743507385, + 0.9989303946495056, + 0.9988600015640259, + 0.9988922476768494, + 0.9989261031150818, + 0.9989068508148193, + 0.9989346861839294, + 0.9984594583511353, + 0.9986693859100342, + 0.9989142417907715, + 0.9988985061645508, + 0.9988681077957153, + 0.9989017248153687, + 0.9942962527275085, + 0.9989299178123474, + 0.998896598815918, + 0.9988757967948914, + 0.998881995677948, + 0.9989005327224731, + 0.9939151406288147, + 0.9989147186279297, + 0.9989296793937683, + 0.9983274340629578, + 0.9989288449287415, + 0.9989246726036072, + 0.9985185265541077, + 0.9988113641738892, + 0.998828113079071, + 0.9988791346549988, + 0.9989120960235596, + 0.9989370703697205, + 0.993130624294281, + 0.997875452041626, + 0.9989209175109863, + 0.9989101886749268, + 0.9988956451416016, + 0.9987995624542236, + 0.9988664388656616, + 0.9986214637756348, + 0.9988986253738403, + 0.9988881945610046, + 0.9987167119979858, + 0.9979366064071655, + 0.9989270567893982, + 0.9988871216773987, + 0.9988478422164917, + 0.9988928437232971, + 0.9989187717437744 + ], + "sentiment_counts": { + "POSITIVE": 192, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.9896907216494846, + "NEGATIVE": 0.010309278350515464 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9896907216494846 + ] + }, + "final_label": "POSITIVE", + "final_count": 468, + "final_proportion": 0.9852631578947368, + "final_counts": { + "POSITIVE": 468, + "NEGATIVE": 7 + }, + "final_distribution": { + "POSITIVE": 0.9852631578947368, + "NEGATIVE": 0.014736842105263158 + } + } + }, + { + "season_code": "202301", + "requirements": "", + "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", "short_title": "Sickness and Health in Africa...", "title": "Sickness and Health in African American History", "school": "YC", @@ -155519,7 +342921,7 @@ "15:30", "16:20", "WLH 013 - William L. Harkness Hall 013", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -155536,12 +342938,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse\/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", + "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", "short_title": "Sickness and Health in Africa...", "title": "Sickness and Health in African American History", "school": "YC", @@ -155570,7 +343000,7 @@ "19:00", "19:50", "WLH 003 - William L. Harkness Hall 003", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -155587,12 +343017,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse\/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", + "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", "short_title": "Sickness and Health in Africa...", "title": "Sickness and Health in African American History", "school": "YC", @@ -155621,7 +343079,7 @@ "14:30", "15:20", "WTS A42 - Watson Center 60 Sachem Street A42", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -155638,12 +343096,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse\/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", + "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", "short_title": "Sickness and Health in Africa...", "title": "Sickness and Health in African American History", "school": "YC", @@ -155672,7 +343158,7 @@ "9:25", "10:15", "WALL81 101 - 81 Wall Street 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -155689,12 +343175,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse\/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", + "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", "short_title": "Sickness and Health in Africa...", "title": "Sickness and Health in African American History", "school": "YC", @@ -155723,7 +343237,7 @@ "16:30", "17:20", "WLH 013 - William L. Harkness Hall 013", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -155740,12 +343254,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse\/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", + "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", "short_title": "Sickness and Health in Africa...", "title": "Sickness and Health in African American History", "school": "YC", @@ -155774,7 +343316,7 @@ "20:00", "20:50", "WLH 003 - William L. Harkness Hall 003", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -155791,12 +343333,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse\/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", + "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", "short_title": "Sickness and Health in Africa...", "title": "Sickness and Health in African American History", "school": "YC", @@ -155825,7 +343395,7 @@ "15:30", "16:20", "WLH 006 - William L. Harkness Hall 006", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -155842,12 +343412,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse\/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", + "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", "short_title": "Sickness and Health in Africa...", "title": "Sickness and Health in African American History", "school": "YC", @@ -155876,7 +343474,7 @@ "16:30", "17:20", "WLH 006 - William L. Harkness Hall 006", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -155893,12 +343491,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse\/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", + "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", "short_title": "Sickness and Health in Africa...", "title": "Sickness and Health in African American History", "school": "YC", @@ -155927,7 +343553,7 @@ "19:00", "19:50", "BM 013 - Bingham Hall 013", - "https:\/\/map.yale.edu\/?id=1910#!m\/559569" + "https://map.yale.edu/?id=1910#!m/559569" ] ] }, @@ -155944,12 +343570,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse\/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", + "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", "short_title": "Sickness and Health in Africa...", "title": "Sickness and Health in African American History", "school": "YC", @@ -155978,7 +343632,7 @@ "14:30", "15:20", "WTS B39 - Watson Center 60 Sachem Street B39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -155995,12 +343649,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse\/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", + "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", "short_title": "Sickness and Health in Africa...", "title": "Sickness and Health in African American History", "school": "YC", @@ -156029,7 +343711,7 @@ "15:30", "16:20", "WLH 006 - William L. Harkness Hall 006", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -156046,12 +343728,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse\/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", + "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", "short_title": "Sickness and Health in Africa...", "title": "Sickness and Health in African American History", "school": "YC", @@ -156080,7 +343790,7 @@ "19:00", "19:50", "WLH 002 - William L. Harkness Hall 002", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -156097,12 +343807,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse\/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", + "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", "short_title": "Sickness and Health in Africa...", "title": "Sickness and Health in African American History", "school": "YC", @@ -156131,7 +343869,7 @@ "16:30", "17:20", "WLH 006 - William L. Harkness Hall 006", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -156148,12 +343886,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse\/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", + "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", "short_title": "Sickness and Health in Africa...", "title": "Sickness and Health in African American History", "school": "YC", @@ -156182,7 +343948,7 @@ "20:00", "20:50", "WLH 002 - William L. Harkness Hall 002", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -156199,12 +343965,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse\/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", + "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", "short_title": "Sickness and Health in Africa...", "title": "Sickness and Health in African American History", "school": "YC", @@ -156233,7 +344027,7 @@ "15:30", "16:20", "WLH 009 - William L. Harkness Hall 009", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -156250,12 +344044,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse\/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", + "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", "short_title": "Sickness and Health in Africa...", "title": "Sickness and Health in African American History", "school": "YC", @@ -156284,7 +344106,7 @@ "9:25", "10:15", "BM 013 - Bingham Hall 013", - "https:\/\/map.yale.edu\/?id=1910#!m\/559569" + "https://map.yale.edu/?id=1910#!m/559569" ] ] }, @@ -156301,12 +344123,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse\/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", + "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", "short_title": "Sickness and Health in Africa...", "title": "Sickness and Health in African American History", "school": "YC", @@ -156335,7 +344185,7 @@ "19:00", "19:50", "WLH 006 - William L. Harkness Hall 006", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -156352,12 +344202,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse\/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", + "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", "short_title": "Sickness and Health in Africa...", "title": "Sickness and Health in African American History", "school": "YC", @@ -156386,7 +344264,7 @@ "15:30", "16:20", "WLH 203 - William L. Harkness Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -156403,12 +344281,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse\/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", + "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", "short_title": "Sickness and Health in Africa...", "title": "Sickness and Health in African American History", "school": "YC", @@ -156437,7 +344343,7 @@ "19:00", "19:50", "WLH 011 - William L. Harkness Hall 011", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -156454,12 +344360,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse\/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", + "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", "short_title": "Sickness and Health in Africa...", "title": "Sickness and Health in African American History", "school": "YC", @@ -156488,7 +344422,7 @@ "14:30", "15:20", "ESC 110 - Environmental Sciences Center 110", - "https:\/\/map.yale.edu\/?id=1910#!m\/560020" + "https://map.yale.edu/?id=1910#!m/560020" ] ] }, @@ -156505,12 +344439,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse\/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", + "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", "short_title": "Sickness and Health in Africa...", "title": "Sickness and Health in African American History", "school": "YC", @@ -156539,7 +344501,7 @@ "15:30", "16:20", "WLH 007 - William L. Harkness Hall 007", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -156556,12 +344518,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse\/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", + "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", "short_title": "Sickness and Health in Africa...", "title": "Sickness and Health in African American History", "school": "YC", @@ -156615,12 +344605,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse\/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", + "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", "short_title": "Sickness and Health in Africa...", "title": "Sickness and Health in African American History", "school": "YC", @@ -156649,7 +344667,7 @@ "20:00", "20:50", "WLH 011 - William L. Harkness Hall 011", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -156666,12 +344684,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse\/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", + "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", "short_title": "Sickness and Health in Africa...", "title": "Sickness and Health in African American History", "school": "YC", @@ -156700,7 +344746,7 @@ "16:30", "17:20", "WLH 009 - William L. Harkness Hall 009", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -156717,12 +344763,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse\/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", + "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", "short_title": "Sickness and Health in Africa...", "title": "Sickness and Health in African American History", "school": "YC", @@ -156751,7 +344825,7 @@ "19:00", "19:50", "WLH 210 - William L. Harkness Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -156768,12 +344842,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse\/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", + "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", "short_title": "Sickness and Health in Africa...", "title": "Sickness and Health in African American History", "school": "YC", @@ -156802,7 +344904,7 @@ "10:30", "11:20", "WALL81 101 - 81 Wall Street 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -156819,12 +344921,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse\/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", + "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", "short_title": "Sickness and Health in Africa...", "title": "Sickness and Health in African American History", "school": "YC", @@ -156853,7 +344983,7 @@ "16:30", "17:20", "WLH 203 - William L. Harkness Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -156870,12 +345000,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse\/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", + "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", "short_title": "Sickness and Health in Africa...", "title": "Sickness and Health in African American History", "school": "YC", @@ -156929,12 +345087,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse\/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", + "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", "short_title": "Sickness and Health in Africa...", "title": "Sickness and Health in African American History", "school": "YC", @@ -156963,7 +345149,7 @@ "16:30", "17:20", "WLH 007 - William L. Harkness Hall 007", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -156980,7 +345166,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -157023,7 +345237,7 @@ "14:30", "15:45", "HQ 132 - Humanities Quadrangle 132", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -157031,7 +345245,7 @@ "14:30", "15:45", "HQ 132 - Humanities Quadrangle 132", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -157054,10 +345268,113 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84093\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84093/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989114999771118, + 0.998789370059967, + 0.998908519744873, + 0.9988896250724792, + 0.9989155530929565, + 0.9989334940910339 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983221888542175, + 0.9966064691543579, + 0.9981992840766907, + 0.9989058971405029, + 0.9989176988601685, + 0.9853879809379578 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9924666285514832, + 0.9987484216690063, + 0.9988945126533508, + 0.9989340901374817, + 0.9987887740135193, + 0.998930037021637 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 5 + }, + "sentiment_distribution": { + "NEGATIVE": 0.16666666666666666, + "POSITIVE": 0.8333333333333334 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 0.9444444444444444, + "final_counts": { + "POSITIVE": 17, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9444444444444444, + "NEGATIVE": 0.05555555555555555 + } + } }, { "season_code": "202301", @@ -157095,7 +345412,7 @@ "13:30", "15:20", "WLH 209 - William L. Harkness Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -157120,10 +345437,135 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84215\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84215/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9979718327522278, + 0.9989191293716431, + 0.9984763264656067, + 0.9988756775856018, + 0.9988007545471191, + 0.9989093542098999, + 0.9989000558853149, + 0.9988742470741272, + 0.9988596439361572, + 0.9984340071678162, + 0.9988676309585571 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988818764686584, + 0.9988976716995239, + 0.9989270567893982, + 0.9989160299301147, + 0.9988030195236206, + 0.9989185333251953, + 0.9988787770271301, + 0.9989385008811951 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9936134219169617, + 0.9989233613014221, + 0.9989045858383179, + 0.9988828301429749, + 0.9989252686500549, + 0.9989042282104492, + 0.9989238381385803, + 0.9989334940910339, + 0.99892657995224, + 0.9989017248153687, + 0.9989194869995117 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 30, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 30 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -157166,7 +345608,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -157206,10 +345676,103 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84188\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84188/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9990444779396057, + 0.9987307190895081, + 0.9988448619842529, + 0.9985398054122925, + 0.9885352253913879 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 4 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2, + "POSITIVE": 0.8 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994780421257019, + 0.999483585357666, + 0.9988769888877869, + 0.9905033111572266 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.997941792011261, + 0.9986779093742371, + 0.9987963438034058, + 0.9963687658309937 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 0.7692307692307693, + "final_counts": { + "NEGATIVE": 3, + "POSITIVE": 10 + }, + "final_distribution": { + "NEGATIVE": 0.23076923076923078, + "POSITIVE": 0.7692307692307693 + } + } }, { "season_code": "202301", @@ -157249,10 +345812,149 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84192\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84192/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998353123664856, + 0.9974398612976074, + 0.9986422657966614, + 0.9988773465156555, + 0.9793486595153809, + 0.9988815188407898, + 0.9988434314727783, + 0.9988489151000977, + 0.9989151954650879, + 0.998900294303894, + 0.998773992061615, + 0.9988406300544739, + 0.9930689334869385, + 0.9995087385177612, + 0.9985906481742859 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8666666666666667, + "NEGATIVE": 0.13333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8666666666666667 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9819610118865967, + 0.9983555674552917, + 0.9988688826560974, + 0.9988987445831299, + 0.9988860487937927, + 0.9981916546821594, + 0.9989097118377686, + 0.9994862079620361, + 0.9995014667510986, + 0.9890338182449341 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 7 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3, + "POSITIVE": 0.7 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989321827888489, + 0.9987939596176147, + 0.9982116222381592, + 0.997733473777771, + 0.9989240765571594, + 0.998802661895752, + 0.9989190101623535, + 0.9988042116165161, + 0.9988529682159424, + 0.9018065333366394, + 0.999483585357666 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9090909090909091 + ] + }, + "final_label": "POSITIVE", + "final_count": 30, + "final_proportion": 0.8333333333333334, + "final_counts": { + "POSITIVE": 30, + "NEGATIVE": 6 + }, + "final_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + } + } }, { "season_code": "202301", @@ -157292,10 +345994,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84195\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84195/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -157342,7 +346072,7 @@ "9:25", "11:15", "PH 401 - Phelps Hall 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -157354,10 +346084,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84198\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84198/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -157395,10 +346153,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84492\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84492/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -157436,7 +346222,7 @@ "13:30", "15:20", "HQ 209 - Humanities Quadrangle 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -157448,10 +346234,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84199\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84199/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -157487,10 +346301,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84814\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84814/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -157529,7 +346371,7 @@ "15:30", "17:20", "HQ 109 - Humanities Quadrangle 109", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -157541,10 +346383,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84200\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84200/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -157588,7 +346458,7 @@ "11:35", "12:50", "HQ 307 - Humanities Quadrangle 307", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -157596,7 +346466,7 @@ "11:35", "12:50", "HQ 307 - Humanities Quadrangle 307", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -157608,10 +346478,173 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84160\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84160/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984762072563171, + 0.9965823292732239, + 0.9987420439720154, + 0.998738706111908, + 0.9988890290260315, + 0.9987844824790955, + 0.9989080429077148, + 0.9968896508216858, + 0.99891197681427, + 0.9962582588195801, + 0.9987926483154297, + 0.9988880753517151, + 0.9988172650337219, + 0.9989134073257446 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9285714285714286, + "NEGATIVE": 0.07142857142857142 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9285714285714286 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994984865188599, + 0.9981104135513306, + 0.9988154172897339, + 0.9942962527275085, + 0.9994580149650574, + 0.9982935786247253, + 0.9988263249397278, + 0.9989131689071655, + 0.9988403916358948, + 0.9987169504165649, + 0.9989199638366699, + 0.9962582588195801, + 0.9988699555397034, + 0.9973528385162354, + 0.9985707998275757, + 0.99857497215271, + 0.979805052280426, + 0.9986971020698547 + ], + "sentiment_counts": { + "NEGATIVE": 4, + "POSITIVE": 14 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2222222222222222, + "POSITIVE": 0.7777777777777778 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7777777777777778 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988037347793579, + 0.9988871216773987, + 0.9984511137008667, + 0.9986259937286377, + 0.987037181854248, + 0.9987447261810303, + 0.998930037021637, + 0.9989023208618164, + 0.9988842606544495, + 0.9878063797950745, + 0.9989326596260071, + 0.9962582588195801, + 0.9988477230072021, + 0.9910148978233337, + 0.9989182949066162, + 0.9986000657081604 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.8125, + "NEGATIVE": 0.1875 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8125 + ] + }, + "final_label": "POSITIVE", + "final_count": 40, + "final_proportion": 0.8333333333333334, + "final_counts": { + "POSITIVE": 40, + "NEGATIVE": 8 + }, + "final_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + } + } }, { "season_code": "202301", @@ -157654,7 +346687,7 @@ "13:30", "15:20", "HQ C07 - Humanities Quadrangle C07", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -157666,10 +346699,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84194\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84194/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -157709,7 +346770,7 @@ "13:30", "15:20", "HQ C03 - Humanities Quadrangle C03", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -157721,10 +346782,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84203\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84203/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -157761,7 +346850,7 @@ "9:25", "11:15", "HQ 123 - Humanities Quadrangle 123", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -157773,10 +346862,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84204\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84204/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -157813,7 +346930,7 @@ "13:30", "15:20", "HQ C05 - Humanities Quadrangle C05", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -157825,10 +346942,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84205\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84205/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -157871,7 +347016,7 @@ "9:25", "11:15", "HQ 401 - Humanities Quadrangle 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -157883,15 +347028,126 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84206\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84206/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "", - "description": "Political and economic relations of Russia\/Soviet Union with Europe, the United States, and Asia from tsarism to socialism.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.994451105594635, + 0.99888676404953, + 0.9988627433776855, + 0.9989333748817444, + 0.9987595081329346, + 0.9988391995429993 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.998842716217041, + 0.9989129304885864, + 0.9989238381385803, + 0.9962312579154968, + 0.9969401359558105, + 0.9986774325370789, + 0.9989373087882996, + 0.9936462640762329 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985981583595276, + 0.9980226755142212, + 0.9988202452659607, + 0.9988977909088135, + 0.9971134662628174, + 0.9987371563911438, + 0.9989243149757385, + 0.9989074468612671 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 0.9090909090909091, + "final_counts": { + "POSITIVE": 20, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + } + } + }, + { + "season_code": "202301", + "requirements": "", + "description": "Political and economic relations of Russia/Soviet Union with Europe, the United States, and Asia from tsarism to socialism.", "short_title": "Russia, the USSR, and the Wor...", "title": "Russia, the USSR, and the World, 1855\u20131945", "school": "GS", @@ -157923,12 +347179,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "The course explores recent trends and historiography on several problems through the middle of the nineteenth century: sectionalism, expansion; slavery and the Old South; northern society and reform movements; Civil War causation; the meaning of the Confederacy; why the North won the Civil War; the political, constitutional, and social meanings of emancipation and Reconstruction; violence in Reconstruction society; the relationships between social\/cultural and military\/political history; problems in historical memory; the tension between narrative and analytical history writing; and the ways in which race and gender have reshaped research and interpretive agendas.", + "description": "The course explores recent trends and historiography on several problems through the middle of the nineteenth century: sectionalism, expansion; slavery and the Old South; northern society and reform movements; Civil War causation; the meaning of the Confederacy; why the North won the Civil War; the political, constitutional, and social meanings of emancipation and Reconstruction; violence in Reconstruction society; the relationships between social/cultural and military/political history; problems in historical memory; the tension between narrative and analytical history writing; and the ways in which race and gender have reshaped research and interpretive agendas.", "short_title": "Readings in Nineteenth-Centur...", "title": "Readings in Nineteenth-Century America", "school": "GS", @@ -157962,7 +347246,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -158001,7 +347313,7 @@ "13:30", "15:20", "HQ 209 - Humanities Quadrangle 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -158013,10 +347325,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83280\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83280/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -158053,7 +347393,7 @@ "9:25", "11:15", "HQ 209 - Humanities Quadrangle 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -158068,7 +347408,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -158105,7 +347473,7 @@ "14:10", "15:35", "SLB 129 - Sterling Law Buildings 129", - "https:\/\/map.yale.edu\/?id=1910#!m\/531532" + "https://map.yale.edu/?id=1910#!m/531532" ] ], "Thursday": [ @@ -158113,7 +347481,7 @@ "14:10", "15:35", "SLB 129 - Sterling Law Buildings 129", - "https:\/\/map.yale.edu\/?id=1910#!m\/531532" + "https://map.yale.edu/?id=1910#!m/531532" ] ], "Wednesday": [ @@ -158121,7 +347489,7 @@ "12:10", "13:00", "SLB 120 - Sterling Law Buildings 120", - "https:\/\/map.yale.edu\/?id=1910#!m\/531532" + "https://map.yale.edu/?id=1910#!m/531532" ] ] }, @@ -158133,10 +347501,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84989\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84989/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -158173,7 +347569,7 @@ "15:30", "17:20", "HQ C15 - Humanities Quadrangle C15", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -158185,10 +347581,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86265\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86265/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -158226,7 +347650,7 @@ "9:25", "11:15", "HQ C15 - Humanities Quadrangle C15", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -158238,10 +347662,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84210\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84210/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -158283,7 +347735,7 @@ "13:30", "15:20", "HQ C64 - Humanities Quadrangle C64", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -158298,15 +347750,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84212\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84212/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "In this graduate reading seminar, we explore different actors and institutions that shaped the formation of the global economy since the early modern period. The readings focus on a number of forces and their interplay with the economic lives of both ordinary men and women and more elite figures: states\/political institutions, the environment, law, war, empire, companies, and capitalists. The seminar provides students with a solid knowledge of the questions currently discussed in the burgeoning subfield of the so-called \"new history of capitalism.\"\u00a0 We pay particular attention to the contours of these debates beyond the history of the United States, and to the international and global dimensions of economic history.", + "description": "In this graduate reading seminar, we explore different actors and institutions that shaped the formation of the global economy since the early modern period. The readings focus on a number of forces and their interplay with the economic lives of both ordinary men and women and more elite figures: states/political institutions, the environment, law, war, empire, companies, and capitalists. The seminar provides students with a solid knowledge of the questions currently discussed in the burgeoning subfield of the so-called \"new history of capitalism.\"\u00a0 We pay particular attention to the contours of these debates beyond the history of the United States, and to the international and global dimensions of economic history.", "short_title": "Global Economies: Readings in...", "title": "Global Economies: Readings in Economic History", "school": "GS", @@ -158338,7 +347818,7 @@ "13:30", "15:20", "HQ C65 - Humanities Quadrangle C65", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -158350,17 +347830,45 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84214\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84214/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This seminar provides an opportunity for graduate students to write a research paper on international\/global history, broadly defined to include diplomacy, economic relations, social movements, cultural and intellectual connections, and other topics. The first part of the seminar includes readings and class discussions that focus on hands-on strategies and tactics for historical research and academic writing. Later seminar meetings are oriented toward benchmarks and workshops on students\u2019 own research projects.", + "description": "This seminar provides an opportunity for graduate students to write a research paper on international/global history, broadly defined to include diplomacy, economic relations, social movements, cultural and intellectual connections, and other topics. The first part of the seminar includes readings and class discussions that focus on hands-on strategies and tactics for historical research and academic writing. Later seminar meetings are oriented toward benchmarks and workshops on students\u2019 own research projects.", "short_title": "Research in Modern Internatio...", - "title": "Research in Modern International\/Global History", + "title": "Research in Modern International/Global History", "school": "GS", "credits": 1.0, "extra_info": "ACTIVE", @@ -158393,7 +347901,7 @@ "9:25", "11:15", "HQ 109 - Humanities Quadrangle 109", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -158405,10 +347913,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84216\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84216/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -158445,7 +347981,7 @@ "13:30", "15:20", "WLH 013 - William L. Harkness Hall 013", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -158457,10 +347993,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84218\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84218/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -158498,7 +348062,7 @@ "13:30", "15:20", "HQ C15 - Humanities Quadrangle C15", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -158510,10 +348074,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84222\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84222/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -158565,7 +348157,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -158602,7 +348222,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -158640,7 +348288,7 @@ "13:30", "15:20", "WLH 205 - William L. Harkness Hall 205", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -158657,7 +348305,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -158695,7 +348371,7 @@ "9:25", "11:15", "HQ 129 - Humanities Quadrangle 129", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -158707,15 +348383,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84264\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84264/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This graduate seminar explores how nature has been constructed, reorganized, and mobilized in the modern museum, while introducing graduate students to museum studies and museum practice. With history of science\/science studies at its disciplinary core, the course also incorporates methodologies and readings from cultural history, history of art, anthropology, museum studies, critical heritage studies, and art practice. We examine Yale\u2019s museums and collections as sites for forging and defining relations between nature and culture, between the natural and the unnatural, and between human and environment. The course builds toward historically informed discussions of questions about decolonization, repatriation, and repair circulating in current public discourse around natural history museums. Our most sustained engagement will be with the Yale Peabody Museum of Natural History, and the history of natural history in the United States since 1800. The course has a varied format, incorporating seminar discussions of readings, site visits to museums on and off campus, and workshops with Peabody collections and staff. This course helps to build an ongoing dialogue between graduate students and museum staff as the Peabody rethinks its displays for its current renovation, and is intended to lead to a student-curated exhibition at the Peabody in 2024.", + "description": "This graduate seminar explores how nature has been constructed, reorganized, and mobilized in the modern museum, while introducing graduate students to museum studies and museum practice. With history of science/science studies at its disciplinary core, the course also incorporates methodologies and readings from cultural history, history of art, anthropology, museum studies, critical heritage studies, and art practice. We examine Yale\u2019s museums and collections as sites for forging and defining relations between nature and culture, between the natural and the unnatural, and between human and environment. The course builds toward historically informed discussions of questions about decolonization, repatriation, and repair circulating in current public discourse around natural history museums. Our most sustained engagement will be with the Yale Peabody Museum of Natural History, and the history of natural history in the United States since 1800. The course has a varied format, incorporating seminar discussions of readings, site visits to museums on and off campus, and workshops with Peabody collections and staff. This course helps to build an ongoing dialogue between graduate students and museum staff as the Peabody rethinks its displays for its current renovation, and is intended to lead to a student-curated exhibition at the Peabody in 2024.", "short_title": "Nature and the Modern Museum", "title": "Nature and the Modern Museum", "school": "GS", @@ -158750,7 +348454,7 @@ "13:30", "15:20", "ESC 100 - Environmental Sciences Center 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560020" + "https://map.yale.edu/?id=1910#!m/560020" ] ] }, @@ -158765,10 +348469,17 @@ "classnotes": "Classroom Location: ESC 100 ", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84274\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84274/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -158806,7 +348517,7 @@ "13:30", "15:20", "LC 103 - Linsly-Chittenden Hall 103", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -158821,10 +348532,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84258\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84258/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -158863,7 +348602,7 @@ "13:30", "15:20", "HQ 123 - Humanities Quadrangle 123", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -158878,10 +348617,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84269\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84269/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -158919,7 +348686,7 @@ "9:25", "11:15", "HQ C03 - Humanities Quadrangle C03", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -158935,10 +348702,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84278\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84278/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -158978,7 +348752,7 @@ "15:30", "17:20", "HQ C64 - Humanities Quadrangle C64", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -158990,15 +348764,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84237\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84237/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This seminar explores key concepts in modern political philosophy at a level appropriate for graduate students (to help prepare for the political theory field exam) and for advanced undergraduates who have completed substantial course work in intellectual history and\/or political theory.", + "description": "This seminar explores key concepts in modern political philosophy at a level appropriate for graduate students (to help prepare for the political theory field exam) and for advanced undergraduates who have completed substantial course work in intellectual history and/or political theory.", "short_title": "Advanced Topics in Modern Pol...", "title": "Advanced Topics in Modern Political Philosophy", "school": "GS", @@ -159035,7 +348837,7 @@ "13:30", "15:20", "RKZ 102 - Rosenkranz Hall 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -159047,15 +348849,114 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85403\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85403/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "", - "description": "An individual study course to prepare for the major field of a student's comprehensive exams. Graded Satisfactory\/Unsatisfactory.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986910223960876, + 0.9988477230072021, + 0.9984325766563416, + 0.9987545013427734, + 0.9986769556999207, + 0.9987761378288269 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9969527721405029, + 0.9985860586166382, + 0.998845100402832, + 0.9859194755554199, + 0.9987008571624756, + 0.9988622665405273 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985302686691284, + 0.9989249110221863, + 0.9988755583763123, + 0.9988887906074524 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 0.9375, + "final_counts": { + "POSITIVE": 15, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9375, + "NEGATIVE": 0.0625 + } + } + }, + { + "season_code": "202301", + "requirements": "", + "description": "An individual study course to prepare for the major field of a student's comprehensive exams. Graded Satisfactory/Unsatisfactory.", "short_title": "Oral Exam Tutorial: African H...", "title": "Oral Exam Tutorial: African History", "school": "GS", @@ -159093,12 +348994,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "An individual study course to prepare for the major field of a student's comprehensive exams. Graded Satisfactory\/Unsatisfactory.", + "description": "An individual study course to prepare for the major field of a student's comprehensive exams. Graded Satisfactory/Unsatisfactory.", "short_title": "Oral Exam Tutorial: Modern So...", "title": "Oral Exam Tutorial: Modern South Asia", "school": "GS", @@ -159136,12 +349065,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "An individual study course to prepare for the major field of a student's comprehensive exams. Graded Satisfactory\/Unsatisfactory.", + "description": "An individual study course to prepare for the major field of a student's comprehensive exams. Graded Satisfactory/Unsatisfactory.", "short_title": "Oral Exam Tutorial: The Legal...", "title": "Oral Exam Tutorial: The Legal Profession", "school": "GS", @@ -159179,12 +349136,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "An individual study course to prepare for the major field of a student's comprehensive exams. Graded Satisfactory\/Unsatisfactory.", + "description": "An individual study course to prepare for the major field of a student's comprehensive exams. Graded Satisfactory/Unsatisfactory.", "short_title": "Oral Examination Tutorial", "title": "Oral Examination Tutorial", "school": "GS", @@ -159216,12 +349201,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "An individual study course ending in a draft prospectus. Graded Satisfactory\/Unsatisfactory.", + "description": "An individual study course ending in a draft prospectus. Graded Satisfactory/Unsatisfactory.", "short_title": "Prospectus Tutorial", "title": "Prospectus Tutorial", "school": "GS", @@ -159253,12 +349266,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "An individual study course ending in a draft prospectus. Graded Satisfactory\/Unsatisfactory.", + "description": "An individual study course ending in a draft prospectus. Graded Satisfactory/Unsatisfactory.", "short_title": "Prospectus Tutorial: History ...", "title": "Prospectus Tutorial: History of Queer Theory", "school": "GS", @@ -159296,12 +349337,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "An individual study course ending in a draft prospectus. Graded Satisfactory\/Unsatisfactory.", + "description": "An individual study course ending in a draft prospectus. Graded Satisfactory/Unsatisfactory.", "short_title": "Prospectus Tutorial: Jews, Mu...", "title": "Prospectus Tutorial: Jews, Muslims, Christians", "school": "GS", @@ -159339,12 +349408,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "Offered by permission of the instructor and DGS to meet special requirements not covered by regular courses. Graded Satisfactory\/Unsatisfactory.", + "description": "Offered by permission of the instructor and DGS to meet special requirements not covered by regular courses. Graded Satisfactory/Unsatisfactory.", "short_title": "Directed Reading: Colonial La...", "title": "Directed Reading: Colonial Latin America", "school": "GS", @@ -159382,12 +349479,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "Offered by permission of the instructor and DGS to meet special requirements not covered by regular courses. Graded Satisfactory\/Unsatisfactory.", + "description": "Offered by permission of the instructor and DGS to meet special requirements not covered by regular courses. Graded Satisfactory/Unsatisfactory.", "short_title": "Directed Reading: Global Envi...", "title": "Directed Reading: Global Environmental History", "school": "GS", @@ -159425,12 +349550,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "Offered by permission of the instructor and DGS to meet special requirements not covered by regular courses. Graded Satisfactory\/Unsatisfactory.", + "description": "Offered by permission of the instructor and DGS to meet special requirements not covered by regular courses. Graded Satisfactory/Unsatisfactory.", "short_title": "Directed Reading: Global and ...", "title": "Directed Reading: Global and Int'l History", "school": "GS", @@ -159468,12 +349621,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "Offered by permission of the instructor and DGS to meet special requirements not covered by regular courses. Graded Satisfactory\/Unsatisfactory.", + "description": "Offered by permission of the instructor and DGS to meet special requirements not covered by regular courses. Graded Satisfactory/Unsatisfactory.", "short_title": "Directed Reading: Labor and P...", "title": "Directed Reading: Labor and Political Economy", "school": "GS", @@ -159511,12 +349692,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "Offered by permission of the instructor and DGS to meet special requirements not covered by regular courses. Graded Satisfactory\/Unsatisfactory.", + "description": "Offered by permission of the instructor and DGS to meet special requirements not covered by regular courses. Graded Satisfactory/Unsatisfactory.", "short_title": "Directed Reading: Latinx History", "title": "Directed Reading: Latinx History", "school": "GS", @@ -159554,12 +349763,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "Offered by permission of the instructor and DGS to meet special requirements not covered by regular courses. Graded Satisfactory\/Unsatisfactory.", + "description": "Offered by permission of the instructor and DGS to meet special requirements not covered by regular courses. Graded Satisfactory/Unsatisfactory.", "short_title": "Directed Reading: Modern Euro...", "title": "Directed Reading: Modern European Jewish History", "school": "GS", @@ -159597,12 +349834,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "Offered by permission of the instructor and DGS to meet special requirements not covered by regular courses. Graded Satisfactory\/Unsatisfactory.", + "description": "Offered by permission of the instructor and DGS to meet special requirements not covered by regular courses. Graded Satisfactory/Unsatisfactory.", "short_title": "Directed Reading: Polish East...", "title": "Directed Reading: Polish Eastern Grand Strategy", "school": "GS", @@ -159640,12 +349905,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "Offered by permission of the instructor and DGS to meet special requirements not covered by regular courses. Graded Satisfactory\/Unsatisfactory.", + "description": "Offered by permission of the instructor and DGS to meet special requirements not covered by regular courses. Graded Satisfactory/Unsatisfactory.", "short_title": "Directed Reading: Readings in...", "title": "Directed Reading: Readings in Dom & Haitian Hist", "school": "GS", @@ -159683,12 +349976,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "Offered by permission of the instructor and DGS to meet special requirements not covered by regular courses. Graded Satisfactory\/Unsatisfactory.", + "description": "Offered by permission of the instructor and DGS to meet special requirements not covered by regular courses. Graded Satisfactory/Unsatisfactory.", "short_title": "Directed Reading: Russian Pre...", "title": "Directed Reading: Russian Premodern History", "school": "GS", @@ -159726,12 +350047,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "Offered by permission of the instructor and DGS to meet special requirements not covered by regular courses. Graded Satisfactory\/Unsatisfactory.", + "description": "Offered by permission of the instructor and DGS to meet special requirements not covered by regular courses. Graded Satisfactory/Unsatisfactory.", "short_title": "Directed Reading: U. S. Empire", "title": "Directed Reading: U. S. Empire", "school": "GS", @@ -159769,12 +350118,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "Offered by permission of the instructor and DGS to meet special requirements not covered by regular courses. Graded Satisfactory\/Unsatisfactory.", + "description": "Offered by permission of the instructor and DGS to meet special requirements not covered by regular courses. Graded Satisfactory/Unsatisfactory.", "short_title": "Directed Readings", "title": "Directed Readings", "school": "GS", @@ -159806,12 +350183,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "Offered by permission of the instructor and DGS to meet special requirements not covered by regular courses. Graded Satisfactory\/Unsatisfactory.", + "description": "Offered by permission of the instructor and DGS to meet special requirements not covered by regular courses. Graded Satisfactory/Unsatisfactory.", "short_title": "Directed Readings", "title": "Directed Readings", "school": "GS", @@ -159849,7 +350254,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -159886,7 +350319,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -159929,7 +350390,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -159966,7 +350455,7 @@ "14:30", "15:45", "WTS B30 - Watson Center 60 Sachem Street B30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -159974,7 +350463,7 @@ "14:30", "15:45", "WTS B30 - Watson Center 60 Sachem Street B30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -159990,10 +350479,113 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84262\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84262/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9970368146896362, + 0.9988923668861389, + 0.9886242151260376, + 0.9987899661064148, + 0.9984079003334045, + 0.9987015724182129 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988277554512024, + 0.9986263513565063, + 0.9986391663551331, + 0.9988762736320496, + 0.9742456674575806, + 0.9948440790176392 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982591271400452, + 0.9987989664077759, + 0.9989103078842163, + 0.9988752007484436, + 0.998340368270874, + 0.9988231062889099 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 0.8888888888888888, + "final_counts": { + "POSITIVE": 16, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + } + } }, { "season_code": "202301", @@ -160031,7 +350623,7 @@ "11:35", "12:25", "LORIA 250 - Loria Center 250", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ], "Thursday": [ @@ -160039,7 +350631,7 @@ "11:35", "12:25", "LORIA 250 - Loria Center 250", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -160057,10 +350649,251 @@ "classnotes": "", "final_exam": "Monday, May 8, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84220\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84220/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988430738449097, + 0.9987469911575317, + 0.9986618757247925, + 0.9984194040298462, + 0.9986987113952637, + 0.9979054927825928, + 0.9989171028137207, + 0.9988040924072266, + 0.9988779425621033, + 0.9988023042678833, + 0.9989222288131714, + 0.9989179372787476, + 0.998776376247406, + 0.9693039059638977, + 0.9987851977348328, + 0.9989001750946045, + 0.9989092350006104, + 0.998917818069458, + 0.9979745745658875, + 0.9988822340965271, + 0.9985876083374023, + 0.9967492818832397, + 0.9989109039306641, + 0.9987943172454834, + 0.9986176490783691, + 0.9970394968986511, + 0.9988974332809448, + 0.9987525939941406, + 0.9989079236984253, + 0.9988235831260681, + 0.9989058971405029 + ], + "sentiment_counts": { + "POSITIVE": 28, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.9032258064516129, + "NEGATIVE": 0.0967741935483871 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9032258064516129 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9973748922348022, + 0.9988666772842407, + 0.9987930059432983, + 0.9978727102279663, + 0.9984986782073975, + 0.9984215497970581, + 0.998908519744873, + 0.998828113079071, + 0.9988293051719666, + 0.9988692402839661, + 0.9988935589790344, + 0.9980916380882263, + 0.9988347887992859, + 0.9948239326477051, + 0.9989030361175537, + 0.9988920092582703, + 0.9987978935241699, + 0.9984912872314453, + 0.9987384676933289, + 0.9995087385177612, + 0.9983331561088562, + 0.9986922144889832, + 0.9988389611244202, + 0.9846109747886658 + ], + "sentiment_counts": { + "POSITIVE": 23, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9583333333333334, + "NEGATIVE": 0.041666666666666664 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9583333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9984752535820007, + 0.9989033937454224, + 0.9984197616577148, + 0.9994951486587524, + 0.9989215135574341, + 0.998112678527832, + 0.9988251328468323, + 0.9983333945274353, + 0.9989269375801086, + 0.9974064230918884, + 0.9982553124427795, + 0.9989026784896851, + 0.9989097118377686, + 0.9988616704940796, + 0.997117280960083, + 0.9988135099411011, + 0.9989290833473206, + 0.9988994598388672, + 0.9974592328071594, + 0.9989049434661865, + 0.9988552331924438, + 0.9987035989761353, + 0.9989222288131714, + 0.9989323019981384, + 0.9988561868667603, + 0.9994227886199951, + 0.997117280960083, + 0.9968611001968384, + 0.9982553124427795, + 0.9989268183708191, + 0.9976589679718018, + 0.9992321729660034 + ], + "sentiment_counts": { + "POSITIVE": 26, + "NEGATIVE": 6 + }, + "sentiment_distribution": { + "POSITIVE": 0.8125, + "NEGATIVE": 0.1875 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8125 + ] + }, + "final_label": "POSITIVE", + "final_count": 77, + "final_proportion": 0.8850574712643678, + "final_counts": { + "POSITIVE": 77, + "NEGATIVE": 10 + }, + "final_distribution": { + "POSITIVE": 0.8850574712643678, + "NEGATIVE": 0.11494252873563218 + } + } }, { "season_code": "202301", @@ -160092,7 +350925,7 @@ "17:00", "17:50", "LORIA 358 - Loria Center 358", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -160109,7 +350942,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -160141,7 +351002,7 @@ "19:00", "19:50", "LORIA 358 - Loria Center 358", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -160158,7 +351019,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -160190,7 +351079,7 @@ "20:00", "20:50", "LORIA 360 - Loria Center 360", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -160207,7 +351096,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -160239,7 +351156,7 @@ "19:00", "19:50", "LORIA 360 - Loria Center 360", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -160256,7 +351173,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -160288,7 +351233,7 @@ "19:00", "19:50", "WTS B51 - Watson Center 60 Sachem Street B51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -160305,7 +351250,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -160337,7 +351310,7 @@ "17:00", "17:50", "LORIA B50 - Loria Center B50", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -160356,7 +351329,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -160394,7 +351395,7 @@ "13:00", "14:15", "LORIA B51 - Loria Center B51", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ], "Thursday": [ @@ -160402,7 +351403,7 @@ "13:00", "14:15", "LORIA B51 - Loria Center B51", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -160416,10 +351417,139 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84224\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84224/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981470108032227, + 0.9987320303916931, + 0.9980549812316895, + 0.9968497157096863, + 0.999478280544281, + 0.9984647035598755, + 0.9987634420394897, + 0.9987115859985352, + 0.9988327622413635, + 0.99642014503479 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987406134605408, + 0.998910665512085, + 0.9989283680915833, + 0.9975742697715759, + 0.9991297125816345, + 0.9987951517105103, + 0.9994500279426575, + 0.9988183379173279, + 0.9772070050239563, + 0.9988769888877869, + 0.9989075660705566 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.7272727272727273, + "NEGATIVE": 0.2727272727272727 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7272727272727273 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987034797668457, + 0.9986055493354797, + 0.997117280960083, + 0.9988037347793579, + 0.9970025420188904, + 0.9988669157028198, + 0.9988277554512024, + 0.9995051622390747, + 0.9988973140716553, + 0.998908519744873 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "final_label": "POSITIVE", + "final_count": 26, + "final_proportion": 0.8387096774193549, + "final_counts": { + "POSITIVE": 26, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.8387096774193549, + "NEGATIVE": 0.16129032258064516 + } + } }, { "season_code": "202301", @@ -160462,7 +351592,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -160500,7 +351658,7 @@ "14:30", "15:20", "WLH 208 - William L. Harkness Hall 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -160508,7 +351666,7 @@ "14:30", "15:20", "WLH 208 - William L. Harkness Hall 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -160525,10 +351683,179 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84640\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84640/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989156723022461, + 0.9987366795539856, + 0.998829185962677, + 0.9988234639167786, + 0.9986976385116577, + 0.9989200830459595, + 0.9985608458518982, + 0.9987887740135193, + 0.9988617897033691, + 0.9989307522773743, + 0.9988924860954285, + 0.998915433883667, + 0.9988803267478943, + 0.9934032559394836, + 0.9988138675689697, + 0.9987335801124573, + 0.9988559484481812, + 0.9989222288131714 + ], + "sentiment_counts": { + "POSITIVE": 18, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988704323768616, + 0.9986967444419861, + 0.9978692531585693, + 0.9988905787467957, + 0.993796706199646, + 0.9978066086769104, + 0.998895525932312, + 0.9989168643951416, + 0.9988992214202881, + 0.9989299178123474, + 0.9988970756530762, + 0.9988738894462585, + 0.9984086155891418, + 0.9991722106933594, + 0.998875081539154 + ], + "sentiment_counts": { + "POSITIVE": 14, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9333333333333333, + "NEGATIVE": 0.06666666666666667 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9333333333333333 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988783001899719, + 0.9929854273796082, + 0.9988993406295776, + 0.998931348323822, + 0.9989151954650879, + 0.9994933605194092, + 0.9987579584121704, + 0.9988266825675964, + 0.9989239573478699, + 0.998934805393219, + 0.9988683462142944, + 0.9989179372787476, + 0.9989179372787476, + 0.9979561567306519, + 0.9988732933998108, + 0.9985570311546326, + 0.998706579208374, + 0.9989244341850281 + ], + "sentiment_counts": { + "POSITIVE": 15, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 47, + "final_proportion": 0.9215686274509803, + "final_counts": { + "POSITIVE": 47, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.9215686274509803, + "NEGATIVE": 0.0784313725490196 + } + } }, { "season_code": "202301", @@ -160565,7 +351892,7 @@ "10:30", "11:20", "LUCE 102 - Luce Hall 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ], "Tuesday": [ @@ -160573,7 +351900,7 @@ "10:30", "11:20", "LUCE 102 - Luce Hall 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ], "Wednesday": [ @@ -160581,7 +351908,7 @@ "10:30", "11:20", "LUCE 102 - Luce Hall 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ], "Thursday": [ @@ -160589,7 +351916,7 @@ "10:30", "11:20", "LUCE 102 - Luce Hall 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ], "Friday": [ @@ -160597,7 +351924,7 @@ "10:30", "11:20", "LUCE 102 - Luce Hall 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ] }, @@ -160611,10 +351938,107 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85736\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85736/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9980118274688721, + 0.9988051652908325, + 0.998661994934082, + 0.9988628625869751, + 0.9986627101898193, + 0.9987704157829285 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988491535186768, + 0.9988728165626526, + 0.998808741569519, + 0.9989234805107117, + 0.998764157295227 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983950257301331, + 0.9988828301429749, + 0.9987773299217224, + 0.9988901019096375, + 0.99835604429245 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 16 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -160691,10 +352115,38 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85737\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/85737/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -160731,7 +352183,7 @@ "14:30", "15:20", "LUCE 102 - Luce Hall 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ], "Tuesday": [ @@ -160739,7 +352191,7 @@ "14:30", "15:20", "LUCE 102 - Luce Hall 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ], "Wednesday": [ @@ -160747,7 +352199,7 @@ "14:30", "15:20", "LUCE 102 - Luce Hall 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ], "Thursday": [ @@ -160755,7 +352207,7 @@ "14:30", "15:20", "LUCE 102 - Luce Hall 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ], "Friday": [ @@ -160763,7 +352215,7 @@ "14:30", "15:20", "LUCE 102 - Luce Hall 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ] }, @@ -160777,10 +352229,38 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85738\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/85738/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -160817,7 +352297,7 @@ "16:00", "17:15", "WTS B30 - Watson Center 60 Sachem Street B30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -160825,7 +352305,7 @@ "16:00", "17:15", "WTS B30 - Watson Center 60 Sachem Street B30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -160839,10 +352319,129 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85739\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/85739/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987576007843018, + 0.9988797307014465, + 0.998767614364624, + 0.998854398727417, + 0.9985498785972595, + 0.9981879591941833, + 0.9989116191864014, + 0.9982829093933105, + 0.9973928928375244 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989210367202759, + 0.9985759258270264, + 0.9989272952079773, + 0.9987986087799072, + 0.9989274144172668, + 0.9985289573669434, + 0.9989030361175537, + 0.997580885887146 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988762736320496, + 0.9988887906074524, + 0.9988355040550232, + 0.9989336133003235, + 0.9988484382629395, + 0.9985199570655823, + 0.9983687996864319, + 0.9989270567893982, + 0.9976734519004822 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 25, + "final_proportion": 0.9615384615384616, + "final_counts": { + "POSITIVE": 25, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9615384615384616, + "NEGATIVE": 0.038461538461538464 + } + } }, { "season_code": "202301", @@ -160880,7 +352479,7 @@ "14:30", "15:45", "WTS A35 - Watson Center 60 Sachem Street A35", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -160888,7 +352487,7 @@ "14:30", "15:45", "WTS A35 - Watson Center 60 Sachem Street A35", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -160904,10 +352503,107 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85746\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85746/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988701939582825, + 0.9986695051193237, + 0.9983069896697998, + 0.9988948702812195 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989067316055298, + 0.9988743662834167, + 0.9989314675331116, + 0.9988400340080261, + 0.9989380240440369 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988173842430115, + 0.998931348323822, + 0.9866195917129517, + 0.9989398121833801, + 0.9988158941268921, + 0.9989069700241089, + 0.9989197254180908 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 16 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -160950,10 +352646,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85747\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85747/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -161034,10 +352758,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85777\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85777/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -161121,7 +352873,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -161202,10 +352982,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85779\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85779/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -161262,10 +353070,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85780\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85780/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -161308,10 +353144,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85781\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85781/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -161354,12 +353218,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "The focus of this course is women\u2019s and children\u2019s health and health care in the United States. Emerging health issues and related health policy are presented and discussed in terms of epidemiology, including racial\/ethnic disparities and effects of poverty; utilization and financing of children\u2019s health care; and existing programs and public policies that facilitate access to care. Data sources and data needs are identified. Topics may include history of MCH programs and policy, Medicaid and SCHIP, low birth weight and infant mortality, maternal mortality, reproductive health, breast and cervical cancer screening, pediatric oral health, pediatric asthma, childhood obesity, adolescent health care and teen pregnancy, children with special health care needs, childhood injuries and injury prevention. Students are expected to critically evaluate the public health implications of selected conditions and the effect of public policy on availability, accessibility, acceptability of services, and accountability in health care for women and children.", + "description": "The focus of this course is women\u2019s and children\u2019s health and health care in the United States. Emerging health issues and related health policy are presented and discussed in terms of epidemiology, including racial/ethnic disparities and effects of poverty; utilization and financing of children\u2019s health care; and existing programs and public policies that facilitate access to care. Data sources and data needs are identified. Topics may include history of MCH programs and policy, Medicaid and SCHIP, low birth weight and infant mortality, maternal mortality, reproductive health, breast and cervical cancer screening, pediatric oral health, pediatric asthma, childhood obesity, adolescent health care and teen pregnancy, children with special health care needs, childhood injuries and injury prevention. Students are expected to critically evaluate the public health implications of selected conditions and the effect of public policy on availability, accessibility, acceptability of services, and accountability in health care for women and children.", "short_title": "Health of Women and Children", "title": "Health of Women and Children", "school": "PH", @@ -161391,7 +353283,7 @@ "15:00", "16:50", "LEPH 101 - Laboratory of EPH 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ] }, @@ -161403,15 +353295,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86110\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86110/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "Prerequisite: permission of the instructor.", - "description": "This course is one of the options available to HPM students to fulfill the M.P.H. applied practice experience requirement. The practicum is a project-based learning experience in which students work 8\u201310 hours each week in their placement. The Health Care Management Practicum (section 1) allows students to focus on current issues confronting a hospital department while working under the guidance of a departmental administrator. Students are required to attend the first week of class to enroll. The Health Policy Practicum (section 2) allows students to work on current state and\/or local health policy issues while placed with state and\/or local legislative or executive agency policy makers, or with senior staff at a nonprofit health policy or advocacy group.", + "description": "This course is one of the options available to HPM students to fulfill the M.P.H. applied practice experience requirement. The practicum is a project-based learning experience in which students work 8\u201310 hours each week in their placement. The Health Care Management Practicum (section 1) allows students to focus on current issues confronting a hospital department while working under the guidance of a departmental administrator. Students are required to attend the first week of class to enroll. The Health Policy Practicum (section 2) allows students to work on current state and/or local health policy issues while placed with state and/or local legislative or executive agency policy makers, or with senior staff at a nonprofit health policy or advocacy group.", "short_title": "Health Policy or Health Care ...", "title": "Health Policy or Health Care Management Practicum", "school": "PH", @@ -161443,7 +353363,7 @@ "12:00", "13:00", "LEPH 103 - Laboratory of EPH 103", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ] }, @@ -161455,15 +353375,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86111\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86111/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "Prerequisite: permission of the instructor.", - "description": "This course is one of the options available to HPM students to fulfill the M.P.H. applied practice experience requirement. The practicum is a project-based learning experience in which students work 8\u201310 hours each week in their placement. The Health Care Management Practicum (section 1) allows students to focus on current issues confronting a hospital department while working under the guidance of a departmental administrator. Students are required to attend the first week of class to enroll. The Health Policy Practicum (section 2) allows students to work on current state and\/or local health policy issues while placed with state and\/or local legislative or executive agency policy makers, or with senior staff at a nonprofit health policy or advocacy group.", + "description": "This course is one of the options available to HPM students to fulfill the M.P.H. applied practice experience requirement. The practicum is a project-based learning experience in which students work 8\u201310 hours each week in their placement. The Health Care Management Practicum (section 1) allows students to focus on current issues confronting a hospital department while working under the guidance of a departmental administrator. Students are required to attend the first week of class to enroll. The Health Policy Practicum (section 2) allows students to work on current state and/or local health policy issues while placed with state and/or local legislative or executive agency policy makers, or with senior staff at a nonprofit health policy or advocacy group.", "short_title": "Health Policy or Health Care ...", "title": "Health Policy or Health Care Management Practicum", "school": "PH", @@ -161495,7 +353443,7 @@ "12:00", "13:00", "LEPH 115 - Laboratory of EPH 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ] }, @@ -161507,10 +353455,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86112\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86112/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -161547,7 +353523,7 @@ "13:00", "14:50", "LEPH 101 - Laboratory of EPH 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ] }, @@ -161561,10 +353537,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86113\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86113/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -161601,7 +353605,7 @@ "17:00", "18:50", "CO47 106B - 47 College Street (CLP) 106B", - "https:\/\/map.yale.edu\/?id=1910#!m\/559997" + "https://map.yale.edu/?id=1910#!m/559997" ] ] }, @@ -161613,10 +353617,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86114\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86114/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -161653,7 +353685,7 @@ "13:00", "14:50", "CO47 106A - 47 College Street (CLP) 106A", - "https:\/\/map.yale.edu\/?id=1910#!m\/559997" + "https://map.yale.edu/?id=1910#!m/559997" ] ] }, @@ -161661,17 +353693,45 @@ "areas": [], "flags": [ "GB: Elective", - "PH: Global Health, Development\/Political Economy" + "PH: Global Health, Development/Political Economy" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86115\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86115/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -161709,7 +353769,7 @@ "8:00", "9:50", "LEPH 115 - Laboratory of EPH 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ] }, @@ -161723,11 +353783,39 @@ "rp_attr": "", "classnotes": "", "final_exam": "", - "course_home_url": "https:\/\/yale.instructure.com\/courses\/85466", + "course_home_url": "https://yale.instructure.com/courses/85466", "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -161764,7 +353852,7 @@ "10:00", "11:50", "LEPH 102 - Laboratory of EPH 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ], "Friday": [ @@ -161772,24 +353860,52 @@ "15:00", "15:50", "LEPH 102 - Laboratory of EPH 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ] }, "skills": [], "areas": [], "flags": [ - "PH: Global Health, Development\/Political Economy" + "PH: Global Health, Development/Political Economy" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86116\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86116/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -161826,7 +353942,7 @@ "15:00", "16:50", "LEPH 101 - Laboratory of EPH 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ] }, @@ -161834,22 +353950,50 @@ "areas": [], "flags": [ "GB: Elective", - "PH: Global Health, Development\/Political Economy" + "PH: Global Health, Development/Political Economy" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86117\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86117/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "Prerequisite: EPH 505.", - "description": "This course introduces students to quantitative social science methods\u2014with an emphasis on causal inference\u2014for health services research. The statistical concepts and methods are illustrated using data and examples primarily from the fields of health services research and health economics. The course begins with a refresher on linear regression (with a focus on intuition), progresses to causality and experimental research design, and then finishes with a tour of quasi-experimental techniques common in health services research: matching, difference-in-differences, regression discontinuity, instrumental variables, and synthetic control methods. Students learn to apply these techniques to data in the programming language of their choice (e.g., Stata\/R) as well as gain general experience analyzing and visualizing data.", + "description": "This course introduces students to quantitative social science methods\u2014with an emphasis on causal inference\u2014for health services research. The statistical concepts and methods are illustrated using data and examples primarily from the fields of health services research and health economics. The course begins with a refresher on linear regression (with a focus on intuition), progresses to causality and experimental research design, and then finishes with a tour of quasi-experimental techniques common in health services research: matching, difference-in-differences, regression discontinuity, instrumental variables, and synthetic control methods. Students learn to apply these techniques to data in the programming language of their choice (e.g., Stata/R) as well as gain general experience analyzing and visualizing data.", "short_title": "Methods in Health Services Re...", "title": "Methods in Health Services Research", "school": "PH", @@ -161881,7 +354025,7 @@ "15:00", "16:50", "LEPH WINSL - Laboratory of EPH WINSL", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ], "Thursday": [ @@ -161889,7 +354033,7 @@ "15:00", "16:20", "", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ] }, @@ -161903,10 +354047,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86118\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86118/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -161944,7 +354116,7 @@ "13:00", "14:50", "LEPH 115 - Laboratory of EPH 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ] }, @@ -161958,10 +354130,89 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84225\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84225/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998822033405304, + 0.9988033771514893 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988399147987366, + 0.9995120763778687 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9972681999206543, + 0.9995142221450806 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 0 + }, + "sentiment_distribution": { + "NEGATIVE": 1.0, + "POSITIVE": 0.0 + }, + "sentiment_overall": [ + "NEGATIVE", + 1.0 + ] + }, + "final_label": "neutral", + "final_count": 0.5, + "final_proportion": 0.5, + "final_counts": { + "POSITIVE": 3, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + } + } }, { "season_code": "202301", @@ -161998,7 +354249,7 @@ "10:00", "11:50", "LEPH 115 - Laboratory of EPH 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ] }, @@ -162010,15 +354261,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86119\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86119/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "The Food and Drug Administration (FDA) is the premier consumer protection agency in the United States, with control over the availability and public discourse about potentially lifesaving therapeutics, foods, supplements, and related consumer products. Its authority has been built in response to public health crises and is constantly under scrutiny from all sides of the political spectrum. The class reviews the history of the FDA\u2019s regulation over the health care products market, the noteworthy legislation that has shaped its oversight in this area, Supreme Court and other cases that have impacted its authority, and an introduction to key current controversies related to the FDA that affect health care delivery. (This course does not cover food law.) The enduring theme is how the FDA balances its vital public safety role against countervailing forces of personal autonomy and the rights or interests of consumers, patients, physicians, and corporations. Each class is organized around interactive discussion introducing students to the material, including hypothetical cases that require students to apply the day\u2019s lessons and themes in determining legal and policy solutions. Students with high-quality papers will be given specific guidance in submitting them for publication in the peer-reviewed medical\/public health\/policy literature. A paper of 2,500\u20134,000 words is required.", + "description": "The Food and Drug Administration (FDA) is the premier consumer protection agency in the United States, with control over the availability and public discourse about potentially lifesaving therapeutics, foods, supplements, and related consumer products. Its authority has been built in response to public health crises and is constantly under scrutiny from all sides of the political spectrum. The class reviews the history of the FDA\u2019s regulation over the health care products market, the noteworthy legislation that has shaped its oversight in this area, Supreme Court and other cases that have impacted its authority, and an introduction to key current controversies related to the FDA that affect health care delivery. (This course does not cover food law.) The enduring theme is how the FDA balances its vital public safety role against countervailing forces of personal autonomy and the rights or interests of consumers, patients, physicians, and corporations. Each class is organized around interactive discussion introducing students to the material, including hypothetical cases that require students to apply the day\u2019s lessons and themes in determining legal and policy solutions. Students with high-quality papers will be given specific guidance in submitting them for publication in the peer-reviewed medical/public health/policy literature. A paper of 2,500\u20134,000 words is required.", "short_title": "Food and Drug Administration Law", "title": "Food and Drug Administration Law", "school": "PH", @@ -162050,7 +354329,7 @@ "13:00", "14:50", "LEPH WINSL - Laboratory of EPH WINSL", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ] }, @@ -162062,10 +354341,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86120\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86120/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -162102,7 +354409,7 @@ "13:00", "14:50", "CO47 106A - 47 College Street (CLP) 106A", - "https:\/\/map.yale.edu\/?id=1910#!m\/559997" + "https://map.yale.edu/?id=1910#!m/559997" ] ] }, @@ -162114,10 +354421,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86121\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86121/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -162154,7 +354489,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -162191,7 +354554,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -162228,7 +354619,7 @@ "12:00", "13:20", "LEPH 103 - Laboratory of EPH 103", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ] }, @@ -162243,7 +354634,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -162280,7 +354699,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -162317,12 +354764,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course aims to familiarize students with the principles and practice of innovation and entrepreneurship in the context of public health, as defined by the well-being of society, focusing on social and environmental determinants of health. We examine a set of public health challenges within the context of the Sustainable Development Goals (SDGs), using a hybrid method combining case studies and assignments. Case studies provide an opportunity to analyze cross-cutting challenges faced by innovators and entrepreneurs in the field of public health. Assignments allow students to dig deeper into specific topic areas within public health innovation and entrepreneurship. The target audience for this course includes graduate and undergraduate students in the M.B.A., M.A.M., M.P.H., and other programs at Yale SOM, the School of Public Health, and across campus. The course is a precursor, but not a prerequisite, for ENV 632\/MGT 612, where students design ventures tackling social challenges through new or existing organizations.", + "description": "This course aims to familiarize students with the principles and practice of innovation and entrepreneurship in the context of public health, as defined by the well-being of society, focusing on social and environmental determinants of health. We examine a set of public health challenges within the context of the Sustainable Development Goals (SDGs), using a hybrid method combining case studies and assignments. Case studies provide an opportunity to analyze cross-cutting challenges faced by innovators and entrepreneurs in the field of public health. Assignments allow students to dig deeper into specific topic areas within public health innovation and entrepreneurship. The target audience for this course includes graduate and undergraduate students in the M.B.A., M.A.M., M.P.H., and other programs at Yale SOM, the School of Public Health, and across campus. The course is a precursor, but not a prerequisite, for ENV 632/MGT 612, where students design ventures tackling social challenges through new or existing organizations.", "short_title": "Public Health Entrepreneurshi...", "title": "Public Health Entrepreneurship and Intrapreneurship", "school": "PH", @@ -162357,7 +354832,7 @@ "10:10", "11:30", "EVANS 4400 - Edward P Evans Hall 4400", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Wednesday": [ @@ -162365,14 +354840,14 @@ "10:10", "11:30", "EVANS 4400 - Edward P Evans Hall 4400", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, "skills": [], "areas": [], "flags": [ - "PH: Global Health, Development\/Political Economy" + "PH: Global Health, Development/Political Economy" ], "regnotes": "", "rp_attr": "", @@ -162382,12 +354857,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course aims to familiarize students with the principles and practice of innovation and entrepreneurship in the context of public health, as defined by the well-being of society, focusing on social and environmental determinants of health. We examine a set of public health challenges within the context of the Sustainable Development Goals (SDGs), using a hybrid method combining case studies and assignments. Case studies provide an opportunity to analyze cross-cutting challenges faced by innovators and entrepreneurs in the field of public health. Assignments allow students to dig deeper into specific topic areas within public health innovation and entrepreneurship. The target audience for this course includes graduate and undergraduate students in the M.B.A., M.A.M., M.P.H., and other programs at Yale SOM, the School of Public Health, and across campus. The course is a precursor, but not a prerequisite, for ENV 632\/MGT 612, where students design ventures tackling social challenges through new or existing organizations.", + "description": "This course aims to familiarize students with the principles and practice of innovation and entrepreneurship in the context of public health, as defined by the well-being of society, focusing on social and environmental determinants of health. We examine a set of public health challenges within the context of the Sustainable Development Goals (SDGs), using a hybrid method combining case studies and assignments. Case studies provide an opportunity to analyze cross-cutting challenges faced by innovators and entrepreneurs in the field of public health. Assignments allow students to dig deeper into specific topic areas within public health innovation and entrepreneurship. The target audience for this course includes graduate and undergraduate students in the M.B.A., M.A.M., M.P.H., and other programs at Yale SOM, the School of Public Health, and across campus. The course is a precursor, but not a prerequisite, for ENV 632/MGT 612, where students design ventures tackling social challenges through new or existing organizations.", "short_title": "Public Health Entrepreneurshi...", "title": "Public Health Entrepreneurship and Intrapreneurship", "school": "PH", @@ -162422,7 +354925,7 @@ "13:00", "14:20", "EVANS 4400 - Edward P Evans Hall 4400", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Wednesday": [ @@ -162430,14 +354933,14 @@ "13:00", "14:20", "EVANS 4400 - Edward P Evans Hall 4400", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, "skills": [], "areas": [], "flags": [ - "PH: Global Health, Development\/Political Economy" + "PH: Global Health, Development/Political Economy" ], "regnotes": "", "rp_attr": "", @@ -162447,12 +354950,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course serves as a capstone for students in the Health Care Management Program and is intended to prepare students for leadership roles in diverse health care organizations domestically and internationally. Drawing on theories, concepts, and tools from prior course work, students address complex challenges in health care leadership and management to improve functioning of teams, organizations, and agencies in health systems. Students apply principles and practices of grand strategy (e.g., a comprehensive approach to achieving large ends with limited means) to address a consequential problem in health. An interdisciplinary lens is essential. Disciplinary foci include: leadership\/management; organizational behavior; finance\/accounting\/economics; policy and regulations; operations; marketing; negotiations; epidemiology; and research methods including literature reviews. Students engage with the content through in-class exercises, facilitated discussions, readings, cases (from U.S. domestic and international settings), guest experts, working in a team, and written and oral presentations.", + "description": "This course serves as a capstone for students in the Health Care Management Program and is intended to prepare students for leadership roles in diverse health care organizations domestically and internationally. Drawing on theories, concepts, and tools from prior course work, students address complex challenges in health care leadership and management to improve functioning of teams, organizations, and agencies in health systems. Students apply principles and practices of grand strategy (e.g., a comprehensive approach to achieving large ends with limited means) to address a consequential problem in health. An interdisciplinary lens is essential. Disciplinary foci include: leadership/management; organizational behavior; finance/accounting/economics; policy and regulations; operations; marketing; negotiations; epidemiology; and research methods including literature reviews. Students engage with the content through in-class exercises, facilitated discussions, readings, cases (from U.S. domestic and international settings), guest experts, working in a team, and written and oral presentations.", "short_title": "Managing Health Care in Compl...", "title": "Managing Health Care in Complex Systems", "school": "PH", @@ -162484,25 +355015,25 @@ "13:00", "14:50", "CO47 106B - 47 College Street (CLP) 106B", - "https:\/\/map.yale.edu\/?id=1910#!m\/559997" + "https://map.yale.edu/?id=1910#!m/559997" ], [ "17:00", "17:50", "LEPH 115 - Laboratory of EPH 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/559997" + "https://map.yale.edu/?id=1910#!m/559997" ], [ "17:00", "17:50", "LEPH 101 - Laboratory of EPH 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559997" + "https://map.yale.edu/?id=1910#!m/559997" ], [ "17:00", "17:50", "LEPH 103 - Laboratory of EPH 103", - "https:\/\/map.yale.edu\/?id=1910#!m\/559997" + "https://map.yale.edu/?id=1910#!m/559997" ] ] }, @@ -162516,10 +355047,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85467\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85467/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -162557,7 +355116,7 @@ "10:30", "11:20", "LORIA 250 - Loria Center 250", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ], "Thursday": [ @@ -162565,7 +355124,7 @@ "10:30", "11:20", "LORIA 250 - Loria Center 250", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -162579,10 +355138,237 @@ "classnotes": "", "final_exam": "Wednesday, May 10, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84230\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84230/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983633160591125, + 0.9988439083099365, + 0.9987447261810303, + 0.9988932013511658, + 0.9987266659736633, + 0.9987027645111084, + 0.9987888932228088, + 0.9977971315383911, + 0.998842716217041, + 0.9986085295677185, + 0.9989272952079773, + 0.998856782913208, + 0.9988189339637756, + 0.9987820982933044, + 0.9987651109695435, + 0.9988901019096375, + 0.998921275138855, + 0.9971346855163574, + 0.9988757967948914, + 0.9988006353378296, + 0.9987351298332214, + 0.9989129304885864, + 0.9989191293716431, + 0.9987803101539612, + 0.9987647533416748, + 0.9988459348678589 + ], + "sentiment_counts": { + "POSITIVE": 26, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.99837327003479, + 0.9986346364021301, + 0.9945698380470276, + 0.9989328980445862, + 0.9989323019981384, + 0.9987226128578186, + 0.9989262223243713, + 0.9994440674781799, + 0.9994282126426697, + 0.9986463189125061, + 0.9988687634468079, + 0.9989303946495056, + 0.9989257454872131, + 0.9988937973976135, + 0.9989029169082642, + 0.998836100101471, + 0.998910665512085, + 0.9988489151000977, + 0.9989333748817444, + 0.9989160299301147, + 0.9986649751663208, + 0.9966357350349426, + 0.9989357590675354, + 0.9989277720451355, + 0.9987632036209106, + 0.9987083673477173 + ], + "sentiment_counts": { + "POSITIVE": 24, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.9230769230769231, + "NEGATIVE": 0.07692307692307693 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9230769230769231 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994741082191467, + 0.9970184564590454, + 0.9985466599464417, + 0.9988595247268677, + 0.998918890953064, + 0.9982553124427795, + 0.9893251657485962, + 0.9995032548904419, + 0.9989041090011597, + 0.9985309839248657, + 0.9989302754402161, + 0.99891197681427, + 0.9989268183708191, + 0.9985820055007935, + 0.9980016350746155, + 0.9988948702812195, + 0.9989150762557983, + 0.9989246726036072, + 0.998914361000061, + 0.9989197254180908, + 0.9986078143119812, + 0.9982553124427795, + 0.9989246726036072, + 0.9989093542098999, + 0.9976135492324829, + 0.9989314675331116, + 0.9989368319511414, + 0.9989073276519775 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 25 + }, + "sentiment_distribution": { + "NEGATIVE": 0.10714285714285714, + "POSITIVE": 0.8928571428571429 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8928571428571429 + ] + }, + "final_label": "POSITIVE", + "final_count": 75, + "final_proportion": 0.9375, + "final_counts": { + "POSITIVE": 75, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.9375, + "NEGATIVE": 0.0625 + } + } }, { "season_code": "202301", @@ -162614,7 +355400,7 @@ "14:30", "15:20", "WALL53 B-04 - 53 Wall Street B-04", - "https:\/\/map.yale.edu\/?id=1910#!m\/559554" + "https://map.yale.edu/?id=1910#!m/559554" ] ] }, @@ -162631,7 +355417,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -162663,7 +355477,7 @@ "15:30", "16:20", "WALL53 B-04 - 53 Wall Street B-04", - "https:\/\/map.yale.edu\/?id=1910#!m\/559554" + "https://map.yale.edu/?id=1910#!m/559554" ] ] }, @@ -162680,7 +355494,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -162712,7 +355554,7 @@ "9:25", "10:15", "WTS B62 - Watson Center 60 Sachem Street B62", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -162729,7 +355571,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -162761,7 +355631,7 @@ "10:30", "11:20", "WLH 205 - William L. Harkness Hall 205", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -162778,7 +355648,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -162810,7 +355708,7 @@ "11:35", "12:25", "WTS B62 - Watson Center 60 Sachem Street B62", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -162827,7 +355725,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -162859,7 +355785,7 @@ "13:30", "14:20", "HQ 123 - Humanities Quadrangle 123", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -162876,7 +355802,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -162913,7 +355867,7 @@ "10:30", "11:20", "LORIA 250 - Loria Center 250", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ], "Wednesday": [ @@ -162921,7 +355875,7 @@ "10:30", "11:20", "LORIA 250 - Loria Center 250", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -162935,10 +355889,171 @@ "classnotes": "", "final_exam": "Friday, May 5, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84234\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84234/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988069534301758, + 0.9989314675331116, + 0.9987877011299133, + 0.9989036321640015, + 0.9988362193107605, + 0.9989103078842163, + 0.9988491535186768, + 0.9987622499465942, + 0.9988719820976257, + 0.9985107779502869, + 0.9988677501678467, + 0.998853325843811, + 0.9989070892333984, + 0.9988840222358704, + 0.9988983869552612, + 0.9988662004470825 + ], + "sentiment_counts": { + "POSITIVE": 16, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986222982406616, + 0.9995064735412598, + 0.9988445043563843, + 0.9989005327224731, + 0.9987534284591675, + 0.9988523721694946, + 0.9987922310829163, + 0.998842716217041, + 0.9988835453987122, + 0.9963512420654297, + 0.9988415837287903, + 0.9989159107208252, + 0.9988585710525513, + 0.9982603192329407, + 0.9964993000030518, + 0.9988648891448975 + ], + "sentiment_counts": { + "POSITIVE": 14, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984748959541321, + 0.9989197254180908, + 0.9987074136734009, + 0.9988446235656738, + 0.9988880753517151, + 0.9966907501220703, + 0.9987163543701172, + 0.9988855719566345, + 0.997117280960083, + 0.9989262223243713, + 0.9960403442382812, + 0.9979144930839539, + 0.9965188503265381, + 0.9989019632339478, + 0.9989290833473206 + ], + "sentiment_counts": { + "POSITIVE": 14, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9333333333333333, + "NEGATIVE": 0.06666666666666667 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9333333333333333 + ] + }, + "final_label": "POSITIVE", + "final_count": 44, + "final_proportion": 0.9361702127659575, + "final_counts": { + "POSITIVE": 44, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.9361702127659575, + "NEGATIVE": 0.06382978723404255 + } + } }, { "season_code": "202301", @@ -162969,7 +356084,7 @@ "13:30", "14:20", "LORIA 258 - Loria Center 258", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -162986,7 +356101,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -163017,7 +356160,7 @@ "15:30", "16:20", "LORIA 258 - Loria Center 258", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -163034,7 +356177,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -163065,7 +356236,7 @@ "14:30", "15:20", "LORIA 259 - Loria Center 259", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -163082,7 +356253,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -163113,7 +356312,7 @@ "14:30", "15:20", "LORIA 258 - Loria Center 258", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -163130,7 +356329,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -163161,7 +356388,7 @@ "15:30", "16:20", "LORIA 259 - Loria Center 259", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -163178,7 +356405,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -163217,7 +356472,7 @@ "13:30", "14:20", "LORIA 351 - Loria Center 351", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ], "Wednesday": [ @@ -163225,7 +356480,7 @@ "13:30", "14:20", "LORIA 351 - Loria Center 351", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -163242,10 +356497,89 @@ "classnotes": "", "final_exam": "Tuesday, May 9, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86013\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86013/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987807869911194, + 0.9987756609916687, + 0.9989203214645386 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989007711410522 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989268183708191, + 0.9988956451416016, + 0.9935749173164368 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 7 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -163278,7 +356612,7 @@ "15:30", "16:20", "LORIA 259 - Loria Center 259", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -163295,7 +356629,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -163328,7 +356690,7 @@ "17:00", "17:50", "LORIA 259 - Loria Center 259", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -163345,7 +356707,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -163383,7 +356773,7 @@ "9:25", "10:15", "LORIA 250 - Loria Center 250", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ], "Thursday": [ @@ -163391,7 +356781,7 @@ "9:25", "10:15", "LORIA 250 - Loria Center 250", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -163399,17 +356789,118 @@ "areas": [], "flags": [ "YC HistofArt: Transchron", - "YC HistofArt: Asia\/Near East" + "YC HistofArt: Asia/Near East" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84236\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84236/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982975125312805, + 0.9988079071044922, + 0.9988799691200256, + 0.9989094734191895, + 0.9989238381385803 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9995006322860718, + 0.9988915324211121, + 0.9989319443702698, + 0.9989234805107117, + 0.9972996115684509 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 4 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2, + "POSITIVE": 0.8 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989288449287415, + 0.9989295601844788, + 0.997289776802063, + 0.9989172220230103, + 0.9987086057662964, + 0.9989334940910339, + 0.998802661895752 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 0.9411764705882353, + "final_counts": { + "POSITIVE": 16, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9411764705882353, + "NEGATIVE": 0.058823529411764705 + } + } }, { "season_code": "202301", @@ -163441,7 +356932,7 @@ "15:30", "16:20", "LORIA B50 - Loria Center B50", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -163456,7 +356947,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -163488,7 +357007,7 @@ "14:30", "15:20", "LORIA B50 - Loria Center B50", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -163503,7 +357022,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -163540,7 +357087,7 @@ "11:35", "12:25", "LORIA 351 - Loria Center 351", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ], "Thursday": [ @@ -163548,7 +357095,7 @@ "11:35", "12:25", "LORIA 351 - Loria Center 351", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -163565,10 +357112,185 @@ "classnotes": "", "final_exam": "Monday, May 8, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84240\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84240/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988740086555481, + 0.9988111257553101, + 0.9988916516304016, + 0.998839795589447, + 0.9989109039306641, + 0.9988081455230713, + 0.9988653659820557, + 0.9982689619064331, + 0.9988980293273926, + 0.9989140033721924, + 0.9988399147987366, + 0.9989012479782104, + 0.9989334940910339, + 0.9985138773918152, + 0.998894989490509, + 0.9989293217658997, + 0.9984277486801147 + ], + "sentiment_counts": { + "POSITIVE": 17, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989299178123474, + 0.9989169836044312, + 0.9989320635795593, + 0.9988310933113098, + 0.9989284873008728, + 0.9989157915115356, + 0.9989376664161682, + 0.9989187717437744, + 0.9988283514976501, + 0.9989173412322998, + 0.9981727600097656, + 0.9984360337257385, + 0.9989137649536133, + 0.9989058971405029, + 0.9988571405410767, + 0.9988574981689453, + 0.9989227652549744, + 0.9989355206489563, + 0.9988309741020203 + ], + "sentiment_counts": { + "POSITIVE": 19, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989357590675354, + 0.998932421207428, + 0.9989288449287415, + 0.9989063739776611, + 0.997117280960083, + 0.9989357590675354, + 0.9984498023986816, + 0.9989190101623535, + 0.9989210367202759, + 0.9989270567893982, + 0.9989224672317505, + 0.998685896396637, + 0.9989138841629028, + 0.9988589286804199, + 0.9989179372787476, + 0.9985149502754211, + 0.9989066123962402, + 0.9989031553268433, + 0.997117280960083 + ], + "sentiment_counts": { + "POSITIVE": 19, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 55, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 55 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -163599,7 +357321,7 @@ "10:30", "11:20", "LORIA 358 - Loria Center 358", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -163616,7 +357338,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -163647,7 +357397,7 @@ "11:35", "12:25", "LORIA 358 - Loria Center 358", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -163664,7 +357414,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -163695,7 +357473,7 @@ "13:30", "14:20", "LORIA 358 - Loria Center 358", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -163712,7 +357490,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -163743,7 +357549,7 @@ "14:30", "15:20", "LORIA 358 - Loria Center 358", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -163760,7 +357566,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -163797,7 +357631,7 @@ "14:30", "15:20", "LORIA 351 - Loria Center 351", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ], "Wednesday": [ @@ -163805,7 +357639,7 @@ "14:30", "15:20", "LORIA 351 - Loria Center 351", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -163823,10 +357657,117 @@ "classnotes": "", "final_exam": "Thursday, May 4, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85978\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85978/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998923122882843, + 0.9989135265350342, + 0.9986181259155273, + 0.9974606037139893, + 0.9987579584121704, + 0.9987081289291382 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989271759986877, + 0.9989354014396667, + 0.9987139701843262, + 0.9993124008178711, + 0.9989163875579834, + 0.9988940358161926 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985916018486023, + 0.9989219903945923, + 0.9994707703590393, + 0.997117280960083, + 0.9987986087799072, + 0.9976276755332947, + 0.9979202151298523, + 0.9989174604415894 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 0.9, + "final_counts": { + "POSITIVE": 18, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + } + } }, { "season_code": "202301", @@ -163857,7 +357798,7 @@ "11:35", "12:25", "LORIA 358 - Loria Center 358", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -163874,7 +357815,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -163905,7 +357874,7 @@ "10:30", "11:20", "LORIA 358 - Loria Center 358", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -163922,7 +357891,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -163960,7 +357957,7 @@ "13:00", "14:15", "LORIA B50 - Loria Center B50", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ], "Thursday": [ @@ -163968,7 +357965,7 @@ "13:00", "14:15", "LORIA B50 - Loria Center B50", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -163985,10 +357982,61 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84243\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84243/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988672733306885 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.998907208442688 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 2, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 2 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -164025,7 +358073,7 @@ "13:00", "14:15", "LORIA 250 - Loria Center 250", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ], "Wednesday": [ @@ -164033,7 +358081,7 @@ "13:00", "14:15", "LORIA 250 - Loria Center 250", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -164054,10 +358102,133 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86213\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86213/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998918890953064, + 0.9972391128540039, + 0.9988922476768494, + 0.9988596439361572, + 0.9974575638771057, + 0.998878538608551, + 0.9988284707069397, + 0.9985975623130798 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989258646965027, + 0.9980947375297546, + 0.9989362359046936, + 0.9976933598518372, + 0.9988521337509155, + 0.9984238147735596, + 0.9989323019981384, + 0.9943442344665527, + 0.9989011287689209, + 0.9989184141159058 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987881779670715, + 0.9982008934020996, + 0.9989141225814819, + 0.9989176988601685, + 0.9969793558120728, + 0.9988638162612915, + 0.9989243149757385, + 0.9981328845024109, + 0.9989269375801086, + 0.9989008903503418 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "final_label": "POSITIVE", + "final_count": 27, + "final_proportion": 0.9642857142857143, + "final_counts": { + "POSITIVE": 27, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9642857142857143, + "NEGATIVE": 0.03571428571428571 + } + } }, { "season_code": "202301", @@ -164094,7 +358265,7 @@ "13:00", "14:15", "LORIA 351 - Loria Center 351", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ], "Thursday": [ @@ -164102,7 +358273,7 @@ "13:00", "14:15", "LORIA 351 - Loria Center 351", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -164116,10 +358287,155 @@ "classnotes": "", "final_exam": "Sunday, May 7, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85401\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/85401/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986211061477661, + 0.9975506663322449, + 0.9988604784011841, + 0.9928927421569824, + 0.9972374439239502, + 0.9988954067230225, + 0.9986134767532349, + 0.9987412095069885, + 0.9986513257026672, + 0.9986708164215088, + 0.9985427856445312, + 0.9989290833473206, + 0.998881995677948 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988749623298645, + 0.9994947910308838, + 0.9988654851913452, + 0.980769157409668, + 0.9962173104286194, + 0.9988928437232971, + 0.9988918900489807, + 0.9987794756889343, + 0.9988803267478943, + 0.9988390803337097, + 0.9987674951553345, + 0.9989369511604309 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9166666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9931348562240601, + 0.9982553124427795, + 0.9989350438117981, + 0.9988969564437866, + 0.9994899034500122, + 0.9989087581634521, + 0.9989294409751892, + 0.9988170862197876, + 0.997117280960083, + 0.9988034963607788, + 0.9988816380500793, + 0.9987754225730896, + 0.99892657995224, + 0.9989349246025085 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9285714285714286, + "NEGATIVE": 0.07142857142857142 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9285714285714286 + ] + }, + "final_label": "POSITIVE", + "final_count": 37, + "final_proportion": 0.9487179487179487, + "final_counts": { + "POSITIVE": 37, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9487179487179487, + "NEGATIVE": 0.05128205128205128 + } + } }, { "season_code": "202301", @@ -164157,7 +358473,7 @@ "13:30", "14:20", "LORIA 250 - Loria Center 250", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ], "Thursday": [ @@ -164165,7 +358481,7 @@ "13:30", "14:20", "LORIA 250 - Loria Center 250", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -164183,10 +358499,197 @@ "classnotes": "", "final_exam": "Sunday, May 7, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84247\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84247/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989343285560608, + 0.9988504648208618, + 0.9962563514709473, + 0.9988486766815186, + 0.9989031553268433, + 0.9988505840301514, + 0.9986708164215088, + 0.9989235997200012, + 0.9987183809280396, + 0.998724639415741, + 0.998706579208374, + 0.9988276362419128, + 0.9987008571624756, + 0.9988861680030823, + 0.9988823533058167, + 0.9988368153572083, + 0.998803973197937, + 0.9988728165626526, + 0.9987857937812805, + 0.9987633228302002 + ], + "sentiment_counts": { + "POSITIVE": 20, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988037347793579, + 0.9989131689071655, + 0.9989110231399536, + 0.9988991022109985, + 0.9989148378372192, + 0.9989238381385803, + 0.9986780285835266, + 0.998915433883667, + 0.998778760433197, + 0.9989180564880371, + 0.9989036321640015, + 0.9984006285667419, + 0.998914361000061, + 0.9987983703613281, + 0.998823344707489, + 0.9986989498138428, + 0.996812641620636, + 0.9983301758766174 + ], + "sentiment_counts": { + "POSITIVE": 18, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989288449287415, + 0.998893678188324, + 0.9982798099517822, + 0.9989270567893982, + 0.9988471269607544, + 0.9989330172538757, + 0.9974592328071594, + 0.9988605976104736, + 0.9980168342590332, + 0.9989079236984253, + 0.9989080429077148, + 0.9985999464988708, + 0.9987595081329346, + 0.9988610744476318, + 0.9968560934066772, + 0.9989230036735535, + 0.998910665512085, + 0.9986488223075867, + 0.9989197254180908, + 0.9982250332832336, + 0.9988434314727783, + 0.9988749623298645 + ], + "sentiment_counts": { + "POSITIVE": 21, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9545454545454546, + "NEGATIVE": 0.045454545454545456 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9545454545454546 + ] + }, + "final_label": "POSITIVE", + "final_count": 59, + "final_proportion": 0.9833333333333333, + "final_counts": { + "POSITIVE": 59, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9833333333333333, + "NEGATIVE": 0.016666666666666666 + } + } }, { "season_code": "202301", @@ -164218,7 +358721,7 @@ "14:30", "15:20", "LORIA 259 - Loria Center 259", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -164235,7 +358738,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -164267,7 +358798,7 @@ "16:00", "16:50", "LORIA 258 - Loria Center 258", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -164284,7 +358815,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -164316,7 +358875,7 @@ "15:30", "16:20", "LORIA B51 - Loria Center B51", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -164333,7 +358892,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -164365,7 +358952,7 @@ "11:35", "12:25", "LORIA 259 - Loria Center 259", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -164382,7 +358969,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -164415,7 +359030,7 @@ "flags": [ "YC HistofArt: Pre-800", "YC HistofArt: 800-1500", - "YC HistofArt: Asia\/Near East" + "YC HistofArt: Asia/Near East" ], "regnotes": "", "rp_attr": "", @@ -164425,7 +359040,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -164467,7 +359110,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -164507,7 +359178,7 @@ "13:30", "15:20", "HQ C11 - Humanities Quadrangle C11", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -164534,10 +359205,109 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84305\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84305/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988833069801331, + 0.9989172220230103, + 0.99886155128479, + 0.9988523721694946 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989222288131714, + 0.9984582662582397, + 0.9989299178123474, + 0.9995007514953613, + 0.9988815188407898, + 0.998892605304718, + 0.9988194108009338 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.7142857142857143, + "NEGATIVE": 0.2857142857142857 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7142857142857143 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989200830459595, + 0.9995023012161255, + 0.9989251494407654, + 0.9989091157913208, + 0.9988189339637756 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 0.8125, + "final_counts": { + "POSITIVE": 13, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.8125, + "NEGATIVE": 0.1875 + } + } }, { "season_code": "202301", @@ -164574,7 +359344,7 @@ "9:25", "11:15", "LORIA 358 - Loria Center 358", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -164590,10 +359360,99 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84255\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84255/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9970465302467346, + 0.995081901550293, + 0.9986943602561951 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994902610778809, + 0.9995007514953613, + 0.998656153678894, + 0.9985108971595764 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 1 + }, + "sentiment_distribution": { + "NEGATIVE": 0.75, + "POSITIVE": 0.25 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9976075887680054, + 0.999508261680603, + 0.9994907379150391, + 0.9980225563049316 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "final_label": "neutral", + "final_count": 6, + "final_proportion": 0.5, + "final_counts": { + "POSITIVE": 6, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.5454545454545454, + "NEGATIVE": 0.45454545454545453 + } + } }, { "season_code": "202301", @@ -164636,12 +359495,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course combines in-depth engagement of texts in black feminist theory with a wide-ranging survey of significant sculpture, painting, performance, photography, and installation art made by black women in the 19th to 21st centuries. We engage the ways that black women disturb, dissolve, and give definition to the conceptions of gender and racialization that shape the modern human. Theoretical concepts representing the singular modes of dispossession that ensnare black femininity, as well as black femininity's re\/production of the modern world\u2014concepts such as black flesh, ungendering, fungibility, black mater, plasticity\u2014are applied to analysis of artworks and the artworks in turn flesh out these concepts. We utilize formal analysis and art historical context to interrogate the ways that black female artists illuminate, critique, and intervene on not only constructions of blackness, gender, and sexuality but also art historical categories and ideologies. Through the figure of the black woman and black feminist theory, the class probes the role that the aesthetic can play in illuminating the violent aporias of hegemonic gendered and racial constructions while being attentive to its limits. Artists studied include Edmonia Lewis, Meta Warrick Fuller, Lois Mailou Jones, Kara Walker, Alma Thomas,\u00a0Faith Ringgold, Senga Nengudi, Beverly Buchanan, Adrian Piper,\u00a0Lorna Simpson, Martine Syms, and more. The class makes extensive use of the Yale University Art Gallery's holdings.", + "description": "This course combines in-depth engagement of texts in black feminist theory with a wide-ranging survey of significant sculpture, painting, performance, photography, and installation art made by black women in the 19th to 21st centuries. We engage the ways that black women disturb, dissolve, and give definition to the conceptions of gender and racialization that shape the modern human. Theoretical concepts representing the singular modes of dispossession that ensnare black femininity, as well as black femininity's re/production of the modern world\u2014concepts such as black flesh, ungendering, fungibility, black mater, plasticity\u2014are applied to analysis of artworks and the artworks in turn flesh out these concepts. We utilize formal analysis and art historical context to interrogate the ways that black female artists illuminate, critique, and intervene on not only constructions of blackness, gender, and sexuality but also art historical categories and ideologies. Through the figure of the black woman and black feminist theory, the class probes the role that the aesthetic can play in illuminating the violent aporias of hegemonic gendered and racial constructions while being attentive to its limits. Artists studied include Edmonia Lewis, Meta Warrick Fuller, Lois Mailou Jones, Kara Walker, Alma Thomas,\u00a0Faith Ringgold, Senga Nengudi, Beverly Buchanan, Adrian Piper,\u00a0Lorna Simpson, Martine Syms, and more. The class makes extensive use of the Yale University Art Gallery's holdings.", "short_title": "Visual Art and Black Feminist...", "title": "Visual Art and Black Feminist Theory", "school": "YC", @@ -164676,7 +359563,7 @@ "13:30", "15:20", "WLH 006 - William L. Harkness Hall 006", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -164692,10 +359579,101 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85880\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85880/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987030029296875, + 0.9987471103668213, + 0.998915433883667, + 0.9988490343093872 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9934101700782776, + 0.9985740184783936, + 0.9989018440246582 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9883019328117371, + 0.9983124732971191, + 0.9989066123962402, + 0.9988566637039185, + 0.9989107847213745 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 4 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2, + "POSITIVE": 0.8 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 0.8333333333333334, + "final_counts": { + "POSITIVE": 10, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + } + } }, { "season_code": "202301", @@ -164732,7 +359710,7 @@ "13:30", "15:20", "LORIA 258 - Loria Center 258", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -164750,10 +359728,99 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84259\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84259/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987919926643372, + 0.9989261031150818, + 0.9988394379615784, + 0.9989325404167175 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987831711769104, + 0.9989068508148193, + 0.9988534450531006 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9966214895248413, + 0.9985001087188721, + 0.9989292025566101, + 0.9988632202148438, + 0.9980168342590332 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 12 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -164785,7 +359852,7 @@ ], "flags": [ "YC HistofArt: 1500-1800", - "YC HistofArt: Asia\/Near East" + "YC HistofArt: Asia/Near East" ], "regnotes": "", "rp_attr": "", @@ -164795,7 +359862,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -164832,7 +359927,7 @@ "13:30", "15:20", "LORIA 258 - Loria Center 258", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -164844,10 +359939,89 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86166\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86166/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989055395126343, + 0.9987737536430359 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998889148235321, + 0.9988833069801331 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988647699356079, + 0.9988000392913818, + 0.9989228844642639 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 7 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -164884,7 +360058,7 @@ "13:30", "15:20", "LORIA 360 - Loria Center 360", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -164900,10 +360074,105 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85445\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85445/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988663196563721, + 0.9981049299240112, + 0.9988736510276794, + 0.9962582588195801 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988414645195007, + 0.9989293217658997, + 0.9989171028137207, + 0.9962582588195801 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982553124427795, + 0.998925507068634, + 0.9989197254180908, + 0.9982798099517822, + 0.9962582588195801, + 0.9988334774971008 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 0.7857142857142857, + "final_counts": { + "POSITIVE": 11, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.7857142857142857, + "NEGATIVE": 0.21428571428571427 + } + } }, { "season_code": "202301", @@ -164940,7 +360209,7 @@ "9:25", "11:15", "LORIA 360 - Loria Center 360", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -164954,10 +360223,91 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85861\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85861/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989192485809326, + 0.9988692402839661 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989209175109863, + 0.998759388923645 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989080429077148, + 0.9989206790924072, + 0.9989063739776611, + 0.9989315867424011 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 8, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 8 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -165013,10 +360363,117 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84266\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84266/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989239573478699, + 0.9988425374031067, + 0.9986924529075623, + 0.998308539390564, + 0.9975590705871582, + 0.9988552331924438 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994994401931763, + 0.9988288283348083, + 0.9987685084342957, + 0.9989232420921326, + 0.9989364743232727 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 4 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2, + "POSITIVE": 0.8 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.99893718957901, + 0.9987789988517761, + 0.9989321827888489, + 0.9989219903945923, + 0.9987764954566956, + 0.9982798099517822, + 0.9989295601844788, + 0.9989228844642639, + 0.9989299178123474 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 0.95, + "final_counts": { + "POSITIVE": 19, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.95, + "NEGATIVE": 0.05 + } + } }, { "season_code": "202301", @@ -165057,7 +360514,7 @@ "15:30", "17:20", "PH 207 - Phelps Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -165074,10 +360531,131 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85919\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85919/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987782835960388, + 0.9989118576049805, + 0.9988343119621277, + 0.9989268183708191, + 0.9986599683761597, + 0.9987064599990845, + 0.9988788962364197, + 0.9987242817878723, + 0.9989331364631653 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989103078842163, + 0.9989150762557983, + 0.9989306330680847, + 0.9989027976989746, + 0.9989321827888489, + 0.9988206028938293, + 0.9989105463027954, + 0.9989148378372192, + 0.9989281296730042 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9421969056129456, + 0.9988974332809448, + 0.9989270567893982, + 0.9985398054122925, + 0.9988217949867249, + 0.9987505674362183, + 0.9988631010055542, + 0.9989206790924072, + 0.9989385008811951, + 0.9989297986030579 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 28, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 28 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -165116,7 +360694,7 @@ "13:30", "15:20", "LORIA 258 - Loria Center 258", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -165134,10 +360712,99 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84270\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84270/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998818576335907, + 0.9987797141075134, + 0.9988659620285034, + 0.9987853169441223 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9951058626174927, + 0.987722635269165, + 0.9988899827003479, + 0.9982530474662781 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988431930541992, + 0.9985417127609253, + 0.9966233968734741, + 0.9988805651664734 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 12 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -165175,7 +360842,7 @@ "19:00", "22:00", "HQ L01 - Humanities Quadrangle L01", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -165183,7 +360850,7 @@ "13:30", "15:20", "WLH 202 - William L. Harkness Hall 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -165197,10 +360864,105 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84017\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84017/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987987279891968, + 0.9987961053848267, + 0.9988191723823547, + 0.998809814453125, + 0.9983493089675903 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988710284233093, + 0.9989112615585327, + 0.9987612962722778, + 0.9989017248153687 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989331364631653, + 0.998906135559082, + 0.9989193677902222, + 0.998887836933136, + 0.9978651404380798, + 0.9989386200904846 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 15 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -165240,10 +361002,99 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86171\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86171/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9894424676895142, + 0.9989345669746399, + 0.9987755417823792, + 0.9989129304885864 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.25, + "POSITIVE": 0.75 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9702228903770447, + 0.9989179372787476, + 0.996918797492981, + 0.9987837672233582 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9974902868270874, + 0.997117280960083, + 0.9995059967041016 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 8, + "final_proportion": 0.7272727272727273, + "final_counts": { + "NEGATIVE": 3, + "POSITIVE": 8 + }, + "final_distribution": { + "NEGATIVE": 0.2727272727272727, + "POSITIVE": 0.7272727272727273 + } + } }, { "season_code": "202301", @@ -165280,7 +361131,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -165321,7 +361200,7 @@ "13:30", "15:20", "LORIA 360 - Loria Center 360", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -165333,10 +361212,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84273\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84273/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -165374,7 +361281,7 @@ "13:30", "15:20", "LORIA 358 - Loria Center 358", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -165386,15 +361293,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83689\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83689/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "Designed around a series of hands-on, skill-building activities and punctuated by contextualizing lectures, this course introduces a variety of digital humanities methods, tools, and debates of relevance to the study of the premodern world. To provide continuity and a common reference point, activities and demonstrations are oriented around the archaeological site of Dura-Europos (Syria) and allow students to engage firsthand with data, artifacts, and archival materials from the site. Sample topics include introductions to Python and JavaScript; basics of front-end and back-end web development; photogrammetry; Linked Open Data (LOD); digital gazetteers; controlled vocabularies; web annotation; applications of machine learning. No previous digital humanities training or coding experience is required of students registered for the graduate HSAR\/CLSS course numbers.", + "description": "Designed around a series of hands-on, skill-building activities and punctuated by contextualizing lectures, this course introduces a variety of digital humanities methods, tools, and debates of relevance to the study of the premodern world. To provide continuity and a common reference point, activities and demonstrations are oriented around the archaeological site of Dura-Europos (Syria) and allow students to engage firsthand with data, artifacts, and archival materials from the site. Sample topics include introductions to Python and JavaScript; basics of front-end and back-end web development; photogrammetry; Linked Open Data (LOD); digital gazetteers; controlled vocabularies; web annotation; applications of machine learning. No previous digital humanities training or coding experience is required of students registered for the graduate HSAR/CLSS course numbers.", "short_title": "Introduction to the Digital H...", "title": "Introduction to the Digital Humanities for the Premodern World", "school": "GS", @@ -165429,7 +361364,7 @@ "13:00", "14:15", "HQ L01 - Humanities Quadrangle L01", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -165437,7 +361372,7 @@ "13:00", "14:15", "HQ L01 - Humanities Quadrangle L01", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -165449,10 +361384,133 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83706\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83706/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988793730735779, + 0.9989004135131836, + 0.9988210797309875, + 0.9935343265533447, + 0.9899240136146545, + 0.9952617883682251, + 0.9796426892280579, + 0.9989124536514282, + 0.998349666595459, + 0.9988065958023071, + 0.9988523721694946 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.998418927192688, + 0.9983073472976685, + 0.9982520937919617, + 0.9988241791725159, + 0.9956071972846985, + 0.9988527297973633, + 0.9950057864189148 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.7142857142857143, + "NEGATIVE": 0.2857142857142857 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7142857142857143 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998792290687561, + 0.9895544052124023, + 0.9975002408027649, + 0.9974592328071594, + 0.9988669157028198, + 0.997117280960083, + 0.9988960027694702, + 0.998396098613739, + 0.9983506202697754, + 0.9988176226615906 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "final_label": "POSITIVE", + "final_count": 25, + "final_proportion": 0.8928571428571429, + "final_counts": { + "POSITIVE": 25, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.8928571428571429, + "NEGATIVE": 0.10714285714285714 + } + } }, { "season_code": "202301", @@ -165490,7 +361548,7 @@ "9:25", "11:15", "LORIA 258 - Loria Center 258", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -165502,10 +361560,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84277\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84277/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -165544,7 +361630,7 @@ "13:30", "15:20", "LORIA 360 - Loria Center 360", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -165556,10 +361642,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84281\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84281/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -165597,24 +361690,52 @@ "13:30", "15:20", "YUAG 052 - Yale University Art Gallery 052", - "https:\/\/map.yale.edu\/?id=1910#!m\/559918" + "https://map.yale.edu/?id=1910#!m/559918" ] ] }, "skills": [], "areas": [], "flags": [ - "YC HistofArt: Asia\/Near East" + "YC HistofArt: Asia/Near East" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84283\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84283/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -165649,10 +361770,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84831\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84831/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -165689,7 +361838,7 @@ "13:30", "15:20", "LORIA 358 - Loria Center 358", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -165701,10 +361850,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84286\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84286/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -165754,10 +361931,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84290\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84290/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -165813,10 +362018,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83321\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83321/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -165854,7 +362087,7 @@ "15:30", "17:20", "LORIA 258 - Loria Center 258", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -165866,10 +362099,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83802\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83802/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -165909,7 +362170,7 @@ "15:30", "17:20", "HQ C64 - Humanities Quadrangle C64", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -165921,10 +362182,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84237\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84237/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -165955,7 +362244,7 @@ "9:25", "11:15", "YUAG 054 - Yale University Art Gallery 054", - "https:\/\/map.yale.edu\/?id=1910#!m\/559918" + "https://map.yale.edu/?id=1910#!m/559918" ] ] }, @@ -165967,10 +362256,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85454\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85454/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -166007,7 +362324,7 @@ "14:00", "17:00", "WLH 209 - William L. Harkness Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -166027,10 +362344,113 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84294\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84294/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988235831260681, + 0.9988180994987488, + 0.998764157295227, + 0.9984607696533203, + 0.9988999366760254, + 0.9989117383956909 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989282488822937, + 0.9982703924179077, + 0.9989311099052429, + 0.9987741112709045, + 0.9987980127334595, + 0.9988858103752136 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988685846328735, + 0.9995095729827881, + 0.9989099502563477, + 0.9988371729850769, + 0.9988495111465454, + 0.9938952326774597 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 0.8333333333333334, + "final_counts": { + "POSITIVE": 15, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + } + } }, { "season_code": "202301", @@ -166068,7 +362488,7 @@ "11:35", "12:25", "HQ 207 - Humanities Quadrangle 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -166076,7 +362496,7 @@ "11:35", "12:25", "HQ 207 - Humanities Quadrangle 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -166102,10 +362522,119 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84297\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84297/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989050626754761, + 0.9988806843757629, + 0.9987437129020691, + 0.9985950589179993, + 0.9987475872039795, + 0.998839795589447, + 0.9988413453102112 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988322854042053, + 0.9949876070022583, + 0.9988723397254944, + 0.9993842840194702, + 0.9987940788269043, + 0.9988628625869751, + 0.9988962411880493 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985511898994446, + 0.9989118576049805, + 0.9965938925743103, + 0.9989249110221863, + 0.9988055229187012, + 0.9989386200904846, + 0.9985373020172119 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 0.9523809523809523, + "final_counts": { + "POSITIVE": 20, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9523809523809523, + "NEGATIVE": 0.047619047619047616 + } + } }, { "season_code": "202301", @@ -166137,7 +362666,7 @@ "10:30", "11:20", "YK220 001 - 220 York Street 001", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ] }, @@ -166154,7 +362683,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -166186,7 +362743,7 @@ "16:00", "16:50", "HQ 133 - Humanities Quadrangle 133", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -166203,7 +362760,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -166242,7 +362827,7 @@ "10:30", "11:20", "WALL53 AUD - 53 Wall Street AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/559554" + "https://map.yale.edu/?id=1910#!m/559554" ] ], "Wednesday": [ @@ -166250,7 +362835,7 @@ "10:30", "11:20", "WALL53 AUD - 53 Wall Street AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/559554" + "https://map.yale.edu/?id=1910#!m/559554" ] ] }, @@ -166270,10 +362855,425 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84301\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84301/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989299178123474, + 0.9989270567893982, + 0.9987040758132935, + 0.9986178874969482, + 0.9983515739440918, + 0.9989331364631653, + 0.9986147880554199, + 0.9988495111465454, + 0.9989032745361328, + 0.998913049697876, + 0.9976812601089478, + 0.9989338517189026, + 0.9980559349060059, + 0.9987653493881226, + 0.9989036321640015, + 0.9983876943588257, + 0.9987586736679077, + 0.998809814453125, + 0.998754620552063, + 0.9986563920974731, + 0.9988502264022827, + 0.9988983869552612, + 0.9989294409751892, + 0.998893678188324, + 0.9988231062889099, + 0.9988514184951782, + 0.9988755583763123, + 0.9988946318626404, + 0.9989020824432373, + 0.9984809756278992, + 0.9988265633583069, + 0.9988288283348083, + 0.9988980293273926, + 0.9985200762748718, + 0.9988293051719666, + 0.9989159107208252, + 0.998218834400177, + 0.9986300468444824, + 0.9988031387329102, + 0.998924195766449, + 0.9987465143203735, + 0.9988443851470947, + 0.9987773299217224, + 0.9988628625869751, + 0.9986258745193481, + 0.9987885355949402, + 0.9984702467918396, + 0.9988866448402405, + 0.9985070824623108, + 0.9988640546798706, + 0.9989114999771118, + 0.9988663196563721, + 0.9987837672233582 + ], + "sentiment_counts": { + "POSITIVE": 53, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988957643508911, + 0.998507559299469, + 0.9988139867782593, + 0.9988749623298645, + 0.9989029169082642, + 0.9989017248153687, + 0.9989352822303772, + 0.9989385008811951, + 0.9989055395126343, + 0.9992756247520447, + 0.998898983001709, + 0.9988547563552856, + 0.998809814453125, + 0.9989244341850281, + 0.9988590478897095, + 0.9976262450218201, + 0.9987931251525879, + 0.9984152317047119, + 0.9988620281219482, + 0.9932077527046204, + 0.9989162683486938, + 0.9989318251609802, + 0.9989333748817444, + 0.9989387392997742, + 0.998892605304718, + 0.9989320635795593, + 0.9988131523132324, + 0.9988865256309509, + 0.998869001865387, + 0.9989006519317627, + 0.9982866644859314, + 0.9988147020339966, + 0.9988935589790344, + 0.9989103078842163, + 0.9989393353462219, + 0.9988767504692078, + 0.9988114833831787, + 0.9989151954650879, + 0.9696354269981384, + 0.998915433883667, + 0.9989098310470581, + 0.9988934397697449, + 0.9989369511604309, + 0.9987194538116455, + 0.9989114999771118, + 0.9995015859603882, + 0.9988596439361572, + 0.9989171028137207, + 0.9989269375801086, + 0.998918890953064, + 0.9987429976463318 + ], + "sentiment_counts": { + "POSITIVE": 48, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.9411764705882353, + "NEGATIVE": 0.058823529411764705 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9411764705882353 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989251494407654, + 0.9987576007843018, + 0.9988538026809692, + 0.9987697005271912, + 0.9989213943481445, + 0.9988566637039185, + 0.9946840405464172, + 0.9987020492553711, + 0.9989042282104492, + 0.998742401599884, + 0.9986594915390015, + 0.998920202255249, + 0.9989261031150818, + 0.9988788962364197, + 0.9924303889274597, + 0.9989374279975891, + 0.9989197254180908, + 0.9983333945274353, + 0.9893378019332886, + 0.9989377856254578, + 0.9988186955451965, + 0.9974592328071594, + 0.9989359974861145, + 0.9989064931869507, + 0.9974592328071594, + 0.9922722578048706, + 0.9988862872123718, + 0.9988952875137329, + 0.9988642930984497, + 0.997117280960083, + 0.9989030361175537, + 0.9978070855140686, + 0.9988833069801331, + 0.9989175796508789, + 0.9989056587219238, + 0.9989230036735535, + 0.9982553124427795, + 0.9989340901374817, + 0.998863935470581, + 0.9988999366760254, + 0.997117280960083, + 0.9988697171211243, + 0.9975022673606873, + 0.9982553124427795, + 0.9989243149757385, + 0.9987970590591431, + 0.9978901743888855, + 0.9989350438117981, + 0.9989237189292908, + 0.9985508322715759, + 0.9988566637039185, + 0.9989039897918701, + 0.9988991022109985, + 0.9988752007484436, + 0.9989314675331116, + 0.9986849427223206, + 0.9987533092498779, + 0.9986975193023682, + 0.9989213943481445, + 0.9989330172538757, + 0.9989295601844788, + 0.997117280960083, + 0.9985619187355042, + 0.9987754225730896, + 0.9988873600959778, + 0.9989193677902222, + 0.9989206790924072, + 0.9988893866539001, + 0.998902440071106, + 0.998927652835846 + ], + "sentiment_counts": { + "POSITIVE": 69, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9857142857142858, + "NEGATIVE": 0.014285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9857142857142858 + ] + }, + "final_label": "POSITIVE", + "final_count": 170, + "final_proportion": 0.9770114942528736, + "final_counts": { + "POSITIVE": 170, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.9770114942528736, + "NEGATIVE": 0.022988505747126436 + } + } }, { "season_code": "202301", @@ -166306,7 +363306,7 @@ "13:30", "14:20", "LORIA B50 - Loria Center B50", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -166324,7 +363324,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -166357,7 +363385,7 @@ "15:30", "16:20", "LORIA 360 - Loria Center 360", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -166375,7 +363403,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -166408,7 +363464,7 @@ "14:30", "15:20", "HQ 401 - Humanities Quadrangle 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -166426,7 +363482,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -166459,7 +363543,7 @@ "16:30", "17:20", "WLH 001 - William L. Harkness Hall 001", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -166477,7 +363561,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -166510,7 +363622,7 @@ "9:25", "10:15", "HQ 227 - Humanities Quadrangle 227", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -166528,7 +363640,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -166561,7 +363701,7 @@ "10:30", "11:20", "HQ 129 - Humanities Quadrangle 129", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -166579,7 +363719,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -166612,7 +363780,7 @@ "15:30", "16:20", "CO493 106 - 493 College Street 106", - "https:\/\/map.yale.edu\/?id=1910#!m\/560001" + "https://map.yale.edu/?id=1910#!m/560001" ] ] }, @@ -166630,7 +363798,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -166663,7 +363859,7 @@ "14:30", "15:20", "HQ 113 - Humanities Quadrangle 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -166681,7 +363877,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -166714,7 +363938,7 @@ "16:00", "16:50", "HQ 313 - Humanities Quadrangle 313", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -166732,12 +363956,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse\/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", + "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", "short_title": "Sickness and Health in Africa...", "title": "Sickness and Health in African American History", "school": "YC", @@ -166772,7 +364024,7 @@ "13:30", "14:20", "YSB MARSH - Yale Science Building MARSH", - "https:\/\/map.yale.edu\/?id=1910#!m\/563700" + "https://map.yale.edu/?id=1910#!m/563700" ] ], "Thursday": [ @@ -166780,7 +364032,7 @@ "13:30", "14:20", "YSB MARSH - Yale Science Building MARSH", - "https:\/\/map.yale.edu\/?id=1910#!m\/563700" + "https://map.yale.edu/?id=1910#!m/563700" ] ] }, @@ -166800,15 +364052,1032 @@ "classnotes": "This course is full and we are no longer accepting instructor permission requests. Thank you!", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83282\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "", - "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse\/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", + "syllabus_url": "https://yale.instructure.com/courses/83282/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988340735435486, + 0.9986395239830017, + 0.9986968636512756, + 0.9989031553268433, + 0.9988620281219482, + 0.9988137483596802, + 0.9969080090522766, + 0.9983807802200317, + 0.9987789988517761, + 0.9987564086914062, + 0.9984493255615234, + 0.9986536502838135, + 0.9982695579528809, + 0.9982789754867554, + 0.9989293217658997, + 0.9946243166923523, + 0.9987239241600037, + 0.9980498552322388, + 0.998616099357605, + 0.9987815022468567, + 0.9968481659889221, + 0.9988880753517151, + 0.9988828301429749, + 0.9989162683486938, + 0.9989081621170044, + 0.9987485408782959, + 0.9989271759986877, + 0.9989168643951416, + 0.9984915256500244, + 0.9989184141159058, + 0.9989076852798462, + 0.9988468885421753, + 0.9985731840133667, + 0.9989288449287415, + 0.9986717700958252, + 0.9950319528579712, + 0.9988815188407898, + 0.9988020658493042, + 0.994141161441803, + 0.9968734383583069, + 0.9988811612129211, + 0.9978400468826294, + 0.9986481070518494, + 0.9988192915916443, + 0.9986947178840637, + 0.9989357590675354, + 0.9987982511520386, + 0.9985961318016052, + 0.9988431930541992, + 0.9987500905990601, + 0.9988921284675598, + 0.9988847374916077, + 0.9986405968666077, + 0.9964800477027893, + 0.9986070990562439, + 0.9984385371208191, + 0.9980556964874268, + 0.9986239671707153, + 0.9987909197807312, + 0.9988508224487305, + 0.9979257583618164, + 0.9989352822303772, + 0.9989070892333984, + 0.998741090297699, + 0.998672366142273, + 0.9984409213066101, + 0.9989080429077148, + 0.9989086389541626, + 0.9988235831260681, + 0.9985793828964233, + 0.9988088607788086, + 0.9986900687217712, + 0.9745175242424011, + 0.9828008413314819, + 0.9988285899162292, + 0.9988735318183899, + 0.998863935470581, + 0.9988976716995239, + 0.9986427426338196, + 0.9988811612129211, + 0.9984429478645325, + 0.9986421465873718, + 0.9986189603805542, + 0.9988147020339966, + 0.9950065612792969, + 0.9988425970077515, + 0.9986833930015564, + 0.9989243149757385, + 0.9989123344421387, + 0.9988893866539001, + 0.9988316893577576, + 0.9983320832252502, + 0.9987965822219849, + 0.9985906481742859, + 0.9987419247627258, + 0.9986976385116577, + 0.9986771941184998, + 0.9988052845001221, + 0.9988552331924438, + 0.998722493648529, + 0.9986487030982971, + 0.998903751373291, + 0.9989225268363953, + 0.9988188147544861, + 0.9827929735183716, + 0.9989330172538757, + 0.9986029267311096, + 0.9986230134963989, + 0.9988352656364441, + 0.9988930821418762, + 0.9988430738449097, + 0.9985798597335815, + 0.9985494017601013, + 0.9988065958023071, + 0.9989227652549744, + 0.9986359477043152, + 0.998755693435669, + 0.9989282488822937, + 0.9988858103752136, + 0.9986497759819031, + 0.9989180564880371, + 0.9986276626586914, + 0.9987366795539856, + 0.9988987445831299, + 0.9989117383956909, + 0.9984443783760071, + 0.9987707734107971, + 0.9986522793769836, + 0.9987888932228088, + 0.998904824256897, + 0.9988356232643127, + 0.9987788796424866, + 0.9989029169082642, + 0.9988052845001221 + ], + "sentiment_counts": { + "POSITIVE": 132, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.9850746268656716, + "NEGATIVE": 0.014925373134328358 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9850746268656716 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989101886749268, + 0.9985139966011047, + 0.9989320635795593, + 0.9986590147018433, + 0.998939573764801, + 0.9988256096839905, + 0.9988693594932556, + 0.9989269375801086, + 0.9988569021224976, + 0.9989309906959534, + 0.9988852143287659, + 0.9989275336265564, + 0.998847484588623, + 0.9986892342567444, + 0.9986897110939026, + 0.9985847473144531, + 0.9989288449287415, + 0.9988588094711304, + 0.9989238381385803, + 0.9989116191864014, + 0.9989094734191895, + 0.9989234805107117, + 0.9989333748817444, + 0.9989383816719055, + 0.9989296793937683, + 0.9989339709281921, + 0.9988177418708801, + 0.998874843120575, + 0.9989140033721924, + 0.9988942742347717, + 0.9989244341850281, + 0.9988756775856018, + 0.9989215135574341, + 0.9988221526145935, + 0.9985874891281128, + 0.9989200830459595, + 0.9989151954650879, + 0.9989259839057922, + 0.9988903403282166, + 0.9988194108009338, + 0.9988852143287659, + 0.9989200830459595, + 0.9988514184951782, + 0.9988941550254822, + 0.9989367127418518, + 0.9989240765571594, + 0.9989283680915833, + 0.998916506767273, + 0.9987910389900208, + 0.9989217519760132, + 0.9989098310470581, + 0.9989373087882996, + 0.9988885521888733, + 0.9989268183708191, + 0.9989142417907715, + 0.9989210367202759, + 0.9987784028053284, + 0.9988576173782349, + 0.9986928105354309, + 0.9988359808921814, + 0.9989284873008728, + 0.9988395571708679, + 0.9989044666290283, + 0.998880922794342, + 0.9988688826560974, + 0.9989117383956909, + 0.9988538026809692, + 0.9989325404167175, + 0.9989030361175537, + 0.9989042282104492, + 0.9988289475440979, + 0.9988977909088135, + 0.9988352656364441, + 0.9987223744392395, + 0.9989356398582458, + 0.9987284541130066, + 0.9989343285560608, + 0.9989288449287415, + 0.9989168643951416, + 0.998934805393219, + 0.9986547231674194, + 0.9989112615585327, + 0.9989155530929565, + 0.9989089965820312, + 0.9989166259765625, + 0.9989354014396667, + 0.9989245533943176, + 0.9988939166069031, + 0.9989140033721924, + 0.9989355206489563, + 0.9987800717353821, + 0.9989000558853149, + 0.9989272952079773, + 0.998875081539154, + 0.9986833930015564, + 0.9989184141159058, + 0.9986955523490906, + 0.9988547563552856, + 0.9989318251609802, + 0.9989166259765625, + 0.9989308714866638, + 0.9981245398521423, + 0.9984752535820007, + 0.9986801743507385, + 0.9986653327941895, + 0.9989244341850281, + 0.9971017241477966, + 0.998755931854248, + 0.9986880421638489, + 0.998789370059967, + 0.9989027976989746, + 0.9989237189292908, + 0.9989036321640015, + 0.9968572854995728, + 0.9989172220230103, + 0.9988908171653748, + 0.9987608194351196, + 0.9994779229164124, + 0.9989295601844788, + 0.998917818069458, + 0.9989301562309265, + 0.9988760352134705, + 0.9989249110221863, + 0.9967356324195862, + 0.9989045858383179, + 0.998923122882843, + 0.99893718957901, + 0.9984885454177856, + 0.9989292025566101, + 0.9989392161369324, + 0.9974145889282227, + 0.9989198446273804, + 0.9988732933998108, + 0.998925507068634, + 0.9987367987632751, + 0.9988483190536499, + 0.9985429048538208, + 0.9988239407539368, + 0.998930037021637, + 0.9989349246025085, + 0.9989305138587952, + 0.9989393353462219, + 0.9989190101623535, + 0.9988657236099243, + 0.9988666772842407, + 0.9988998174667358, + 0.9989162683486938 + ], + "sentiment_counts": { + "POSITIVE": 144, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.9795918367346939, + "NEGATIVE": 0.02040816326530612 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9795918367346939 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983974099159241, + 0.9888043999671936, + 0.998786985874176, + 0.9986128807067871, + 0.9989315867424011, + 0.9988334774971008, + 0.9987927675247192, + 0.9989320635795593, + 0.9963850975036621, + 0.997117280960083, + 0.9988308548927307, + 0.9980233907699585, + 0.9974019527435303, + 0.9983333945274353, + 0.9989299178123474, + 0.9984614849090576, + 0.9988381266593933, + 0.9987615346908569, + 0.9982694387435913, + 0.9989383816719055, + 0.9986180067062378, + 0.9989035129547119, + 0.9988532066345215, + 0.9987928867340088, + 0.998872697353363, + 0.9902652502059937, + 0.9988453388214111, + 0.9987645149230957, + 0.9989226460456848, + 0.9989016056060791, + 0.9989362359046936, + 0.9985417127609253, + 0.9988675117492676, + 0.9988947510719299, + 0.9989292025566101, + 0.9988635778427124, + 0.9988839030265808, + 0.9989066123962402, + 0.9988988637924194, + 0.9988574981689453, + 0.9989055395126343, + 0.9989317059516907, + 0.9984641075134277, + 0.9987357258796692, + 0.9988387227058411, + 0.9989053010940552, + 0.9988917708396912, + 0.9987099170684814, + 0.9989288449287415, + 0.998921275138855, + 0.9989187717437744, + 0.9988780617713928, + 0.9986422657966614, + 0.9988622665405273, + 0.9988786578178406, + 0.998932421207428, + 0.9989190101623535, + 0.9982553124427795, + 0.9982553124427795, + 0.9985672235488892, + 0.9986905455589294, + 0.9988991022109985, + 0.9987295269966125, + 0.998909592628479, + 0.9988479614257812, + 0.9988248944282532, + 0.9989368319511414, + 0.9989263415336609, + 0.9989081621170044, + 0.9988775849342346, + 0.9989221096038818, + 0.9989272952079773, + 0.9989270567893982, + 0.9988561868667603, + 0.9988903403282166, + 0.9988571405410767, + 0.9963590502738953, + 0.9982553124427795, + 0.9981878399848938, + 0.9983333945274353, + 0.9988864064216614, + 0.9980168342590332, + 0.9987473487854004, + 0.9988362193107605, + 0.9987902045249939, + 0.9984739422798157, + 0.9989058971405029, + 0.9986993074417114, + 0.9989184141159058, + 0.9989271759986877, + 0.9986972212791443, + 0.9989074468612671, + 0.998891294002533, + 0.9982694387435913, + 0.9989138841629028, + 0.9994202852249146, + 0.9989217519760132, + 0.9989379048347473, + 0.9984965324401855, + 0.9984285235404968, + 0.9985841512680054, + 0.9988813996315002, + 0.9989080429077148, + 0.9987743496894836, + 0.9989148378372192, + 0.9989377856254578, + 0.9988741278648376, + 0.9989117383956909, + 0.998400866985321, + 0.997117280960083, + 0.9987142086029053, + 0.9988915324211121, + 0.99891197681427, + 0.998900294303894, + 0.9988792538642883, + 0.998932421207428, + 0.9987950325012207, + 0.9989086389541626, + 0.9989376664161682, + 0.9989032745361328, + 0.9989134073257446, + 0.9989307522773743, + 0.9989053010940552, + 0.998904824256897, + 0.998918890953064, + 0.9988715052604675, + 0.9989161491394043, + 0.9988309741020203, + 0.9988928437232971, + 0.9969774484634399, + 0.9987527132034302, + 0.9989199638366699, + 0.9988387227058411, + 0.9989400506019592, + 0.998762845993042, + 0.9978189468383789, + 0.9989193677902222, + 0.9989359974861145, + 0.9988927245140076, + 0.9989250302314758, + 0.9989191293716431, + 0.9987592697143555, + 0.9987151622772217, + 0.998938262462616, + 0.9988916516304016, + 0.9987849593162537, + 0.9986801743507385, + 0.9989303946495056, + 0.9988600015640259, + 0.9988922476768494, + 0.9989261031150818, + 0.9989068508148193, + 0.9989346861839294, + 0.9984594583511353, + 0.9986693859100342, + 0.9989142417907715, + 0.9988985061645508, + 0.9988681077957153, + 0.9989017248153687, + 0.9942962527275085, + 0.9989299178123474, + 0.998896598815918, + 0.9988757967948914, + 0.998881995677948, + 0.9989005327224731, + 0.9939151406288147, + 0.9989147186279297, + 0.9989296793937683, + 0.9983274340629578, + 0.9989288449287415, + 0.9989246726036072, + 0.9985185265541077, + 0.9988113641738892, + 0.998828113079071, + 0.9988791346549988, + 0.9989120960235596, + 0.9989370703697205, + 0.993130624294281, + 0.997875452041626, + 0.9989209175109863, + 0.9989101886749268, + 0.9988956451416016, + 0.9987995624542236, + 0.9988664388656616, + 0.9986214637756348, + 0.9988986253738403, + 0.9988881945610046, + 0.9987167119979858, + 0.9979366064071655, + 0.9989270567893982, + 0.9988871216773987, + 0.9988478422164917, + 0.9988928437232971, + 0.9989187717437744 + ], + "sentiment_counts": { + "POSITIVE": 192, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.9896907216494846, + "NEGATIVE": 0.010309278350515464 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9896907216494846 + ] + }, + "final_label": "POSITIVE", + "final_count": 468, + "final_proportion": 0.9852631578947368, + "final_counts": { + "POSITIVE": 468, + "NEGATIVE": 7 + }, + "final_distribution": { + "POSITIVE": 0.9852631578947368, + "NEGATIVE": 0.014736842105263158 + } + } + }, + { + "season_code": "202301", + "requirements": "", + "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", "short_title": "Sickness and Health in Africa...", "title": "Sickness and Health in African American History", "school": "YC", @@ -166837,7 +365106,7 @@ "15:30", "16:20", "WLH 013 - William L. Harkness Hall 013", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -166854,12 +365123,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse\/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", + "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", "short_title": "Sickness and Health in Africa...", "title": "Sickness and Health in African American History", "school": "YC", @@ -166888,7 +365185,7 @@ "19:00", "19:50", "WLH 003 - William L. Harkness Hall 003", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -166905,12 +365202,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse\/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", + "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", "short_title": "Sickness and Health in Africa...", "title": "Sickness and Health in African American History", "school": "YC", @@ -166939,7 +365264,7 @@ "14:30", "15:20", "WTS A42 - Watson Center 60 Sachem Street A42", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -166956,12 +365281,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse\/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", + "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", "short_title": "Sickness and Health in Africa...", "title": "Sickness and Health in African American History", "school": "YC", @@ -166990,7 +365343,7 @@ "9:25", "10:15", "WALL81 101 - 81 Wall Street 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -167007,12 +365360,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse\/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", + "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", "short_title": "Sickness and Health in Africa...", "title": "Sickness and Health in African American History", "school": "YC", @@ -167041,7 +365422,7 @@ "16:30", "17:20", "WLH 013 - William L. Harkness Hall 013", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -167058,12 +365439,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse\/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", + "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", "short_title": "Sickness and Health in Africa...", "title": "Sickness and Health in African American History", "school": "YC", @@ -167092,7 +365501,7 @@ "20:00", "20:50", "WLH 003 - William L. Harkness Hall 003", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -167109,12 +365518,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse\/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", + "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", "short_title": "Sickness and Health in Africa...", "title": "Sickness and Health in African American History", "school": "YC", @@ -167143,7 +365580,7 @@ "15:30", "16:20", "WLH 006 - William L. Harkness Hall 006", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -167160,12 +365597,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse\/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", + "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", "short_title": "Sickness and Health in Africa...", "title": "Sickness and Health in African American History", "school": "YC", @@ -167194,7 +365659,7 @@ "16:30", "17:20", "WLH 006 - William L. Harkness Hall 006", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -167211,12 +365676,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse\/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", + "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", "short_title": "Sickness and Health in Africa...", "title": "Sickness and Health in African American History", "school": "YC", @@ -167245,7 +365738,7 @@ "19:00", "19:50", "BM 013 - Bingham Hall 013", - "https:\/\/map.yale.edu\/?id=1910#!m\/559569" + "https://map.yale.edu/?id=1910#!m/559569" ] ] }, @@ -167262,12 +365755,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse\/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", + "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", "short_title": "Sickness and Health in Africa...", "title": "Sickness and Health in African American History", "school": "YC", @@ -167296,7 +365817,7 @@ "14:30", "15:20", "WTS B39 - Watson Center 60 Sachem Street B39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -167313,12 +365834,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse\/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", + "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", "short_title": "Sickness and Health in Africa...", "title": "Sickness and Health in African American History", "school": "YC", @@ -167347,7 +365896,7 @@ "15:30", "16:20", "WLH 006 - William L. Harkness Hall 006", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -167364,12 +365913,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse\/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", + "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", "short_title": "Sickness and Health in Africa...", "title": "Sickness and Health in African American History", "school": "YC", @@ -167398,7 +365975,7 @@ "19:00", "19:50", "WLH 002 - William L. Harkness Hall 002", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -167415,12 +365992,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse\/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", + "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", "short_title": "Sickness and Health in Africa...", "title": "Sickness and Health in African American History", "school": "YC", @@ -167449,7 +366054,7 @@ "16:30", "17:20", "WLH 006 - William L. Harkness Hall 006", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -167466,12 +366071,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse\/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", + "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", "short_title": "Sickness and Health in Africa...", "title": "Sickness and Health in African American History", "school": "YC", @@ -167500,7 +366133,7 @@ "20:00", "20:50", "WLH 002 - William L. Harkness Hall 002", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -167517,12 +366150,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse\/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", + "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", "short_title": "Sickness and Health in Africa...", "title": "Sickness and Health in African American History", "school": "YC", @@ -167551,7 +366212,7 @@ "15:30", "16:20", "WLH 009 - William L. Harkness Hall 009", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -167568,12 +366229,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse\/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", + "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", "short_title": "Sickness and Health in Africa...", "title": "Sickness and Health in African American History", "school": "YC", @@ -167602,7 +366291,7 @@ "9:25", "10:15", "BM 013 - Bingham Hall 013", - "https:\/\/map.yale.edu\/?id=1910#!m\/559569" + "https://map.yale.edu/?id=1910#!m/559569" ] ] }, @@ -167619,12 +366308,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse\/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", + "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", "short_title": "Sickness and Health in Africa...", "title": "Sickness and Health in African American History", "school": "YC", @@ -167653,7 +366370,7 @@ "19:00", "19:50", "WLH 006 - William L. Harkness Hall 006", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -167670,12 +366387,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse\/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", + "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", "short_title": "Sickness and Health in Africa...", "title": "Sickness and Health in African American History", "school": "YC", @@ -167704,7 +366449,7 @@ "15:30", "16:20", "WLH 203 - William L. Harkness Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -167721,12 +366466,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse\/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", + "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", "short_title": "Sickness and Health in Africa...", "title": "Sickness and Health in African American History", "school": "YC", @@ -167755,7 +366528,7 @@ "19:00", "19:50", "WLH 011 - William L. Harkness Hall 011", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -167772,12 +366545,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse\/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", + "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", "short_title": "Sickness and Health in Africa...", "title": "Sickness and Health in African American History", "school": "YC", @@ -167806,7 +366607,7 @@ "14:30", "15:20", "ESC 110 - Environmental Sciences Center 110", - "https:\/\/map.yale.edu\/?id=1910#!m\/560020" + "https://map.yale.edu/?id=1910#!m/560020" ] ] }, @@ -167823,12 +366624,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse\/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", + "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", "short_title": "Sickness and Health in Africa...", "title": "Sickness and Health in African American History", "school": "YC", @@ -167857,7 +366686,7 @@ "15:30", "16:20", "WLH 007 - William L. Harkness Hall 007", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -167874,12 +366703,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse\/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", + "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", "short_title": "Sickness and Health in Africa...", "title": "Sickness and Health in African American History", "school": "YC", @@ -167933,12 +366790,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse\/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", + "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", "short_title": "Sickness and Health in Africa...", "title": "Sickness and Health in African American History", "school": "YC", @@ -167967,7 +366852,7 @@ "20:00", "20:50", "WLH 011 - William L. Harkness Hall 011", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -167984,12 +366869,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse\/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", + "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", "short_title": "Sickness and Health in Africa...", "title": "Sickness and Health in African American History", "school": "YC", @@ -168018,7 +366931,7 @@ "16:30", "17:20", "WLH 009 - William L. Harkness Hall 009", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -168035,12 +366948,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse\/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", + "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", "short_title": "Sickness and Health in Africa...", "title": "Sickness and Health in African American History", "school": "YC", @@ -168069,7 +367010,7 @@ "19:00", "19:50", "WLH 210 - William L. Harkness Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -168086,12 +367027,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse\/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", + "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", "short_title": "Sickness and Health in Africa...", "title": "Sickness and Health in African American History", "school": "YC", @@ -168120,7 +367089,7 @@ "10:30", "11:20", "WALL81 101 - 81 Wall Street 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -168137,12 +367106,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse\/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", + "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", "short_title": "Sickness and Health in Africa...", "title": "Sickness and Health in African American History", "school": "YC", @@ -168171,7 +367168,7 @@ "16:30", "17:20", "WLH 203 - William L. Harkness Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -168188,12 +367185,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse\/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", + "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", "short_title": "Sickness and Health in Africa...", "title": "Sickness and Health in African American History", "school": "YC", @@ -168247,12 +367272,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse\/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", + "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", "short_title": "Sickness and Health in Africa...", "title": "Sickness and Health in African American History", "school": "YC", @@ -168281,7 +367334,7 @@ "16:30", "17:20", "WLH 007 - William L. Harkness Hall 007", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -168298,7 +367351,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -168336,7 +367417,7 @@ "9:25", "11:15", "WLH 009 - William L. Harkness Hall 009", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -168361,10 +367442,109 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85396\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85396/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985933899879456, + 0.9989339709281921, + 0.9987154006958008, + 0.9989069700241089, + 0.9986647367477417 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9970364570617676, + 0.9989144802093506, + 0.9989373087882996, + 0.9988921284675598, + 0.9989112615585327, + 0.9988201260566711 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989190101623535, + 0.9988967180252075, + 0.9989287257194519, + 0.9989292025566101, + 0.9989057779312134, + 0.9988619089126587 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 17 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -168404,7 +367584,7 @@ "13:30", "15:20", "HQ C11 - Humanities Quadrangle C11", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -168430,10 +367610,109 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84305\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84305/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988833069801331, + 0.9989172220230103, + 0.99886155128479, + 0.9988523721694946 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989222288131714, + 0.9984582662582397, + 0.9989299178123474, + 0.9995007514953613, + 0.9988815188407898, + 0.998892605304718, + 0.9988194108009338 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.7142857142857143, + "NEGATIVE": 0.2857142857142857 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7142857142857143 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989200830459595, + 0.9995023012161255, + 0.9989251494407654, + 0.9989091157913208, + 0.9988189339637756 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 0.8125, + "final_counts": { + "POSITIVE": 13, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.8125, + "NEGATIVE": 0.1875 + } + } }, { "season_code": "202301", @@ -168471,7 +367750,7 @@ "9:25", "11:15", "HQ 113 - Humanities Quadrangle 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -168497,10 +367776,111 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84209\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84209/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998923122882843, + 0.9989070892333984, + 0.998862624168396, + 0.9986743927001953, + 0.9989137649536133 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987409710884094, + 0.9989355206489563, + 0.9989396929740906, + 0.9989332556724548, + 0.9989113807678223, + 0.9988662004470825 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9950631260871887, + 0.9988534450531006, + 0.9989117383956909, + 0.998934805393219, + 0.9989142417907715, + 0.9989171028137207 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 5 + }, + "sentiment_distribution": { + "NEGATIVE": 0.16666666666666666, + "POSITIVE": 0.8333333333333334 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 0.9411764705882353, + "final_counts": { + "POSITIVE": 16, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9411764705882353, + "NEGATIVE": 0.058823529411764705 + } + } }, { "season_code": "202301", @@ -168538,7 +367918,7 @@ "15:30", "17:20", "HQ 209 - Humanities Quadrangle 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -168560,10 +367940,125 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85853\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/85853/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988585710525513, + 0.9988853335380554, + 0.9987825751304626, + 0.9989342093467712, + 0.9989305138587952, + 0.9989274144172668, + 0.9987348914146423, + 0.998881995677948, + 0.9988501071929932 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989264607429504, + 0.9989275336265564, + 0.9989120960235596, + 0.9989151954650879, + 0.9986602067947388, + 0.9989022016525269, + 0.9988349080085754, + 0.9987732768058777, + 0.9989129304885864 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989105463027954, + 0.9989305138587952, + 0.9988704323768616, + 0.9989342093467712, + 0.9988299012184143, + 0.9988981485366821, + 0.9989156723022461 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 25, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 25 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -168606,10 +368101,38 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84211\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84211/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -168646,7 +368169,7 @@ "9:25", "11:15", "WLH 203 - William L. Harkness Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -168668,10 +368191,81 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84213\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84213/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988721013069153 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989187717437744 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989244341850281 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 3, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 3 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -168709,7 +368303,7 @@ "13:30", "15:20", "WLH 209 - William L. Harkness Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -168734,10 +368328,135 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84215\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84215/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9979718327522278, + 0.9989191293716431, + 0.9984763264656067, + 0.9988756775856018, + 0.9988007545471191, + 0.9989093542098999, + 0.9989000558853149, + 0.9988742470741272, + 0.9988596439361572, + 0.9984340071678162, + 0.9988676309585571 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988818764686584, + 0.9988976716995239, + 0.9989270567893982, + 0.9989160299301147, + 0.9988030195236206, + 0.9989185333251953, + 0.9988787770271301, + 0.9989385008811951 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9936134219169617, + 0.9989233613014221, + 0.9989045858383179, + 0.9988828301429749, + 0.9989252686500549, + 0.9989042282104492, + 0.9989238381385803, + 0.9989334940910339, + 0.99892657995224, + 0.9989017248153687, + 0.9989194869995117 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 30, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 30 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -168777,7 +368496,7 @@ "13:30", "15:20", "HQ C64 - Humanities Quadrangle C64", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -168799,15 +368518,156 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84217\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84217/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "", - "description": "In this course we plunge into the vibrant history of modernity and tradition in India and South Asia using healthcare as a broad case study. Scholars have shown that modernity, as a historical process and experience, was not uniform everywhere and was radically influenced by specific histories and cultures of different communities. Thus, while biomedicine began to dominate healthcare policy in the South Asian region in the nineteenth century, the diverse forms of healthcare beliefs, services, and practices which had historically defined the region\u2019s landscape also continued to thrive. How did the existing forms of traditions, especially those based on caste and religion, influence the nineteenth and twentieth century ideas and practices of modernity which emerged in the region? We also\u00a0discuss how a historical perspective can thus help us think productively about dichotomized entities commonly referred to as modern, traditional, indigenous, foreign, Western, and Eastern. We especially focus on the idea of \"pure\" traditions seen alongside the reality of exchange and \"circulation\", and learn how traditions can also be \"invented\". Apart from relevant primary sources (including images and videos), the readings for this course cover several disciplines including South Asian history, history of science\/medicine, medical anthropology, and STS.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988019466400146, + 0.998892605304718, + 0.9986458420753479, + 0.9984921216964722, + 0.9987829327583313, + 0.9988552331924438, + 0.9987409710884094, + 0.998660683631897, + 0.9986459612846375, + 0.9989140033721924, + 0.998863935470581 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988906979560852, + 0.9989392161369324, + 0.998782217502594, + 0.9989249110221863, + 0.9984185695648193, + 0.9952402114868164, + 0.999497652053833, + 0.998212456703186, + 0.9994988441467285, + 0.9988641738891602, + 0.9987277388572693, + 0.9987916350364685, + 0.998910665512085 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.7692307692307693, + "NEGATIVE": 0.23076923076923078 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7692307692307693 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9962408542633057, + 0.9989253878593445, + 0.9891315698623657, + 0.9986081719398499, + 0.9953621029853821, + 0.9924246072769165, + 0.9994633793830872, + 0.9989211559295654, + 0.9994999170303345, + 0.998910665512085, + 0.999414324760437, + 0.9988836646080017, + 0.9989055395126343 + ], + "sentiment_counts": { + "NEGATIVE": 5, + "POSITIVE": 8 + }, + "sentiment_distribution": { + "NEGATIVE": 0.38461538461538464, + "POSITIVE": 0.6153846153846154 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6153846153846154 + ] + }, + "final_label": "POSITIVE", + "final_count": 29, + "final_proportion": 0.7837837837837838, + "final_counts": { + "POSITIVE": 29, + "NEGATIVE": 8 + }, + "final_distribution": { + "POSITIVE": 0.7837837837837838, + "NEGATIVE": 0.21621621621621623 + } + } + }, + { + "season_code": "202301", + "requirements": "", + "description": "In this course we plunge into the vibrant history of modernity and tradition in India and South Asia using healthcare as a broad case study. Scholars have shown that modernity, as a historical process and experience, was not uniform everywhere and was radically influenced by specific histories and cultures of different communities. Thus, while biomedicine began to dominate healthcare policy in the South Asian region in the nineteenth century, the diverse forms of healthcare beliefs, services, and practices which had historically defined the region\u2019s landscape also continued to thrive. How did the existing forms of traditions, especially those based on caste and religion, influence the nineteenth and twentieth century ideas and practices of modernity which emerged in the region? We also\u00a0discuss how a historical perspective can thus help us think productively about dichotomized entities commonly referred to as modern, traditional, indigenous, foreign, Western, and Eastern. We especially focus on the idea of \"pure\" traditions seen alongside the reality of exchange and \"circulation\", and learn how traditions can also be \"invented\". Apart from relevant primary sources (including images and videos), the readings for this course cover several disciplines including South Asian history, history of science/medicine, medical anthropology, and STS.", "short_title": "Tradition, Modernity, Medicin...", "title": "Tradition, Modernity, Medicine in South Asia", "school": "YC", @@ -168841,7 +368701,7 @@ "13:30", "15:20", "WALL81 401 - 81 Wall Street 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -168860,11 +368720,152 @@ "rp_attr": "", "classnotes": "", "final_exam": "HTBA", - "course_home_url": "https:\/\/yale.instructure.com\/courses\/85863", - "syllabus_url": "", - "fysem": false, - "sysem": false, - "colsem": false + "course_home_url": "https://yale.instructure.com/courses/85863", + "syllabus_url": "", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989230036735535, + 0.9987348914146423, + 0.9988467693328857, + 0.9981142282485962, + 0.9989023208618164, + 0.9988031387329102, + 0.9987388253211975, + 0.9988933205604553, + 0.998741090297699, + 0.9985155463218689, + 0.9982210993766785, + 0.9987156391143799 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988930821418762, + 0.9989266991615295, + 0.9989331364631653, + 0.998788058757782, + 0.9987188577651978, + 0.9989352822303772, + 0.9989175796508789, + 0.9989297986030579, + 0.9989151954650879, + 0.9977465271949768, + 0.99885094165802 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988681077957153, + 0.9989049434661865, + 0.9989114999771118, + 0.9988995790481567, + 0.998913049697876, + 0.9989171028137207, + 0.9945160746574402, + 0.9989035129547119, + 0.9989045858383179, + 0.998762845993042, + 0.9987779259681702, + 0.9988565444946289, + 0.9985139966011047, + 0.9989350438117981, + 0.99886155128479 + ], + "sentiment_counts": { + "POSITIVE": 15, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 38, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 38 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -168903,7 +368904,7 @@ "15:30", "17:20", "BASSLB L73 - Bass Library L73", - "https:\/\/map.yale.edu\/?id=1910#!m\/564574" + "https://map.yale.edu/?id=1910#!m/564574" ] ] }, @@ -168928,10 +368929,117 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84219\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84219/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987775683403015, + 0.9970136880874634, + 0.9923905730247498, + 0.9988505840301514, + 0.9989007711410522, + 0.9988163709640503, + 0.9988088607788086 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983166456222534, + 0.9986822009086609, + 0.9986955523490906, + 0.9989274144172668, + 0.9989302754402161, + 0.9989227652549744, + 0.9987403750419617 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988903403282166, + 0.9989305138587952, + 0.9987758994102478, + 0.9989244341850281, + 0.9989315867424011, + 0.9988715052604675, + 0.998820960521698 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 21, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 21 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -168968,7 +369076,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -169006,7 +369142,7 @@ "13:30", "15:20", "HQ C64 - Humanities Quadrangle C64", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -169030,10 +369166,107 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84228\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84228/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986869692802429, + 0.9984258413314819, + 0.9987284541130066, + 0.9985878467559814, + 0.9130777716636658 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988986253738403, + 0.9988718628883362, + 0.9989299178123474, + 0.9988780617713928, + 0.9979777932167053 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989340901374817, + 0.9988766312599182, + 0.9988995790481567, + 0.9982940554618835, + 0.9250795841217041 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 0.9333333333333333, + "final_counts": { + "POSITIVE": 14, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9333333333333333, + "NEGATIVE": 0.06666666666666667 + } + } }, { "season_code": "202301", @@ -169071,7 +369304,7 @@ "9:25", "11:15", "LORIA 258 - Loria Center 258", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -169097,10 +369330,123 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84233\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84233/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9949499368667603, + 0.9986943602561951, + 0.998267650604248, + 0.9985992312431335, + 0.9989247918128967, + 0.9988240599632263, + 0.9989008903503418 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9612988233566284, + 0.9987875819206238, + 0.9989253878593445, + 0.9988986253738403, + 0.9987375140190125, + 0.9989303946495056, + 0.997349739074707 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9987491369247437, + 0.9988896250724792, + 0.9988893866539001, + 0.9989250302314758, + 0.9988771080970764, + 0.998647153377533, + 0.9989263415336609, + 0.9988419413566589, + 0.9983184337615967 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "final_label": "POSITIVE", + "final_count": 21, + "final_proportion": 0.9130434782608695, + "final_counts": { + "POSITIVE": 21, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9130434782608695, + "NEGATIVE": 0.08695652173913043 + } + } }, { "season_code": "202301", @@ -169138,7 +369484,7 @@ "15:30", "17:20", "HQ 209 - Humanities Quadrangle 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -169165,10 +369511,117 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84238\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84238/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987781643867493, + 0.998830258846283, + 0.9985963702201843, + 0.998863935470581, + 0.9988699555397034, + 0.9989104270935059, + 0.9965689182281494 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989280104637146, + 0.9994874000549316, + 0.9987373948097229, + 0.9988909363746643, + 0.9989271759986877, + 0.9988380074501038, + 0.9995014667510986 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.7142857142857143, + "NEGATIVE": 0.2857142857142857 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7142857142857143 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.998935878276825, + 0.9994605183601379, + 0.9989207983016968, + 0.998806357383728, + 0.9989232420921326, + 0.9985368251800537 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 0.8, + "final_counts": { + "POSITIVE": 16, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + } + } }, { "season_code": "202301", @@ -169211,7 +369664,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -169254,7 +369735,110 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9947704672813416, + 0.9983153343200684, + 0.9988446235656738, + 0.989655613899231, + 0.9953975081443787, + 0.9988909363746643, + 0.9989131689071655, + 0.9987269043922424 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986617565155029, + 0.9988664388656616, + 0.9985306262969971, + 0.9980185031890869, + 0.9988752007484436 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.99549400806427, + 0.9989091157913208, + 0.9978710412979126, + 0.9974592328071594, + 0.9989200830459595, + 0.9989290833473206 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 19 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -169297,7 +369881,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -169335,7 +369947,7 @@ "13:30", "15:20", "HQ C11 - Humanities Quadrangle C11", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -169360,10 +369972,119 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84130\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84130/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987892508506775, + 0.9988318085670471, + 0.9988960027694702, + 0.9987145662307739, + 0.9988780617713928, + 0.9988214373588562, + 0.9988611936569214 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998903751373291, + 0.9989362359046936, + 0.9988456964492798, + 0.9981629252433777, + 0.9986252784729004, + 0.9986976385116577, + 0.9988201260566711 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988335967063904, + 0.9989392161369324, + 0.9988880753517151, + 0.9989302754402161, + 0.9989266991615295, + 0.9983274340629578, + 0.9981574416160583, + 0.998887836933136 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 22, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 22 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -169403,7 +370124,7 @@ "15:30", "17:20", "HQ C64 - Humanities Quadrangle C64", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -169415,10 +370136,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84237\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84237/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -169456,7 +370205,7 @@ "13:30", "15:20", "LC 103 - Linsly-Chittenden Hall 103", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -169470,10 +370219,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84258\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84258/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -169511,7 +370288,7 @@ "9:25", "11:15", "HQ 129 - Humanities Quadrangle 129", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -169523,10 +370300,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84264\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84264/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -169565,7 +370370,7 @@ "13:30", "15:20", "HQ 123 - Humanities Quadrangle 123", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -169580,15 +370385,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84269\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84269/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This graduate seminar explores how nature has been constructed, reorganized, and mobilized in the modern museum, while introducing graduate students to museum studies and museum practice. With history of science\/science studies at its disciplinary core, the course also incorporates methodologies and readings from cultural history, history of art, anthropology, museum studies, critical heritage studies, and art practice. We examine Yale\u2019s museums and collections as sites for forging and defining relations between nature and culture, between the natural and the unnatural, and between human and environment. The course builds toward historically informed discussions of questions about decolonization, repatriation, and repair circulating in current public discourse around natural history museums. Our most sustained engagement will be with the Yale Peabody Museum of Natural History, and the history of natural history in the United States since 1800. The course has a varied format, incorporating seminar discussions of readings, site visits to museums on and off campus, and workshops with Peabody collections and staff. This course helps to build an ongoing dialogue between graduate students and museum staff as the Peabody rethinks its displays for its current renovation, and is intended to lead to a student-curated exhibition at the Peabody in 2024.", + "description": "This graduate seminar explores how nature has been constructed, reorganized, and mobilized in the modern museum, while introducing graduate students to museum studies and museum practice. With history of science/science studies at its disciplinary core, the course also incorporates methodologies and readings from cultural history, history of art, anthropology, museum studies, critical heritage studies, and art practice. We examine Yale\u2019s museums and collections as sites for forging and defining relations between nature and culture, between the natural and the unnatural, and between human and environment. The course builds toward historically informed discussions of questions about decolonization, repatriation, and repair circulating in current public discourse around natural history museums. Our most sustained engagement will be with the Yale Peabody Museum of Natural History, and the history of natural history in the United States since 1800. The course has a varied format, incorporating seminar discussions of readings, site visits to museums on and off campus, and workshops with Peabody collections and staff. This course helps to build an ongoing dialogue between graduate students and museum staff as the Peabody rethinks its displays for its current renovation, and is intended to lead to a student-curated exhibition at the Peabody in 2024.", "short_title": "Nature and the Modern Museum", "title": "Nature and the Modern Museum", "school": "GS", @@ -169623,7 +370456,7 @@ "13:30", "15:20", "ESC 100 - Environmental Sciences Center 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560020" + "https://map.yale.edu/?id=1910#!m/560020" ] ] }, @@ -169638,10 +370471,17 @@ "classnotes": "Classroom Location: ESC 100 ", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84274\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84274/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -169679,7 +370519,7 @@ "9:25", "11:15", "HQ C03 - Humanities Quadrangle C03", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -169694,10 +370534,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84278\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84278/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -169734,7 +370581,7 @@ "12:00", "13:00", "HQ 127 - Humanities Quadrangle 127", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -169746,10 +370593,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87340\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87340/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -169786,7 +370661,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -169823,7 +370726,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -169861,7 +370792,7 @@ "13:00", "14:15", "LC 317 - Linsly-Chittenden Hall 317", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -169869,7 +370800,7 @@ "13:00", "14:15", "LC 317 - Linsly-Chittenden Hall 317", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -169887,10 +370818,133 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84374\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84374/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988779425621033, + 0.9978673458099365, + 0.9980142116546631, + 0.9987899661064148, + 0.998909592628479, + 0.9989080429077148, + 0.9989111423492432, + 0.998908281326294, + 0.9989258646965027 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987162351608276, + 0.9971765279769897, + 0.9975201487541199, + 0.9987034797668457, + 0.9989199638366699, + 0.9989036321640015, + 0.9988777041435242, + 0.9988687634468079, + 0.998744010925293 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988839030265808, + 0.9971765279769897, + 0.9982045888900757, + 0.9985752105712891, + 0.9974592328071594, + 0.998915433883667, + 0.9989032745361328, + 0.9988540410995483, + 0.9989392161369324, + 0.9989258646965027 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "final_label": "POSITIVE", + "final_count": 26, + "final_proportion": 0.9285714285714286, + "final_counts": { + "POSITIVE": 26, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9285714285714286, + "NEGATIVE": 0.07142857142857142 + } + } }, { "season_code": "202301", @@ -169928,7 +370982,7 @@ "16:00", "17:15", "LC 317 - Linsly-Chittenden Hall 317", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -169936,7 +370990,7 @@ "16:00", "17:15", "LC 317 - Linsly-Chittenden Hall 317", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -169952,10 +371006,109 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84378\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84378/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987711310386658, + 0.9987718462944031, + 0.9989270567893982, + 0.9989240765571594, + 0.9988455772399902, + 0.9988866448402405 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988628625869751, + 0.9938318729400635, + 0.9989369511604309, + 0.9988425374031067, + 0.9989238381385803 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988896250724792, + 0.9980297684669495, + 0.9989057779312134, + 0.998805046081543, + 0.9989186525344849 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 0.875, + "final_counts": { + "POSITIVE": 14, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + } + } }, { "season_code": "202301", @@ -169994,7 +371147,7 @@ "14:30", "15:45", "LC 105 - Linsly-Chittenden Hall 105", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -170002,7 +371155,7 @@ "14:30", "15:45", "LC 105 - Linsly-Chittenden Hall 105", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -170016,10 +371169,129 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83864\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83864/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989175796508789, + 0.9986910223960876, + 0.9987429976463318, + 0.9987626075744629, + 0.9989041090011597, + 0.9988994598388672, + 0.9988794922828674, + 0.9988011121749878, + 0.9988583326339722 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994024038314819, + 0.9987537860870361, + 0.9988158941268921, + 0.9989157915115356, + 0.9971063733100891, + 0.9989058971405029, + 0.9981903433799744, + 0.9989369511604309, + 0.9986433386802673 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 7 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2222222222222222, + "POSITIVE": 0.7777777777777778 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7777777777777778 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988930821418762, + 0.9988705515861511, + 0.998765230178833, + 0.998934805393219, + 0.9980506896972656, + 0.9988742470741272, + 0.9988773465156555, + 0.9989223480224609 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 24, + "final_proportion": 0.9230769230769231, + "final_counts": { + "POSITIVE": 24, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9230769230769231, + "NEGATIVE": 0.07692307692307693 + } + } }, { "season_code": "202301", @@ -170057,7 +371329,7 @@ "13:00", "14:15", "LC 208 - Linsly-Chittenden Hall 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -170065,7 +371337,7 @@ "13:00", "14:15", "LC 208 - Linsly-Chittenden Hall 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -170079,10 +371351,121 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85233\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85233/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987555742263794, + 0.9987882971763611, + 0.9989290833473206, + 0.9988647699356079, + 0.9989066123962402, + 0.9987360835075378 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9981984496116638, + 0.9979565143585205, + 0.9988956451416016, + 0.9995086193084717, + 0.9989246726036072, + 0.9989387392997742, + 0.9988442659378052, + 0.9986571073532104 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 5 + }, + "sentiment_distribution": { + "NEGATIVE": 0.375, + "POSITIVE": 0.625 + }, + "sentiment_overall": [ + "POSITIVE", + 0.625 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989092350006104, + 0.993098795413971, + 0.9956574440002441, + 0.9989309906959534, + 0.9985783100128174, + 0.9986329674720764, + 0.998880922794342, + 0.9988872408866882 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 0.7727272727272727, + "final_counts": { + "POSITIVE": 17, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.7727272727272727, + "NEGATIVE": 0.22727272727272727 + } + } }, { "season_code": "202301", @@ -170120,7 +371503,7 @@ "19:00", "21:00", "HQ 127 - Humanities Quadrangle 127", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Tuesday": [ @@ -170128,7 +371511,7 @@ "13:30", "15:20", "SML 118A - Sterling Memorial Library 118A", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -170139,17 +371522,144 @@ "Hu" ], "flags": [ - "YC English: 20th\/21st Century" + "YC English: 20th/21st Century" ], "regnotes": "", "rp_attr": "This course meets during the Reading Period: the week between the last week of classes and finals week. Meets Reading Period", "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84293\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84293/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998853325843811, + 0.998938262462616, + 0.997179388999939, + 0.9989060163497925, + 0.9989033937454224, + 0.9988340735435486, + 0.9986996650695801, + 0.9988929629325867, + 0.9988765120506287, + 0.9988468885421753 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989020824432373, + 0.9989257454872131, + 0.998895525932312, + 0.9988946318626404, + 0.9987049102783203, + 0.998893678188324, + 0.9988862872123718, + 0.9988811612129211, + 0.9989043474197388, + 0.998914361000061 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998892605304718, + 0.9988548755645752, + 0.9989206790924072, + 0.9988852143287659, + 0.9987719655036926, + 0.9989292025566101, + 0.9989244341850281, + 0.9988779425621033, + 0.9989367127418518, + 0.9988836646080017, + 0.9989151954650879 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 31, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 31 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -170188,7 +371698,7 @@ "16:00", "17:15", "WLH 113 - William L. Harkness Hall 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -170196,7 +371706,7 @@ "16:00", "17:15", "WLH 113 - William L. Harkness Hall 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -170213,10 +371723,123 @@ "classnotes": "", "final_exam": "Wednesday, May 10, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86014\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86014/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989157915115356, + 0.9983547329902649, + 0.9988113641738892, + 0.9987735152244568, + 0.9988489151000977, + 0.998671293258667, + 0.9988933205604553 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989352822303772, + 0.9988201260566711, + 0.9988436698913574, + 0.9988470077514648, + 0.9989075660705566, + 0.9988760352134705, + 0.9988828301429749, + 0.9989232420921326 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989357590675354, + 0.9976447224617004, + 0.9988884329795837, + 0.9831075668334961, + 0.9988651275634766, + 0.9988718628883362, + 0.9985583424568176, + 0.9989359974861145 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "final_label": "POSITIVE", + "final_count": 22, + "final_proportion": 0.9565217391304348, + "final_counts": { + "POSITIVE": 22, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9565217391304348, + "NEGATIVE": 0.043478260869565216 + } + } }, { "season_code": "202301", @@ -170249,7 +371872,7 @@ "13:30", "14:20", "WLH 203 - William L. Harkness Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -170267,7 +371890,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -170300,7 +371951,7 @@ "14:30", "15:20", "WLH 013 - William L. Harkness Hall 013", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -170318,7 +371969,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -170358,7 +372037,7 @@ "9:00", "10:15", "LC 209 - Linsly-Chittenden Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -170366,7 +372045,7 @@ "9:00", "10:15", "LC 209 - Linsly-Chittenden Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -170382,10 +372061,107 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83959\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83959/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988923668861389, + 0.9988337159156799, + 0.9986839890480042, + 0.9986152648925781, + 0.9989172220230103 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989262223243713, + 0.9981769323348999, + 0.998703122138977, + 0.99893718957901 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984195232391357, + 0.9989144802093506, + 0.9989256262779236, + 0.9971181154251099, + 0.9988946318626404, + 0.9989257454872131 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 0.9333333333333333, + "final_counts": { + "POSITIVE": 14, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9333333333333333, + "NEGATIVE": 0.06666666666666667 + } + } }, { "season_code": "202301", @@ -170426,7 +372202,7 @@ "13:30", "15:20", "HQ 401 - Humanities Quadrangle 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -170440,10 +372216,141 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84383\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84383/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986565113067627, + 0.9994283318519592, + 0.9913539290428162, + 0.9985716342926025, + 0.9988849759101868, + 0.9988454580307007 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994857311248779, + 0.9995075464248657, + 0.9995049238204956, + 0.9994805455207825, + 0.9994825124740601, + 0.9995096921920776, + 0.9987964630126953, + 0.9994977712631226, + 0.9995015859603882, + 0.9995019435882568, + 0.9994730353355408, + 0.9964937567710876, + 0.9979900121688843 + ], + "sentiment_counts": { + "NEGATIVE": 11, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.8461538461538461, + "POSITIVE": 0.15384615384615385 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.8461538461538461 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9994837045669556, + 0.9982234835624695, + 0.9994789958000183, + 0.9985187649726868, + 0.9973189234733582, + 0.9986139535903931, + 0.9995099306106567, + 0.9993284940719604, + 0.9994149208068848, + 0.9980016350746155, + 0.9994982481002808, + 0.9896597266197205, + 0.9995013475418091 + ], + "sentiment_counts": { + "NEGATIVE": 13, + "POSITIVE": 0 + }, + "sentiment_distribution": { + "NEGATIVE": 1.0, + "POSITIVE": 0.0 + }, + "sentiment_overall": [ + "NEGATIVE", + 1.0 + ] + }, + "final_label": "NEGATIVE", + "final_count": 26, + "final_proportion": 0.8125, + "final_counts": { + "POSITIVE": 6, + "NEGATIVE": 26 + }, + "final_distribution": { + "POSITIVE": 0.1875, + "NEGATIVE": 0.8125 + } + } }, { "season_code": "202301", @@ -170482,7 +372389,7 @@ "11:35", "12:50", "HQ L02 - Humanities Quadrangle L02", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -170490,7 +372397,7 @@ "11:35", "12:50", "HQ L02 - Humanities Quadrangle L02", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -170504,10 +372411,291 @@ "classnotes": "", "final_exam": "Monday, May 8, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84772\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84772/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988290667533875, + 0.9988075494766235, + 0.9966762065887451, + 0.998902440071106, + 0.9988210797309875, + 0.9975656270980835, + 0.9988633394241333, + 0.9986528158187866, + 0.998358428478241, + 0.9989237189292908, + 0.9987260699272156, + 0.9983518123626709, + 0.99811851978302, + 0.9988264441490173, + 0.9986715316772461, + 0.9989025592803955, + 0.9910557270050049, + 0.9988585710525513, + 0.9985525012016296, + 0.9977089166641235, + 0.9989070892333984, + 0.9979081153869629, + 0.9987916350364685, + 0.9988657236099243, + 0.9974964261054993, + 0.9989084005355835, + 0.9988693594932556, + 0.9989012479782104, + 0.9989035129547119, + 0.9968770742416382, + 0.9988401532173157, + 0.99765944480896, + 0.9987685084342957, + 0.9989281296730042, + 0.9948299527168274, + 0.9988118410110474, + 0.9988964796066284 + ], + "sentiment_counts": { + "POSITIVE": 36, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.972972972972973, + "NEGATIVE": 0.02702702702702703 + }, + "sentiment_overall": [ + "POSITIVE", + 0.972972972972973 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982505440711975, + 0.9988216757774353, + 0.9927753210067749, + 0.9984867572784424, + 0.997535228729248, + 0.9988909363746643, + 0.9994943141937256, + 0.998920202255249, + 0.9988312125205994, + 0.9994657635688782, + 0.9985942244529724, + 0.9994660019874573, + 0.9986879229545593, + 0.9985479712486267, + 0.9944854378700256, + 0.9984076619148254, + 0.9988272786140442, + 0.9988683462142944, + 0.9986459612846375, + 0.9988570213317871, + 0.998930037021637, + 0.9988259673118591, + 0.9988610744476318, + 0.9982654452323914, + 0.9989336133003235, + 0.9981223940849304, + 0.9988973140716553, + 0.9987978935241699, + 0.9983129501342773, + 0.9989041090011597, + 0.9989180564880371, + 0.9977905750274658, + 0.9988817572593689 + ], + "sentiment_counts": { + "POSITIVE": 29, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.8787878787878788, + "NEGATIVE": 0.12121212121212122 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8787878787878788 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9976546764373779, + 0.9989054203033447, + 0.9918733239173889, + 0.9986003041267395, + 0.9987607002258301, + 0.997117280960083, + 0.9989318251609802, + 0.9988375306129456, + 0.9983757734298706, + 0.9959028363227844, + 0.9963801503181458, + 0.9980168342590332, + 0.9991083741188049, + 0.9976826906204224, + 0.9988815188407898, + 0.9988943934440613, + 0.9767922759056091, + 0.9969416260719299, + 0.9988981485366821, + 0.9983124732971191, + 0.9988852143287659, + 0.9985693693161011, + 0.9983709454536438, + 0.9989199638366699, + 0.9983469247817993, + 0.9989011287689209, + 0.9988847374916077, + 0.9988110065460205, + 0.9982798099517822, + 0.9984978437423706, + 0.9988870024681091, + 0.998630940914154, + 0.9988604784011841, + 0.9989032745361328, + 0.997117280960083, + 0.9962310194969177, + 0.9989303946495056 + ], + "sentiment_counts": { + "NEGATIVE": 5, + "POSITIVE": 32 + }, + "sentiment_distribution": { + "NEGATIVE": 0.13513513513513514, + "POSITIVE": 0.8648648648648649 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8648648648648649 + ] + }, + "final_label": "POSITIVE", + "final_count": 97, + "final_proportion": 0.9065420560747663, + "final_counts": { + "POSITIVE": 97, + "NEGATIVE": 10 + }, + "final_distribution": { + "POSITIVE": 0.9065420560747663, + "NEGATIVE": 0.09345794392523364 + } + } }, { "season_code": "202301", @@ -170546,7 +372734,7 @@ "14:30", "15:45", "WALL81 101 - 81 Wall Street 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ], "Thursday": [ @@ -170554,7 +372742,7 @@ "14:30", "15:45", "WALL81 101 - 81 Wall Street 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -170568,10 +372756,95 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85878\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85878/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988853335380554, + 0.9988697171211243, + 0.9988394379615784 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989312291145325, + 0.9988176226615906, + 0.9989012479782104 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988285899162292, + 0.997117280960083, + 0.9989375472068787, + 0.9989257454872131 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 10 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -170612,7 +372885,7 @@ "13:30", "15:20", "WLH 112 - William L. Harkness Hall 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -170630,10 +372903,111 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84117\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84117/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988515377044678, + 0.9988743662834167, + 0.9988071918487549, + 0.998790442943573, + 0.9988538026809692, + 0.9989251494407654 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988933205604553, + 0.9988358616828918, + 0.9988014698028564, + 0.998714804649353, + 0.9989399313926697, + 0.9989112615585327 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984431862831116, + 0.9989135265350342, + 0.9989309906959534, + 0.9988670349121094, + 0.9989182949066162, + 0.9989275336265564 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 18 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -170672,7 +373046,7 @@ "9:25", "11:15", "LC 213 - Linsly-Chittenden Hall 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -170681,7 +373055,7 @@ "Hu" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC English: Creative Writing" ], @@ -170690,10 +373064,117 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84298\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84298/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987819790840149, + 0.9988090991973877, + 0.998837411403656, + 0.9989269375801086, + 0.9988377690315247, + 0.9989253878593445, + 0.9983886480331421 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989109039306641, + 0.9989126920700073, + 0.9988999366760254, + 0.9989186525344849, + 0.9989385008811951, + 0.9989142417907715, + 0.998909592628479 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982553124427795, + 0.9989036321640015, + 0.9989383816719055, + 0.9988756775856018, + 0.9989141225814819, + 0.9989344477653503, + 0.9985232949256897 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 21, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 21 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -170731,7 +373212,7 @@ "13:30", "15:20", "STOECK 313 - Stoeckel Hall (renovated) 313", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ] }, @@ -170745,10 +373226,125 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84539\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84539/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988754391670227, + 0.9987420439720154, + 0.998917818069458, + 0.9989197254180908, + 0.9987180233001709, + 0.9988664388656616, + 0.9988183379173279, + 0.9988529682159424 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989239573478699, + 0.9988712668418884, + 0.9989292025566101, + 0.9989325404167175, + 0.9988836646080017, + 0.9989375472068787, + 0.9989114999771118, + 0.9988881945610046 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988648891448975, + 0.998884379863739, + 0.998916506767273, + 0.9989185333251953, + 0.9989032745361328, + 0.9981018900871277, + 0.9989330172538757, + 0.9989345669746399, + 0.9989334940910339 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 25, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 25 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -170788,7 +373384,7 @@ "13:00", "14:15", "HQ 129 - Humanities Quadrangle 129", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -170796,7 +373392,7 @@ "13:00", "14:15", "HQ 129 - Humanities Quadrangle 129", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Tuesday": [ @@ -170804,7 +373400,7 @@ "19:00", "22:00", "HQ L01 - Humanities Quadrangle L01", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -170813,7 +373409,7 @@ "Hu" ], "flags": [ - "YC English: 20th\/21st Century", + "YC English: 20th/21st Century", "YC FILM: World Cinema", "YC CPLT: Early Modern", "Writing Skill (Opt.)" @@ -170823,10 +373419,137 @@ "classnotes": "Plus film screening on Tuesdays - time TBA", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84388\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84388/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988595247268677, + 0.9946152567863464, + 0.9960386753082275, + 0.9943276047706604, + 0.9984118938446045, + 0.9987768530845642, + 0.9988961219787598, + 0.9988929629325867, + 0.9989141225814819, + 0.998917818069458 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994737505912781, + 0.9989266991615295, + 0.9940938353538513, + 0.9989174604415894, + 0.9988634586334229, + 0.9989370703697205, + 0.9994889497756958, + 0.9974939823150635 + ], + "sentiment_counts": { + "NEGATIVE": 4, + "POSITIVE": 4 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987943172454834, + 0.9985396862030029, + 0.9987170696258545, + 0.9989104270935059, + 0.9989056587219238, + 0.9945524334907532, + 0.9987840056419373, + 0.9988294243812561, + 0.9989365935325623, + 0.9988839030265808, + 0.9988992214202881, + 0.9985396862030029 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9166666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 25, + "final_proportion": 0.8333333333333334, + "final_counts": { + "POSITIVE": 25, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + } + } }, { "season_code": "202301", @@ -170867,7 +373590,7 @@ "11:35", "12:50", "WLH 116 - William L. Harkness Hall 116", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -170875,7 +373598,7 @@ "11:35", "12:50", "WLH 116 - William L. Harkness Hall 116", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -170891,10 +373614,225 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84918\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84918/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989197254180908, + 0.9987603425979614, + 0.9986374974250793, + 0.9986612796783447, + 0.9989274144172668, + 0.9988151788711548, + 0.9987818598747253, + 0.998933732509613, + 0.9988162517547607, + 0.9987201690673828, + 0.998772919178009, + 0.9984657764434814, + 0.9988976716995239, + 0.9987512826919556, + 0.9987969398498535, + 0.998855471611023, + 0.9982750415802002, + 0.998762845993042, + 0.9988588094711304 + ], + "sentiment_counts": { + "POSITIVE": 19, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988947510719299, + 0.9989288449287415, + 0.999372661113739, + 0.9987840056419373, + 0.9970316886901855, + 0.9988811612129211, + 0.9981605410575867, + 0.9989251494407654, + 0.9873360991477966, + 0.9984754920005798, + 0.9992961883544922, + 0.9987847208976746, + 0.9989161491394043, + 0.9666587710380554, + 0.9987657070159912, + 0.9986672401428223, + 0.9988032579421997, + 0.9994205236434937, + 0.9988540410995483, + 0.9981870055198669, + 0.9988904595375061, + 0.9988420605659485, + 0.9994944334030151, + 0.9938912391662598, + 0.9987677335739136, + 0.9988682270050049, + 0.998918890953064 + ], + "sentiment_counts": { + "POSITIVE": 20, + "NEGATIVE": 7 + }, + "sentiment_distribution": { + "POSITIVE": 0.7407407407407407, + "NEGATIVE": 0.25925925925925924 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7407407407407407 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988653659820557, + 0.9989262223243713, + 0.9988555908203125, + 0.9988603591918945, + 0.9988768696784973, + 0.9987687468528748, + 0.9988629817962646, + 0.9989227652549744, + 0.9991430044174194, + 0.9988613128662109, + 0.9988293051719666, + 0.9982553124427795, + 0.998917818069458, + 0.9981935620307922, + 0.9988791346549988, + 0.9986649751663208, + 0.9987620115280151, + 0.998808741569519, + 0.9987805485725403, + 0.997412383556366, + 0.9989323019981384, + 0.9988679885864258, + 0.997117280960083, + 0.9980511665344238, + 0.9994840621948242, + 0.9984065890312195, + 0.9988584518432617, + 0.9987711310386658 + ], + "sentiment_counts": { + "POSITIVE": 25, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.8928571428571429, + "NEGATIVE": 0.10714285714285714 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8928571428571429 + ] + }, + "final_label": "POSITIVE", + "final_count": 64, + "final_proportion": 0.8648648648648649, + "final_counts": { + "POSITIVE": 64, + "NEGATIVE": 10 + }, + "final_distribution": { + "POSITIVE": 0.8648648648648649, + "NEGATIVE": 0.13513513513513514 + } + } }, { "season_code": "202301", @@ -170934,7 +373872,7 @@ "13:00", "14:15", "LC 210 - Linsly-Chittenden Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -170942,7 +373880,7 @@ "13:00", "14:15", "LC 210 - Linsly-Chittenden Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -170963,10 +373901,103 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83982\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83982/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987292885780334, + 0.9872334003448486, + 0.9894639253616333, + 0.9984715580940247 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988622665405273, + 0.9988981485366821, + 0.9993638396263123 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989308714866638, + 0.9988476037979126, + 0.998931348323822, + 0.9986861348152161, + 0.9935492873191833, + 0.9994437098503113 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 0.7692307692307693, + "final_counts": { + "POSITIVE": 10, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.7692307692307693, + "NEGATIVE": 0.23076923076923078 + } + } }, { "season_code": "202301", @@ -171004,7 +374035,7 @@ "13:30", "15:20", "YK212 004 - 212 York Street 004", - "https:\/\/map.yale.edu\/?id=1910#!m\/559604" + "https://map.yale.edu/?id=1910#!m/559604" ] ] }, @@ -171018,15 +374049,142 @@ "classnotes": "See Canvas page for course application", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84979\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "", - "description": "Medieval understandings of womanhood examined through analysis of writings by and\/or about women, from antiquity through the Middle Ages. Introduction to the premodern Western canon and assessment of the role that women played in its construction.", + "syllabus_url": "https://yale.instructure.com/courses/84979/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998714804649353, + 0.9987809062004089, + 0.998930037021637, + 0.9989261031150818, + 0.998923122882843, + 0.9988994598388672, + 0.9987977743148804, + 0.9988512992858887 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987972974777222, + 0.9989018440246582, + 0.9989111423492432, + 0.9980452060699463, + 0.9986479878425598, + 0.9989045858383179, + 0.9989233613014221, + 0.9989327788352966, + 0.9989398121833801, + 0.9989346861839294, + 0.9988968372344971 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9090909090909091 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988808035850525, + 0.9989073276519775, + 0.9989286065101624, + 0.9960849285125732, + 0.998934805393219, + 0.9985396862030029, + 0.9989327788352966, + 0.9989383816719055, + 0.9987958669662476, + 0.9989232420921326, + 0.9989334940910339 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9090909090909091 + ] + }, + "final_label": "POSITIVE", + "final_count": 28, + "final_proportion": 0.9333333333333333, + "final_counts": { + "POSITIVE": 28, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9333333333333333, + "NEGATIVE": 0.06666666666666667 + } + } + }, + { + "season_code": "202301", + "requirements": "", + "description": "Medieval understandings of womanhood examined through analysis of writings by and/or about women, from antiquity through the Middle Ages. Introduction to the premodern Western canon and assessment of the role that women played in its construction.", "short_title": "Women in the Middle Ages", "title": "Women in the Middle Ages", "school": "YC", @@ -171061,7 +374219,7 @@ "13:00", "14:15", "HQ C07 - Humanities Quadrangle C07", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -171069,7 +374227,7 @@ "13:00", "14:15", "HQ C07 - Humanities Quadrangle C07", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -171085,10 +374243,117 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84967\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84967/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989093542098999, + 0.9987327456474304, + 0.9989203214645386, + 0.9988341927528381, + 0.9983691573143005, + 0.9988722205162048, + 0.9988724589347839 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9972534775733948, + 0.9987975358963013, + 0.9989268183708191, + 0.9988551139831543, + 0.9989287257194519, + 0.9967257976531982, + 0.998938262462616 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989038705825806, + 0.9988985061645508, + 0.9988089799880981, + 0.9989352822303772, + 0.9987322688102722, + 0.9988644123077393, + 0.9989362359046936 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 21, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 21 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -171126,7 +374391,7 @@ "9:00", "10:15", "LC 210 - Linsly-Chittenden Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -171134,7 +374399,7 @@ "9:00", "10:15", "LC 210 - Linsly-Chittenden Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -171148,13 +374413,128 @@ ], "regnotes": "", "rp_attr": "", - "classnotes": "This course may satisfy the Medieval literature requirement for English majors with permission from the instructor and the DUS. The English Distribution Request Form is available at https:\/\/english.yale.edu\/undergraduate\/deadlines-and-forms.", + "classnotes": "This course may satisfy the Medieval literature requirement for English majors with permission from the instructor and the DUS. The English Distribution Request Form is available at https://english.yale.edu/undergraduate/deadlines-and-forms.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83987\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83987/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9902218580245972, + 0.9972189664840698, + 0.9985235333442688, + 0.9988841414451599, + 0.998860239982605, + 0.9984574317932129, + 0.9976771473884583, + 0.9988632202148438 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998778760433197, + 0.9988656044006348, + 0.9989057779312134, + 0.9990161657333374, + 0.9987384676933289, + 0.9989318251609802 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998863935470581, + 0.9979015588760376, + 0.9982553124427795, + 0.9989050626754761, + 0.9988887906074524, + 0.9988487958908081, + 0.9924758076667786, + 0.9988442659378052, + 0.9968116879463196, + 0.998927891254425 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "final_label": "POSITIVE", + "final_count": 21, + "final_proportion": 0.875, + "final_counts": { + "POSITIVE": 21, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + } + } }, { "season_code": "202301", @@ -171194,7 +374574,7 @@ "13:30", "15:20", "HQ C11 - Humanities Quadrangle C11", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -171221,10 +374601,109 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84305\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84305/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988833069801331, + 0.9989172220230103, + 0.99886155128479, + 0.9988523721694946 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989222288131714, + 0.9984582662582397, + 0.9989299178123474, + 0.9995007514953613, + 0.9988815188407898, + 0.998892605304718, + 0.9988194108009338 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.7142857142857143, + "NEGATIVE": 0.2857142857142857 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7142857142857143 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989200830459595, + 0.9995023012161255, + 0.9989251494407654, + 0.9989091157913208, + 0.9988189339637756 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 0.8125, + "final_counts": { + "POSITIVE": 13, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.8125, + "NEGATIVE": 0.1875 + } + } }, { "season_code": "202301", @@ -171262,7 +374741,7 @@ "15:30", "17:20", "HQ C64 - Humanities Quadrangle C64", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -171284,10 +374763,38 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84168\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84168/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -171327,7 +374834,7 @@ "11:35", "12:50", "HQ 129 - Humanities Quadrangle 129", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -171335,7 +374842,7 @@ "11:35", "12:50", "HQ 129 - Humanities Quadrangle 129", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -171344,17 +374851,134 @@ "Hu" ], "flags": [ - "YC EVST: Core Human\/Social Sci" + "YC EVST: Core Human/Social Sci" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84303\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84303/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989239573478699, + 0.997658371925354, + 0.998891294002533, + 0.9987801909446716, + 0.9988897442817688, + 0.9988964796066284, + 0.9988486766815186, + 0.9988806843757629, + 0.9989103078842163 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989364743232727, + 0.9988723397254944, + 0.9988699555397034, + 0.9988604784011841, + 0.9988333582878113, + 0.9989116191864014, + 0.9988388419151306 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988983869552612, + 0.9989307522773743, + 0.9988526105880737, + 0.9988763928413391, + 0.9989306330680847, + 0.9981436729431152, + 0.9989198446273804, + 0.9982477426528931, + 0.9989131689071655, + 0.9988601207733154 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 26, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 26 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -171392,7 +375016,7 @@ "13:30", "15:20", "LC 205 - Linsly-Chittenden Hall 205", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -171408,10 +375032,135 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84308\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84308/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988031387329102, + 0.9985154271125793, + 0.9988970756530762, + 0.998778760433197, + 0.9988439083099365, + 0.9988909363746643, + 0.9994575381278992, + 0.9989257454872131 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989200830459595, + 0.9981003403663635, + 0.999491810798645, + 0.9985044002532959, + 0.9985190033912659, + 0.998889148235321, + 0.9973049163818359, + 0.9988300204277039, + 0.9983243346214294, + 0.998935878276825, + 0.9989047050476074 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9090909090909091 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988685846328735, + 0.9976344108581543, + 0.9995131492614746, + 0.9995098114013672, + 0.9989332556724548, + 0.9981753826141357, + 0.9989338517189026, + 0.9988911747932434, + 0.9989338517189026, + 0.9989112615585327 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.7, + "NEGATIVE": 0.3 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7 + ] + }, + "final_label": "POSITIVE", + "final_count": 24, + "final_proportion": 0.8275862068965517, + "final_counts": { + "POSITIVE": 24, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.8275862068965517, + "NEGATIVE": 0.1724137931034483 + } + } }, { "season_code": "202301", @@ -171450,7 +375199,7 @@ "15:30", "17:20", "PR210 203 - 210 Prospect Street 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/559971" + "https://map.yale.edu/?id=1910#!m/559971" ] ] }, @@ -171465,10 +375214,119 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84894\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84894/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988918900489807, + 0.9987791180610657, + 0.9988778233528137, + 0.9987720847129822, + 0.9989249110221863, + 0.9993465542793274 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989144802093506, + 0.9986851811408997, + 0.9990808963775635, + 0.9987857937812805, + 0.998875081539154, + 0.9995096921920776, + 0.9985098242759705 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.7142857142857143, + "NEGATIVE": 0.2857142857142857 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7142857142857143 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.999498724937439, + 0.998877227306366, + 0.9981572031974792, + 0.9964326620101929, + 0.9988914132118225, + 0.998897910118103, + 0.9975636005401611, + 0.997117280960083 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 5 + }, + "sentiment_distribution": { + "NEGATIVE": 0.375, + "POSITIVE": 0.625 + }, + "sentiment_overall": [ + "POSITIVE", + 0.625 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 0.7142857142857143, + "final_counts": { + "POSITIVE": 15, + "NEGATIVE": 6 + }, + "final_distribution": { + "POSITIVE": 0.7142857142857143, + "NEGATIVE": 0.2857142857142857 + } + } }, { "season_code": "202301", @@ -171511,7 +375369,7 @@ "13:30", "15:20", "WLH 210 - William L. Harkness Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -171527,10 +375385,111 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84129\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84129/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988349080085754, + 0.9989114999771118, + 0.9988352656364441, + 0.9988980293273926, + 0.9981107711791992, + 0.9989091157913208 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998519241809845, + 0.9988806843757629, + 0.9989018440246582, + 0.9989277720451355, + 0.9988627433776855, + 0.998831570148468 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988400340080261, + 0.9989107847213745, + 0.9988746047019958, + 0.9989101886749268, + 0.9985346794128418, + 0.9982048273086548 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 18 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -171569,7 +375528,7 @@ "13:30", "15:20", "HQ 127 - Humanities Quadrangle 127", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -171585,15 +375544,110 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84311\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84311/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "", - "description": "The course takes up a pressing topic from the sciences and looks at it from the angle of the humanities: how are ecological crises, how is\u2013most specifically and urgently\u2013our current climate crisis represented and reflected upon in non-scientific public discourse: in journalism, in the social media, in literature, and in film? With a focus on, but not limited to literary texts, the course draws on established categories of literary analysis, such as plot patterns or the techniques of narration and\/vs. description, and links them to philosophical concepts such as Karen Barad\u2019s agential realism and Donna Haraway\u2019s \"chthulucene.\" In so doing the course not only looks into (and questions) the common accusation that literature is conspicuously silent when it comes to the matter of the climate crisis, but also investigates (literary and non-literary) ecological narration as situated at the intersection of representation and ethics. Literary readings include Adalbert Stifter, Amitav Ghosh, W.G. Sebald, Ian McEwan, Judith Hermann, Ilija Trojanow, and Kim Stanley Robinson.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988676309585571, + 0.9988656044006348, + 0.9987913966178894, + 0.998846173286438, + 0.9984458088874817 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998918890953064, + 0.9988166093826294, + 0.9764682054519653, + 0.9887734055519104, + 0.9987500905990601 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988922476768494, + 0.9978411197662354, + 0.9917318820953369, + 0.9981526732444763 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 0.9285714285714286, + "final_counts": { + "POSITIVE": 13, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9285714285714286, + "NEGATIVE": 0.07142857142857142 + } + } + }, + { + "season_code": "202301", + "requirements": "", + "description": "The course takes up a pressing topic from the sciences and looks at it from the angle of the humanities: how are ecological crises, how is\u2013most specifically and urgently\u2013our current climate crisis represented and reflected upon in non-scientific public discourse: in journalism, in the social media, in literature, and in film? With a focus on, but not limited to literary texts, the course draws on established categories of literary analysis, such as plot patterns or the techniques of narration and/vs. description, and links them to philosophical concepts such as Karen Barad\u2019s agential realism and Donna Haraway\u2019s \"chthulucene.\" In so doing the course not only looks into (and questions) the common accusation that literature is conspicuously silent when it comes to the matter of the climate crisis, but also investigates (literary and non-literary) ecological narration as situated at the intersection of representation and ethics. Literary readings include Adalbert Stifter, Amitav Ghosh, W.G. Sebald, Ian McEwan, Judith Hermann, Ilija Trojanow, and Kim Stanley Robinson.", "short_title": "Ecology, Ecocriticism, and Na...", "title": "Ecology, Ecocriticism, and Narration", "school": "YC", @@ -171629,7 +375683,7 @@ "9:25", "11:15", "HQ C11 - Humanities Quadrangle C11", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -171643,10 +375697,99 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85992\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85992/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988914132118225, + 0.9989128112792969, + 0.9985442161560059, + 0.998870313167572, + 0.9988595247268677 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987063407897949, + 0.9989110231399536, + 0.998933732509613, + 0.9989099502563477 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987555742263794, + 0.9989058971405029, + 0.9989321827888489 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 12 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -171684,7 +375827,7 @@ "15:30", "17:20", "HQ C64 - Humanities Quadrangle C64", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -171703,10 +375846,38 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84128\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84128/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -171744,7 +375915,7 @@ "13:00", "14:15", "LC 204 - Linsly-Chittenden Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -171752,7 +375923,7 @@ "13:00", "14:15", "LC 204 - Linsly-Chittenden Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -171766,10 +375937,113 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83991\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83991/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989331364631653, + 0.998917818069458, + 0.9987866282463074, + 0.9989288449287415 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.993428647518158, + 0.9959776997566223, + 0.9856961965560913, + 0.9988784193992615, + 0.9989288449287415, + 0.9988928437232971, + 0.9909442663192749 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.7142857142857143, + "NEGATIVE": 0.2857142857142857 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7142857142857143 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989342093467712, + 0.9989049434661865, + 0.9989308714866638, + 0.9986662864685059, + 0.9989043474197388, + 0.9986396431922913, + 0.99874347448349 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 0.8888888888888888, + "final_counts": { + "POSITIVE": 16, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + } + } }, { "season_code": "202301", @@ -171811,7 +376085,7 @@ "14:30", "15:20", "SSS 114 - Sheffield-Sterling-Strathcona 114", - "https:\/\/map.yale.edu\/?id=1910#!m\/563689" + "https://map.yale.edu/?id=1910#!m/563689" ] ], "Wednesday": [ @@ -171819,7 +376093,7 @@ "14:30", "15:20", "SSS 114 - Sheffield-Sterling-Strathcona 114", - "https:\/\/map.yale.edu\/?id=1910#!m\/563689" + "https://map.yale.edu/?id=1910#!m/563689" ] ] }, @@ -171833,10 +376107,209 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83798\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83798/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998935878276825, + 0.9982777833938599, + 0.9968156218528748, + 0.9984039664268494, + 0.9962582588195801, + 0.9989311099052429, + 0.9988338351249695, + 0.9954687356948853, + 0.998785674571991, + 0.9987488985061646, + 0.9988712668418884, + 0.9985829591751099, + 0.998740017414093, + 0.9989156723022461, + 0.9994814991950989, + 0.9988394379615784, + 0.9989112615585327, + 0.9986221790313721, + 0.9988502264022827, + 0.998793363571167, + 0.9989294409751892, + 0.9989286065101624 + ], + "sentiment_counts": { + "POSITIVE": 20, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9090909090909091 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9987419247627258, + 0.99887615442276, + 0.9989142417907715, + 0.9986788630485535, + 0.9962582588195801, + 0.9994927644729614, + 0.9988754391670227, + 0.9988775849342346, + 0.9972184896469116, + 0.9870812296867371, + 0.9940172433853149, + 0.9986811280250549, + 0.999489426612854, + 0.9988136291503906, + 0.9992954730987549, + 0.9966887831687927, + 0.9993485808372498, + 0.9988741278648376, + 0.9994860887527466, + 0.9989207983016968, + 0.9983103275299072, + 0.9982118606567383, + 0.9987824559211731, + 0.9847177863121033 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 11 + }, + "sentiment_distribution": { + "POSITIVE": 0.5416666666666666, + "NEGATIVE": 0.4583333333333333 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989104270935059, + 0.9977057576179504, + 0.9988704323768616, + 0.9984052777290344, + 0.9962582588195801, + 0.9989359974861145, + 0.9988816380500793, + 0.9974592328071594, + 0.9982234835624695, + 0.9990212917327881, + 0.9985746145248413, + 0.9979425072669983, + 0.9988999366760254, + 0.9995064735412598, + 0.991790771484375, + 0.9988986253738403, + 0.9988992214202881, + 0.9983044862747192, + 0.9988798499107361, + 0.9987069368362427 + ], + "sentiment_counts": { + "POSITIVE": 14, + "NEGATIVE": 6 + }, + "sentiment_distribution": { + "POSITIVE": 0.7, + "NEGATIVE": 0.3 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7 + ] + }, + "final_label": "POSITIVE", + "final_count": 47, + "final_proportion": 0.7121212121212122, + "final_counts": { + "POSITIVE": 47, + "NEGATIVE": 19 + }, + "final_distribution": { + "POSITIVE": 0.7121212121212122, + "NEGATIVE": 0.2878787878787879 + } + } }, { "season_code": "202301", @@ -171897,7 +376370,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -171933,7 +376434,7 @@ "10:30", "11:20", "HQ 129 - Humanities Quadrangle 129", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -171950,7 +376451,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -171986,7 +376515,7 @@ "14:30", "15:20", "HQ 133 - Humanities Quadrangle 133", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -172003,7 +376532,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -172039,7 +376596,7 @@ "14:30", "15:20", "HQ 132 - Humanities Quadrangle 132", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -172056,7 +376613,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -172092,7 +376677,7 @@ "16:00", "16:50", "HQ 401 - Humanities Quadrangle 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -172109,7 +376694,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -172170,7 +376783,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -172231,7 +376872,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -172292,7 +376961,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -172353,7 +377050,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -172414,7 +377139,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -172458,7 +377211,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -172497,7 +377278,7 @@ "13:00", "14:15", "HQ 127 - Humanities Quadrangle 127", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -172505,7 +377286,7 @@ "13:00", "14:15", "HQ 127 - Humanities Quadrangle 127", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -172519,10 +377300,105 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85985\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85985/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988647699356079, + 0.9989080429077148, + 0.998887836933136, + 0.9989396929740906, + 0.9986685514450073 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989323019981384, + 0.9989363551139832, + 0.9991251826286316, + 0.9988910555839539 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989346861839294, + 0.9989344477653503, + 0.9989020824432373, + 0.9984412789344788, + 0.9989064931869507 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 0.9285714285714286, + "final_counts": { + "POSITIVE": 13, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9285714285714286, + "NEGATIVE": 0.07142857142857142 + } + } }, { "season_code": "202301", @@ -172565,7 +377441,7 @@ "9:25", "11:15", "HQ 401 - Humanities Quadrangle 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -172585,10 +377461,121 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84206\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84206/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.994451105594635, + 0.99888676404953, + 0.9988627433776855, + 0.9989333748817444, + 0.9987595081329346, + 0.9988391995429993 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.998842716217041, + 0.9989129304885864, + 0.9989238381385803, + 0.9962312579154968, + 0.9969401359558105, + 0.9986774325370789, + 0.9989373087882996, + 0.9936462640762329 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985981583595276, + 0.9980226755142212, + 0.9988202452659607, + 0.9988977909088135, + 0.9971134662628174, + 0.9987371563911438, + 0.9989243149757385, + 0.9989074468612671 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 0.9090909090909091, + "final_counts": { + "POSITIVE": 20, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + } + } }, { "season_code": "202301", @@ -172627,7 +377614,7 @@ "13:30", "15:20", "WLH 011 - William L. Harkness Hall 011", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -172643,10 +377630,87 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84226\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84226/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.998883068561554 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989051818847656, + 0.998795747756958 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988958835601807, + 0.9982553124427795, + 0.9988030195236206 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 6 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -172684,7 +377748,7 @@ "9:25", "11:15", "HQ C64 - Humanities Quadrangle C64", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -172701,10 +377765,89 @@ "classnotes": "This course requires instructor permission. Please note any previous courses in political theory, philosophy or intellectual history you have taken and your graduation year. \n\n", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85962\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85962/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989380240440369, + 0.9989160299301147 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988686442375183, + 0.9987951517105103 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989074468612671, + 0.9786601662635803 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "final_label": "POSITIVE", + "final_count": 5, + "final_proportion": 0.8333333333333334, + "final_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + } + } }, { "season_code": "202301", @@ -172744,7 +377887,7 @@ "9:25", "11:15", "WLH 115 - William L. Harkness Hall 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -172758,10 +377901,113 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86161\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86161/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988582134246826, + 0.9988898634910583, + 0.9988890290260315, + 0.9989172220230103, + 0.9988777041435242, + 0.998764157295227 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989292025566101, + 0.9988477230072021, + 0.9989280104637146, + 0.9988915324211121, + 0.9989306330680847 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989340901374817, + 0.997117280960083, + 0.9988848567008972, + 0.9981436729431152, + 0.9989331364631653, + 0.9989149570465088, + 0.9988886713981628, + 0.9989142417907715 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 19 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -172802,7 +378048,7 @@ "13:30", "15:20", "WLH 006 - William L. Harkness Hall 006", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -172820,10 +378066,113 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85961\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85961/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984681010246277, + 0.9989023208618164, + 0.9987999200820923, + 0.9988932013511658, + 0.9989064931869507, + 0.9989149570465088, + 0.998826801776886 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989259839057922, + 0.9979013204574585, + 0.9987432360649109, + 0.9989210367202759, + 0.9988973140716553, + 0.9988835453987122 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9971141815185547, + 0.9985865354537964, + 0.9988549947738647, + 0.9988499879837036, + 0.9986931681632996, + 0.9988263249397278 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 19 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -172867,7 +378216,7 @@ "10:30", "11:20", "WLH 113 - William L. Harkness Hall 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -172875,7 +378224,7 @@ "10:30", "11:20", "WLH 113 - William L. Harkness Hall 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -172889,10 +378238,155 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84819\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84819/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998536229133606, + 0.998810887336731, + 0.9985824823379517, + 0.9988592863082886, + 0.9959073066711426, + 0.99871826171875, + 0.9989239573478699, + 0.9989050626754761, + 0.9988049268722534, + 0.9962486624717712, + 0.9900902509689331, + 0.9985747337341309, + 0.9988892674446106, + 0.9986215829849243 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9285714285714286, + "NEGATIVE": 0.07142857142857142 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9285714285714286 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988436698913574, + 0.9989302754402161, + 0.9989068508148193, + 0.9980466365814209, + 0.9963915944099426, + 0.9974145889282227, + 0.9988678693771362, + 0.9989114999771118, + 0.999232292175293, + 0.9986825585365295, + 0.9987850785255432, + 0.9988842606544495, + 0.9989342093467712 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9230769230769231, + "NEGATIVE": 0.07692307692307693 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9230769230769231 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986013770103455, + 0.9988812804222107, + 0.9988468885421753, + 0.9989006519317627, + 0.9988101720809937, + 0.9989246726036072, + 0.9987888932228088, + 0.9985087513923645, + 0.9982649683952332, + 0.9905369877815247, + 0.9989036321640015, + 0.9989244341850281 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9166666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 36, + "final_proportion": 0.9230769230769231, + "final_counts": { + "POSITIVE": 36, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.9230769230769231, + "NEGATIVE": 0.07692307692307693 + } + } }, { "season_code": "202301", @@ -172927,7 +378421,7 @@ "17:00", "17:50", "HQ C07 - Humanities Quadrangle C07", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -172944,7 +378438,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -172979,7 +378501,7 @@ "10:30", "11:20", "HQ C07 - Humanities Quadrangle C07", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -172996,7 +378518,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -173038,7 +378588,7 @@ "13:30", "15:20", "WALL81 101 - 81 Wall Street 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -173052,10 +378602,97 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85984\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85984/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985761642456055, + 0.9988330006599426, + 0.9989045858383179, + 0.9988504648208618 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989185333251953, + 0.9987831711769104, + 0.9988816380500793 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988638162612915, + 0.9988977909088135, + 0.9988879561424255, + 0.9985513091087341 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 11 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -173093,7 +378730,7 @@ "9:25", "11:15", "HQ 309 - Humanities Quadrangle 309", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -173114,10 +378751,101 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84176\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84176/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998872697353363, + 0.9989053010940552, + 0.9987013339996338 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987402558326721, + 0.9989033937454224, + 0.9930926561355591, + 0.9989270567893982, + 0.9982925057411194 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989173412322998, + 0.9989228844642639, + 0.9984827637672424, + 0.9989172220230103, + 0.9987867474555969 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 13 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -173158,7 +378886,7 @@ "15:30", "17:20", "PH 207 - Phelps Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -173175,10 +378903,131 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85919\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85919/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987782835960388, + 0.9989118576049805, + 0.9988343119621277, + 0.9989268183708191, + 0.9986599683761597, + 0.9987064599990845, + 0.9988788962364197, + 0.9987242817878723, + 0.9989331364631653 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989103078842163, + 0.9989150762557983, + 0.9989306330680847, + 0.9989027976989746, + 0.9989321827888489, + 0.9988206028938293, + 0.9989105463027954, + 0.9989148378372192, + 0.9989281296730042 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9421969056129456, + 0.9988974332809448, + 0.9989270567893982, + 0.9985398054122925, + 0.9988217949867249, + 0.9987505674362183, + 0.9988631010055542, + 0.9989206790924072, + 0.9989385008811951, + 0.9989297986030579 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 28, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 28 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -173217,7 +379066,7 @@ "14:30", "15:45", "WALL81 301 - 81 Wall Street 301", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ], "Wednesday": [ @@ -173225,7 +379074,7 @@ "14:30", "15:45", "WALL81 301 - 81 Wall Street 301", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -173241,10 +379090,105 @@ "classnotes": "", "final_exam": "Thursday, May 4, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85394\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85394/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998908519744873, + 0.9988137483596802, + 0.989204466342926, + 0.9988657236099243, + 0.9986458420753479 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9978039860725403, + 0.9989005327224731, + 0.9988828301429749, + 0.9989194869995117, + 0.9988941550254822 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989277720451355, + 0.9984122514724731, + 0.9988321661949158, + 0.9989054203033447, + 0.9989309906959534 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 15 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -173282,7 +379226,7 @@ "15:30", "17:20", "HQ C03 - Humanities Quadrangle C03", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -173298,10 +379242,111 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87080\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87080/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985658526420593, + 0.9987475872039795, + 0.998890221118927, + 0.9982740879058838, + 0.998742401599884, + 0.9988314509391785 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987070560455322, + 0.9988859295845032, + 0.9966222047805786, + 0.9978321194648743, + 0.9988260865211487, + 0.9989331364631653 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9995075464248657, + 0.9989049434661865, + 0.998907208442688, + 0.9989174604415894, + 0.9988403916358948 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 4 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2, + "POSITIVE": 0.8 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 0.8235294117647058, + "final_counts": { + "POSITIVE": 14, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.8235294117647058, + "NEGATIVE": 0.17647058823529413 + } + } }, { "season_code": "202301", @@ -173344,7 +379389,7 @@ "13:30", "15:20", "LC 211 - Linsly-Chittenden Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -173362,10 +379407,123 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84403\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84403/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9938866496086121, + 0.9989053010940552, + 0.9977352619171143, + 0.998863697052002, + 0.9988037347793579, + 0.9987534284591675, + 0.9989042282104492, + 0.9989140033721924 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987389445304871, + 0.998935878276825, + 0.9989338517189026, + 0.9988526105880737, + 0.9988893866539001, + 0.9980757236480713, + 0.9989306330680847, + 0.992807149887085 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9979275465011597, + 0.9987668991088867, + 0.9981922507286072, + 0.9970254302024841, + 0.9989197254180908, + 0.9989100694656372, + 0.99888676404953, + 0.9988850951194763 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 24, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 24 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -173403,7 +379561,7 @@ "15:30", "17:20", "HQ C65 - Humanities Quadrangle C65", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -173417,10 +379575,103 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85889\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85889/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989240765571594, + 0.9987986087799072, + 0.99893718957901, + 0.9989351630210876 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988700747489929, + 0.99892657995224, + 0.998661994934082, + 0.9989362359046936, + 0.9989296793937683 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989320635795593, + 0.9988880753517151, + 0.9989175796508789, + 0.9989320635795593, + 0.9989211559295654 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 14 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -173459,7 +379710,7 @@ "13:30", "15:20", "HQ C11 - Humanities Quadrangle C11", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -173475,10 +379726,95 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84102\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84102/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989058971405029, + 0.9987586736679077, + 0.9988293051719666 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988430738449097, + 0.9987479448318481, + 0.9988402724266052 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989259839057922, + 0.9903659820556641, + 0.9918021559715271 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 8, + "final_proportion": 0.8888888888888888, + "final_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + } + } }, { "season_code": "202301", @@ -173518,7 +379854,7 @@ "14:30", "15:45", "LC 203 - Linsly-Chittenden Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -173526,7 +379862,7 @@ "14:30", "15:45", "LC 203 - Linsly-Chittenden Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -173544,10 +379880,107 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83951\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83951/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998479425907135, + 0.9988629817962646, + 0.9987003803253174 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9718410968780518, + 0.99888676404953, + 0.9994925260543823, + 0.9981603026390076, + 0.998890221118927, + 0.9762670993804932 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.998927652835846, + 0.9988896250724792, + 0.9992108345031738, + 0.9953916072845459, + 0.9986447691917419, + 0.9995076656341553 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 0.8, + "final_counts": { + "POSITIVE": 12, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + } + } }, { "season_code": "202301", @@ -173591,7 +380024,7 @@ "15:30", "17:20", "HQ 129 - Humanities Quadrangle 129", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -173609,10 +380042,129 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84797\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84797/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989339709281921, + 0.9838201999664307, + 0.9989207983016968, + 0.9988794922828674, + 0.9987175464630127, + 0.9987875819206238, + 0.9988642930984497, + 0.9988080263137817, + 0.9988754391670227 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989261031150818, + 0.9988849759101868, + 0.9964867830276489, + 0.9989225268363953, + 0.997114896774292, + 0.9988021850585938, + 0.9988846182823181, + 0.9984984397888184, + 0.998715877532959 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989318251609802, + 0.997117280960083, + 0.9994094371795654, + 0.9989306330680847, + 0.9989271759986877, + 0.9971302151679993, + 0.9983568787574768, + 0.9989226460456848 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "final_label": "POSITIVE", + "final_count": 24, + "final_proportion": 0.9230769230769231, + "final_counts": { + "POSITIVE": 24, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9230769230769231, + "NEGATIVE": 0.07692307692307693 + } + } }, { "season_code": "202301", @@ -173650,7 +380202,7 @@ "13:30", "15:20", "HQ 401 - Humanities Quadrangle 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -173664,17 +380216,130 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84231\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84231/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986843466758728, + 0.9989033937454224, + 0.9988962411880493, + 0.9988632202148438, + 0.9988607168197632, + 0.9987537860870361, + 0.9987080097198486, + 0.998898983001709 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986612796783447, + 0.9988328814506531, + 0.9989175796508789, + 0.9989209175109863, + 0.9989001750946045, + 0.9989172220230103, + 0.9989011287689209 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988289475440979, + 0.9989389777183533, + 0.9989303946495056, + 0.9988939166069031, + 0.9988409876823425, + 0.9989145994186401, + 0.999257504940033, + 0.9989157915115356 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "final_label": "POSITIVE", + "final_count": 22, + "final_proportion": 0.9565217391304348, + "final_counts": { + "POSITIVE": 22, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9565217391304348, + "NEGATIVE": 0.043478260869565216 + } + } }, { "season_code": "202301", "requirements": "", "description": "The course seeks to help students develop an integrated understanding of how, in both the sciences and technology and in the arts and humanities, form and content shape each other. The course consists of readings in various different media of imaginative works as well as articles on science and society, combined with readings in critical theory and philosophy that help us engage with them, together with hands-on making and exploration whenever possible. The class is highly interdisciplinary and multimodal, and we look at examples drawn from literature, visual arts, music, virtual and augmented reality, and film, focusing especially on their relationships to technology and to computation.", "short_title": "Computational Representation ...", - "title": "Computational Representation and the Humanities\/Arts", + "title": "Computational Representation and the Humanities/Arts", "school": "YC", "credits": 1.0, "extra_info": "ACTIVE", @@ -173704,7 +380369,7 @@ "15:30", "17:20", "HQ C11 - Humanities Quadrangle C11", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -173718,15 +380383,43 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85711\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/85711/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "Prerequisite: At least one course in which the student has read and engaged substantively with Plato's Republic. For example: Directed Studies (fall semester); PHIL 125 (ancient philosophy); PLSC 114 (Political Philosophy); or equivalent.", - "description": "How can ancient philosophy engage contemporary audiences? Public Plato explores this question through three strands. (1) Strand one introduces students to material from the Open Yale Course \"Philosophy and the Science of Human Nature,\" which pairs core texts from the Western philosophical tradition with recent findings in cognitive science. (In slogan form, the structure of the course is \"Dead guy on Tuesday; Cog Sci on Thursday.\") Readings here include selections from philosophers (Plato, Aristotle, Epictetus) and psychologists (Millgram, Kahneman, Lyubomirksy) focused on the topic of human flourishing. (2) Strand two introduces students to certain large-scale experiments in public philosophical outreach (the Wireless Philosophy Project, the Aspen Institute, EdX\/Coursera). Readings here include primary-source materials and theoretical and historical discussions of their import. (3) Strand three introduces students to a set of digital technologies through hands-on practice at the Poorvu Center. These strands are woven together through the course assignments: Using materials in the Open Yale Course initiative as an archive, students learn to curate a set of digital educational resources ranging from TikTok videos to Podcasts to longer-form (Coursera) courses. Graded assignments include both group-based creative projects and individual written work, including weekly directed writing exercises.", + "description": "How can ancient philosophy engage contemporary audiences? Public Plato explores this question through three strands. (1) Strand one introduces students to material from the Open Yale Course \"Philosophy and the Science of Human Nature,\" which pairs core texts from the Western philosophical tradition with recent findings in cognitive science. (In slogan form, the structure of the course is \"Dead guy on Tuesday; Cog Sci on Thursday.\") Readings here include selections from philosophers (Plato, Aristotle, Epictetus) and psychologists (Millgram, Kahneman, Lyubomirksy) focused on the topic of human flourishing. (2) Strand two introduces students to certain large-scale experiments in public philosophical outreach (the Wireless Philosophy Project, the Aspen Institute, EdX/Coursera). Readings here include primary-source materials and theoretical and historical discussions of their import. (3) Strand three introduces students to a set of digital technologies through hands-on practice at the Poorvu Center. These strands are woven together through the course assignments: Using materials in the Open Yale Course initiative as an archive, students learn to curate a set of digital educational resources ranging from TikTok videos to Podcasts to longer-form (Coursera) courses. Graded assignments include both group-based creative projects and individual written work, including weekly directed writing exercises.", "short_title": "Public Plato: Ancient Wisdom ...", "title": "Public Plato: Ancient Wisdom in the Digital Age", "school": "YC", @@ -173761,7 +380454,7 @@ "13:30", "15:20", "SML 120B - Sterling Memorial Library 120B", - "https:\/\/map.yale.edu\/?id=1910#!m\/563698" + "https://map.yale.edu/?id=1910#!m/563698" ] ] }, @@ -173777,10 +380470,103 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85866\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85866/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998918890953064, + 0.9984135627746582, + 0.9986271858215332, + 0.9986830353736877, + 0.9989288449287415 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9986567497253418, + 0.9989054203033447, + 0.9895350337028503 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.998708963394165, + 0.9983287453651428, + 0.9986146688461304, + 0.998909592628479, + 0.990972638130188 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 0.8461538461538461, + "final_counts": { + "POSITIVE": 11, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8461538461538461, + "NEGATIVE": 0.15384615384615385 + } + } }, { "season_code": "202301", @@ -173820,7 +380606,7 @@ "9:00", "10:15", "HQ 225 - Humanities Quadrangle 225", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -173828,7 +380614,7 @@ "9:00", "10:15", "HQ 225 - Humanities Quadrangle 225", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -173836,7 +380622,7 @@ "15:30", "16:20", "LC 101 - Linsly-Chittenden Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -173847,13 +380633,114 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Course registration for HUMS 411 is managed by Preference Selection http:\/\/students.yale.edu\/ocs-preference\/select\/select?id=24526, and will operate from 9:00 a.m. on Tuesday, November 1, 2022 through 5:00 p.m. on Friday, November 4, 2022. Notice of assignments will be available Wednesday, November 9 by 5:00 p.m. If assigned to the course, your assignment will be pushed to your worksheet, It will also be available if you return to HUMS 411 Preference Selection webpage.", + "classnotes": "Course registration for HUMS 411 is managed by Preference Selection http://students.yale.edu/ocs-preference/select/select?id=24526, and will operate from 9:00 a.m. on Tuesday, November 1, 2022 through 5:00 p.m. on Friday, November 4, 2022. Notice of assignments will be available Wednesday, November 9 by 5:00 p.m. If assigned to the course, your assignment will be pushed to your worksheet, It will also be available if you return to HUMS 411 Preference Selection webpage.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84235\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84235/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998917818069458, + 0.9988371729850769, + 0.9989173412322998, + 0.9987732768058777, + 0.9987260699272156 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988251328468323, + 0.9986230134963989, + 0.9988477230072021, + 0.9991130232810974, + 0.9988368153572083 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988993406295776, + 0.9988196492195129, + 0.996122419834137, + 0.9989092350006104, + 0.9989281296730042, + 0.9988721013069153, + 0.9980168342590332 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 0.9411764705882353, + "final_counts": { + "POSITIVE": 16, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9411764705882353, + "NEGATIVE": 0.058823529411764705 + } + } }, { "season_code": "202301", @@ -173890,7 +380777,7 @@ "9:00", "10:15", "HQ 213 - Humanities Quadrangle 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -173898,7 +380785,7 @@ "9:00", "10:15", "HQ 213 - Humanities Quadrangle 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -173906,7 +380793,7 @@ "15:30", "16:20", "LC 101 - Linsly-Chittenden Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -173917,13 +380804,136 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Instructor: Joseph Lee\n\nCourse registration for HUMS 411 is managed by Preference Selection http:\/\/students.yale.edu\/ocs-preference\/select\/select?id=24526, and will operate from 9:00 a.m. on Tuesday, November 1, 2022 through 5:00 p.m. on Friday, November 4, 2022. Notice of assignments will be available Wednesday, November 9 by 5:00 p.m. If assigned to the course, your assignment will be pushed to your worksheet, It will also be available if you return to HUMS 411 Preference Selection webpage.", + "classnotes": "Instructor: Joseph Lee\n\nCourse registration for HUMS 411 is managed by Preference Selection http://students.yale.edu/ocs-preference/select/select?id=24526, and will operate from 9:00 a.m. on Tuesday, November 1, 2022 through 5:00 p.m. on Friday, November 4, 2022. Notice of assignments will be available Wednesday, November 9 by 5:00 p.m. If assigned to the course, your assignment will be pushed to your worksheet, It will also be available if you return to HUMS 411 Preference Selection webpage.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84239\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84239/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986121654510498, + 0.998847246170044, + 0.9988160133361816, + 0.9988452196121216, + 0.9988275170326233, + 0.998840868473053, + 0.9989224672317505, + 0.9988813996315002, + 0.9988691210746765, + 0.9985755681991577 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998846173286438, + 0.9988376498222351, + 0.9989035129547119, + 0.9989197254180908, + 0.9981784820556641, + 0.9988763928413391, + 0.9989128112792969, + 0.9987457990646362 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9980016350746155, + 0.9988365769386292, + 0.998917818069458, + 0.9988883137702942, + 0.9989311099052429, + 0.9988895058631897, + 0.9988710284233093, + 0.9987689852714539, + 0.9987279772758484, + 0.9988293051719666 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 9 + }, + "sentiment_distribution": { + "NEGATIVE": 0.1, + "POSITIVE": 0.9 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "final_label": "POSITIVE", + "final_count": 26, + "final_proportion": 0.9285714285714286, + "final_counts": { + "POSITIVE": 26, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9285714285714286, + "NEGATIVE": 0.07142857142857142 + } + } }, { "season_code": "202301", @@ -173960,7 +380970,7 @@ "13:00", "14:15", "HQ 225 - Humanities Quadrangle 225", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -173968,7 +380978,7 @@ "13:00", "14:15", "HQ 225 - Humanities Quadrangle 225", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -173976,7 +380986,7 @@ "15:30", "16:20", "LC 101 - Linsly-Chittenden Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -173987,13 +380997,96 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Instructor: Anna Tropnikova\n\nCourse registration for HUMS 411 is managed by Preference Selection http:\/\/students.yale.edu\/ocs-preference\/select\/select?id=24526, and will operate from 9:00 a.m. on Tuesday, November 1, 2022 through 5:00 p.m. on Friday, November 4, 2022. Notice of assignments will be available Wednesday, November 9 by 5:00 p.m. If assigned to the course, your assignment will be pushed to your worksheet, It will also be available if you return to HUMS 411 Preference Selection webpage.", + "classnotes": "Instructor: Anna Tropnikova\n\nCourse registration for HUMS 411 is managed by Preference Selection http://students.yale.edu/ocs-preference/select/select?id=24526, and will operate from 9:00 a.m. on Tuesday, November 1, 2022 through 5:00 p.m. on Friday, November 4, 2022. Notice of assignments will be available Wednesday, November 9 by 5:00 p.m. If assigned to the course, your assignment will be pushed to your worksheet, It will also be available if you return to HUMS 411 Preference Selection webpage.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84244\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84244/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989307522773743, + 0.9988529682159424 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998934805393219, + 0.9734511375427246 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986975193023682, + 0.9989180564880371, + 0.9989161491394043, + 0.9974592328071594, + 0.9988813996315002 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 9 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -174030,7 +381123,7 @@ "9:00", "10:15", "HQ 225 - Humanities Quadrangle 225", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -174038,13 +381131,13 @@ "9:00", "10:15", "HQ 225 - Humanities Quadrangle 225", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ], [ "15:30", "16:20", "LC 101 - Linsly-Chittenden Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -174055,13 +381148,118 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Instructor: Ahmed Nur\n\nCourse registration for HUMS 411 is managed by Preference Selection http:\/\/students.yale.edu\/ocs-preference\/select\/select?id=24526, and will operate from 9:00 a.m. on Tuesday, November 1, 2022 through 5:00 p.m. on Friday, November 4, 2022. Notice of assignments will be available Wednesday, November 9 by 5:00 p.m. If assigned to the course, your assignment will be pushed to your worksheet, It will also be available if you return to HUMS 411 Preference Selection webpage.", + "classnotes": "Instructor: Ahmed Nur\n\nCourse registration for HUMS 411 is managed by Preference Selection http://students.yale.edu/ocs-preference/select/select?id=24526, and will operate from 9:00 a.m. on Tuesday, November 1, 2022 through 5:00 p.m. on Friday, November 4, 2022. Notice of assignments will be available Wednesday, November 9 by 5:00 p.m. If assigned to the course, your assignment will be pushed to your worksheet, It will also be available if you return to HUMS 411 Preference Selection webpage.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84249\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84249/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989398121833801, + 0.9987581968307495, + 0.9975093603134155, + 0.9989256262779236, + 0.9988899827003479, + 0.9987205266952515 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.998894989490509, + 0.9989333748817444, + 0.9988321661949158, + 0.9989330172538757, + 0.9986718893051147, + 0.9994441866874695 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988647699356079, + 0.9989246726036072, + 0.9985716342926025, + 0.99858558177948, + 0.9984343647956848, + 0.9989317059516907, + 0.9921852946281433 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 0.9473684210526315, + "final_counts": { + "POSITIVE": 18, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9473684210526315, + "NEGATIVE": 0.05263157894736842 + } + } }, { "season_code": "202301", @@ -174098,7 +381296,7 @@ "9:00", "10:15", "HQ 213 - Humanities Quadrangle 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -174106,13 +381304,13 @@ "9:00", "10:15", "HQ 213 - Humanities Quadrangle 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ], [ "15:30", "16:20", "LC 101 - Linsly-Chittenden Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -174123,13 +381321,126 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Instructor: Connie Steel\n\nCourse registration for HUMS 411 is managed by Preference Selection http:\/\/students.yale.edu\/ocs-preference\/select\/select?id=24526, and will operate from 9:00 a.m. on Tuesday, November 1, 2022 through 5:00 p.m. on Friday, November 4, 2022. Notice of assignments will be available Wednesday, November 9 by 5:00 p.m. If assigned to the course, your assignment will be pushed to your worksheet, It will also be available if you return to HUMS 411 Preference Selection webpage.", + "classnotes": "Instructor: Connie Steel\n\nCourse registration for HUMS 411 is managed by Preference Selection http://students.yale.edu/ocs-preference/select/select?id=24526, and will operate from 9:00 a.m. on Tuesday, November 1, 2022 through 5:00 p.m. on Friday, November 4, 2022. Notice of assignments will be available Wednesday, November 9 by 5:00 p.m. If assigned to the course, your assignment will be pushed to your worksheet, It will also be available if you return to HUMS 411 Preference Selection webpage.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84254\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84254/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987586736679077, + 0.9986976385116577, + 0.9983832836151123, + 0.9987853169441223, + 0.9988551139831543, + 0.99886155128479 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989019632339478, + 0.9985628724098206, + 0.9544284343719482, + 0.9989377856254578, + 0.9987693428993225, + 0.9989232420921326, + 0.9988221526145935, + 0.998769223690033 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994346499443054, + 0.9968770742416382, + 0.999512791633606, + 0.9988141059875488, + 0.9980974793434143, + 0.9988246560096741, + 0.997117280960083, + 0.9988899827003479, + 0.9989019632339478 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 6 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 0.8260869565217391, + "final_counts": { + "POSITIVE": 19, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.8260869565217391, + "NEGATIVE": 0.17391304347826086 + } + } }, { "season_code": "202301", @@ -174166,7 +381477,7 @@ "11:35", "12:50", "HQ 225 - Humanities Quadrangle 225", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -174174,13 +381485,13 @@ "11:35", "12:50", "HQ 225 - Humanities Quadrangle 225", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ], [ "15:30", "16:20", "LC 101 - Linsly-Chittenden Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -174191,13 +381502,106 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Course registration for HUMS 411 is managed by Preference Selection http:\/\/students.yale.edu\/ocs-preference\/select\/select?id=24526, and will operate from 9:00 a.m. on Tuesday, November 1, 2022 through 5:00 p.m. on Friday, November 4, 2022. Notice of assignments will be available Wednesday, November 9 by 5:00 p.m. If assigned to the course, your assignment will be pushed to your worksheet, It will also be available if you return to HUMS 411 Preference Selection webpage.", + "classnotes": "Course registration for HUMS 411 is managed by Preference Selection http://students.yale.edu/ocs-preference/select/select?id=24526, and will operate from 9:00 a.m. on Tuesday, November 1, 2022 through 5:00 p.m. on Friday, November 4, 2022. Notice of assignments will be available Wednesday, November 9 by 5:00 p.m. If assigned to the course, your assignment will be pushed to your worksheet, It will also be available if you return to HUMS 411 Preference Selection webpage.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84260\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84260/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9953485131263733, + 0.9987132549285889, + 0.9995013475418091, + 0.9989098310470581, + 0.9988021850585938 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9964457154273987, + 0.9987603425979614, + 0.9993979930877686, + 0.9969011545181274 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9991233944892883, + 0.9982484579086304, + 0.9992955923080444, + 0.998908281326294 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 0.6923076923076923, + "final_counts": { + "POSITIVE": 9, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.6923076923076923, + "NEGATIVE": 0.3076923076923077 + } + } }, { "season_code": "202301", @@ -174234,7 +381638,7 @@ "11:35", "12:50", "HQ 213 - Humanities Quadrangle 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -174242,13 +381646,13 @@ "11:35", "12:50", "HQ 213 - Humanities Quadrangle 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ], [ "15:30", "16:20", "LC 101 - Linsly-Chittenden Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -174259,13 +381663,110 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Course registration for HUMS 411 is managed by Preference Selection http:\/\/students.yale.edu\/ocs-preference\/select\/select?id=24526, and will operate from 9:00 a.m. on Tuesday, November 1, 2022 through 5:00 p.m. on Friday, November 4, 2022. Notice of assignments will be available Wednesday, November 9 by 5:00 p.m. If assigned to the course, your assignment will be pushed to your worksheet, It will also be available if you return to HUMS 411 Preference Selection webpage.", + "classnotes": "Course registration for HUMS 411 is managed by Preference Selection http://students.yale.edu/ocs-preference/select/select?id=24526, and will operate from 9:00 a.m. on Tuesday, November 1, 2022 through 5:00 p.m. on Friday, November 4, 2022. Notice of assignments will be available Wednesday, November 9 by 5:00 p.m. If assigned to the course, your assignment will be pushed to your worksheet, It will also be available if you return to HUMS 411 Preference Selection webpage.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84265\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84265/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988632202148438, + 0.9983140230178833, + 0.9989256262779236, + 0.9989301562309265, + 0.9988343119621277 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988215565681458, + 0.998883068561554, + 0.9989272952079773, + 0.9988992214202881, + 0.9985414743423462 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989328980445862, + 0.9988765120506287, + 0.9989157915115356, + 0.9988958835601807, + 0.9988412261009216, + 0.9989228844642639 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 16 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -174302,7 +381803,7 @@ "13:00", "14:15", "HQ 225 - Humanities Quadrangle 225", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -174310,13 +381811,13 @@ "13:00", "14:15", "HQ 225 - Humanities Quadrangle 225", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ], [ "15:30", "16:20", "LC 101 - Linsly-Chittenden Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -174327,13 +381828,84 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Course registration for HUMS 411 is managed by Preference Selection http:\/\/students.yale.edu\/ocs-preference\/select\/select?id=24526, and will operate from 9:00 a.m. on Tuesday, November 1, 2022 through 5:00 p.m. on Friday, November 4, 2022. Notice of assignments will be available Wednesday, November 9 by 5:00 p.m. If assigned to the course, your assignment will be pushed to your worksheet, It will also be available if you return to HUMS 411 Preference Selection webpage.", + "classnotes": "Course registration for HUMS 411 is managed by Preference Selection http://students.yale.edu/ocs-preference/select/select?id=24526, and will operate from 9:00 a.m. on Tuesday, November 1, 2022 through 5:00 p.m. on Friday, November 4, 2022. Notice of assignments will be available Wednesday, November 9 by 5:00 p.m. If assigned to the course, your assignment will be pushed to your worksheet, It will also be available if you return to HUMS 411 Preference Selection webpage.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84268\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84268/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.998871386051178 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988672733306885 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989124536514282 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 3, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 3 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -174391,13 +381963,41 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Instructor: Estrella Castillo\n\nCourse registration for HUMS 411 is managed by Preference Selection http:\/\/students.yale.edu\/ocs-preference\/select\/select?id=24526, and will operate from 9:00 a.m. on Tuesday, November 1, 2022 through 5:00 p.m. on Friday, November 4, 2022. Notice of assignments will be available Wednesday, November 9 by 5:00 p.m. If assigned to the course, your assignment will be pushed to your worksheet, It will also be available if you return to HUMS 411 Preference Selection webpage.", + "classnotes": "Instructor: Estrella Castillo\n\nCourse registration for HUMS 411 is managed by Preference Selection http://students.yale.edu/ocs-preference/select/select?id=24526, and will operate from 9:00 a.m. on Tuesday, November 1, 2022 through 5:00 p.m. on Friday, November 4, 2022. Notice of assignments will be available Wednesday, November 9 by 5:00 p.m. If assigned to the course, your assignment will be pushed to your worksheet, It will also be available if you return to HUMS 411 Preference Selection webpage.", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85438\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/85438/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -174455,13 +382055,41 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Instructor: Souvanik Mullick\n\nCourse registration for HUMS 411 is managed by Preference Selection http:\/\/students.yale.edu\/ocs-preference\/select\/select?id=24526, and will operate from 9:00 a.m. on Tuesday, November 1, 2022 through 5:00 p.m. on Friday, November 4, 2022. Notice of assignments will be available Wednesday, November 9 by 5:00 p.m. If assigned to the course, your assignment will be pushed to your worksheet, It will also be available if you return to HUMS 411 Preference Selection webpage.", + "classnotes": "Instructor: Souvanik Mullick\n\nCourse registration for HUMS 411 is managed by Preference Selection http://students.yale.edu/ocs-preference/select/select?id=24526, and will operate from 9:00 a.m. on Tuesday, November 1, 2022 through 5:00 p.m. on Friday, November 4, 2022. Notice of assignments will be available Wednesday, November 9 by 5:00 p.m. If assigned to the course, your assignment will be pushed to your worksheet, It will also be available if you return to HUMS 411 Preference Selection webpage.", "final_exam": "HTBA", "course_home_url": "", "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -174498,7 +382126,7 @@ "16:00", "17:15", "HQ 132 - Humanities Quadrangle 132", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -174506,7 +382134,7 @@ "16:00", "17:15", "HQ 132 - Humanities Quadrangle 132", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -174520,10 +382148,38 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85918\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/85918/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -174562,7 +382218,7 @@ "14:30", "15:45", "LC 204 - Linsly-Chittenden Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -174570,7 +382226,7 @@ "14:30", "15:45", "LC 204 - Linsly-Chittenden Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -174581,7 +382237,7 @@ "Hu" ], "flags": [ - "YC English: 20th\/21st Century", + "YC English: 20th/21st Century", "YC English: Junior Seminar" ], "regnotes": "", @@ -174589,10 +382245,133 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85251\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/85251/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988866448402405, + 0.9981110095977783, + 0.9987994432449341, + 0.9988542795181274, + 0.9989246726036072, + 0.9988991022109985, + 0.9988576173782349, + 0.9989356398582458 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988665580749512, + 0.998231828212738, + 0.960239589214325, + 0.9988862872123718, + 0.9988569021224976, + 0.9987461566925049, + 0.9988692402839661, + 0.9988584518432617, + 0.9989084005355835, + 0.9977462887763977 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988058805465698, + 0.998923122882843, + 0.9986407160758972, + 0.9988548755645752, + 0.9989252686500549, + 0.9985023736953735, + 0.9987090826034546, + 0.9986791014671326, + 0.9989286065101624, + 0.998903751373291 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 27, + "final_proportion": 0.9642857142857143, + "final_counts": { + "POSITIVE": 27, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9642857142857143, + "NEGATIVE": 0.03571428571428571 + } + } }, { "season_code": "202301", @@ -174633,7 +382412,7 @@ "13:00", "14:15", "HQ 213 - Humanities Quadrangle 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -174641,7 +382420,7 @@ "13:00", "14:15", "HQ 213 - Humanities Quadrangle 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -174661,10 +382440,107 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84410\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84410/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.996685802936554, + 0.9981920123100281, + 0.9987937211990356, + 0.9988003969192505, + 0.9988400340080261 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987272620201111, + 0.9989301562309265, + 0.9989311099052429, + 0.9989060163497925, + 0.9989307522773743 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987375140190125, + 0.9988834261894226, + 0.9989318251609802, + 0.9989001750946045, + 0.9988529682159424, + 0.9989380240440369 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 16 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -174704,7 +382580,7 @@ "9:25", "11:15", "LC 319 - Linsly-Chittenden Hall 319", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -174718,10 +382594,95 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84394\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84394/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988617897033691, + 0.9983670115470886, + 0.9989296793937683 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988983869552612, + 0.9989319443702698 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981204867362976, + 0.9989350438117981, + 0.9986304044723511, + 0.998915433883667, + 0.9976826906204224 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 10 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -174759,7 +382720,7 @@ "13:30", "15:20", "STOECK 107 - Stoeckel Hall (renovated) 107", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ] }, @@ -174774,11 +382735,126 @@ "rp_attr": "", "classnotes": "", "final_exam": "HTBA", - "course_home_url": "https:\/\/yale.instructure.com\/courses\/85715", - "syllabus_url": "", - "fysem": false, - "sysem": false, - "colsem": false + "course_home_url": "https://yale.instructure.com/courses/85715", + "syllabus_url": "", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988137483596802, + 0.9987223744392395, + 0.9954490065574646, + 0.9972646236419678, + 0.9989270567893982, + 0.9985993504524231, + 0.9989050626754761, + 0.9987905621528625, + 0.9988262057304382 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989010095596313, + 0.998771607875824, + 0.9954490065574646, + 0.9664072394371033, + 0.9988646507263184, + 0.9989292025566101, + 0.9989375472068787, + 0.9988647699356079 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998608410358429, + 0.9954490065574646, + 0.9988858103752136, + 0.9988498687744141, + 0.9989336133003235, + 0.998890221118927, + 0.9985798597335815, + 0.9987691044807434 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 25, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 25 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -174818,10 +382894,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84272\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84272/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -174861,10 +382965,103 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84276\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84276/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987800717353821, + 0.9989134073257446, + 0.996699869632721, + 0.9989023208618164 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.999434769153595, + 0.9926030039787292, + 0.999504566192627, + 0.9988547563552856 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988836646080017, + 0.997117280960083, + 0.9986127614974976, + 0.9988295435905457, + 0.9988952279090881 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 0.8461538461538461, + "final_counts": { + "POSITIVE": 11, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8461538461538461, + "NEGATIVE": 0.15384615384615385 + } + } }, { "season_code": "202301", @@ -174913,10 +383110,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86150\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86150/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -174957,10 +383182,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85102\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85102/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -174997,7 +383250,7 @@ "14:30", "15:45", "TAC 647 - The Anlyan Center 647", - "https:\/\/map.yale.edu\/?id=1910#!m\/563380" + "https://map.yale.edu/?id=1910#!m/563380" ] ], "Thursday": [ @@ -175005,7 +383258,7 @@ "14:30", "15:45", "TAC 647 - The Anlyan Center 647", - "https:\/\/map.yale.edu\/?id=1910#!m\/563380" + "https://map.yale.edu/?id=1910#!m/563380" ] ] }, @@ -175017,10 +383270,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84977\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84977/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -175075,15 +383356,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86160\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86160/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "A weekly seminar presented by faculty trainers on topics relating to proper conduct of research. Required of first-year Immunobiology students, first-year CB&B students, and training grant-funded postdocs. Pass\/Fail.", + "description": "A weekly seminar presented by faculty trainers on topics relating to proper conduct of research. Required of first-year Immunobiology students, first-year CB&B students, and training grant-funded postdocs. Pass/Fail.", "short_title": "Fundamentals of Research: Res...", "title": "Fundamentals of Research: Responsible Conduct of Research", "school": "GS", @@ -175111,7 +383420,7 @@ "17:15", "18:30", "BCMM 101 - Boyer Ctr Molecular Medicine 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/560055" + "https://map.yale.edu/?id=1910#!m/560055" ] ] }, @@ -175123,15 +383432,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83465\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83465/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "Intensive experience in the design and execution of experiments in immunology or other areas of biology. Students design a focused research project in consultation with a faculty mentor and execute the designed experiments in the mentor\u2019s laboratory. Students are expected to read relevant background papers from the literature, design and perform experiments, interpret the resulting data, and propose follow-up experiments. Students are also expected to attend the mentor\u2019s weekly lab meeting(s) as well as weekly Immunobiology departmental seminars and Research in Progress seminars. The course concludes with the student giving a brief presentation of the work performed at Rotation Talks, attended by other first-year immunology-track graduate students. Evaluation is by the mentor; students also evaluate the rotation experience. Students must turn in a prioritized list of four possible mentors to Barbara Cotton in the office of the director of graduate studies at least one week prior to the beginning of the course. Mentors are assigned by the DGS. Graded Pass\/Fail. 1 course credit; minimum of 20 hours\/week. Required of all first-year Immunology\/BBS students.", + "description": "Intensive experience in the design and execution of experiments in immunology or other areas of biology. Students design a focused research project in consultation with a faculty mentor and execute the designed experiments in the mentor\u2019s laboratory. Students are expected to read relevant background papers from the literature, design and perform experiments, interpret the resulting data, and propose follow-up experiments. Students are also expected to attend the mentor\u2019s weekly lab meeting(s) as well as weekly Immunobiology departmental seminars and Research in Progress seminars. The course concludes with the student giving a brief presentation of the work performed at Rotation Talks, attended by other first-year immunology-track graduate students. Evaluation is by the mentor; students also evaluate the rotation experience. Students must turn in a prioritized list of four possible mentors to Barbara Cotton in the office of the director of graduate studies at least one week prior to the beginning of the course. Mentors are assigned by the DGS. Graded Pass/Fail. 1 course credit; minimum of 20 hours/week. Required of all first-year Immunology/BBS students.", "short_title": "Research Rotation 3", "title": "Research Rotation 3", "school": "GS", @@ -175166,15 +383503,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84978\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84978/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "Consent of instructor required.", - "description": "An independent study course for first-year students in the Investigative Medicine program. Topics are chosen by the student, and reading lists are provided by faculty for weekly meetings to discuss articles. Four sessions are required; dates\/times by arrangement.", + "description": "An independent study course for first-year students in the Investigative Medicine program. Topics are chosen by the student, and reading lists are provided by faculty for weekly meetings to discuss articles. Four sessions are required; dates/times by arrangement.", "short_title": "Directed Reading in Investiga...", "title": "Directed Reading in Investigative Medicine", "school": "GS", @@ -175212,7 +383577,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -175255,7 +383648,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -175298,7 +383719,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -175341,7 +383790,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -175385,10 +383862,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83562\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83562/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -175425,7 +383930,7 @@ "9:25", "10:15", "WTS A46 - Watson Center 60 Sachem Street A46", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Tuesday": [ @@ -175433,7 +383938,7 @@ "9:25", "10:15", "WTS A46 - Watson Center 60 Sachem Street A46", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -175441,7 +383946,7 @@ "9:25", "10:15", "WTS A46 - Watson Center 60 Sachem Street A46", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -175449,7 +383954,7 @@ "9:25", "10:15", "WTS A46 - Watson Center 60 Sachem Street A46", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Friday": [ @@ -175457,7 +383962,7 @@ "9:25", "10:15", "WTS A46 - Watson Center 60 Sachem Street A46", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -175471,10 +383976,105 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84295\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84295/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987645149230957, + 0.9983497858047485, + 0.9988548755645752, + 0.9986250400543213, + 0.9777233004570007, + 0.9987611770629883 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9923093318939209, + 0.9988738894462585, + 0.9989306330680847 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983017444610596, + 0.9987908005714417, + 0.9989022016525269, + 0.9987963438034058, + 0.9988769888877869 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 0.9285714285714286, + "final_counts": { + "POSITIVE": 13, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9285714285714286, + "NEGATIVE": 0.07142857142857142 + } + } }, { "season_code": "202301", @@ -175511,7 +384111,7 @@ "10:30", "11:20", "WTS A46 - Watson Center 60 Sachem Street A46", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Tuesday": [ @@ -175519,7 +384119,7 @@ "10:30", "11:20", "WTS A46 - Watson Center 60 Sachem Street A46", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -175527,7 +384127,7 @@ "10:30", "11:20", "WTS A46 - Watson Center 60 Sachem Street A46", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -175535,7 +384135,7 @@ "10:30", "11:20", "WTS A46 - Watson Center 60 Sachem Street A46", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Friday": [ @@ -175543,7 +384143,7 @@ "10:30", "11:20", "WTS A46 - Watson Center 60 Sachem Street A46", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -175557,10 +384157,141 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84299\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84299/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987288117408752, + 0.9980965256690979, + 0.9987474679946899, + 0.9988082647323608, + 0.9988957643508911, + 0.9988893866539001, + 0.9922818541526794, + 0.9987958669662476, + 0.985978901386261, + 0.9879889488220215, + 0.9988548755645752 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9090909090909091 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987768530845642, + 0.9986741542816162, + 0.9987668991088867, + 0.9988658428192139, + 0.9989315867424011, + 0.9987101554870605, + 0.9988723397254944, + 0.9988858103752136, + 0.9934583306312561 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988987445831299, + 0.9988983869552612, + 0.9980168342590332, + 0.9988685846328735, + 0.9988571405410767, + 0.9988828301429749, + 0.9989355206489563, + 0.998678982257843, + 0.9989240765571594, + 0.9981719255447388, + 0.9987653493881226, + 0.9988313317298889 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 30, + "final_proportion": 0.9375, + "final_counts": { + "POSITIVE": 30, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9375, + "NEGATIVE": 0.0625 + } + } }, { "season_code": "202301", @@ -175597,7 +384328,7 @@ "10:30", "11:20", "WLH 120 - William L. Harkness Hall 120", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Tuesday": [ @@ -175605,7 +384336,7 @@ "10:30", "11:20", "WLH 120 - William L. Harkness Hall 120", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -175613,7 +384344,7 @@ "10:30", "11:20", "WLH 120 - William L. Harkness Hall 120", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -175621,7 +384352,7 @@ "10:30", "11:20", "WLH 120 - William L. Harkness Hall 120", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Friday": [ @@ -175629,7 +384360,7 @@ "10:30", "11:20", "WLH 120 - William L. Harkness Hall 120", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -175646,7 +384377,120 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9973602890968323, + 0.9956329464912415, + 0.998930037021637, + 0.9950031638145447, + 0.9989103078842163, + 0.9988234639167786, + 0.9988560676574707, + 0.9989218711853027, + 0.9988621473312378 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987504482269287, + 0.9988904595375061, + 0.9988201260566711, + 0.9988980293273926, + 0.9988920092582703, + 0.9988640546798706, + 0.9989198446273804 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998916506767273, + 0.9988844990730286, + 0.9989191293716431, + 0.9988766312599182, + 0.9988868832588196, + 0.9989171028137207, + 0.998894989490509, + 0.9989135265350342 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 24, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 24 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -175689,7 +384533,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -175732,12 +384604,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "Prerequisites: advanced Indonesian and permission of the instructor.", - "description": "For students with advanced Indonesian language skills preparing for academic performance and\/or research purposes.", + "description": "For students with advanced Indonesian language skills preparing for academic performance and/or research purposes.", "short_title": "Readings in Indonesian", "title": "Readings in Indonesian", "school": "GS", @@ -175775,12 +384675,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course focuses on diseases\/disorders such as Alzheimer\u2019s, Parkinson\u2019s, schizophrenia, multiple sclerosis, autism, and epilepsy, in which modern neuroscience has advanced mechanistic explanations for clinical conditions. The course highlights recent genetic, molecular, electrophysiological, and imaging experiments in parsing disease mechanisms.", + "description": "This course focuses on diseases/disorders such as Alzheimer\u2019s, Parkinson\u2019s, schizophrenia, multiple sclerosis, autism, and epilepsy, in which modern neuroscience has advanced mechanistic explanations for clinical conditions. The course highlights recent genetic, molecular, electrophysiological, and imaging experiments in parsing disease mechanisms.", "short_title": "Cellular and Molecular Mechan...", "title": "Cellular and Molecular Mechanisms of Neurological Disease", "school": "GS", @@ -175812,12 +384740,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "Required of all first-year Neuroscience track graduate students. Rotation period is one term. Grading is Satisfactory\/Unsatisfactory.", + "description": "Required of all first-year Neuroscience track graduate students. Rotation period is one term. Grading is Satisfactory/Unsatisfactory.", "short_title": "Lab Rotation for First-Year S...", "title": "Lab Rotation for First-Year Students", "school": "GS", @@ -175855,12 +384811,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "Required of all second-year INP graduate students. Grading is Satisfactory\/Unsatisfactory.", + "description": "Required of all second-year INP graduate students. Grading is Satisfactory/Unsatisfactory.", "short_title": "Second-Year Thesis Research", "title": "Second-Year Thesis Research", "school": "GS", @@ -175898,7 +384882,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -175938,10 +384950,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84318\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84318/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -175990,10 +385030,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84246\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84246/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -176033,15 +385101,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84251\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84251/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "Prerequisite: some prior experience with programming, data preprocessing, and basic fMRI analysis.", - "description": "This course provides training on how to use computational science for the advanced analysis of brain imaging data, primarily from functional magnetic resonance imaging (fMRI). Topics include scientific programming, high-performance computing, machine learning, network\/graph analysis, real-time neurofeedback, nonparametric statistics, and functional alignment.", + "description": "This course provides training on how to use computational science for the advanced analysis of brain imaging data, primarily from functional magnetic resonance imaging (fMRI). Topics include scientific programming, high-performance computing, machine learning, network/graph analysis, real-time neurofeedback, nonparametric statistics, and functional alignment.", "short_title": "Computational Methods in Huma...", "title": "Computational Methods in Human Neuroscience", "school": "GS", @@ -176077,10 +385173,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86223\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86223/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -176133,7 +385257,7 @@ "14:30", "15:45", "BASS 405 - Bass Center 405", - "https:\/\/map.yale.edu\/?id=1910#!m\/560102" + "https://map.yale.edu/?id=1910#!m/560102" ] ], "Thursday": [ @@ -176141,7 +385265,7 @@ "14:30", "15:45", "BASS 405 - Bass Center 405", - "https:\/\/map.yale.edu\/?id=1910#!m\/560102" + "https://map.yale.edu/?id=1910#!m/560102" ] ] }, @@ -176153,15 +385277,144 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84491\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84491/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "", - "description": "This course is an introduction to ethics and ethical decision-making in the neurosciences. Format for the course is an informal discussion. Each week we are joined by members of the Yale faculty and community who share their experiences and expertise as it relates to the topic of the week. Required of first-year INP students. Grading is Satisfactory\/Unsatisfactory and is based on attendance\/participation, weekly reaction papers, and a final term paper. Enrollment limited to Neuroscience track students.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988125562667847, + 0.9983453750610352, + 0.9986456036567688, + 0.9986985921859741, + 0.9977982044219971, + 0.9903422594070435, + 0.9986554384231567, + 0.9956871867179871, + 0.9983854293823242, + 0.9988418221473694, + 0.9961655139923096 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9090909090909091 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988546371459961, + 0.9924356341362, + 0.9994757771492004, + 0.998830258846283, + 0.9947176575660706, + 0.9983822107315063, + 0.9951450228691101, + 0.9986005425453186, + 0.9987438321113586, + 0.9995054006576538, + 0.9988664388656616 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.7272727272727273, + "NEGATIVE": 0.2727272727272727 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7272727272727273 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984412789344788, + 0.966108500957489, + 0.9989063739776611, + 0.9985975623130798, + 0.9945812821388245, + 0.9985987544059753, + 0.9927737712860107, + 0.9988572597503662, + 0.9988515377044678 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "final_label": "POSITIVE", + "final_count": 26, + "final_proportion": 0.8387096774193549, + "final_counts": { + "POSITIVE": 26, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.8387096774193549, + "NEGATIVE": 0.16129032258064516 + } + } + }, + { + "season_code": "202301", + "requirements": "", + "description": "This course is an introduction to ethics and ethical decision-making in the neurosciences. Format for the course is an informal discussion. Each week we are joined by members of the Yale faculty and community who share their experiences and expertise as it relates to the topic of the week. Required of first-year INP students. Grading is Satisfactory/Unsatisfactory and is based on attendance/participation, weekly reaction papers, and a final term paper. Enrollment limited to Neuroscience track students.", "short_title": "Bioethics in Neuroscience", "title": "Bioethics in Neuroscience", "school": "GS", @@ -176199,12 +385452,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "The neuroenergetic and neurochemical basis of several dominant neuroimaging methods, including fMRI. Topics range from technical aspects of different methods to interpretation of the neuroimaging results. Controversies and\/or challenges for application of fMRI and related methods in medicine are identified.", + "description": "The neuroenergetic and neurochemical basis of several dominant neuroimaging methods, including fMRI. Topics range from technical aspects of different methods to interpretation of the neuroimaging results. Controversies and/or challenges for application of fMRI and related methods in medicine are identified.", "short_title": "Fundamentals of Neuroimaging", "title": "Fundamentals of Neuroimaging", "school": "GS", @@ -176244,7 +385525,7 @@ "15:30", "17:20", "WLH 116 - William L. Harkness Hall 116", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -176256,10 +385537,145 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83424\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83424/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984152317047119, + 0.9988691210746765, + 0.9983434677124023, + 0.9987943172454834, + 0.9988088607788086, + 0.9988570213317871, + 0.9988594055175781, + 0.9988573789596558, + 0.9988619089126587, + 0.9986060261726379, + 0.99543297290802 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.8711649179458618, + 0.9984152317047119, + 0.9917279481887817, + 0.9985619187355042, + 0.9985988736152649, + 0.9988551139831543, + 0.99378901720047, + 0.9988489151000977, + 0.9856882095336914, + 0.9988940358161926, + 0.998847246170044, + 0.9988923668861389, + 0.998746395111084 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 11 + }, + "sentiment_distribution": { + "NEGATIVE": 0.15384615384615385, + "POSITIVE": 0.8461538461538461 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8461538461538461 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984152317047119, + 0.99775630235672, + 0.9987223744392395, + 0.9987455606460571, + 0.9971369504928589, + 0.998694121837616, + 0.9964320659637451, + 0.9989017248153687, + 0.9987584352493286, + 0.9982553124427795 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 32, + "final_proportion": 0.9411764705882353, + "final_counts": { + "POSITIVE": 32, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9411764705882353, + "NEGATIVE": 0.058823529411764705 + } + } }, { "season_code": "202301", @@ -176302,10 +385718,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85890\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85890/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -176345,10 +385789,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84261\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84261/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -176385,7 +385857,7 @@ "9:25", "10:15", "LC 212 - Linsly-Chittenden Hall 212", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Tuesday": [ @@ -176393,7 +385865,7 @@ "9:25", "10:15", "LC 212 - Linsly-Chittenden Hall 212", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -176401,7 +385873,7 @@ "9:25", "10:15", "LC 212 - Linsly-Chittenden Hall 212", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -176409,7 +385881,7 @@ "9:25", "10:15", "LC 212 - Linsly-Chittenden Hall 212", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Friday": [ @@ -176417,7 +385889,7 @@ "9:25", "10:15", "LC 212 - Linsly-Chittenden Hall 212", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -176431,10 +385903,117 @@ "classnotes": "", "final_exam": "Friday, May 5, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84267\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84267/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986754059791565, + 0.9280516505241394, + 0.9966116547584534, + 0.9980900883674622, + 0.9962582588195801, + 0.9950575828552246, + 0.9987794756889343, + 0.9986335635185242 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984570741653442, + 0.9947878122329712, + 0.9981290698051453, + 0.9962582588195801, + 0.9989173412322998, + 0.9986419081687927 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989390969276428, + 0.9985692501068115, + 0.9988524913787842, + 0.9985048770904541, + 0.9989223480224609, + 0.9980626702308655 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 0.85, + "final_counts": { + "POSITIVE": 17, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.85, + "NEGATIVE": 0.15 + } + } }, { "season_code": "202301", @@ -176471,7 +386050,7 @@ "9:25", "10:15", "WTS A42 - Watson Center 60 Sachem Street A42", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Tuesday": [ @@ -176479,7 +386058,7 @@ "9:25", "10:15", "WTS A42 - Watson Center 60 Sachem Street A42", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -176487,7 +386066,7 @@ "9:25", "10:15", "WTS A42 - Watson Center 60 Sachem Street A42", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -176495,7 +386074,7 @@ "9:25", "10:15", "WTS A42 - Watson Center 60 Sachem Street A42", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Friday": [ @@ -176503,7 +386082,7 @@ "9:25", "10:15", "WTS A42 - Watson Center 60 Sachem Street A42", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -176517,10 +386096,147 @@ "classnotes": "", "final_exam": "Friday, May 5, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84271\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84271/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9430761933326721, + 0.99797123670578, + 0.9988705515861511, + 0.998414158821106, + 0.9613736271858215, + 0.9940752983093262, + 0.9985741376876831, + 0.998482882976532, + 0.9981628060340881, + 0.9987841248512268, + 0.9989232420921326, + 0.9988589286804199 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989256262779236, + 0.9987840056419373, + 0.9989203214645386, + 0.9989104270935059, + 0.9970978498458862, + 0.9988905787467957, + 0.9987967014312744, + 0.9930161237716675, + 0.9989091157913208, + 0.9971300959587097, + 0.9989233613014221, + 0.9960352778434753 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9166666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9947028756141663, + 0.9970333576202393, + 0.9989005327224731, + 0.997426450252533, + 0.9982795715332031, + 0.9979179501533508, + 0.9909193515777588, + 0.9988491535186768, + 0.9976444840431213, + 0.9988947510719299, + 0.9981922507286072 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 34, + "final_proportion": 0.9714285714285714, + "final_counts": { + "POSITIVE": 34, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9714285714285714, + "NEGATIVE": 0.02857142857142857 + } + } }, { "season_code": "202301", @@ -176557,7 +386273,7 @@ "10:30", "11:20", "HQ 133 - Humanities Quadrangle 133", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Tuesday": [ @@ -176565,7 +386281,7 @@ "10:30", "11:20", "HQ 133 - Humanities Quadrangle 133", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -176573,7 +386289,7 @@ "10:30", "11:20", "HQ 133 - Humanities Quadrangle 133", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -176581,7 +386297,7 @@ "10:30", "11:20", "HQ 133 - Humanities Quadrangle 133", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Friday": [ @@ -176589,7 +386305,7 @@ "10:30", "11:20", "HQ 133 - Humanities Quadrangle 133", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -176603,10 +386319,109 @@ "classnotes": "", "final_exam": "Friday, May 5, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84275\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84275/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988152980804443, + 0.9985682964324951, + 0.9970288872718811, + 0.9988890290260315, + 0.996302604675293 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9972230195999146, + 0.9988901019096375, + 0.9988225102424622, + 0.9945165514945984, + 0.9985277652740479 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9592401385307312, + 0.9981655478477478, + 0.9988335967063904, + 0.9984956979751587, + 0.998892605304718, + 0.9988142251968384, + 0.9885363578796387 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 17 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -176643,7 +386458,7 @@ "10:30", "11:20", "WTS A60 - Watson Center 60 Sachem Street A60", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Tuesday": [ @@ -176651,7 +386466,7 @@ "10:30", "11:20", "WTS A60 - Watson Center 60 Sachem Street A60", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -176659,7 +386474,7 @@ "10:30", "11:20", "WTS A60 - Watson Center 60 Sachem Street A60", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -176667,7 +386482,7 @@ "10:30", "11:20", "WTS A60 - Watson Center 60 Sachem Street A60", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Friday": [ @@ -176675,7 +386490,7 @@ "10:30", "11:20", "WTS A60 - Watson Center 60 Sachem Street A60", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -176689,10 +386504,107 @@ "classnotes": "", "final_exam": "Friday, May 5, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84280\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84280/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9985533356666565, + 0.9982993006706238, + 0.9695992469787598, + 0.9988082647323608, + 0.9891706109046936 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.6, + "NEGATIVE": 0.4 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9968932867050171, + 0.9989035129547119, + 0.998621940612793, + 0.9989110231399536, + 0.9995023012161255 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.6, + "NEGATIVE": 0.4 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9978965520858765, + 0.9988237023353577, + 0.9945191740989685, + 0.9987939596176147, + 0.9988937973976135 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.4, + "POSITIVE": 0.6 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 0.6, + "final_counts": { + "POSITIVE": 9, + "NEGATIVE": 6 + }, + "final_distribution": { + "POSITIVE": 0.6, + "NEGATIVE": 0.4 + } + } }, { "season_code": "202301", @@ -176729,7 +386641,7 @@ "11:35", "12:25", "WTS A68 - Watson Center 60 Sachem Street A68", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Tuesday": [ @@ -176737,7 +386649,7 @@ "11:35", "12:25", "WTS A68 - Watson Center 60 Sachem Street A68", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -176745,7 +386657,7 @@ "11:35", "12:25", "WTS A68 - Watson Center 60 Sachem Street A68", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -176753,7 +386665,7 @@ "11:35", "12:25", "WTS A68 - Watson Center 60 Sachem Street A68", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Friday": [ @@ -176761,7 +386673,7 @@ "11:35", "12:25", "WTS A68 - Watson Center 60 Sachem Street A68", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -176775,10 +386687,85 @@ "classnotes": "", "final_exam": "Friday, May 5, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84285\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84285/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987139701843262, + 0.9988265633583069 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988592863082886, + 0.9985923171043396 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988970756530762 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 5, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 5 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -176815,7 +386802,7 @@ "11:35", "12:25", "WLH 203 - William L. Harkness Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Tuesday": [ @@ -176823,7 +386810,7 @@ "11:35", "12:25", "WLH 203 - William L. Harkness Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -176831,7 +386818,7 @@ "11:35", "12:25", "WLH 203 - William L. Harkness Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -176839,7 +386826,7 @@ "11:35", "12:25", "WLH 203 - William L. Harkness Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Friday": [ @@ -176847,7 +386834,7 @@ "11:35", "12:25", "WLH 203 - William L. Harkness Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -176861,10 +386848,107 @@ "classnotes": "", "final_exam": "Friday, May 5, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84288\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84288/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9896802306175232, + 0.9988412261009216, + 0.9856575131416321, + 0.9987092018127441, + 0.9987925291061401 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9962038397789001, + 0.9971765279769897, + 0.9988707900047302, + 0.9988238215446472 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9987825751304626, + 0.9982422590255737, + 0.9974592328071594, + 0.9986351132392883, + 0.9989213943481445, + 0.9989684820175171 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 0.8666666666666667, + "final_counts": { + "POSITIVE": 13, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8666666666666667, + "NEGATIVE": 0.13333333333333333 + } + } }, { "season_code": "202301", @@ -176901,7 +386985,7 @@ "9:25", "11:15", "WALL81 301 - 81 Wall Street 301", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ], "Tuesday": [ @@ -176909,7 +386993,7 @@ "9:25", "11:15", "WALL81 301 - 81 Wall Street 301", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ], "Wednesday": [ @@ -176917,7 +387001,7 @@ "9:25", "11:15", "WALL81 301 - 81 Wall Street 301", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ], "Thursday": [ @@ -176925,7 +387009,7 @@ "9:25", "11:15", "WALL81 301 - 81 Wall Street 301", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ], "Friday": [ @@ -176933,7 +387017,7 @@ "9:25", "11:15", "WALL81 301 - 81 Wall Street 301", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -176948,10 +387032,125 @@ "classnotes": "", "final_exam": "Friday, May 5, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84292\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84292/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988839030265808, + 0.998439371585846, + 0.9988679885864258, + 0.9877758026123047, + 0.9986441731452942, + 0.9987577199935913, + 0.9989199638366699, + 0.9963858127593994 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988502264022827, + 0.9989147186279297, + 0.9986361861228943, + 0.9978062510490417, + 0.9989070892333984, + 0.9989339709281921, + 0.9988228678703308, + 0.998785674571991 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989388585090637, + 0.9988549947738647, + 0.9989087581634521, + 0.9979966282844543, + 0.9989173412322998, + 0.9989392161369324, + 0.998884379863739, + 0.9988855719566345, + 0.998894989490509 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 25, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 25 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -176988,7 +387187,7 @@ "10:30", "11:20", "HQ 225 - Humanities Quadrangle 225", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Tuesday": [ @@ -176996,7 +387195,7 @@ "10:30", "11:20", "HQ 225 - Humanities Quadrangle 225", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -177004,7 +387203,7 @@ "10:30", "11:20", "HQ 225 - Humanities Quadrangle 225", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -177012,7 +387211,7 @@ "10:30", "11:20", "HQ 225 - Humanities Quadrangle 225", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Friday": [ @@ -177020,7 +387219,7 @@ "10:30", "11:20", "HQ 225 - Humanities Quadrangle 225", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -177034,10 +387233,117 @@ "classnotes": "", "final_exam": "Wednesday, May 10, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84296\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84296/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986429810523987, + 0.997349739074707, + 0.9988190531730652, + 0.9985234141349792, + 0.9986762404441833, + 0.9972077012062073 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989296793937683, + 0.9988728165626526, + 0.9987958669662476, + 0.9986810088157654, + 0.9977846741676331, + 0.9985958933830261 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989132881164551, + 0.9988300204277039, + 0.9986979961395264, + 0.9968376159667969, + 0.9989008903503418, + 0.9989244341850281, + 0.9966617822647095, + 0.9986928105354309, + 0.997117280960083 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 21, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 21 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -177074,7 +387380,7 @@ "11:35", "12:25", "HQ C64 - Humanities Quadrangle C64", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Tuesday": [ @@ -177082,7 +387388,7 @@ "11:35", "12:25", "HQ C64 - Humanities Quadrangle C64", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -177090,7 +387396,7 @@ "11:35", "12:25", "HQ C64 - Humanities Quadrangle C64", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -177098,7 +387404,7 @@ "11:35", "12:25", "HQ C64 - Humanities Quadrangle C64", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Friday": [ @@ -177106,7 +387412,7 @@ "11:35", "12:25", "HQ C64 - Humanities Quadrangle C64", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -177120,10 +387426,91 @@ "classnotes": "", "final_exam": "Monday, May 8, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84300\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84300/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988277554512024, + 0.9988974332809448, + 0.9988687634468079 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989001750946045, + 0.9988998174667358 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981096982955933, + 0.9989033937454224, + 0.9972521662712097 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 8, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 8 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -177160,7 +387547,7 @@ "14:30", "15:45", "HQ 109 - Humanities Quadrangle 109", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -177168,7 +387555,7 @@ "14:30", "15:45", "HQ 109 - Humanities Quadrangle 109", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -177182,10 +387569,111 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84304\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84304/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988376498222351, + 0.9988428354263306, + 0.9988825917243958, + 0.9989376664161682, + 0.9988547563552856, + 0.9989103078842163 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988755583763123, + 0.9986631870269775, + 0.9985698461532593, + 0.997916042804718, + 0.9988654851913452 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989315867424011, + 0.9988908171653748, + 0.9989373087882996, + 0.9989107847213745, + 0.9989334940910339, + 0.9989073276519775, + 0.9987010955810547 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 18 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -177222,7 +387710,7 @@ "14:30", "15:45", "HQ 123 - Humanities Quadrangle 123", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -177230,7 +387718,7 @@ "14:30", "15:45", "HQ 123 - Humanities Quadrangle 123", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -177246,10 +387734,93 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84307\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84307/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988075494766235, + 0.998819887638092, + 0.9989075660705566 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989019632339478, + 0.998925507068634, + 0.9989032745361328 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989350438117981, + 0.9989390969276428, + 0.9989206790924072 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 9 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -177288,7 +387859,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -177327,7 +387926,7 @@ "16:00", "17:15", "WLH 116 - William L. Harkness Hall 116", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -177335,7 +387934,7 @@ "16:00", "17:15", "WLH 116 - William L. Harkness Hall 116", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -177343,7 +387942,7 @@ "19:30", "22:00", "", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -177361,15 +387960,216 @@ "classnotes": "", "final_exam": "Wednesday, May 10, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84313\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "", - "description": "Medieval understandings of womanhood examined through analysis of writings by and\/or about women, from antiquity through the Middle Ages. Introduction to the premodern Western canon and assessment of the role that women played in its construction.", + "syllabus_url": "https://yale.instructure.com/courses/84313/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984297156333923, + 0.9985164999961853, + 0.9980825185775757, + 0.9978620409965515, + 0.9974600672721863, + 0.9986905455589294, + 0.9985004663467407, + 0.998833954334259, + 0.9989036321640015, + 0.9970345497131348, + 0.9961720108985901, + 0.9987850785255432, + 0.9743879437446594, + 0.9988478422164917, + 0.9987547397613525, + 0.9987503290176392, + 0.9988273978233337, + 0.9932063817977905, + 0.9962466359138489, + 0.9988787770271301, + 0.9980508089065552 + ], + "sentiment_counts": { + "POSITIVE": 21, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988524913787842, + 0.9988352656364441, + 0.9983114004135132, + 0.9979947805404663, + 0.9987784028053284, + 0.998814582824707, + 0.9883044958114624, + 0.9943663477897644, + 0.9989060163497925, + 0.997983455657959, + 0.9995017051696777, + 0.9988667964935303, + 0.998637855052948, + 0.998656153678894, + 0.9989120960235596, + 0.9976654052734375, + 0.979790985584259, + 0.9987584352493286, + 0.9989238381385803, + 0.9994978904724121, + 0.9988058805465698, + 0.9984209537506104 + ], + "sentiment_counts": { + "POSITIVE": 18, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.8181818181818182, + "NEGATIVE": 0.18181818181818182 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8181818181818182 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989327788352966, + 0.9987508058547974, + 0.988050639629364, + 0.9986817240715027, + 0.9983729124069214, + 0.9982598423957825, + 0.9988725781440735, + 0.9988852143287659, + 0.9988939166069031, + 0.9984661340713501, + 0.9988865256309509, + 0.9949772953987122, + 0.9988874793052673, + 0.9989209175109863, + 0.9814485907554626, + 0.9989136457443237, + 0.9795332551002502, + 0.9804028272628784, + 0.9989145994186401, + 0.9989012479782104, + 0.9988786578178406, + 0.9994825124740601, + 0.9989269375801086, + 0.9904578924179077 + ], + "sentiment_counts": { + "POSITIVE": 19, + "NEGATIVE": 5 + }, + "sentiment_distribution": { + "POSITIVE": 0.7916666666666666, + "NEGATIVE": 0.20833333333333334 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7916666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 58, + "final_proportion": 0.8656716417910447, + "final_counts": { + "POSITIVE": 58, + "NEGATIVE": 9 + }, + "final_distribution": { + "POSITIVE": 0.8656716417910447, + "NEGATIVE": 0.13432835820895522 + } + } + }, + { + "season_code": "202301", + "requirements": "", + "description": "Medieval understandings of womanhood examined through analysis of writings by and/or about women, from antiquity through the Middle Ages. Introduction to the premodern Western canon and assessment of the role that women played in its construction.", "short_title": "Women in the Middle Ages", "title": "Women in the Middle Ages", "school": "YC", @@ -177404,7 +388204,7 @@ "13:00", "14:15", "HQ C07 - Humanities Quadrangle C07", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -177412,7 +388212,7 @@ "13:00", "14:15", "HQ C07 - Humanities Quadrangle C07", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -177428,10 +388228,117 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84967\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84967/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989093542098999, + 0.9987327456474304, + 0.9989203214645386, + 0.9988341927528381, + 0.9983691573143005, + 0.9988722205162048, + 0.9988724589347839 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9972534775733948, + 0.9987975358963013, + 0.9989268183708191, + 0.9988551139831543, + 0.9989287257194519, + 0.9967257976531982, + 0.998938262462616 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989038705825806, + 0.9988985061645508, + 0.9988089799880981, + 0.9989352822303772, + 0.9987322688102722, + 0.9988644123077393, + 0.9989362359046936 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 21, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 21 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -177472,7 +388379,7 @@ "15:30", "17:20", "PH 207 - Phelps Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -177489,10 +388396,131 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85919\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85919/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987782835960388, + 0.9989118576049805, + 0.9988343119621277, + 0.9989268183708191, + 0.9986599683761597, + 0.9987064599990845, + 0.9988788962364197, + 0.9987242817878723, + 0.9989331364631653 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989103078842163, + 0.9989150762557983, + 0.9989306330680847, + 0.9989027976989746, + 0.9989321827888489, + 0.9988206028938293, + 0.9989105463027954, + 0.9989148378372192, + 0.9989281296730042 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9421969056129456, + 0.9988974332809448, + 0.9989270567893982, + 0.9985398054122925, + 0.9988217949867249, + 0.9987505674362183, + 0.9988631010055542, + 0.9989206790924072, + 0.9989385008811951, + 0.9989297986030579 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 28, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 28 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -177532,10 +388560,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84314\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84314/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -177575,10 +388631,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84317\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84317/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -177618,10 +388702,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84319\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84319/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -177658,7 +388770,7 @@ "9:25", "11:15", "CO493 102 - 493 College Street 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/560001" + "https://map.yale.edu/?id=1910#!m/560001" ] ] }, @@ -177670,10 +388782,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84968\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84968/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -177713,10 +388853,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84969\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84969/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -177753,7 +388921,7 @@ "15:30", "17:20", "HQ C65 - Humanities Quadrangle C65", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -177765,10 +388933,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86008\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86008/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -177806,7 +389002,7 @@ "15:30", "17:20", "HQ C65 - Humanities Quadrangle C65", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -177818,10 +389014,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85972\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85972/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -177861,7 +389085,7 @@ "15:30", "17:20", "LC 318 - Linsly-Chittenden Hall 318", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -177873,10 +389097,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84321\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84321/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -177913,7 +389165,7 @@ "9:25", "10:15", "RKZ 04 - Rosenkranz Hall 04", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ], "Tuesday": [ @@ -177921,7 +389173,7 @@ "9:25", "10:15", "RKZ 04 - Rosenkranz Hall 04", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ], "Wednesday": [ @@ -177929,7 +389181,7 @@ "9:25", "10:15", "RKZ 04 - Rosenkranz Hall 04", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ], "Thursday": [ @@ -177937,7 +389189,7 @@ "9:25", "10:15", "RKZ 04 - Rosenkranz Hall 04", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ], "Friday": [ @@ -177945,7 +389197,7 @@ "9:25", "10:15", "RKZ 04 - Rosenkranz Hall 04", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -177959,10 +389211,105 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84323\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84323/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988151788711548, + 0.9988456964492798, + 0.9988515377044678, + 0.9964196681976318, + 0.9985727071762085, + 0.9866929650306702 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986699819564819, + 0.9988816380500793, + 0.9988991022109985, + 0.9987838864326477 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9831935167312622, + 0.9989074468612671, + 0.9987004995346069, + 0.9985350370407104, + 0.9989141225814819 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 15 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -177999,7 +389346,7 @@ "10:30", "11:20", "LC 208 - Linsly-Chittenden Hall 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Tuesday": [ @@ -178007,7 +389354,7 @@ "10:30", "11:20", "LC 208 - Linsly-Chittenden Hall 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -178015,7 +389362,7 @@ "10:30", "11:20", "LC 208 - Linsly-Chittenden Hall 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -178023,7 +389370,7 @@ "10:30", "11:20", "LC 208 - Linsly-Chittenden Hall 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Friday": [ @@ -178031,7 +389378,7 @@ "10:30", "11:20", "LC 208 - Linsly-Chittenden Hall 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -178045,10 +389392,111 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84325\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84325/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988691210746765, + 0.9959539175033569, + 0.9988732933998108, + 0.9988834261894226, + 0.9985548853874207, + 0.9496031403541565 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988431930541992, + 0.9982542395591736, + 0.9988596439361572, + 0.9988885521888733, + 0.998862624168396 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989363551139832, + 0.9985396862030029, + 0.9972084164619446, + 0.9989104270935059, + 0.9989058971405029, + 0.9988465309143066, + 0.9924341440200806 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 18 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -178085,7 +389533,7 @@ "10:30", "11:20", "RKZ 04 - Rosenkranz Hall 04", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ], "Tuesday": [ @@ -178093,7 +389541,7 @@ "10:30", "11:20", "RKZ 04 - Rosenkranz Hall 04", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ], "Wednesday": [ @@ -178101,7 +389549,7 @@ "10:30", "11:20", "RKZ 04 - Rosenkranz Hall 04", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ], "Thursday": [ @@ -178109,7 +389557,7 @@ "10:30", "11:20", "RKZ 04 - Rosenkranz Hall 04", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ], "Friday": [ @@ -178117,7 +389565,7 @@ "10:30", "11:20", "RKZ 04 - Rosenkranz Hall 04", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -178131,10 +389579,115 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84323\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84323/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984391331672668, + 0.9979089498519897, + 0.9989302754402161, + 0.9968416690826416, + 0.9972584247589111, + 0.9987149238586426 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989315867424011, + 0.9989251494407654, + 0.9989054203033447, + 0.9988355040550232, + 0.9988880753517151, + 0.9984605312347412, + 0.9988338351249695 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989187717437744, + 0.9989355206489563, + 0.9988503456115723, + 0.9989332556724548, + 0.9987155199050903, + 0.997123658657074, + 0.9989314675331116 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 20 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -178171,7 +389724,7 @@ "11:35", "12:25", "WTS B39 - Watson Center 60 Sachem Street B39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Tuesday": [ @@ -178179,7 +389732,7 @@ "11:35", "12:25", "WTS B39 - Watson Center 60 Sachem Street B39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -178187,7 +389740,7 @@ "11:35", "12:25", "WTS B39 - Watson Center 60 Sachem Street B39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -178195,7 +389748,7 @@ "11:35", "12:25", "WTS B39 - Watson Center 60 Sachem Street B39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Friday": [ @@ -178203,7 +389756,7 @@ "11:35", "12:25", "WTS B39 - Watson Center 60 Sachem Street B39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -178217,10 +389770,95 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84316\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84316/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9985417127609253, + 0.9962582588195801 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9985495209693909, + 0.998018741607666, + 0.9962582588195801, + 0.9993575215339661 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9962582588195801, + 0.9894563555717468, + 0.997117280960083 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 5, + "final_proportion": 0.5555555555555556, + "final_counts": { + "POSITIVE": 5, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.5555555555555556, + "NEGATIVE": 0.4444444444444444 + } + } }, { "season_code": "202301", @@ -178300,7 +389938,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -178337,7 +390003,7 @@ "10:30", "11:20", "WTS A42 - Watson Center 60 Sachem Street A42", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Tuesday": [ @@ -178345,7 +390011,7 @@ "10:30", "11:20", "WTS A42 - Watson Center 60 Sachem Street A42", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -178353,7 +390019,7 @@ "10:30", "11:20", "WTS A42 - Watson Center 60 Sachem Street A42", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -178361,7 +390027,7 @@ "10:30", "11:20", "WTS A42 - Watson Center 60 Sachem Street A42", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Friday": [ @@ -178369,7 +390035,7 @@ "10:30", "11:20", "WTS A42 - Watson Center 60 Sachem Street A42", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -178383,10 +390049,121 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84322\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84322/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988517761230469, + 0.9967633485794067, + 0.9987564086914062, + 0.9986400008201599, + 0.9987040758132935, + 0.9986543655395508, + 0.998406708240509 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989362359046936, + 0.9985623955726624, + 0.9988932013511658, + 0.9988396763801575, + 0.9969943761825562, + 0.9989057779312134, + 0.9972364902496338 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998932421207428, + 0.9985383749008179, + 0.9985467791557312, + 0.9987621307373047, + 0.9988935589790344, + 0.998854398727417, + 0.998915433883667, + 0.9988405108451843 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 21, + "final_proportion": 0.9545454545454546, + "final_counts": { + "POSITIVE": 21, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9545454545454546, + "NEGATIVE": 0.045454545454545456 + } + } }, { "season_code": "202301", @@ -178423,7 +390200,7 @@ "11:35", "12:25", "WTS A42 - Watson Center 60 Sachem Street A42", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Tuesday": [ @@ -178431,7 +390208,7 @@ "11:35", "12:25", "WTS A42 - Watson Center 60 Sachem Street A42", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -178439,7 +390216,7 @@ "11:35", "12:25", "WTS A42 - Watson Center 60 Sachem Street A42", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -178447,7 +390224,7 @@ "11:35", "12:25", "WTS A42 - Watson Center 60 Sachem Street A42", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Friday": [ @@ -178455,7 +390232,7 @@ "11:35", "12:25", "WTS A42 - Watson Center 60 Sachem Street A42", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -178469,10 +390246,105 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84322\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84322/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987611770629883, + 0.9986975193023682, + 0.9988512992858887, + 0.9986750483512878, + 0.9983168840408325 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984764456748962, + 0.9989230036735535, + 0.9988994598388672, + 0.9988478422164917, + 0.9988307356834412 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987288117408752, + 0.998801589012146, + 0.9989290833473206, + 0.9989352822303772, + 0.9982553124427795 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 15 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -178509,7 +390381,7 @@ "14:30", "15:45", "TM432 102 - 432 Temple Street 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/559942" + "https://map.yale.edu/?id=1910#!m/559942" ] ], "Thursday": [ @@ -178517,7 +390389,7 @@ "14:30", "15:45", "TM432 102 - 432 Temple Street 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/559942" + "https://map.yale.edu/?id=1910#!m/559942" ] ] }, @@ -178531,10 +390403,101 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84326\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84326/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988471269607544, + 0.9984215497970581, + 0.9988769888877869, + 0.9988238215446472, + 0.9987791180610657, + 0.9988821148872375 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9977746605873108, + 0.9989383816719055, + 0.9984917640686035 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988694787025452, + 0.998894989490509, + 0.9988330006599426 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 0.9166666666666666, + "final_counts": { + "POSITIVE": 11, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + } + } }, { "season_code": "202301", @@ -178571,7 +390534,7 @@ "14:30", "15:45", "RKZ 02 - Rosenkranz Hall 02", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ], "Wednesday": [ @@ -178579,7 +390542,7 @@ "14:30", "15:45", "RKZ 02 - Rosenkranz Hall 02", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -178593,10 +390556,89 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84328\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84328/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988717436790466, + 0.9985613226890564 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988960027694702, + 0.9989213943481445 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9911017417907715, + 0.9988928437232971, + 0.9989036321640015 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 7 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -178634,7 +390676,7 @@ "11:35", "12:50", "HQ 109 - Humanities Quadrangle 109", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -178642,7 +390684,7 @@ "11:35", "12:50", "HQ 109 - Humanities Quadrangle 109", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -178656,10 +390698,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87007\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87007/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -178697,7 +390767,7 @@ "11:35", "12:50", "HQ 109 - Humanities Quadrangle 109", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -178705,7 +390775,7 @@ "11:35", "12:50", "HQ 109 - Humanities Quadrangle 109", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -178717,10 +390787,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87007\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87007/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -178759,7 +390857,7 @@ "11:35", "12:50", "HQ L02 - Humanities Quadrangle L02", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -178767,7 +390865,7 @@ "11:35", "12:50", "HQ L02 - Humanities Quadrangle L02", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -178781,10 +390879,291 @@ "classnotes": "", "final_exam": "Monday, May 8, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84772\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84772/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988290667533875, + 0.9988075494766235, + 0.9966762065887451, + 0.998902440071106, + 0.9988210797309875, + 0.9975656270980835, + 0.9988633394241333, + 0.9986528158187866, + 0.998358428478241, + 0.9989237189292908, + 0.9987260699272156, + 0.9983518123626709, + 0.99811851978302, + 0.9988264441490173, + 0.9986715316772461, + 0.9989025592803955, + 0.9910557270050049, + 0.9988585710525513, + 0.9985525012016296, + 0.9977089166641235, + 0.9989070892333984, + 0.9979081153869629, + 0.9987916350364685, + 0.9988657236099243, + 0.9974964261054993, + 0.9989084005355835, + 0.9988693594932556, + 0.9989012479782104, + 0.9989035129547119, + 0.9968770742416382, + 0.9988401532173157, + 0.99765944480896, + 0.9987685084342957, + 0.9989281296730042, + 0.9948299527168274, + 0.9988118410110474, + 0.9988964796066284 + ], + "sentiment_counts": { + "POSITIVE": 36, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.972972972972973, + "NEGATIVE": 0.02702702702702703 + }, + "sentiment_overall": [ + "POSITIVE", + 0.972972972972973 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982505440711975, + 0.9988216757774353, + 0.9927753210067749, + 0.9984867572784424, + 0.997535228729248, + 0.9988909363746643, + 0.9994943141937256, + 0.998920202255249, + 0.9988312125205994, + 0.9994657635688782, + 0.9985942244529724, + 0.9994660019874573, + 0.9986879229545593, + 0.9985479712486267, + 0.9944854378700256, + 0.9984076619148254, + 0.9988272786140442, + 0.9988683462142944, + 0.9986459612846375, + 0.9988570213317871, + 0.998930037021637, + 0.9988259673118591, + 0.9988610744476318, + 0.9982654452323914, + 0.9989336133003235, + 0.9981223940849304, + 0.9988973140716553, + 0.9987978935241699, + 0.9983129501342773, + 0.9989041090011597, + 0.9989180564880371, + 0.9977905750274658, + 0.9988817572593689 + ], + "sentiment_counts": { + "POSITIVE": 29, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.8787878787878788, + "NEGATIVE": 0.12121212121212122 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8787878787878788 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9976546764373779, + 0.9989054203033447, + 0.9918733239173889, + 0.9986003041267395, + 0.9987607002258301, + 0.997117280960083, + 0.9989318251609802, + 0.9988375306129456, + 0.9983757734298706, + 0.9959028363227844, + 0.9963801503181458, + 0.9980168342590332, + 0.9991083741188049, + 0.9976826906204224, + 0.9988815188407898, + 0.9988943934440613, + 0.9767922759056091, + 0.9969416260719299, + 0.9988981485366821, + 0.9983124732971191, + 0.9988852143287659, + 0.9985693693161011, + 0.9983709454536438, + 0.9989199638366699, + 0.9983469247817993, + 0.9989011287689209, + 0.9988847374916077, + 0.9988110065460205, + 0.9982798099517822, + 0.9984978437423706, + 0.9988870024681091, + 0.998630940914154, + 0.9988604784011841, + 0.9989032745361328, + 0.997117280960083, + 0.9962310194969177, + 0.9989303946495056 + ], + "sentiment_counts": { + "NEGATIVE": 5, + "POSITIVE": 32 + }, + "sentiment_distribution": { + "NEGATIVE": 0.13513513513513514, + "POSITIVE": 0.8648648648648649 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8648648648648649 + ] + }, + "final_label": "POSITIVE", + "final_count": 97, + "final_proportion": 0.9065420560747663, + "final_counts": { + "POSITIVE": 97, + "NEGATIVE": 10 + }, + "final_distribution": { + "POSITIVE": 0.9065420560747663, + "NEGATIVE": 0.09345794392523364 + } + } }, { "season_code": "202301", @@ -178824,7 +391203,7 @@ "9:25", "11:15", "HQ C03 - Humanities Quadrangle C03", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -178838,10 +391217,38 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84329\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84329/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -178874,7 +391281,7 @@ "16:00", "16:50", "HQ 123 - Humanities Quadrangle 123", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -178893,7 +391300,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -178926,7 +391361,7 @@ "15:30", "16:20", "HQ 401 - Humanities Quadrangle 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -178945,7 +391380,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -178984,7 +391447,7 @@ "14:30", "15:20", "HQ 133 - Humanities Quadrangle 133", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -178992,7 +391455,7 @@ "14:30", "15:20", "HQ 133 - Humanities Quadrangle 133", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -179013,10 +391476,111 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84184\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84184/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988340735435486, + 0.9988924860954285, + 0.9988946318626404, + 0.9986358284950256, + 0.9988049268722534, + 0.998917818069458 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985674619674683, + 0.9988283514976501, + 0.9988425970077515, + 0.9995055198669434, + 0.6169186234474182, + 0.9980123043060303 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9953234791755676, + 0.998761773109436, + 0.9988918900489807, + 0.998449444770813, + 0.9988927245140076 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 0.8823529411764706, + "final_counts": { + "POSITIVE": 15, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8823529411764706, + "NEGATIVE": 0.11764705882352941 + } + } }, { "season_code": "202301", @@ -179056,7 +391620,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -179095,7 +391687,7 @@ "13:30", "15:20", "WLH 011 - William L. Harkness Hall 011", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -179111,10 +391703,87 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84226\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84226/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.998883068561554 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989051818847656, + 0.998795747756958 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988958835601807, + 0.9982553124427795, + 0.9988030195236206 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 6 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -179153,7 +391822,7 @@ "19:00", "20:50", "HQ 109 - Humanities Quadrangle 109", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -179169,10 +391838,117 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85960\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85960/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982345104217529, + 0.9988848567008972, + 0.9988833069801331, + 0.9986829161643982, + 0.9989036321640015, + 0.9987936019897461 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9951080679893494, + 0.9988616704940796, + 0.998932421207428, + 0.9971219897270203, + 0.9975426197052002, + 0.9988887906074524, + 0.998611330986023 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982397556304932, + 0.9988937973976135, + 0.9989098310470581, + 0.9988887906074524, + 0.9994695782661438, + 0.9982329607009888, + 0.998902440071106 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 0.9, + "final_counts": { + "POSITIVE": 18, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + } + } }, { "season_code": "202301", @@ -179211,7 +391987,7 @@ "12:00", "15:00", "WLH 112 - William L. Harkness Hall 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -179225,10 +392001,97 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84796\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84796/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987609386444092, + 0.9987653493881226, + 0.9989068508148193, + 0.9988013505935669 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988901019096375, + 0.9988046884536743, + 0.9989032745361328 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988446235656738, + 0.9939232468605042, + 0.998923122882843, + 0.9988622665405273 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 11 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -179272,7 +392135,7 @@ "11:35", "12:50", "HQ 307 - Humanities Quadrangle 307", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -179280,7 +392143,7 @@ "11:35", "12:50", "HQ 307 - Humanities Quadrangle 307", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -179307,10 +392170,173 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84160\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84160/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984762072563171, + 0.9965823292732239, + 0.9987420439720154, + 0.998738706111908, + 0.9988890290260315, + 0.9987844824790955, + 0.9989080429077148, + 0.9968896508216858, + 0.99891197681427, + 0.9962582588195801, + 0.9987926483154297, + 0.9988880753517151, + 0.9988172650337219, + 0.9989134073257446 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9285714285714286, + "NEGATIVE": 0.07142857142857142 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9285714285714286 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994984865188599, + 0.9981104135513306, + 0.9988154172897339, + 0.9942962527275085, + 0.9994580149650574, + 0.9982935786247253, + 0.9988263249397278, + 0.9989131689071655, + 0.9988403916358948, + 0.9987169504165649, + 0.9989199638366699, + 0.9962582588195801, + 0.9988699555397034, + 0.9973528385162354, + 0.9985707998275757, + 0.99857497215271, + 0.979805052280426, + 0.9986971020698547 + ], + "sentiment_counts": { + "NEGATIVE": 4, + "POSITIVE": 14 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2222222222222222, + "POSITIVE": 0.7777777777777778 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7777777777777778 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988037347793579, + 0.9988871216773987, + 0.9984511137008667, + 0.9986259937286377, + 0.987037181854248, + 0.9987447261810303, + 0.998930037021637, + 0.9989023208618164, + 0.9988842606544495, + 0.9878063797950745, + 0.9989326596260071, + 0.9962582588195801, + 0.9988477230072021, + 0.9910148978233337, + 0.9989182949066162, + 0.9986000657081604 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.8125, + "NEGATIVE": 0.1875 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8125 + ] + }, + "final_label": "POSITIVE", + "final_count": 40, + "final_proportion": 0.8333333333333334, + "final_counts": { + "POSITIVE": 40, + "NEGATIVE": 8 + }, + "final_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + } + } }, { "season_code": "202301", @@ -179350,7 +392376,7 @@ "14:30", "15:45", "HQ 113 - Humanities Quadrangle 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -179358,7 +392384,7 @@ "14:30", "15:45", "HQ 113 - Humanities Quadrangle 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -179376,10 +392402,93 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84789\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84789/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986647367477417, + 0.9986265897750854, + 0.9989118576049805 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989350438117981, + 0.9989033937454224, + 0.9989362359046936 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988598823547363, + 0.998909592628479, + 0.9988313317298889 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 9 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -179416,7 +392525,7 @@ "9:25", "11:15", "WLH 014 - William L. Harkness Hall 014", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -179432,10 +392541,38 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85844\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/85844/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -179475,7 +392612,7 @@ "9:25", "11:15", "HQ C11 - Humanities Quadrangle C11", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -179491,10 +392628,155 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84330\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84330/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994730353355408, + 0.9987735152244568, + 0.9989132881164551, + 0.998863935470581, + 0.9981655478477478, + 0.9988279938697815, + 0.9989187717437744, + 0.9987779259681702, + 0.9988715052604675, + 0.9988929629325867, + 0.9988653659820557, + 0.9977631568908691, + 0.9988754391670227 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 12 + }, + "sentiment_distribution": { + "NEGATIVE": 0.07692307692307693, + "POSITIVE": 0.9230769230769231 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9230769230769231 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994981288909912, + 0.9987552165985107, + 0.9989013671875, + 0.9989364743232727, + 0.9987037181854248, + 0.9989111423492432, + 0.9946002960205078, + 0.9989228844642639, + 0.9982954859733582, + 0.9989129304885864, + 0.9987377524375916, + 0.9989160299301147, + 0.9988783001899719, + 0.9989315867424011 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 13 + }, + "sentiment_distribution": { + "NEGATIVE": 0.07142857142857142, + "POSITIVE": 0.9285714285714286 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9285714285714286 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994633793830872, + 0.9988186955451965, + 0.9989223480224609, + 0.9988671541213989, + 0.9989014863967896, + 0.9989328980445862, + 0.9987951517105103, + 0.9988805651664734, + 0.998842179775238, + 0.9959834814071655, + 0.9982752799987793, + 0.9989295601844788 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 11 + }, + "sentiment_distribution": { + "NEGATIVE": 0.08333333333333333, + "POSITIVE": 0.9166666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9166666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 36, + "final_proportion": 0.9230769230769231, + "final_counts": { + "NEGATIVE": 3, + "POSITIVE": 36 + }, + "final_distribution": { + "NEGATIVE": 0.07692307692307693, + "POSITIVE": 0.9230769230769231 + } + } }, { "season_code": "202301", @@ -179534,7 +392816,7 @@ "15:30", "17:20", "WLH 011 - William L. Harkness Hall 011", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -179550,10 +392832,157 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84331\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84331/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989147186279297, + 0.9971709847450256, + 0.9988216757774353, + 0.9988547563552856, + 0.9989110231399536, + 0.9980278611183167, + 0.9989327788352966, + 0.998796820640564, + 0.9988337159156799, + 0.9988998174667358, + 0.998924195766449, + 0.9989174604415894, + 0.9989125728607178 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988594055175781, + 0.9989277720451355, + 0.9987912774085999, + 0.9989026784896851, + 0.9988887906074524, + 0.9988993406295776, + 0.9989206790924072, + 0.9989266991615295, + 0.9989330172538757, + 0.9988841414451599, + 0.998918890953064, + 0.9987988471984863, + 0.9989401698112488 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989142417907715, + 0.998934805393219, + 0.9989320635795593, + 0.9989142417907715, + 0.9984645843505859, + 0.998897910118103, + 0.9989385008811951, + 0.9989238381385803, + 0.998930037021637, + 0.9988995790481567, + 0.9989160299301147, + 0.9987499713897705, + 0.9989301562309265, + 0.9989232420921326, + 0.9989206790924072 + ], + "sentiment_counts": { + "POSITIVE": 15, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 41, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 41 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -179594,7 +393023,7 @@ "13:00", "14:15", "HQ 213 - Humanities Quadrangle 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -179602,7 +393031,7 @@ "13:00", "14:15", "HQ 213 - Humanities Quadrangle 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -179622,10 +393051,107 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84410\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84410/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.996685802936554, + 0.9981920123100281, + 0.9987937211990356, + 0.9988003969192505, + 0.9988400340080261 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987272620201111, + 0.9989301562309265, + 0.9989311099052429, + 0.9989060163497925, + 0.9989307522773743 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987375140190125, + 0.9988834261894226, + 0.9989318251609802, + 0.9989001750946045, + 0.9988529682159424, + 0.9989380240440369 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 16 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -179666,7 +393192,7 @@ "11:35", "12:50", "HQ 129 - Humanities Quadrangle 129", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -179674,7 +393200,7 @@ "11:35", "12:50", "HQ 129 - Humanities Quadrangle 129", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -179690,10 +393216,87 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84193\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84193/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988137483596802, + 0.9989005327224731 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9966269731521606 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 0 + }, + "sentiment_distribution": { + "NEGATIVE": 1.0, + "POSITIVE": 0.0 + }, + "sentiment_overall": [ + "NEGATIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988827109336853, + 0.9989258646965027 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 4, + "final_proportion": 0.8, + "final_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + } + } }, { "season_code": "202301", @@ -179733,7 +393336,7 @@ "9:25", "11:15", "LC 319 - Linsly-Chittenden Hall 319", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -179747,10 +393350,95 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84394\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84394/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988617897033691, + 0.9983670115470886, + 0.9989296793937683 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988983869552612, + 0.9989319443702698 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981204867362976, + 0.9989350438117981, + 0.9986304044723511, + 0.998915433883667, + 0.9976826906204224 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 10 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -179790,7 +393478,7 @@ "15:30", "17:20", "WLH 208 - William L. Harkness Hall 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -179804,10 +393492,123 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84398\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84398/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987761378288269, + 0.9988526105880737, + 0.9988616704940796, + 0.9988709092140198, + 0.9988692402839661, + 0.998865008354187 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982339143753052, + 0.999426007270813, + 0.9988495111465454, + 0.9988961219787598, + 0.9988528490066528, + 0.9995020627975464, + 0.9989275336265564 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.7142857142857143, + "NEGATIVE": 0.2857142857142857 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7142857142857143 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987536668777466, + 0.9988459348678589, + 0.9988019466400146, + 0.998782217502594, + 0.9988957643508911, + 0.9988753199577332, + 0.9995001554489136, + 0.9989253878593445, + 0.9989050626754761, + 0.9986708164215088 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 0.8695652173913043, + "final_counts": { + "POSITIVE": 20, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.8695652173913043, + "NEGATIVE": 0.13043478260869565 + } + } }, { "season_code": "202301", @@ -179850,7 +393651,7 @@ "13:30", "15:20", "HQ C07 - Humanities Quadrangle C07", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -179873,10 +393674,38 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84194\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84194/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -179913,7 +393742,7 @@ "9:25", "11:15", "HQ C11 - Humanities Quadrangle C11", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -179927,10 +393756,38 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85114\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/85114/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -179978,7 +393835,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -180016,7 +393901,7 @@ "13:30", "15:20", "BASS L70 - Bass Center L70", - "https:\/\/map.yale.edu\/?id=1910#!m\/560102" + "https://map.yale.edu/?id=1910#!m/560102" ] ] }, @@ -180032,10 +393917,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87015\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87015/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -180074,7 +393987,7 @@ "14:30", "15:45", "HQ 129 - Humanities Quadrangle 129", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -180082,7 +393995,7 @@ "14:30", "15:45", "HQ 129 - Humanities Quadrangle 129", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -180096,10 +394009,99 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84186\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84186/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988287091255188, + 0.9987917542457581, + 0.9985260963439941, + 0.9989026784896851 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988827109336853, + 0.9988239407539368, + 0.9988918900489807, + 0.9989213943481445 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988976716995239, + 0.9988875985145569, + 0.9988822340965271, + 0.9985650181770325 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 12 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -180139,10 +394141,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84333\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84333/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -180189,7 +394219,7 @@ "9:25", "11:15", "PH 401 - Phelps Hall 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -180201,10 +394231,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84198\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84198/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -180242,7 +394300,7 @@ "9:25", "11:15", "HQ C05 - Humanities Quadrangle C05", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -180254,10 +394312,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84335\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84335/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -180297,7 +394383,7 @@ "9:25", "11:15", "HQ C03 - Humanities Quadrangle C03", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -180309,10 +394395,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84329\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84329/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -180356,7 +394470,7 @@ "11:35", "12:50", "HQ 307 - Humanities Quadrangle 307", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -180364,7 +394478,7 @@ "11:35", "12:50", "HQ 307 - Humanities Quadrangle 307", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -180378,10 +394492,173 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84160\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84160/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984762072563171, + 0.9965823292732239, + 0.9987420439720154, + 0.998738706111908, + 0.9988890290260315, + 0.9987844824790955, + 0.9989080429077148, + 0.9968896508216858, + 0.99891197681427, + 0.9962582588195801, + 0.9987926483154297, + 0.9988880753517151, + 0.9988172650337219, + 0.9989134073257446 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9285714285714286, + "NEGATIVE": 0.07142857142857142 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9285714285714286 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994984865188599, + 0.9981104135513306, + 0.9988154172897339, + 0.9942962527275085, + 0.9994580149650574, + 0.9982935786247253, + 0.9988263249397278, + 0.9989131689071655, + 0.9988403916358948, + 0.9987169504165649, + 0.9989199638366699, + 0.9962582588195801, + 0.9988699555397034, + 0.9973528385162354, + 0.9985707998275757, + 0.99857497215271, + 0.979805052280426, + 0.9986971020698547 + ], + "sentiment_counts": { + "NEGATIVE": 4, + "POSITIVE": 14 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2222222222222222, + "POSITIVE": 0.7777777777777778 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7777777777777778 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988037347793579, + 0.9988871216773987, + 0.9984511137008667, + 0.9986259937286377, + 0.987037181854248, + 0.9987447261810303, + 0.998930037021637, + 0.9989023208618164, + 0.9988842606544495, + 0.9878063797950745, + 0.9989326596260071, + 0.9962582588195801, + 0.9988477230072021, + 0.9910148978233337, + 0.9989182949066162, + 0.9986000657081604 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.8125, + "NEGATIVE": 0.1875 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8125 + ] + }, + "final_label": "POSITIVE", + "final_count": 40, + "final_proportion": 0.8333333333333334, + "final_counts": { + "POSITIVE": 40, + "NEGATIVE": 8 + }, + "final_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + } + } }, { "season_code": "202301", @@ -180437,10 +394714,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83321\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83321/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -180483,7 +394788,7 @@ "13:30", "15:20", "HQ C07 - Humanities Quadrangle C07", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -180495,10 +394800,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84194\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84194/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -180539,7 +394872,7 @@ "11:35", "12:50", "HQ 129 - Humanities Quadrangle 129", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -180547,7 +394880,7 @@ "11:35", "12:50", "HQ 129 - Humanities Quadrangle 129", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -180559,10 +394892,87 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84193\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84193/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988137483596802, + 0.9989005327224731 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9966269731521606 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 0 + }, + "sentiment_distribution": { + "NEGATIVE": 1.0, + "POSITIVE": 0.0 + }, + "sentiment_overall": [ + "NEGATIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988827109336853, + 0.9989258646965027 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 4, + "final_proportion": 0.8, + "final_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + } + } }, { "season_code": "202301", @@ -180601,12 +395011,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "Course taught through distance learning using videoconferencing technology from Cornell University. Enrollment limited; interested students should e-mail\u00a0minjin.hashbat@yale.edu\u00a0for more information. Prerequisite: KHMR 130 or equivalent.", - "description": "This course focuses on learning Khmer (the national language of Cambodia). Students communicate in every day conversation using complex questions\/answers. The course focuses on reading, writing, speaking, and listening to Khmer words, long sentences, and texts. The course also emphasizes grammar, sentence structure and using words correctly.", + "description": "This course focuses on learning Khmer (the national language of Cambodia). Students communicate in every day conversation using complex questions/answers. The course focuses on reading, writing, speaking, and listening to Khmer words, long sentences, and texts. The course also emphasizes grammar, sentence structure and using words correctly.", "short_title": "Intermediate Khmer II", "title": "Intermediate Khmer II", "school": "YC", @@ -180640,7 +395078,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -180677,7 +395143,7 @@ "9:25", "10:15", "RKZ 02 - Rosenkranz Hall 02", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ], "Tuesday": [ @@ -180685,7 +395151,7 @@ "9:25", "10:15", "RKZ 02 - Rosenkranz Hall 02", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ], "Wednesday": [ @@ -180693,7 +395159,7 @@ "9:25", "10:15", "RKZ 02 - Rosenkranz Hall 02", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ], "Thursday": [ @@ -180701,7 +395167,7 @@ "9:25", "10:15", "RKZ 02 - Rosenkranz Hall 02", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ], "Friday": [ @@ -180709,7 +395175,7 @@ "9:25", "10:15", "RKZ 02 - Rosenkranz Hall 02", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -180723,10 +395189,131 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84341\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84341/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9975095987319946, + 0.9987448453903198, + 0.998195469379425, + 0.9983567595481873, + 0.9989016056060791, + 0.998818576335907, + 0.9986963868141174, + 0.9984855055809021, + 0.9989007711410522, + 0.9982718229293823 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 9 + }, + "sentiment_distribution": { + "NEGATIVE": 0.1, + "POSITIVE": 0.9 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989064931869507, + 0.9984942674636841, + 0.9988104104995728, + 0.9988641738891602, + 0.9989160299301147, + 0.9970019459724426, + 0.9986509680747986, + 0.9989297986030579 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986140727996826, + 0.9988784193992615, + 0.9989311099052429, + 0.9989062547683716, + 0.9989336133003235, + 0.9989398121833801, + 0.9988701939582825, + 0.9989287257194519, + 0.9988052845001221 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 25, + "final_proportion": 0.9259259259259259, + "final_counts": { + "NEGATIVE": 2, + "POSITIVE": 25 + }, + "final_distribution": { + "NEGATIVE": 0.07407407407407407, + "POSITIVE": 0.9259259259259259 + } + } }, { "season_code": "202301", @@ -180763,7 +395350,7 @@ "9:25", "10:15", "RKZ 06 - Rosenkranz Hall 06", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ], "Tuesday": [ @@ -180771,7 +395358,7 @@ "9:25", "10:15", "RKZ 06 - Rosenkranz Hall 06", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ], "Wednesday": [ @@ -180779,7 +395366,7 @@ "9:25", "10:15", "RKZ 06 - Rosenkranz Hall 06", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ], "Thursday": [ @@ -180787,7 +395374,7 @@ "9:25", "10:15", "RKZ 06 - Rosenkranz Hall 06", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ], "Friday": [ @@ -180795,7 +395382,7 @@ "9:25", "10:15", "RKZ 06 - Rosenkranz Hall 06", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -180809,10 +395396,139 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84343\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84343/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.997377872467041, + 0.9989271759986877, + 0.9986080527305603, + 0.8504205942153931, + 0.9988418221473694, + 0.998611330986023, + 0.9987666606903076, + 0.9987724423408508, + 0.998514711856842 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9980758428573608, + 0.9989320635795593, + 0.9989222288131714, + 0.9989118576049805, + 0.9988436698913574, + 0.9989110231399536, + 0.9989194869995117, + 0.9989317059516907, + 0.9989104270935059, + 0.9989099502563477, + 0.9989308714866638, + 0.9988277554512024 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 11 + }, + "sentiment_distribution": { + "NEGATIVE": 0.08333333333333333, + "POSITIVE": 0.9166666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9166666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987925291061401, + 0.9989364743232727, + 0.9988411068916321, + 0.9988152980804443, + 0.9983627200126648, + 0.9988935589790344, + 0.9988848567008972, + 0.9987428784370422, + 0.9989198446273804, + 0.9985764026641846 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 29, + "final_proportion": 0.9354838709677419, + "final_counts": { + "POSITIVE": 29, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9354838709677419, + "NEGATIVE": 0.06451612903225806 + } + } }, { "season_code": "202301", @@ -180849,7 +395565,7 @@ "10:30", "11:20", "RKZ 06 - Rosenkranz Hall 06", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ], "Tuesday": [ @@ -180857,7 +395573,7 @@ "10:30", "11:20", "RKZ 06 - Rosenkranz Hall 06", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ], "Wednesday": [ @@ -180865,7 +395581,7 @@ "10:30", "11:20", "RKZ 06 - Rosenkranz Hall 06", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ], "Thursday": [ @@ -180873,7 +395589,7 @@ "10:30", "11:20", "RKZ 06 - Rosenkranz Hall 06", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ], "Friday": [ @@ -180881,7 +395597,7 @@ "10:30", "11:20", "RKZ 06 - Rosenkranz Hall 06", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -180895,10 +395611,95 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84345\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84345/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988112449645996, + 0.9980964064598083, + 0.9963010549545288 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9974641799926758, + 0.9989124536514282 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9938177466392517, + 0.9988756775856018, + 0.9989030361175537, + 0.9988343119621277 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.25, + "POSITIVE": 0.75 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 8, + "final_proportion": 0.8888888888888888, + "final_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + } + } }, { "season_code": "202301", @@ -180935,7 +395736,7 @@ "10:30", "11:20", "WTS B39 - Watson Center 60 Sachem Street B39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Tuesday": [ @@ -180943,7 +395744,7 @@ "10:30", "11:20", "WTS B39 - Watson Center 60 Sachem Street B39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -180951,7 +395752,7 @@ "10:30", "11:20", "WTS B39 - Watson Center 60 Sachem Street B39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -180959,7 +395760,7 @@ "10:30", "11:20", "WTS B39 - Watson Center 60 Sachem Street B39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Friday": [ @@ -180967,7 +395768,7 @@ "10:30", "11:20", "WTS B39 - Watson Center 60 Sachem Street B39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -180981,10 +395782,97 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84347\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84347/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987672567367554, + 0.9988601207733154, + 0.9988105297088623, + 0.9930974841117859 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9915952086448669, + 0.9989299178123474, + 0.9988877177238464, + 0.9936627149581909 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989175796508789, + 0.9989113807678223 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 8, + "final_proportion": 0.8, + "final_counts": { + "POSITIVE": 8, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + } + } }, { "season_code": "202301", @@ -181021,7 +395909,7 @@ "11:35", "12:25", "RKZ 02 - Rosenkranz Hall 02", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ], "Tuesday": [ @@ -181029,7 +395917,7 @@ "11:35", "12:25", "RKZ 02 - Rosenkranz Hall 02", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ], "Wednesday": [ @@ -181037,7 +395925,7 @@ "11:35", "12:25", "RKZ 02 - Rosenkranz Hall 02", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ], "Thursday": [ @@ -181045,7 +395933,7 @@ "11:35", "12:25", "RKZ 02 - Rosenkranz Hall 02", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ], "Friday": [ @@ -181053,7 +395941,7 @@ "11:35", "12:25", "RKZ 02 - Rosenkranz Hall 02", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -181067,10 +395955,143 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84341\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84341/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9865565896034241, + 0.9943384528160095, + 0.9988027811050415, + 0.9988197684288025, + 0.9951196908950806, + 0.9988304972648621, + 0.9981154203414917, + 0.998847484588623, + 0.9984328150749207, + 0.9985097050666809 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987038373947144, + 0.994686484336853, + 0.9989287257194519, + 0.9989332556724548, + 0.9986953139305115, + 0.9989259839057922, + 0.9984925985336304, + 0.9986149072647095, + 0.9989067316055298, + 0.997580885887146, + 0.998925507068634, + 0.9989045858383179 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984773993492126, + 0.998284637928009, + 0.9989122152328491, + 0.9989069700241089, + 0.9988406300544739, + 0.9974592328071594, + 0.9983918070793152, + 0.9989030361175537, + 0.9989147186279297, + 0.9988783001899719, + 0.9989344477653503 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 30, + "final_proportion": 0.9090909090909091, + "final_counts": { + "POSITIVE": 30, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + } + } }, { "season_code": "202301", @@ -181107,7 +396128,7 @@ "10:30", "11:20", "RKZ 02 - Rosenkranz Hall 02", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ], "Tuesday": [ @@ -181115,7 +396136,7 @@ "10:30", "11:20", "RKZ 02 - Rosenkranz Hall 02", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ], "Wednesday": [ @@ -181123,7 +396144,7 @@ "10:30", "11:20", "RKZ 02 - Rosenkranz Hall 02", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ], "Thursday": [ @@ -181131,7 +396152,7 @@ "10:30", "11:20", "RKZ 02 - Rosenkranz Hall 02", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ], "Friday": [ @@ -181139,7 +396160,7 @@ "10:30", "11:20", "RKZ 02 - Rosenkranz Hall 02", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -181153,10 +396174,117 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84352\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84352/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987679123878479, + 0.9987190961837769, + 0.9984721541404724, + 0.9985032081604004, + 0.9988492727279663, + 0.9982374906539917 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989053010940552, + 0.9988903403282166, + 0.9989017248153687, + 0.9988247752189636, + 0.9989217519760132, + 0.9987742304801941, + 0.9989232420921326 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988853335380554, + 0.9989166259765625, + 0.9976754784584045, + 0.998932421207428, + 0.9983423948287964, + 0.9988443851470947, + 0.9985154271125793, + 0.9987722039222717 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 21, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 21 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -181193,7 +396321,7 @@ "10:30", "11:20", "WTS A53 - Watson Center 60 Sachem Street A53", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Tuesday": [ @@ -181201,7 +396329,7 @@ "10:30", "11:20", "WTS A53 - Watson Center 60 Sachem Street A53", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -181209,7 +396337,7 @@ "10:30", "11:20", "WTS A53 - Watson Center 60 Sachem Street A53", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -181217,7 +396345,7 @@ "10:30", "11:20", "WTS A53 - Watson Center 60 Sachem Street A53", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Friday": [ @@ -181225,7 +396353,7 @@ "10:30", "11:20", "WTS A53 - Watson Center 60 Sachem Street A53", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -181239,15 +396367,158 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84356\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84356/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989275336265564, + 0.998766303062439, + 0.9989069700241089, + 0.9989029169082642, + 0.9923220276832581, + 0.9988945126533508, + 0.998903751373291, + 0.9988963603973389, + 0.9956764578819275, + 0.9988698363304138, + 0.9988294243812561, + 0.9988663196563721, + 0.9988240599632263 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9230769230769231, + "NEGATIVE": 0.07692307692307693 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9230769230769231 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989249110221863, + 0.9989234805107117, + 0.9989163875579834, + 0.997988224029541, + 0.9989057779312134, + 0.998902440071106, + 0.9988570213317871, + 0.9987762570381165, + 0.9988998174667358, + 0.9989213943481445, + 0.9989256262779236, + 0.9989168643951416 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989342093467712, + 0.9988817572593689, + 0.9989011287689209, + 0.998904824256897, + 0.9975734353065491, + 0.9989281296730042, + 0.9988860487937927, + 0.9989330172538757, + 0.9988731741905212, + 0.9989339709281921, + 0.9989388585090637, + 0.9989181756973267, + 0.9989019632339478 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 37, + "final_proportion": 0.9736842105263158, + "final_counts": { + "POSITIVE": 37, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9736842105263158, + "NEGATIVE": 0.02631578947368421 + } + } }, { "season_code": "202301", "requirements": "After KREN 150 or equivalent.", - "description": "This course is content and project-based to further develop integrated language skills-spoken and written, including grammar and vocabulary, as well as intercultural competence through Korean media. Through a variety of media, such as print media, publishing, digital media, cinema, broadcasting (radio, television, podcasting), and advertising, students explore and reflect on a wide range of topics and perspectives in Korean culture and society. The course learning activities include interactive, interpretive, and presentational communication; critical analysis; creative and authentic language applications in formal\/informal contexts.", + "description": "This course is content and project-based to further develop integrated language skills-spoken and written, including grammar and vocabulary, as well as intercultural competence through Korean media. Through a variety of media, such as print media, publishing, digital media, cinema, broadcasting (radio, television, podcasting), and advertising, students explore and reflect on a wide range of topics and perspectives in Korean culture and society. The course learning activities include interactive, interpretive, and presentational communication; critical analysis; creative and authentic language applications in formal/informal contexts.", "short_title": "Advanced Korean II: Korean La...", "title": "Advanced Korean II: Korean Language and Culture through Media", "school": "YC", @@ -181279,7 +396550,7 @@ "9:25", "10:15", "WTS B74 - Watson Center 60 Sachem Street B74", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -181287,7 +396558,7 @@ "9:25", "10:15", "WTS B74 - Watson Center 60 Sachem Street B74", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Friday": [ @@ -181295,7 +396566,7 @@ "9:25", "10:15", "WTS B74 - Watson Center 60 Sachem Street B74", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -181309,10 +396580,111 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84360\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84360/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983267188072205, + 0.9987710118293762, + 0.9987291693687439, + 0.998820960521698, + 0.9985150694847107 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988478422164917, + 0.998699426651001, + 0.9989007711410522, + 0.998917818069458, + 0.998918890953064, + 0.9988924860954285 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998809814453125, + 0.9986856579780579, + 0.9988856911659241, + 0.9989380240440369, + 0.9989321827888489, + 0.9988849759101868 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 5 + }, + "sentiment_distribution": { + "NEGATIVE": 0.16666666666666666, + "POSITIVE": 0.8333333333333334 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 0.9411764705882353, + "final_counts": { + "POSITIVE": 16, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9411764705882353, + "NEGATIVE": 0.058823529411764705 + } + } }, { "season_code": "202301", @@ -181349,7 +396721,7 @@ "13:00", "14:15", "TM432 102 - 432 Temple Street 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/559942" + "https://map.yale.edu/?id=1910#!m/559942" ] ], "Thursday": [ @@ -181357,7 +396729,7 @@ "13:00", "14:15", "TM432 102 - 432 Temple Street 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/559942" + "https://map.yale.edu/?id=1910#!m/559942" ] ] }, @@ -181371,10 +396743,91 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84364\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84364/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988147020339966, + 0.997579038143158 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994387030601501, + 0.9917342662811279 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 1 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9871970415115356, + 0.9969432950019836, + 0.9983184337615967 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 5, + "final_proportion": 0.7142857142857143, + "final_counts": { + "POSITIVE": 5, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.7142857142857143, + "NEGATIVE": 0.2857142857142857 + } + } }, { "season_code": "202301", @@ -181414,7 +396867,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -181452,7 +396933,7 @@ "11:35", "12:50", "WLH 120 - William L. Harkness Hall 120", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -181460,7 +396941,7 @@ "11:35", "12:50", "WLH 120 - William L. Harkness Hall 120", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -181474,10 +396955,119 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84905\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84905/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988594055175781, + 0.9986464381217957, + 0.9988278746604919, + 0.9986923336982727, + 0.9988821148872375, + 0.9986314177513123, + 0.9987479448318481 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987654685974121, + 0.9995124340057373, + 0.9989157915115356, + 0.9985669255256653, + 0.9994897842407227, + 0.9989249110221863 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988890290260315, + 0.9994932413101196, + 0.9989089965820312, + 0.9977553486824036, + 0.9989192485809326, + 0.99883633852005, + 0.9994707703590393, + 0.9987685084342957 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 0.8095238095238095, + "final_counts": { + "POSITIVE": 17, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.8095238095238095, + "NEGATIVE": 0.19047619047619047 + } + } }, { "season_code": "202301", @@ -181515,7 +397105,7 @@ "11:35", "12:50", "WLH 120 - William L. Harkness Hall 120", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -181523,7 +397113,7 @@ "11:35", "12:50", "WLH 120 - William L. Harkness Hall 120", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -181537,10 +397127,121 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84907\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84907/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986420273780823, + 0.9986544847488403, + 0.9983787536621094, + 0.9987389445304871, + 0.9985224604606628, + 0.9981503486633301, + 0.998755693435669, + 0.9971145391464233 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986974596977234, + 0.9988633394241333, + 0.9987218976020813, + 0.9987819790840149, + 0.9986213445663452, + 0.9988481998443604 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988582134246826, + 0.9989282488822937, + 0.9986485838890076, + 0.9989240765571594, + 0.9975499510765076, + 0.9988908171653748, + 0.9989209175109863, + 0.9989303946495056, + 0.9945465326309204 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 23, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 23 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -181579,7 +397280,7 @@ "13:00", "14:15", "HQ 133 - Humanities Quadrangle 133", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -181587,7 +397288,7 @@ "13:00", "14:15", "HQ 133 - Humanities Quadrangle 133", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -181601,10 +397302,121 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84909\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84909/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987851977348328, + 0.998835027217865, + 0.998849630355835, + 0.9987677335739136, + 0.9988548755645752, + 0.9987525939941406, + 0.9988691210746765 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988992214202881, + 0.998865008354187, + 0.9985793828964233, + 0.9982191920280457, + 0.9995031356811523, + 0.9988693594932556, + 0.9900122880935669, + 0.998909592628479 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988564252853394, + 0.9988006353378296, + 0.9989051818847656, + 0.998049259185791, + 0.9989219903945923, + 0.9994945526123047, + 0.9989356398582458 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 0.9090909090909091, + "final_counts": { + "POSITIVE": 20, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + } + } }, { "season_code": "202301", @@ -181642,7 +397454,7 @@ "10:30", "11:20", "HQ 207 - Humanities Quadrangle 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -181650,7 +397462,7 @@ "10:30", "11:20", "HQ 207 - Humanities Quadrangle 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Friday": [ @@ -181658,7 +397470,7 @@ "10:30", "11:20", "HQ 207 - Humanities Quadrangle 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -181672,10 +397484,141 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84911\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84911/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988555908203125, + 0.998663067817688, + 0.997580885887146, + 0.998735249042511, + 0.9986003041267395, + 0.9987898468971252, + 0.9986897110939026, + 0.9987849593162537, + 0.9986810088157654, + 0.9988695979118347 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988930821418762, + 0.9988775849342346, + 0.9977013468742371, + 0.9987630844116211, + 0.9989079236984253, + 0.99882572889328, + 0.9984084963798523, + 0.9987505674362183, + 0.9988946318626404, + 0.9989194869995117 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9946868419647217, + 0.9988242983818054, + 0.9990437626838684, + 0.9985669255256653, + 0.9993547797203064, + 0.9988497495651245, + 0.9982597231864929, + 0.961677074432373, + 0.9984470009803772, + 0.9965528249740601, + 0.9989323019981384, + 0.9987820982933044 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 27, + "final_proportion": 0.84375, + "final_counts": { + "POSITIVE": 27, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.84375, + "NEGATIVE": 0.15625 + } + } }, { "season_code": "202301", @@ -181713,7 +397656,7 @@ "11:35", "12:50", "YK212 106 - 212 York Street 106", - "https:\/\/map.yale.edu\/?id=1910#!m\/559604" + "https://map.yale.edu/?id=1910#!m/559604" ] ], "Wednesday": [ @@ -181721,7 +397664,7 @@ "11:35", "12:50", "YK212 106 - 212 York Street 106", - "https:\/\/map.yale.edu\/?id=1910#!m\/559604" + "https://map.yale.edu/?id=1910#!m/559604" ] ] }, @@ -181735,10 +397678,123 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84914\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84914/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989026784896851, + 0.9986403584480286, + 0.9986600875854492, + 0.9973614811897278, + 0.9986586570739746, + 0.9970249533653259, + 0.9989019632339478, + 0.9986019730567932 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989088773727417, + 0.9953482747077942, + 0.9988576173782349, + 0.9914956092834473, + 0.9966813921928406, + 0.9989064931869507, + 0.9989207983016968, + 0.998931348323822 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.625, + "NEGATIVE": 0.375 + }, + "sentiment_overall": [ + "POSITIVE", + 0.625 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988793730735779, + 0.9988470077514648, + 0.9988036155700684, + 0.9988420605659485, + 0.9989128112792969, + 0.9989321827888489, + 0.9989352822303772 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 0.8695652173913043, + "final_counts": { + "POSITIVE": 20, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.8695652173913043, + "NEGATIVE": 0.13043478260869565 + } + } }, { "season_code": "202301", @@ -181776,7 +397832,7 @@ "9:25", "11:15", "HQ C11 - Humanities Quadrangle C11", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -181799,10 +397855,115 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85171\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85171/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988659620285034, + 0.9986296892166138, + 0.9988407492637634, + 0.9988816380500793, + 0.9988504648208618, + 0.9988693594932556 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998925507068634, + 0.9988853335380554, + 0.9988773465156555, + 0.9988892674446106, + 0.9989306330680847, + 0.9988753199577332 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989075660705566, + 0.997117280960083, + 0.9988526105880737, + 0.9989179372787476, + 0.9989294409751892, + 0.9987922310829163, + 0.9988799691200256, + 0.9989280104637146 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 20 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -181843,7 +398004,7 @@ "10:30", "11:20", "LORIA 351 - Loria Center 351", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ], "Thursday": [ @@ -181851,7 +398012,7 @@ "10:30", "11:20", "LORIA 351 - Loria Center 351", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -181872,10 +398033,193 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83387\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83387/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985113739967346, + 0.9993385672569275, + 0.9989054203033447, + 0.9987413287162781, + 0.9988246560096741, + 0.9989179372787476, + 0.9987403750419617, + 0.9988346695899963, + 0.998862624168396, + 0.9988658428192139, + 0.9988833069801331, + 0.9987567663192749, + 0.9987362027168274, + 0.9983325600624084, + 0.991707980632782, + 0.9995017051696777, + 0.9976261258125305 + ], + "sentiment_counts": { + "POSITIVE": 15, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8823529411764706, + "NEGATIVE": 0.11764705882352941 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8823529411764706 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981862902641296, + 0.9988204836845398, + 0.9995107650756836, + 0.9989113807678223, + 0.9987157583236694, + 0.9995076656341553, + 0.9887896776199341, + 0.9989262223243713, + 0.9988092184066772, + 0.9994956254959106, + 0.9995019435882568, + 0.9973430037498474, + 0.9980487823486328, + 0.9912784695625305, + 0.9981743097305298, + 0.9986567497253418, + 0.9995007514953613, + 0.9941630959510803 + ], + "sentiment_counts": { + "NEGATIVE": 8, + "POSITIVE": 10 + }, + "sentiment_distribution": { + "NEGATIVE": 0.4444444444444444, + "POSITIVE": 0.5555555555555556 + }, + "sentiment_overall": [ + "POSITIVE", + 0.5555555555555556 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.986362636089325, + 0.9980016350746155, + 0.9976667165756226, + 0.9995057582855225, + 0.9995101690292358, + 0.998887836933136, + 0.998101532459259, + 0.9941808581352234, + 0.9926744103431702, + 0.9988856911659241, + 0.9986157417297363, + 0.9989258646965027, + 0.9995089769363403, + 0.9994294047355652, + 0.9989312291145325, + 0.9978559613227844, + 0.9989157915115356, + 0.9986143112182617, + 0.998832643032074, + 0.9982798099517822, + 0.9995107650756836, + 0.9995071887969971, + 0.999388575553894 + ], + "sentiment_counts": { + "POSITIVE": 14, + "NEGATIVE": 9 + }, + "sentiment_distribution": { + "POSITIVE": 0.6086956521739131, + "NEGATIVE": 0.391304347826087 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6086956521739131 + ] + }, + "final_label": "POSITIVE", + "final_count": 39, + "final_proportion": 0.6724137931034483, + "final_counts": { + "POSITIVE": 39, + "NEGATIVE": 19 + }, + "final_distribution": { + "POSITIVE": 0.6724137931034483, + "NEGATIVE": 0.3275862068965517 + } + } }, { "season_code": "202301", @@ -181909,7 +398253,7 @@ "13:30", "14:20", "RDH 211 - Rudolph Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/559534" + "https://map.yale.edu/?id=1910#!m/559534" ] ] }, @@ -181926,7 +398270,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -181960,7 +398332,7 @@ "17:00", "17:50", "WLH 114 - William L. Harkness Hall 114", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -181977,7 +398349,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -182011,7 +398411,7 @@ "16:00", "16:50", "RDH 211 - Rudolph Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/559534" + "https://map.yale.edu/?id=1910#!m/559534" ] ] }, @@ -182028,7 +398428,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -182062,7 +398490,7 @@ "14:30", "15:20", "RDH 211 - Rudolph Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/559534" + "https://map.yale.edu/?id=1910#!m/559534" ] ] }, @@ -182079,7 +398507,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -182117,7 +398573,7 @@ "15:30", "17:20", "WLH 202 - William L. Harkness Hall 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -182132,10 +398588,125 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84376\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84376/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987840056419373, + 0.9987983703613281, + 0.9986916184425354, + 0.9989252686500549, + 0.9988539218902588, + 0.9986775517463684, + 0.9988804459571838, + 0.998931348323822 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986259937286377, + 0.998900294303894, + 0.9989151954650879, + 0.9989243149757385, + 0.9989277720451355, + 0.998913049697876, + 0.9989144802093506 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988552331924438, + 0.9989305138587952, + 0.9989181756973267, + 0.998938262462616, + 0.9988704323768616, + 0.9988358616828918, + 0.998930037021637, + 0.9989026784896851, + 0.9989261031150818, + 0.9985365867614746 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 25, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 25 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -182172,7 +398743,7 @@ "13:30", "15:20", "LC 210 - Linsly-Chittenden Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -182188,10 +398759,93 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87184\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87184/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989216327667236, + 0.9988811612129211 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985446929931641, + 0.9989379048347473, + 0.9989386200904846 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9969013929367065, + 0.9986215829849243, + 0.9989134073257446 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 0.875, + "final_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + } + } }, { "season_code": "202301", @@ -182228,7 +398882,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -182266,7 +398948,7 @@ "9:30", "11:20", "PR406 203 - 406 Prospect St., Miller Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/559978" + "https://map.yale.edu/?id=1910#!m/559978" ] ] }, @@ -182278,10 +398960,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87104\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87104/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -182318,7 +399028,7 @@ "9:25", "10:15", "PH 312 - Phelps Hall 312", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ], "Tuesday": [ @@ -182326,7 +399036,7 @@ "9:25", "10:15", "PH 312 - Phelps Hall 312", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ], "Wednesday": [ @@ -182334,7 +399044,7 @@ "9:25", "10:15", "PH 312 - Phelps Hall 312", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ], "Thursday": [ @@ -182342,7 +399052,7 @@ "9:25", "10:15", "PH 312 - Phelps Hall 312", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ], "Friday": [ @@ -182350,7 +399060,7 @@ "9:25", "10:15", "PH 312 - Phelps Hall 312", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -182364,10 +399074,38 @@ "classnotes": "", "final_exam": "Friday, May 5, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84382\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84382/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -182404,7 +399142,7 @@ "10:30", "11:20", "PH 312 - Phelps Hall 312", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ], "Tuesday": [ @@ -182412,7 +399150,7 @@ "10:30", "11:20", "PH 312 - Phelps Hall 312", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ], "Wednesday": [ @@ -182420,7 +399158,7 @@ "10:30", "11:20", "PH 312 - Phelps Hall 312", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ], "Thursday": [ @@ -182428,7 +399166,7 @@ "10:30", "11:20", "PH 312 - Phelps Hall 312", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ], "Friday": [ @@ -182436,7 +399174,7 @@ "10:30", "11:20", "PH 312 - Phelps Hall 312", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -182450,15 +399188,120 @@ "classnotes": "", "final_exam": "Friday, May 5, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85120\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85120/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985839128494263, + 0.9666237235069275, + 0.998910665512085, + 0.9983013868331909, + 0.9979097247123718, + 0.9988662004470825 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987850785255432, + 0.9666237235069275, + 0.9989305138587952, + 0.9988927245140076, + 0.998893678188324, + 0.9988934397697449 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 4 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988815188407898, + 0.9666237235069275, + 0.9989351630210876, + 0.9989238381385803, + 0.9988877177238464, + 0.9985820055007935, + 0.9988279938697815 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 0.7894736842105263, + "final_counts": { + "POSITIVE": 15, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.7894736842105263, + "NEGATIVE": 0.21052631578947367 + } + } }, { "season_code": "202301", "requirements": "Counts as L4 if taken after LATN 131 or equivalent, or if placed into L4.", - "description": "An introduction to reading hexameter (epic) poetry in Latin. Readings come primarily from Vergil's Aeneid. Attention is paid both to grammar\/syntax and to interpretation of poetic style and content.", + "description": "An introduction to reading hexameter (epic) poetry in Latin. Readings come primarily from Vergil's Aeneid. Attention is paid both to grammar/syntax and to interpretation of poetic style and content.", "short_title": "Latin Poetry: An Introduction", "title": "Latin Poetry: An Introduction", "school": "YC", @@ -182490,7 +399333,7 @@ "9:00", "10:15", "PH 407 - Phelps Hall 407", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ], "Wednesday": [ @@ -182498,7 +399341,7 @@ "9:00", "10:15", "PH 407 - Phelps Hall 407", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -182512,10 +399355,97 @@ "classnotes": "", "final_exam": "Saturday, May 6, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84332\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84332/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985439777374268, + 0.9989380240440369, + 0.9982312321662903, + 0.9987466335296631 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985969662666321, + 0.9946000576019287, + 0.998908281326294 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988738894462585, + 0.9987061023712158, + 0.9988082647323608 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 8, + "final_proportion": 0.8, + "final_counts": { + "POSITIVE": 8, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + } + } }, { "season_code": "202301", @@ -182554,10 +399484,38 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84334\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84334/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -182596,7 +399554,7 @@ "11:35", "12:50", "PH 312 - Phelps Hall 312", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ], "Wednesday": [ @@ -182604,7 +399562,7 @@ "11:35", "12:50", "PH 312 - Phelps Hall 312", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -182620,10 +399578,105 @@ "classnotes": "", "final_exam": "Saturday, May 6, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84336\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84336/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988656044006348, + 0.9987832903862, + 0.9987978935241699, + 0.9989200830459595 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988540410995483, + 0.9989290833473206, + 0.9922224879264832, + 0.9976073503494263 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989340901374817, + 0.9985816478729248, + 0.9989292025566101, + 0.9989141225814819, + 0.9989105463027954, + 0.9988665580749512 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 0.9285714285714286, + "final_counts": { + "POSITIVE": 13, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9285714285714286, + "NEGATIVE": 0.07142857142857142 + } + } }, { "season_code": "202301", @@ -182661,7 +399714,7 @@ "16:00", "17:15", "PH 407 - Phelps Hall 407", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ], "Wednesday": [ @@ -182669,7 +399722,7 @@ "16:00", "17:15", "PH 407 - Phelps Hall 407", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -182685,10 +399738,109 @@ "classnotes": "", "final_exam": "Thursday, May 4, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84338\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84338/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987061023712158, + 0.9948076605796814, + 0.9989142417907715, + 0.998367965221405, + 0.9986549615859985, + 0.9976639747619629 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9884218573570251, + 0.9989107847213745, + 0.9989344477653503, + 0.9989343285560608, + 0.998923122882843 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988372921943665, + 0.9988970756530762, + 0.9989246726036072, + 0.9982553124427795, + 0.9988942742347717, + 0.9988786578178406 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 17 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -182731,7 +399883,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -182770,7 +399950,7 @@ "11:35", "12:50", "PH 312 - Phelps Hall 312", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ], "Wednesday": [ @@ -182778,7 +399958,7 @@ "11:35", "12:50", "PH 312 - Phelps Hall 312", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -182790,10 +399970,105 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84336\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84336/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988656044006348, + 0.9987832903862, + 0.9987978935241699, + 0.9989200830459595 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988540410995483, + 0.9989290833473206, + 0.9922224879264832, + 0.9976073503494263 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989340901374817, + 0.9985816478729248, + 0.9989292025566101, + 0.9989141225814819, + 0.9989105463027954, + 0.9988665580749512 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 0.9285714285714286, + "final_counts": { + "POSITIVE": 13, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9285714285714286, + "NEGATIVE": 0.07142857142857142 + } + } }, { "season_code": "202301", @@ -182831,7 +400106,7 @@ "16:00", "17:15", "PH 407 - Phelps Hall 407", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ], "Wednesday": [ @@ -182839,7 +400114,7 @@ "16:00", "17:15", "PH 407 - Phelps Hall 407", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -182851,10 +400126,109 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84338\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84338/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987061023712158, + 0.9948076605796814, + 0.9989142417907715, + 0.998367965221405, + 0.9986549615859985, + 0.9976639747619629 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9884218573570251, + 0.9989107847213745, + 0.9989344477653503, + 0.9989343285560608, + 0.998923122882843 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988372921943665, + 0.9988970756530762, + 0.9989246726036072, + 0.9982553124427795, + 0.9988942742347717, + 0.9988786578178406 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 17 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -182891,15 +400265,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84334\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84334/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "Living Civil Rights Law (21272). V. Schultz. 3 to 5 units. This unique hands-on course will give students an opportunity to interview and document the pathbreaking work of an extraordinary group of lawyers who breathed life into civil rights law\u2014and to study the implications of their work for contemporary efforts to secure equality through law. The interviews will be professionally filmed, and ultimately, will become part of a documentary film and\/or multi-media project. The project will tell the story of how a small group of young lawyers at the DOJ Civil Rights Division mobilized and made law to diversify the American workforce by race, sex, and national origin in the 1960s and 1970s. To tell that story, the course will use innovative methodologies, including filmmaking, oral history interviews, case litigation analyses, archival research, and FOIA\/NARA requests as necessary. Students will learn from a variety of different sources.\n\nThe first iteration of this course was offered in spring 2022. Yale law students conducted 16 professionally filmed, extensive oral histories of these lawyers, working on film sets with the professor, cinematographers, makeup artists, and other professionals. There was a steep learning curve for all. The spring 2023 course will receive substantial assistance from a documentary filmmaker Fellow, Taylor Nagel, who will help plan the interviews, teach interviewing techniques, provide real time support on film sets, manage the logistics of all interview shoots, and serve as Director and Producer on set, allowing the Professor more time to assist students with the substance of their interviews and research. We will also hire production assistants to help with labor on film sites. Some students may interview subjects other than the lawyers, such as victims of discrimination who testified or received relief, their families, or other community members who were affected by the litigation. Students may also interview each other and\/or participate in recorded roundtable discussions about their experiences working on the project. Enrollment limited. Permission of the instructor required.\n\nDescription. Under Title VII of the Civil Rights Act, the Department of Justice had exclusive federal authority to prosecute cases involving a pattern or practice of employment discrimination from 1964 until 1974, when DOJ began to share that authority with the EEOC. Led by a visionary Section Chief, the DOJ Civil Rights Division\u2019s Employment Litigation Section (ELS) worked tirelessly to desegregate the American workforce by race, national origin, and sex, taking on structural discrimination in most major private sector industries and later in state and local governments throughout the country. ELS lawyers helped create the concept of disparate impact in trial courts and defended it in the Supreme Court; they crafted pattern or practice litigation into a powerful tool for ferreting out covert discrimination; and they invented affirmative action remedies not simply to end institutional discrimination, but to address its lingering effects and to ensure ongoing compliance. Despite these achievements, there is much more to do to ensure equality at work. The course will offer students an opportunity to learn foundational Title VII law and research the strategies, impacts, and contemporary implications of ELS cases; to interview pioneering civil rights lawyers (and\/or paralegals and beneficiaries of the litigation) on professional film sets and creatively tell their stories; and to join an intergenerational community of lawyers working to advance equal rights to decent work for all. Individually and together, the class will analyze and portray the role of this small, dedicated team at the DOJ in creating the law and transforming the labor force through structural impact litigation. A longer course description is available on the course syllabus link.\n\nCredit options. Law students will receive 3-5 credits, with different options available for credit. The typical law student will receive 4 credits. 1 credit for Yale College and Graduate School students.\n\nAn accompanying but completely separate 2-credit writing seminar (\"Writing Seminar for Living Civil Rights Law\/Title VII\") will provide students an opportunity to write related research papers (for substantial credit or for eventual SAW credit).\n\nMost law students will (1) conduct at least one interview with a lawyer (or other approved subject), (2) research relevant caselaw, and (3) do a visual presentation to share with the class, for 4 credits. Students with special circumstances who get permission from the instructor, may do the interview and class presentation, getting assistance with the legal research, for 3 credits; or may substitute other kinds of approved research for the legal research, for the full 4 credits.\n\nCourse Bidding. Permission of the instructor is required, but all students who are seriously interested in Title VII law, civil rights law, employment law, legal history, agency enforcement, or other relevant issues are encouraged to apply. The goal is for as many students as possible to learn about the need for and development of civil rights law, and to understand the crucial role played by the DOJ Civil Rights Division in the formative era. Students need not have interviewing or video\/film expertise; training will be provided. Travel expenses will be paid by YLS; some lawyers will come to New Haven for interviews.\n\nInterested students are encouraged to contact and talk to the Professor in advance. After a student has accepted an offer of a place in the seminar, a no-drop policy applies.\n\nNon-Law Students. Students from other graduate and professional schools and upper-level Yale College students with relevant backgrounds are welcome to apply to this course by sending a resume and statement of interest directly to Professor Schultz (vicki.schultz@yale.edu).\n\nClass Meeting Times: The first week of class, Living Civil Rights Law will meet on Thursday, January 19 from 6-8 p.m., Baker 128. The ongoing meeting days\/times for course will be finalized after course selection, based on the schedules of admitted students. We will find times that work for all.\n\nAfter that, the class will meet 3-4 hours a week for the first several weeks. The class may meet fewer hours for a whole after that to give students more time to conduct research and prepare for interviews and work with the Professor, Fellows, librarians, etc. on an individual basis.", + "description": "Living Civil Rights Law (21272). V. Schultz. 3 to 5 units. This unique hands-on course will give students an opportunity to interview and document the pathbreaking work of an extraordinary group of lawyers who breathed life into civil rights law\u2014and to study the implications of their work for contemporary efforts to secure equality through law. The interviews will be professionally filmed, and ultimately, will become part of a documentary film and/or multi-media project. The project will tell the story of how a small group of young lawyers at the DOJ Civil Rights Division mobilized and made law to diversify the American workforce by race, sex, and national origin in the 1960s and 1970s. To tell that story, the course will use innovative methodologies, including filmmaking, oral history interviews, case litigation analyses, archival research, and FOIA/NARA requests as necessary. Students will learn from a variety of different sources.\n\nThe first iteration of this course was offered in spring 2022. Yale law students conducted 16 professionally filmed, extensive oral histories of these lawyers, working on film sets with the professor, cinematographers, makeup artists, and other professionals. There was a steep learning curve for all. The spring 2023 course will receive substantial assistance from a documentary filmmaker Fellow, Taylor Nagel, who will help plan the interviews, teach interviewing techniques, provide real time support on film sets, manage the logistics of all interview shoots, and serve as Director and Producer on set, allowing the Professor more time to assist students with the substance of their interviews and research. We will also hire production assistants to help with labor on film sites. Some students may interview subjects other than the lawyers, such as victims of discrimination who testified or received relief, their families, or other community members who were affected by the litigation. Students may also interview each other and/or participate in recorded roundtable discussions about their experiences working on the project. Enrollment limited. Permission of the instructor required.\n\nDescription. Under Title VII of the Civil Rights Act, the Department of Justice had exclusive federal authority to prosecute cases involving a pattern or practice of employment discrimination from 1964 until 1974, when DOJ began to share that authority with the EEOC. Led by a visionary Section Chief, the DOJ Civil Rights Division\u2019s Employment Litigation Section (ELS) worked tirelessly to desegregate the American workforce by race, national origin, and sex, taking on structural discrimination in most major private sector industries and later in state and local governments throughout the country. ELS lawyers helped create the concept of disparate impact in trial courts and defended it in the Supreme Court; they crafted pattern or practice litigation into a powerful tool for ferreting out covert discrimination; and they invented affirmative action remedies not simply to end institutional discrimination, but to address its lingering effects and to ensure ongoing compliance. Despite these achievements, there is much more to do to ensure equality at work. The course will offer students an opportunity to learn foundational Title VII law and research the strategies, impacts, and contemporary implications of ELS cases; to interview pioneering civil rights lawyers (and/or paralegals and beneficiaries of the litigation) on professional film sets and creatively tell their stories; and to join an intergenerational community of lawyers working to advance equal rights to decent work for all. Individually and together, the class will analyze and portray the role of this small, dedicated team at the DOJ in creating the law and transforming the labor force through structural impact litigation. A longer course description is available on the course syllabus link.\n\nCredit options. Law students will receive 3-5 credits, with different options available for credit. The typical law student will receive 4 credits. 1 credit for Yale College and Graduate School students.\n\nAn accompanying but completely separate 2-credit writing seminar (\"Writing Seminar for Living Civil Rights Law/Title VII\") will provide students an opportunity to write related research papers (for substantial credit or for eventual SAW credit).\n\nMost law students will (1) conduct at least one interview with a lawyer (or other approved subject), (2) research relevant caselaw, and (3) do a visual presentation to share with the class, for 4 credits. Students with special circumstances who get permission from the instructor, may do the interview and class presentation, getting assistance with the legal research, for 3 credits; or may substitute other kinds of approved research for the legal research, for the full 4 credits.\n\nCourse Bidding. Permission of the instructor is required, but all students who are seriously interested in Title VII law, civil rights law, employment law, legal history, agency enforcement, or other relevant issues are encouraged to apply. The goal is for as many students as possible to learn about the need for and development of civil rights law, and to understand the crucial role played by the DOJ Civil Rights Division in the formative era. Students need not have interviewing or video/film expertise; training will be provided. Travel expenses will be paid by YLS; some lawyers will come to New Haven for interviews.\n\nInterested students are encouraged to contact and talk to the Professor in advance. After a student has accepted an offer of a place in the seminar, a no-drop policy applies.\n\nNon-Law Students. Students from other graduate and professional schools and upper-level Yale College students with relevant backgrounds are welcome to apply to this course by sending a resume and statement of interest directly to Professor Schultz (vicki.schultz@yale.edu).\n\nClass Meeting Times: The first week of class, Living Civil Rights Law will meet on Thursday, January 19 from 6-8 p.m., Baker 128. The ongoing meeting days/times for course will be finalized after course selection, based on the schedules of admitted students. We will find times that work for all.\n\nAfter that, the class will meet 3-4 hours a week for the first several weeks. The class may meet fewer hours for a whole after that to give students more time to conduct research and prepare for interviews and work with the Professor, Fellows, librarians, etc. on an individual basis.", "short_title": "Living Civil Rights Law", "title": "Living Civil Rights Law", "school": "LW", @@ -182931,7 +400333,7 @@ "18:10", "20:00", "BAKER 122 - Baker Hall 122", - "https:\/\/map.yale.edu\/?id=1910#!m\/563680" + "https://map.yale.edu/?id=1910#!m/563680" ] ], "Wednesday": [ @@ -182939,7 +400341,7 @@ "18:10", "20:00", "BAKER 122 - Baker Hall 122", - "https:\/\/map.yale.edu\/?id=1910#!m\/563680" + "https://map.yale.edu/?id=1910#!m/563680" ] ] }, @@ -182951,10 +400353,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86332\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86332/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -182991,7 +400421,7 @@ "13:00", "14:15", "DOW 100 - Dow Hall 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ], "Wednesday": [ @@ -182999,7 +400429,7 @@ "13:00", "14:15", "DOW 100 - Dow Hall 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ] }, @@ -183015,10 +400445,109 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84358\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84358/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988144636154175, + 0.9988529682159424, + 0.9901329278945923, + 0.9988536834716797, + 0.9989373087882996, + 0.9987640380859375 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9992585778236389, + 0.9988816380500793, + 0.9922486543655396, + 0.9989078044891357 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.25, + "POSITIVE": 0.75 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.99951171875, + 0.9989280104637146, + 0.9988549947738647, + 0.9989333748817444, + 0.9989025592803955, + 0.9989259839057922 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 5 + }, + "sentiment_distribution": { + "NEGATIVE": 0.16666666666666666, + "POSITIVE": 0.8333333333333334 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 0.875, + "final_counts": { + "POSITIVE": 14, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + } + } }, { "season_code": "202301", @@ -183059,7 +400588,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -183097,7 +400654,7 @@ "9:00", "10:15", "LC 103 - Linsly-Chittenden Hall 103", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -183105,7 +400662,7 @@ "9:00", "10:15", "LC 103 - Linsly-Chittenden Hall 103", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -183119,13 +400676,148 @@ ], "regnotes": "", "rp_attr": "", - "classnotes": "This course may satisfy the Medieval, Renaissance, 18th\/19th century, or 20th\/21st century literature requirement for English majors with permission from the instructor and the DUS. The English Distribution Request Form is available at https:\/\/english.yale.edu\/undergraduate\/deadlines-and-forms.", + "classnotes": "This course may satisfy the Medieval, Renaissance, 18th/19th century, or 20th/21st century literature requirement for English majors with permission from the instructor and the DUS. The English Distribution Request Form is available at https://english.yale.edu/undergraduate/deadlines-and-forms.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83964\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83964/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987408518791199, + 0.9986926913261414, + 0.998714804649353, + 0.9986662864685059, + 0.998805046081543, + 0.9988605976104736, + 0.9988215565681458, + 0.9985091090202332, + 0.9989132881164551, + 0.9987004995346069, + 0.9987467527389526, + 0.9985331296920776 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989131689071655, + 0.9988866448402405, + 0.9989293217658997, + 0.9982072114944458, + 0.998771607875824, + 0.9989117383956909, + 0.9989299178123474, + 0.9988085031509399, + 0.9988732933998108 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9938562512397766, + 0.9989377856254578, + 0.9989100694656372, + 0.9974454641342163, + 0.9987572431564331, + 0.99782395362854, + 0.9988497495651245, + 0.9988790154457092, + 0.9989336133003235, + 0.9989007711410522, + 0.9988399147987366, + 0.9987071752548218, + 0.9984005093574524 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 11 + }, + "sentiment_distribution": { + "NEGATIVE": 0.15384615384615385, + "POSITIVE": 0.8461538461538461 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8461538461538461 + ] + }, + "final_label": "POSITIVE", + "final_count": 32, + "final_proportion": 0.9411764705882353, + "final_counts": { + "POSITIVE": 32, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9411764705882353, + "NEGATIVE": 0.058823529411764705 + } + } }, { "season_code": "202301", @@ -183163,7 +400855,7 @@ "14:30", "15:45", "HLH17 115 - 17 Hillhouse Avenue 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Thursday": [ @@ -183171,7 +400863,7 @@ "14:30", "15:45", "HLH17 115 - 17 Hillhouse Avenue 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -183189,10 +400881,151 @@ "classnotes": "", "final_exam": "Wednesday, May 10, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84367\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84367/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986960291862488, + 0.9987409710884094, + 0.9986269474029541, + 0.9916804432868958, + 0.9989070892333984, + 0.993448793888092, + 0.9987863898277283, + 0.9987548589706421, + 0.9988138675689697 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9926289319992065, + 0.9980218410491943, + 0.9989386200904846, + 0.998823344707489, + 0.9895366430282593, + 0.9991613626480103, + 0.9987972974777222, + 0.9989168643951416, + 0.9961555600166321, + 0.9984502792358398, + 0.9989216327667236, + 0.9989168643951416, + 0.9987503290176392, + 0.9943976402282715, + 0.9988142251968384 + ], + "sentiment_counts": { + "NEGATIVE": 4, + "POSITIVE": 11 + }, + "sentiment_distribution": { + "NEGATIVE": 0.26666666666666666, + "POSITIVE": 0.7333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7333333333333333 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9953696131706238, + 0.9986018538475037, + 0.9989303946495056, + 0.9989064931869507, + 0.9995090961456299, + 0.9985154271125793, + 0.9982572197914124, + 0.9985247254371643, + 0.9915115237236023, + 0.9989093542098999, + 0.9988600015640259, + 0.9986599683761597, + 0.9988202452659607 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.6923076923076923, + "NEGATIVE": 0.3076923076923077 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6923076923076923 + ] + }, + "final_label": "POSITIVE", + "final_count": 29, + "final_proportion": 0.7837837837837838, + "final_counts": { + "POSITIVE": 29, + "NEGATIVE": 8 + }, + "final_distribution": { + "POSITIVE": 0.7837837837837838, + "NEGATIVE": 0.21621621621621623 + } + } }, { "season_code": "202301", @@ -183231,7 +401064,7 @@ "14:30", "15:45", "LC 101 - Linsly-Chittenden Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -183239,7 +401072,7 @@ "14:30", "15:45", "LC 101 - Linsly-Chittenden Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -183256,10 +401089,245 @@ "classnotes": "", "final_exam": "Thursday, May 4, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84372\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84372/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986911416053772, + 0.998896598815918, + 0.9982989430427551, + 0.9987226128578186, + 0.9988375306129456, + 0.995455265045166, + 0.9988614320755005, + 0.9994912147521973, + 0.9961259961128235, + 0.9988676309585571, + 0.9987837672233582, + 0.9988332390785217, + 0.9983593821525574, + 0.9994045495986938, + 0.9988478422164917, + 0.9987137317657471, + 0.9987070560455322, + 0.9987636804580688, + 0.998747706413269, + 0.9988011121749878, + 0.9987021684646606, + 0.9933885335922241, + 0.9987275004386902, + 0.9989049434661865, + 0.9987988471984863, + 0.9987414479255676, + 0.9988614320755005 + ], + "sentiment_counts": { + "POSITIVE": 25, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.9259259259259259, + "NEGATIVE": 0.07407407407407407 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9259259259259259 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988273978233337, + 0.9974735379219055, + 0.9980286955833435, + 0.9980618357658386, + 0.9995071887969971, + 0.9988456964492798, + 0.9988276362419128, + 0.9994982481002808, + 0.9867162704467773, + 0.9978837370872498, + 0.9970316886901855, + 0.9988886713981628, + 0.9989117383956909, + 0.9993865489959717, + 0.9988849759101868, + 0.9987784028053284, + 0.9988827109336853, + 0.9989151954650879, + 0.9965760111808777, + 0.9982239603996277, + 0.9988372921943665, + 0.9987035989761353, + 0.9982008934020996, + 0.9988446235656738, + 0.998778760433197, + 0.9988020658493042, + 0.9986108541488647, + 0.9994955062866211, + 0.9930644631385803 + ], + "sentiment_counts": { + "POSITIVE": 19, + "NEGATIVE": 10 + }, + "sentiment_distribution": { + "POSITIVE": 0.6551724137931034, + "NEGATIVE": 0.3448275862068966 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6551724137931034 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9914430975914001, + 0.9989230036735535, + 0.9981480836868286, + 0.999470055103302, + 0.9995036125183105, + 0.99891197681427, + 0.9969677329063416, + 0.9985792636871338, + 0.9986806511878967, + 0.9965193271636963, + 0.99720299243927, + 0.9994733929634094, + 0.9986843466758728, + 0.9989092350006104, + 0.9988266825675964, + 0.9985396862030029, + 0.9988777041435242, + 0.9987925291061401, + 0.9989266991615295, + 0.9962736368179321, + 0.9995083808898926, + 0.9989027976989746, + 0.9964545965194702, + 0.9986093044281006, + 0.9980790615081787, + 0.9950947761535645, + 0.9988920092582703, + 0.996468186378479 + ], + "sentiment_counts": { + "NEGATIVE": 9, + "POSITIVE": 19 + }, + "sentiment_distribution": { + "NEGATIVE": 0.32142857142857145, + "POSITIVE": 0.6785714285714286 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6785714285714286 + ] + }, + "final_label": "POSITIVE", + "final_count": 63, + "final_proportion": 0.75, + "final_counts": { + "POSITIVE": 63, + "NEGATIVE": 21 + }, + "final_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + } + } }, { "season_code": "202301", @@ -183299,7 +401367,7 @@ "11:35", "12:25", "WTS B36 - Watson Center 60 Sachem Street B36", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Tuesday": [ @@ -183307,7 +401375,7 @@ "11:35", "12:25", "WTS B36 - Watson Center 60 Sachem Street B36", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -183315,7 +401383,7 @@ "11:35", "12:25", "WTS B36 - Watson Center 60 Sachem Street B36", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -183323,7 +401391,7 @@ "11:35", "12:25", "WTS B36 - Watson Center 60 Sachem Street B36", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Friday": [ @@ -183331,7 +401399,7 @@ "11:35", "12:25", "WTS B36 - Watson Center 60 Sachem Street B36", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -183345,10 +401413,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85463\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85463/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -183408,10 +401504,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87493\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87493/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -183452,7 +401576,7 @@ "16:00", "17:15", "LUCE 302 - Luce Hall 302", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ], "Wednesday": [ @@ -183460,7 +401584,7 @@ "16:00", "17:15", "LUCE 302 - Luce Hall 302", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ] }, @@ -183474,10 +401598,83 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85462\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85462/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.998855471611023 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988786578178406 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986762404441833, + 0.9988349080085754 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 4, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 4 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -183514,7 +401711,7 @@ "11:35", "12:50", "WLH 113 - William L. Harkness Hall 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -183522,7 +401719,7 @@ "11:35", "12:50", "WLH 113 - William L. Harkness Hall 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -183539,10 +401736,133 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84375\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84375/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998719334602356, + 0.998835027217865, + 0.9988767504692078, + 0.9984971284866333, + 0.9984645843505859, + 0.9988033771514893, + 0.9985761642456055, + 0.9988189339637756, + 0.9988922476768494, + 0.998072624206543 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989344477653503, + 0.9989257454872131, + 0.9988365769386292, + 0.9907705783843994, + 0.9989030361175537, + 0.998924195766449, + 0.998857855796814, + 0.9989306330680847 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989331364631653, + 0.9989140033721924, + 0.9989203214645386, + 0.998920202255249, + 0.999495267868042, + 0.9957666397094727, + 0.9989240765571594, + 0.9988473653793335, + 0.9989383816719055, + 0.9989271759986877 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "final_label": "POSITIVE", + "final_count": 26, + "final_proportion": 0.9285714285714286, + "final_counts": { + "POSITIVE": 26, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9285714285714286, + "NEGATIVE": 0.07142857142857142 + } + } }, { "season_code": "202301", @@ -183581,7 +401901,7 @@ "9:00", "10:15", "WLH 207 - William L. Harkness Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -183589,7 +401909,7 @@ "9:00", "10:15", "WLH 207 - William L. Harkness Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -183610,10 +401930,153 @@ "classnotes": "", "final_exam": "Saturday, May 6, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84380\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84380/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987179040908813, + 0.9988250136375427, + 0.9975519776344299, + 0.9988943934440613, + 0.9981707334518433, + 0.9986610412597656, + 0.9987804293632507, + 0.9954476952552795, + 0.9966926574707031, + 0.9978943467140198, + 0.9982632994651794, + 0.9986703395843506, + 0.9957969188690186 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9929982423782349, + 0.995093584060669, + 0.9987118244171143, + 0.9982830286026001, + 0.9760679602622986, + 0.9980541467666626, + 0.9986622333526611, + 0.9989211559295654, + 0.9987700581550598, + 0.9989243149757385 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986745119094849, + 0.984992504119873, + 0.9988403916358948, + 0.9987699389457703, + 0.9949396848678589, + 0.9918935298919678, + 0.9989073276519775, + 0.9978119134902954, + 0.9988036155700684, + 0.9988434314727783, + 0.9988904595375061, + 0.9988934397697449, + 0.9989234805107117, + 0.9988512992858887, + 0.9988071918487549 + ], + "sentiment_counts": { + "POSITIVE": 14, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9333333333333333, + "NEGATIVE": 0.06666666666666667 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9333333333333333 + ] + }, + "final_label": "POSITIVE", + "final_count": 37, + "final_proportion": 0.9736842105263158, + "final_counts": { + "POSITIVE": 37, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9736842105263158, + "NEGATIVE": 0.02631578947368421 + } + } }, { "season_code": "202301", @@ -183652,7 +402115,7 @@ "14:30", "15:45", "DOW B-21 - Dow Hall B-21", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ], "Wednesday": [ @@ -183660,7 +402123,7 @@ "14:30", "15:45", "DOW B-21 - Dow Hall B-21", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ] }, @@ -183670,9 +402133,9 @@ "So" ], "flags": [ - "YC LING: Adv Courses\/Seminars", + "YC LING: Adv Courses/Seminars", "YC LING: Depth", - "YC LING Depth: Lang&Mind\/Brain", + "YC LING Depth: Lang&Mind/Brain", "YC LING: Elective" ], "regnotes": "", @@ -183680,10 +402143,123 @@ "classnotes": "", "final_exam": "Thursday, May 4, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84384\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84384/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9978635907173157, + 0.9988811612129211, + 0.9988057613372803, + 0.9967691898345947, + 0.9988452196121216 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988372921943665, + 0.9994920492172241, + 0.9988934397697449, + 0.9952835440635681, + 0.998838484287262, + 0.9995074272155762, + 0.9994756579399109, + 0.9989125728607178, + 0.9988186955451965, + 0.9986427426338196 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.6, + "NEGATIVE": 0.4 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989223480224609, + 0.9932314157485962, + 0.9941350817680359, + 0.9988231062889099, + 0.9995150566101074, + 0.9994980096817017, + 0.9988924860954285, + 0.9986409544944763 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.625, + "NEGATIVE": 0.375 + }, + "sentiment_overall": [ + "POSITIVE", + 0.625 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 0.6521739130434783, + "final_counts": { + "POSITIVE": 15, + "NEGATIVE": 8 + }, + "final_distribution": { + "POSITIVE": 0.6521739130434783, + "NEGATIVE": 0.34782608695652173 + } + } }, { "season_code": "202301", @@ -183715,7 +402291,7 @@ "17:00", "17:50", "WLH 211 - William L. Harkness Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -183733,7 +402309,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -183771,7 +402375,7 @@ "13:00", "14:15", "WLH 114 - William L. Harkness Hall 114", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -183779,7 +402383,7 @@ "13:00", "14:15", "WLH 114 - William L. Harkness Hall 114", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -183797,10 +402401,125 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84387\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84387/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986158609390259, + 0.9977243542671204, + 0.995267391204834, + 0.9988516569137573, + 0.9989036321640015, + 0.9988279938697815, + 0.99403977394104 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9853360056877136, + 0.9986842274665833, + 0.9986985921859741, + 0.9987560510635376, + 0.9981269240379333, + 0.9989352822303772, + 0.9988271594047546, + 0.9988698363304138, + 0.9987937211990356 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989174604415894, + 0.9988330006599426, + 0.9988957643508911, + 0.997117280960083, + 0.998910665512085, + 0.9987886548042297, + 0.9989000558853149, + 0.9989137649536133, + 0.9988172650337219 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 25, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 25 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -183840,7 +402559,7 @@ "13:00", "14:15", "HQ 113 - Humanities Quadrangle 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -183848,7 +402567,7 @@ "13:00", "14:15", "HQ 113 - Humanities Quadrangle 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -183857,7 +402576,7 @@ "So" ], "flags": [ - "YC LING: Adv Courses\/Seminars", + "YC LING: Adv Courses/Seminars", "YC LING: Depth", "YC LING Depth: Phonetics", "YC LING: Elective" @@ -183867,10 +402586,99 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84391\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84391/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981117248535156, + 0.9987229704856873, + 0.998646080493927 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984824061393738, + 0.9989122152328491, + 0.9987420439720154, + 0.9989012479782104 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983124732971191, + 0.9987533092498779, + 0.9988922476768494, + 0.9988707900047302, + 0.9989148378372192 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 12 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -183908,7 +402716,7 @@ "11:35", "12:50", "DOW 112 - Dow Hall 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ], "Thursday": [ @@ -183916,7 +402724,7 @@ "11:35", "12:50", "DOW 112 - Dow Hall 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ] }, @@ -183925,7 +402733,7 @@ "So" ], "flags": [ - "YC LING: Adv Courses\/Seminars", + "YC LING: Adv Courses/Seminars", "YC LING: Depth", "YC LING: Elective" ], @@ -183934,10 +402742,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84395\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84395/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -183975,7 +402811,7 @@ "11:35", "12:50", "WLH 204 - William L. Harkness Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -183983,7 +402819,7 @@ "11:35", "12:50", "WLH 204 - William L. Harkness Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -183994,7 +402830,7 @@ "So" ], "flags": [ - "YC LING: Adv Courses\/Seminars", + "YC LING: Adv Courses/Seminars", "YC LING: Depth", "YC LING Depth: Syntax", "YC LING: Elective" @@ -184004,10 +402840,95 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84399\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84399/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.998056948184967, + 0.9985609650611877, + 0.9890260100364685 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9965284466743469, + 0.9988816380500793, + 0.9987767338752747 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9978686571121216, + 0.9987413287162781, + 0.998608410358429 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 8, + "final_proportion": 0.8888888888888888, + "final_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + } + } }, { "season_code": "202301", @@ -184045,7 +402966,7 @@ "11:35", "12:50", "ML 104 - Mason Laboratory 104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ], "Wednesday": [ @@ -184053,7 +402974,7 @@ "11:35", "12:50", "ML 104 - Mason Laboratory 104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ] }, @@ -184062,9 +402983,9 @@ "So" ], "flags": [ - "YC LING: Adv Courses\/Seminars", + "YC LING: Adv Courses/Seminars", "YC LING: Depth", - "YC LING Depth: Semntcs\/Pragmat", + "YC LING Depth: Semntcs/Pragmat", "YC LING: Elective" ], "regnotes": "", @@ -184072,10 +402993,85 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84402\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84402/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987881779670715, + 0.9985271692276001 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988024234771729 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985647797584534, + 0.9989217519760132 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 5, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 5 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -184113,7 +403109,7 @@ "9:25", "11:15", "WALL81 101 - 81 Wall Street 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -184122,7 +403118,7 @@ "So" ], "flags": [ - "YC LING: Adv Courses\/Seminars", + "YC LING: Adv Courses/Seminars", "YC LING: Depth", "YC LING Depth: Phonology", "YC LING Depth: Phonetics", @@ -184133,15 +403129,86 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84406\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84406/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983674883842468 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989123344421387 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988434314727783 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 3, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 3 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", "requirements": "Prerequisites: LING 110, CGSC 110, LING 217, or LING 263.", - "description": "The meaning of a word or sentence is something in the human mind that has specific\u00a0properties: it can be expressed (written\/signed\/spoken forms); it can be combined with other meanings; its expression is not language dependent; it connects with the world; it serves as a vehicle for inference; and it is hidden from awareness. The course explores these properties in some detail and, in the process, provides the students with technical\u00a0vocabulary and analytical tools to further investigate them. The course is thus intended for those students\u00a0interested in undertaking a research project on the structure of meaning.\u00a0the nature of lexico-conceptual structure, that is, the structure of concepts which we refer to as \"word\u00a0meanings\", and how they may be combined through linguistic and non-linguistic means. Its ultimate objective is to bridge models of conceptual structure and models of linguistic semantic composition, \u00a0identify their respective strengths and weaknesses and explore some of the fundamental questions that any theory of linguistic meaning composition must answer. Evidence discussed will emerge from naturalistic, introspectional, and experimental methodologies.", + "description": "The meaning of a word or sentence is something in the human mind that has specific\u00a0properties: it can be expressed (written/signed/spoken forms); it can be combined with other meanings; its expression is not language dependent; it connects with the world; it serves as a vehicle for inference; and it is hidden from awareness. The course explores these properties in some detail and, in the process, provides the students with technical\u00a0vocabulary and analytical tools to further investigate them. The course is thus intended for those students\u00a0interested in undertaking a research project on the structure of meaning.\u00a0the nature of lexico-conceptual structure, that is, the structure of concepts which we refer to as \"word\u00a0meanings\", and how they may be combined through linguistic and non-linguistic means. Its ultimate objective is to bridge models of conceptual structure and models of linguistic semantic composition, \u00a0identify their respective strengths and weaknesses and explore some of the fundamental questions that any theory of linguistic meaning composition must answer. Evidence discussed will emerge from naturalistic, introspectional, and experimental methodologies.", "short_title": "Linguistic Meaning and Concep...", "title": "Linguistic Meaning and Conceptual Structure", "school": "YC", @@ -184176,7 +403243,7 @@ "14:30", "15:45", "WLH 002 - William L. Harkness Hall 002", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -184184,7 +403251,7 @@ "14:30", "15:45", "WLH 002 - William L. Harkness Hall 002", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -184193,9 +403260,9 @@ "So" ], "flags": [ - "YC LING: Adv Courses\/Seminars", + "YC LING: Adv Courses/Seminars", "YC LING: Depth", - "YC LING Depth: Lang&Mind\/Brain", + "YC LING Depth: Lang&Mind/Brain", "YC LING: Elective" ], "regnotes": "", @@ -184203,15 +403270,108 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84350\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84350/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981061220169067, + 0.9983164072036743, + 0.99845290184021, + 0.9988356232643127 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989043474197388, + 0.9994563460350037, + 0.9964460730552673, + 0.998184859752655, + 0.998925507068634 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.6, + "NEGATIVE": 0.4 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9995124340057373, + 0.997117280960083, + 0.9954760670661926, + 0.9988189339637756 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.25, + "POSITIVE": 0.75 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 0.7692307692307693, + "final_counts": { + "POSITIVE": 10, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.7692307692307693, + "NEGATIVE": 0.23076923076923078 + } + } }, { "season_code": "202301", "requirements": "Prerequisite: At least one course in semantics, pragmatics, or philosophy of language; or permission of instructor.", - "description": "This seminar explores theoretical and experimental approaches to conversational implicature, focusing on scalar implicature (whose 50th anniversary falls in 2022). We examine the role that pragmatic inference plays in the determination of what is said and of the delineation of at-issue and non-at-issue content within neo-Gricean pragmatics and competing theories. Readings, presentations, and discussion draw on the available evidence from linguistic diagnostics, corpora, and especially a range of experimental studies on the acquisition, processing, and diversity of scalar implicature, negative strengthening, and exhaustivity in focus constructions. In particular, we review current work on the effects of discourse context, politeness and \"face\" considerations, and lexical semantics in constraining when and how pragmatic inferences are\u2014and aren\u2019t\u2014drawn. Another focus is on the explosion of recent work re-examining the role played by scalar implicature and other factors in the universal resistance to the lexicalization of concepts corresponding to\u00a0*nall\u00a0(= \u2018not all\u2019),\u00a0*nand\u00a0(= \u2018or not\u2019), and *noth\u00a0(= \u2018not both\u2019) vis-\u00e0-vis\u00a0none, nor, neither. We also consider the application of the what is said\/what is implicated distinction to the characterization of lying vs. misleading in and out of the courtroom. Time and interest permitting, we also touch on recent developments in rational speech act theory and intention- vs. commitment-based approaches to assertion and implicature. Our goal in this seminar is to explore the landscape of scalar implicature, and conversational implicature more generally, and to develop the empirical tools for investigating this landscape.", + "description": "This seminar explores theoretical and experimental approaches to conversational implicature, focusing on scalar implicature (whose 50th anniversary falls in 2022). We examine the role that pragmatic inference plays in the determination of what is said and of the delineation of at-issue and non-at-issue content within neo-Gricean pragmatics and competing theories. Readings, presentations, and discussion draw on the available evidence from linguistic diagnostics, corpora, and especially a range of experimental studies on the acquisition, processing, and diversity of scalar implicature, negative strengthening, and exhaustivity in focus constructions. In particular, we review current work on the effects of discourse context, politeness and \"face\" considerations, and lexical semantics in constraining when and how pragmatic inferences are\u2014and aren\u2019t\u2014drawn. Another focus is on the explosion of recent work re-examining the role played by scalar implicature and other factors in the universal resistance to the lexicalization of concepts corresponding to\u00a0*nall\u00a0(= \u2018not all\u2019),\u00a0*nand\u00a0(= \u2018or not\u2019), and *noth\u00a0(= \u2018not both\u2019) vis-\u00e0-vis\u00a0none, nor, neither. We also consider the application of the what is said/what is implicated distinction to the characterization of lying vs. misleading in and out of the courtroom. Time and interest permitting, we also touch on recent developments in rational speech act theory and intention- vs. commitment-based approaches to assertion and implicature. Our goal in this seminar is to explore the landscape of scalar implicature, and conversational implicature more generally, and to develop the empirical tools for investigating this landscape.", "short_title": "Implicature and Pragmatic Theory", "title": "Implicature and Pragmatic Theory", "school": "YC", @@ -184246,7 +403406,7 @@ "9:25", "11:15", "WALL81 101 - 81 Wall Street 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -184255,9 +403415,9 @@ "So" ], "flags": [ - "YC LING: Adv Courses\/Seminars", + "YC LING: Adv Courses/Seminars", "YC LING: Depth", - "YC LING Depth: Semntcs\/Pragmat", + "YC LING Depth: Semntcs/Pragmat", "YC LING: Elective", "YC Phil: Metaphysics & Epistemol" ], @@ -184266,10 +403426,111 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84354\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84354/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985992312431335, + 0.9978214502334595, + 0.9987466335296631 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9968620538711548, + 0.9971398115158081, + 0.9989185333251953, + 0.9988366961479187, + 0.9989305138587952, + 0.9989019632339478 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9814485907554626, + 0.9966859221458435, + 0.9988301396369934, + 0.9915800094604492, + 0.9987873435020447, + 0.9986227750778198, + 0.9989092350006104, + 0.9989004135131836 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 7 + }, + "sentiment_distribution": { + "NEGATIVE": 0.125, + "POSITIVE": 0.875 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 0.9411764705882353, + "final_counts": { + "POSITIVE": 16, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9411764705882353, + "NEGATIVE": 0.058823529411764705 + } + } }, { "season_code": "202301", @@ -184308,7 +403569,7 @@ "13:30", "15:20", "DOW 112 - Dow Hall 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ] }, @@ -184317,10 +403578,10 @@ "So" ], "flags": [ - "YC LING: Adv Courses\/Seminars", + "YC LING: Adv Courses/Seminars", "YC LING: Depth", "YC LING Depth: Syntax", - "YC LING Depth: Semntcs\/Pragmat", + "YC LING Depth: Semntcs/Pragmat", "YC LING: Elective" ], "regnotes": "", @@ -184328,15 +403589,43 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84357\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84357/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "Prerequisite: LING 263 or permission of instructor.", - "description": "The ability to go beyond the here and now is a defining property of natural language. Modality in English and several other well-studied languages varies along two dimensions: flavor (may\/must\u00a0can be interpreted epistemically or deontically, for example) and force (may\u00a0expresses possibility\/permission while\u00a0must\u00a0expresses necessity\/command). Recent studies show that there is cross-linguistic variation in the expression of modal force. In languages such as St\u2019\u00e1t\u2019imcets, Nez Perce, Ecuadorian Siona and Kinande a single lexical item can express both possibility\/permission and necessity\/command. Students read primary semantic literature and theoretically-informed descriptions of various modal systems. Analyses of variable- vs. fixed-force modal systems, methods of marking and interpreting weak necessity, and attempts to develop a unified typology of modal force provide a lens through which to understand an essential aspect of human communication systems.", + "description": "The ability to go beyond the here and now is a defining property of natural language. Modality in English and several other well-studied languages varies along two dimensions: flavor (may/must\u00a0can be interpreted epistemically or deontically, for example) and force (may\u00a0expresses possibility/permission while\u00a0must\u00a0expresses necessity/command). Recent studies show that there is cross-linguistic variation in the expression of modal force. In languages such as St\u2019\u00e1t\u2019imcets, Nez Perce, Ecuadorian Siona and Kinande a single lexical item can express both possibility/permission and necessity/command. Students read primary semantic literature and theoretically-informed descriptions of various modal systems. Analyses of variable- vs. fixed-force modal systems, methods of marking and interpreting weak necessity, and attempts to develop a unified typology of modal force provide a lens through which to understand an essential aspect of human communication systems.", "short_title": "Variation in Variable-Force M...", "title": "Variation in Variable-Force Modality", "school": "YC", @@ -184369,7 +403658,7 @@ "15:30", "17:20", "DOW 321 - Dow Hall 321", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ] }, @@ -184378,9 +403667,9 @@ "So" ], "flags": [ - "YC LING: Adv Courses\/Seminars", + "YC LING: Adv Courses/Seminars", "YC LING: Depth", - "YC LING Depth: Semntcs\/Pragmat", + "YC LING Depth: Semntcs/Pragmat", "YC LING: Elective" ], "regnotes": "", @@ -184388,10 +403677,38 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85935\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/85935/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -184431,10 +403748,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85432\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85432/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -184471,24 +403816,105 @@ "16:30", "18:20", "WLH 115 - William L. Harkness Hall 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, "skills": [], "areas": [], "flags": [ - "YC LING: Res Courses\/Sr Essay" + "YC LING: Res Courses/Sr Essay" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84365\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84365/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994655251502991, + 0.9988918900489807 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 1 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988775849342346, + 0.9984266757965088 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984784722328186, + 0.998917818069458, + 0.998877227306366 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 0.8571428571428571, + "final_counts": { + "NEGATIVE": 1, + "POSITIVE": 6 + }, + "final_distribution": { + "NEGATIVE": 0.14285714285714285, + "POSITIVE": 0.8571428571428571 + } + } }, { "season_code": "202301", @@ -184526,7 +403952,7 @@ "14:30", "15:45", "HLH17 115 - 17 Hillhouse Avenue 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Thursday": [ @@ -184534,7 +403960,7 @@ "14:30", "15:45", "HLH17 115 - 17 Hillhouse Avenue 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -184546,10 +403972,151 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84367\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84367/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986960291862488, + 0.9987409710884094, + 0.9986269474029541, + 0.9916804432868958, + 0.9989070892333984, + 0.993448793888092, + 0.9987863898277283, + 0.9987548589706421, + 0.9988138675689697 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9926289319992065, + 0.9980218410491943, + 0.9989386200904846, + 0.998823344707489, + 0.9895366430282593, + 0.9991613626480103, + 0.9987972974777222, + 0.9989168643951416, + 0.9961555600166321, + 0.9984502792358398, + 0.9989216327667236, + 0.9989168643951416, + 0.9987503290176392, + 0.9943976402282715, + 0.9988142251968384 + ], + "sentiment_counts": { + "NEGATIVE": 4, + "POSITIVE": 11 + }, + "sentiment_distribution": { + "NEGATIVE": 0.26666666666666666, + "POSITIVE": 0.7333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7333333333333333 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9953696131706238, + 0.9986018538475037, + 0.9989303946495056, + 0.9989064931869507, + 0.9995090961456299, + 0.9985154271125793, + 0.9982572197914124, + 0.9985247254371643, + 0.9915115237236023, + 0.9989093542098999, + 0.9988600015640259, + 0.9986599683761597, + 0.9988202452659607 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.6923076923076923, + "NEGATIVE": 0.3076923076923077 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6923076923076923 + ] + }, + "final_label": "POSITIVE", + "final_count": 29, + "final_proportion": 0.7837837837837838, + "final_counts": { + "POSITIVE": 29, + "NEGATIVE": 8 + }, + "final_distribution": { + "POSITIVE": 0.7837837837837838, + "NEGATIVE": 0.21621621621621623 + } + } }, { "season_code": "202301", @@ -184586,7 +404153,7 @@ "13:30", "14:45", "DOW 112 - Dow Hall 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ] }, @@ -184598,15 +404165,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84369\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84369/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", - "requirements": "Prerequisite: SKRT 510\/LING 515.", - "description": "Continuation of SKRT 510\/LING 515. Focus on the basics of Sanskrit grammar; readings from classical Sanskrit texts written in the Indian Devanagari script.", + "requirements": "Prerequisite: SKRT 510/LING 515.", + "description": "Continuation of SKRT 510/LING 515. Focus on the basics of Sanskrit grammar; readings from classical Sanskrit texts written in the Indian Devanagari script.", "short_title": "Introductory Sanskrit II", "title": "Introductory Sanskrit II", "school": "GS", @@ -184641,7 +404236,7 @@ "11:35", "12:25", "WTS B36 - Watson Center 60 Sachem Street B36", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Tuesday": [ @@ -184649,7 +404244,7 @@ "11:35", "12:25", "WTS B36 - Watson Center 60 Sachem Street B36", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -184657,7 +404252,7 @@ "11:35", "12:25", "WTS B36 - Watson Center 60 Sachem Street B36", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -184665,7 +404260,7 @@ "11:35", "12:25", "WTS B36 - Watson Center 60 Sachem Street B36", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Friday": [ @@ -184673,7 +404268,7 @@ "11:35", "12:25", "WTS B36 - Watson Center 60 Sachem Street B36", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -184685,14 +404280,42 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85463\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85463/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", - "requirements": "For the purpose of distributional requirements, this is an L4 language course. College students who intend to take it in order to satisfy such distributional requirements should enroll under the SKRT 14x number; additionally, they must have previously taken SKRT 130\/530 (or equivalent).\u00a0For all other students, the prerequisite is one year of Classical Sanskrit (SKRT 120\/520 or equivalent). They may enroll under any number.", + "requirements": "For the purpose of distributional requirements, this is an L4 language course. College students who intend to take it in order to satisfy such distributional requirements should enroll under the SKRT 14x number; additionally, they must have previously taken SKRT 130/530 (or equivalent).\u00a0For all other students, the prerequisite is one year of Classical Sanskrit (SKRT 120/520 or equivalent). They may enroll under any number.", "description": "The purpose of this course is to introduce the specifics of Vedic Sanskrit, with some attention to its diachronic development and genre distinctions. Special attention is given to differences from Classical Sanskrit in terms of morphology and syntax. With respect to content, the course looks at the phenomenon of interpretation of Vedic hymns in the Br\u0101hma\u1e47as and their future career in Classical Sanskrit, as well as at elements of pre-systematic Indian Philosophy in the Vedas and the Upani\u1e63ads.\u00a0The course is divided into three modules, on the principle of \"from more to less familiar\" progression: (1) reading from the Upani\u1e63ads, which are closest to the Sanskrit described by P\u0101\u1e47ini; (2) reading stories from the Br\u0101hma\u1e47as; (3) reading hymns from the Rig Veda, taken mostly from its latest linguistic stratum.", "short_title": "Introduction to Vedic Sanskrit", "title": "Introduction to Vedic Sanskrit", @@ -184729,7 +404352,7 @@ "16:00", "17:15", "LUCE 302 - Luce Hall 302", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ], "Wednesday": [ @@ -184737,7 +404360,7 @@ "16:00", "17:15", "LUCE 302 - Luce Hall 302", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ] }, @@ -184749,10 +404372,83 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85462\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85462/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.998855471611023 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988786578178406 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986762404441833, + 0.9988349080085754 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 4, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 4 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -184791,7 +404487,7 @@ "9:00", "10:15", "WLH 207 - William L. Harkness Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -184799,7 +404495,7 @@ "9:00", "10:15", "WLH 207 - William L. Harkness Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -184811,10 +404507,153 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84380\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84380/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987179040908813, + 0.9988250136375427, + 0.9975519776344299, + 0.9988943934440613, + 0.9981707334518433, + 0.9986610412597656, + 0.9987804293632507, + 0.9954476952552795, + 0.9966926574707031, + 0.9978943467140198, + 0.9982632994651794, + 0.9986703395843506, + 0.9957969188690186 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9929982423782349, + 0.995093584060669, + 0.9987118244171143, + 0.9982830286026001, + 0.9760679602622986, + 0.9980541467666626, + 0.9986622333526611, + 0.9989211559295654, + 0.9987700581550598, + 0.9989243149757385 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986745119094849, + 0.984992504119873, + 0.9988403916358948, + 0.9987699389457703, + 0.9949396848678589, + 0.9918935298919678, + 0.9989073276519775, + 0.9978119134902954, + 0.9988036155700684, + 0.9988434314727783, + 0.9988904595375061, + 0.9988934397697449, + 0.9989234805107117, + 0.9988512992858887, + 0.9988071918487549 + ], + "sentiment_counts": { + "POSITIVE": 14, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9333333333333333, + "NEGATIVE": 0.06666666666666667 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9333333333333333 + ] + }, + "final_label": "POSITIVE", + "final_count": 37, + "final_proportion": 0.9736842105263158, + "final_counts": { + "POSITIVE": 37, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9736842105263158, + "NEGATIVE": 0.02631578947368421 + } + } }, { "season_code": "202301", @@ -184853,7 +404692,7 @@ "14:30", "15:45", "DOW B-21 - Dow Hall B-21", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ], "Wednesday": [ @@ -184861,7 +404700,7 @@ "14:30", "15:45", "DOW B-21 - Dow Hall B-21", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ] }, @@ -184873,10 +404712,123 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84384\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84384/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9978635907173157, + 0.9988811612129211, + 0.9988057613372803, + 0.9967691898345947, + 0.9988452196121216 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988372921943665, + 0.9994920492172241, + 0.9988934397697449, + 0.9952835440635681, + 0.998838484287262, + 0.9995074272155762, + 0.9994756579399109, + 0.9989125728607178, + 0.9988186955451965, + 0.9986427426338196 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.6, + "NEGATIVE": 0.4 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989223480224609, + 0.9932314157485962, + 0.9941350817680359, + 0.9988231062889099, + 0.9995150566101074, + 0.9994980096817017, + 0.9988924860954285, + 0.9986409544944763 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.625, + "NEGATIVE": 0.375 + }, + "sentiment_overall": [ + "POSITIVE", + 0.625 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 0.6521739130434783, + "final_counts": { + "POSITIVE": 15, + "NEGATIVE": 8 + }, + "final_distribution": { + "POSITIVE": 0.6521739130434783, + "NEGATIVE": 0.34782608695652173 + } + } }, { "season_code": "202301", @@ -184914,7 +404866,7 @@ "13:00", "14:15", "WLH 114 - William L. Harkness Hall 114", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -184922,7 +404874,7 @@ "13:00", "14:15", "WLH 114 - William L. Harkness Hall 114", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -184934,10 +404886,125 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84387\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84387/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986158609390259, + 0.9977243542671204, + 0.995267391204834, + 0.9988516569137573, + 0.9989036321640015, + 0.9988279938697815, + 0.99403977394104 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9853360056877136, + 0.9986842274665833, + 0.9986985921859741, + 0.9987560510635376, + 0.9981269240379333, + 0.9989352822303772, + 0.9988271594047546, + 0.9988698363304138, + 0.9987937211990356 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989174604415894, + 0.9988330006599426, + 0.9988957643508911, + 0.997117280960083, + 0.998910665512085, + 0.9987886548042297, + 0.9989000558853149, + 0.9989137649536133, + 0.9988172650337219 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 25, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 25 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -184977,7 +405044,7 @@ "13:00", "14:15", "HQ 113 - Humanities Quadrangle 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -184985,7 +405052,7 @@ "13:00", "14:15", "HQ 113 - Humanities Quadrangle 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -184997,10 +405064,99 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84391\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84391/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981117248535156, + 0.9987229704856873, + 0.998646080493927 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984824061393738, + 0.9989122152328491, + 0.9987420439720154, + 0.9989012479782104 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983124732971191, + 0.9987533092498779, + 0.9988922476768494, + 0.9988707900047302, + 0.9989148378372192 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 12 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -185038,7 +405194,7 @@ "11:35", "12:50", "DOW 112 - Dow Hall 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ], "Thursday": [ @@ -185046,7 +405202,7 @@ "11:35", "12:50", "DOW 112 - Dow Hall 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ] }, @@ -185058,10 +405214,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84395\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84395/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -185099,7 +405283,7 @@ "11:35", "12:50", "WLH 204 - William L. Harkness Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -185107,7 +405291,7 @@ "11:35", "12:50", "WLH 204 - William L. Harkness Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -185119,15 +405303,100 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84399\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84399/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.998056948184967, + 0.9985609650611877, + 0.9890260100364685 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9965284466743469, + 0.9988816380500793, + 0.9987767338752747 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9978686571121216, + 0.9987413287162781, + 0.998608410358429 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 8, + "final_proportion": 0.8888888888888888, + "final_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + } + } }, { "season_code": "202301", "requirements": "Prerequisite: LING 663 or permission of the instructor.", - "description": "The model-theoretic approach to semantics and its treatment of core linguistic phenomena. Topics include quantification, tense\/aspect\/modality, context and interpretation, and the semantics-pragmatics interface.", + "description": "The model-theoretic approach to semantics and its treatment of core linguistic phenomena. Topics include quantification, tense/aspect/modality, context and interpretation, and the semantics-pragmatics interface.", "short_title": "Semantics II", "title": "Semantics II", "school": "GS", @@ -185160,7 +405429,7 @@ "11:35", "12:50", "ML 104 - Mason Laboratory 104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ], "Wednesday": [ @@ -185168,7 +405437,7 @@ "11:35", "12:50", "ML 104 - Mason Laboratory 104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ] }, @@ -185180,10 +405449,85 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84402\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84402/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987881779670715, + 0.9985271692276001 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988024234771729 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985647797584534, + 0.9989217519760132 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 5, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 5 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -185221,7 +405565,7 @@ "9:25", "11:15", "WALL81 101 - 81 Wall Street 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -185233,10 +405577,81 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84406\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84406/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983674883842468 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989123344421387 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988434314727783 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 3, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 3 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -185276,7 +405691,7 @@ "9:25", "11:15", "WALL81 101 - 81 Wall Street 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -185288,10 +405703,111 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84354\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84354/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985992312431335, + 0.9978214502334595, + 0.9987466335296631 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9968620538711548, + 0.9971398115158081, + 0.9989185333251953, + 0.9988366961479187, + 0.9989305138587952, + 0.9989019632339478 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9814485907554626, + 0.9966859221458435, + 0.9988301396369934, + 0.9915800094604492, + 0.9987873435020447, + 0.9986227750778198, + 0.9989092350006104, + 0.9989004135131836 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 7 + }, + "sentiment_distribution": { + "NEGATIVE": 0.125, + "POSITIVE": 0.875 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 0.9411764705882353, + "final_counts": { + "POSITIVE": 16, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9411764705882353, + "NEGATIVE": 0.058823529411764705 + } + } }, { "season_code": "202301", @@ -185330,7 +405846,7 @@ "13:30", "15:20", "DOW 112 - Dow Hall 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ] }, @@ -185342,15 +405858,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84357\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84357/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "The ability to go beyond the here and now is a defining property of natural language. Modality in English and several other well-studied languages varies along two dimensions: flavor (may\/must\u00a0can be interpreted epistemically or deontically, for example) and force (may\u00a0expresses possibility\/permission while\u00a0must\u00a0expresses necessity\/command). Recent studies have shown that there is cross-linguistic variation in the expression of modal force. In languages such as St\u2019\u00e1t\u2019imcets, Nez Perce, Ecuadorian Siona, and Kinande a single lexical item can express both possibility\/permission and necessity\/command. Students read primary semantic literature and theoretically-informed descriptions of various modal systems. Analyses of variable- vs. fixed-force modal systems, methods of marking and interpreting weak necessity, and attempts to develop a unified typology of modal force provide a lens through which to understand an essential aspect of human communication systems.", + "description": "The ability to go beyond the here and now is a defining property of natural language. Modality in English and several other well-studied languages varies along two dimensions: flavor (may/must\u00a0can be interpreted epistemically or deontically, for example) and force (may\u00a0expresses possibility/permission while\u00a0must\u00a0expresses necessity/command). Recent studies have shown that there is cross-linguistic variation in the expression of modal force. In languages such as St\u2019\u00e1t\u2019imcets, Nez Perce, Ecuadorian Siona, and Kinande a single lexical item can express both possibility/permission and necessity/command. Students read primary semantic literature and theoretically-informed descriptions of various modal systems. Analyses of variable- vs. fixed-force modal systems, methods of marking and interpreting weak necessity, and attempts to develop a unified typology of modal force provide a lens through which to understand an essential aspect of human communication systems.", "short_title": "Variation in Variable-Force M...", "title": "Variation in Variable-Force Modality", "school": "GS", @@ -185383,7 +405927,7 @@ "15:30", "17:20", "DOW 321 - Dow Hall 321", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ] }, @@ -185395,10 +405939,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85935\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85935/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -185441,12 +406013,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "The meaning of a word or sentence is something in the human mind that has specific\u00a0properties: it can be expressed (written\/signed\/spoken forms); it can be combined with other meanings; its expression is not language dependent; it connects with the world; it serves as a vehicle for inference; and it is hidden from awareness. The course explores these properties in some detail and, in the process, provides students with technical\u00a0vocabulary and analytical tools to further investigate them. The course is thus intended for students\u00a0interested in undertaking a research project on the structure of meaning: the nature of lexico-conceptual structure, that is, the structure of concepts, which we refer to as \"word\u00a0meanings,\" and how they may be combined through linguistic and nonlinguistic means. The course\u2019s ultimate objective is to bridge models of conceptual structure and models of linguistic semantic composition, identify their respective strengths and weaknesses, and explore some of the fundamental questions that any theory of linguistic meaning composition must answer. Evidence discussed will emerge from naturalistic, introspectional, and experimental methodologies.", + "description": "The meaning of a word or sentence is something in the human mind that has specific\u00a0properties: it can be expressed (written/signed/spoken forms); it can be combined with other meanings; its expression is not language dependent; it connects with the world; it serves as a vehicle for inference; and it is hidden from awareness. The course explores these properties in some detail and, in the process, provides students with technical\u00a0vocabulary and analytical tools to further investigate them. The course is thus intended for students\u00a0interested in undertaking a research project on the structure of meaning: the nature of lexico-conceptual structure, that is, the structure of concepts, which we refer to as \"word\u00a0meanings,\" and how they may be combined through linguistic and nonlinguistic means. The course\u2019s ultimate objective is to bridge models of conceptual structure and models of linguistic semantic composition, identify their respective strengths and weaknesses, and explore some of the fundamental questions that any theory of linguistic meaning composition must answer. Evidence discussed will emerge from naturalistic, introspectional, and experimental methodologies.", "short_title": "Linguistic Meaning and Concep...", "title": "Linguistic Meaning and Conceptual Structure", "school": "GS", @@ -185481,7 +406081,7 @@ "14:30", "15:45", "WLH 002 - William L. Harkness Hall 002", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -185489,7 +406089,7 @@ "14:30", "15:45", "WLH 002 - William L. Harkness Hall 002", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -185501,10 +406101,103 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84350\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84350/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981061220169067, + 0.9983164072036743, + 0.99845290184021, + 0.9988356232643127 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989043474197388, + 0.9994563460350037, + 0.9964460730552673, + 0.998184859752655, + 0.998925507068634 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.6, + "NEGATIVE": 0.4 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9995124340057373, + 0.997117280960083, + 0.9954760670661926, + 0.9988189339637756 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.25, + "POSITIVE": 0.75 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 0.7692307692307693, + "final_counts": { + "POSITIVE": 10, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.7692307692307693, + "NEGATIVE": 0.23076923076923078 + } + } }, { "season_code": "202301", @@ -185543,7 +406236,7 @@ "11:35", "12:50", "LC 204 - Linsly-Chittenden Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -185551,7 +406244,7 @@ "11:35", "12:50", "LC 204 - Linsly-Chittenden Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -185562,17 +406255,112 @@ "Hu" ], "flags": [ - "YC English: 20th\/21st Century" + "YC English: 20th/21st Century" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83859\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83859/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989272952079773, + 0.9987183809280396, + 0.9989292025566101, + 0.9988992214202881, + 0.998879611492157 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989216327667236, + 0.9989234805107117, + 0.9988752007484436, + 0.9988736510276794, + 0.9988607168197632 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989120960235596, + 0.9989216327667236, + 0.998894989490509, + 0.9989330172538757, + 0.9989041090011597 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 15 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -185610,7 +406398,7 @@ "13:00", "14:15", "LC 317 - Linsly-Chittenden Hall 317", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -185618,7 +406406,7 @@ "13:00", "14:15", "LC 317 - Linsly-Chittenden Hall 317", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -185636,10 +406424,133 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84374\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84374/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988779425621033, + 0.9978673458099365, + 0.9980142116546631, + 0.9987899661064148, + 0.998909592628479, + 0.9989080429077148, + 0.9989111423492432, + 0.998908281326294, + 0.9989258646965027 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987162351608276, + 0.9971765279769897, + 0.9975201487541199, + 0.9987034797668457, + 0.9989199638366699, + 0.9989036321640015, + 0.9988777041435242, + 0.9988687634468079, + 0.998744010925293 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988839030265808, + 0.9971765279769897, + 0.9982045888900757, + 0.9985752105712891, + 0.9974592328071594, + 0.998915433883667, + 0.9989032745361328, + 0.9988540410995483, + 0.9989392161369324, + 0.9989258646965027 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "final_label": "POSITIVE", + "final_count": 26, + "final_proportion": 0.9285714285714286, + "final_counts": { + "POSITIVE": 26, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9285714285714286, + "NEGATIVE": 0.07142857142857142 + } + } }, { "season_code": "202301", @@ -185677,7 +406588,7 @@ "16:00", "17:15", "LC 317 - Linsly-Chittenden Hall 317", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -185685,7 +406596,7 @@ "16:00", "17:15", "LC 317 - Linsly-Chittenden Hall 317", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -185701,10 +406612,109 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84378\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84378/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987711310386658, + 0.9987718462944031, + 0.9989270567893982, + 0.9989240765571594, + 0.9988455772399902, + 0.9988866448402405 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988628625869751, + 0.9938318729400635, + 0.9989369511604309, + 0.9988425374031067, + 0.9989238381385803 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988896250724792, + 0.9980297684669495, + 0.9989057779312134, + 0.998805046081543, + 0.9989186525344849 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 0.875, + "final_counts": { + "POSITIVE": 14, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + } + } }, { "season_code": "202301", @@ -185742,7 +406752,7 @@ "13:00", "14:15", "LC 208 - Linsly-Chittenden Hall 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -185750,7 +406760,7 @@ "13:00", "14:15", "LC 208 - Linsly-Chittenden Hall 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -185764,10 +406774,121 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85233\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85233/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987555742263794, + 0.9987882971763611, + 0.9989290833473206, + 0.9988647699356079, + 0.9989066123962402, + 0.9987360835075378 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9981984496116638, + 0.9979565143585205, + 0.9988956451416016, + 0.9995086193084717, + 0.9989246726036072, + 0.9989387392997742, + 0.9988442659378052, + 0.9986571073532104 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 5 + }, + "sentiment_distribution": { + "NEGATIVE": 0.375, + "POSITIVE": 0.625 + }, + "sentiment_overall": [ + "POSITIVE", + 0.625 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989092350006104, + 0.993098795413971, + 0.9956574440002441, + 0.9989309906959534, + 0.9985783100128174, + 0.9986329674720764, + 0.998880922794342, + 0.9988872408866882 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 0.7727272727272727, + "final_counts": { + "POSITIVE": 17, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.7727272727272727, + "NEGATIVE": 0.22727272727272727 + } + } }, { "season_code": "202301", @@ -185806,7 +406927,7 @@ "13:30", "15:20", "HQ C11 - Humanities Quadrangle C11", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -185822,10 +406943,95 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84102\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84102/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989058971405029, + 0.9987586736679077, + 0.9988293051719666 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988430738449097, + 0.9987479448318481, + 0.9988402724266052 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989259839057922, + 0.9903659820556641, + 0.9918021559715271 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 8, + "final_proportion": 0.8888888888888888, + "final_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + } + } }, { "season_code": "202301", @@ -185864,7 +407070,7 @@ "13:00", "14:15", "HQ 127 - Humanities Quadrangle 127", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -185872,7 +407078,7 @@ "13:00", "14:15", "HQ 127 - Humanities Quadrangle 127", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -185886,10 +407092,105 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85985\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85985/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988647699356079, + 0.9989080429077148, + 0.998887836933136, + 0.9989396929740906, + 0.9986685514450073 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989323019981384, + 0.9989363551139832, + 0.9991251826286316, + 0.9988910555839539 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989346861839294, + 0.9989344477653503, + 0.9989020824432373, + 0.9984412789344788, + 0.9989064931869507 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 0.9285714285714286, + "final_counts": { + "POSITIVE": 13, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9285714285714286, + "NEGATIVE": 0.07142857142857142 + } + } }, { "season_code": "202301", @@ -185930,7 +407231,7 @@ "13:30", "15:20", "HQ 401 - Humanities Quadrangle 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -185944,10 +407245,141 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84383\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84383/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986565113067627, + 0.9994283318519592, + 0.9913539290428162, + 0.9985716342926025, + 0.9988849759101868, + 0.9988454580307007 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994857311248779, + 0.9995075464248657, + 0.9995049238204956, + 0.9994805455207825, + 0.9994825124740601, + 0.9995096921920776, + 0.9987964630126953, + 0.9994977712631226, + 0.9995015859603882, + 0.9995019435882568, + 0.9994730353355408, + 0.9964937567710876, + 0.9979900121688843 + ], + "sentiment_counts": { + "NEGATIVE": 11, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.8461538461538461, + "POSITIVE": 0.15384615384615385 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.8461538461538461 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9994837045669556, + 0.9982234835624695, + 0.9994789958000183, + 0.9985187649726868, + 0.9973189234733582, + 0.9986139535903931, + 0.9995099306106567, + 0.9993284940719604, + 0.9994149208068848, + 0.9980016350746155, + 0.9994982481002808, + 0.9896597266197205, + 0.9995013475418091 + ], + "sentiment_counts": { + "NEGATIVE": 13, + "POSITIVE": 0 + }, + "sentiment_distribution": { + "NEGATIVE": 1.0, + "POSITIVE": 0.0 + }, + "sentiment_overall": [ + "NEGATIVE", + 1.0 + ] + }, + "final_label": "NEGATIVE", + "final_count": 26, + "final_proportion": 0.8125, + "final_counts": { + "POSITIVE": 6, + "NEGATIVE": 26 + }, + "final_distribution": { + "POSITIVE": 0.1875, + "NEGATIVE": 0.8125 + } + } }, { "season_code": "202301", @@ -185987,7 +407419,7 @@ "13:00", "14:15", "HQ 129 - Humanities Quadrangle 129", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -185995,7 +407427,7 @@ "13:00", "14:15", "HQ 129 - Humanities Quadrangle 129", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Tuesday": [ @@ -186003,7 +407435,7 @@ "19:00", "22:00", "HQ L01 - Humanities Quadrangle L01", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -186012,7 +407444,7 @@ "Hu" ], "flags": [ - "YC English: 20th\/21st Century", + "YC English: 20th/21st Century", "YC FILM: World Cinema", "YC CPLT: Early Modern", "Writing Skill (Opt.)" @@ -186022,10 +407454,137 @@ "classnotes": "Plus film screening on Tuesdays - time TBA", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84388\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84388/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988595247268677, + 0.9946152567863464, + 0.9960386753082275, + 0.9943276047706604, + 0.9984118938446045, + 0.9987768530845642, + 0.9988961219787598, + 0.9988929629325867, + 0.9989141225814819, + 0.998917818069458 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994737505912781, + 0.9989266991615295, + 0.9940938353538513, + 0.9989174604415894, + 0.9988634586334229, + 0.9989370703697205, + 0.9994889497756958, + 0.9974939823150635 + ], + "sentiment_counts": { + "NEGATIVE": 4, + "POSITIVE": 4 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987943172454834, + 0.9985396862030029, + 0.9987170696258545, + 0.9989104270935059, + 0.9989056587219238, + 0.9945524334907532, + 0.9987840056419373, + 0.9988294243812561, + 0.9989365935325623, + 0.9988839030265808, + 0.9988992214202881, + 0.9985396862030029 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9166666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 25, + "final_proportion": 0.8333333333333334, + "final_counts": { + "POSITIVE": 25, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + } + } }, { "season_code": "202301", @@ -186065,7 +407624,7 @@ "14:30", "15:45", "LC 203 - Linsly-Chittenden Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -186073,7 +407632,7 @@ "14:30", "15:45", "LC 203 - Linsly-Chittenden Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -186092,10 +407651,107 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83951\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83951/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998479425907135, + 0.9988629817962646, + 0.9987003803253174 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9718410968780518, + 0.99888676404953, + 0.9994925260543823, + 0.9981603026390076, + 0.998890221118927, + 0.9762670993804932 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.998927652835846, + 0.9988896250724792, + 0.9992108345031738, + 0.9953916072845459, + 0.9986447691917419, + 0.9995076656341553 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 0.8, + "final_counts": { + "POSITIVE": 12, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + } + } }, { "season_code": "202301", @@ -186137,7 +407793,7 @@ "13:30", "15:20", "WALL81 101 - 81 Wall Street 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -186151,10 +407807,97 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85984\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85984/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985761642456055, + 0.9988330006599426, + 0.9989045858383179, + 0.9988504648208618 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989185333251953, + 0.9987831711769104, + 0.9988816380500793 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988638162612915, + 0.9988977909088135, + 0.9988879561424255, + 0.9985513091087341 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 11 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -186194,7 +407937,7 @@ "9:00", "10:15", "LC 209 - Linsly-Chittenden Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -186202,7 +407945,7 @@ "9:00", "10:15", "LC 209 - Linsly-Chittenden Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -186223,10 +407966,107 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83959\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83959/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988923668861389, + 0.9988337159156799, + 0.9986839890480042, + 0.9986152648925781, + 0.9989172220230103 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989262223243713, + 0.9981769323348999, + 0.998703122138977, + 0.99893718957901 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984195232391357, + 0.9989144802093506, + 0.9989256262779236, + 0.9971181154251099, + 0.9988946318626404, + 0.9989257454872131 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 0.9333333333333333, + "final_counts": { + "POSITIVE": 14, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9333333333333333, + "NEGATIVE": 0.06666666666666667 + } + } }, { "season_code": "202301", @@ -186264,7 +408104,7 @@ "14:30", "15:45", "LC 203 - Linsly-Chittenden Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -186272,7 +408112,7 @@ "14:30", "15:45", "LC 203 - Linsly-Chittenden Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -186288,15 +408128,112 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83961\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83961/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "", - "description": "Medieval understandings of womanhood examined through analysis of writings by and\/or about women, from antiquity through the Middle Ages. Introduction to the premodern Western canon and assessment of the role that women played in its construction.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988464117050171, + 0.9988946318626404, + 0.9989078044891357, + 0.9989111423492432, + 0.9988853335380554 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986914992332458, + 0.9987916350364685, + 0.9989117383956909, + 0.9995005130767822, + 0.9988667964935303 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988740086555481, + 0.998916506767273, + 0.9989370703697205, + 0.9928299784660339, + 0.9989094734191895 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 0.8666666666666667, + "final_counts": { + "POSITIVE": 13, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8666666666666667, + "NEGATIVE": 0.13333333333333333 + } + } + }, + { + "season_code": "202301", + "requirements": "", + "description": "Medieval understandings of womanhood examined through analysis of writings by and/or about women, from antiquity through the Middle Ages. Introduction to the premodern Western canon and assessment of the role that women played in its construction.", "short_title": "Women in the Middle Ages", "title": "Women in the Middle Ages", "school": "YC", @@ -186331,7 +408268,7 @@ "13:00", "14:15", "HQ C07 - Humanities Quadrangle C07", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -186339,7 +408276,7 @@ "13:00", "14:15", "HQ C07 - Humanities Quadrangle C07", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -186355,10 +408292,117 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84967\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84967/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989093542098999, + 0.9987327456474304, + 0.9989203214645386, + 0.9988341927528381, + 0.9983691573143005, + 0.9988722205162048, + 0.9988724589347839 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9972534775733948, + 0.9987975358963013, + 0.9989268183708191, + 0.9988551139831543, + 0.9989287257194519, + 0.9967257976531982, + 0.998938262462616 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989038705825806, + 0.9988985061645508, + 0.9988089799880981, + 0.9989352822303772, + 0.9987322688102722, + 0.9988644123077393, + 0.9989362359046936 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 21, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 21 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -186397,7 +408441,7 @@ "15:30", "17:20", "HQ 207 - Humanities Quadrangle 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -186413,10 +408457,119 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87018\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87018/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986465573310852, + 0.9984474778175354, + 0.9988467693328857, + 0.9986745119094849, + 0.9988252520561218, + 0.9985404014587402, + 0.9989340901374817 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989217519760132, + 0.9989274144172668, + 0.9987025260925293, + 0.9989137649536133, + 0.9988880753517151, + 0.9987579584121704, + 0.998927891254425 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998866081237793, + 0.9988164901733398, + 0.9988934397697449, + 0.9988879561424255, + 0.9988433122634888, + 0.9969612956047058, + 0.9988846182823181, + 0.9988712668418884 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 22, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 22 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -186456,7 +408609,7 @@ "13:00", "14:15", "LC 210 - Linsly-Chittenden Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -186464,7 +408617,7 @@ "13:00", "14:15", "LC 210 - Linsly-Chittenden Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -186485,10 +408638,103 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83982\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83982/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987292885780334, + 0.9872334003448486, + 0.9894639253616333, + 0.9984715580940247 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988622665405273, + 0.9988981485366821, + 0.9993638396263123 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989308714866638, + 0.9988476037979126, + 0.998931348323822, + 0.9986861348152161, + 0.9935492873191833, + 0.9994437098503113 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 0.7692307692307693, + "final_counts": { + "POSITIVE": 10, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.7692307692307693, + "NEGATIVE": 0.23076923076923078 + } + } }, { "season_code": "202301", @@ -186528,7 +408774,7 @@ "15:30", "17:20", "WLH 011 - William L. Harkness Hall 011", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -186544,10 +408790,157 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84331\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84331/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989147186279297, + 0.9971709847450256, + 0.9988216757774353, + 0.9988547563552856, + 0.9989110231399536, + 0.9980278611183167, + 0.9989327788352966, + 0.998796820640564, + 0.9988337159156799, + 0.9988998174667358, + 0.998924195766449, + 0.9989174604415894, + 0.9989125728607178 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988594055175781, + 0.9989277720451355, + 0.9987912774085999, + 0.9989026784896851, + 0.9988887906074524, + 0.9988993406295776, + 0.9989206790924072, + 0.9989266991615295, + 0.9989330172538757, + 0.9988841414451599, + 0.998918890953064, + 0.9987988471984863, + 0.9989401698112488 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989142417907715, + 0.998934805393219, + 0.9989320635795593, + 0.9989142417907715, + 0.9984645843505859, + 0.998897910118103, + 0.9989385008811951, + 0.9989238381385803, + 0.998930037021637, + 0.9988995790481567, + 0.9989160299301147, + 0.9987499713897705, + 0.9989301562309265, + 0.9989232420921326, + 0.9989206790924072 + ], + "sentiment_counts": { + "POSITIVE": 15, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 41, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 41 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -186586,7 +408979,7 @@ "14:30", "15:45", "LC 204 - Linsly-Chittenden Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -186594,7 +408987,7 @@ "14:30", "15:45", "LC 204 - Linsly-Chittenden Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -186605,7 +408998,7 @@ "Hu" ], "flags": [ - "YC English: 20th\/21st Century", + "YC English: 20th/21st Century", "YC English: Junior Seminar" ], "regnotes": "", @@ -186613,10 +409006,133 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85251\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/85251/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988866448402405, + 0.9981110095977783, + 0.9987994432449341, + 0.9988542795181274, + 0.9989246726036072, + 0.9988991022109985, + 0.9988576173782349, + 0.9989356398582458 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988665580749512, + 0.998231828212738, + 0.960239589214325, + 0.9988862872123718, + 0.9988569021224976, + 0.9987461566925049, + 0.9988692402839661, + 0.9988584518432617, + 0.9989084005355835, + 0.9977462887763977 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988058805465698, + 0.998923122882843, + 0.9986407160758972, + 0.9988548755645752, + 0.9989252686500549, + 0.9985023736953735, + 0.9987090826034546, + 0.9986791014671326, + 0.9989286065101624, + 0.998903751373291 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 27, + "final_proportion": 0.9642857142857143, + "final_counts": { + "POSITIVE": 27, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9642857142857143, + "NEGATIVE": 0.03571428571428571 + } + } }, { "season_code": "202301", @@ -186657,7 +409173,7 @@ "15:30", "17:20", "PH 207 - Phelps Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -186674,10 +409190,131 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85919\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85919/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987782835960388, + 0.9989118576049805, + 0.9988343119621277, + 0.9989268183708191, + 0.9986599683761597, + 0.9987064599990845, + 0.9988788962364197, + 0.9987242817878723, + 0.9989331364631653 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989103078842163, + 0.9989150762557983, + 0.9989306330680847, + 0.9989027976989746, + 0.9989321827888489, + 0.9988206028938293, + 0.9989105463027954, + 0.9989148378372192, + 0.9989281296730042 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9421969056129456, + 0.9988974332809448, + 0.9989270567893982, + 0.9985398054122925, + 0.9988217949867249, + 0.9987505674362183, + 0.9988631010055542, + 0.9989206790924072, + 0.9989385008811951, + 0.9989297986030579 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 28, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 28 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -186719,7 +409356,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -186758,7 +409423,7 @@ "14:30", "15:20", "WLH 116 - William L. Harkness Hall 116", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -186766,7 +409431,7 @@ "14:30", "15:20", "WLH 116 - William L. Harkness Hall 116", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -186780,10 +409445,259 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84813\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84813/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988939166069031, + 0.9989135265350342, + 0.9988646507263184, + 0.9987958669662476, + 0.9941735863685608, + 0.9989174604415894, + 0.9988487958908081, + 0.9987892508506775, + 0.9988921284675598, + 0.9988158941268921, + 0.99891197681427, + 0.9988844990730286, + 0.9988431930541992, + 0.9988824725151062, + 0.9987741112709045, + 0.998921275138855, + 0.9989245533943176, + 0.9988381266593933, + 0.9989175796508789, + 0.998894989490509, + 0.998820960521698, + 0.9988018274307251, + 0.9989199638366699, + 0.9987668991088867, + 0.9979544878005981, + 0.9988967180252075, + 0.9989321827888489, + 0.9988452196121216, + 0.9985488057136536 + ], + "sentiment_counts": { + "POSITIVE": 29, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.998778760433197, + 0.9989179372787476, + 0.9986761212348938, + 0.998363196849823, + 0.9988664388656616, + 0.9989321827888489, + 0.9984431862831116, + 0.9988597631454468, + 0.9983048439025879, + 0.9989120960235596, + 0.9989282488822937, + 0.9987947940826416, + 0.9986715316772461, + 0.9988627433776855, + 0.9987239241600037, + 0.9987519979476929, + 0.99869304895401, + 0.9983493089675903, + 0.9987809062004089, + 0.9988409876823425, + 0.9989333748817444, + 0.9988266825675964, + 0.9989238381385803, + 0.9989036321640015, + 0.998572826385498, + 0.9744672775268555, + 0.9985036849975586, + 0.9975056052207947, + 0.998880922794342, + 0.9994947910308838 + ], + "sentiment_counts": { + "POSITIVE": 26, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.8666666666666667, + "NEGATIVE": 0.13333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8666666666666667 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.997117280960083, + 0.9982553124427795, + 0.9995111227035522, + 0.9989379048347473, + 0.9986973404884338, + 0.9984381794929504, + 0.9988941550254822, + 0.998881995677948, + 0.9988924860954285, + 0.998770534992218, + 0.9988324046134949, + 0.998887836933136, + 0.9966742992401123, + 0.9985789060592651, + 0.9989213943481445, + 0.9987286925315857, + 0.9982450008392334, + 0.9987034797668457, + 0.9989067316055298, + 0.9985982775688171, + 0.9989030361175537, + 0.9989047050476074, + 0.998904824256897, + 0.9989190101623535, + 0.9980897307395935, + 0.9989336133003235, + 0.9773299694061279, + 0.9989128112792969, + 0.9981497526168823, + 0.9988632202148438, + 0.9989275336265564, + 0.9908626079559326 + ], + "sentiment_counts": { + "POSITIVE": 28, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "final_label": "POSITIVE", + "final_count": 83, + "final_proportion": 0.9120879120879121, + "final_counts": { + "POSITIVE": 83, + "NEGATIVE": 8 + }, + "final_distribution": { + "POSITIVE": 0.9120879120879121, + "NEGATIVE": 0.08791208791208792 + } + } }, { "season_code": "202301", @@ -186816,7 +409730,7 @@ "10:30", "11:20", "HQ C01 - Humanities Quadrangle C01", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -186833,7 +409747,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -186866,7 +409808,7 @@ "17:00", "17:50", "HQ C01 - Humanities Quadrangle C01", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -186883,7 +409825,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -186916,7 +409886,7 @@ "19:00", "19:50", "HQ C07 - Humanities Quadrangle C07", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -186933,7 +409903,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -186966,7 +409964,7 @@ "17:00", "17:50", "HQ C07 - Humanities Quadrangle C07", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -186983,7 +409981,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -187024,7 +410050,7 @@ "13:30", "15:20", "WLH 209 - William L. Harkness Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -187040,10 +410066,111 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84122\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84122/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988210797309875, + 0.9989069700241089, + 0.9988895058631897, + 0.9987397789955139, + 0.9989055395126343 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987258315086365, + 0.9988890290260315, + 0.9988699555397034, + 0.9986448884010315, + 0.9987479448318481, + 0.998298704624176 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988559484481812, + 0.9989215135574341, + 0.9988529682159424, + 0.9983460903167725, + 0.995510458946228, + 0.9989089965820312, + 0.9974592328071594 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 18 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -187084,7 +410211,7 @@ "11:35", "12:50", "HQ C15 - Humanities Quadrangle C15", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -187092,7 +410219,7 @@ "11:35", "12:50", "HQ C15 - Humanities Quadrangle C15", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -187106,10 +410233,129 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85801\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85801/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988532066345215, + 0.9987816214561462, + 0.9989184141159058, + 0.998890221118927, + 0.9988541603088379, + 0.9986763596534729, + 0.9989100694656372, + 0.9987571239471436 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988927245140076, + 0.9989148378372192, + 0.9986885190010071, + 0.9988821148872375, + 0.998847484588623, + 0.9987769722938538, + 0.9986155033111572 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988308548927307, + 0.9984520673751831, + 0.998931348323822, + 0.996174156665802, + 0.9988986253738403, + 0.9989311099052429, + 0.9983750581741333, + 0.9989282488822937, + 0.9989383816719055, + 0.9989374279975891, + 0.9988933205604553 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 25, + "final_proportion": 0.9615384615384616, + "final_counts": { + "POSITIVE": 25, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9615384615384616, + "NEGATIVE": 0.038461538461538464 + } + } }, { "season_code": "202301", @@ -187151,7 +410397,7 @@ "14:30", "15:20", "SSS 114 - Sheffield-Sterling-Strathcona 114", - "https:\/\/map.yale.edu\/?id=1910#!m\/563689" + "https://map.yale.edu/?id=1910#!m/563689" ] ], "Wednesday": [ @@ -187159,7 +410405,7 @@ "14:30", "15:20", "SSS 114 - Sheffield-Sterling-Strathcona 114", - "https:\/\/map.yale.edu\/?id=1910#!m\/563689" + "https://map.yale.edu/?id=1910#!m/563689" ] ] }, @@ -187173,10 +410419,209 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83798\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83798/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998935878276825, + 0.9982777833938599, + 0.9968156218528748, + 0.9984039664268494, + 0.9962582588195801, + 0.9989311099052429, + 0.9988338351249695, + 0.9954687356948853, + 0.998785674571991, + 0.9987488985061646, + 0.9988712668418884, + 0.9985829591751099, + 0.998740017414093, + 0.9989156723022461, + 0.9994814991950989, + 0.9988394379615784, + 0.9989112615585327, + 0.9986221790313721, + 0.9988502264022827, + 0.998793363571167, + 0.9989294409751892, + 0.9989286065101624 + ], + "sentiment_counts": { + "POSITIVE": 20, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9090909090909091 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9987419247627258, + 0.99887615442276, + 0.9989142417907715, + 0.9986788630485535, + 0.9962582588195801, + 0.9994927644729614, + 0.9988754391670227, + 0.9988775849342346, + 0.9972184896469116, + 0.9870812296867371, + 0.9940172433853149, + 0.9986811280250549, + 0.999489426612854, + 0.9988136291503906, + 0.9992954730987549, + 0.9966887831687927, + 0.9993485808372498, + 0.9988741278648376, + 0.9994860887527466, + 0.9989207983016968, + 0.9983103275299072, + 0.9982118606567383, + 0.9987824559211731, + 0.9847177863121033 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 11 + }, + "sentiment_distribution": { + "POSITIVE": 0.5416666666666666, + "NEGATIVE": 0.4583333333333333 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989104270935059, + 0.9977057576179504, + 0.9988704323768616, + 0.9984052777290344, + 0.9962582588195801, + 0.9989359974861145, + 0.9988816380500793, + 0.9974592328071594, + 0.9982234835624695, + 0.9990212917327881, + 0.9985746145248413, + 0.9979425072669983, + 0.9988999366760254, + 0.9995064735412598, + 0.991790771484375, + 0.9988986253738403, + 0.9988992214202881, + 0.9983044862747192, + 0.9988798499107361, + 0.9987069368362427 + ], + "sentiment_counts": { + "POSITIVE": 14, + "NEGATIVE": 6 + }, + "sentiment_distribution": { + "POSITIVE": 0.7, + "NEGATIVE": 0.3 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7 + ] + }, + "final_label": "POSITIVE", + "final_count": 47, + "final_proportion": 0.7121212121212122, + "final_counts": { + "POSITIVE": 47, + "NEGATIVE": 19 + }, + "final_distribution": { + "POSITIVE": 0.7121212121212122, + "NEGATIVE": 0.2878787878787879 + } + } }, { "season_code": "202301", @@ -187237,7 +410682,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -187273,7 +410746,7 @@ "10:30", "11:20", "HQ 129 - Humanities Quadrangle 129", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -187290,7 +410763,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -187326,7 +410827,7 @@ "14:30", "15:20", "HQ 133 - Humanities Quadrangle 133", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -187343,7 +410844,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -187379,7 +410908,7 @@ "14:30", "15:20", "HQ 132 - Humanities Quadrangle 132", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -187396,7 +410925,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -187432,7 +410989,7 @@ "16:00", "16:50", "HQ 401 - Humanities Quadrangle 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -187449,7 +411006,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -187510,7 +411095,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -187571,7 +411184,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -187632,7 +411273,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -187693,7 +411362,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -187754,7 +411451,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -187793,7 +411518,7 @@ "16:00", "17:15", "WTS A30 - Watson Center 60 Sachem Street A30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -187801,7 +411526,7 @@ "16:00", "17:15", "WTS A30 - Watson Center 60 Sachem Street A30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -187815,10 +411540,133 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84961\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84961/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988954067230225, + 0.9989269375801086, + 0.997858464717865, + 0.9989088773727417, + 0.9988744854927063, + 0.9988141059875488, + 0.9989349246025085, + 0.9987757802009583 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988096952438354, + 0.9989193677902222, + 0.9957420229911804, + 0.9985496401786804, + 0.9989087581634521, + 0.9989333748817444, + 0.9989045858383179, + 0.9984965324401855, + 0.9988749623298645, + 0.9988137483596802 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9976966977119446, + 0.998934805393219, + 0.9988683462142944, + 0.9967030882835388, + 0.9989286065101624, + 0.9989368319511414, + 0.9989171028137207, + 0.9987916350364685, + 0.9989103078842163, + 0.9987819790840149 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 27, + "final_proportion": 0.9642857142857143, + "final_counts": { + "POSITIVE": 27, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9642857142857143, + "NEGATIVE": 0.03571428571428571 + } + } }, { "season_code": "202301", @@ -187858,7 +411706,7 @@ "13:00", "14:15", "WLH 003 - William L. Harkness Hall 003", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -187866,7 +411714,7 @@ "13:00", "14:15", "WLH 003 - William L. Harkness Hall 003", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -187884,10 +411732,133 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84822\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84822/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988582134246826, + 0.9989280104637146, + 0.998777449131012, + 0.9989126920700073, + 0.9989179372787476, + 0.998863697052002, + 0.9988943934440613, + 0.9987834095954895, + 0.9986822009086609, + 0.9988324046134949 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987791180610657, + 0.9989171028137207, + 0.9989173412322998, + 0.9988341927528381, + 0.9982849955558777, + 0.9989211559295654, + 0.9975069165229797, + 0.9946286082267761 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988653659820557, + 0.9989029169082642, + 0.998855471611023, + 0.9989078044891357, + 0.9986862540245056, + 0.9988903403282166, + 0.9987357258796692, + 0.9987905621528625, + 0.9989303946495056, + 0.9989020824432373, + 0.9988893866539001 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 29, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 29 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -187927,7 +411898,7 @@ "9:25", "11:15", "LC 319 - Linsly-Chittenden Hall 319", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -187941,10 +411912,95 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84394\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84394/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988617897033691, + 0.9983670115470886, + 0.9989296793937683 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988983869552612, + 0.9989319443702698 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981204867362976, + 0.9989350438117981, + 0.9986304044723511, + 0.998915433883667, + 0.9976826906204224 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 10 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -187984,7 +412040,7 @@ "15:30", "17:20", "WLH 208 - William L. Harkness Hall 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -187998,10 +412054,123 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84398\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84398/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987761378288269, + 0.9988526105880737, + 0.9988616704940796, + 0.9988709092140198, + 0.9988692402839661, + 0.998865008354187 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982339143753052, + 0.999426007270813, + 0.9988495111465454, + 0.9988961219787598, + 0.9988528490066528, + 0.9995020627975464, + 0.9989275336265564 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.7142857142857143, + "NEGATIVE": 0.2857142857142857 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7142857142857143 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987536668777466, + 0.9988459348678589, + 0.9988019466400146, + 0.998782217502594, + 0.9988957643508911, + 0.9988753199577332, + 0.9995001554489136, + 0.9989253878593445, + 0.9989050626754761, + 0.9986708164215088 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 0.8695652173913043, + "final_counts": { + "POSITIVE": 20, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.8695652173913043, + "NEGATIVE": 0.13043478260869565 + } + } }, { "season_code": "202301", @@ -188043,7 +412212,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -188086,7 +412283,7 @@ "13:30", "15:20", "LC 211 - Linsly-Chittenden Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -188104,10 +412301,123 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84403\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84403/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9938866496086121, + 0.9989053010940552, + 0.9977352619171143, + 0.998863697052002, + 0.9988037347793579, + 0.9987534284591675, + 0.9989042282104492, + 0.9989140033721924 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987389445304871, + 0.998935878276825, + 0.9989338517189026, + 0.9988526105880737, + 0.9988893866539001, + 0.9980757236480713, + 0.9989306330680847, + 0.992807149887085 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9979275465011597, + 0.9987668991088867, + 0.9981922507286072, + 0.9970254302024841, + 0.9989197254180908, + 0.9989100694656372, + 0.99888676404953, + 0.9988850951194763 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 24, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 24 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -188143,10 +412453,38 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84407\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84407/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -188186,7 +412524,7 @@ "11:35", "12:50", "HQ 129 - Humanities Quadrangle 129", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -188194,7 +412532,7 @@ "11:35", "12:50", "HQ 129 - Humanities Quadrangle 129", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -188203,17 +412541,134 @@ "Hu" ], "flags": [ - "YC EVST: Core Human\/Social Sci" + "YC EVST: Core Human/Social Sci" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84303\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84303/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989239573478699, + 0.997658371925354, + 0.998891294002533, + 0.9987801909446716, + 0.9988897442817688, + 0.9988964796066284, + 0.9988486766815186, + 0.9988806843757629, + 0.9989103078842163 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989364743232727, + 0.9988723397254944, + 0.9988699555397034, + 0.9988604784011841, + 0.9988333582878113, + 0.9989116191864014, + 0.9988388419151306 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988983869552612, + 0.9989307522773743, + 0.9988526105880737, + 0.9988763928413391, + 0.9989306330680847, + 0.9981436729431152, + 0.9989198446273804, + 0.9982477426528931, + 0.9989131689071655, + 0.9988601207733154 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 26, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 26 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -188254,7 +412709,7 @@ "13:00", "14:15", "HQ 213 - Humanities Quadrangle 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -188262,7 +412717,7 @@ "13:00", "14:15", "HQ 213 - Humanities Quadrangle 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -188282,10 +412737,107 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84410\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84410/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.996685802936554, + 0.9981920123100281, + 0.9987937211990356, + 0.9988003969192505, + 0.9988400340080261 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987272620201111, + 0.9989301562309265, + 0.9989311099052429, + 0.9989060163497925, + 0.9989307522773743 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987375140190125, + 0.9988834261894226, + 0.9989318251609802, + 0.9989001750946045, + 0.9988529682159424, + 0.9989380240440369 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 16 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -188324,7 +412876,7 @@ "16:00", "17:15", "WLH 116 - William L. Harkness Hall 116", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -188332,7 +412884,7 @@ "16:00", "17:15", "WLH 116 - William L. Harkness Hall 116", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -188340,7 +412892,7 @@ "19:30", "22:00", "", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -188358,10 +412910,211 @@ "classnotes": "", "final_exam": "Wednesday, May 10, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84313\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84313/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984297156333923, + 0.9985164999961853, + 0.9980825185775757, + 0.9978620409965515, + 0.9974600672721863, + 0.9986905455589294, + 0.9985004663467407, + 0.998833954334259, + 0.9989036321640015, + 0.9970345497131348, + 0.9961720108985901, + 0.9987850785255432, + 0.9743879437446594, + 0.9988478422164917, + 0.9987547397613525, + 0.9987503290176392, + 0.9988273978233337, + 0.9932063817977905, + 0.9962466359138489, + 0.9988787770271301, + 0.9980508089065552 + ], + "sentiment_counts": { + "POSITIVE": 21, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988524913787842, + 0.9988352656364441, + 0.9983114004135132, + 0.9979947805404663, + 0.9987784028053284, + 0.998814582824707, + 0.9883044958114624, + 0.9943663477897644, + 0.9989060163497925, + 0.997983455657959, + 0.9995017051696777, + 0.9988667964935303, + 0.998637855052948, + 0.998656153678894, + 0.9989120960235596, + 0.9976654052734375, + 0.979790985584259, + 0.9987584352493286, + 0.9989238381385803, + 0.9994978904724121, + 0.9988058805465698, + 0.9984209537506104 + ], + "sentiment_counts": { + "POSITIVE": 18, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.8181818181818182, + "NEGATIVE": 0.18181818181818182 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8181818181818182 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989327788352966, + 0.9987508058547974, + 0.988050639629364, + 0.9986817240715027, + 0.9983729124069214, + 0.9982598423957825, + 0.9988725781440735, + 0.9988852143287659, + 0.9988939166069031, + 0.9984661340713501, + 0.9988865256309509, + 0.9949772953987122, + 0.9988874793052673, + 0.9989209175109863, + 0.9814485907554626, + 0.9989136457443237, + 0.9795332551002502, + 0.9804028272628784, + 0.9989145994186401, + 0.9989012479782104, + 0.9988786578178406, + 0.9994825124740601, + 0.9989269375801086, + 0.9904578924179077 + ], + "sentiment_counts": { + "POSITIVE": 19, + "NEGATIVE": 5 + }, + "sentiment_distribution": { + "POSITIVE": 0.7916666666666666, + "NEGATIVE": 0.20833333333333334 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7916666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 58, + "final_proportion": 0.8656716417910447, + "final_counts": { + "POSITIVE": 58, + "NEGATIVE": 9 + }, + "final_distribution": { + "POSITIVE": 0.8656716417910447, + "NEGATIVE": 0.13432835820895522 + } + } }, { "season_code": "202301", @@ -188400,7 +413153,7 @@ "19:00", "22:00", "WLH 120 - William L. Harkness Hall 120", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Friday": [ @@ -188408,7 +413161,7 @@ "13:30", "15:20", "WLH 112 - William L. Harkness Hall 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -188424,10 +413177,101 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84037\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84037/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988962411880493, + 0.9988152980804443, + 0.9894706010818481, + 0.9988996982574463 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984103441238403, + 0.9848409295082092, + 0.9988724589347839, + 0.9989186525344849 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989010095596313, + 0.998916745185852, + 0.9986836314201355, + 0.9989197254180908, + 0.9988890290260315 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 13 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -188470,7 +413314,7 @@ "11:35", "12:50", "WLH 202 - William L. Harkness Hall 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -188478,7 +413322,7 @@ "11:35", "12:50", "WLH 202 - William L. Harkness Hall 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Tuesday": [ @@ -188486,7 +413330,7 @@ "19:00", "22:00", "PH 310 - Phelps Hall 310", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -188502,10 +413346,91 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83794\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83794/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987472295761108, + 0.9986357092857361, + 0.9988648891448975 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989204406738281, + 0.9991139769554138 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9987896084785461, + 0.9830719232559204 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "final_label": "POSITIVE", + "final_count": 5, + "final_proportion": 0.7142857142857143, + "final_counts": { + "POSITIVE": 5, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.7142857142857143, + "NEGATIVE": 0.2857142857142857 + } + } }, { "season_code": "202301", @@ -188549,7 +413474,7 @@ "15:30", "17:20", "HQ 129 - Humanities Quadrangle 129", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -188567,10 +413492,129 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84797\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84797/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989339709281921, + 0.9838201999664307, + 0.9989207983016968, + 0.9988794922828674, + 0.9987175464630127, + 0.9987875819206238, + 0.9988642930984497, + 0.9988080263137817, + 0.9988754391670227 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989261031150818, + 0.9988849759101868, + 0.9964867830276489, + 0.9989225268363953, + 0.997114896774292, + 0.9988021850585938, + 0.9988846182823181, + 0.9984984397888184, + 0.998715877532959 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989318251609802, + 0.997117280960083, + 0.9994094371795654, + 0.9989306330680847, + 0.9989271759986877, + 0.9971302151679993, + 0.9983568787574768, + 0.9989226460456848 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "final_label": "POSITIVE", + "final_count": 24, + "final_proportion": 0.9230769230769231, + "final_counts": { + "POSITIVE": 24, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9230769230769231, + "NEGATIVE": 0.07692307692307693 + } + } }, { "season_code": "202301", @@ -188611,7 +413655,7 @@ "11:35", "12:50", "WLH 116 - William L. Harkness Hall 116", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -188619,7 +413663,7 @@ "11:35", "12:50", "WLH 116 - William L. Harkness Hall 116", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -188635,15 +413679,230 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84918\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "", - "description": "The course takes up a pressing topic from the sciences and looks at it from the angle of the humanities: how are ecological crises, how is\u2013most specifically and urgently\u2013our current climate crisis represented and reflected upon in non-scientific public discourse: in journalism, in the social media, in literature, and in film? With a focus on, but not limited to literary texts, the course draws on established categories of literary analysis, such as plot patterns or the techniques of narration and\/vs. description, and links them to philosophical concepts such as Karen Barad\u2019s agential realism and Donna Haraway\u2019s \"chthulucene.\" In so doing the course not only looks into (and questions) the common accusation that literature is conspicuously silent when it comes to the matter of the climate crisis, but also investigates (literary and non-literary) ecological narration as situated at the intersection of representation and ethics. Literary readings include Adalbert Stifter, Amitav Ghosh, W.G. Sebald, Ian McEwan, Judith Hermann, Ilija Trojanow, and Kim Stanley Robinson.", + "syllabus_url": "https://yale.instructure.com/courses/84918/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989197254180908, + 0.9987603425979614, + 0.9986374974250793, + 0.9986612796783447, + 0.9989274144172668, + 0.9988151788711548, + 0.9987818598747253, + 0.998933732509613, + 0.9988162517547607, + 0.9987201690673828, + 0.998772919178009, + 0.9984657764434814, + 0.9988976716995239, + 0.9987512826919556, + 0.9987969398498535, + 0.998855471611023, + 0.9982750415802002, + 0.998762845993042, + 0.9988588094711304 + ], + "sentiment_counts": { + "POSITIVE": 19, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988947510719299, + 0.9989288449287415, + 0.999372661113739, + 0.9987840056419373, + 0.9970316886901855, + 0.9988811612129211, + 0.9981605410575867, + 0.9989251494407654, + 0.9873360991477966, + 0.9984754920005798, + 0.9992961883544922, + 0.9987847208976746, + 0.9989161491394043, + 0.9666587710380554, + 0.9987657070159912, + 0.9986672401428223, + 0.9988032579421997, + 0.9994205236434937, + 0.9988540410995483, + 0.9981870055198669, + 0.9988904595375061, + 0.9988420605659485, + 0.9994944334030151, + 0.9938912391662598, + 0.9987677335739136, + 0.9988682270050049, + 0.998918890953064 + ], + "sentiment_counts": { + "POSITIVE": 20, + "NEGATIVE": 7 + }, + "sentiment_distribution": { + "POSITIVE": 0.7407407407407407, + "NEGATIVE": 0.25925925925925924 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7407407407407407 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988653659820557, + 0.9989262223243713, + 0.9988555908203125, + 0.9988603591918945, + 0.9988768696784973, + 0.9987687468528748, + 0.9988629817962646, + 0.9989227652549744, + 0.9991430044174194, + 0.9988613128662109, + 0.9988293051719666, + 0.9982553124427795, + 0.998917818069458, + 0.9981935620307922, + 0.9988791346549988, + 0.9986649751663208, + 0.9987620115280151, + 0.998808741569519, + 0.9987805485725403, + 0.997412383556366, + 0.9989323019981384, + 0.9988679885864258, + 0.997117280960083, + 0.9980511665344238, + 0.9994840621948242, + 0.9984065890312195, + 0.9988584518432617, + 0.9987711310386658 + ], + "sentiment_counts": { + "POSITIVE": 25, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.8928571428571429, + "NEGATIVE": 0.10714285714285714 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8928571428571429 + ] + }, + "final_label": "POSITIVE", + "final_count": 64, + "final_proportion": 0.8648648648648649, + "final_counts": { + "POSITIVE": 64, + "NEGATIVE": 10 + }, + "final_distribution": { + "POSITIVE": 0.8648648648648649, + "NEGATIVE": 0.13513513513513514 + } + } + }, + { + "season_code": "202301", + "requirements": "", + "description": "The course takes up a pressing topic from the sciences and looks at it from the angle of the humanities: how are ecological crises, how is\u2013most specifically and urgently\u2013our current climate crisis represented and reflected upon in non-scientific public discourse: in journalism, in the social media, in literature, and in film? With a focus on, but not limited to literary texts, the course draws on established categories of literary analysis, such as plot patterns or the techniques of narration and/vs. description, and links them to philosophical concepts such as Karen Barad\u2019s agential realism and Donna Haraway\u2019s \"chthulucene.\" In so doing the course not only looks into (and questions) the common accusation that literature is conspicuously silent when it comes to the matter of the climate crisis, but also investigates (literary and non-literary) ecological narration as situated at the intersection of representation and ethics. Literary readings include Adalbert Stifter, Amitav Ghosh, W.G. Sebald, Ian McEwan, Judith Hermann, Ilija Trojanow, and Kim Stanley Robinson.", "short_title": "Ecology, Ecocriticism, and Na...", "title": "Ecology, Ecocriticism, and Narration", "school": "YC", @@ -188679,7 +413938,7 @@ "9:25", "11:15", "HQ C11 - Humanities Quadrangle C11", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -188693,10 +413952,99 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85992\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85992/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988914132118225, + 0.9989128112792969, + 0.9985442161560059, + 0.998870313167572, + 0.9988595247268677 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987063407897949, + 0.9989110231399536, + 0.998933732509613, + 0.9989099502563477 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987555742263794, + 0.9989058971405029, + 0.9989321827888489 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 12 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -188737,7 +414085,7 @@ "9:00", "10:15", "WLH 204 - William L. Harkness Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -188745,7 +414093,7 @@ "9:00", "10:15", "WLH 204 - William L. Harkness Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -188761,10 +414109,137 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85871\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/85871/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9978925585746765, + 0.9988378882408142, + 0.9985920786857605, + 0.9988939166069031, + 0.9987210631370544, + 0.9984429478645325, + 0.9987871050834656, + 0.9976330995559692, + 0.9988744854927063, + 0.994478702545166 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9944429993629456, + 0.99294114112854, + 0.9989262223243713, + 0.99542635679245, + 0.9989266991615295, + 0.9988217949867249, + 0.9982560276985168, + 0.9989297986030579, + 0.9988956451416016, + 0.9878081679344177, + 0.9949482679367065 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8181818181818182, + "NEGATIVE": 0.18181818181818182 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8181818181818182 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.998847246170044, + 0.9886991381645203, + 0.998894989490509, + 0.9986215829849243, + 0.9987128973007202, + 0.9988466501235962, + 0.9988441467285156, + 0.9876899719238281, + 0.9980016350746155 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.7777777777777778, + "NEGATIVE": 0.2222222222222222 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7777777777777778 + ] + }, + "final_label": "POSITIVE", + "final_count": 26, + "final_proportion": 0.8666666666666667, + "final_counts": { + "POSITIVE": 26, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.8666666666666667, + "NEGATIVE": 0.13333333333333333 + } + } }, { "season_code": "202301", @@ -188802,7 +414277,7 @@ "9:25", "11:15", "HQ C07 - Humanities Quadrangle C07", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -188818,10 +414293,125 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84090\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84090/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988918900489807, + 0.9989309906959534, + 0.9988710284233093, + 0.9987903237342834, + 0.998619794845581, + 0.9987683892250061, + 0.9985923171043396, + 0.9985895752906799 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988358616828918, + 0.9987603425979614, + 0.9988905787467957, + 0.9989215135574341, + 0.998881995677948, + 0.998559296131134, + 0.9988904595375061, + 0.9982232451438904 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989145994186401, + 0.9986051917076111, + 0.9989280104637146, + 0.9989308714866638, + 0.9988842606544495, + 0.9988605976104736, + 0.9989292025566101, + 0.9989288449287415, + 0.9985693693161011 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 25, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 25 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -188864,7 +414454,7 @@ "13:30", "15:20", "WLH 210 - William L. Harkness Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -188880,10 +414470,111 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84129\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84129/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988349080085754, + 0.9989114999771118, + 0.9988352656364441, + 0.9988980293273926, + 0.9981107711791992, + 0.9989091157913208 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998519241809845, + 0.9988806843757629, + 0.9989018440246582, + 0.9989277720451355, + 0.9988627433776855, + 0.998831570148468 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988400340080261, + 0.9989107847213745, + 0.9988746047019958, + 0.9989101886749268, + 0.9985346794128418, + 0.9982048273086548 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 18 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -188924,7 +414615,7 @@ "15:30", "17:20", "HQ 127 - Humanities Quadrangle 127", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Saturday": [ @@ -188932,7 +414623,7 @@ "19:00", "22:00", "HQ L01 - Humanities Quadrangle L01", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -188941,7 +414632,7 @@ "Hu" ], "flags": [ - "YC English: 20th\/21st Century", + "YC English: 20th/21st Century", "YC English: Junior Seminar", "YC FILM: Critical Studies" ], @@ -188950,10 +414641,99 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85688\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85688/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989221096038818, + 0.9986999034881592, + 0.998695433139801, + 0.9988186955451965 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989305138587952, + 0.9988945126533508, + 0.9967267513275146, + 0.9988848567008972 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988598823547363, + 0.9987875819206238, + 0.9988920092582703, + 0.9989221096038818 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 12 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -188990,7 +414770,7 @@ "9:25", "11:15", "WLH 203 - William L. Harkness Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -189006,10 +414786,107 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85973\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85973/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982466697692871, + 0.9987773299217224, + 0.9987875819206238, + 0.998909592628479, + 0.9988699555397034 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988285899162292, + 0.9988411068916321, + 0.9989097118377686, + 0.9988136291503906, + 0.9988718628883362 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988778233528137, + 0.9988859295845032, + 0.9989030361175537, + 0.9981922507286072, + 0.9988584518432617, + 0.9989325404167175 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 16 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -189047,7 +414924,7 @@ "15:30", "17:20", "HQ C65 - Humanities Quadrangle C65", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -189061,10 +414938,103 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85889\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85889/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989240765571594, + 0.9987986087799072, + 0.99893718957901, + 0.9989351630210876 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988700747489929, + 0.99892657995224, + 0.998661994934082, + 0.9989362359046936, + 0.9989296793937683 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989320635795593, + 0.9988880753517151, + 0.9989175796508789, + 0.9989320635795593, + 0.9989211559295654 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 14 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -189110,7 +415080,7 @@ "13:30", "15:20", "WLH 202 - William L. Harkness Hall 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -189130,10 +415100,93 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84127\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84127/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998846173286438, + 0.9987742304801941, + 0.9987353682518005 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989000558853149, + 0.9988996982574463, + 0.9988102912902832 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989320635795593, + 0.9989295601844788, + 0.9988728165626526 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 9 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -189176,7 +415229,84 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984819293022156, + 0.9976551532745361 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9977409839630127, + 0.9952143430709839 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988254904747009 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 4, + "final_proportion": 0.8, + "final_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + } + } }, { "season_code": "202301", @@ -189219,7 +415349,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -189256,7 +415414,7 @@ "11:35", "12:50", "ML 104 - Mason Laboratory 104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ], "Thursday": [ @@ -189264,7 +415422,7 @@ "11:35", "12:50", "ML 104 - Mason Laboratory 104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ] }, @@ -189278,10 +415436,129 @@ "classnotes": "", "final_exam": "Monday, May 8, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84419\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84419/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988422989845276, + 0.9976440072059631, + 0.998855710029602, + 0.9984601736068726, + 0.9980407357215881, + 0.9989246726036072, + 0.9989031553268433 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9951894283294678, + 0.9978640675544739, + 0.9988310933113098, + 0.9976440072059631, + 0.9988823533058167, + 0.998806357383728, + 0.998870313167572, + 0.9949960708618164 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994675517082214, + 0.9983585476875305, + 0.9989380240440369, + 0.9948394894599915, + 0.9955421090126038, + 0.9976440072059631, + 0.992379903793335, + 0.998933732509613, + 0.9978315234184265, + 0.9989237189292908, + 0.9989191293716431 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 8 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2727272727272727, + "POSITIVE": 0.7272727272727273 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7272727272727273 + ] + }, + "final_label": "POSITIVE", + "final_count": 21, + "final_proportion": 0.8076923076923077, + "final_counts": { + "POSITIVE": 21, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.8076923076923077, + "NEGATIVE": 0.19230769230769232 + } + } }, { "season_code": "202301", @@ -189318,7 +415595,7 @@ "9:00", "10:15", "LOM 206 - Leet Oliver Memorial Hall 206", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ], "Thursday": [ @@ -189326,7 +415603,7 @@ "9:00", "10:15", "LOM 206 - Leet Oliver Memorial Hall 206", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ] }, @@ -189340,10 +415617,123 @@ "classnotes": "", "final_exam": "Monday, May 8, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84422\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84422/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9666237235069275, + 0.9988682270050049, + 0.9984287619590759, + 0.9976716637611389, + 0.9965254664421082, + 0.9988071918487549, + 0.9969852566719055, + 0.9987492561340332 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 7 + }, + "sentiment_distribution": { + "NEGATIVE": 0.125, + "POSITIVE": 0.875 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9666237235069275, + 0.9989217519760132, + 0.9989340901374817, + 0.9988521337509155, + 0.9988090991973877, + 0.9988762736320496, + 0.9986658096313477 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 6 + }, + "sentiment_distribution": { + "NEGATIVE": 0.14285714285714285, + "POSITIVE": 0.8571428571428571 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9986853003501892, + 0.9989181756973267, + 0.99885094165802, + 0.9988771080970764, + 0.9987515211105347, + 0.9989156723022461, + 0.998282790184021, + 0.9904890060424805 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 0.8695652173913043, + "final_counts": { + "NEGATIVE": 3, + "POSITIVE": 20 + }, + "final_distribution": { + "NEGATIVE": 0.13043478260869565, + "POSITIVE": 0.8695652173913043 + } + } }, { "season_code": "202301", @@ -189380,7 +415770,7 @@ "11:35", "12:50", "LOM 200 - Leet Oliver Memorial Hall 200", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ], "Thursday": [ @@ -189388,7 +415778,7 @@ "11:35", "12:50", "LOM 200 - Leet Oliver Memorial Hall 200", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ] }, @@ -189402,10 +415792,121 @@ "classnotes": "", "final_exam": "Monday, May 8, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84427\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84427/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.997885525226593, + 0.992223858833313, + 0.998908281326294, + 0.9989067316055298, + 0.9987340569496155, + 0.998798131942749, + 0.9985924363136292 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988030195236206, + 0.997795820236206, + 0.9910109043121338, + 0.9994950294494629, + 0.9988610744476318, + 0.9988534450531006, + 0.9994889497756958, + 0.9980633854866028 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987998008728027, + 0.9955449104309082, + 0.9994915723800659, + 0.9989253878593445, + 0.9988735318183899, + 0.9981762170791626, + 0.9986581802368164 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 0.8181818181818182, + "final_counts": { + "POSITIVE": 18, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.8181818181818182, + "NEGATIVE": 0.18181818181818182 + } + } }, { "season_code": "202301", @@ -189458,10 +415959,38 @@ "classnotes": "", "final_exam": "Monday, May 8, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84427\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84427/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -189498,7 +416027,7 @@ "11:35", "12:50", "LOM 206 - Leet Oliver Memorial Hall 206", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ], "Thursday": [ @@ -189506,7 +416035,7 @@ "11:35", "12:50", "LOM 206 - Leet Oliver Memorial Hall 206", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ] }, @@ -189520,10 +416049,95 @@ "classnotes": "", "final_exam": "Monday, May 8, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85213\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85213/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986704587936401, + 0.9989219903945923 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988527297973633, + 0.9995032548904419, + 0.9994903802871704, + 0.9988642930984497 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988837838172913, + 0.9989054203033447, + 0.9988539218902588 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 0.7777777777777778, + "final_counts": { + "POSITIVE": 7, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.7777777777777778, + "NEGATIVE": 0.2222222222222222 + } + } }, { "season_code": "202301", @@ -189560,7 +416174,7 @@ "9:00", "10:15", "LOM 205 - Leet Oliver Memorial Hall 205", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ], "Thursday": [ @@ -189568,7 +416182,7 @@ "9:00", "10:15", "LOM 205 - Leet Oliver Memorial Hall 205", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ] }, @@ -189582,10 +416196,95 @@ "classnotes": "", "final_exam": "Monday, May 8, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84429\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84429/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988921284675598, + 0.998598039150238, + 0.9972894191741943 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998374342918396, + 0.9989045858383179 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 1 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9987266659736633, + 0.9959652423858643, + 0.9989157915115356, + 0.9994907379150391 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 0.6666666666666666, + "final_counts": { + "POSITIVE": 6, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + } + } }, { "season_code": "202301", @@ -189622,7 +416321,7 @@ "11:35", "12:50", "LOM 205 - Leet Oliver Memorial Hall 205", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ], "Thursday": [ @@ -189630,7 +416329,7 @@ "11:35", "12:50", "LOM 205 - Leet Oliver Memorial Hall 205", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ] }, @@ -189644,10 +416343,137 @@ "classnotes": "", "final_exam": "Monday, May 8, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84433\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84433/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.932004988193512, + 0.9989311099052429, + 0.9987272620201111, + 0.9989181756973267, + 0.9902233481407166, + 0.9988466501235962, + 0.9984482526779175, + 0.9986419081687927, + 0.9988517761230469 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 8 + }, + "sentiment_distribution": { + "NEGATIVE": 0.1111111111111111, + "POSITIVE": 0.8888888888888888 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.999488353729248, + 0.9987542629241943, + 0.9986771941184998, + 0.9988006353378296, + 0.9988877177238464, + 0.9988685846328735, + 0.9989330172538757, + 0.9987983703613281, + 0.9980098605155945, + 0.9989351630210876 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 9 + }, + "sentiment_distribution": { + "NEGATIVE": 0.1, + "POSITIVE": 0.9 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9976245760917664, + 0.9988596439361572, + 0.9989317059516907, + 0.9926939010620117, + 0.998927652835846, + 0.9986186027526855, + 0.9960869550704956, + 0.9989147186279297, + 0.998439371585846, + 0.9988695979118347, + 0.9988552331924438 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 10 + }, + "sentiment_distribution": { + "NEGATIVE": 0.09090909090909091, + "POSITIVE": 0.9090909090909091 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9090909090909091 + ] + }, + "final_label": "POSITIVE", + "final_count": 27, + "final_proportion": 0.9, + "final_counts": { + "NEGATIVE": 3, + "POSITIVE": 27 + }, + "final_distribution": { + "NEGATIVE": 0.1, + "POSITIVE": 0.9 + } + } }, { "season_code": "202301", @@ -189684,7 +416510,7 @@ "14:30", "15:45", "LOM 205 - Leet Oliver Memorial Hall 205", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ], "Thursday": [ @@ -189692,7 +416518,7 @@ "14:30", "15:45", "LOM 205 - Leet Oliver Memorial Hall 205", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ] }, @@ -189706,10 +416532,123 @@ "classnotes": "", "final_exam": "Monday, May 8, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84436\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84436/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988802075386047, + 0.9977732300758362, + 0.9987277388572693, + 0.9986028075218201, + 0.9860413670539856, + 0.9989116191864014, + 0.9988402724266052, + 0.9989182949066162 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9995019435882568, + 0.9985974431037903, + 0.9989091157913208, + 0.9988217949867249, + 0.9958374500274658, + 0.9985401630401611, + 0.9986086487770081 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 6 + }, + "sentiment_distribution": { + "NEGATIVE": 0.14285714285714285, + "POSITIVE": 0.8571428571428571 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.99404376745224, + 0.9987713694572449, + 0.9984216690063477, + 0.998900294303894, + 0.9504246115684509, + 0.9953396320343018, + 0.9989238381385803, + 0.9988993406295776 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 7 + }, + "sentiment_distribution": { + "NEGATIVE": 0.125, + "POSITIVE": 0.875 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "final_label": "POSITIVE", + "final_count": 21, + "final_proportion": 0.9130434782608695, + "final_counts": { + "POSITIVE": 21, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9130434782608695, + "NEGATIVE": 0.08695652173913043 + } + } }, { "season_code": "202301", @@ -189746,7 +416685,7 @@ "11:35", "12:50", "HQ 133 - Humanities Quadrangle 133", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -189754,7 +416693,7 @@ "11:35", "12:50", "HQ 133 - Humanities Quadrangle 133", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -189768,10 +416707,97 @@ "classnotes": "", "final_exam": "Monday, May 8, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85943\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85943/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9980080723762512, + 0.8287034034729004, + 0.9988921284675598 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9975494742393494, + 0.998832643032074, + 0.9984683394432068 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9983450174331665, + 0.9962136149406433, + 0.9982553124427795, + 0.987470805644989 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 8, + "final_proportion": 0.8, + "final_counts": { + "POSITIVE": 8, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + } + } }, { "season_code": "202301", @@ -189808,7 +416834,7 @@ "9:00", "10:15", "LOM 214 - Leet Oliver Memorial Hall 214", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ], "Thursday": [ @@ -189816,7 +416842,7 @@ "9:00", "10:15", "LOM 214 - Leet Oliver Memorial Hall 214", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ] }, @@ -189830,10 +416856,125 @@ "classnotes": "", "final_exam": "Monday, May 8, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84440\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84440/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998810887336731, + 0.9988204836845398, + 0.9988045692443848, + 0.9988228678703308, + 0.9988065958023071, + 0.9985226988792419, + 0.9934101700782776, + 0.9981938004493713 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981551766395569, + 0.9989218711853027, + 0.9861739873886108, + 0.9941425919532776, + 0.9960290193557739, + 0.9995015859603882, + 0.9944515824317932, + 0.9986347556114197, + 0.9977729916572571 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.5555555555555556, + "NEGATIVE": 0.4444444444444444 + }, + "sentiment_overall": [ + "POSITIVE", + 0.5555555555555556 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988579750061035, + 0.998660683631897, + 0.9989010095596313, + 0.9858641028404236, + 0.9979870319366455, + 0.9989369511604309, + 0.9985796213150024 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 0.7916666666666666, + "final_counts": { + "POSITIVE": 19, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.7916666666666666, + "NEGATIVE": 0.20833333333333334 + } + } }, { "season_code": "202301", @@ -189870,7 +417011,7 @@ "11:35", "12:50", "LOM 214 - Leet Oliver Memorial Hall 214", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ], "Thursday": [ @@ -189878,7 +417019,7 @@ "11:35", "12:50", "LOM 214 - Leet Oliver Memorial Hall 214", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ] }, @@ -189892,10 +417033,153 @@ "classnotes": "", "final_exam": "Monday, May 8, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84444\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84444/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986739158630371, + 0.998069703578949, + 0.9985621571540833, + 0.99887615442276, + 0.9899184107780457, + 0.9987562894821167, + 0.9987598657608032, + 0.9987492561340332, + 0.9986624717712402, + 0.9984727501869202, + 0.9986090064048767, + 0.9340547919273376 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9985842704772949, + 0.99888676404953, + 0.9989187717437744, + 0.9987602233886719, + 0.9986577033996582, + 0.9994359612464905, + 0.9989080429077148, + 0.998916745185852, + 0.9989066123962402, + 0.9988349080085754, + 0.9988905787467957, + 0.998918890953064, + 0.9993336796760559 + ], + "sentiment_counts": { + "NEGATIVE": 4, + "POSITIVE": 9 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3076923076923077, + "POSITIVE": 0.6923076923076923 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6923076923076923 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9987382292747498, + 0.9982553124427795, + 0.9865178465843201, + 0.9985553622245789, + 0.9942242503166199, + 0.9988250136375427, + 0.9988806843757629, + 0.9974592328071594, + 0.9979567527770996, + 0.9982748031616211, + 0.9987998008728027, + 0.9988259673118591, + 0.9994682669639587 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9230769230769231, + "NEGATIVE": 0.07692307692307693 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9230769230769231 + ] + }, + "final_label": "POSITIVE", + "final_count": 33, + "final_proportion": 0.868421052631579, + "final_counts": { + "POSITIVE": 33, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.868421052631579, + "NEGATIVE": 0.13157894736842105 + } + } }, { "season_code": "202301", @@ -189948,10 +417232,38 @@ "classnotes": "", "final_exam": "Monday, May 8, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84359\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84359/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -189988,7 +417300,7 @@ "9:00", "10:15", "LOM 214 - Leet Oliver Memorial Hall 214", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ], "Wednesday": [ @@ -189996,7 +417308,7 @@ "9:00", "10:15", "LOM 214 - Leet Oliver Memorial Hall 214", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ] }, @@ -190010,10 +417322,133 @@ "classnotes": "", "final_exam": "Monday, May 8, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84366\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84366/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987254738807678, + 0.9986629486083984, + 0.9989250302314758, + 0.9615036845207214, + 0.9985731840133667, + 0.9987344145774841, + 0.9988490343093872, + 0.9982901215553284, + 0.9975457787513733 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988723397254944, + 0.9934822916984558, + 0.9995017051696777, + 0.9988969564437866, + 0.9923675656318665, + 0.9988898634910583, + 0.9987962245941162, + 0.9989369511604309, + 0.998862624168396 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.7777777777777778, + "NEGATIVE": 0.2222222222222222 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7777777777777778 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9873819947242737, + 0.9988948702812195, + 0.9988345503807068, + 0.9989312291145325, + 0.9974592328071594, + 0.9924588799476624, + 0.998241662979126, + 0.9988459348678589, + 0.998893678188324, + 0.9988588094711304 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 25, + "final_proportion": 0.8928571428571429, + "final_counts": { + "POSITIVE": 25, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.8928571428571429, + "NEGATIVE": 0.10714285714285714 + } + } }, { "season_code": "202301", @@ -190050,7 +417485,7 @@ "11:35", "12:50", "LOM 214 - Leet Oliver Memorial Hall 214", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ], "Wednesday": [ @@ -190058,7 +417493,7 @@ "11:35", "12:50", "LOM 214 - Leet Oliver Memorial Hall 214", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ] }, @@ -190072,10 +417507,143 @@ "classnotes": "", "final_exam": "Monday, May 8, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84371\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84371/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989067316055298, + 0.9976422190666199, + 0.99868243932724, + 0.9985899329185486, + 0.9666237235069275, + 0.9986315369606018, + 0.9988738894462585, + 0.9987917542457581, + 0.9974899291992188, + 0.9935901165008545 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.8031229376792908, + 0.9994931221008301, + 0.998924195766449, + 0.999498724937439, + 0.9985865354537964, + 0.9666237235069275, + 0.9988154172897339, + 0.998909592628479, + 0.9992490410804749, + 0.9995086193084717, + 0.9988617897033691 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 6 + }, + "sentiment_distribution": { + "POSITIVE": 0.45454545454545453, + "NEGATIVE": 0.5454545454545454 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.998872697353363, + 0.9928029179573059, + 0.9989328980445862, + 0.9955400824546814, + 0.988860011100769, + 0.9987706542015076, + 0.9666237235069275, + 0.9988880753517151, + 0.998766303062439, + 0.99946528673172, + 0.9984283447265625, + 0.9995025396347046 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 5 + }, + "sentiment_distribution": { + "POSITIVE": 0.5833333333333334, + "NEGATIVE": 0.4166666666666667 + }, + "sentiment_overall": [ + "POSITIVE", + 0.5833333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 21, + "final_proportion": 0.6363636363636364, + "final_counts": { + "POSITIVE": 21, + "NEGATIVE": 12 + }, + "final_distribution": { + "POSITIVE": 0.6363636363636364, + "NEGATIVE": 0.36363636363636365 + } + } }, { "season_code": "202301", @@ -190112,7 +417680,7 @@ "14:30", "15:45", "LOM 214 - Leet Oliver Memorial Hall 214", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ], "Wednesday": [ @@ -190120,7 +417688,7 @@ "14:30", "15:45", "LOM 214 - Leet Oliver Memorial Hall 214", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ] }, @@ -190134,10 +417702,123 @@ "classnotes": "", "final_exam": "Monday, May 8, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84377\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84377/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988430738449097, + 0.9901651740074158, + 0.9988829493522644, + 0.9988412261009216, + 0.998734176158905, + 0.9962582588195801, + 0.9944232106208801 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.7142857142857143, + "NEGATIVE": 0.2857142857142857 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7142857142857143 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.998900294303894, + 0.9993428587913513, + 0.9987912774085999, + 0.9978505373001099, + 0.9989257454872131, + 0.9977013468742371, + 0.9962582588195801, + 0.9994403719902039 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.625, + "NEGATIVE": 0.375 + }, + "sentiment_overall": [ + "POSITIVE", + 0.625 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989107847213745, + 0.9989172220230103, + 0.9893497228622437, + 0.9969384670257568, + 0.9989064931869507, + 0.9989200830459595, + 0.9962582588195801, + 0.5453629493713379 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 0.6956521739130435, + "final_counts": { + "POSITIVE": 16, + "NEGATIVE": 7 + }, + "final_distribution": { + "POSITIVE": 0.6956521739130435, + "NEGATIVE": 0.30434782608695654 + } + } }, { "season_code": "202301", @@ -190174,7 +417855,7 @@ "11:35", "12:50", "WTS B52 - Watson Center 60 Sachem Street B52", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -190182,7 +417863,7 @@ "11:35", "12:50", "WTS B52 - Watson Center 60 Sachem Street B52", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -190196,10 +417877,119 @@ "classnotes": "", "final_exam": "Monday, May 8, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85944\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85944/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9770528078079224, + 0.9988658428192139, + 0.9981751441955566, + 0.9979075193405151, + 0.9985496401786804, + 0.9987586736679077, + 0.9988598823547363 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9974073767662048, + 0.9851242899894714, + 0.9992035031318665, + 0.9994555115699768, + 0.9779967665672302, + 0.9993539452552795, + 0.9987931251525879 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.42857142857142855, + "NEGATIVE": 0.5714285714285714 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.5714285714285714 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9916146993637085, + 0.999488353729248, + 0.9954352974891663, + 0.9932318925857544, + 0.9923174381256104, + 0.9994174242019653, + 0.9994543194770813 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 6 + }, + "sentiment_distribution": { + "POSITIVE": 0.14285714285714285, + "NEGATIVE": 0.8571428571428571 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.8571428571428571 + ] + }, + "final_label": "neutral", + "final_count": 11, + "final_proportion": 0.5, + "final_counts": { + "POSITIVE": 11, + "NEGATIVE": 10 + }, + "final_distribution": { + "POSITIVE": 0.5238095238095238, + "NEGATIVE": 0.47619047619047616 + } + } }, { "season_code": "202301", @@ -190236,7 +418026,7 @@ "14:30", "15:45", "WTS A53 - Watson Center 60 Sachem Street A53", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -190244,7 +418034,7 @@ "14:30", "15:45", "WTS A53 - Watson Center 60 Sachem Street A53", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -190258,10 +418048,133 @@ "classnotes": "", "final_exam": "Wednesday, May 10, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84381\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84381/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9987291693687439, + 0.998044490814209, + 0.9971932768821716, + 0.998538613319397, + 0.9975109100341797, + 0.9987741112709045, + 0.9986269474029541, + 0.9985212683677673, + 0.989024817943573 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9986133575439453, + 0.9994699358940125, + 0.996577799320221, + 0.9979507327079773, + 0.9988824725151062, + 0.9980939030647278, + 0.9988564252853394, + 0.9987937211990356, + 0.9994992017745972 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988462924957275, + 0.9947465062141418, + 0.9983974099159241, + 0.9987884163856506, + 0.9763439893722534, + 0.9983709454536438, + 0.9893368482589722, + 0.9981834292411804, + 0.9868794083595276, + 0.9960928559303284 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 6 + }, + "sentiment_distribution": { + "POSITIVE": 0.4, + "NEGATIVE": 0.6 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.6 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 0.6428571428571429, + "final_counts": { + "POSITIVE": 18, + "NEGATIVE": 10 + }, + "final_distribution": { + "POSITIVE": 0.6428571428571429, + "NEGATIVE": 0.35714285714285715 + } + } }, { "season_code": "202301", @@ -190298,7 +418211,7 @@ "9:00", "10:15", "LOM 215 - Leet Oliver Memorial Hall 215", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ], "Thursday": [ @@ -190306,7 +418219,7 @@ "9:00", "10:15", "LOM 215 - Leet Oliver Memorial Hall 215", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ] }, @@ -190320,10 +418233,163 @@ "classnotes": "", "final_exam": "Monday, May 8, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84385\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84385/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998234748840332, + 0.9696781635284424, + 0.9988241791725159, + 0.9986841082572937, + 0.9987806677818298, + 0.956885576248169, + 0.9971702694892883, + 0.9988633394241333, + 0.9986907839775085, + 0.9988289475440979, + 0.9983296990394592, + 0.9987654685974121, + 0.9975835084915161, + 0.9988271594047546, + 0.9986752867698669 + ], + "sentiment_counts": { + "POSITIVE": 14, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9333333333333333, + "NEGATIVE": 0.06666666666666667 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9333333333333333 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986168146133423, + 0.9988295435905457, + 0.9943736791610718, + 0.9989330172538757, + 0.9989128112792969, + 0.998218834400177, + 0.9990328550338745, + 0.9986832737922668, + 0.9987363219261169, + 0.998777449131012, + 0.9992430210113525, + 0.9981483221054077, + 0.9988646507263184, + 0.9988644123077393 + ], + "sentiment_counts": { + "NEGATIVE": 4, + "POSITIVE": 10 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2857142857142857, + "POSITIVE": 0.7142857142857143 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7142857142857143 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989331364631653, + 0.9988859295845032, + 0.9976194500923157, + 0.9988800883293152, + 0.9980547428131104, + 0.9976493716239929, + 0.9849088788032532, + 0.9988573789596558, + 0.9930633902549744, + 0.9973105192184448, + 0.9988605976104736, + 0.9994457364082336, + 0.997687816619873, + 0.9989258646965027 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.7857142857142857, + "NEGATIVE": 0.21428571428571427 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7857142857142857 + ] + }, + "final_label": "POSITIVE", + "final_count": 35, + "final_proportion": 0.813953488372093, + "final_counts": { + "POSITIVE": 35, + "NEGATIVE": 8 + }, + "final_distribution": { + "POSITIVE": 0.813953488372093, + "NEGATIVE": 0.18604651162790697 + } + } }, { "season_code": "202301", @@ -190360,7 +418426,7 @@ "11:35", "12:50", "LOM 215 - Leet Oliver Memorial Hall 215", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ], "Thursday": [ @@ -190368,7 +418434,7 @@ "11:35", "12:50", "LOM 215 - Leet Oliver Memorial Hall 215", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ] }, @@ -190382,10 +418448,165 @@ "classnotes": "", "final_exam": "Monday, May 8, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84389\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84389/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9950843453407288, + 0.9986147880554199, + 0.9985347986221313, + 0.9987768530845642, + 0.997968852519989, + 0.9988935589790344, + 0.9986656904220581, + 0.9987976551055908, + 0.9988535642623901, + 0.998862624168396, + 0.9978271126747131, + 0.9989192485809326 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988604784011841, + 0.9949753284454346, + 0.9994710087776184, + 0.9988706707954407, + 0.9969488978385925, + 0.9961284399032593, + 0.9816848635673523, + 0.9925143122673035, + 0.9991342425346375, + 0.9827523827552795, + 0.9989155530929565, + 0.9984784722328186, + 0.9994888305664062, + 0.998870313167572, + 0.9989390969276428, + 0.9989166259765625 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 6 + }, + "sentiment_distribution": { + "POSITIVE": 0.625, + "NEGATIVE": 0.375 + }, + "sentiment_overall": [ + "POSITIVE", + 0.625 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9955074787139893, + 0.9994593262672424, + 0.9994807839393616, + 0.9986242055892944, + 0.9994924068450928, + 0.9985085129737854, + 0.9938591122627258, + 0.998412013053894, + 0.9985219836235046, + 0.998675525188446, + 0.9987413287162781, + 0.9989234805107117, + 0.9490211009979248, + 0.9988779425621033, + 0.998934805393219, + 0.9989076852798462 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 34, + "final_proportion": 0.7727272727272727, + "final_counts": { + "POSITIVE": 34, + "NEGATIVE": 10 + }, + "final_distribution": { + "POSITIVE": 0.7727272727272727, + "NEGATIVE": 0.22727272727272727 + } + } }, { "season_code": "202301", @@ -190422,7 +418643,7 @@ "14:30", "15:45", "LOM 215 - Leet Oliver Memorial Hall 215", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ], "Thursday": [ @@ -190430,7 +418651,7 @@ "14:30", "15:45", "LOM 215 - Leet Oliver Memorial Hall 215", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ] }, @@ -190444,10 +418665,103 @@ "classnotes": "", "final_exam": "Monday, May 8, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84392\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84392/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.99885094165802, + 0.9945886135101318, + 0.9984360337257385 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994930028915405, + 0.9927875399589539, + 0.9988334774971008, + 0.9985368251800537, + 0.9982621073722839 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 4 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2, + "POSITIVE": 0.8 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994834661483765, + 0.9994871616363525, + 0.9989182949066162, + 0.9984539747238159, + 0.9988318085670471 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.4, + "POSITIVE": 0.6 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 0.7692307692307693, + "final_counts": { + "POSITIVE": 10, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.7692307692307693, + "NEGATIVE": 0.23076923076923078 + } + } }, { "season_code": "202301", @@ -190484,7 +418798,7 @@ "9:00", "10:15", "LOM 215 - Leet Oliver Memorial Hall 215", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ], "Wednesday": [ @@ -190492,7 +418806,7 @@ "9:00", "10:15", "LOM 215 - Leet Oliver Memorial Hall 215", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ] }, @@ -190506,10 +418820,111 @@ "classnotes": "", "final_exam": "Monday, May 8, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84396\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84396/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9972882270812988, + 0.9452779293060303, + 0.9984499216079712, + 0.9750720262527466, + 0.9987595081329346, + 0.9985138773918152 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9907004237174988, + 0.9969704151153564, + 0.9858152866363525, + 0.9987686276435852, + 0.9985590577125549, + 0.9977274537086487, + 0.9986758828163147 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984429478645325, + 0.997117280960083, + 0.9981920123100281, + 0.9985789060592651 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.25, + "POSITIVE": 0.75 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 0.8823529411764706, + "final_counts": { + "POSITIVE": 15, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8823529411764706, + "NEGATIVE": 0.11764705882352941 + } + } }, { "season_code": "202301", @@ -190546,7 +418961,7 @@ "11:35", "12:50", "LOM 215 - Leet Oliver Memorial Hall 215", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ], "Wednesday": [ @@ -190554,7 +418969,7 @@ "11:35", "12:50", "LOM 215 - Leet Oliver Memorial Hall 215", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ] }, @@ -190568,10 +418983,91 @@ "classnotes": "", "final_exam": "Monday, May 8, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84400\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84400/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988765120506287, + 0.9984239339828491 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9952231049537659, + 0.9732710719108582 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9994885921478271, + 0.9988320469856262, + 0.9994857311248779 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 1 + }, + "sentiment_distribution": { + "NEGATIVE": 0.6666666666666666, + "POSITIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 5, + "final_proportion": 0.7142857142857143, + "final_counts": { + "POSITIVE": 5, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.7142857142857143, + "NEGATIVE": 0.2857142857142857 + } + } }, { "season_code": "202301", @@ -190608,7 +419104,7 @@ "14:30", "15:45", "LOM 215 - Leet Oliver Memorial Hall 215", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ], "Wednesday": [ @@ -190616,7 +419112,7 @@ "14:30", "15:45", "LOM 215 - Leet Oliver Memorial Hall 215", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ] }, @@ -190630,14 +419126,117 @@ "classnotes": "", "final_exam": "Monday, May 8, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84404\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84404/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "Prerequisite: MATH 115 or 116, or placement into MATH 120\/121 on the Mathematics placement exam. May not be taken after MATH 120.\u00a0", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9979164004325867, + 0.9973875880241394, + 0.995032548904419, + 0.9987450838088989, + 0.9984423518180847, + 0.9981812238693237 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9986667633056641, + 0.9994944334030151, + 0.9994439482688904, + 0.9972062706947327, + 0.9995148181915283, + 0.9892388582229614 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.3333333333333333, + "NEGATIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9950546026229858, + 0.9756244421005249, + 0.9958640336990356, + 0.9941965341567993, + 0.9995031356811523, + 0.9986525774002075 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 0.6111111111111112, + "final_counts": { + "POSITIVE": 11, + "NEGATIVE": 7 + }, + "final_distribution": { + "POSITIVE": 0.6111111111111112, + "NEGATIVE": 0.3888888888888889 + } + } + }, + { + "season_code": "202301", + "requirements": "Prerequisite: MATH 115 or 116, or placement into MATH 120/121 on the Mathematics placement exam. May not be taken after MATH 120.\u00a0", "description": "Mathematical modeling for the biosciences, with a strong focus on multivariable calculus techniques. Applications may include epidemiological models, mathematical foundations of virus and antiviral dynamics, ion channel models and cardiac arrhythmias, and evolutionary models of disease.", "short_title": "Mathematical Models in the Bi...", "title": "Mathematical Models in the Biosciences II: Advanced Techniques", @@ -190670,7 +419269,7 @@ "9:00", "10:15", "LOM 200 - Leet Oliver Memorial Hall 200", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ], "Thursday": [ @@ -190678,7 +419277,7 @@ "9:00", "10:15", "LOM 200 - Leet Oliver Memorial Hall 200", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ] }, @@ -190692,10 +419291,153 @@ "classnotes": "", "final_exam": "Tuesday, May 9, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84408\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84408/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984616041183472, + 0.9987623691558838, + 0.9986708164215088, + 0.9987963438034058, + 0.9983910918235779, + 0.9988896250724792, + 0.9987057447433472, + 0.9987174272537231, + 0.9988270401954651, + 0.9987961053848267, + 0.9988812804222107, + 0.9986767172813416 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988490343093872, + 0.9885474443435669, + 0.9988711476325989, + 0.9988642930984497, + 0.9994780421257019, + 0.9988659620285034, + 0.9989217519760132, + 0.9989016056060791, + 0.992205798625946, + 0.9989153146743774, + 0.9988890290260315, + 0.9989190101623535, + 0.9988791346549988 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8461538461538461, + "NEGATIVE": 0.15384615384615385 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8461538461538461 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989381432533264, + 0.9995012283325195, + 0.9989323019981384, + 0.9989261031150818, + 0.9942163228988647, + 0.998930037021637, + 0.9988962411880493, + 0.9989161491394043, + 0.99764484167099, + 0.998923122882843, + 0.998889148235321, + 0.9989303946495056, + 0.9911850094795227 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8461538461538461, + "NEGATIVE": 0.15384615384615385 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8461538461538461 + ] + }, + "final_label": "POSITIVE", + "final_count": 34, + "final_proportion": 0.8947368421052632, + "final_counts": { + "POSITIVE": 34, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.8947368421052632, + "NEGATIVE": 0.10526315789473684 + } + } }, { "season_code": "202301", @@ -190734,7 +419476,7 @@ "11:35", "12:50", "WTS A53 - Watson Center 60 Sachem Street A53", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -190742,7 +419484,7 @@ "11:35", "12:50", "WTS A53 - Watson Center 60 Sachem Street A53", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -190756,10 +419498,179 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83377\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83377/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9948464632034302, + 0.9982507824897766, + 0.9963141083717346, + 0.9982019662857056, + 0.9983668923377991, + 0.9977389574050903, + 0.9987146854400635, + 0.998765230178833, + 0.9987815022468567, + 0.9913017153739929, + 0.998819887638092, + 0.9986207485198975, + 0.9988828301429749 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9230769230769231, + "NEGATIVE": 0.07692307692307693 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9230769230769231 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998881995677948, + 0.9989153146743774, + 0.9980708956718445, + 0.9988847374916077, + 0.9988052845001221, + 0.9994705319404602, + 0.9993419051170349, + 0.9969468712806702, + 0.998849630355835, + 0.9986109733581543, + 0.9987082481384277, + 0.9968881011009216, + 0.9988484382629395, + 0.9995112419128418, + 0.9995059967041016, + 0.9988731741905212 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 6 + }, + "sentiment_distribution": { + "POSITIVE": 0.625, + "NEGATIVE": 0.375 + }, + "sentiment_overall": [ + "POSITIVE", + 0.625 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988201260566711, + 0.9989193677902222, + 0.9988200068473816, + 0.9987913966178894, + 0.9984990358352661, + 0.9980016350746155, + 0.9989326596260071, + 0.9987144470214844, + 0.9986056685447693, + 0.9988431930541992, + 0.9980402588844299, + 0.997117280960083, + 0.9979859590530396, + 0.9988790154457092, + 0.997117280960083, + 0.9985122084617615, + 0.997117280960083, + 0.9908491373062134, + 0.9967213273048401, + 0.9984230995178223, + 0.9995108842849731, + 0.9985857009887695 + ], + "sentiment_counts": { + "POSITIVE": 18, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.8181818181818182, + "NEGATIVE": 0.18181818181818182 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8181818181818182 + ] + }, + "final_label": "POSITIVE", + "final_count": 40, + "final_proportion": 0.7843137254901961, + "final_counts": { + "POSITIVE": 40, + "NEGATIVE": 11 + }, + "final_distribution": { + "POSITIVE": 0.7843137254901961, + "NEGATIVE": 0.21568627450980393 + } + } }, { "season_code": "202301", @@ -190797,7 +419708,7 @@ "9:00", "10:15", "HQ 207 - Humanities Quadrangle 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -190805,7 +419716,7 @@ "9:00", "10:15", "HQ 207 - Humanities Quadrangle 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -190814,17 +419725,136 @@ ], "areas": [], "flags": [ - "YC Math: Algebra\/Number Theory" + "YC Math: Algebra/Number Theory" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "Monday, May 8, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84411\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84411/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985333681106567, + 0.9988006353378296, + 0.9989180564880371, + 0.9949824810028076, + 0.9952164888381958, + 0.9438489675521851, + 0.9978262782096863, + 0.9987988471984863 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988730549812317, + 0.9987461566925049, + 0.9989206790924072, + 0.9934950470924377, + 0.9989345669746399, + 0.9987359642982483, + 0.9987940788269043, + 0.9988021850585938 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987236857414246, + 0.9917808175086975, + 0.9989230036735535, + 0.9989338517189026, + 0.9988025426864624, + 0.9987727999687195, + 0.997117280960083, + 0.9852764010429382, + 0.9982774257659912, + 0.9982653260231018 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 25, + "final_proportion": 0.9615384615384616, + "final_counts": { + "POSITIVE": 25, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9615384615384616, + "NEGATIVE": 0.038461538461538464 + } + } }, { "season_code": "202301", @@ -190862,7 +419892,7 @@ "14:30", "15:45", "WTS A48 - Watson Center 60 Sachem Street A48", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -190870,7 +419900,7 @@ "14:30", "15:45", "WTS A48 - Watson Center 60 Sachem Street A48", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -190879,17 +419909,118 @@ ], "areas": [], "flags": [ - "YC Math: Algebra\/Number Theory" + "YC Math: Algebra/Number Theory" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "Monday, May 8, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84415\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84415/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9921532273292542, + 0.9984467625617981, + 0.9987290501594543, + 0.9987710118293762, + 0.9966170191764832 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9995028972625732, + 0.9988980293273926, + 0.9994925260543823, + 0.9983339905738831, + 0.997317373752594, + 0.9988710284233093, + 0.9994649291038513, + 0.9987812638282776 + ], + "sentiment_counts": { + "NEGATIVE": 5, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.625, + "POSITIVE": 0.375 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.625 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.999487042427063, + 0.9987112283706665, + 0.9987603425979614, + 0.9995025396347046 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 0.5882352941176471, + "final_counts": { + "POSITIVE": 10, + "NEGATIVE": 7 + }, + "final_distribution": { + "POSITIVE": 0.5882352941176471, + "NEGATIVE": 0.4117647058823529 + } + } }, { "season_code": "202301", @@ -190938,17 +420069,45 @@ ], "areas": [], "flags": [ - "YC Math: Algebra\/Number Theory" + "YC Math: Algebra/Number Theory" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "Monday, May 8, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84417\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84417/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -190986,7 +420145,7 @@ "11:35", "12:50", "WTS A30 - Watson Center 60 Sachem Street A30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -190994,7 +420153,7 @@ "11:35", "12:50", "WTS A30 - Watson Center 60 Sachem Street A30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -191003,17 +420162,150 @@ ], "areas": [], "flags": [ - "YC Math: Algebra\/Number Theory" + "YC Math: Algebra/Number Theory" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "Monday, May 8, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84420\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84420/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986065030097961, + 0.9987767338752747, + 0.9984695315361023, + 0.9987785220146179, + 0.9977103471755981, + 0.9988738894462585, + 0.9976143836975098, + 0.998704195022583, + 0.9995030164718628, + 0.9928072690963745, + 0.9976473450660706 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9090909090909091 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9987335801124573, + 0.998938262462616, + 0.9988571405410767, + 0.998884379863739, + 0.9988402724266052, + 0.9989342093467712, + 0.99891197681427, + 0.9988369345664978, + 0.9983844757080078, + 0.9991432428359985 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989007711410522, + 0.9988998174667358, + 0.998927652835846, + 0.9988768696784973, + 0.9983108043670654, + 0.9988935589790344, + 0.9984727501869202, + 0.9986710548400879, + 0.9995065927505493, + 0.9939270615577698, + 0.9968462586402893, + 0.9970671534538269 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9166666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 30, + "final_proportion": 0.9090909090909091, + "final_counts": { + "POSITIVE": 30, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + } + } }, { "season_code": "202301", @@ -191050,7 +420342,7 @@ "9:00", "10:15", "WTS A53 - Watson Center 60 Sachem Street A53", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -191058,7 +420350,7 @@ "9:00", "10:15", "WTS A53 - Watson Center 60 Sachem Street A53", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -191067,17 +420359,226 @@ ], "areas": [], "flags": [ - "YC Math: Algebra\/Number Theory" + "YC Math: Algebra/Number Theory" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "Monday, May 8, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84424\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84424/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9890239238739014, + 0.9986429810523987, + 0.9988501071929932, + 0.9943296909332275, + 0.9988229870796204, + 0.9977248311042786, + 0.9989070892333984, + 0.9988873600959778, + 0.9987143278121948, + 0.9984989166259766, + 0.9982299208641052, + 0.9987608194351196, + 0.9982263445854187, + 0.9987630844116211, + 0.9986847043037415, + 0.9985028505325317, + 0.9984495639801025, + 0.9979727864265442, + 0.997614860534668, + 0.9988691210746765, + 0.9987568855285645, + 0.9988162517547607, + 0.998528003692627, + 0.9986361861228943 + ], + "sentiment_counts": { + "POSITIVE": 24, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.998907208442688, + 0.9987689852714539, + 0.9979825019836426, + 0.9984827637672424, + 0.9966159462928772, + 0.9948898553848267, + 0.9988381266593933, + 0.998890221118927, + 0.998887836933136, + 0.9986302852630615, + 0.997986912727356, + 0.9985051155090332, + 0.9989221096038818, + 0.9978557229042053, + 0.9992338418960571, + 0.9995046854019165, + 0.9987931251525879, + 0.9989062547683716, + 0.9989194869995117, + 0.9977032542228699, + 0.9989124536514282, + 0.9989111423492432, + 0.9994990825653076 + ], + "sentiment_counts": { + "POSITIVE": 15, + "NEGATIVE": 8 + }, + "sentiment_distribution": { + "POSITIVE": 0.6521739130434783, + "NEGATIVE": 0.34782608695652173 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6521739130434783 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989370703697205, + 0.9986326098442078, + 0.9988693594932556, + 0.9969218373298645, + 0.9995043277740479, + 0.9981147050857544, + 0.9989252686500549, + 0.9987049102783203, + 0.991936206817627, + 0.9867754578590393, + 0.9987874627113342, + 0.9988013505935669, + 0.9977496266365051, + 0.9989249110221863, + 0.9986743927001953, + 0.9947537183761597, + 0.9969225525856018, + 0.9988164901733398, + 0.9989180564880371, + 0.99892657995224, + 0.9982559084892273, + 0.9991952776908875, + 0.9988401532173157, + 0.9993298053741455 + ], + "sentiment_counts": { + "POSITIVE": 19, + "NEGATIVE": 5 + }, + "sentiment_distribution": { + "POSITIVE": 0.7916666666666666, + "NEGATIVE": 0.20833333333333334 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7916666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 58, + "final_proportion": 0.8169014084507042, + "final_counts": { + "POSITIVE": 58, + "NEGATIVE": 13 + }, + "final_distribution": { + "POSITIVE": 0.8169014084507042, + "NEGATIVE": 0.18309859154929578 + } + } }, { "season_code": "202301", @@ -191114,7 +420615,7 @@ "13:00", "14:15", "LC 101 - Linsly-Chittenden Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -191122,7 +420623,7 @@ "13:00", "14:15", "LC 101 - Linsly-Chittenden Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -191131,17 +420632,282 @@ ], "areas": [], "flags": [ - "YC Math: Algebra\/Number Theory" + "YC Math: Algebra/Number Theory" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "Monday, May 8, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84425\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84425/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986938834190369, + 0.998775064945221, + 0.9982317090034485, + 0.9984991550445557, + 0.9955483675003052, + 0.9985432624816895, + 0.9984558820724487, + 0.9987571239471436, + 0.9983646273612976, + 0.9988980293273926, + 0.9984642267227173, + 0.9974049925804138, + 0.9989327788352966, + 0.9988324046134949, + 0.9986752867698669, + 0.9930304884910583, + 0.9973547458648682, + 0.9988985061645508, + 0.9988521337509155, + 0.9988455772399902, + 0.9989093542098999, + 0.9802338480949402, + 0.9988662004470825, + 0.9986270666122437, + 0.9984421133995056, + 0.998867392539978, + 0.9988648891448975, + 0.9987938404083252, + 0.9978508949279785, + 0.9988540410995483, + 0.9912686347961426, + 0.9988704323768616 + ], + "sentiment_counts": { + "POSITIVE": 28, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983431100845337, + 0.9988987445831299, + 0.9950234889984131, + 0.996391236782074, + 0.9972277283668518, + 0.9992832541465759, + 0.9995044469833374, + 0.998695433139801, + 0.9975981116294861, + 0.998853325843811, + 0.9994968175888062, + 0.9973588585853577, + 0.9986602067947388, + 0.9988541603088379, + 0.999506950378418, + 0.9991090893745422, + 0.9988048076629639, + 0.9989031553268433, + 0.9926130771636963, + 0.998150110244751, + 0.9984112977981567, + 0.9987761378288269, + 0.9988352656364441, + 0.9985787868499756, + 0.997911274433136, + 0.9897096753120422, + 0.999489426612854, + 0.9888982176780701, + 0.9927921295166016, + 0.9994754195213318, + 0.9988798499107361, + 0.9973794221878052, + 0.9993277788162231, + 0.9987712502479553 + ], + "sentiment_counts": { + "NEGATIVE": 12, + "POSITIVE": 22 + }, + "sentiment_distribution": { + "NEGATIVE": 0.35294117647058826, + "POSITIVE": 0.6470588235294118 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6470588235294118 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983184337615967, + 0.9988600015640259, + 0.996527373790741, + 0.9994698166847229, + 0.9988018274307251, + 0.9995112419128418, + 0.9995050430297852, + 0.9995075464248657, + 0.9988549947738647, + 0.9987512826919556, + 0.9993952512741089, + 0.9981423616409302, + 0.9994951486587524, + 0.9994964599609375, + 0.9984040856361389, + 0.9980986714363098, + 0.9980812072753906, + 0.9985129237174988, + 0.998050332069397, + 0.9994699358940125, + 0.9989321827888489, + 0.9982609152793884, + 0.9922804832458496, + 0.9989148378372192, + 0.9989258646965027, + 0.9993498921394348, + 0.9982093572616577, + 0.9978184700012207, + 0.9839900732040405, + 0.9952556490898132, + 0.999091386795044, + 0.9986733198165894, + 0.9989014863967896 + ], + "sentiment_counts": { + "NEGATIVE": 13, + "POSITIVE": 20 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3939393939393939, + "POSITIVE": 0.6060606060606061 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6060606060606061 + ] + }, + "final_label": "POSITIVE", + "final_count": 70, + "final_proportion": 0.7070707070707071, + "final_counts": { + "POSITIVE": 70, + "NEGATIVE": 29 + }, + "final_distribution": { + "POSITIVE": 0.7070707070707071, + "NEGATIVE": 0.29292929292929293 + } + } }, { "season_code": "202301", @@ -191178,7 +420944,7 @@ "13:00", "14:15", "WTS B74 - Watson Center 60 Sachem Street B74", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -191186,7 +420952,7 @@ "13:00", "14:15", "WTS B74 - Watson Center 60 Sachem Street B74", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -191195,22 +420961,141 @@ ], "areas": [], "flags": [ - "YC Math: Algebra\/Number Theory" + "YC Math: Algebra/Number Theory" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86650\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/86650/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988993406295776, + 0.991489052772522, + 0.9978582262992859, + 0.995341420173645, + 0.9988184571266174, + 0.9993981122970581, + 0.9925947785377502, + 0.9981110095977783, + 0.9984671473503113 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.7777777777777778, + "NEGATIVE": 0.2222222222222222 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7777777777777778 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988911747932434, + 0.999422550201416, + 0.99842369556427, + 0.9994933605194092, + 0.999500036239624, + 0.9994901418685913, + 0.9787664413452148, + 0.9995111227035522, + 0.9981549382209778, + 0.9981270432472229 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 5 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989128112792969, + 0.9995143413543701, + 0.9987952709197998, + 0.9899715185165405, + 0.9995013475418091, + 0.9910851120948792, + 0.998865008354187 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.5714285714285714, + "NEGATIVE": 0.42857142857142855 + }, + "sentiment_overall": [ + "POSITIVE", + 0.5714285714285714 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 0.6153846153846154, + "final_counts": { + "POSITIVE": 16, + "NEGATIVE": 10 + }, + "final_distribution": { + "POSITIVE": 0.6153846153846154, + "NEGATIVE": 0.38461538461538464 + } + } }, { "season_code": "202301", "requirements": "After MATH 225 or 226 or 231.\u00a0", - "description": "The course continues the study of linear algebra from MATH 225 or MATH 230\/231. It discusses several aspects of linear algebra that are of crucial importance for the subject and its applications to abstract algebra, geometry and number theory. Topics include generalized eigenspaces and Jordan normal form theorem, dual vector spaces, bilinear and hermitian forms, symmetric and hermitian operators,\u00a0 Hom spaces and tensor products.", + "description": "The course continues the study of linear algebra from MATH 225 or MATH 230/231. It discusses several aspects of linear algebra that are of crucial importance for the subject and its applications to abstract algebra, geometry and number theory. Topics include generalized eigenspaces and Jordan normal form theorem, dual vector spaces, bilinear and hermitian forms, symmetric and hermitian operators,\u00a0 Hom spaces and tensor products.", "short_title": "Advanced Linear Algebra", "title": "Advanced Linear Algebra", "school": "YC", @@ -191242,7 +421127,7 @@ "11:35", "12:50", "LOM 205 - Leet Oliver Memorial Hall 205", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ], "Wednesday": [ @@ -191250,24 +421135,123 @@ "11:35", "12:50", "LOM 205 - Leet Oliver Memorial Hall 205", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ] }, "skills": [], "areas": [], "flags": [ - "YC Math: Algebra\/Number Theory" + "YC Math: Algebra/Number Theory" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "Saturday, May 6, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84428\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84428/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9933391213417053, + 0.995134174823761, + 0.9985906481742859, + 0.9987174272537231, + 0.9981928467750549, + 0.7014482617378235 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984990358352661, + 0.9989312291145325, + 0.9988213181495667, + 0.9986887574195862 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988371729850769, + 0.9986138343811035, + 0.9982553124427795, + 0.9988338351249695, + 0.9985986351966858, + 0.9986153841018677 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 0.875, + "final_counts": { + "POSITIVE": 14, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + } + } }, { "season_code": "202301", @@ -191306,7 +421290,7 @@ "9:00", "10:15", "YSB MARSH - Yale Science Building MARSH", - "https:\/\/map.yale.edu\/?id=1910#!m\/563700" + "https://map.yale.edu/?id=1910#!m/563700" ] ], "Wednesday": [ @@ -191314,7 +421298,7 @@ "9:00", "10:15", "YSB MARSH - Yale Science Building MARSH", - "https:\/\/map.yale.edu\/?id=1910#!m\/563700" + "https://map.yale.edu/?id=1910#!m/563700" ] ] }, @@ -191323,17 +421307,536 @@ ], "areas": [], "flags": [ - "YC Math: Stat\/Applied Math" + "YC Math: Stat/Applied Math" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "Saturday, May 6, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84860\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84860/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9978906512260437, + 0.993720293045044, + 0.996006429195404, + 0.990267813205719, + 0.9955920577049255, + 0.9984702467918396, + 0.9983786344528198, + 0.9977797865867615, + 0.9901118874549866, + 0.998746395111084, + 0.9987926483154297, + 0.9895328283309937, + 0.9988399147987366, + 0.9762150645256042, + 0.9984114170074463, + 0.9843759536743164, + 0.9812357425689697, + 0.7275888919830322, + 0.676975667476654, + 0.9987758994102478, + 0.9891848564147949, + 0.9988133907318115, + 0.9982825517654419, + 0.9988001585006714, + 0.9981033802032471, + 0.9972225427627563, + 0.9843387007713318, + 0.9984257221221924, + 0.9986711740493774, + 0.9982296824455261, + 0.9903454184532166, + 0.9984523057937622, + 0.9987121820449829, + 0.9946350455284119, + 0.998056948184967, + 0.9988117218017578, + 0.5518556237220764, + 0.845335841178894, + 0.9968059062957764, + 0.9994698166847229, + 0.9986639022827148, + 0.9987917542457581, + 0.997908353805542, + 0.9902006983757019, + 0.9988859295845032, + 0.9980356097221375, + 0.9989044666290283, + 0.9968247413635254, + 0.9961389899253845, + 0.9987260699272156, + 0.9988598823547363, + 0.9987413287162781, + 0.9871426820755005, + 0.9940432906150818, + 0.9930135607719421, + 0.9981316924095154, + 0.9938886165618896, + 0.9984513521194458, + 0.9940329194068909, + 0.9265551567077637, + 0.9914608001708984, + 0.9969028830528259, + 0.7013508677482605, + 0.913546621799469, + 0.9982837438583374, + 0.9172576069831848, + 0.9987185001373291, + 0.9172576069831848, + 0.9970593452453613, + 0.998630702495575, + 0.997184693813324, + 0.998516857624054, + 0.9985306262969971, + 0.9861289858818054 + ], + "sentiment_counts": { + "POSITIVE": 66, + "NEGATIVE": 8 + }, + "sentiment_distribution": { + "POSITIVE": 0.8918918918918919, + "NEGATIVE": 0.10810810810810811 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8918918918918919 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989023208618164, + 0.9989226460456848, + 0.9986459612846375, + 0.9987868666648865, + 0.9945178627967834, + 0.9988812804222107, + 0.9989181756973267, + 0.998868465423584, + 0.9989344477653503, + 0.9989176988601685, + 0.9935043454170227, + 0.9986836314201355, + 0.9987336993217468, + 0.9984686970710754, + 0.9965289235115051, + 0.9990172386169434, + 0.9987967014312744, + 0.9977701902389526, + 0.9915995597839355, + 0.9987660646438599, + 0.9989004135131836, + 0.9989166259765625, + 0.9988707900047302, + 0.9989268183708191, + 0.9985841512680054, + 0.9987560510635376, + 0.9988716244697571, + 0.9988779425621033, + 0.9987711310386658, + 0.9947894811630249, + 0.9987176656723022, + 0.9937103986740112, + 0.9988434314727783, + 0.9989005327224731, + 0.9992116689682007, + 0.9989534616470337, + 0.998915433883667, + 0.9988735318183899, + 0.9988539218902588, + 0.9988810420036316, + 0.9989437460899353, + 0.998898983001709, + 0.9988405108451843, + 0.9931796789169312, + 0.9993836879730225, + 0.9972364902496338, + 0.9988930821418762, + 0.9988157749176025, + 0.9974785447120667, + 0.9987214207649231, + 0.9987448453903198, + 0.9988099336624146, + 0.9973133206367493, + 0.9981220364570618, + 0.9985979199409485, + 0.9977694749832153, + 0.9988324046134949, + 0.9989142417907715, + 0.9994866847991943, + 0.9945918917655945, + 0.998930037021637, + 0.9989319443702698, + 0.9989218711853027, + 0.995695948600769, + 0.9986485838890076, + 0.9949631690979004, + 0.9988127946853638, + 0.9993879795074463 + ], + "sentiment_counts": { + "POSITIVE": 55, + "NEGATIVE": 13 + }, + "sentiment_distribution": { + "POSITIVE": 0.8088235294117647, + "NEGATIVE": 0.19117647058823528 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8088235294117647 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9967457056045532, + 0.9989044666290283, + 0.9988259673118591, + 0.9984433054924011, + 0.9993942975997925, + 0.9947958588600159, + 0.9976309537887573, + 0.9988784193992615, + 0.9988665580749512, + 0.9972983002662659, + 0.9974538683891296, + 0.9981922507286072, + 0.9980927109718323, + 0.9988670349121094, + 0.9930300116539001, + 0.9942377805709839, + 0.9988327622413635, + 0.9986553192138672, + 0.9986830353736877, + 0.9993626475334167, + 0.9920988082885742, + 0.9981922507286072, + 0.9974592328071594, + 0.9986538887023926, + 0.997117280960083, + 0.9988905787467957, + 0.9989182949066162, + 0.9988864064216614, + 0.9987311959266663, + 0.998749852180481, + 0.9988592863082886, + 0.9847151041030884, + 0.9988253712654114, + 0.997117280960083, + 0.9989325404167175, + 0.8887097835540771, + 0.988207995891571, + 0.9962841868400574, + 0.9995079040527344, + 0.9989126920700073, + 0.9988980293273926, + 0.9976673722267151, + 0.9978917241096497, + 0.9994837045669556, + 0.9982553124427795, + 0.9620825052261353, + 0.9994875192642212, + 0.9986447691917419, + 0.9973655343055725, + 0.9988548755645752, + 0.9985309839248657, + 0.9943335056304932, + 0.9989094734191895, + 0.9853620529174805, + 0.9984176158905029, + 0.997117280960083, + 0.997117280960083, + 0.9989068508148193, + 0.9988252520561218, + 0.9987307190895081, + 0.9994990825653076, + 0.9987962245941162, + 0.997117280960083, + 0.9914271831512451, + 0.9968321919441223, + 0.997117280960083, + 0.997654139995575, + 0.9988364577293396, + 0.9831274747848511, + 0.9984330534934998, + 0.9990008473396301, + 0.9982553124427795, + 0.9988671541213989, + 0.9988991022109985, + 0.9988682270050049, + 0.9980016350746155, + 0.9960177540779114, + 0.998900294303894, + 0.9989257454872131, + 0.997366726398468, + 0.9987867474555969, + 0.9985904097557068, + 0.9984652996063232, + 0.9982323050498962 + ], + "sentiment_counts": { + "NEGATIVE": 20, + "POSITIVE": 64 + }, + "sentiment_distribution": { + "NEGATIVE": 0.23809523809523808, + "POSITIVE": 0.7619047619047619 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7619047619047619 + ] + }, + "final_label": "POSITIVE", + "final_count": 185, + "final_proportion": 0.8185840707964602, + "final_counts": { + "POSITIVE": 185, + "NEGATIVE": 41 + }, + "final_distribution": { + "POSITIVE": 0.8185840707964602, + "NEGATIVE": 0.18141592920353983 + } + } }, { "season_code": "202301", @@ -191371,7 +421874,7 @@ "11:35", "12:50", "DL 220 - Dunham Laboratory 220", - "https:\/\/map.yale.edu\/?id=1910#!m\/560005" + "https://map.yale.edu/?id=1910#!m/560005" ] ], "Thursday": [ @@ -191379,7 +421882,7 @@ "11:35", "12:50", "DL 220 - Dunham Laboratory 220", - "https:\/\/map.yale.edu\/?id=1910#!m\/560005" + "https://map.yale.edu/?id=1910#!m/560005" ] ] }, @@ -191388,18 +421891,369 @@ ], "areas": [], "flags": [ - "YC Math: Stat\/Applied Math", - "YC Math: Algebra\/Number Theory" + "YC Math: Stat/Applied Math", + "YC Math: Algebra/Number Theory" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "Monday, May 8, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84431\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84431/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9904443621635437, + 0.99863201379776, + 0.9987670183181763, + 0.9947414398193359, + 0.998676598072052, + 0.9914700388908386, + 0.9886142015457153, + 0.8047314882278442, + 0.9989005327224731, + 0.9977495074272156, + 0.9979719519615173, + 0.9989092350006104, + 0.9986637830734253, + 0.9988277554512024, + 0.9984056353569031, + 0.9988623857498169, + 0.9989354014396667, + 0.9975097179412842, + 0.9988585710525513, + 0.9986057877540588, + 0.9886991381645203, + 0.998664379119873, + 0.9936472773551941, + 0.998752236366272, + 0.9918889403343201, + 0.9986854195594788, + 0.9986735582351685, + 0.9987969398498535, + 0.9987707734107971, + 0.9984480142593384, + 0.9975245594978333, + 0.9972994923591614, + 0.9986388087272644, + 0.9987296462059021, + 0.9988722205162048, + 0.9985520243644714, + 0.9985646605491638, + 0.9987213015556335, + 0.9959010481834412, + 0.9984657764434814, + 0.9988584518432617, + 0.9988555908203125, + 0.9988818764686584, + 0.998764157295227, + 0.9975184202194214, + 0.998749852180481 + ], + "sentiment_counts": { + "POSITIVE": 44, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.9565217391304348, + "NEGATIVE": 0.043478260869565216 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9565217391304348 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988856911659241, + 0.9989012479782104, + 0.9988802075386047, + 0.9988848567008972, + 0.9994783997535706, + 0.9987699389457703, + 0.9984830021858215, + 0.9989216327667236, + 0.9989033937454224, + 0.9989325404167175, + 0.9951255917549133, + 0.9955624341964722, + 0.9988840222358704, + 0.9988757967948914, + 0.9989352822303772, + 0.995827853679657, + 0.9989131689071655, + 0.9988929629325867, + 0.9988306164741516, + 0.9989325404167175, + 0.9989281296730042, + 0.9987465143203735, + 0.9987980127334595, + 0.9989283680915833, + 0.9988644123077393, + 0.9988930821418762, + 0.9988160133361816, + 0.9989286065101624, + 0.9988646507263184, + 0.9988654851913452, + 0.9987357258796692, + 0.998755931854248, + 0.9989245533943176, + 0.9989370703697205, + 0.9988380074501038, + 0.999497652053833, + 0.9989328980445862, + 0.998852014541626, + 0.9987766146659851, + 0.9989194869995117, + 0.9988013505935669, + 0.9989142417907715, + 0.9989020824432373, + 0.9989334940910339 + ], + "sentiment_counts": { + "POSITIVE": 41, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.9318181818181818, + "NEGATIVE": 0.06818181818181818 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9318181818181818 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989209175109863, + 0.9988107681274414, + 0.998921275138855, + 0.9987151622772217, + 0.9989124536514282, + 0.9968801736831665, + 0.9890275001525879, + 0.998938262462616, + 0.9988638162612915, + 0.9986359477043152, + 0.9989326596260071, + 0.9987150430679321, + 0.9989375472068787, + 0.9973760843276978, + 0.9988844990730286, + 0.9974592328071594, + 0.9863173365592957, + 0.9989326596260071, + 0.982941210269928, + 0.9947656393051147, + 0.9988848567008972, + 0.9987531900405884, + 0.9930906295776367, + 0.9989381432533264, + 0.9986844658851624, + 0.9989368319511414, + 0.9987107515335083, + 0.997597873210907, + 0.998891294002533, + 0.9934681057929993, + 0.9988332390785217, + 0.9988161325454712, + 0.998909592628479, + 0.9988788962364197, + 0.9989031553268433, + 0.9989174604415894, + 0.9982115030288696, + 0.9987837672233582, + 0.9989338517189026, + 0.9989389777183533, + 0.9978479146957397, + 0.9988381266593933, + 0.9986912608146667, + 0.998802900314331, + 0.9989247918128967, + 0.9989380240440369, + 0.9988491535186768, + 0.9989197254180908, + 0.9987998008728027, + 0.998836100101471, + 0.9988534450531006, + 0.9989218711853027 + ], + "sentiment_counts": { + "POSITIVE": 45, + "NEGATIVE": 7 + }, + "sentiment_distribution": { + "POSITIVE": 0.8653846153846154, + "NEGATIVE": 0.1346153846153846 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8653846153846154 + ] + }, + "final_label": "POSITIVE", + "final_count": 130, + "final_proportion": 0.9154929577464789, + "final_counts": { + "POSITIVE": 130, + "NEGATIVE": 12 + }, + "final_distribution": { + "POSITIVE": 0.9154929577464789, + "NEGATIVE": 0.08450704225352113 + } + } }, { "season_code": "202301", @@ -191436,7 +422290,7 @@ "10:30", "11:20", "WTS A74 - Watson Center 60 Sachem Street A74", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -191444,7 +422298,7 @@ "10:30", "11:20", "WTS A74 - Watson Center 60 Sachem Street A74", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Friday": [ @@ -191452,7 +422306,7 @@ "10:30", "11:20", "WTS A74 - Watson Center 60 Sachem Street A74", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -191462,17 +422316,184 @@ "areas": [], "flags": [ "YC Mathematics: Analysis", - "YC Math: Stat\/Applied Math" + "YC Math: Stat/Applied Math" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "Friday, May 5, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84434\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84434/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982985854148865, + 0.9985522627830505, + 0.9986051917076111, + 0.9932661056518555, + 0.9994719624519348, + 0.997860848903656, + 0.9985477328300476, + 0.9983298182487488, + 0.9987216591835022, + 0.9970575571060181, + 0.9985151886940002, + 0.9979280233383179, + 0.994755744934082, + 0.9851986765861511, + 0.9988617897033691 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.7333333333333333, + "NEGATIVE": 0.26666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7333333333333333 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9975399971008301, + 0.9994950294494629, + 0.9991975426673889, + 0.9981427192687988, + 0.9994988441467285, + 0.9981923699378967, + 0.9980818033218384, + 0.9995003938674927, + 0.985770583152771, + 0.9994996786117554, + 0.9987280964851379, + 0.9993327260017395, + 0.9995065927505493, + 0.9970306158065796, + 0.9982059001922607, + 0.9987154006958008, + 0.9988425970077515 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 10 + }, + "sentiment_distribution": { + "POSITIVE": 0.4117647058823529, + "NEGATIVE": 0.5882352941176471 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.5882352941176471 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9979660511016846, + 0.9994996786117554, + 0.9994914531707764, + 0.9995027780532837, + 0.998370349407196, + 0.9981290698051453, + 0.5771276354789734, + 0.9994903802871704, + 0.9986244440078735, + 0.9980016350746155, + 0.9406574368476868, + 0.9987733960151672, + 0.998703122138977, + 0.9994949102401733, + 0.996659517288208, + 0.9988685846328735, + 0.9994999170303345, + 0.9988241791725159 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 10 + }, + "sentiment_distribution": { + "POSITIVE": 0.4444444444444444, + "NEGATIVE": 0.5555555555555556 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.5555555555555556 + ] + }, + "final_label": "neutral", + "final_count": 26, + "final_proportion": 0.5, + "final_counts": { + "POSITIVE": 26, + "NEGATIVE": 24 + }, + "final_distribution": { + "POSITIVE": 0.52, + "NEGATIVE": 0.48 + } + } }, { "season_code": "202301", @@ -191510,7 +422531,7 @@ "10:30", "11:20", "LOM 205 - Leet Oliver Memorial Hall 205", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ], "Wednesday": [ @@ -191518,7 +422539,7 @@ "10:30", "11:20", "LOM 205 - Leet Oliver Memorial Hall 205", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ], "Friday": [ @@ -191526,7 +422547,7 @@ "10:30", "11:20", "LOM 205 - Leet Oliver Memorial Hall 205", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ] }, @@ -191535,17 +422556,134 @@ ], "areas": [], "flags": [ - "YC Math: Stat\/Applied Math" + "YC Math: Stat/Applied Math" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "Friday, May 5, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84437\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84437/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984560012817383, + 0.9983121156692505, + 0.9967139959335327, + 0.9985547661781311, + 0.9987884163856506, + 0.9983951449394226, + 0.9987804293632507, + 0.9875671863555908, + 0.9988885521888733 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989340901374817, + 0.9987840056419373, + 0.9988580942153931, + 0.9988131523132324, + 0.9989373087882996, + 0.9989269375801086, + 0.9987234473228455, + 0.9988987445831299, + 0.9989209175109863 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989064931869507, + 0.998913049697876, + 0.9987630844116211, + 0.9989225268363953, + 0.998933732509613, + 0.9989011287689209, + 0.998921275138855, + 0.9989226460456848 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 26, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 26 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -191586,7 +422724,7 @@ "13:00", "14:15", "ML 211 - Mason Laboratory 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ], "Wednesday": [ @@ -191594,7 +422732,7 @@ "13:00", "14:15", "ML 211 - Mason Laboratory 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ] }, @@ -191608,10 +422746,279 @@ "classnotes": "", "final_exam": "Tuesday, May 9, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84865\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84865/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9992075562477112, + 0.998089611530304, + 0.9984363913536072, + 0.9986252784729004, + 0.9986042380332947, + 0.9949446320533752, + 0.9896267652511597, + 0.9654321670532227, + 0.9972080588340759, + 0.9913358688354492, + 0.9931228756904602, + 0.9943450689315796, + 0.9957340359687805, + 0.9970738887786865, + 0.7170528769493103, + 0.9987829327583313, + 0.9984796643257141, + 0.9987836480140686, + 0.9934607744216919, + 0.9939693212509155, + 0.9985232949256897, + 0.99818354845047, + 0.9987327456474304, + 0.9944283962249756, + 0.9985114932060242, + 0.9974126219749451, + 0.9965142607688904, + 0.9988309741020203, + 0.9944962859153748, + 0.9976000189781189 + ], + "sentiment_counts": { + "NEGATIVE": 4, + "POSITIVE": 26 + }, + "sentiment_distribution": { + "NEGATIVE": 0.13333333333333333, + "POSITIVE": 0.8666666666666667 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8666666666666667 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994750618934631, + 0.9986365437507629, + 0.9991826415061951, + 0.9988372921943665, + 0.9995030164718628, + 0.9989519119262695, + 0.9994860887527466, + 0.9994958639144897, + 0.9995119571685791, + 0.9980810880661011, + 0.9989181756973267, + 0.9990677237510681, + 0.9972221851348877, + 0.9987633228302002, + 0.9988532066345215, + 0.9987863898277283, + 0.9911655783653259, + 0.9995070695877075, + 0.9987841248512268, + 0.9979895353317261, + 0.9986498951911926, + 0.9986023306846619, + 0.9986366629600525, + 0.9988486766815186, + 0.9988999366760254, + 0.9970904588699341, + 0.9981324076652527, + 0.9987800717353821, + 0.9988125562667847, + 0.993904173374176, + 0.9988242983818054, + 0.9984933137893677, + 0.981683611869812, + 0.9965178966522217, + 0.9988514184951782, + 0.9981138706207275, + 0.998134434223175 + ], + "sentiment_counts": { + "NEGATIVE": 16, + "POSITIVE": 21 + }, + "sentiment_distribution": { + "NEGATIVE": 0.43243243243243246, + "POSITIVE": 0.5675675675675675 + }, + "sentiment_overall": [ + "POSITIVE", + 0.5675675675675675 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9995031356811523, + 0.9989062547683716, + 0.9984586238861084, + 0.9968724846839905, + 0.9597945213317871, + 0.9988682270050049, + 0.9995098114013672, + 0.9986429810523987, + 0.9983055591583252, + 0.9983306527137756, + 0.9978960752487183, + 0.999506950378418, + 0.9982553124427795, + 0.998826801776886, + 0.9946483969688416, + 0.9837275743484497, + 0.9995023012161255, + 0.9897374510765076, + 0.9972172975540161, + 0.9936019778251648, + 0.989325761795044, + 0.9988495111465454, + 0.9981392621994019, + 0.9992881417274475, + 0.9968299269676208, + 0.9993577599525452, + 0.9968120455741882, + 0.9887654781341553, + 0.997117280960083, + 0.9992204904556274, + 0.9698554873466492, + 0.9987173080444336, + 0.9995046854019165, + 0.999488115310669 + ], + "sentiment_counts": { + "NEGATIVE": 13, + "POSITIVE": 21 + }, + "sentiment_distribution": { + "NEGATIVE": 0.38235294117647056, + "POSITIVE": 0.6176470588235294 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6176470588235294 + ] + }, + "final_label": "POSITIVE", + "final_count": 68, + "final_proportion": 0.6732673267326733, + "final_counts": { + "NEGATIVE": 33, + "POSITIVE": 68 + }, + "final_distribution": { + "NEGATIVE": 0.32673267326732675, + "POSITIVE": 0.6732673267326733 + } + } }, { "season_code": "202301", @@ -191648,7 +423055,7 @@ "11:35", "12:50", "WLH 116 - William L. Harkness Hall 116", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -191656,7 +423063,7 @@ "11:35", "12:50", "WLH 116 - William L. Harkness Hall 116", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -191672,10 +423079,253 @@ "classnotes": "", "final_exam": "Monday, May 8, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84439\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84439/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981502294540405, + 0.9986909031867981, + 0.9987548589706421, + 0.9986506104469299, + 0.9989215135574341, + 0.9985632300376892, + 0.9987055063247681, + 0.998736560344696, + 0.9988238215446472, + 0.9984747767448425, + 0.998897910118103, + 0.9983823299407959, + 0.9989217519760132, + 0.9988266825675964, + 0.9988062381744385, + 0.99857497215271, + 0.9988228678703308, + 0.9987334609031677, + 0.9987418055534363, + 0.9988095760345459, + 0.9987733960151672, + 0.9989232420921326, + 0.9985988736152649, + 0.9988037347793579, + 0.9984320998191833, + 0.9960930943489075, + 0.9986646175384521, + 0.9985890984535217, + 0.9988071918487549 + ], + "sentiment_counts": { + "POSITIVE": 29, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984115362167358, + 0.9982581734657288, + 0.998832643032074, + 0.9988510608673096, + 0.998404324054718, + 0.9989270567893982, + 0.9988824725151062, + 0.9987950325012207, + 0.998916506767273, + 0.9989156723022461, + 0.998444139957428, + 0.9988430738449097, + 0.9988561868667603, + 0.9958328604698181, + 0.9987719655036926, + 0.9989227652549744, + 0.9989332556724548, + 0.9989262223243713, + 0.9994605183601379, + 0.9989271759986877, + 0.9483182430267334, + 0.998908519744873, + 0.9987885355949402, + 0.9988250136375427, + 0.9986746311187744, + 0.9987627267837524, + 0.9988836646080017, + 0.9989129304885864 + ], + "sentiment_counts": { + "POSITIVE": 26, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.9285714285714286, + "NEGATIVE": 0.07142857142857142 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9285714285714286 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988512992858887, + 0.9987448453903198, + 0.9984386563301086, + 0.9989174604415894, + 0.9988822340965271, + 0.9985895752906799, + 0.9987506866455078, + 0.9989223480224609, + 0.9988478422164917, + 0.9985080361366272, + 0.9989175796508789, + 0.9984933137893677, + 0.9987702965736389, + 0.998918890953064, + 0.9989074468612671, + 0.9989128112792969, + 0.9989044666290283, + 0.9988527297973633, + 0.9986664056777954, + 0.99887615442276, + 0.9987276196479797, + 0.9989203214645386, + 0.9942995309829712, + 0.998927652835846, + 0.9989112615585327, + 0.9988539218902588, + 0.9960801005363464, + 0.9987995624542236, + 0.9986078143119812, + 0.9983516931533813, + 0.9980620741844177 + ], + "sentiment_counts": { + "POSITIVE": 31, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 86, + "final_proportion": 0.9772727272727273, + "final_counts": { + "POSITIVE": 86, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9772727272727273, + "NEGATIVE": 0.022727272727272728 + } + } }, { "season_code": "202301", @@ -191712,7 +423362,7 @@ "13:00", "14:15", "WTS A53 - Watson Center 60 Sachem Street A53", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -191720,7 +423370,7 @@ "13:00", "14:15", "WTS A53 - Watson Center 60 Sachem Street A53", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -191736,10 +423386,185 @@ "classnotes": "", "final_exam": "Monday, May 8, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84442\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84442/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998653769493103, + 0.9985129237174988, + 0.9989019632339478, + 0.9988939166069031, + 0.9989007711410522, + 0.9986095428466797, + 0.9986365437507629, + 0.9986845850944519, + 0.9986922144889832, + 0.9975244402885437, + 0.9987809062004089, + 0.9987567663192749, + 0.9988157749176025, + 0.9956536293029785, + 0.9979233145713806, + 0.9985911250114441, + 0.9989013671875, + 0.9988030195236206 + ], + "sentiment_counts": { + "POSITIVE": 17, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9444444444444444, + "NEGATIVE": 0.05555555555555555 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9444444444444444 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9896061420440674, + 0.999447762966156, + 0.9988296627998352, + 0.9988662004470825, + 0.9989199638366699, + 0.9989172220230103, + 0.9988141059875488, + 0.994631290435791, + 0.9994221925735474, + 0.9992091059684753, + 0.9986209869384766, + 0.9988592863082886, + 0.9985156655311584, + 0.9988935589790344, + 0.9994621872901917, + 0.9941682815551758, + 0.9984557628631592, + 0.9989357590675354, + 0.9989075660705566 + ], + "sentiment_counts": { + "NEGATIVE": 6, + "POSITIVE": 13 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3157894736842105, + "POSITIVE": 0.6842105263157895 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6842105263157895 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9964805245399475, + 0.9993569254875183, + 0.9984399676322937, + 0.9988592863082886, + 0.9988214373588562, + 0.9955702424049377, + 0.9988538026809692, + 0.9886821508407593, + 0.9970852732658386, + 0.998286783695221, + 0.795666515827179, + 0.9989055395126343, + 0.9914515614509583, + 0.997117280960083, + 0.9989330172538757, + 0.9982174038887024, + 0.9988856911659241 + ], + "sentiment_counts": { + "NEGATIVE": 5, + "POSITIVE": 12 + }, + "sentiment_distribution": { + "NEGATIVE": 0.29411764705882354, + "POSITIVE": 0.7058823529411765 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7058823529411765 + ] + }, + "final_label": "POSITIVE", + "final_count": 42, + "final_proportion": 0.7777777777777778, + "final_counts": { + "POSITIVE": 42, + "NEGATIVE": 12 + }, + "final_distribution": { + "POSITIVE": 0.7777777777777778, + "NEGATIVE": 0.2222222222222222 + } + } }, { "season_code": "202301", @@ -191776,7 +423601,7 @@ "11:35", "12:50", "HQ 132 - Humanities Quadrangle 132", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -191784,7 +423609,7 @@ "11:35", "12:50", "HQ 132 - Humanities Quadrangle 132", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -191800,10 +423625,129 @@ "classnotes": "", "final_exam": "Monday, May 8, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84446\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84446/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9986218214035034, + 0.9989020824432373, + 0.9988032579421997, + 0.9988375306129456, + 0.9877419471740723, + 0.9986988306045532, + 0.9988829493522644, + 0.9987903237342834, + 0.9909510612487793 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.7777777777777778, + "NEGATIVE": 0.2222222222222222 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7777777777777778 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994513392448425, + 0.9983939528465271, + 0.9986452460289001, + 0.9945154786109924, + 0.9946351647377014, + 0.9983311295509338, + 0.9985791444778442, + 0.9988943934440613 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 7 + }, + "sentiment_distribution": { + "NEGATIVE": 0.125, + "POSITIVE": 0.875 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9994975328445435, + 0.998297393321991, + 0.9989176988601685, + 0.9969293475151062, + 0.9988574981689453, + 0.9939684867858887, + 0.9994433522224426, + 0.9819539785385132, + 0.9952669143676758 + ], + "sentiment_counts": { + "NEGATIVE": 6, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.6666666666666666, + "POSITIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 0.6538461538461539, + "final_counts": { + "POSITIVE": 17, + "NEGATIVE": 9 + }, + "final_distribution": { + "POSITIVE": 0.6538461538461539, + "NEGATIVE": 0.34615384615384615 + } + } }, { "season_code": "202301", @@ -191841,7 +423785,7 @@ "14:30", "15:45", "LOM 200 - Leet Oliver Memorial Hall 200", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ], "Thursday": [ @@ -191849,7 +423793,7 @@ "13:00", "14:15", "LOM 200 - Leet Oliver Memorial Hall 200", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ] }, @@ -191863,10 +423807,38 @@ "classnotes": "", "final_exam": "Wednesday, May 10, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84362\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84362/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -191903,7 +423875,7 @@ "13:00", "14:15", "LOM 206 - Leet Oliver Memorial Hall 206", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ], "Wednesday": [ @@ -191911,7 +423883,7 @@ "13:00", "14:15", "LOM 206 - Leet Oliver Memorial Hall 206", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ] }, @@ -191928,10 +423900,185 @@ "classnotes": "", "final_exam": "Tuesday, May 9, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84368\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84368/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988345503807068, + 0.9985275268554688, + 0.9962933659553528, + 0.9988017082214355, + 0.9988645315170288, + 0.9988640546798706, + 0.9979196190834045, + 0.8698293566703796, + 0.9981073141098022, + 0.9935804605484009, + 0.9983048439025879, + 0.9988104104995728, + 0.9988124370574951, + 0.9985170960426331, + 0.9980717897415161, + 0.9986615180969238, + 0.9983469247817993 + ], + "sentiment_counts": { + "POSITIVE": 16, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9411764705882353, + "NEGATIVE": 0.058823529411764705 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9411764705882353 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986817240715027, + 0.9989039897918701, + 0.9989238381385803, + 0.9986602067947388, + 0.9989145994186401, + 0.9989150762557983, + 0.998845100402832, + 0.9988986253738403, + 0.998735249042511, + 0.9988740086555481, + 0.9986287355422974, + 0.9989045858383179, + 0.9988665580749512, + 0.9986106157302856, + 0.9987097978591919, + 0.998101532459259, + 0.9985523819923401, + 0.9985981583595276 + ], + "sentiment_counts": { + "POSITIVE": 18, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9986948370933533, + 0.9983150959014893, + 0.9988842606544495, + 0.9987917542457581, + 0.9989173412322998, + 0.9985564351081848, + 0.9985798597335815, + 0.9988806843757629, + 0.9989122152328491, + 0.9981423616409302, + 0.9988584518432617, + 0.9911139607429504, + 0.9988000392913818, + 0.9988279938697815, + 0.9986647367477417, + 0.9967734217643738, + 0.9987651109695435, + 0.998715877532959, + 0.8183148503303528 + ], + "sentiment_counts": { + "POSITIVE": 17, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8947368421052632, + "NEGATIVE": 0.10526315789473684 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8947368421052632 + ] + }, + "final_label": "POSITIVE", + "final_count": 51, + "final_proportion": 0.9444444444444444, + "final_counts": { + "POSITIVE": 51, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.9444444444444444, + "NEGATIVE": 0.05555555555555555 + } + } }, { "season_code": "202301", @@ -191969,7 +424116,7 @@ "14:30", "15:45", "LOM 206 - Leet Oliver Memorial Hall 206", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ], "Thursday": [ @@ -191977,7 +424124,7 @@ "14:30", "15:45", "LOM 206 - Leet Oliver Memorial Hall 206", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ] }, @@ -191994,10 +424141,91 @@ "classnotes": "", "final_exam": "Wednesday, May 10, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84373\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84373/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9935899972915649, + 0.9856776595115662, + 0.9979384541511536, + 0.9987976551055908 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986029267311096 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988987445831299, + 0.9981922507286072 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 5, + "final_proportion": 0.7142857142857143, + "final_counts": { + "NEGATIVE": 2, + "POSITIVE": 5 + }, + "final_distribution": { + "NEGATIVE": 0.2857142857142857, + "POSITIVE": 0.7142857142857143 + } + } }, { "season_code": "202301", @@ -192035,7 +424263,7 @@ "13:00", "14:15", "LOM 215 - Leet Oliver Memorial Hall 215", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ], "Wednesday": [ @@ -192043,7 +424271,7 @@ "13:00", "14:15", "LOM 215 - Leet Oliver Memorial Hall 215", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ] }, @@ -192060,10 +424288,133 @@ "classnotes": "", "final_exam": "Tuesday, May 9, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84379\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84379/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9870133996009827, + 0.9987033605575562, + 0.997295081615448, + 0.9988417029380798, + 0.9985758066177368, + 0.995319664478302, + 0.9987634420394897, + 0.9983674883842468, + 0.9864830374717712 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988270401954651, + 0.9988941550254822, + 0.9986827969551086, + 0.998895525932312, + 0.9988975524902344, + 0.998865008354187, + 0.9977796673774719, + 0.9988808035850525, + 0.9988541603088379 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989091157913208, + 0.9989393353462219, + 0.9959406852722168, + 0.9988621473312378, + 0.9988840222358704, + 0.9989301562309265, + 0.9983687996864319, + 0.9989256262779236, + 0.9987064599990845, + 0.9986995458602905 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "final_label": "POSITIVE", + "final_count": 27, + "final_proportion": 0.9642857142857143, + "final_counts": { + "POSITIVE": 27, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9642857142857143, + "NEGATIVE": 0.03571428571428571 + } + } }, { "season_code": "202301", @@ -192100,7 +424451,7 @@ "9:00", "10:15", "WTS A51 - Watson Center 60 Sachem Street A51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -192108,7 +424459,7 @@ "9:00", "10:15", "WTS A51 - Watson Center 60 Sachem Street A51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -192118,17 +424469,166 @@ "areas": [], "flags": [ "YC Mathematics: Core Algebra", - "YC Math: Algebra\/Number Theory" + "YC Math: Algebra/Number Theory" ], "regnotes": "", "rp_attr": "This course meets during the Reading Period: the week between the last week of classes and finals week. Meets Reading Period", "classnotes": "", "final_exam": "Tuesday, May 9, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84386\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84386/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988413453102112, + 0.9981876015663147, + 0.998675525188446, + 0.9981915354728699, + 0.9987815022468567, + 0.9882358908653259, + 0.9959214925765991, + 0.9988334774971008, + 0.9967517852783203, + 0.9969573020935059, + 0.9988024234771729, + 0.9988441467285156, + 0.9989377856254578, + 0.9987689852714539 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988492727279663, + 0.998566210269928, + 0.999219536781311, + 0.9988666772842407, + 0.9991023540496826, + 0.998764157295227, + 0.9984427094459534, + 0.9987841248512268, + 0.9988762736320496, + 0.9993822574615479, + 0.9988256096839905, + 0.9989113807678223, + 0.9988085031509399, + 0.9986727237701416 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.7857142857142857, + "NEGATIVE": 0.21428571428571427 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7857142857142857 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9993484616279602, + 0.9974592328071594, + 0.9988712668418884, + 0.9973902106285095, + 0.9994669556617737, + 0.9987176656723022, + 0.9987056255340576, + 0.9989070892333984, + 0.9984629154205322, + 0.9987244009971619, + 0.9989237189292908, + 0.9986812472343445, + 0.9985737800598145 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 11 + }, + "sentiment_distribution": { + "NEGATIVE": 0.15384615384615385, + "POSITIVE": 0.8461538461538461 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8461538461538461 + ] + }, + "final_label": "POSITIVE", + "final_count": 34, + "final_proportion": 0.8292682926829268, + "final_counts": { + "POSITIVE": 34, + "NEGATIVE": 7 + }, + "final_distribution": { + "POSITIVE": 0.8292682926829268, + "NEGATIVE": 0.17073170731707318 + } + } }, { "season_code": "202301", @@ -192166,7 +424666,7 @@ "14:30", "15:45", "LOM 206 - Leet Oliver Memorial Hall 206", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ], "Wednesday": [ @@ -192174,24 +424674,185 @@ "14:30", "15:45", "LOM 206 - Leet Oliver Memorial Hall 206", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ] }, "skills": [], "areas": [], "flags": [ - "YC Math: Algebra\/Number Theory" + "YC Math: Algebra/Number Theory" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "Thursday, May 4, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84390\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84390/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988522529602051, + 0.9980942606925964, + 0.9989086389541626, + 0.9888789653778076, + 0.9987460374832153, + 0.9986695051193237, + 0.998443067073822, + 0.9987853169441223, + 0.9875281453132629, + 0.9947487711906433, + 0.9988631010055542, + 0.9917011857032776, + 0.9981887936592102, + 0.9987161159515381, + 0.9988289475440979, + 0.9976974129676819 + ], + "sentiment_counts": { + "POSITIVE": 16, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988952279090881, + 0.998897910118103, + 0.99873286485672, + 0.999502420425415, + 0.9988534450531006, + 0.9948669672012329, + 0.9988430738449097, + 0.9989186525344849, + 0.998923122882843, + 0.9988868832588196, + 0.9981667995452881, + 0.998649537563324, + 0.9988524913787842, + 0.9677148461341858, + 0.9994901418685913 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987531900405884, + 0.9973745346069336, + 0.9989050626754761, + 0.9989180564880371, + 0.9966508746147156, + 0.998923122882843, + 0.9994670748710632, + 0.9984065890312195, + 0.9985700845718384, + 0.9989166259765625, + 0.9989103078842163, + 0.9984116554260254, + 0.998626708984375, + 0.9994791150093079, + 0.9988890290260315, + 0.9987334609031677 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.8125, + "NEGATIVE": 0.1875 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8125 + ] + }, + "final_label": "POSITIVE", + "final_count": 41, + "final_proportion": 0.8723404255319149, + "final_counts": { + "POSITIVE": 41, + "NEGATIVE": 6 + }, + "final_distribution": { + "POSITIVE": 0.8723404255319149, + "NEGATIVE": 0.1276595744680851 + } + } }, { "season_code": "202301", @@ -192228,7 +424889,7 @@ "9:00", "10:15", "WTS A60 - Watson Center 60 Sachem Street A60", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -192236,7 +424897,7 @@ "9:00", "10:15", "WTS A60 - Watson Center 60 Sachem Street A60", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -192246,17 +424907,210 @@ "areas": [], "flags": [ "YC Mathematics: Core Algebra", - "YC Math: Algebra\/Number Theory" + "YC Math: Algebra/Number Theory" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "Tuesday, May 9, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84393\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84393/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984449744224548, + 0.9899223446846008, + 0.9988294243812561, + 0.9987670183181763, + 0.9938808679580688, + 0.9988683462142944, + 0.9988310933113098, + 0.9885714650154114, + 0.9987627267837524, + 0.9984394907951355, + 0.9986498951911926, + 0.9771501421928406, + 0.9979586601257324, + 0.9975726008415222, + 0.9984014630317688, + 0.9987614154815674, + 0.9988337159156799, + 0.9988740086555481, + 0.9981485605239868, + 0.9987925291061401 + ], + "sentiment_counts": { + "POSITIVE": 20, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9980261921882629, + 0.9988316893577576, + 0.9984790682792664, + 0.9989251494407654, + 0.9911773204803467, + 0.9989131689071655, + 0.9989282488822937, + 0.998889148235321, + 0.9967781901359558, + 0.998528003692627, + 0.9988852143287659, + 0.9988589286804199, + 0.998649537563324, + 0.9989042282104492, + 0.9989008903503418, + 0.9986158609390259, + 0.998921275138855, + 0.9988325238227844, + 0.9989320635795593, + 0.9989135265350342 + ], + "sentiment_counts": { + "POSITIVE": 20, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988246560096741, + 0.9988890290260315, + 0.9988364577293396, + 0.9936245679855347, + 0.998924195766449, + 0.9987051486968994, + 0.9988577365875244, + 0.9988885521888733, + 0.9976375102996826, + 0.9955234527587891, + 0.9988370537757874, + 0.9988887906074524, + 0.9989064931869507, + 0.998752236366272, + 0.998363196849823, + 0.9988970756530762, + 0.9989350438117981, + 0.9862398505210876, + 0.9988609552383423, + 0.9989226460456848, + 0.9989007711410522, + 0.9989215135574341, + 0.9988617897033691 + ], + "sentiment_counts": { + "POSITIVE": 22, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9565217391304348, + "NEGATIVE": 0.043478260869565216 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9565217391304348 + ] + }, + "final_label": "POSITIVE", + "final_count": 62, + "final_proportion": 0.9841269841269841, + "final_counts": { + "POSITIVE": 62, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9841269841269841, + "NEGATIVE": 0.015873015873015872 + } + } }, { "season_code": "202301", @@ -192293,7 +425147,7 @@ "10:30", "11:20", "LOM 214 - Leet Oliver Memorial Hall 214", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ], "Wednesday": [ @@ -192301,7 +425155,7 @@ "10:30", "11:20", "LOM 214 - Leet Oliver Memorial Hall 214", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ], "Friday": [ @@ -192309,7 +425163,7 @@ "10:30", "11:20", "LOM 214 - Leet Oliver Memorial Hall 214", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ] }, @@ -192318,17 +425172,114 @@ ], "areas": [], "flags": [ - "YC Math: Geometry\/Topology" + "YC Math: Geometry/Topology" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "Friday, May 5, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84397\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84397/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983598589897156, + 0.9951796531677246, + 0.9867545962333679, + 0.9987471103668213, + 0.9966940879821777 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 4 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2, + "POSITIVE": 0.8 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9995003938674927, + 0.999492883682251, + 0.9995002746582031, + 0.9988504648208618, + 0.9971603155136108 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.6, + "POSITIVE": 0.4 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.6 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9979556798934937, + 0.9994971752166748, + 0.999500036239624, + 0.9912183880805969, + 0.9959098100662231 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.6, + "POSITIVE": 0.4 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.6 + ] + }, + "final_label": "neutral", + "final_count": 8, + "final_proportion": 0.5, + "final_counts": { + "NEGATIVE": 7, + "POSITIVE": 8 + }, + "final_distribution": { + "NEGATIVE": 0.4666666666666667, + "POSITIVE": 0.5333333333333333 + } + } }, { "season_code": "202301", @@ -192365,7 +425316,7 @@ "11:35", "12:50", "LOM 206 - Leet Oliver Memorial Hall 206", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ], "Wednesday": [ @@ -192373,7 +425324,7 @@ "11:35", "12:50", "LOM 206 - Leet Oliver Memorial Hall 206", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ] }, @@ -192382,17 +425333,118 @@ ], "areas": [], "flags": [ - "YC Math: Geometry\/Topology" + "YC Math: Geometry/Topology" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "Saturday, May 6, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84401\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84401/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9921532273292542, + 0.9988380074501038, + 0.9959665536880493, + 0.9988528490066528, + 0.9988719820976257 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988552331924438, + 0.999488353729248, + 0.9975348711013794, + 0.9979636669158936, + 0.9989103078842163 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987595081329346, + 0.9953415393829346, + 0.9980011582374573, + 0.9991255402565002, + 0.998871386051178, + 0.9989103078842163, + 0.9988706707954407 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 4 + }, + "sentiment_distribution": { + "NEGATIVE": 0.42857142857142855, + "POSITIVE": 0.5714285714285714 + }, + "sentiment_overall": [ + "POSITIVE", + 0.5714285714285714 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 0.7647058823529411, + "final_counts": { + "POSITIVE": 13, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.7647058823529411, + "NEGATIVE": 0.23529411764705882 + } + } }, { "season_code": "202301", @@ -192435,10 +425487,91 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84405\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84405/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988347887992859, + 0.9988290667533875, + 0.9988138675689697 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986414313316345, + 0.9989277720451355, + 0.9989284873008728 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989025592803955, + 0.9987694621086121 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 8, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 8 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -192481,10 +425614,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84409\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84409/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -192521,7 +425682,7 @@ "13:00", "14:15", "LOM 206 - Leet Oliver Memorial Hall 206", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ], "Thursday": [ @@ -192529,7 +425690,7 @@ "13:00", "14:15", "LOM 206 - Leet Oliver Memorial Hall 206", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ] }, @@ -192541,10 +425702,113 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84412\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84412/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9975752234458923, + 0.999504566192627, + 0.9984179735183716, + 0.9988155364990234, + 0.99950110912323, + 0.9994986057281494 + ], + "sentiment_counts": { + "NEGATIVE": 4, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.6666666666666666, + "POSITIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.6666666666666666 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9995071887969971, + 0.9985792636871338, + 0.9989107847213745, + 0.9988480806350708, + 0.999478280544281, + 0.9994950294494629 + ], + "sentiment_counts": { + "NEGATIVE": 4, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.6666666666666666, + "POSITIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9995059967041016, + 0.9995129108428955, + 0.9988511800765991, + 0.9983868598937988, + 0.9995130300521851, + 0.9994910955429077 + ], + "sentiment_counts": { + "NEGATIVE": 4, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.6666666666666666, + "POSITIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.6666666666666666 + ] + }, + "final_label": "NEGATIVE", + "final_count": 12, + "final_proportion": 0.6666666666666666, + "final_counts": { + "NEGATIVE": 12, + "POSITIVE": 6 + }, + "final_distribution": { + "NEGATIVE": 0.6666666666666666, + "POSITIVE": 0.3333333333333333 + } + } }, { "season_code": "202301", @@ -192584,7 +425848,7 @@ "13:30", "15:20", "WTS A68 - Watson Center 60 Sachem Street A68", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -192596,10 +425860,111 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84414\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84414/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9953107237815857, + 0.9987892508506775, + 0.9987044334411621, + 0.9909192323684692, + 0.9987772107124329, + 0.9983752965927124 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988240599632263, + 0.9989012479782104, + 0.9988319277763367, + 0.9988079071044922, + 0.9988704323768616 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989314675331116, + 0.9992676377296448, + 0.9988265633583069, + 0.9989171028137207, + 0.9988365769386292, + 0.9985377788543701 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 0.9411764705882353, + "final_counts": { + "POSITIVE": 16, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9411764705882353, + "NEGATIVE": 0.058823529411764705 + } + } }, { "season_code": "202301", @@ -192637,7 +426002,7 @@ "14:30", "15:45", "LOM 206 - Leet Oliver Memorial Hall 206", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ], "Thursday": [ @@ -192645,7 +426010,7 @@ "14:30", "15:45", "LOM 206 - Leet Oliver Memorial Hall 206", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ] }, @@ -192657,10 +426022,91 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84373\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84373/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9935899972915649, + 0.9856776595115662, + 0.9979384541511536, + 0.9987976551055908 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986029267311096 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988987445831299, + 0.9981922507286072 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 5, + "final_proportion": 0.7142857142857143, + "final_counts": { + "NEGATIVE": 2, + "POSITIVE": 5 + }, + "final_distribution": { + "NEGATIVE": 0.2857142857142857, + "POSITIVE": 0.7142857142857143 + } + } }, { "season_code": "202301", @@ -192698,7 +426144,7 @@ "13:00", "14:15", "LOM 215 - Leet Oliver Memorial Hall 215", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ], "Wednesday": [ @@ -192706,7 +426152,7 @@ "13:00", "14:15", "LOM 215 - Leet Oliver Memorial Hall 215", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ] }, @@ -192718,10 +426164,133 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84379\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84379/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9870133996009827, + 0.9987033605575562, + 0.997295081615448, + 0.9988417029380798, + 0.9985758066177368, + 0.995319664478302, + 0.9987634420394897, + 0.9983674883842468, + 0.9864830374717712 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988270401954651, + 0.9988941550254822, + 0.9986827969551086, + 0.998895525932312, + 0.9988975524902344, + 0.998865008354187, + 0.9977796673774719, + 0.9988808035850525, + 0.9988541603088379 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989091157913208, + 0.9989393353462219, + 0.9959406852722168, + 0.9988621473312378, + 0.9988840222358704, + 0.9989301562309265, + 0.9983687996864319, + 0.9989256262779236, + 0.9987064599990845, + 0.9986995458602905 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "final_label": "POSITIVE", + "final_count": 27, + "final_proportion": 0.9642857142857143, + "final_counts": { + "POSITIVE": 27, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9642857142857143, + "NEGATIVE": 0.03571428571428571 + } + } }, { "season_code": "202301", @@ -192759,7 +426328,7 @@ "14:30", "15:45", "LOM 206 - Leet Oliver Memorial Hall 206", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ], "Wednesday": [ @@ -192767,7 +426336,7 @@ "14:30", "15:45", "LOM 206 - Leet Oliver Memorial Hall 206", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ] }, @@ -192779,10 +426348,171 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84390\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84390/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988522529602051, + 0.9980942606925964, + 0.9989086389541626, + 0.9888789653778076, + 0.9987460374832153, + 0.9986695051193237, + 0.998443067073822, + 0.9987853169441223, + 0.9875281453132629, + 0.9947487711906433, + 0.9988631010055542, + 0.9917011857032776, + 0.9981887936592102, + 0.9987161159515381, + 0.9988289475440979, + 0.9976974129676819 + ], + "sentiment_counts": { + "POSITIVE": 16, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988952279090881, + 0.998897910118103, + 0.99873286485672, + 0.999502420425415, + 0.9988534450531006, + 0.9948669672012329, + 0.9988430738449097, + 0.9989186525344849, + 0.998923122882843, + 0.9988868832588196, + 0.9981667995452881, + 0.998649537563324, + 0.9988524913787842, + 0.9677148461341858, + 0.9994901418685913 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987531900405884, + 0.9973745346069336, + 0.9989050626754761, + 0.9989180564880371, + 0.9966508746147156, + 0.998923122882843, + 0.9994670748710632, + 0.9984065890312195, + 0.9985700845718384, + 0.9989166259765625, + 0.9989103078842163, + 0.9984116554260254, + 0.998626708984375, + 0.9994791150093079, + 0.9988890290260315, + 0.9987334609031677 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.8125, + "NEGATIVE": 0.1875 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8125 + ] + }, + "final_label": "POSITIVE", + "final_count": 41, + "final_proportion": 0.8723404255319149, + "final_counts": { + "POSITIVE": 41, + "NEGATIVE": 6 + }, + "final_distribution": { + "POSITIVE": 0.8723404255319149, + "NEGATIVE": 0.1276595744680851 + } + } }, { "season_code": "202301", @@ -192819,7 +426549,7 @@ "9:00", "10:15", "LOM 205 - Leet Oliver Memorial Hall 205", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ], "Wednesday": [ @@ -192827,7 +426557,7 @@ "9:00", "10:15", "LOM 205 - Leet Oliver Memorial Hall 205", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ] }, @@ -192839,15 +426569,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84418\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84418/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "Prerequisites: MATH 380 and MATH 373. Experience in algebraic geometry is not required, as we cover necessary materials in algebraic geometry in order to present the course in an algebro-geometric way.", - "description": "Arithmetic geometry is the study of the solutions of systems of polynomial equations with coefficients in arithmetic rings, the ones closely related to the ring Z of integers, e.g. Z, Q, F_p, p-adic rings. It has stimulated the development of many branches of mathematics, e.g. algebraic geometry, representation theory, homological algebra etc.\u00a0The course focuses on the very basics of Arithmetic geometry. It connects elementary commutative algebra, algebraic number theory, and algebraic geometry. The fundamental theme is the analogy between a ring of integers with its set of archimedian absolute values in number theory and its analogue in algebraic geometry, a projective curve (an affine curve with its set of points at infinity). Depending on our progress, we may also go beyond it.\u00a0We focus primarily on 1-dimensional objects. Topics including (1)\u00a01-dimensional affine schemes: I extend some materials from algebraic number theory to affine curves\/functions fields of transcendental degree 1,\u00a0(2) Projective curves: Basics; Zeta functions for curves over finite fields; classical Riemann-Roch, (3)\u00a0Arithmetic Riemann-Roch for number fields.\u00a0Some other optional topics related to 2-dimensional objects: (4)\u00a0Elliptic curves over number fields (though it is a priori 1-dimensional), (5) Arithmetic surfaces, (6)\u00a0Theory of heights (could appear in both 4 and 5, or independently).", + "description": "Arithmetic geometry is the study of the solutions of systems of polynomial equations with coefficients in arithmetic rings, the ones closely related to the ring Z of integers, e.g. Z, Q, F_p, p-adic rings. It has stimulated the development of many branches of mathematics, e.g. algebraic geometry, representation theory, homological algebra etc.\u00a0The course focuses on the very basics of Arithmetic geometry. It connects elementary commutative algebra, algebraic number theory, and algebraic geometry. The fundamental theme is the analogy between a ring of integers with its set of archimedian absolute values in number theory and its analogue in algebraic geometry, a projective curve (an affine curve with its set of points at infinity). Depending on our progress, we may also go beyond it.\u00a0We focus primarily on 1-dimensional objects. Topics including (1)\u00a01-dimensional affine schemes: I extend some materials from algebraic number theory to affine curves/functions fields of transcendental degree 1,\u00a0(2) Projective curves: Basics; Zeta functions for curves over finite fields; classical Riemann-Roch, (3)\u00a0Arithmetic Riemann-Roch for number fields.\u00a0Some other optional topics related to 2-dimensional objects: (4)\u00a0Elliptic curves over number fields (though it is a priori 1-dimensional), (5) Arithmetic surfaces, (6)\u00a0Theory of heights (could appear in both 4 and 5, or independently).", "short_title": "Introduction to Arithmetic Ge...", "title": "Introduction to Arithmetic Geometry", "school": "GS", @@ -192879,7 +426637,7 @@ "11:35", "12:50", "LOM 201 - Leet Oliver Memorial Hall 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ], "Thursday": [ @@ -192887,7 +426645,7 @@ "11:35", "12:50", "LOM 201 - Leet Oliver Memorial Hall 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ] }, @@ -192899,10 +426657,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85141\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85141/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -192939,7 +426725,7 @@ "13:00", "14:15", "LOM 205 - Leet Oliver Memorial Hall 205", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ], "Wednesday": [ @@ -192947,7 +426733,7 @@ "13:00", "14:15", "LOM 205 - Leet Oliver Memorial Hall 205", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ] }, @@ -192959,10 +426745,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85142\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85142/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -193000,7 +426814,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -193037,7 +426879,7 @@ "14:30", "15:45", "LOM 201 - Leet Oliver Memorial Hall 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ], "Wednesday": [ @@ -193045,7 +426887,7 @@ "14:30", "15:45", "LOM 201 - Leet Oliver Memorial Hall 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ] }, @@ -193057,10 +426899,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85143\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85143/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -193097,7 +426967,7 @@ "14:30", "15:45", "LOM 200 - Leet Oliver Memorial Hall 200", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ], "Wednesday": [ @@ -193105,7 +426975,7 @@ "14:30", "15:45", "LOM 200 - Leet Oliver Memorial Hall 200", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ] }, @@ -193117,10 +426987,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85144\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85144/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -193157,7 +427055,7 @@ "13:00", "14:15", "LOM 201 - Leet Oliver Memorial Hall 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ], "Thursday": [ @@ -193165,7 +427063,7 @@ "13:00", "14:15", "LOM 201 - Leet Oliver Memorial Hall 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ] }, @@ -193177,10 +427075,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85234\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85234/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -193217,7 +427143,7 @@ "9:00", "10:15", "LOM 201 - Leet Oliver Memorial Hall 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ], "Wednesday": [ @@ -193225,7 +427151,7 @@ "9:00", "10:15", "LOM 201 - Leet Oliver Memorial Hall 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ] }, @@ -193237,10 +427163,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85145\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85145/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -193277,7 +427231,7 @@ "9:00", "10:15", "LOM 206 - Leet Oliver Memorial Hall 206", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ], "Wednesday": [ @@ -193285,7 +427239,7 @@ "9:00", "10:15", "LOM 206 - Leet Oliver Memorial Hall 206", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ] }, @@ -193297,10 +427251,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85146\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85146/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -193340,7 +427322,7 @@ "11:35", "12:50", "DL 431 - Dunham Laboratory 431", - "https:\/\/map.yale.edu\/?id=1910#!m\/560005" + "https://map.yale.edu/?id=1910#!m/560005" ] ], "Wednesday": [ @@ -193348,7 +427330,7 @@ "11:35", "12:50", "DL 431 - Dunham Laboratory 431", - "https:\/\/map.yale.edu\/?id=1910#!m\/560005" + "https://map.yale.edu/?id=1910#!m/560005" ] ] }, @@ -193360,10 +427342,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84421\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84421/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -193401,7 +427411,7 @@ "16:00", "17:15", "LOM 214 - Leet Oliver Memorial Hall 214", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ], "Thursday": [ @@ -193409,7 +427419,7 @@ "16:00", "17:15", "LOM 214 - Leet Oliver Memorial Hall 214", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ] }, @@ -193421,14 +427431,42 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85147\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85147/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", - "requirements": "Enrollment limited to first-year students with a strong background in biology and\/or chemistry, typically demonstrated by a score of 5 on Advanced Placement examinations. Preregistration required; see under First-Year Seminar Program.", + "requirements": "Enrollment limited to first-year students with a strong background in biology and/or chemistry, typically demonstrated by a score of 5 on Advanced Placement examinations. Preregistration required; see under First-Year Seminar Program.", "description": "Introduction to cancer as a genetic disease, with a focus on major discoveries in cancer biology that offer mechanistic insights into the disease process. A brief history of cancer; influence of the genomic revolution on cancer diagnostics; molecular defects underlying specific cancers; current and future cancer therapeutics. Patient case studies highlight specific molecular pathways and treatment strategies.", "short_title": "Topics in Cancer Biology", "title": "Topics in Cancer Biology", @@ -193461,7 +427499,7 @@ "13:00", "14:15", "WLH 013 - William L. Harkness Hall 013", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -193469,7 +427507,7 @@ "13:00", "14:15", "WLH 013 - William L. Harkness Hall 013", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -193485,10 +427523,129 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84423\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84423/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988489151000977, + 0.9987886548042297, + 0.9987258315086365, + 0.9988715052604675, + 0.9988635778427124, + 0.9988371729850769, + 0.9986152648925781, + 0.9988698363304138, + 0.9989155530929565 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989237189292908, + 0.9981743097305298, + 0.9988963603973389, + 0.9989199638366699, + 0.9989363551139832, + 0.9989263415336609, + 0.9989210367202759, + 0.998068630695343 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989134073257446, + 0.9973357319831848, + 0.9986379742622375, + 0.9989252686500549, + 0.9989326596260071, + 0.9988771080970764, + 0.9989172220230103, + 0.9974991679191589, + 0.997117280960083, + 0.9989301562309265 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 27, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 27 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -193529,7 +427686,7 @@ "13:30", "15:20", "WTS A42 - Watson Center 60 Sachem Street A42", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -193541,10 +427698,107 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84633\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84633/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9978175163269043, + 0.9988942742347717, + 0.9983519315719604, + 0.992295503616333, + 0.9988190531730652 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984105825424194, + 0.9988803267478943, + 0.9967917799949646, + 0.9969640374183655, + 0.9939751029014587, + 0.9989259839057922 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.999470055103302, + 0.9989041090011597, + 0.9995087385177612, + 0.9987061023712158 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 0.7333333333333333, + "final_counts": { + "POSITIVE": 11, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.7333333333333333, + "NEGATIVE": 0.26666666666666666 + } + } }, { "season_code": "202301", @@ -193594,7 +427848,7 @@ "11:35", "12:25", "DAVIES AUD - Davies Auditorium, Becton Ctr AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ], "Wednesday": [ @@ -193602,7 +427856,7 @@ "11:35", "12:25", "DAVIES AUD - Davies Auditorium, Becton Ctr AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ] }, @@ -193618,10 +427872,471 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84529\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84529/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9966471791267395, + 0.9988372921943665, + 0.9988265633583069, + 0.9986176490783691, + 0.9988040924072266, + 0.99868243932724, + 0.9981890320777893, + 0.9982670545578003, + 0.9989086389541626, + 0.9975112676620483, + 0.9988191723823547, + 0.9987435936927795, + 0.9987924098968506, + 0.9981337189674377, + 0.9987601041793823, + 0.9964271187782288, + 0.9987242817878723, + 0.9988154172897339, + 0.9989283680915833, + 0.9989259839057922, + 0.998696506023407, + 0.9986300468444824, + 0.9721580743789673, + 0.9987471103668213, + 0.9959845542907715, + 0.9987772107124329, + 0.9989078044891357, + 0.9987953901290894, + 0.9964859485626221, + 0.9984793066978455, + 0.9988173842430115, + 0.9988262057304382, + 0.9986982345581055, + 0.998915433883667, + 0.9985693693161011, + 0.9985679388046265, + 0.9976160526275635, + 0.9684014320373535, + 0.9965090155601501, + 0.9988501071929932, + 0.9989063739776611, + 0.9988118410110474, + 0.9982144832611084, + 0.998513400554657, + 0.9988295435905457, + 0.9986411929130554, + 0.9988730549812317, + 0.9986752867698669, + 0.9985654950141907, + 0.9988467693328857, + 0.9988880753517151, + 0.9857844710350037, + 0.9980206489562988, + 0.9975334405899048, + 0.9963498115539551, + 0.9989253878593445, + 0.9989299178123474, + 0.9988539218902588, + 0.9985401630401611, + 0.9989187717437744, + 0.9948893785476685, + 0.998847246170044, + 0.9978001713752747, + 0.9986346364021301, + 0.9988381266593933 + ], + "sentiment_counts": { + "POSITIVE": 65, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9975205063819885, + 0.9942052960395813, + 0.9987404942512512, + 0.9985219836235046, + 0.9622405171394348, + 0.9990094900131226, + 0.9980632662773132, + 0.9987133741378784, + 0.9981397390365601, + 0.9965862035751343, + 0.9817975759506226, + 0.9976488947868347, + 0.9930992126464844, + 0.9870994687080383, + 0.999504804611206, + 0.9988018274307251, + 0.9988487958908081, + 0.9989228844642639, + 0.9981162548065186, + 0.9985707998275757, + 0.9975014328956604, + 0.998432457447052, + 0.998863697052002, + 0.9987002611160278, + 0.998650848865509, + 0.9988774657249451, + 0.9988262057304382, + 0.9984135627746582, + 0.9938218593597412, + 0.9988269209861755, + 0.9934483170509338, + 0.9981675148010254, + 0.9988779425621033, + 0.9982438087463379, + 0.9916884303092957, + 0.9908447861671448, + 0.9985364675521851, + 0.9988231062889099, + 0.9975885152816772, + 0.997982382774353, + 0.9988383650779724, + 0.9971924424171448, + 0.9978511333465576, + 0.9984437823295593, + 0.9989217519760132, + 0.9989107847213745, + 0.9964404702186584, + 0.9989153146743774, + 0.9989079236984253, + 0.9319139122962952, + 0.9994958639144897, + 0.998939573764801, + 0.9989320635795593, + 0.9995077848434448, + 0.9989217519760132, + 0.9989056587219238, + 0.9939716458320618, + 0.9981032609939575, + 0.9987295269966125, + 0.9977599382400513 + ], + "sentiment_counts": { + "POSITIVE": 44, + "NEGATIVE": 16 + }, + "sentiment_distribution": { + "POSITIVE": 0.7333333333333333, + "NEGATIVE": 0.26666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7333333333333333 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.998600423336029, + 0.999510645866394, + 0.9988184571266174, + 0.9988400340080261, + 0.9988553524017334, + 0.9988773465156555, + 0.9755823016166687, + 0.9994972944259644, + 0.9930358529090881, + 0.9978529214859009, + 0.9974592328071594, + 0.9989092350006104, + 0.9989070892333984, + 0.9988285899162292, + 0.9958327412605286, + 0.999439537525177, + 0.9986801743507385, + 0.9957169890403748, + 0.9981364011764526, + 0.9987360835075378, + 0.9987176656723022, + 0.9987820982933044, + 0.9988717436790466, + 0.9987896084785461, + 0.9917519688606262, + 0.9989135265350342, + 0.9987364411354065, + 0.9981178045272827, + 0.9988964796066284, + 0.9989381432533264, + 0.9989336133003235, + 0.9989093542098999, + 0.9988403916358948, + 0.9988300204277039, + 0.998803973197937, + 0.9977173805236816, + 0.9988817572593689, + 0.9989209175109863, + 0.998865008354187, + 0.9987691044807434, + 0.9988723397254944, + 0.9983124732971191, + 0.9987784028053284, + 0.9988773465156555, + 0.9988434314727783, + 0.9986199140548706, + 0.9992992877960205, + 0.999451220035553, + 0.997117280960083, + 0.997117280960083, + 0.9972795844078064, + 0.9987988471984863, + 0.9994993209838867, + 0.9988443851470947, + 0.9980682730674744, + 0.9989150762557983, + 0.9984573125839233, + 0.9988768696784973, + 0.9986068606376648, + 0.9988300204277039, + 0.998842716217041, + 0.9937586784362793, + 0.9987691044807434, + 0.9989060163497925, + 0.9988623857498169, + 0.9986031651496887, + 0.998917818069458, + 0.9989367127418518, + 0.9989122152328491, + 0.9988092184066772, + 0.9791903495788574, + 0.9986453652381897 + ], + "sentiment_counts": { + "POSITIVE": 61, + "NEGATIVE": 11 + }, + "sentiment_distribution": { + "POSITIVE": 0.8472222222222222, + "NEGATIVE": 0.1527777777777778 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8472222222222222 + ] + }, + "final_label": "POSITIVE", + "final_count": 170, + "final_proportion": 0.8629441624365483, + "final_counts": { + "POSITIVE": 170, + "NEGATIVE": 27 + }, + "final_distribution": { + "POSITIVE": 0.8629441624365483, + "NEGATIVE": 0.13705583756345177 + } + } }, { "season_code": "202301", @@ -193653,7 +428368,7 @@ "14:30", "15:20", "WTS A68 - Watson Center 60 Sachem Street A68", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -193670,7 +428385,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -193702,7 +428445,7 @@ "14:30", "15:20", "WTS A39 - Watson Center 60 Sachem Street A39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -193719,7 +428462,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -193751,7 +428522,7 @@ "14:30", "15:20", "WTS A32 - Watson Center 60 Sachem Street A32", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -193768,7 +428539,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -193800,7 +428599,7 @@ "16:00", "16:50", "WTS A38 - Watson Center 60 Sachem Street A38", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -193817,7 +428616,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -193849,7 +428676,7 @@ "16:00", "16:50", "WTS B30 - Watson Center 60 Sachem Street B30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -193866,7 +428693,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -193898,7 +428753,7 @@ "16:00", "16:50", "WTS B35 - Watson Center 60 Sachem Street B35", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -193915,7 +428770,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -193947,7 +428830,7 @@ "19:00", "19:50", "WLH 004 - William L. Harkness Hall 004", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -193964,7 +428847,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -193996,7 +428907,7 @@ "19:00", "19:50", "WTS A39 - Watson Center 60 Sachem Street A39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -194013,7 +428924,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -194045,7 +428984,7 @@ "20:00", "20:50", "WTS A32 - Watson Center 60 Sachem Street A32", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -194062,7 +429001,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -194094,7 +429061,7 @@ "19:00", "19:50", "WTS B35 - Watson Center 60 Sachem Street B35", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -194111,7 +429078,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -194143,7 +429138,7 @@ "20:00", "20:50", "WTS B35 - Watson Center 60 Sachem Street B35", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -194160,7 +429155,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -194192,7 +429215,7 @@ "14:30", "15:20", "WTS B35 - Watson Center 60 Sachem Street B35", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -194209,7 +429232,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -194241,7 +429292,7 @@ "16:00", "16:50", "WTS A68 - Watson Center 60 Sachem Street A68", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -194258,7 +429309,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -194290,7 +429369,7 @@ "19:00", "19:50", "WTS A32 - Watson Center 60 Sachem Street A32", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -194307,7 +429386,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -194349,7 +429456,7 @@ "13:00", "14:15", "WTS A35 - Watson Center 60 Sachem Street A35", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -194357,7 +429464,7 @@ "13:00", "14:15", "WTS A35 - Watson Center 60 Sachem Street A35", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -194374,10 +429481,99 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84637\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84637/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989107847213745, + 0.9988844990730286, + 0.9985470175743103, + 0.9987719655036926 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987339377403259, + 0.9988312125205994, + 0.9988663196563721, + 0.9988352656364441 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998934805393219, + 0.9988986253738403, + 0.998884379863739, + 0.9989355206489563 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 12 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -194417,7 +429613,7 @@ "9:25", "10:15", "OML 202 - Osborn Memorial Laboratories 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/559958" + "https://map.yale.edu/?id=1910#!m/559958" ] ], "Wednesday": [ @@ -194425,7 +429621,7 @@ "9:25", "10:15", "OML 202 - Osborn Memorial Laboratories 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/559958" + "https://map.yale.edu/?id=1910#!m/559958" ] ], "Friday": [ @@ -194433,7 +429629,7 @@ "9:25", "10:15", "OML 202 - Osborn Memorial Laboratories 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/559958" + "https://map.yale.edu/?id=1910#!m/559958" ] ] }, @@ -194447,10 +429643,315 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84471\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84471/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.8720771670341492, + 0.9974707365036011, + 0.9989193677902222, + 0.9980623126029968, + 0.9980589747428894, + 0.9987788796424866, + 0.9988201260566711, + 0.987992525100708, + 0.9989054203033447, + 0.9987646341323853, + 0.9986088871955872, + 0.9985124468803406, + 0.9979791045188904, + 0.9988245368003845, + 0.9950460195541382, + 0.9987044334411621, + 0.9981734752655029, + 0.9982542395591736, + 0.9989018440246582, + 0.9987659454345703, + 0.9988697171211243, + 0.9966422319412231, + 0.9988996982574463, + 0.9985560774803162, + 0.9987467527389526, + 0.9987695813179016, + 0.9987596273422241, + 0.9985721111297607, + 0.99875807762146, + 0.9986233711242676, + 0.9988835453987122, + 0.9987474679946899, + 0.9987548589706421 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 31 + }, + "sentiment_distribution": { + "NEGATIVE": 0.06060606060606061, + "POSITIVE": 0.9393939393939394 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9393939393939394 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9992609620094299, + 0.9979482293128967, + 0.998917818069458, + 0.998767614364624, + 0.9986490607261658, + 0.996189296245575, + 0.9985476136207581, + 0.9988172650337219, + 0.9976772665977478, + 0.998791515827179, + 0.9995028972625732, + 0.9989317059516907, + 0.9891966581344604, + 0.9980757236480713, + 0.9988433122634888, + 0.9982033967971802, + 0.9984682202339172, + 0.9666481018066406, + 0.998705267906189, + 0.9974740147590637, + 0.9989222288131714, + 0.9989086389541626, + 0.9987778067588806, + 0.9988683462142944, + 0.998892605304718, + 0.9989209175109863, + 0.998670220375061, + 0.9983806610107422, + 0.9988800883293152, + 0.9989086389541626, + 0.998909592628479, + 0.9989113807678223, + 0.9983658194541931, + 0.9988337159156799, + 0.9962701797485352, + 0.9988523721694946, + 0.9931483864784241, + 0.996882438659668, + 0.9963853359222412, + 0.9988781809806824, + 0.9961657524108887, + 0.9989206790924072, + 0.998766303062439, + 0.9974830746650696, + 0.9987754225730896, + 0.9987976551055908, + 0.9988987445831299 + ], + "sentiment_counts": { + "NEGATIVE": 11, + "POSITIVE": 36 + }, + "sentiment_distribution": { + "NEGATIVE": 0.23404255319148937, + "POSITIVE": 0.7659574468085106 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7659574468085106 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9749354720115662, + 0.9986059069633484, + 0.998703122138977, + 0.9989060163497925, + 0.9989211559295654, + 0.9984771609306335, + 0.9987208247184753, + 0.9975795149803162, + 0.9834765195846558, + 0.9988700747489929, + 0.9949259757995605, + 0.9989029169082642, + 0.9988092184066772, + 0.9989221096038818, + 0.9985690116882324, + 0.9928921461105347, + 0.9983993172645569, + 0.9989323019981384, + 0.9763026237487793, + 0.9817178249359131, + 0.9989131689071655, + 0.9988779425621033, + 0.997117280960083, + 0.9989261031150818, + 0.9989281296730042, + 0.9987804293632507, + 0.9989080429077148, + 0.9988735318183899, + 0.9989368319511414, + 0.9854270219802856, + 0.9983217120170593, + 0.9988954067230225, + 0.9978201389312744, + 0.9988860487937927, + 0.9982553124427795, + 0.9972317814826965, + 0.9981922507286072, + 0.9808655977249146, + 0.998855710029602 + ], + "sentiment_counts": { + "NEGATIVE": 6, + "POSITIVE": 33 + }, + "sentiment_distribution": { + "NEGATIVE": 0.15384615384615385, + "POSITIVE": 0.8461538461538461 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8461538461538461 + ] + }, + "final_label": "POSITIVE", + "final_count": 100, + "final_proportion": 0.8403361344537815, + "final_counts": { + "NEGATIVE": 19, + "POSITIVE": 100 + }, + "final_distribution": { + "NEGATIVE": 0.15966386554621848, + "POSITIVE": 0.8403361344537815 + } + } }, { "season_code": "202301", @@ -194505,10 +430006,125 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84426\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84426/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984985589981079, + 0.9987179040908813, + 0.9970014691352844, + 0.9988964796066284, + 0.9984036087989807, + 0.998925507068634, + 0.9984645843505859, + 0.9986215829849243 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984404444694519, + 0.9989017248153687, + 0.9963206052780151, + 0.9989245533943176, + 0.9987679123878479, + 0.998860239982605, + 0.9985572695732117, + 0.9988994598388672 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 6 + }, + "sentiment_distribution": { + "NEGATIVE": 0.25, + "POSITIVE": 0.75 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982706308364868, + 0.9991521835327148, + 0.9954458475112915, + 0.9988347887992859, + 0.9988413453102112, + 0.9988234639167786, + 0.9989131689071655, + 0.9987677335739136 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "final_label": "POSITIVE", + "final_count": 21, + "final_proportion": 0.875, + "final_counts": { + "POSITIVE": 21, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + } + } }, { "season_code": "202301", @@ -194563,10 +430179,125 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86205\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/86205/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987961053848267, + 0.9986684322357178, + 0.9988162517547607, + 0.9988434314727783, + 0.9967767596244812, + 0.9987239241600037, + 0.9929100871086121, + 0.9987391829490662 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9945881366729736, + 0.9935266971588135, + 0.9986218214035034, + 0.9988179802894592, + 0.9986022114753723, + 0.9988352656364441, + 0.9989345669746399, + 0.998924195766449, + 0.9988771080970764 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998838484287262, + 0.9989064931869507, + 0.9986935257911682, + 0.997117280960083, + 0.9988539218902588, + 0.9989173412322998, + 0.9988536834716797, + 0.9989342093467712 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 25, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 25 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -194606,7 +430337,7 @@ "14:30", "15:45", "BASS 205 - Bass Center 205", - "https:\/\/map.yale.edu\/?id=1910#!m\/560102" + "https://map.yale.edu/?id=1910#!m/560102" ] ], "Wednesday": [ @@ -194614,7 +430345,7 @@ "14:30", "15:45", "BASS 205 - Bass Center 205", - "https:\/\/map.yale.edu\/?id=1910#!m\/560102" + "https://map.yale.edu/?id=1910#!m/560102" ] ] }, @@ -194626,10 +430357,99 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84430\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84430/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988130331039429, + 0.998499870300293, + 0.9985660910606384, + 0.9987699389457703 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9995108842849731, + 0.9980056881904602, + 0.9989110231399536, + 0.9988184571266174 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.25, + "POSITIVE": 0.75 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9995149374008179, + 0.9988242983818054, + 0.9989244341850281 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 0.8181818181818182, + "final_counts": { + "POSITIVE": 9, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8181818181818182, + "NEGATIVE": 0.18181818181818182 + } + } }, { "season_code": "202301", @@ -194673,7 +430493,7 @@ "11:35", "12:50", "BASS 305 - Bass Center 305", - "https:\/\/map.yale.edu\/?id=1910#!m\/560102" + "https://map.yale.edu/?id=1910#!m/560102" ] ], "Thursday": [ @@ -194681,7 +430501,7 @@ "11:35", "12:50", "BASS 305 - Bass Center 305", - "https:\/\/map.yale.edu\/?id=1910#!m\/560102" + "https://map.yale.edu/?id=1910#!m/560102" ] ] }, @@ -194695,10 +430515,195 @@ "classnotes": "", "final_exam": "Monday, May 8, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84432\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84432/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9825978875160217, + 0.9988811612129211, + 0.9982630610466003, + 0.9982622265815735, + 0.9989169836044312, + 0.9958509206771851, + 0.9985748529434204, + 0.9919254183769226, + 0.9974880218505859, + 0.9988139867782593, + 0.9985811710357666, + 0.9988227486610413, + 0.9987799525260925, + 0.9988952875137329, + 0.9987500905990601, + 0.9987204074859619, + 0.9988995790481567, + 0.9986347556114197, + 0.9989026784896851, + 0.9987970590591431, + 0.9987643957138062 + ], + "sentiment_counts": { + "POSITIVE": 21, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988561868667603, + 0.9990720748901367, + 0.9984862208366394, + 0.9994909763336182, + 0.9976131916046143, + 0.9989269375801086, + 0.9963971972465515, + 0.9988849759101868, + 0.996426522731781, + 0.9981915354728699, + 0.9989142417907715, + 0.9988061189651489, + 0.9978360533714294, + 0.9967315196990967, + 0.9932417273521423, + 0.994408130645752, + 0.9984625577926636, + 0.9989097118377686, + 0.9951426982879639, + 0.9994827508926392 + ], + "sentiment_counts": { + "POSITIVE": 15, + "NEGATIVE": 5 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9962335228919983, + 0.9989075660705566, + 0.9988654851913452, + 0.9987545013427734, + 0.9988746047019958, + 0.9953633546829224, + 0.9994997978210449, + 0.9988887906074524, + 0.9988879561424255, + 0.9975836277008057, + 0.9989058971405029, + 0.9989079236984253, + 0.9994953870773315, + 0.9989345669746399, + 0.9987296462059021, + 0.9987391829490662, + 0.9988166093826294, + 0.9990774393081665 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 5 + }, + "sentiment_distribution": { + "POSITIVE": 0.7222222222222222, + "NEGATIVE": 0.2777777777777778 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7222222222222222 + ] + }, + "final_label": "POSITIVE", + "final_count": 49, + "final_proportion": 0.8305084745762712, + "final_counts": { + "POSITIVE": 49, + "NEGATIVE": 10 + }, + "final_distribution": { + "POSITIVE": 0.8305084745762712, + "NEGATIVE": 0.1694915254237288 + } + } }, { "season_code": "202301", @@ -194751,7 +430756,7 @@ "14:30", "15:45", "BASS 405 - Bass Center 405", - "https:\/\/map.yale.edu\/?id=1910#!m\/560102" + "https://map.yale.edu/?id=1910#!m/560102" ] ], "Thursday": [ @@ -194759,7 +430764,7 @@ "14:30", "15:45", "BASS 405 - Bass Center 405", - "https:\/\/map.yale.edu\/?id=1910#!m\/560102" + "https://map.yale.edu/?id=1910#!m/560102" ] ] }, @@ -194773,14 +430778,143 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84491\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "Prerequisites: MB&B 300\/301 or MB&B 200\/MCDB 300 or permission of the instructor.\u00a0 Can be taken concurrently with MB&B 301.", + "syllabus_url": "https://yale.instructure.com/courses/84491/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988125562667847, + 0.9983453750610352, + 0.9986456036567688, + 0.9986985921859741, + 0.9977982044219971, + 0.9903422594070435, + 0.9986554384231567, + 0.9956871867179871, + 0.9983854293823242, + 0.9988418221473694, + 0.9961655139923096 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9090909090909091 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988546371459961, + 0.9924356341362, + 0.9994757771492004, + 0.998830258846283, + 0.9947176575660706, + 0.9983822107315063, + 0.9951450228691101, + 0.9986005425453186, + 0.9987438321113586, + 0.9995054006576538, + 0.9988664388656616 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.7272727272727273, + "NEGATIVE": 0.2727272727272727 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7272727272727273 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984412789344788, + 0.966108500957489, + 0.9989063739776611, + 0.9985975623130798, + 0.9945812821388245, + 0.9985987544059753, + 0.9927737712860107, + 0.9988572597503662, + 0.9988515377044678 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "final_label": "POSITIVE", + "final_count": 26, + "final_proportion": 0.8387096774193549, + "final_counts": { + "POSITIVE": 26, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.8387096774193549, + "NEGATIVE": 0.16129032258064516 + } + } + }, + { + "season_code": "202301", + "requirements": "Prerequisites: MB&B 300/301 or MB&B 200/MCDB 300 or permission of the instructor.\u00a0 Can be taken concurrently with MB&B 301.", "description": "Climate change is impacting how cells and organisms grow and reproduce. Imagine the ocean spiking a fever: cold-blooded organisms of all shapes, sizes and complexities struggle to survive when water temperatures go up 2-4 degrees. Some organisms adapt to extremes, while others cannot. Predicted and observed changes in temperature, pH and salt concentration do and will affect many parameters of the living world, from the kinetics of chemical reactions and cellular signaling pathways to the accumulation of unforeseen chemicals in the environment, the appearance and dispersal of new diseases, and the development of new foods. In this course, we approach climate change from the molecular point of view, identifying how cells and organisms\u2015from microbes to plants and animals\u2015respond to changing environmental conditions. To embrace the concept of \"one health\" for all life on the planet, this course leverages biochemistry, cell biology, molecular biophysics, and genetics to develop an understanding of the impact of climate change on the living world. We consider the foundational knowledge that biochemistry can bring to the table as we meet the challenge of climate change.", "short_title": "Biochemistry and Our Changing...", "title": "Biochemistry and Our Changing Climate", @@ -194813,7 +430947,7 @@ "16:00", "17:15", "LORIA 360 - Loria Center 360", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ], "Thursday": [ @@ -194821,7 +430955,7 @@ "16:00", "17:15", "LORIA 360 - Loria Center 360", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -194834,13 +430968,116 @@ ], "regnotes": "", "rp_attr": "", - "classnotes": "Prerequisites: MB&B 300a\/301b or MB&B 200\/MCDB 300 or permission of the instructor. Can be taken concurrently with MB&B 301.", + "classnotes": "Prerequisites: MB&B 300a/301b or MB&B 200/MCDB 300 or permission of the instructor. Can be taken concurrently with MB&B 301.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84435\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84435/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987980127334595, + 0.9987564086914062, + 0.9988442659378052, + 0.9985696077346802, + 0.9988442659378052, + 0.9973415732383728, + 0.9989295601844788 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982751607894897, + 0.9976184964179993, + 0.9988951086997986, + 0.9989055395126343 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988321661949158, + 0.9989217519760132, + 0.9989000558853149, + 0.9988711476325989, + 0.9988718628883362, + 0.9989283680915833, + 0.998855471611023, + 0.9989332556724548 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 19 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -194889,7 +431126,7 @@ "11:35", "12:50", "BASS 405 - Bass Center 405", - "https:\/\/map.yale.edu\/?id=1910#!m\/560102" + "https://map.yale.edu/?id=1910#!m/560102" ] ], "Thursday": [ @@ -194897,7 +431134,7 @@ "11:35", "12:50", "BASS 405 - Bass Center 405", - "https:\/\/map.yale.edu\/?id=1910#!m\/560102" + "https://map.yale.edu/?id=1910#!m/560102" ] ] }, @@ -194911,10 +431148,89 @@ "classnotes": "", "final_exam": "Monday, May 8, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84441\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84441/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987372756004333, + 0.9989155530929565 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9987972974777222, + 0.9874308109283447 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9972468614578247, + 0.9989346861839294 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 5, + "final_proportion": 0.8333333333333334, + "final_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + } + } }, { "season_code": "202301", @@ -194958,7 +431274,7 @@ "14:30", "15:45", "BASS 205 - Bass Center 205", - "https:\/\/map.yale.edu\/?id=1910#!m\/560102" + "https://map.yale.edu/?id=1910#!m/560102" ] ], "Thursday": [ @@ -194966,7 +431282,7 @@ "14:30", "15:45", "BASS 205 - Bass Center 205", - "https:\/\/map.yale.edu\/?id=1910#!m\/560102" + "https://map.yale.edu/?id=1910#!m/560102" ] ] }, @@ -194980,10 +431296,105 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84445\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84445/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987406134605408, + 0.9985958933830261, + 0.9986475110054016, + 0.9987049102783203 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9964325428009033, + 0.9994710087776184, + 0.998324453830719, + 0.9953008890151978, + 0.9930282235145569, + 0.9964008331298828 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989219903945923, + 0.9989126920700073, + 0.998873770236969, + 0.9946779012680054 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 0.7857142857142857, + "final_counts": { + "POSITIVE": 11, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.7857142857142857, + "NEGATIVE": 0.21428571428571427 + } + } }, { "season_code": "202301", @@ -195028,7 +431439,7 @@ "13:00", "14:15", "BASS 305 - Bass Center 305", - "https:\/\/map.yale.edu\/?id=1910#!m\/560102" + "https://map.yale.edu/?id=1910#!m/560102" ] ], "Wednesday": [ @@ -195036,7 +431447,7 @@ "13:00", "14:15", "BASS 305 - Bass Center 305", - "https:\/\/map.yale.edu\/?id=1910#!m\/560102" + "https://map.yale.edu/?id=1910#!m/560102" ] ] }, @@ -195045,7 +431456,7 @@ "Sc" ], "flags": [ - "YC CSEC: Electv intrsctn CS\/EC", + "YC CSEC: Electv intrsctn CS/EC", "YC GLHTH: Quantitative Data", "YC GLHTH: Bio & Env Influences", "YC S&DS: Data Analy Disc Area" @@ -195055,15 +431466,230 @@ "classnotes": "", "final_exam": "Tuesday, May 9, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84447\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84447/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9970090985298157, + 0.9988558292388916, + 0.998725950717926, + 0.9988222718238831, + 0.9770744442939758, + 0.9983933568000793, + 0.9988370537757874, + 0.9987943172454834, + 0.9988017082214355, + 0.9986467957496643, + 0.9897382855415344, + 0.9848324656486511, + 0.9954740405082703, + 0.9987924098968506, + 0.9988179802894592, + 0.9761744737625122, + 0.9987727999687195, + 0.9987554550170898, + 0.9943423271179199, + 0.9987911581993103, + 0.9987240433692932, + 0.9988112449645996 + ], + "sentiment_counts": { + "POSITIVE": 21, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9545454545454546, + "NEGATIVE": 0.045454545454545456 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9545454545454546 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988459348678589, + 0.9987896084785461, + 0.9988797307014465, + 0.9958059787750244, + 0.9894225001335144, + 0.9994359612464905, + 0.9979944229125977, + 0.998843789100647, + 0.9988779425621033, + 0.9994478821754456, + 0.9994989633560181, + 0.9789282083511353, + 0.9994825124740601, + 0.9988343119621277, + 0.9959596991539001, + 0.9974040389060974, + 0.9970256686210632, + 0.9994776844978333, + 0.976995587348938, + 0.9994934797286987, + 0.9966699481010437, + 0.9995031356811523, + 0.9995009899139404, + 0.9981524348258972, + 0.9974574446678162, + 0.9989149570465088 + ], + "sentiment_counts": { + "POSITIVE": 15, + "NEGATIVE": 11 + }, + "sentiment_distribution": { + "POSITIVE": 0.5769230769230769, + "NEGATIVE": 0.4230769230769231 + }, + "sentiment_overall": [ + "POSITIVE", + 0.5769230769230769 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998795747756958, + 0.9989169836044312, + 0.9988184571266174, + 0.998866081237793, + 0.999496340751648, + 0.9985204339027405, + 0.9988468885421753, + 0.9989088773727417, + 0.9988956451416016, + 0.9987001419067383, + 0.9988686442375183, + 0.998552143573761, + 0.9929360747337341, + 0.9988508224487305, + 0.9988837838172913, + 0.9963728189468384, + 0.9917622804641724, + 0.9985169768333435, + 0.9851395487785339, + 0.9989237189292908, + 0.9962260723114014, + 0.9862384796142578, + 0.9989376664161682, + 0.9995100498199463, + 0.9994924068450928, + 0.9989180564880371 + ], + "sentiment_counts": { + "POSITIVE": 20, + "NEGATIVE": 6 + }, + "sentiment_distribution": { + "POSITIVE": 0.7692307692307693, + "NEGATIVE": 0.23076923076923078 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7692307692307693 + ] + }, + "final_label": "POSITIVE", + "final_count": 56, + "final_proportion": 0.7567567567567568, + "final_counts": { + "POSITIVE": 56, + "NEGATIVE": 18 + }, + "final_distribution": { + "POSITIVE": 0.7567567567567568, + "NEGATIVE": 0.24324324324324326 + } + } }, { "season_code": "202301", "requirements": "Enrollment limited to MB&B majors. Prerequisite: MB&B 251L or permission of the instructor.", - "description": "Individual laboratory projects under the supervision of a faculty member. Students must submit an enrollment form that specifies the research supervisor by the date that course schedules are due. Students are expected to commit at least ten hours per week to working in a laboratory. Written assignments include a research proposal, due near the beginning of the term, and a research report that summarizes experimental results, due before the beginning of the final examination period. Students receive a letter grade. Up to 2 credits of MB&B 470\/471 may be counted toward the MB&B major requirements.", + "description": "Individual laboratory projects under the supervision of a faculty member. Students must submit an enrollment form that specifies the research supervisor by the date that course schedules are due. Students are expected to commit at least ten hours per week to working in a laboratory. Written assignments include a research proposal, due near the beginning of the term, and a research report that summarizes experimental results, due before the beginning of the final examination period. Students receive a letter grade. Up to 2 credits of MB&B 470/471 may be counted toward the MB&B major requirements.", "short_title": "Research in Biochemistry and ...", "title": "Research in Biochemistry and Biophysics for the Major", "school": "YC", @@ -195100,15 +431726,110 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84452\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84452/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986485838890076, + 0.9978467226028442, + 0.997491717338562, + 0.9968189001083374, + 0.9988356232643127 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989321827888489, + 0.9975964426994324, + 0.998690664768219, + 0.9988964796066284 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983484745025635, + 0.9989058971405029, + 0.9983976483345032, + 0.998563826084137, + 0.9984488487243652, + 0.9988656044006348 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 15 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", "requirements": "Prerequisites: MB&B 470, 471 and 251L or permission of the instructor.", - "description": "Individual laboratory projects under the supervision of a faculty member. Students must submit an enrollment form that specifies the research supervisor by the date that course schedules are due. Students are expected to commit at least ten hours per week to working in a laboratory. Written assignments include a research proposal, due near the beginning of the term, and a research report that summarizes experimental results, due before the beginning of the final examination period. Students are graded pass\/fail. Taken after students have completed two credits of MB&B 470 and 471. These courses do not count toward the major requirements.", + "description": "Individual laboratory projects under the supervision of a faculty member. Students must submit an enrollment form that specifies the research supervisor by the date that course schedules are due. Students are expected to commit at least ten hours per week to working in a laboratory. Written assignments include a research proposal, due near the beginning of the term, and a research report that summarizes experimental results, due before the beginning of the final examination period. Students are graded pass/fail. Taken after students have completed two credits of MB&B 470 and 471. These courses do not count toward the major requirements.", "short_title": "Research in Biochemistry and ...", "title": "Research in Biochemistry and Biophysics", "school": "YC", @@ -195145,10 +431866,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84456\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84456/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -195188,10 +431937,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84458\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84458/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -195240,10 +432017,133 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84460\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84460/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988099336624146, + 0.9986854195594788, + 0.9984098672866821, + 0.9984017014503479, + 0.9988565444946289, + 0.998629093170166, + 0.9986224174499512, + 0.9988143444061279, + 0.9797863960266113, + 0.9983202815055847 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.999167799949646, + 0.9972454309463501, + 0.9988760352134705, + 0.9988417029380798, + 0.998802661895752, + 0.9988671541213989, + 0.9980812072753906, + 0.999510645866394, + 0.996892511844635, + 0.9979202151298523, + 0.9989155530929565 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 8 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2727272727272727, + "POSITIVE": 0.7272727272727273 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7272727272727273 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9965609908103943, + 0.9964380264282227, + 0.9987964630126953, + 0.9979002475738525, + 0.9981462955474854, + 0.9859172701835632, + 0.9820720553398132 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 24, + "final_proportion": 0.8571428571428571, + "final_counts": { + "POSITIVE": 24, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + } + } }, { "season_code": "202301", @@ -195283,7 +432183,7 @@ "9:25", "10:15", "OML 202 - Osborn Memorial Laboratories 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/559958" + "https://map.yale.edu/?id=1910#!m/559958" ] ], "Wednesday": [ @@ -195291,7 +432191,7 @@ "9:25", "10:15", "OML 202 - Osborn Memorial Laboratories 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/559958" + "https://map.yale.edu/?id=1910#!m/559958" ] ], "Friday": [ @@ -195299,7 +432199,7 @@ "9:25", "10:15", "OML 202 - Osborn Memorial Laboratories 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/559958" + "https://map.yale.edu/?id=1910#!m/559958" ] ] }, @@ -195311,10 +432211,315 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84471\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84471/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.8720771670341492, + 0.9974707365036011, + 0.9989193677902222, + 0.9980623126029968, + 0.9980589747428894, + 0.9987788796424866, + 0.9988201260566711, + 0.987992525100708, + 0.9989054203033447, + 0.9987646341323853, + 0.9986088871955872, + 0.9985124468803406, + 0.9979791045188904, + 0.9988245368003845, + 0.9950460195541382, + 0.9987044334411621, + 0.9981734752655029, + 0.9982542395591736, + 0.9989018440246582, + 0.9987659454345703, + 0.9988697171211243, + 0.9966422319412231, + 0.9988996982574463, + 0.9985560774803162, + 0.9987467527389526, + 0.9987695813179016, + 0.9987596273422241, + 0.9985721111297607, + 0.99875807762146, + 0.9986233711242676, + 0.9988835453987122, + 0.9987474679946899, + 0.9987548589706421 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 31 + }, + "sentiment_distribution": { + "NEGATIVE": 0.06060606060606061, + "POSITIVE": 0.9393939393939394 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9393939393939394 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9992609620094299, + 0.9979482293128967, + 0.998917818069458, + 0.998767614364624, + 0.9986490607261658, + 0.996189296245575, + 0.9985476136207581, + 0.9988172650337219, + 0.9976772665977478, + 0.998791515827179, + 0.9995028972625732, + 0.9989317059516907, + 0.9891966581344604, + 0.9980757236480713, + 0.9988433122634888, + 0.9982033967971802, + 0.9984682202339172, + 0.9666481018066406, + 0.998705267906189, + 0.9974740147590637, + 0.9989222288131714, + 0.9989086389541626, + 0.9987778067588806, + 0.9988683462142944, + 0.998892605304718, + 0.9989209175109863, + 0.998670220375061, + 0.9983806610107422, + 0.9988800883293152, + 0.9989086389541626, + 0.998909592628479, + 0.9989113807678223, + 0.9983658194541931, + 0.9988337159156799, + 0.9962701797485352, + 0.9988523721694946, + 0.9931483864784241, + 0.996882438659668, + 0.9963853359222412, + 0.9988781809806824, + 0.9961657524108887, + 0.9989206790924072, + 0.998766303062439, + 0.9974830746650696, + 0.9987754225730896, + 0.9987976551055908, + 0.9988987445831299 + ], + "sentiment_counts": { + "NEGATIVE": 11, + "POSITIVE": 36 + }, + "sentiment_distribution": { + "NEGATIVE": 0.23404255319148937, + "POSITIVE": 0.7659574468085106 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7659574468085106 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9749354720115662, + 0.9986059069633484, + 0.998703122138977, + 0.9989060163497925, + 0.9989211559295654, + 0.9984771609306335, + 0.9987208247184753, + 0.9975795149803162, + 0.9834765195846558, + 0.9988700747489929, + 0.9949259757995605, + 0.9989029169082642, + 0.9988092184066772, + 0.9989221096038818, + 0.9985690116882324, + 0.9928921461105347, + 0.9983993172645569, + 0.9989323019981384, + 0.9763026237487793, + 0.9817178249359131, + 0.9989131689071655, + 0.9988779425621033, + 0.997117280960083, + 0.9989261031150818, + 0.9989281296730042, + 0.9987804293632507, + 0.9989080429077148, + 0.9988735318183899, + 0.9989368319511414, + 0.9854270219802856, + 0.9983217120170593, + 0.9988954067230225, + 0.9978201389312744, + 0.9988860487937927, + 0.9982553124427795, + 0.9972317814826965, + 0.9981922507286072, + 0.9808655977249146, + 0.998855710029602 + ], + "sentiment_counts": { + "NEGATIVE": 6, + "POSITIVE": 33 + }, + "sentiment_distribution": { + "NEGATIVE": 0.15384615384615385, + "POSITIVE": 0.8461538461538461 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8461538461538461 + ] + }, + "final_label": "POSITIVE", + "final_count": 100, + "final_proportion": 0.8403361344537815, + "final_counts": { + "NEGATIVE": 19, + "POSITIVE": 100 + }, + "final_distribution": { + "NEGATIVE": 0.15966386554621848, + "POSITIVE": 0.8403361344537815 + } + } }, { "season_code": "202301", @@ -195354,7 +432559,7 @@ "18:00", "19:15", "BASS 405 - Bass Center 405", - "https:\/\/map.yale.edu\/?id=1910#!m\/560102" + "https://map.yale.edu/?id=1910#!m/560102" ] ], "Wednesday": [ @@ -195362,7 +432567,7 @@ "18:00", "19:15", "BASS 405 - Bass Center 405", - "https:\/\/map.yale.edu\/?id=1910#!m\/560102" + "https://map.yale.edu/?id=1910#!m/560102" ] ] }, @@ -195374,10 +432579,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84464\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84464/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -195442,7 +432675,7 @@ "9:25", "10:40", "SHM B201 - Sterling Hall of Medicine B201", - "https:\/\/map.yale.edu\/?id=1910#!m\/559929" + "https://map.yale.edu/?id=1910#!m/559929" ] ], "Wednesday": [ @@ -195450,7 +432683,7 @@ "9:25", "10:40", "SHM B201 - Sterling Hall of Medicine B201", - "https:\/\/map.yale.edu\/?id=1910#!m\/559929" + "https://map.yale.edu/?id=1910#!m/559929" ] ] }, @@ -195462,15 +432695,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84596\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84596/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "An examination of fundamental concepts in molecular biology through analysis of landmark papers. Development of skills in reading the primary scientific literature and in critical thinking. Open only to MB&B students pursuing the B.S.\/M.S. degree.", + "description": "An examination of fundamental concepts in molecular biology through analysis of landmark papers. Development of skills in reading the primary scientific literature and in critical thinking. Open only to MB&B students pursuing the B.S./M.S. degree.", "short_title": "Methods and Logic in Molecula...", "title": "Methods and Logic in Molecular Biology", "school": "GS", @@ -195509,7 +432770,7 @@ "14:30", "15:45", "BASS 205 - Bass Center 205", - "https:\/\/map.yale.edu\/?id=1910#!m\/560102" + "https://map.yale.edu/?id=1910#!m/560102" ] ], "Thursday": [ @@ -195517,7 +432778,7 @@ "14:30", "15:45", "BASS 205 - Bass Center 205", - "https:\/\/map.yale.edu\/?id=1910#!m\/560102" + "https://map.yale.edu/?id=1910#!m/560102" ] ] }, @@ -195529,10 +432790,105 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84445\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84445/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987406134605408, + 0.9985958933830261, + 0.9986475110054016, + 0.9987049102783203 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9964325428009033, + 0.9994710087776184, + 0.998324453830719, + 0.9953008890151978, + 0.9930282235145569, + 0.9964008331298828 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989219903945923, + 0.9989126920700073, + 0.998873770236969, + 0.9946779012680054 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 0.7857142857142857, + "final_counts": { + "POSITIVE": 11, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.7857142857142857, + "NEGATIVE": 0.21428571428571427 + } + } }, { "season_code": "202301", @@ -195585,7 +432941,7 @@ "14:30", "15:45", "BASS 405 - Bass Center 405", - "https:\/\/map.yale.edu\/?id=1910#!m\/560102" + "https://map.yale.edu/?id=1910#!m/560102" ] ], "Thursday": [ @@ -195593,7 +432949,7 @@ "14:30", "15:45", "BASS 405 - Bass Center 405", - "https:\/\/map.yale.edu\/?id=1910#!m\/560102" + "https://map.yale.edu/?id=1910#!m/560102" ] ] }, @@ -195605,17 +432961,146 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84491\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84491/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "", - "description": "For students in the joint B.S.\/M.S. program with Yale College.", - "short_title": "Intensive Research for B.S.\/M...", - "title": "Intensive Research for B.S.\/M.S. Candidates", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988125562667847, + 0.9983453750610352, + 0.9986456036567688, + 0.9986985921859741, + 0.9977982044219971, + 0.9903422594070435, + 0.9986554384231567, + 0.9956871867179871, + 0.9983854293823242, + 0.9988418221473694, + 0.9961655139923096 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9090909090909091 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988546371459961, + 0.9924356341362, + 0.9994757771492004, + 0.998830258846283, + 0.9947176575660706, + 0.9983822107315063, + 0.9951450228691101, + 0.9986005425453186, + 0.9987438321113586, + 0.9995054006576538, + 0.9988664388656616 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.7272727272727273, + "NEGATIVE": 0.2727272727272727 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7272727272727273 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984412789344788, + 0.966108500957489, + 0.9989063739776611, + 0.9985975623130798, + 0.9945812821388245, + 0.9985987544059753, + 0.9927737712860107, + 0.9988572597503662, + 0.9988515377044678 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "final_label": "POSITIVE", + "final_count": 26, + "final_proportion": 0.8387096774193549, + "final_counts": { + "POSITIVE": 26, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.8387096774193549, + "NEGATIVE": 0.16129032258064516 + } + } + }, + { + "season_code": "202301", + "requirements": "", + "description": "For students in the joint B.S./M.S. program with Yale College.", + "short_title": "Intensive Research for B.S./M...", + "title": "Intensive Research for B.S./M.S. Candidates", "school": "YC", "credits": 2.0, "extra_info": "ACTIVE", @@ -195648,10 +433133,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84465\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84465/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -195695,7 +433208,7 @@ "11:35", "12:50", "BASS 305 - Bass Center 305", - "https:\/\/map.yale.edu\/?id=1910#!m\/560102" + "https://map.yale.edu/?id=1910#!m/560102" ] ], "Thursday": [ @@ -195703,7 +433216,7 @@ "11:35", "12:50", "BASS 305 - Bass Center 305", - "https:\/\/map.yale.edu\/?id=1910#!m\/560102" + "https://map.yale.edu/?id=1910#!m/560102" ] ] }, @@ -195715,10 +433228,195 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84432\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84432/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9825978875160217, + 0.9988811612129211, + 0.9982630610466003, + 0.9982622265815735, + 0.9989169836044312, + 0.9958509206771851, + 0.9985748529434204, + 0.9919254183769226, + 0.9974880218505859, + 0.9988139867782593, + 0.9985811710357666, + 0.9988227486610413, + 0.9987799525260925, + 0.9988952875137329, + 0.9987500905990601, + 0.9987204074859619, + 0.9988995790481567, + 0.9986347556114197, + 0.9989026784896851, + 0.9987970590591431, + 0.9987643957138062 + ], + "sentiment_counts": { + "POSITIVE": 21, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988561868667603, + 0.9990720748901367, + 0.9984862208366394, + 0.9994909763336182, + 0.9976131916046143, + 0.9989269375801086, + 0.9963971972465515, + 0.9988849759101868, + 0.996426522731781, + 0.9981915354728699, + 0.9989142417907715, + 0.9988061189651489, + 0.9978360533714294, + 0.9967315196990967, + 0.9932417273521423, + 0.994408130645752, + 0.9984625577926636, + 0.9989097118377686, + 0.9951426982879639, + 0.9994827508926392 + ], + "sentiment_counts": { + "POSITIVE": 15, + "NEGATIVE": 5 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9962335228919983, + 0.9989075660705566, + 0.9988654851913452, + 0.9987545013427734, + 0.9988746047019958, + 0.9953633546829224, + 0.9994997978210449, + 0.9988887906074524, + 0.9988879561424255, + 0.9975836277008057, + 0.9989058971405029, + 0.9989079236984253, + 0.9994953870773315, + 0.9989345669746399, + 0.9987296462059021, + 0.9987391829490662, + 0.9988166093826294, + 0.9990774393081665 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 5 + }, + "sentiment_distribution": { + "POSITIVE": 0.7222222222222222, + "NEGATIVE": 0.2777777777777778 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7222222222222222 + ] + }, + "final_label": "POSITIVE", + "final_count": 49, + "final_proportion": 0.8305084745762712, + "final_counts": { + "POSITIVE": 49, + "NEGATIVE": 10 + }, + "final_distribution": { + "POSITIVE": 0.8305084745762712, + "NEGATIVE": 0.1694915254237288 + } + } }, { "season_code": "202301", @@ -195779,10 +433477,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84469\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84469/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -195825,12 +433551,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "Designed for students who are beginning to do scientific research. The course seeks to describe some of the basic features of life in contemporary research and some of the personal and professional issues that researchers encounter in their work. Approximately six sessions, run in a seminar\/discussion format. Required of and open only to first-year graduate students in BQBS.", + "description": "Designed for students who are beginning to do scientific research. The course seeks to describe some of the basic features of life in contemporary research and some of the personal and professional issues that researchers encounter in their work. Approximately six sessions, run in a seminar/discussion format. Required of and open only to first-year graduate students in BQBS.", "short_title": "Responsible Conduct of Research", "title": "Responsible Conduct of Research", "school": "GS", @@ -195886,7 +433640,7 @@ "15:00", "16:00", "SHM C103 - Sterling Hall of Medicine C103", - "https:\/\/map.yale.edu\/?id=1910#!m\/559929" + "https://map.yale.edu/?id=1910#!m/559929" ] ] }, @@ -195898,10 +433652,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84473\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84473/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -195962,14 +433744,42 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87140\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87140/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", - "requirements": "Prerequisite: MB&B 710\/C&MP 710.", + "requirements": "Prerequisite: MB&B 710/C&MP 710.", "description": "This laboratory course provides hands-on training in the practical aspects of macromolecular structure determination by cryo-electron microscopy (cryo-EM). Topics include cryo-EM data collection, image preparation and correction, single-particle picking and 2-D classification, 3-D classification, refinement and post-processing, model building, refinement and evaluation. The course includes training in the use of computer programs used to perform these calculations.", "short_title": "Practical cryo-EM Workshop", "title": "Practical cryo-EM Workshop", @@ -196015,10 +433825,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84477\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84477/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -196057,7 +433895,7 @@ "10:00", "11:45", "BCMM 101 - Boyer Ctr Molecular Medicine 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/560055" + "https://map.yale.edu/?id=1910#!m/560055" ] ], "Thursday": [ @@ -196065,7 +433903,7 @@ "10:00", "11:45", "BCMM 101 - Boyer Ctr Molecular Medicine 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/560055" + "https://map.yale.edu/?id=1910#!m/560055" ] ] }, @@ -196077,10 +433915,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84513\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84513/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -196129,7 +433995,7 @@ "11:35", "12:50", "BASS 405 - Bass Center 405", - "https:\/\/map.yale.edu\/?id=1910#!m\/560102" + "https://map.yale.edu/?id=1910#!m/560102" ] ], "Thursday": [ @@ -196137,7 +434003,7 @@ "11:35", "12:50", "BASS 405 - Bass Center 405", - "https:\/\/map.yale.edu\/?id=1910#!m\/560102" + "https://map.yale.edu/?id=1910#!m/560102" ] ] }, @@ -196149,10 +434015,89 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84441\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84441/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987372756004333, + 0.9989155530929565 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9987972974777222, + 0.9874308109283447 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9972468614578247, + 0.9989346861839294 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 5, + "final_proportion": 0.8333333333333334, + "final_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + } + } }, { "season_code": "202301", @@ -196197,7 +434142,7 @@ "13:00", "14:15", "BASS 305 - Bass Center 305", - "https:\/\/map.yale.edu\/?id=1910#!m\/560102" + "https://map.yale.edu/?id=1910#!m/560102" ] ], "Wednesday": [ @@ -196205,7 +434150,7 @@ "13:00", "14:15", "BASS 305 - Bass Center 305", - "https:\/\/map.yale.edu\/?id=1910#!m\/560102" + "https://map.yale.edu/?id=1910#!m/560102" ] ] }, @@ -196221,10 +434166,225 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84447\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84447/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9970090985298157, + 0.9988558292388916, + 0.998725950717926, + 0.9988222718238831, + 0.9770744442939758, + 0.9983933568000793, + 0.9988370537757874, + 0.9987943172454834, + 0.9988017082214355, + 0.9986467957496643, + 0.9897382855415344, + 0.9848324656486511, + 0.9954740405082703, + 0.9987924098968506, + 0.9988179802894592, + 0.9761744737625122, + 0.9987727999687195, + 0.9987554550170898, + 0.9943423271179199, + 0.9987911581993103, + 0.9987240433692932, + 0.9988112449645996 + ], + "sentiment_counts": { + "POSITIVE": 21, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9545454545454546, + "NEGATIVE": 0.045454545454545456 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9545454545454546 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988459348678589, + 0.9987896084785461, + 0.9988797307014465, + 0.9958059787750244, + 0.9894225001335144, + 0.9994359612464905, + 0.9979944229125977, + 0.998843789100647, + 0.9988779425621033, + 0.9994478821754456, + 0.9994989633560181, + 0.9789282083511353, + 0.9994825124740601, + 0.9988343119621277, + 0.9959596991539001, + 0.9974040389060974, + 0.9970256686210632, + 0.9994776844978333, + 0.976995587348938, + 0.9994934797286987, + 0.9966699481010437, + 0.9995031356811523, + 0.9995009899139404, + 0.9981524348258972, + 0.9974574446678162, + 0.9989149570465088 + ], + "sentiment_counts": { + "POSITIVE": 15, + "NEGATIVE": 11 + }, + "sentiment_distribution": { + "POSITIVE": 0.5769230769230769, + "NEGATIVE": 0.4230769230769231 + }, + "sentiment_overall": [ + "POSITIVE", + 0.5769230769230769 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998795747756958, + 0.9989169836044312, + 0.9988184571266174, + 0.998866081237793, + 0.999496340751648, + 0.9985204339027405, + 0.9988468885421753, + 0.9989088773727417, + 0.9988956451416016, + 0.9987001419067383, + 0.9988686442375183, + 0.998552143573761, + 0.9929360747337341, + 0.9988508224487305, + 0.9988837838172913, + 0.9963728189468384, + 0.9917622804641724, + 0.9985169768333435, + 0.9851395487785339, + 0.9989237189292908, + 0.9962260723114014, + 0.9862384796142578, + 0.9989376664161682, + 0.9995100498199463, + 0.9994924068450928, + 0.9989180564880371 + ], + "sentiment_counts": { + "POSITIVE": 20, + "NEGATIVE": 6 + }, + "sentiment_distribution": { + "POSITIVE": 0.7692307692307693, + "NEGATIVE": 0.23076923076923078 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7692307692307693 + ] + }, + "final_label": "POSITIVE", + "final_count": 56, + "final_proportion": 0.7567567567567568, + "final_counts": { + "POSITIVE": 56, + "NEGATIVE": 18 + }, + "final_distribution": { + "POSITIVE": 0.7567567567567568, + "NEGATIVE": 0.24324324324324326 + } + } }, { "season_code": "202301", @@ -196269,7 +434429,7 @@ "13:00", "14:15", "BASS 305 - Bass Center 305", - "https:\/\/map.yale.edu\/?id=1910#!m\/560102" + "https://map.yale.edu/?id=1910#!m/560102" ] ], "Wednesday": [ @@ -196277,7 +434437,7 @@ "13:00", "14:15", "BASS 305 - Bass Center 305", - "https:\/\/map.yale.edu\/?id=1910#!m\/560102" + "https://map.yale.edu/?id=1910#!m/560102" ] ] }, @@ -196293,10 +434453,225 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84447\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84447/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9970090985298157, + 0.9988558292388916, + 0.998725950717926, + 0.9988222718238831, + 0.9770744442939758, + 0.9983933568000793, + 0.9988370537757874, + 0.9987943172454834, + 0.9988017082214355, + 0.9986467957496643, + 0.9897382855415344, + 0.9848324656486511, + 0.9954740405082703, + 0.9987924098968506, + 0.9988179802894592, + 0.9761744737625122, + 0.9987727999687195, + 0.9987554550170898, + 0.9943423271179199, + 0.9987911581993103, + 0.9987240433692932, + 0.9988112449645996 + ], + "sentiment_counts": { + "POSITIVE": 21, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9545454545454546, + "NEGATIVE": 0.045454545454545456 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9545454545454546 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988459348678589, + 0.9987896084785461, + 0.9988797307014465, + 0.9958059787750244, + 0.9894225001335144, + 0.9994359612464905, + 0.9979944229125977, + 0.998843789100647, + 0.9988779425621033, + 0.9994478821754456, + 0.9994989633560181, + 0.9789282083511353, + 0.9994825124740601, + 0.9988343119621277, + 0.9959596991539001, + 0.9974040389060974, + 0.9970256686210632, + 0.9994776844978333, + 0.976995587348938, + 0.9994934797286987, + 0.9966699481010437, + 0.9995031356811523, + 0.9995009899139404, + 0.9981524348258972, + 0.9974574446678162, + 0.9989149570465088 + ], + "sentiment_counts": { + "POSITIVE": 15, + "NEGATIVE": 11 + }, + "sentiment_distribution": { + "POSITIVE": 0.5769230769230769, + "NEGATIVE": 0.4230769230769231 + }, + "sentiment_overall": [ + "POSITIVE", + 0.5769230769230769 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998795747756958, + 0.9989169836044312, + 0.9988184571266174, + 0.998866081237793, + 0.999496340751648, + 0.9985204339027405, + 0.9988468885421753, + 0.9989088773727417, + 0.9988956451416016, + 0.9987001419067383, + 0.9988686442375183, + 0.998552143573761, + 0.9929360747337341, + 0.9988508224487305, + 0.9988837838172913, + 0.9963728189468384, + 0.9917622804641724, + 0.9985169768333435, + 0.9851395487785339, + 0.9989237189292908, + 0.9962260723114014, + 0.9862384796142578, + 0.9989376664161682, + 0.9995100498199463, + 0.9994924068450928, + 0.9989180564880371 + ], + "sentiment_counts": { + "POSITIVE": 20, + "NEGATIVE": 6 + }, + "sentiment_distribution": { + "POSITIVE": 0.7692307692307693, + "NEGATIVE": 0.23076923076923078 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7692307692307693 + ] + }, + "final_label": "POSITIVE", + "final_count": 56, + "final_proportion": 0.7567567567567568, + "final_counts": { + "POSITIVE": 56, + "NEGATIVE": 18 + }, + "final_distribution": { + "POSITIVE": 0.7567567567567568, + "NEGATIVE": 0.24324324324324326 + } + } }, { "season_code": "202301", @@ -196341,7 +434716,7 @@ "13:00", "14:15", "BASS 305 - Bass Center 305", - "https:\/\/map.yale.edu\/?id=1910#!m\/560102" + "https://map.yale.edu/?id=1910#!m/560102" ] ], "Wednesday": [ @@ -196349,7 +434724,7 @@ "13:00", "14:15", "BASS 305 - Bass Center 305", - "https:\/\/map.yale.edu\/?id=1910#!m\/560102" + "https://map.yale.edu/?id=1910#!m/560102" ] ] }, @@ -196365,15 +434740,230 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84447\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84447/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "", - "description": "A weekly seminar presented by faculty trainers on topics relating to proper conduct of research. Required of first-year Immunobiology students, first-year CB&B students, and training grant-funded postdocs. Pass\/Fail.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9970090985298157, + 0.9988558292388916, + 0.998725950717926, + 0.9988222718238831, + 0.9770744442939758, + 0.9983933568000793, + 0.9988370537757874, + 0.9987943172454834, + 0.9988017082214355, + 0.9986467957496643, + 0.9897382855415344, + 0.9848324656486511, + 0.9954740405082703, + 0.9987924098968506, + 0.9988179802894592, + 0.9761744737625122, + 0.9987727999687195, + 0.9987554550170898, + 0.9943423271179199, + 0.9987911581993103, + 0.9987240433692932, + 0.9988112449645996 + ], + "sentiment_counts": { + "POSITIVE": 21, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9545454545454546, + "NEGATIVE": 0.045454545454545456 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9545454545454546 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988459348678589, + 0.9987896084785461, + 0.9988797307014465, + 0.9958059787750244, + 0.9894225001335144, + 0.9994359612464905, + 0.9979944229125977, + 0.998843789100647, + 0.9988779425621033, + 0.9994478821754456, + 0.9994989633560181, + 0.9789282083511353, + 0.9994825124740601, + 0.9988343119621277, + 0.9959596991539001, + 0.9974040389060974, + 0.9970256686210632, + 0.9994776844978333, + 0.976995587348938, + 0.9994934797286987, + 0.9966699481010437, + 0.9995031356811523, + 0.9995009899139404, + 0.9981524348258972, + 0.9974574446678162, + 0.9989149570465088 + ], + "sentiment_counts": { + "POSITIVE": 15, + "NEGATIVE": 11 + }, + "sentiment_distribution": { + "POSITIVE": 0.5769230769230769, + "NEGATIVE": 0.4230769230769231 + }, + "sentiment_overall": [ + "POSITIVE", + 0.5769230769230769 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998795747756958, + 0.9989169836044312, + 0.9988184571266174, + 0.998866081237793, + 0.999496340751648, + 0.9985204339027405, + 0.9988468885421753, + 0.9989088773727417, + 0.9988956451416016, + 0.9987001419067383, + 0.9988686442375183, + 0.998552143573761, + 0.9929360747337341, + 0.9988508224487305, + 0.9988837838172913, + 0.9963728189468384, + 0.9917622804641724, + 0.9985169768333435, + 0.9851395487785339, + 0.9989237189292908, + 0.9962260723114014, + 0.9862384796142578, + 0.9989376664161682, + 0.9995100498199463, + 0.9994924068450928, + 0.9989180564880371 + ], + "sentiment_counts": { + "POSITIVE": 20, + "NEGATIVE": 6 + }, + "sentiment_distribution": { + "POSITIVE": 0.7692307692307693, + "NEGATIVE": 0.23076923076923078 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7692307692307693 + ] + }, + "final_label": "POSITIVE", + "final_count": 56, + "final_proportion": 0.7567567567567568, + "final_counts": { + "POSITIVE": 56, + "NEGATIVE": 18 + }, + "final_distribution": { + "POSITIVE": 0.7567567567567568, + "NEGATIVE": 0.24324324324324326 + } + } + }, + { + "season_code": "202301", + "requirements": "", + "description": "A weekly seminar presented by faculty trainers on topics relating to proper conduct of research. Required of first-year Immunobiology students, first-year CB&B students, and training grant-funded postdocs. Pass/Fail.", "short_title": "Fundamentals of Research: Res...", "title": "Fundamentals of Research: Responsible Conduct of Research", "school": "GS", @@ -196401,7 +434991,7 @@ "17:15", "18:30", "BCMM 101 - Boyer Ctr Molecular Medicine 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/560055" + "https://map.yale.edu/?id=1910#!m/560055" ] ] }, @@ -196413,10 +435003,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83465\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83465/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -196459,7 +435077,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -196502,7 +435148,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -196545,7 +435219,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -196582,7 +435284,7 @@ "9:30", "11:00", "BCMM 101 - Boyer Ctr Molecular Medicine 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/560055" + "https://map.yale.edu/?id=1910#!m/560055" ] ], "Wednesday": [ @@ -196590,7 +435292,7 @@ "9:30", "11:00", "BCMM 101 - Boyer Ctr Molecular Medicine 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/560055" + "https://map.yale.edu/?id=1910#!m/560055" ] ] }, @@ -196602,10 +435304,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84493\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84493/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -196642,7 +435372,7 @@ "17:00", "18:30", "BCMM 101 - Boyer Ctr Molecular Medicine 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/560055" + "https://map.yale.edu/?id=1910#!m/560055" ] ] }, @@ -196654,10 +435384,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84497\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84497/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -196694,7 +435452,7 @@ "15:30", "16:30", "HOPE 216 - Hope 216", - "https:\/\/map.yale.edu\/?id=1910#!m\/560131" + "https://map.yale.edu/?id=1910#!m/560131" ] ] }, @@ -196711,7 +435469,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -196748,7 +435534,7 @@ "15:30", "16:30", "HOPE 216 - Hope 216", - "https:\/\/map.yale.edu\/?id=1910#!m\/560131" + "https://map.yale.edu/?id=1910#!m/560131" ] ] }, @@ -196763,7 +435549,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -196802,7 +435616,7 @@ "10:00", "11:45", "BCMM 101 - Boyer Ctr Molecular Medicine 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/560055" + "https://map.yale.edu/?id=1910#!m/560055" ] ], "Thursday": [ @@ -196810,7 +435624,7 @@ "10:00", "11:45", "BCMM 101 - Boyer Ctr Molecular Medicine 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/560055" + "https://map.yale.edu/?id=1910#!m/560055" ] ] }, @@ -196822,10 +435636,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84513\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84513/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -196862,7 +435704,7 @@ "13:00", "14:15", "WTS B30 - Watson Center 60 Sachem Street B30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -196870,7 +435712,7 @@ "13:00", "14:15", "WTS B30 - Watson Center 60 Sachem Street B30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -196887,10 +435729,139 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84518\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84518/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998346209526062, + 0.9987232089042664, + 0.9980266690254211, + 0.9988549947738647, + 0.9976732134819031, + 0.99757319688797, + 0.9988462924957275, + 0.9988389611244202, + 0.9986380934715271, + 0.9989001750946045, + 0.9987781643867493 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9991917014122009, + 0.9989173412322998, + 0.9988059997558594, + 0.9989109039306641, + 0.9989163875579834, + 0.9989234805107117, + 0.9989199638366699, + 0.998602569103241, + 0.9988887906074524, + 0.9987531900405884 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 9 + }, + "sentiment_distribution": { + "NEGATIVE": 0.1, + "POSITIVE": 0.9 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982213377952576, + 0.9988880753517151, + 0.997117280960083, + 0.9985490441322327, + 0.9988875985145569, + 0.998910665512085, + 0.9989257454872131, + 0.9988824725151062, + 0.9989182949066162, + 0.9988365769386292 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 30, + "final_proportion": 0.967741935483871, + "final_counts": { + "POSITIVE": 30, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.967741935483871, + "NEGATIVE": 0.03225806451612903 + } + } }, { "season_code": "202301", @@ -196931,7 +435902,7 @@ "13:30", "15:20", "WTS A42 - Watson Center 60 Sachem Street A42", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -196943,10 +435914,107 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84633\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84633/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9978175163269043, + 0.9988942742347717, + 0.9983519315719604, + 0.992295503616333, + 0.9988190531730652 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984105825424194, + 0.9988803267478943, + 0.9967917799949646, + 0.9969640374183655, + 0.9939751029014587, + 0.9989259839057922 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.999470055103302, + 0.9989041090011597, + 0.9995087385177612, + 0.9987061023712158 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 0.7333333333333333, + "final_counts": { + "POSITIVE": 11, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.7333333333333333, + "NEGATIVE": 0.26666666666666666 + } + } }, { "season_code": "202301", @@ -196983,7 +436051,7 @@ "13:00", "14:15", "WALL81 401 - 81 Wall Street 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ], "Wednesday": [ @@ -196991,7 +436059,7 @@ "13:00", "14:15", "WALL81 401 - 81 Wall Street 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -197005,10 +436073,107 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84524\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84524/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987372756004333, + 0.9987804293632507, + 0.9988977909088135, + 0.9989262223243713, + 0.9988433122634888 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9970296621322632, + 0.9994882345199585, + 0.9971504807472229, + 0.9987280964851379, + 0.9988231062889099 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.4, + "POSITIVE": 0.6 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989238381385803, + 0.993545413017273, + 0.9995046854019165, + 0.9989168643951416, + 0.9989368319511414 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 0.8, + "final_counts": { + "POSITIVE": 12, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + } + } }, { "season_code": "202301", @@ -197058,7 +436223,7 @@ "11:35", "12:25", "DAVIES AUD - Davies Auditorium, Becton Ctr AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ], "Wednesday": [ @@ -197066,7 +436231,7 @@ "11:35", "12:25", "DAVIES AUD - Davies Auditorium, Becton Ctr AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ] }, @@ -197082,10 +436247,471 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84529\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84529/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9966471791267395, + 0.9988372921943665, + 0.9988265633583069, + 0.9986176490783691, + 0.9988040924072266, + 0.99868243932724, + 0.9981890320777893, + 0.9982670545578003, + 0.9989086389541626, + 0.9975112676620483, + 0.9988191723823547, + 0.9987435936927795, + 0.9987924098968506, + 0.9981337189674377, + 0.9987601041793823, + 0.9964271187782288, + 0.9987242817878723, + 0.9988154172897339, + 0.9989283680915833, + 0.9989259839057922, + 0.998696506023407, + 0.9986300468444824, + 0.9721580743789673, + 0.9987471103668213, + 0.9959845542907715, + 0.9987772107124329, + 0.9989078044891357, + 0.9987953901290894, + 0.9964859485626221, + 0.9984793066978455, + 0.9988173842430115, + 0.9988262057304382, + 0.9986982345581055, + 0.998915433883667, + 0.9985693693161011, + 0.9985679388046265, + 0.9976160526275635, + 0.9684014320373535, + 0.9965090155601501, + 0.9988501071929932, + 0.9989063739776611, + 0.9988118410110474, + 0.9982144832611084, + 0.998513400554657, + 0.9988295435905457, + 0.9986411929130554, + 0.9988730549812317, + 0.9986752867698669, + 0.9985654950141907, + 0.9988467693328857, + 0.9988880753517151, + 0.9857844710350037, + 0.9980206489562988, + 0.9975334405899048, + 0.9963498115539551, + 0.9989253878593445, + 0.9989299178123474, + 0.9988539218902588, + 0.9985401630401611, + 0.9989187717437744, + 0.9948893785476685, + 0.998847246170044, + 0.9978001713752747, + 0.9986346364021301, + 0.9988381266593933 + ], + "sentiment_counts": { + "POSITIVE": 65, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9975205063819885, + 0.9942052960395813, + 0.9987404942512512, + 0.9985219836235046, + 0.9622405171394348, + 0.9990094900131226, + 0.9980632662773132, + 0.9987133741378784, + 0.9981397390365601, + 0.9965862035751343, + 0.9817975759506226, + 0.9976488947868347, + 0.9930992126464844, + 0.9870994687080383, + 0.999504804611206, + 0.9988018274307251, + 0.9988487958908081, + 0.9989228844642639, + 0.9981162548065186, + 0.9985707998275757, + 0.9975014328956604, + 0.998432457447052, + 0.998863697052002, + 0.9987002611160278, + 0.998650848865509, + 0.9988774657249451, + 0.9988262057304382, + 0.9984135627746582, + 0.9938218593597412, + 0.9988269209861755, + 0.9934483170509338, + 0.9981675148010254, + 0.9988779425621033, + 0.9982438087463379, + 0.9916884303092957, + 0.9908447861671448, + 0.9985364675521851, + 0.9988231062889099, + 0.9975885152816772, + 0.997982382774353, + 0.9988383650779724, + 0.9971924424171448, + 0.9978511333465576, + 0.9984437823295593, + 0.9989217519760132, + 0.9989107847213745, + 0.9964404702186584, + 0.9989153146743774, + 0.9989079236984253, + 0.9319139122962952, + 0.9994958639144897, + 0.998939573764801, + 0.9989320635795593, + 0.9995077848434448, + 0.9989217519760132, + 0.9989056587219238, + 0.9939716458320618, + 0.9981032609939575, + 0.9987295269966125, + 0.9977599382400513 + ], + "sentiment_counts": { + "POSITIVE": 44, + "NEGATIVE": 16 + }, + "sentiment_distribution": { + "POSITIVE": 0.7333333333333333, + "NEGATIVE": 0.26666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7333333333333333 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.998600423336029, + 0.999510645866394, + 0.9988184571266174, + 0.9988400340080261, + 0.9988553524017334, + 0.9988773465156555, + 0.9755823016166687, + 0.9994972944259644, + 0.9930358529090881, + 0.9978529214859009, + 0.9974592328071594, + 0.9989092350006104, + 0.9989070892333984, + 0.9988285899162292, + 0.9958327412605286, + 0.999439537525177, + 0.9986801743507385, + 0.9957169890403748, + 0.9981364011764526, + 0.9987360835075378, + 0.9987176656723022, + 0.9987820982933044, + 0.9988717436790466, + 0.9987896084785461, + 0.9917519688606262, + 0.9989135265350342, + 0.9987364411354065, + 0.9981178045272827, + 0.9988964796066284, + 0.9989381432533264, + 0.9989336133003235, + 0.9989093542098999, + 0.9988403916358948, + 0.9988300204277039, + 0.998803973197937, + 0.9977173805236816, + 0.9988817572593689, + 0.9989209175109863, + 0.998865008354187, + 0.9987691044807434, + 0.9988723397254944, + 0.9983124732971191, + 0.9987784028053284, + 0.9988773465156555, + 0.9988434314727783, + 0.9986199140548706, + 0.9992992877960205, + 0.999451220035553, + 0.997117280960083, + 0.997117280960083, + 0.9972795844078064, + 0.9987988471984863, + 0.9994993209838867, + 0.9988443851470947, + 0.9980682730674744, + 0.9989150762557983, + 0.9984573125839233, + 0.9988768696784973, + 0.9986068606376648, + 0.9988300204277039, + 0.998842716217041, + 0.9937586784362793, + 0.9987691044807434, + 0.9989060163497925, + 0.9988623857498169, + 0.9986031651496887, + 0.998917818069458, + 0.9989367127418518, + 0.9989122152328491, + 0.9988092184066772, + 0.9791903495788574, + 0.9986453652381897 + ], + "sentiment_counts": { + "POSITIVE": 61, + "NEGATIVE": 11 + }, + "sentiment_distribution": { + "POSITIVE": 0.8472222222222222, + "NEGATIVE": 0.1527777777777778 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8472222222222222 + ] + }, + "final_label": "POSITIVE", + "final_count": 170, + "final_proportion": 0.8629441624365483, + "final_counts": { + "POSITIVE": 170, + "NEGATIVE": 27 + }, + "final_distribution": { + "POSITIVE": 0.8629441624365483, + "NEGATIVE": 0.13705583756345177 + } + } }, { "season_code": "202301", @@ -197117,7 +436743,7 @@ "14:30", "15:20", "WTS A68 - Watson Center 60 Sachem Street A68", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -197134,7 +436760,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -197166,7 +436820,7 @@ "14:30", "15:20", "WTS A39 - Watson Center 60 Sachem Street A39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -197183,7 +436837,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -197215,7 +436897,7 @@ "14:30", "15:20", "WTS A32 - Watson Center 60 Sachem Street A32", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -197232,7 +436914,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -197264,7 +436974,7 @@ "16:00", "16:50", "WTS A38 - Watson Center 60 Sachem Street A38", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -197281,7 +436991,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -197313,7 +437051,7 @@ "16:00", "16:50", "WTS B30 - Watson Center 60 Sachem Street B30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -197330,7 +437068,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -197362,7 +437128,7 @@ "16:00", "16:50", "WTS B35 - Watson Center 60 Sachem Street B35", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -197379,7 +437145,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -197411,7 +437205,7 @@ "19:00", "19:50", "WLH 004 - William L. Harkness Hall 004", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -197428,7 +437222,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -197460,7 +437282,7 @@ "19:00", "19:50", "WTS A39 - Watson Center 60 Sachem Street A39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -197477,7 +437299,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -197509,7 +437359,7 @@ "20:00", "20:50", "WTS A32 - Watson Center 60 Sachem Street A32", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -197526,7 +437376,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -197558,7 +437436,7 @@ "19:00", "19:50", "WTS B35 - Watson Center 60 Sachem Street B35", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -197575,7 +437453,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -197607,7 +437513,7 @@ "20:00", "20:50", "WTS B35 - Watson Center 60 Sachem Street B35", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -197624,7 +437530,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -197656,7 +437590,7 @@ "14:30", "15:20", "WTS B35 - Watson Center 60 Sachem Street B35", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -197673,7 +437607,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -197705,7 +437667,7 @@ "16:00", "16:50", "WTS A68 - Watson Center 60 Sachem Street A68", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -197722,7 +437684,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -197754,7 +437744,7 @@ "19:00", "19:50", "WTS A32 - Watson Center 60 Sachem Street A32", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -197771,7 +437761,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -197808,7 +437826,7 @@ "14:30", "15:20", "LORIA 351 - Loria Center 351", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ], "Thursday": [ @@ -197816,7 +437834,7 @@ "14:30", "15:20", "LORIA 351 - Loria Center 351", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -197832,10 +437850,223 @@ "classnotes": "", "final_exam": "Wednesday, May 10, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84533\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84533/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988540410995483, + 0.9734292030334473, + 0.999502420425415, + 0.9973788261413574, + 0.9989067316055298, + 0.9988573789596558, + 0.9986530542373657, + 0.9968658089637756, + 0.998728334903717, + 0.9988364577293396, + 0.9983148574829102, + 0.9985091090202332, + 0.9987867474555969, + 0.9987215399742126, + 0.9988688826560974, + 0.9986246824264526, + 0.9987457990646362, + 0.9987936019897461, + 0.9988836646080017, + 0.9987953901290894, + 0.9986795783042908, + 0.9994837045669556 + ], + "sentiment_counts": { + "POSITIVE": 19, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.8636363636363636, + "NEGATIVE": 0.13636363636363635 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8636363636363636 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989035129547119, + 0.9991668462753296, + 0.9995059967041016, + 0.9995003938674927, + 0.9987670183181763, + 0.9988546371459961, + 0.9961600303649902, + 0.9986541271209717, + 0.9987359642982483, + 0.9984991550445557, + 0.9988059997558594, + 0.9987768530845642, + 0.9906498789787292, + 0.9995068311691284, + 0.9989187717437744, + 0.9989319443702698, + 0.9989209175109863, + 0.9989216327667236, + 0.9929214119911194, + 0.9995023012161255, + 0.9989134073257446, + 0.9986444115638733, + 0.9988565444946289, + 0.9970136880874634 + ], + "sentiment_counts": { + "POSITIVE": 16, + "NEGATIVE": 8 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9985631108283997, + 0.9989340901374817, + 0.9984309077262878, + 0.9988721013069153, + 0.998603880405426, + 0.9980337023735046, + 0.9994704127311707, + 0.9987595081329346, + 0.9973651766777039, + 0.9982696771621704, + 0.9987474679946899, + 0.997245192527771, + 0.9977329969406128, + 0.9989070892333984, + 0.998871386051178, + 0.9989018440246582, + 0.9983851909637451, + 0.9988844990730286, + 0.9988619089126587, + 0.9989224672317505, + 0.998854398727417, + 0.9955514073371887, + 0.9994964599609375, + 0.9988935589790344, + 0.9989280104637146, + 0.9988499879837036, + 0.9982773065567017 + ], + "sentiment_counts": { + "POSITIVE": 20, + "NEGATIVE": 7 + }, + "sentiment_distribution": { + "POSITIVE": 0.7407407407407407, + "NEGATIVE": 0.25925925925925924 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7407407407407407 + ] + }, + "final_label": "POSITIVE", + "final_count": 55, + "final_proportion": 0.7534246575342466, + "final_counts": { + "POSITIVE": 55, + "NEGATIVE": 18 + }, + "final_distribution": { + "POSITIVE": 0.7534246575342466, + "NEGATIVE": 0.2465753424657534 + } + } }, { "season_code": "202301", @@ -197866,7 +438097,7 @@ "9:25", "10:15", "LORIA 259 - Loria Center 259", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -197883,7 +438114,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -197914,7 +438173,7 @@ "10:30", "11:20", "HQ C15 - Humanities Quadrangle C15", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -197931,7 +438190,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -197962,7 +438249,7 @@ "11:35", "12:25", "LORIA 258 - Loria Center 258", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -197979,7 +438266,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -198010,7 +438325,7 @@ "16:00", "16:50", "LC 208 - Linsly-Chittenden Hall 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -198027,7 +438342,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -198058,7 +438401,7 @@ "17:00", "17:50", "LC 208 - Linsly-Chittenden Hall 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -198075,7 +438418,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -198116,7 +438487,7 @@ "9:00", "10:15", "KGL 123 - Kline Geology Laboratory 123", - "https:\/\/map.yale.edu\/?id=1910#!m\/559996" + "https://map.yale.edu/?id=1910#!m/559996" ] ], "Thursday": [ @@ -198124,7 +438495,7 @@ "9:00", "10:15", "KGL 123 - Kline Geology Laboratory 123", - "https:\/\/map.yale.edu\/?id=1910#!m\/559996" + "https://map.yale.edu/?id=1910#!m/559996" ] ] }, @@ -198138,10 +438509,157 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84536\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84536/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987189769744873, + 0.9985145926475525, + 0.9988418221473694, + 0.9983901977539062, + 0.9987832903862, + 0.9988497495651245, + 0.9984152317047119, + 0.9987611770629883, + 0.9934768080711365, + 0.9832520484924316, + 0.9967639446258545, + 0.9988559484481812, + 0.9989253878593445 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988736510276794, + 0.9987712502479553, + 0.9762536883354187, + 0.9984408020973206, + 0.9973691701889038, + 0.9987984895706177, + 0.9984152317047119, + 0.9981027245521545, + 0.9949336647987366, + 0.9994577765464783, + 0.9986213445663452, + 0.9986876845359802, + 0.986968457698822 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.7692307692307693, + "NEGATIVE": 0.23076923076923078 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7692307692307693 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982553124427795, + 0.9937769174575806, + 0.9989209175109863, + 0.9981671571731567, + 0.9951550960540771, + 0.9972221851348877, + 0.9980016350746155, + 0.9988308548927307, + 0.9947195053100586, + 0.9667780995368958, + 0.9985357522964478, + 0.9988803267478943, + 0.9987720847129822, + 0.9988601207733154 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "final_label": "POSITIVE", + "final_count": 35, + "final_proportion": 0.875, + "final_counts": { + "POSITIVE": 35, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + } + } }, { "season_code": "202301", @@ -198194,10 +438712,135 @@ "classnotes": "This class is for students who have or are currently enrolled in MCDB 200. Freshmen and Sophomores also considered.", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84443\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84443/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983273148536682, + 0.9986599683761597, + 0.9988178610801697, + 0.9989000558853149, + 0.9602406024932861, + 0.998791515827179, + 0.998630940914154, + 0.9989235997200012, + 0.9987989664077759, + 0.9987303614616394 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9910584092140198, + 0.9988412261009216, + 0.9957749247550964, + 0.9989022016525269, + 0.9922285676002502, + 0.9916279315948486, + 0.99777752161026, + 0.9989179372787476, + 0.9986779093742371, + 0.9988971948623657 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984899759292603, + 0.9994612336158752, + 0.9987552165985107, + 0.9988262057304382, + 0.9995095729827881, + 0.9994853734970093, + 0.99893718957901, + 0.9988811612129211, + 0.9989092350006104 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 25, + "final_proportion": 0.8620689655172413, + "final_counts": { + "POSITIVE": 25, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.8620689655172413, + "NEGATIVE": 0.13793103448275862 + } + } }, { "season_code": "202301", @@ -198250,10 +438893,129 @@ "classnotes": "This class is for students who have or are currently enrolled in MCDB 200. Freshmen and Sophomores also considered.", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84448\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84448/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9976983666419983, + 0.9988780617713928, + 0.9985417127609253, + 0.9977225661277771, + 0.9987379908561707, + 0.9982923865318298, + 0.9988272786140442, + 0.9897440075874329, + 0.9988020658493042, + 0.9988172054290771 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 9 + }, + "sentiment_distribution": { + "NEGATIVE": 0.1, + "POSITIVE": 0.9 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9995054006576538, + 0.998934805393219, + 0.998530387878418, + 0.9987497329711914, + 0.9840967655181885, + 0.9988879561424255, + 0.9951382279396057 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 4 + }, + "sentiment_distribution": { + "NEGATIVE": 0.42857142857142855, + "POSITIVE": 0.5714285714285714 + }, + "sentiment_overall": [ + "POSITIVE", + 0.5714285714285714 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994982481002808, + 0.9989199638366699, + 0.9986913800239563, + 0.9949518442153931, + 0.998845100402832, + 0.9907575249671936, + 0.9980016350746155, + 0.9988182187080383, + 0.9987248778343201 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 7 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2222222222222222, + "POSITIVE": 0.7777777777777778 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7777777777777778 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 0.7692307692307693, + "final_counts": { + "NEGATIVE": 6, + "POSITIVE": 20 + }, + "final_distribution": { + "NEGATIVE": 0.23076923076923078, + "POSITIVE": 0.7692307692307693 + } + } }, { "season_code": "202301", @@ -198296,7 +439058,7 @@ "9:00", "10:15", "OML 202 - Osborn Memorial Laboratories 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/559958" + "https://map.yale.edu/?id=1910#!m/559958" ] ], "Thursday": [ @@ -198304,7 +439066,7 @@ "9:00", "10:15", "OML 202 - Osborn Memorial Laboratories 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/559958" + "https://map.yale.edu/?id=1910#!m/559958" ] ] }, @@ -198318,10 +439080,207 @@ "classnotes": "A comprehensive introductory course in cell biology. Emphasis on the general principles that explain the molecular mechanisms of cellular function. Prerequisites: BIOL 101&102, or equivalent performance on the corresponding biological sciences placement examinations, or a score of 5 on the Advanced Placement test in Biology, or a score of 710 or above on the SAT Biology M test, or MCDB 200.", "final_exam": "Tuesday, May 9, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84450\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84450/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987252354621887, + 0.9989258646965027, + 0.9988784193992615, + 0.9983310103416443, + 0.9987056255340576, + 0.9988055229187012, + 0.9986513257026672, + 0.9988332390785217, + 0.9986225366592407, + 0.9987868666648865, + 0.9988403916358948, + 0.8386194705963135, + 0.9987157583236694, + 0.9988779425621033, + 0.9979963898658752, + 0.9987855553627014, + 0.998138427734375, + 0.9984433054924011, + 0.9989031553268433, + 0.9988840222358704, + 0.9986932873725891 + ], + "sentiment_counts": { + "POSITIVE": 20, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9523809523809523, + "NEGATIVE": 0.047619047619047616 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9523809523809523 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987146854400635, + 0.998934805393219, + 0.9993106126785278, + 0.9989035129547119, + 0.998887836933136, + 0.9984427094459534, + 0.9933464527130127, + 0.9988605976104736, + 0.9988312125205994, + 0.9989374279975891, + 0.9989221096038818, + 0.9882688522338867, + 0.9988183379173279, + 0.9987443685531616, + 0.9970672726631165, + 0.9988880753517151, + 0.998753547668457, + 0.9449788928031921, + 0.9988996982574463, + 0.9988670349121094, + 0.9985330104827881, + 0.998840868473053 + ], + "sentiment_counts": { + "POSITIVE": 21, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9545454545454546, + "NEGATIVE": 0.045454545454545456 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9545454545454546 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988954067230225, + 0.998918890953064, + 0.9989359974861145, + 0.9783951044082642, + 0.998863935470581, + 0.9957379102706909, + 0.9987995624542236, + 0.9989394545555115, + 0.9988775849342346, + 0.9984768033027649, + 0.9983386993408203, + 0.9982553124427795, + 0.998900294303894, + 0.9989005327224731, + 0.9988781809806824, + 0.9989051818847656, + 0.9989084005355835, + 0.9974592328071594, + 0.9989153146743774, + 0.9989402890205383, + 0.9970449805259705, + 0.9989104270935059 + ], + "sentiment_counts": { + "POSITIVE": 20, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9090909090909091 + ] + }, + "final_label": "POSITIVE", + "final_count": 61, + "final_proportion": 0.9384615384615385, + "final_counts": { + "POSITIVE": 61, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.9384615384615385, + "NEGATIVE": 0.06153846153846154 + } + } }, { "season_code": "202301", @@ -198352,7 +439311,7 @@ "10:30", "11:20", "LC 210 - Linsly-Chittenden Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -198369,7 +439328,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -198400,7 +439387,7 @@ "19:00", "19:50", "WTS B51 - Watson Center 60 Sachem Street B51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -198417,7 +439404,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -198448,7 +439463,7 @@ "19:00", "19:50", "WTS A42 - Watson Center 60 Sachem Street A42", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -198465,7 +439480,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -198505,7 +439548,7 @@ "14:30", "15:45", "YSB 352 - Yale Science Building 352", - "https:\/\/map.yale.edu\/?id=1910#!m\/563700" + "https://map.yale.edu/?id=1910#!m/563700" ] ], "Thursday": [ @@ -198513,7 +439556,7 @@ "14:30", "15:45", "YSB 352 - Yale Science Building 352", - "https:\/\/map.yale.edu\/?id=1910#!m\/563700" + "https://map.yale.edu/?id=1910#!m/563700" ] ] }, @@ -198527,10 +439570,105 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84451\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84451/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985033273696899, + 0.998737633228302, + 0.9987422823905945 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9987723231315613, + 0.9944015145301819, + 0.99847811460495, + 0.9988391995429993, + 0.9988512992858887, + 0.9953514337539673, + 0.9994939565658569 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.7142857142857143, + "NEGATIVE": 0.2857142857142857 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7142857142857143 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989151954650879, + 0.9995098114013672, + 0.9994888305664062, + 0.9989269375801086 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 0.7142857142857143, + "final_counts": { + "POSITIVE": 10, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.7142857142857143, + "NEGATIVE": 0.2857142857142857 + } + } }, { "season_code": "202301", @@ -198570,7 +439708,7 @@ "10:30", "11:20", "OML 202 - Osborn Memorial Laboratories 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/559958" + "https://map.yale.edu/?id=1910#!m/559958" ] ], "Wednesday": [ @@ -198578,7 +439716,7 @@ "10:30", "11:20", "OML 202 - Osborn Memorial Laboratories 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/559958" + "https://map.yale.edu/?id=1910#!m/559958" ] ], "Friday": [ @@ -198586,7 +439724,7 @@ "10:30", "11:20", "OML 202 - Osborn Memorial Laboratories 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/559958" + "https://map.yale.edu/?id=1910#!m/559958" ] ] }, @@ -198602,10 +439740,217 @@ "classnotes": "This course is for majors and non-majors.\n\nThere will be three weekly discussion sections: two Journal Club sections for majors, and one General Section Revew for all. The designated evenings will be fixed prior to the first week of class and will depend on the eveining availability of the TAs.", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84453\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84453/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9965049028396606, + 0.9987245202064514, + 0.9985709190368652, + 0.9984233379364014, + 0.9967787861824036, + 0.998895525932312, + 0.9988445043563843, + 0.9984551668167114, + 0.9980615973472595, + 0.9988700747489929, + 0.9988365769386292, + 0.9987871050834656, + 0.9987506866455078, + 0.9980744123458862, + 0.9989206790924072, + 0.9985886216163635, + 0.9977536797523499, + 0.9988351464271545, + 0.9989343285560608, + 0.9988786578178406, + 0.9988877177238464 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 20 + }, + "sentiment_distribution": { + "NEGATIVE": 0.047619047619047616, + "POSITIVE": 0.9523809523809523 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9523809523809523 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9994819760322571, + 0.9987672567367554, + 0.9986935257911682, + 0.9988942742347717, + 0.9995061159133911, + 0.9988846182823181, + 0.9995105266571045, + 0.9922933578491211, + 0.9987578392028809, + 0.9979550838470459, + 0.9988321661949158, + 0.9981673955917358, + 0.9985669255256653, + 0.9995032548904419, + 0.9966727495193481, + 0.9986057877540588, + 0.9988614320755005, + 0.998871386051178, + 0.9772880673408508, + 0.9989004135131836, + 0.9993323683738708, + 0.9993256330490112, + 0.9977608919143677, + 0.9989237189292908, + 0.9988073110580444, + 0.9991065859794617 + ], + "sentiment_counts": { + "NEGATIVE": 10, + "POSITIVE": 16 + }, + "sentiment_distribution": { + "NEGATIVE": 0.38461538461538464, + "POSITIVE": 0.6153846153846154 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6153846153846154 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989176988601685, + 0.9986912608146667, + 0.998730480670929, + 0.9995005130767822, + 0.9988282322883606, + 0.9953289031982422, + 0.998859167098999, + 0.9988600015640259, + 0.9988760352134705, + 0.998917818069458, + 0.998889148235321, + 0.9994902610778809, + 0.9988296627998352, + 0.9988366961479187, + 0.9988666772842407, + 0.9988930821418762, + 0.9987183809280396, + 0.9988835453987122, + 0.9988675117492676, + 0.9831988215446472, + 0.998854398727417, + 0.9844918847084045, + 0.9987837672233582 + ], + "sentiment_counts": { + "POSITIVE": 20, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.8695652173913043, + "NEGATIVE": 0.13043478260869565 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8695652173913043 + ] + }, + "final_label": "POSITIVE", + "final_count": 56, + "final_proportion": 0.8, + "final_counts": { + "NEGATIVE": 14, + "POSITIVE": 56 + }, + "final_distribution": { + "NEGATIVE": 0.2, + "POSITIVE": 0.8 + } + } }, { "season_code": "202301", @@ -198642,7 +439987,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -198679,7 +440052,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -198722,7 +440123,7 @@ "13:30", "17:30", "SCL 139 - Sterling Chemistry Laboratory 139", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -198736,10 +440137,99 @@ "classnotes": "This lab already has a significant wait list for Spring 2023. Senior majors guaranteed placement, non-major seniors fill in remaining slots.", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84459\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84459/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988617897033691, + 0.9986843466758728, + 0.9986972212791443 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989356398582458, + 0.9988928437232971, + 0.9988887906074524, + 0.9989047050476074, + 0.9989351630210876 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988481998443604, + 0.9989060163497925, + 0.9989297986030579, + 0.9989160299301147 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 12 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -198782,7 +440272,7 @@ "13:30", "17:30", "SCL 139 - Sterling Chemistry Laboratory 139", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -198796,10 +440286,109 @@ "classnotes": "This lab already has a significant wait list for Spring 2023. Senior majors guaranteed placement, non-major seniors fill in remaining slots.", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84461\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84461/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988276362419128, + 0.9988588094711304, + 0.9984182119369507, + 0.9980598092079163, + 0.9831559658050537, + 0.9985306262969971 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989180564880371, + 0.9988633394241333, + 0.9987988471984863, + 0.9988658428192139, + 0.9945737719535828 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986693859100342, + 0.9988952279090881, + 0.9988396763801575, + 0.9981531500816345, + 0.9973164200782776, + 0.9890128374099731 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 17 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -198839,7 +440428,7 @@ "13:00", "14:15", "SPL 59 - Sloane Physics Laboratory 59", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ], "Thursday": [ @@ -198847,7 +440436,7 @@ "13:00", "14:15", "SPL 59 - Sloane Physics Laboratory 59", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ] }, @@ -198861,15 +440450,194 @@ "classnotes": "Cell structure of bacteria, bacterial genetics, microbial evolution and diversity, bacterial development, microbial interaction, chemotaxis and motility, gene regulation, microbial genomics and proteomics, CRISPR, metabolism, infectious diseases, mechanisms of pathogenesis, host defense systems, viruses, gut microbiota in health and disease. Prerequisites: BIOL 101, 102 and 103, or equivalent performance on the corresponding biological sciences placement examinations; or one term of biochemistry, or cell biology, or genetics; or with permission of instructor.", "final_exam": "Sunday, May 7, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84463\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84463/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9975054860115051, + 0.9988254904747009, + 0.9939992427825928, + 0.9988566637039185, + 0.9988044500350952, + 0.9986584186553955, + 0.9970775842666626, + 0.9987902045249939, + 0.9988753199577332, + 0.9957329630851746, + 0.9987691044807434, + 0.9986286163330078, + 0.9989116191864014, + 0.9987830519676208, + 0.9989001750946045, + 0.9975082874298096 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 14 + }, + "sentiment_distribution": { + "NEGATIVE": 0.125, + "POSITIVE": 0.875 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.999489426612854, + 0.9980084300041199, + 0.999448835849762, + 0.9988319277763367, + 0.9988644123077393, + 0.9986061453819275, + 0.9989101886749268, + 0.9989230036735535, + 0.9994484782218933, + 0.9989179372787476, + 0.9988613128662109, + 0.9986419081687927, + 0.9995040893554688, + 0.9985756874084473, + 0.9989314675331116, + 0.9987108707427979, + 0.9988032579421997, + 0.9989280104637146, + 0.9981974959373474, + 0.9988045692443848 + ], + "sentiment_counts": { + "NEGATIVE": 6, + "POSITIVE": 14 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3, + "POSITIVE": 0.7 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994968175888062, + 0.9995062351226807, + 0.9982719421386719, + 0.9989194869995117, + 0.9985095858573914, + 0.9978387951850891, + 0.9982031583786011, + 0.9978660941123962, + 0.9864783883094788, + 0.99885094165802, + 0.9689180850982666, + 0.9989321827888489, + 0.9994825124740601, + 0.9847373366355896, + 0.9989168643951416, + 0.9985052347183228, + 0.9987976551055908, + 0.9989302754402161, + 0.9988396763801575, + 0.9981289505958557 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 17 + }, + "sentiment_distribution": { + "NEGATIVE": 0.15, + "POSITIVE": 0.85 + }, + "sentiment_overall": [ + "POSITIVE", + 0.85 + ] + }, + "final_label": "POSITIVE", + "final_count": 45, + "final_proportion": 0.8035714285714286, + "final_counts": { + "NEGATIVE": 11, + "POSITIVE": 45 + }, + "final_distribution": { + "NEGATIVE": 0.19642857142857142, + "POSITIVE": 0.8035714285714286 + } + } }, { "season_code": "202301", "requirements": "Concurrently with or after MCDB 290. Electronic permission key required; students should contact the instructor prior to the first class meeting.", - "description": "Practical approaches used when working with microbes, primarily bacteria. Topics include microscopy, culture techniques, biochemical\/metabolic assays, and basic environmental and medical microbiology.", + "description": "Practical approaches used when working with microbes, primarily bacteria. Topics include microscopy, culture techniques, biochemical/metabolic assays, and basic environmental and medical microbiology.", "short_title": "Laboratory for Microbiology", "title": "Laboratory for Microbiology", "school": "YC", @@ -198901,7 +440669,7 @@ "14:30", "17:30", "SCL 149 - Sterling Chemistry Laboratory 149", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -198915,15 +440683,122 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84466\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84466/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988887906074524, + 0.9988021850585938, + 0.9919420480728149, + 0.9966155886650085, + 0.987594723701477, + 0.9986166954040527 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989193677902222, + 0.9986259937286377, + 0.9988453388214111, + 0.9989050626754761, + 0.9989141225814819, + 0.9987618923187256, + 0.9976330995559692 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989159107208252, + 0.9988601207733154, + 0.9984303116798401, + 0.9981973767280579, + 0.9988827109336853, + 0.9988678693771362, + 0.9989180564880371, + 0.9987234473228455 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 21, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 21 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", "requirements": "Concurrently with or after MCDB 290. Electronic permission key required; students should contact the instructor prior to the first class meeting.", - "description": "Practical approaches used when working with microbes, primarily bacteria. Topics include microscopy, culture techniques, biochemical\/metabolic assays, and basic environmental and medical microbiology.", + "description": "Practical approaches used when working with microbes, primarily bacteria. Topics include microscopy, culture techniques, biochemical/metabolic assays, and basic environmental and medical microbiology.", "short_title": "Laboratory for Microbiology", "title": "Laboratory for Microbiology", "school": "YC", @@ -198955,7 +440830,7 @@ "14:30", "17:30", "SCL 149 - Sterling Chemistry Laboratory 149", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -198969,15 +440844,98 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84467\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84467/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988505840301514, + 0.996747612953186 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989272952079773, + 0.9989383816719055 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988732933998108, + 0.998819887638092, + 0.9988476037979126, + 0.9988829493522644, + 0.9981772899627686 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 9 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", "requirements": "Concurrently with or after MCDB 290. Electronic permission key required; students should contact the instructor prior to the first class meeting.", - "description": "Practical approaches used when working with microbes, primarily bacteria. Topics include microscopy, culture techniques, biochemical\/metabolic assays, and basic environmental and medical microbiology.", + "description": "Practical approaches used when working with microbes, primarily bacteria. Topics include microscopy, culture techniques, biochemical/metabolic assays, and basic environmental and medical microbiology.", "short_title": "Laboratory for Microbiology", "title": "Laboratory for Microbiology", "school": "YC", @@ -199009,7 +440967,7 @@ "14:30", "17:30", "SCL 149 - Sterling Chemistry Laboratory 149", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -199023,10 +440981,111 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85843\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85843/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986664056777954, + 0.9981421232223511, + 0.9984481334686279, + 0.9984978437423706, + 0.9987969398498535, + 0.9988901019096375 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988113641738892, + 0.9986751675605774, + 0.9989099502563477, + 0.9988808035850525, + 0.9989282488822937, + 0.9988553524017334 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998475968837738, + 0.9988546371459961, + 0.99868243932724, + 0.9989156723022461, + 0.998939573764801, + 0.9988654851913452 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 18 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -199066,7 +441125,7 @@ "9:25", "10:15", "OML 202 - Osborn Memorial Laboratories 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/559958" + "https://map.yale.edu/?id=1910#!m/559958" ] ], "Wednesday": [ @@ -199074,7 +441133,7 @@ "9:25", "10:15", "OML 202 - Osborn Memorial Laboratories 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/559958" + "https://map.yale.edu/?id=1910#!m/559958" ] ], "Friday": [ @@ -199082,7 +441141,7 @@ "9:25", "10:15", "OML 202 - Osborn Memorial Laboratories 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/559958" + "https://map.yale.edu/?id=1910#!m/559958" ] ] }, @@ -199096,10 +441155,315 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84471\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84471/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.8720771670341492, + 0.9974707365036011, + 0.9989193677902222, + 0.9980623126029968, + 0.9980589747428894, + 0.9987788796424866, + 0.9988201260566711, + 0.987992525100708, + 0.9989054203033447, + 0.9987646341323853, + 0.9986088871955872, + 0.9985124468803406, + 0.9979791045188904, + 0.9988245368003845, + 0.9950460195541382, + 0.9987044334411621, + 0.9981734752655029, + 0.9982542395591736, + 0.9989018440246582, + 0.9987659454345703, + 0.9988697171211243, + 0.9966422319412231, + 0.9988996982574463, + 0.9985560774803162, + 0.9987467527389526, + 0.9987695813179016, + 0.9987596273422241, + 0.9985721111297607, + 0.99875807762146, + 0.9986233711242676, + 0.9988835453987122, + 0.9987474679946899, + 0.9987548589706421 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 31 + }, + "sentiment_distribution": { + "NEGATIVE": 0.06060606060606061, + "POSITIVE": 0.9393939393939394 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9393939393939394 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9992609620094299, + 0.9979482293128967, + 0.998917818069458, + 0.998767614364624, + 0.9986490607261658, + 0.996189296245575, + 0.9985476136207581, + 0.9988172650337219, + 0.9976772665977478, + 0.998791515827179, + 0.9995028972625732, + 0.9989317059516907, + 0.9891966581344604, + 0.9980757236480713, + 0.9988433122634888, + 0.9982033967971802, + 0.9984682202339172, + 0.9666481018066406, + 0.998705267906189, + 0.9974740147590637, + 0.9989222288131714, + 0.9989086389541626, + 0.9987778067588806, + 0.9988683462142944, + 0.998892605304718, + 0.9989209175109863, + 0.998670220375061, + 0.9983806610107422, + 0.9988800883293152, + 0.9989086389541626, + 0.998909592628479, + 0.9989113807678223, + 0.9983658194541931, + 0.9988337159156799, + 0.9962701797485352, + 0.9988523721694946, + 0.9931483864784241, + 0.996882438659668, + 0.9963853359222412, + 0.9988781809806824, + 0.9961657524108887, + 0.9989206790924072, + 0.998766303062439, + 0.9974830746650696, + 0.9987754225730896, + 0.9987976551055908, + 0.9988987445831299 + ], + "sentiment_counts": { + "NEGATIVE": 11, + "POSITIVE": 36 + }, + "sentiment_distribution": { + "NEGATIVE": 0.23404255319148937, + "POSITIVE": 0.7659574468085106 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7659574468085106 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9749354720115662, + 0.9986059069633484, + 0.998703122138977, + 0.9989060163497925, + 0.9989211559295654, + 0.9984771609306335, + 0.9987208247184753, + 0.9975795149803162, + 0.9834765195846558, + 0.9988700747489929, + 0.9949259757995605, + 0.9989029169082642, + 0.9988092184066772, + 0.9989221096038818, + 0.9985690116882324, + 0.9928921461105347, + 0.9983993172645569, + 0.9989323019981384, + 0.9763026237487793, + 0.9817178249359131, + 0.9989131689071655, + 0.9988779425621033, + 0.997117280960083, + 0.9989261031150818, + 0.9989281296730042, + 0.9987804293632507, + 0.9989080429077148, + 0.9988735318183899, + 0.9989368319511414, + 0.9854270219802856, + 0.9983217120170593, + 0.9988954067230225, + 0.9978201389312744, + 0.9988860487937927, + 0.9982553124427795, + 0.9972317814826965, + 0.9981922507286072, + 0.9808655977249146, + 0.998855710029602 + ], + "sentiment_counts": { + "NEGATIVE": 6, + "POSITIVE": 33 + }, + "sentiment_distribution": { + "NEGATIVE": 0.15384615384615385, + "POSITIVE": 0.8461538461538461 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8461538461538461 + ] + }, + "final_label": "POSITIVE", + "final_count": 100, + "final_proportion": 0.8403361344537815, + "final_counts": { + "NEGATIVE": 19, + "POSITIVE": 100 + }, + "final_distribution": { + "NEGATIVE": 0.15966386554621848, + "POSITIVE": 0.8403361344537815 + } + } }, { "season_code": "202301", @@ -199154,10 +441518,125 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84426\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84426/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984985589981079, + 0.9987179040908813, + 0.9970014691352844, + 0.9988964796066284, + 0.9984036087989807, + 0.998925507068634, + 0.9984645843505859, + 0.9986215829849243 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984404444694519, + 0.9989017248153687, + 0.9963206052780151, + 0.9989245533943176, + 0.9987679123878479, + 0.998860239982605, + 0.9985572695732117, + 0.9988994598388672 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 6 + }, + "sentiment_distribution": { + "NEGATIVE": 0.25, + "POSITIVE": 0.75 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982706308364868, + 0.9991521835327148, + 0.9954458475112915, + 0.9988347887992859, + 0.9988413453102112, + 0.9988234639167786, + 0.9989131689071655, + 0.9987677335739136 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "final_label": "POSITIVE", + "final_count": 21, + "final_proportion": 0.875, + "final_counts": { + "POSITIVE": 21, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + } + } }, { "season_code": "202301", @@ -199212,10 +441691,125 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86205\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/86205/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987961053848267, + 0.9986684322357178, + 0.9988162517547607, + 0.9988434314727783, + 0.9967767596244812, + 0.9987239241600037, + 0.9929100871086121, + 0.9987391829490662 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9945881366729736, + 0.9935266971588135, + 0.9986218214035034, + 0.9988179802894592, + 0.9986022114753723, + 0.9988352656364441, + 0.9989345669746399, + 0.998924195766449, + 0.9988771080970764 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998838484287262, + 0.9989064931869507, + 0.9986935257911682, + 0.997117280960083, + 0.9988539218902588, + 0.9989173412322998, + 0.9988536834716797, + 0.9989342093467712 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 25, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 25 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -199255,7 +441849,7 @@ "14:30", "17:30", "ESC 110 - Environmental Sciences Center 110", - "https:\/\/map.yale.edu\/?id=1910#!m\/560020" + "https://map.yale.edu/?id=1910#!m/560020" ] ] }, @@ -199269,10 +441863,99 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84475\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84475/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988195300102234, + 0.9987066984176636, + 0.9985783100128174, + 0.9989262223243713 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998927891254425, + 0.9945316314697266, + 0.9988497495651245 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987217783927917, + 0.9983333945274353, + 0.9933736324310303, + 0.9988695979118347 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 0.9090909090909091, + "final_counts": { + "POSITIVE": 10, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + } + } }, { "season_code": "202301", @@ -199324,7 +442007,7 @@ "11:35", "12:50", "WTS A60 - Watson Center 60 Sachem Street A60", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -199332,7 +442015,7 @@ "11:35", "12:50", "WTS A60 - Watson Center 60 Sachem Street A60", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -199346,10 +442029,179 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84478\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84478/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983152151107788, + 0.9989105463027954, + 0.9945736527442932, + 0.9989210367202759, + 0.888451337814331, + 0.9987314343452454, + 0.9984546899795532, + 0.998680055141449, + 0.9988086223602295, + 0.9988497495651245, + 0.9989113807678223, + 0.9987409710884094, + 0.9984801411628723, + 0.9987372756004333, + 0.9741402268409729, + 0.9988216757774353, + 0.9987168312072754, + 0.995049774646759 + ], + "sentiment_counts": { + "POSITIVE": 17, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9444444444444444, + "NEGATIVE": 0.05555555555555555 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9444444444444444 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.998847484588623, + 0.9978400468826294, + 0.9977052807807922, + 0.9989219903945923, + 0.9988366961479187, + 0.9987131357192993, + 0.9987882971763611, + 0.9960134029388428, + 0.9988946318626404, + 0.9988150596618652, + 0.9989243149757385, + 0.9985082745552063, + 0.9986621141433716, + 0.9988875985145569, + 0.9987228512763977, + 0.9986408352851868, + 0.9994997978210449 + ], + "sentiment_counts": { + "POSITIVE": 15, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8823529411764706, + "NEGATIVE": 0.11764705882352941 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8823529411764706 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9983901977539062, + 0.9987741112709045, + 0.9989306330680847, + 0.998846173286438, + 0.9989268183708191, + 0.9988490343093872, + 0.9989078044891357, + 0.9986774325370789, + 0.9988710284233093, + 0.9989385008811951, + 0.9988552331924438, + 0.9988448619842529, + 0.9982240796089172, + 0.9989299178123474, + 0.9989320635795593, + 0.9993185997009277 + ], + "sentiment_counts": { + "POSITIVE": 15, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9375, + "NEGATIVE": 0.0625 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9375 + ] + }, + "final_label": "POSITIVE", + "final_count": 47, + "final_proportion": 0.9215686274509803, + "final_counts": { + "POSITIVE": 47, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.9215686274509803, + "NEGATIVE": 0.0784313725490196 + } + } }, { "season_code": "202301", @@ -199386,7 +442238,7 @@ "13:30", "18:30", "SCL 148 - Sterling Chemistry Laboratory 148", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ], "Wednesday": [ @@ -199394,7 +442246,7 @@ "13:30", "18:30", "SCL 148 - Sterling Chemistry Laboratory 148", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -199408,10 +442260,105 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84483\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84483/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9833004474639893, + 0.9983609318733215, + 0.9987970590591431, + 0.9989026784896851, + 0.9989362359046936 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986603260040283, + 0.9989283680915833, + 0.9811021685600281, + 0.998932421207428 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.25, + "POSITIVE": 0.75 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989008903503418, + 0.9988307356834412, + 0.997117280960083, + 0.9989333748817444, + 0.998616099357605 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 0.9285714285714286, + "final_counts": { + "POSITIVE": 13, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9285714285714286, + "NEGATIVE": 0.07142857142857142 + } + } }, { "season_code": "202301", @@ -199448,7 +442395,7 @@ "13:30", "18:30", "", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ], "Wednesday": [ @@ -199456,7 +442403,7 @@ "13:30", "18:30", "", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -199470,10 +442417,95 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84486\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84486/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9931178092956543, + 0.9988579750061035, + 0.9984152317047119, + 0.9988773465156555 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9547885656356812, + 0.9984152317047119 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987554550170898, + 0.9984152317047119, + 0.9989019632339478, + 0.9988529682159424 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 10 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -199526,7 +442558,7 @@ "14:30", "15:45", "BASS 405 - Bass Center 405", - "https:\/\/map.yale.edu\/?id=1910#!m\/560102" + "https://map.yale.edu/?id=1910#!m/560102" ] ], "Thursday": [ @@ -199534,7 +442566,7 @@ "14:30", "15:45", "BASS 405 - Bass Center 405", - "https:\/\/map.yale.edu\/?id=1910#!m\/560102" + "https://map.yale.edu/?id=1910#!m/560102" ] ] }, @@ -199548,10 +442580,139 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84491\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84491/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988125562667847, + 0.9983453750610352, + 0.9986456036567688, + 0.9986985921859741, + 0.9977982044219971, + 0.9903422594070435, + 0.9986554384231567, + 0.9956871867179871, + 0.9983854293823242, + 0.9988418221473694, + 0.9961655139923096 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9090909090909091 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988546371459961, + 0.9924356341362, + 0.9994757771492004, + 0.998830258846283, + 0.9947176575660706, + 0.9983822107315063, + 0.9951450228691101, + 0.9986005425453186, + 0.9987438321113586, + 0.9995054006576538, + 0.9988664388656616 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.7272727272727273, + "NEGATIVE": 0.2727272727272727 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7272727272727273 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984412789344788, + 0.966108500957489, + 0.9989063739776611, + 0.9985975623130798, + 0.9945812821388245, + 0.9985987544059753, + 0.9927737712860107, + 0.9988572597503662, + 0.9988515377044678 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "final_label": "POSITIVE", + "final_count": 26, + "final_proportion": 0.8387096774193549, + "final_counts": { + "POSITIVE": 26, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.8387096774193549, + "NEGATIVE": 0.16129032258064516 + } + } }, { "season_code": "202301", @@ -199601,7 +442762,7 @@ "11:35", "12:50", "WTS A53 - Watson Center 60 Sachem Street A53", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -199609,7 +442770,7 @@ "11:35", "12:50", "WTS A53 - Watson Center 60 Sachem Street A53", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -199623,10 +442784,189 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84496\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84496/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988314509391785, + 0.9989117383956909, + 0.9984874725341797, + 0.9986463189125061, + 0.9986507296562195, + 0.9988083839416504, + 0.998111367225647, + 0.9980807304382324, + 0.9989318251609802, + 0.9987223744392395, + 0.9988471269607544, + 0.9986704587936401, + 0.9989192485809326, + 0.9986856579780579, + 0.998849630355835, + 0.9984323382377625, + 0.9973771572113037, + 0.9985306262969971 + ], + "sentiment_counts": { + "POSITIVE": 18, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9995083808898926, + 0.9987099170684814, + 0.9985994696617126, + 0.9988915324211121, + 0.9988987445831299, + 0.9988697171211243, + 0.9988501071929932, + 0.9986999034881592, + 0.9987635612487793, + 0.998920202255249, + 0.9988763928413391, + 0.998568058013916, + 0.9968211650848389, + 0.998773992061615, + 0.9986346364021301, + 0.9989176988601685, + 0.9986584186553955, + 0.9987058639526367 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 16 + }, + "sentiment_distribution": { + "NEGATIVE": 0.1111111111111111, + "POSITIVE": 0.8888888888888888 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9990143775939941, + 0.998873770236969, + 0.9988792538642883, + 0.9994851350784302, + 0.9988712668418884, + 0.9989314675331116, + 0.997117280960083, + 0.9987731575965881, + 0.9986048340797424, + 0.9989123344421387, + 0.9989063739776611, + 0.99892657995224, + 0.9986112117767334, + 0.9983874559402466, + 0.9988025426864624, + 0.9988476037979126, + 0.9984726309776306, + 0.997117280960083, + 0.9989333748817444, + 0.9890128374099731 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 18 + }, + "sentiment_distribution": { + "NEGATIVE": 0.1, + "POSITIVE": 0.9 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "final_label": "POSITIVE", + "final_count": 52, + "final_proportion": 0.9285714285714286, + "final_counts": { + "POSITIVE": 52, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.9285714285714286, + "NEGATIVE": 0.07142857142857142 + } + } }, { "season_code": "202301", @@ -199657,7 +442997,7 @@ "19:00", "19:50", "WTS A68 - Watson Center 60 Sachem Street A68", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -199674,7 +443014,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -199705,7 +443073,7 @@ "19:00", "19:50", "WTS B30 - Watson Center 60 Sachem Street B30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -199722,7 +443090,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -199753,7 +443149,7 @@ "19:00", "19:50", "WTS B51 - Watson Center 60 Sachem Street B51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -199770,7 +443166,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -199801,7 +443225,7 @@ "19:00", "19:50", "WTS A35 - Watson Center 60 Sachem Street A35", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -199818,7 +443242,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -199862,7 +443314,7 @@ "9:25", "10:15", "HLH17 115 - 17 Hillhouse Avenue 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Wednesday": [ @@ -199870,7 +443322,7 @@ "9:25", "10:15", "HLH17 115 - 17 Hillhouse Avenue 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Friday": [ @@ -199878,7 +443330,7 @@ "9:25", "10:15", "HLH17 115 - 17 Hillhouse Avenue 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -199892,15 +443344,126 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84506\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84506/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983678460121155, + 0.9984408020973206, + 0.9988372921943665, + 0.9981305003166199, + 0.9989367127418518, + 0.9983301758766174 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989234805107117, + 0.9989125728607178, + 0.9988905787467957, + 0.9986975193023682, + 0.9995036125183105, + 0.9994183778762817, + 0.9880630373954773, + 0.9987654685974121 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989303946495056, + 0.9984606504440308, + 0.9988518953323364, + 0.9989318251609802, + 0.9987974166870117, + 0.9994534850120544, + 0.9988964796066284, + 0.9988728165626526 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 0.8636363636363636, + "final_counts": { + "POSITIVE": 19, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.8636363636363636, + "NEGATIVE": 0.13636363636363635 + } + } }, { "season_code": "202301", "requirements": "Prerequisites: Foundations in Biology 101-104, although MCDB 205 (Cell Biology) would be highly beneficial. For background purposes, several copies of various cell biology texts will be placed on closed reserve at Bass. Permission of instructor required.\u00a0", - "description": "This seminar involves discussion and critical evaluation of selected research papers (1-2\/week) that were important in determining the directions of modern cell biological research. Emphasis is on the nature of the problem, evaluation of the experimental approaches and results, and the authors' interpretation of the results. The format is round table discussion of the paper, method by method, figure by figure. All are expected to be actively engaged in these discussions which require a thorough reading of the papers as well as further background reading particularly with respect to key methods used in the paper (e.g. how is EM autoradiography performed). \u00a0\n\nEnrollment preference is given to seniors.", + "description": "This seminar involves discussion and critical evaluation of selected research papers (1-2/week) that were important in determining the directions of modern cell biological research. Emphasis is on the nature of the problem, evaluation of the experimental approaches and results, and the authors' interpretation of the results. The format is round table discussion of the paper, method by method, figure by figure. All are expected to be actively engaged in these discussions which require a thorough reading of the papers as well as further background reading particularly with respect to key methods used in the paper (e.g. how is EM autoradiography performed). \u00a0\n\nEnrollment preference is given to seniors.", "short_title": "Landmark Papers in Cell Biology", "title": "Landmark Papers in Cell Biology", "school": "YC", @@ -199932,7 +443495,7 @@ "13:30", "15:20", "YSB 153 - Yale Science Building 153", - "https:\/\/map.yale.edu\/?id=1910#!m\/563700" + "https://map.yale.edu/?id=1910#!m/563700" ] ] }, @@ -199943,13 +443506,146 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Preference to Seniors in MCDB\/MB&B\/E&EB", + "classnotes": "Preference to Seniors in MCDB/MB&B/E&EB", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84511\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84511/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987751841545105, + 0.9988377690315247, + 0.9987718462944031, + 0.998445451259613, + 0.998836100101471, + 0.9988148212432861, + 0.9987868666648865, + 0.9988324046134949, + 0.9987564086914062, + 0.9989375472068787, + 0.9989296793937683 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989345669746399, + 0.9987980127334595, + 0.9989182949066162, + 0.9988497495651245, + 0.9988247752189636, + 0.9989262223243713, + 0.9988892674446106, + 0.9989010095596313, + 0.9989311099052429, + 0.9989307522773743 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989357590675354, + 0.998931348323822, + 0.9982553124427795, + 0.9988897442817688, + 0.9988414645195007, + 0.9989162683486938, + 0.9988815188407898, + 0.9989228844642639, + 0.9988998174667358, + 0.9989250302314758, + 0.9989018440246582, + 0.9989357590675354, + 0.9988895058631897 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 34, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 34 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -199997,13 +443693,142 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Prerequisites: MCDB202a and Statistics. Preference to juniors & seniors; MCDB\/MB&B", + "classnotes": "Prerequisites: MCDB202a and Statistics. Preference to juniors & seniors; MCDB/MB&B", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84516\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84516/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998589813709259, + 0.9988466501235962, + 0.9987818598747253, + 0.997752845287323, + 0.9986640214920044, + 0.9987095594406128, + 0.9984796643257141, + 0.9988300204277039, + 0.998875081539154, + 0.9988517761230469, + 0.998880922794342 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989123344421387, + 0.9985837936401367, + 0.9987238049507141, + 0.9988497495651245, + 0.9988012313842773, + 0.998920202255249, + 0.9987080097198486, + 0.9978392720222473, + 0.9989243149757385 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989355206489563, + 0.9988704323768616, + 0.9988971948623657, + 0.9988952875137329, + 0.997117280960083, + 0.9989159107208252, + 0.9986981153488159, + 0.9988942742347717, + 0.9989402890205383, + 0.9986864924430847, + 0.9989168643951416, + 0.9989151954650879 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 32, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 32 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -200048,7 +443873,7 @@ "13:00", "14:15", "BASS 305 - Bass Center 305", - "https:\/\/map.yale.edu\/?id=1910#!m\/560102" + "https://map.yale.edu/?id=1910#!m/560102" ] ], "Wednesday": [ @@ -200056,7 +443881,7 @@ "13:00", "14:15", "BASS 305 - Bass Center 305", - "https:\/\/map.yale.edu\/?id=1910#!m\/560102" + "https://map.yale.edu/?id=1910#!m/560102" ] ] }, @@ -200065,7 +443890,7 @@ "Sc" ], "flags": [ - "YC CSEC: Electv intrsctn CS\/EC", + "YC CSEC: Electv intrsctn CS/EC", "YC GLHTH: Quantitative Data", "YC GLHTH: Bio & Env Influences", "YC S&DS: Data Analy Disc Area" @@ -200075,15 +443900,230 @@ "classnotes": "", "final_exam": "Tuesday, May 9, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84447\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84447/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9970090985298157, + 0.9988558292388916, + 0.998725950717926, + 0.9988222718238831, + 0.9770744442939758, + 0.9983933568000793, + 0.9988370537757874, + 0.9987943172454834, + 0.9988017082214355, + 0.9986467957496643, + 0.9897382855415344, + 0.9848324656486511, + 0.9954740405082703, + 0.9987924098968506, + 0.9988179802894592, + 0.9761744737625122, + 0.9987727999687195, + 0.9987554550170898, + 0.9943423271179199, + 0.9987911581993103, + 0.9987240433692932, + 0.9988112449645996 + ], + "sentiment_counts": { + "POSITIVE": 21, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9545454545454546, + "NEGATIVE": 0.045454545454545456 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9545454545454546 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988459348678589, + 0.9987896084785461, + 0.9988797307014465, + 0.9958059787750244, + 0.9894225001335144, + 0.9994359612464905, + 0.9979944229125977, + 0.998843789100647, + 0.9988779425621033, + 0.9994478821754456, + 0.9994989633560181, + 0.9789282083511353, + 0.9994825124740601, + 0.9988343119621277, + 0.9959596991539001, + 0.9974040389060974, + 0.9970256686210632, + 0.9994776844978333, + 0.976995587348938, + 0.9994934797286987, + 0.9966699481010437, + 0.9995031356811523, + 0.9995009899139404, + 0.9981524348258972, + 0.9974574446678162, + 0.9989149570465088 + ], + "sentiment_counts": { + "POSITIVE": 15, + "NEGATIVE": 11 + }, + "sentiment_distribution": { + "POSITIVE": 0.5769230769230769, + "NEGATIVE": 0.4230769230769231 + }, + "sentiment_overall": [ + "POSITIVE", + 0.5769230769230769 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998795747756958, + 0.9989169836044312, + 0.9988184571266174, + 0.998866081237793, + 0.999496340751648, + 0.9985204339027405, + 0.9988468885421753, + 0.9989088773727417, + 0.9988956451416016, + 0.9987001419067383, + 0.9988686442375183, + 0.998552143573761, + 0.9929360747337341, + 0.9988508224487305, + 0.9988837838172913, + 0.9963728189468384, + 0.9917622804641724, + 0.9985169768333435, + 0.9851395487785339, + 0.9989237189292908, + 0.9962260723114014, + 0.9862384796142578, + 0.9989376664161682, + 0.9995100498199463, + 0.9994924068450928, + 0.9989180564880371 + ], + "sentiment_counts": { + "POSITIVE": 20, + "NEGATIVE": 6 + }, + "sentiment_distribution": { + "POSITIVE": 0.7692307692307693, + "NEGATIVE": 0.23076923076923078 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7692307692307693 + ] + }, + "final_label": "POSITIVE", + "final_count": 56, + "final_proportion": 0.7567567567567568, + "final_counts": { + "POSITIVE": 56, + "NEGATIVE": 18 + }, + "final_distribution": { + "POSITIVE": 0.7567567567567568, + "NEGATIVE": 0.24324324324324326 + } + } }, { "season_code": "202301", "requirements": "Fulfills the senior requirement for the B.A. degree if taken in the senior year.", - "description": "Individual or small-group study for qualified students who wish to investigate a broad area of experimental biology not presently covered by regular courses. A student must be sponsored by a Yale faculty member, who sets the requirements. The course must include one or more written examinations and\/or a term paper. Intended to be a supplementary course and, therefore, to have weekly or biweekly discussion meetings between the student and the sponsoring faculty member. To register, the student must prepare a form, which is available at\u00a0http:\/\/mcdb.yale.edu\/forms as well as on the course site on Classes*v2, and a written plan of study with bibliography, approved by the faculty research adviser. The form and proposal must be uploaded to Classes*v2 by the end of the second week of classes. The final paper is due in the hands of the sponsoring faculty member, with a copy to the course instructor, by the last day of classes. In special cases, with approval of the director of undergraduate studies, this course may be elected for more than one term, but only one term may count as an elective toward the major.", + "description": "Individual or small-group study for qualified students who wish to investigate a broad area of experimental biology not presently covered by regular courses. A student must be sponsored by a Yale faculty member, who sets the requirements. The course must include one or more written examinations and/or a term paper. Intended to be a supplementary course and, therefore, to have weekly or biweekly discussion meetings between the student and the sponsoring faculty member. To register, the student must prepare a form, which is available at\u00a0http://mcdb.yale.edu/forms as well as on the course site on Classes*v2, and a written plan of study with bibliography, approved by the faculty research adviser. The form and proposal must be uploaded to Classes*v2 by the end of the second week of classes. The final paper is due in the hands of the sponsoring faculty member, with a copy to the course instructor, by the last day of classes. In special cases, with approval of the director of undergraduate studies, this course may be elected for more than one term, but only one term may count as an elective toward the major.", "short_title": "Tutorial in Molecular, Cellul...", "title": "Tutorial in Molecular, Cellular, and Developmental Biology", "school": "YC", @@ -200118,15 +444158,43 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84521\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84521/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "Research project under faculty supervision taken Pass\/Fail. This is the only independent research course available to underclassmen. Students are expected to spend approximately ten hours per week in the laboratory. To register, the student must submit a form, which is available at\u00a0http:\/\/mcdb.yale.edu\/forms as well as on the course site on Canvas@Yale, and a written plan of study with bibliography, approved by the faculty research adviser. The form and proposal must be uploaded to Canvas@Yale by the end of the second week of classes. A final research report is required at the end of the term. Students who take this course more than once must reapply each term. Guidelines for the course should be obtained from the office of the director of undergraduate studies or downloaded from the Canvas@Yale server.", + "description": "Research project under faculty supervision taken Pass/Fail. This is the only independent research course available to underclassmen. Students are expected to spend approximately ten hours per week in the laboratory. To register, the student must submit a form, which is available at\u00a0http://mcdb.yale.edu/forms as well as on the course site on Canvas@Yale, and a written plan of study with bibliography, approved by the faculty research adviser. The form and proposal must be uploaded to Canvas@Yale by the end of the second week of classes. A final research report is required at the end of the term. Students who take this course more than once must reapply each term. Guidelines for the course should be obtained from the office of the director of undergraduate studies or downloaded from the Canvas@Yale server.", "short_title": "Independent Research", "title": "Independent Research", "school": "YC", @@ -200167,15 +444235,104 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84526\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84526/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "", - "description": "Research project under faculty supervision, ordinarily taken to fulfill the senior requirement. This course is only available to MCDB seniors and they are awarded a letter grade. Students are expected to spend approximately ten hours per week in the laboratory. To register, the student must prepare a form, which is available at\u00a0http:\/\/mcdb.yale.edu\/forms as well as on the course site on Canvas@Yale, and a written plan of study with bibliography, approved by the faculty research adviser. The form and proposal must be uploaded to Canvas@Yale by the end of the second week of classes. The final research paper is due in the hands of the sponsoring faculty member, with a copy uploaded to Canvas@Yale, by the last day of classes. Students who take this course more than once must reapply each term; students planning to conduct two terms of research should consider enrolling in MCDB 485, 486. Students should line up a research laboratory during the term preceding the research. Fulfills the senior requirement for the B.A. degree if taken in the senior year. Two consecutive terms of this course fulfill the senior requirement for the B.S. degree if at least one term is taken in the senior year.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9969280362129211, + 0.9973359704017639, + 0.9960314631462097, + 0.9989084005355835 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9985213875770569, + 0.9980393052101135, + 0.9962582588195801 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.3333333333333333, + "NEGATIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984682202339172, + 0.9994580149650574, + 0.9987717270851135, + 0.9973998069763184 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 0.6363636363636364, + "final_counts": { + "POSITIVE": 7, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.6363636363636364, + "NEGATIVE": 0.36363636363636365 + } + } + }, + { + "season_code": "202301", + "requirements": "", + "description": "Research project under faculty supervision, ordinarily taken to fulfill the senior requirement. This course is only available to MCDB seniors and they are awarded a letter grade. Students are expected to spend approximately ten hours per week in the laboratory. To register, the student must prepare a form, which is available at\u00a0http://mcdb.yale.edu/forms as well as on the course site on Canvas@Yale, and a written plan of study with bibliography, approved by the faculty research adviser. The form and proposal must be uploaded to Canvas@Yale by the end of the second week of classes. The final research paper is due in the hands of the sponsoring faculty member, with a copy uploaded to Canvas@Yale, by the last day of classes. Students who take this course more than once must reapply each term; students planning to conduct two terms of research should consider enrolling in MCDB 485, 486. Students should line up a research laboratory during the term preceding the research. Fulfills the senior requirement for the B.A. degree if taken in the senior year. Two consecutive terms of this course fulfill the senior requirement for the B.S. degree if at least one term is taken in the senior year.", "short_title": "Senior Independent Research", "title": "Senior Independent Research", "school": "YC", @@ -200216,15 +444373,92 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84468\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84468/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "", - "description": "Individual two-term laboratory research projects under the supervision of a faculty member. For MCDB seniors only. Students are expected to spend ten to twelve hours per week in the laboratory, and to make presentations to students and advisers. Written assignments include a short research proposal summary due at the beginning of the first term, a grant proposal due at the end of the first term, and a research report summarizing experimental results due at the end of the second term. Students are also required to present their research in either the fall or the spring term. A poster session is held at the end of the spring term. Students should line up a research laboratory during the term preceding the research. Guidelines for the course may be obtained at\u00a0http:\/\/mcdb.yale.edu\/forms and on the course site on Canvas@Yale. Written proposals are due by the end of the second week of classes. Fulfills the senior requirement for the B.S. degree if taken in the senior year.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982568621635437, + 0.9988821148872375 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9992020726203918, + 0.9988892674446106 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 1 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989105463027954 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 4, + "final_proportion": 0.8, + "final_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + } + } + }, + { + "season_code": "202301", + "requirements": "", + "description": "Individual two-term laboratory research projects under the supervision of a faculty member. For MCDB seniors only. Students are expected to spend ten to twelve hours per week in the laboratory, and to make presentations to students and advisers. Written assignments include a short research proposal summary due at the beginning of the first term, a grant proposal due at the end of the first term, and a research report summarizing experimental results due at the end of the second term. Students are also required to present their research in either the fall or the spring term. A poster session is held at the end of the spring term. Students should line up a research laboratory during the term preceding the research. Guidelines for the course may be obtained at\u00a0http://mcdb.yale.edu/forms and on the course site on Canvas@Yale. Written proposals are due by the end of the second week of classes. Fulfills the senior requirement for the B.S. degree if taken in the senior year.", "short_title": "Senior Research", "title": "Senior Research", "school": "YC", @@ -200265,15 +444499,43 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84472\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84472/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "Individual two-term laboratory research projects under the supervision of a faculty member. For MCDB seniors only. Students are expected to spend ten to twelve hours per week in the laboratory, and to make presentations to students and advisers. Written assignments include a short research proposal summary due at the beginning of the first term, a grant proposal due at the end of the first term, and a research report summarizing experimental results due at the end of the second term. Students are also required to present their research in either the fall or the spring term. A poster session is held at the end of the spring term. Students should line up a research laboratory during the term preceding the research. Guidelines for the course may be obtained at\u00a0http:\/\/mcdb.yale.edu\/forms and on the course site on Classes*v2. Written proposals are due by the end of the second week of classes. Fulfills the senior requirement for the B.S. degree if taken in the senior year.", + "description": "Individual two-term laboratory research projects under the supervision of a faculty member. For MCDB seniors only. Students are expected to spend ten to twelve hours per week in the laboratory, and to make presentations to students and advisers. Written assignments include a short research proposal summary due at the beginning of the first term, a grant proposal due at the end of the first term, and a research report summarizing experimental results due at the end of the second term. Students are also required to present their research in either the fall or the spring term. A poster session is held at the end of the spring term. Students should line up a research laboratory during the term preceding the research. Guidelines for the course may be obtained at\u00a0http://mcdb.yale.edu/forms and on the course site on Classes*v2. Written proposals are due by the end of the second week of classes. Fulfills the senior requirement for the B.S. degree if taken in the senior year.", "short_title": "Senior Research", "title": "Senior Research", "school": "YC", @@ -200314,15 +444576,162 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84476\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84476/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "", - "description": "Individual two-term directed research projects in the field of biology under the supervision of a faculty member. For MCDB seniors only. Before registering, the student must be accepted by a Yale faculty member with a research program in experimental biology and obtain the approval of the instructor in charge of the course. Students spend approximately twenty hours per week in the laboratory, and make written and oral presentations of their research to students and advisers. Written assignments include a short research proposal summary due at the beginning of the first term, a grant proposal due at the end of the first term, and a research report summarizing experimental results due at the end of the second term. Students must attend a minimum of three research seminar sessions (including their own) per term. Students are also required to present their research during both the fall and spring terms. A poster session is held at the end of the spring term. Guidelines for the course may be obtained at\u00a0http:\/\/mcdb.yale.edu\/forms and on the course site on Canvas@Yale. Written proposals are due by the end of the second week of classes. Fulfills the senior requirement for the B.S. degree with an intensive major.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9874914884567261, + 0.9988862872123718, + 0.9960229396820068, + 0.9974417686462402, + 0.9987181425094604, + 0.9988631010055542, + 0.9988265633583069, + 0.9987046718597412, + 0.9987597465515137, + 0.9976730942726135, + 0.8946030735969543, + 0.9988730549812317, + 0.9985306262969971 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9230769230769231, + "NEGATIVE": 0.07692307692307693 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9230769230769231 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985924363136292, + 0.9986469149589539, + 0.9958285689353943, + 0.99672532081604, + 0.9985306262969971, + 0.9911620616912842, + 0.9995095729827881, + 0.9989173412322998, + 0.9988920092582703, + 0.9994910955429077, + 0.9981295466423035, + 0.9988111257553101, + 0.9987540245056152, + 0.9994866847991943, + 0.9764212965965271, + 0.9936767220497131, + 0.9985306262969971 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 6 + }, + "sentiment_distribution": { + "POSITIVE": 0.6470588235294118, + "NEGATIVE": 0.35294117647058826 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6470588235294118 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994661211967468, + 0.9984921216964722, + 0.9978710412979126, + 0.9971060156822205, + 0.9933318495750427, + 0.998816728591919, + 0.9975467324256897, + 0.9987474679946899, + 0.9987319111824036, + 0.9985306262969971 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 9 + }, + "sentiment_distribution": { + "NEGATIVE": 0.1, + "POSITIVE": 0.9 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "final_label": "POSITIVE", + "final_count": 32, + "final_proportion": 0.8, + "final_counts": { + "POSITIVE": 32, + "NEGATIVE": 8 + }, + "final_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + } + } + }, + { + "season_code": "202301", + "requirements": "", + "description": "Individual two-term directed research projects in the field of biology under the supervision of a faculty member. For MCDB seniors only. Before registering, the student must be accepted by a Yale faculty member with a research program in experimental biology and obtain the approval of the instructor in charge of the course. Students spend approximately twenty hours per week in the laboratory, and make written and oral presentations of their research to students and advisers. Written assignments include a short research proposal summary due at the beginning of the first term, a grant proposal due at the end of the first term, and a research report summarizing experimental results due at the end of the second term. Students must attend a minimum of three research seminar sessions (including their own) per term. Students are also required to present their research during both the fall and spring terms. A poster session is held at the end of the spring term. Guidelines for the course may be obtained at\u00a0http://mcdb.yale.edu/forms and on the course site on Canvas@Yale. Written proposals are due by the end of the second week of classes. Fulfills the senior requirement for the B.S. degree with an intensive major.", "short_title": "Senior Research Intensive", "title": "Senior Research Intensive", "school": "YC", @@ -200363,15 +444772,43 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84479\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84479/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "Individual two-term directed research projects in the field of biology under the supervision of a faculty member. For MCDB seniors only. Before registering, the student must be accepted by a Yale faculty member with a research program in experimental biology and obtain the approval of the instructor in charge of the course. Students spend approximately twenty hours per week in the laboratory, and make written and oral presentations of their research to students and advisers. Written assignments include a short research proposal summary due at the beginning of the first term, a grant proposal due at the end of the first term, and a research report summarizing experimental results due at the end of the second term. Students must attend a minimum of three research seminar sessions (including their own) per term. Students are also required to present their research during both the fall and spring terms. A poster session is held at the end of the spring term. Guidelines for the course may be obtained at\u00a0http:\/\/mcdb.yale.edu\/forms and on the course site on Classes*v2. Written proposals are due by the end of the second week of classes. Fulfills the senior requirement for the B.S. degree with an intensive major.", + "description": "Individual two-term directed research projects in the field of biology under the supervision of a faculty member. For MCDB seniors only. Before registering, the student must be accepted by a Yale faculty member with a research program in experimental biology and obtain the approval of the instructor in charge of the course. Students spend approximately twenty hours per week in the laboratory, and make written and oral presentations of their research to students and advisers. Written assignments include a short research proposal summary due at the beginning of the first term, a grant proposal due at the end of the first term, and a research report summarizing experimental results due at the end of the second term. Students must attend a minimum of three research seminar sessions (including their own) per term. Students are also required to present their research during both the fall and spring terms. A poster session is held at the end of the spring term. Guidelines for the course may be obtained at\u00a0http://mcdb.yale.edu/forms and on the course site on Classes*v2. Written proposals are due by the end of the second week of classes. Fulfills the senior requirement for the B.S. degree with an intensive major.", "short_title": "Senior Research Intensive", "title": "Senior Research Intensive", "school": "YC", @@ -200412,10 +444849,87 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84482\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84482/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988162517547607, + 0.9985930323600769 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994944334030151, + 0.9989091157913208 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 1 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.998783528804779 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 4, + "final_proportion": 0.8, + "final_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + } + } }, { "season_code": "202301", @@ -200455,7 +444969,7 @@ "9:25", "10:15", "OML 202 - Osborn Memorial Laboratories 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/559958" + "https://map.yale.edu/?id=1910#!m/559958" ] ], "Wednesday": [ @@ -200463,7 +444977,7 @@ "9:25", "10:15", "OML 202 - Osborn Memorial Laboratories 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/559958" + "https://map.yale.edu/?id=1910#!m/559958" ] ], "Friday": [ @@ -200471,7 +444985,7 @@ "9:25", "10:15", "OML 202 - Osborn Memorial Laboratories 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/559958" + "https://map.yale.edu/?id=1910#!m/559958" ] ] }, @@ -200483,15 +444997,320 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84471\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84471/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "", - "description": "This course meets the NIH requirement that students receive training in the responsible conduct of research at least every four years. Two ninety-minute sessions for MCDB students; additional sessions for fourth-year MCDB students. Attendance is taken, and students who attend both sessions receive a grade of Satisfactory. Graded Satisfactory\/Unsatisfactory.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.8720771670341492, + 0.9974707365036011, + 0.9989193677902222, + 0.9980623126029968, + 0.9980589747428894, + 0.9987788796424866, + 0.9988201260566711, + 0.987992525100708, + 0.9989054203033447, + 0.9987646341323853, + 0.9986088871955872, + 0.9985124468803406, + 0.9979791045188904, + 0.9988245368003845, + 0.9950460195541382, + 0.9987044334411621, + 0.9981734752655029, + 0.9982542395591736, + 0.9989018440246582, + 0.9987659454345703, + 0.9988697171211243, + 0.9966422319412231, + 0.9988996982574463, + 0.9985560774803162, + 0.9987467527389526, + 0.9987695813179016, + 0.9987596273422241, + 0.9985721111297607, + 0.99875807762146, + 0.9986233711242676, + 0.9988835453987122, + 0.9987474679946899, + 0.9987548589706421 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 31 + }, + "sentiment_distribution": { + "NEGATIVE": 0.06060606060606061, + "POSITIVE": 0.9393939393939394 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9393939393939394 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9992609620094299, + 0.9979482293128967, + 0.998917818069458, + 0.998767614364624, + 0.9986490607261658, + 0.996189296245575, + 0.9985476136207581, + 0.9988172650337219, + 0.9976772665977478, + 0.998791515827179, + 0.9995028972625732, + 0.9989317059516907, + 0.9891966581344604, + 0.9980757236480713, + 0.9988433122634888, + 0.9982033967971802, + 0.9984682202339172, + 0.9666481018066406, + 0.998705267906189, + 0.9974740147590637, + 0.9989222288131714, + 0.9989086389541626, + 0.9987778067588806, + 0.9988683462142944, + 0.998892605304718, + 0.9989209175109863, + 0.998670220375061, + 0.9983806610107422, + 0.9988800883293152, + 0.9989086389541626, + 0.998909592628479, + 0.9989113807678223, + 0.9983658194541931, + 0.9988337159156799, + 0.9962701797485352, + 0.9988523721694946, + 0.9931483864784241, + 0.996882438659668, + 0.9963853359222412, + 0.9988781809806824, + 0.9961657524108887, + 0.9989206790924072, + 0.998766303062439, + 0.9974830746650696, + 0.9987754225730896, + 0.9987976551055908, + 0.9988987445831299 + ], + "sentiment_counts": { + "NEGATIVE": 11, + "POSITIVE": 36 + }, + "sentiment_distribution": { + "NEGATIVE": 0.23404255319148937, + "POSITIVE": 0.7659574468085106 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7659574468085106 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9749354720115662, + 0.9986059069633484, + 0.998703122138977, + 0.9989060163497925, + 0.9989211559295654, + 0.9984771609306335, + 0.9987208247184753, + 0.9975795149803162, + 0.9834765195846558, + 0.9988700747489929, + 0.9949259757995605, + 0.9989029169082642, + 0.9988092184066772, + 0.9989221096038818, + 0.9985690116882324, + 0.9928921461105347, + 0.9983993172645569, + 0.9989323019981384, + 0.9763026237487793, + 0.9817178249359131, + 0.9989131689071655, + 0.9988779425621033, + 0.997117280960083, + 0.9989261031150818, + 0.9989281296730042, + 0.9987804293632507, + 0.9989080429077148, + 0.9988735318183899, + 0.9989368319511414, + 0.9854270219802856, + 0.9983217120170593, + 0.9988954067230225, + 0.9978201389312744, + 0.9988860487937927, + 0.9982553124427795, + 0.9972317814826965, + 0.9981922507286072, + 0.9808655977249146, + 0.998855710029602 + ], + "sentiment_counts": { + "NEGATIVE": 6, + "POSITIVE": 33 + }, + "sentiment_distribution": { + "NEGATIVE": 0.15384615384615385, + "POSITIVE": 0.8461538461538461 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8461538461538461 + ] + }, + "final_label": "POSITIVE", + "final_count": 100, + "final_proportion": 0.8403361344537815, + "final_counts": { + "NEGATIVE": 19, + "POSITIVE": 100 + }, + "final_distribution": { + "NEGATIVE": 0.15966386554621848, + "POSITIVE": 0.8403361344537815 + } + } + }, + { + "season_code": "202301", + "requirements": "", + "description": "This course meets the NIH requirement that students receive training in the responsible conduct of research at least every four years. Two ninety-minute sessions for MCDB students; additional sessions for fourth-year MCDB students. Attendance is taken, and students who attend both sessions receive a grade of Satisfactory. Graded Satisfactory/Unsatisfactory.", "short_title": "Responsible Conduct of Research", "title": "Responsible Conduct of Research", "school": "GS", @@ -200523,7 +445342,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -200563,7 +445410,7 @@ "18:00", "19:15", "BASS 405 - Bass Center 405", - "https:\/\/map.yale.edu\/?id=1910#!m\/560102" + "https://map.yale.edu/?id=1910#!m/560102" ] ], "Wednesday": [ @@ -200571,7 +445418,7 @@ "18:00", "19:15", "BASS 405 - Bass Center 405", - "https:\/\/map.yale.edu\/?id=1910#!m\/560102" + "https://map.yale.edu/?id=1910#!m/560102" ] ] }, @@ -200583,10 +445430,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84464\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84464/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -200630,7 +445505,7 @@ "9:25", "10:15", "HLH17 115 - 17 Hillhouse Avenue 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Wednesday": [ @@ -200638,7 +445513,7 @@ "9:25", "10:15", "HLH17 115 - 17 Hillhouse Avenue 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Friday": [ @@ -200646,7 +445521,7 @@ "9:25", "10:15", "HLH17 115 - 17 Hillhouse Avenue 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -200658,10 +445533,121 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84506\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84506/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983678460121155, + 0.9984408020973206, + 0.9988372921943665, + 0.9981305003166199, + 0.9989367127418518, + 0.9983301758766174 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989234805107117, + 0.9989125728607178, + 0.9988905787467957, + 0.9986975193023682, + 0.9995036125183105, + 0.9994183778762817, + 0.9880630373954773, + 0.9987654685974121 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989303946495056, + 0.9984606504440308, + 0.9988518953323364, + 0.9989318251609802, + 0.9987974166870117, + 0.9994534850120544, + 0.9988964796066284, + 0.9988728165626526 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 0.8636363636363636, + "final_counts": { + "POSITIVE": 19, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.8636363636363636, + "NEGATIVE": 0.13636363636363635 + } + } }, { "season_code": "202301", @@ -200714,7 +445700,7 @@ "14:30", "15:45", "BASS 405 - Bass Center 405", - "https:\/\/map.yale.edu\/?id=1910#!m\/560102" + "https://map.yale.edu/?id=1910#!m/560102" ] ], "Thursday": [ @@ -200722,7 +445708,7 @@ "14:30", "15:45", "BASS 405 - Bass Center 405", - "https:\/\/map.yale.edu\/?id=1910#!m\/560102" + "https://map.yale.edu/?id=1910#!m/560102" ] ] }, @@ -200734,10 +445720,139 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84491\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84491/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988125562667847, + 0.9983453750610352, + 0.9986456036567688, + 0.9986985921859741, + 0.9977982044219971, + 0.9903422594070435, + 0.9986554384231567, + 0.9956871867179871, + 0.9983854293823242, + 0.9988418221473694, + 0.9961655139923096 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9090909090909091 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988546371459961, + 0.9924356341362, + 0.9994757771492004, + 0.998830258846283, + 0.9947176575660706, + 0.9983822107315063, + 0.9951450228691101, + 0.9986005425453186, + 0.9987438321113586, + 0.9995054006576538, + 0.9988664388656616 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.7272727272727273, + "NEGATIVE": 0.2727272727272727 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7272727272727273 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984412789344788, + 0.966108500957489, + 0.9989063739776611, + 0.9985975623130798, + 0.9945812821388245, + 0.9985987544059753, + 0.9927737712860107, + 0.9988572597503662, + 0.9988515377044678 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "final_label": "POSITIVE", + "final_count": 26, + "final_proportion": 0.8387096774193549, + "final_counts": { + "POSITIVE": 26, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.8387096774193549, + "NEGATIVE": 0.16129032258064516 + } + } }, { "season_code": "202301", @@ -200787,7 +445902,7 @@ "11:35", "12:50", "WTS A53 - Watson Center 60 Sachem Street A53", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -200795,7 +445910,7 @@ "11:35", "12:50", "WTS A53 - Watson Center 60 Sachem Street A53", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -200807,17 +445922,196 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84496\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84496/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "", - "description": "A two-credit course taken in the third-to-last term (typically the second term of the junior year). At the start of this course, each student forms a committee composed of the student\u2019s adviser and two faculty members that meets to discuss the research project. At the end of this course, students complete a detailed prospectus describing their thesis project and the work completed thus far. The committee evaluates an oral and written presentation of this prospectus; the evaluation determines whether the student may continue in the combined program. Required of students in the joint B.S.\/M.S. program with Yale College.", - "short_title": "Research in MCDB for B.S.\/M.S...", - "title": "Research in MCDB for B.S.\/M.S. Candidates", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988314509391785, + 0.9989117383956909, + 0.9984874725341797, + 0.9986463189125061, + 0.9986507296562195, + 0.9988083839416504, + 0.998111367225647, + 0.9980807304382324, + 0.9989318251609802, + 0.9987223744392395, + 0.9988471269607544, + 0.9986704587936401, + 0.9989192485809326, + 0.9986856579780579, + 0.998849630355835, + 0.9984323382377625, + 0.9973771572113037, + 0.9985306262969971 + ], + "sentiment_counts": { + "POSITIVE": 18, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9995083808898926, + 0.9987099170684814, + 0.9985994696617126, + 0.9988915324211121, + 0.9988987445831299, + 0.9988697171211243, + 0.9988501071929932, + 0.9986999034881592, + 0.9987635612487793, + 0.998920202255249, + 0.9988763928413391, + 0.998568058013916, + 0.9968211650848389, + 0.998773992061615, + 0.9986346364021301, + 0.9989176988601685, + 0.9986584186553955, + 0.9987058639526367 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 16 + }, + "sentiment_distribution": { + "NEGATIVE": 0.1111111111111111, + "POSITIVE": 0.8888888888888888 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9990143775939941, + 0.998873770236969, + 0.9988792538642883, + 0.9994851350784302, + 0.9988712668418884, + 0.9989314675331116, + 0.997117280960083, + 0.9987731575965881, + 0.9986048340797424, + 0.9989123344421387, + 0.9989063739776611, + 0.99892657995224, + 0.9986112117767334, + 0.9983874559402466, + 0.9988025426864624, + 0.9988476037979126, + 0.9984726309776306, + 0.997117280960083, + 0.9989333748817444, + 0.9890128374099731 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 18 + }, + "sentiment_distribution": { + "NEGATIVE": 0.1, + "POSITIVE": 0.9 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "final_label": "POSITIVE", + "final_count": 52, + "final_proportion": 0.9285714285714286, + "final_counts": { + "POSITIVE": 52, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.9285714285714286, + "NEGATIVE": 0.07142857142857142 + } + } + }, + { + "season_code": "202301", + "requirements": "", + "description": "A two-credit course taken in the third-to-last term (typically the second term of the junior year). At the start of this course, each student forms a committee composed of the student\u2019s adviser and two faculty members that meets to discuss the research project. At the end of this course, students complete a detailed prospectus describing their thesis project and the work completed thus far. The committee evaluates an oral and written presentation of this prospectus; the evaluation determines whether the student may continue in the combined program. Required of students in the joint B.S./M.S. program with Yale College.", + "short_title": "Research in MCDB for B.S./M.S...", + "title": "Research in MCDB for B.S./M.S. Candidates", "school": "GS", "credits": 2.0, "extra_info": "ACTIVE", @@ -200850,17 +446144,45 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86214\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86214/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "A four-credit, yearlong course (two credits each term) that is similar to MCDB 495\/496 and is taken during the senior year. During this course, students give an oral presentation describing their work. At the end of the course, students are expected to present their work to the department in the form of a poster presentation. In addition, students are expected to give an oral thesis defense, followed by a comprehensive examination of the thesis conducted by the thesis committee. Upon successful completion of this examination, as well as other requirements, the student is awarded the combined B.S.\/M.S. degree. Required of students in the joint B.S.\/M.S. program with Yale College.", + "description": "A four-credit, yearlong course (two credits each term) that is similar to MCDB 495/496 and is taken during the senior year. During this course, students give an oral presentation describing their work. At the end of the course, students are expected to present their work to the department in the form of a poster presentation. In addition, students are expected to give an oral thesis defense, followed by a comprehensive examination of the thesis conducted by the thesis committee. Upon successful completion of this examination, as well as other requirements, the student is awarded the combined B.S./M.S. degree. Required of students in the joint B.S./M.S. program with Yale College.", "short_title": "Intensive Research in MCDB fo...", - "title": "Intensive Research in MCDB for B.S.\/M.S. Candidates", + "title": "Intensive Research in MCDB for B.S./M.S. Candidates", "school": "GS", "credits": 2.0, "extra_info": "ACTIVE", @@ -200893,17 +446215,45 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86215\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86215/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "A four-credit, yearlong course (two credits each term) that is similar to MCDB 495\/496 and is taken during the senior year. During this course, students give an oral presentation describing their work. At the end of the course, students are expected to present their work to the department in the form of a poster presentation. In addition, students are expected to give an oral thesis defense, followed by a comprehensive examination of the thesis conducted by the thesis committee. Upon successful completion of this examination, as well as other requirements, the student is awarded the combined B.S.\/M.S. degree. Required of students in the joint B.S.\/M.S. program with Yale College.", + "description": "A four-credit, yearlong course (two credits each term) that is similar to MCDB 495/496 and is taken during the senior year. During this course, students give an oral presentation describing their work. At the end of the course, students are expected to present their work to the department in the form of a poster presentation. In addition, students are expected to give an oral thesis defense, followed by a comprehensive examination of the thesis conducted by the thesis committee. Upon successful completion of this examination, as well as other requirements, the student is awarded the combined B.S./M.S. degree. Required of students in the joint B.S./M.S. program with Yale College.", "short_title": "Intensive Research in MCDB fo...", - "title": "Intensive Research in MCDB for B.S.\/M.S. Candidates", + "title": "Intensive Research in MCDB for B.S./M.S. Candidates", "school": "GS", "credits": 2.0, "extra_info": "ACTIVE", @@ -200936,10 +446286,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86216\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86216/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -201000,10 +446378,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84469\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84469/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -201065,10 +446471,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84179\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84179/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -201109,7 +446543,7 @@ "9:00", "10:15", "KGL 123 - Kline Geology Laboratory 123", - "https:\/\/map.yale.edu\/?id=1910#!m\/559996" + "https://map.yale.edu/?id=1910#!m/559996" ] ], "Thursday": [ @@ -201117,7 +446551,7 @@ "9:00", "10:15", "KGL 123 - Kline Geology Laboratory 123", - "https:\/\/map.yale.edu\/?id=1910#!m\/559996" + "https://map.yale.edu/?id=1910#!m/559996" ] ] }, @@ -201129,10 +446563,157 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84536\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84536/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987189769744873, + 0.9985145926475525, + 0.9988418221473694, + 0.9983901977539062, + 0.9987832903862, + 0.9988497495651245, + 0.9984152317047119, + 0.9987611770629883, + 0.9934768080711365, + 0.9832520484924316, + 0.9967639446258545, + 0.9988559484481812, + 0.9989253878593445 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988736510276794, + 0.9987712502479553, + 0.9762536883354187, + 0.9984408020973206, + 0.9973691701889038, + 0.9987984895706177, + 0.9984152317047119, + 0.9981027245521545, + 0.9949336647987366, + 0.9994577765464783, + 0.9986213445663452, + 0.9986876845359802, + 0.986968457698822 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.7692307692307693, + "NEGATIVE": 0.23076923076923078 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7692307692307693 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982553124427795, + 0.9937769174575806, + 0.9989209175109863, + 0.9981671571731567, + 0.9951550960540771, + 0.9972221851348877, + 0.9980016350746155, + 0.9988308548927307, + 0.9947195053100586, + 0.9667780995368958, + 0.9985357522964478, + 0.9988803267478943, + 0.9987720847129822, + 0.9988601207733154 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "final_label": "POSITIVE", + "final_count": 35, + "final_proportion": 0.875, + "final_counts": { + "POSITIVE": 35, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + } + } }, { "season_code": "202301", @@ -201181,7 +446762,7 @@ "11:35", "12:50", "BASS 405 - Bass Center 405", - "https:\/\/map.yale.edu\/?id=1910#!m\/560102" + "https://map.yale.edu/?id=1910#!m/560102" ] ], "Thursday": [ @@ -201189,7 +446770,7 @@ "11:35", "12:50", "BASS 405 - Bass Center 405", - "https:\/\/map.yale.edu\/?id=1910#!m\/560102" + "https://map.yale.edu/?id=1910#!m/560102" ] ] }, @@ -201201,10 +446782,89 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84441\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84441/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987372756004333, + 0.9989155530929565 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9987972974777222, + 0.9874308109283447 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9972468614578247, + 0.9989346861839294 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 5, + "final_proportion": 0.8333333333333334, + "final_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + } + } }, { "season_code": "202301", @@ -201249,7 +446909,7 @@ "13:00", "14:15", "BASS 305 - Bass Center 305", - "https:\/\/map.yale.edu\/?id=1910#!m\/560102" + "https://map.yale.edu/?id=1910#!m/560102" ] ], "Wednesday": [ @@ -201257,7 +446917,7 @@ "13:00", "14:15", "BASS 305 - Bass Center 305", - "https:\/\/map.yale.edu\/?id=1910#!m\/560102" + "https://map.yale.edu/?id=1910#!m/560102" ] ] }, @@ -201273,10 +446933,225 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84447\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84447/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9970090985298157, + 0.9988558292388916, + 0.998725950717926, + 0.9988222718238831, + 0.9770744442939758, + 0.9983933568000793, + 0.9988370537757874, + 0.9987943172454834, + 0.9988017082214355, + 0.9986467957496643, + 0.9897382855415344, + 0.9848324656486511, + 0.9954740405082703, + 0.9987924098968506, + 0.9988179802894592, + 0.9761744737625122, + 0.9987727999687195, + 0.9987554550170898, + 0.9943423271179199, + 0.9987911581993103, + 0.9987240433692932, + 0.9988112449645996 + ], + "sentiment_counts": { + "POSITIVE": 21, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9545454545454546, + "NEGATIVE": 0.045454545454545456 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9545454545454546 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988459348678589, + 0.9987896084785461, + 0.9988797307014465, + 0.9958059787750244, + 0.9894225001335144, + 0.9994359612464905, + 0.9979944229125977, + 0.998843789100647, + 0.9988779425621033, + 0.9994478821754456, + 0.9994989633560181, + 0.9789282083511353, + 0.9994825124740601, + 0.9988343119621277, + 0.9959596991539001, + 0.9974040389060974, + 0.9970256686210632, + 0.9994776844978333, + 0.976995587348938, + 0.9994934797286987, + 0.9966699481010437, + 0.9995031356811523, + 0.9995009899139404, + 0.9981524348258972, + 0.9974574446678162, + 0.9989149570465088 + ], + "sentiment_counts": { + "POSITIVE": 15, + "NEGATIVE": 11 + }, + "sentiment_distribution": { + "POSITIVE": 0.5769230769230769, + "NEGATIVE": 0.4230769230769231 + }, + "sentiment_overall": [ + "POSITIVE", + 0.5769230769230769 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998795747756958, + 0.9989169836044312, + 0.9988184571266174, + 0.998866081237793, + 0.999496340751648, + 0.9985204339027405, + 0.9988468885421753, + 0.9989088773727417, + 0.9988956451416016, + 0.9987001419067383, + 0.9988686442375183, + 0.998552143573761, + 0.9929360747337341, + 0.9988508224487305, + 0.9988837838172913, + 0.9963728189468384, + 0.9917622804641724, + 0.9985169768333435, + 0.9851395487785339, + 0.9989237189292908, + 0.9962260723114014, + 0.9862384796142578, + 0.9989376664161682, + 0.9995100498199463, + 0.9994924068450928, + 0.9989180564880371 + ], + "sentiment_counts": { + "POSITIVE": 20, + "NEGATIVE": 6 + }, + "sentiment_distribution": { + "POSITIVE": 0.7692307692307693, + "NEGATIVE": 0.23076923076923078 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7692307692307693 + ] + }, + "final_label": "POSITIVE", + "final_count": 56, + "final_proportion": 0.7567567567567568, + "final_counts": { + "POSITIVE": 56, + "NEGATIVE": 18 + }, + "final_distribution": { + "POSITIVE": 0.7567567567567568, + "NEGATIVE": 0.24324324324324326 + } + } }, { "season_code": "202301", @@ -201318,10 +447193,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86190\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86190/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -201367,7 +447270,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -201403,10 +447334,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86191\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86191/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -201443,7 +447402,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -201480,7 +447467,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -201517,7 +447532,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -201555,7 +447598,7 @@ "13:30", "15:20", "HQ 209 - Humanities Quadrangle 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -201567,10 +447610,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84199\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84199/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -201614,7 +447685,7 @@ "11:35", "12:50", "HQ 307 - Humanities Quadrangle 307", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -201622,7 +447693,7 @@ "11:35", "12:50", "HQ 307 - Humanities Quadrangle 307", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -201634,10 +447705,173 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84160\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84160/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984762072563171, + 0.9965823292732239, + 0.9987420439720154, + 0.998738706111908, + 0.9988890290260315, + 0.9987844824790955, + 0.9989080429077148, + 0.9968896508216858, + 0.99891197681427, + 0.9962582588195801, + 0.9987926483154297, + 0.9988880753517151, + 0.9988172650337219, + 0.9989134073257446 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9285714285714286, + "NEGATIVE": 0.07142857142857142 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9285714285714286 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994984865188599, + 0.9981104135513306, + 0.9988154172897339, + 0.9942962527275085, + 0.9994580149650574, + 0.9982935786247253, + 0.9988263249397278, + 0.9989131689071655, + 0.9988403916358948, + 0.9987169504165649, + 0.9989199638366699, + 0.9962582588195801, + 0.9988699555397034, + 0.9973528385162354, + 0.9985707998275757, + 0.99857497215271, + 0.979805052280426, + 0.9986971020698547 + ], + "sentiment_counts": { + "NEGATIVE": 4, + "POSITIVE": 14 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2222222222222222, + "POSITIVE": 0.7777777777777778 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7777777777777778 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988037347793579, + 0.9988871216773987, + 0.9984511137008667, + 0.9986259937286377, + 0.987037181854248, + 0.9987447261810303, + 0.998930037021637, + 0.9989023208618164, + 0.9988842606544495, + 0.9878063797950745, + 0.9989326596260071, + 0.9962582588195801, + 0.9988477230072021, + 0.9910148978233337, + 0.9989182949066162, + 0.9986000657081604 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.8125, + "NEGATIVE": 0.1875 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8125 + ] + }, + "final_label": "POSITIVE", + "final_count": 40, + "final_proportion": 0.8333333333333334, + "final_counts": { + "POSITIVE": 40, + "NEGATIVE": 8 + }, + "final_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + } + } }, { "season_code": "202301", @@ -201676,7 +447910,7 @@ "13:30", "15:20", "LORIA 360 - Loria Center 360", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -201688,10 +447922,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84281\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84281/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -201734,7 +447975,7 @@ "13:30", "15:20", "HQ C07 - Humanities Quadrangle C07", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -201746,10 +447987,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84194\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84194/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -201787,10 +448056,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84492\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84492/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -201831,7 +448128,7 @@ "13:30", "15:20", "LC 319 - Linsly-Chittenden Hall 319", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -201842,13 +448139,41 @@ ], "regnotes": "", "rp_attr": "", - "classnotes": "This course may satisfy the Medieval or 20th\/21st Century English literature requirement with instructor permission.", + "classnotes": "This course may satisfy the Medieval or 20th/21st Century English literature requirement with instructor permission.", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84071\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84071/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -201886,7 +448211,7 @@ "9:30", "10:20", "SDQ NIEBUHR - Sterling Divinity Quadrangle NIEBUHR", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ], "Wednesday": [ @@ -201894,7 +448219,7 @@ "9:30", "10:20", "SDQ NIEBUHR - Sterling Divinity Quadrangle NIEBUHR", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ], "Friday": [ @@ -201902,7 +448227,7 @@ "9:30", "10:20", "SDQ NIEBUHR - Sterling Divinity Quadrangle NIEBUHR", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -201914,10 +448239,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85117\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85117/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -201958,7 +448311,7 @@ "15:30", "17:20", "SDQ LATOURETTE - Sterling Divinity Quadrangle LATOURETTE", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -201970,10 +448323,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84986\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84986/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -202012,7 +448393,7 @@ "15:30", "17:20", "PR406 203 - 406 Prospect St., Miller Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/559978" + "https://map.yale.edu/?id=1910#!m/559978" ] ] }, @@ -202024,10 +448405,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85922\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85922/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -202067,7 +448476,7 @@ "15:30", "17:20", "LC 318 - Linsly-Chittenden Hall 318", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -202079,10 +448488,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84321\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84321/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -202122,7 +448559,7 @@ "13:30", "15:20", "HQ 109 - Humanities Quadrangle 109", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -202134,10 +448571,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84498\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84498/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -202174,7 +448639,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -202211,7 +448704,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -202252,7 +448773,7 @@ "13:30", "15:20", "WTS A42 - Watson Center 60 Sachem Street A42", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -202264,10 +448785,107 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84633\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84633/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9978175163269043, + 0.9988942742347717, + 0.9983519315719604, + 0.992295503616333, + 0.9988190531730652 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984105825424194, + 0.9988803267478943, + 0.9967917799949646, + 0.9969640374183655, + 0.9939751029014587, + 0.9989259839057922 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.999470055103302, + 0.9989041090011597, + 0.9995087385177612, + 0.9987061023712158 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 0.7333333333333333, + "final_counts": { + "POSITIVE": 11, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.7333333333333333, + "NEGATIVE": 0.26666666666666666 + } + } }, { "season_code": "202301", @@ -202304,7 +448922,7 @@ "14:30", "15:20", "HLH17 03 - 17 Hillhouse Avenue 03", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Wednesday": [ @@ -202312,7 +448930,7 @@ "14:30", "15:20", "HLH17 03 - 17 Hillhouse Avenue 03", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -202328,10 +448946,169 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84512\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84512/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9908219575881958, + 0.9987756609916687, + 0.9987874627113342, + 0.998885452747345, + 0.9988883137702942, + 0.9987778067588806, + 0.9987530708312988, + 0.9986767172813416, + 0.998755931854248, + 0.9988677501678467, + 0.9969105124473572, + 0.9988202452659607, + 0.9988327622413635, + 0.9989020824432373, + 0.997733473777771 + ], + "sentiment_counts": { + "POSITIVE": 15, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9994341731071472, + 0.9994809031486511, + 0.9989232420921326, + 0.998883068561554, + 0.9360232949256897, + 0.9994951486587524, + 0.9850828647613525, + 0.9931203126907349, + 0.9988629817962646, + 0.9988967180252075, + 0.9594382047653198, + 0.9951117634773254, + 0.9988885521888733, + 0.97268146276474, + 0.9909915924072266, + 0.9979078769683838 + ], + "sentiment_counts": { + "NEGATIVE": 7, + "POSITIVE": 9 + }, + "sentiment_distribution": { + "NEGATIVE": 0.4375, + "POSITIVE": 0.5625 + }, + "sentiment_overall": [ + "POSITIVE", + 0.5625 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9991876482963562, + 0.9988254904747009, + 0.9989286065101624, + 0.9985260963439941, + 0.9988182187080383, + 0.9984853863716125, + 0.9987407326698303, + 0.9987998008728027, + 0.9986942410469055, + 0.9989245533943176, + 0.9979758858680725, + 0.9988142251968384, + 0.9986695051193237, + 0.9995083808898926, + 0.9986785054206848 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 13 + }, + "sentiment_distribution": { + "NEGATIVE": 0.13333333333333333, + "POSITIVE": 0.8666666666666667 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8666666666666667 + ] + }, + "final_label": "POSITIVE", + "final_count": 37, + "final_proportion": 0.8043478260869565, + "final_counts": { + "POSITIVE": 37, + "NEGATIVE": 9 + }, + "final_distribution": { + "POSITIVE": 0.8043478260869565, + "NEGATIVE": 0.1956521739130435 + } + } }, { "season_code": "202301", @@ -202362,7 +449139,7 @@ "9:25", "12:25", "YK212 004 - 212 York Street 004", - "https:\/\/map.yale.edu\/?id=1910#!m\/559604" + "https://map.yale.edu/?id=1910#!m/559604" ] ] }, @@ -202381,7 +449158,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -202412,7 +449217,7 @@ "13:30", "16:30", "BM 013 - Bingham Hall 013", - "https:\/\/map.yale.edu\/?id=1910#!m\/559569" + "https://map.yale.edu/?id=1910#!m/559569" ] ] }, @@ -202431,7 +449236,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -202468,7 +449301,7 @@ "13:00", "14:15", "WLH 120 - William L. Harkness Hall 120", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -202476,7 +449309,7 @@ "13:00", "14:15", "WLH 120 - William L. Harkness Hall 120", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -202494,10 +449327,155 @@ "classnotes": "", "final_exam": "Sunday, May 7, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84517\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84517/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988250136375427, + 0.9981227517127991, + 0.9985849857330322, + 0.836594820022583, + 0.9987572431564331, + 0.9985560774803162, + 0.9303253889083862, + 0.9987226128578186, + 0.9988046884536743, + 0.9985438585281372, + 0.998601496219635, + 0.9988154172897339, + 0.9988791346549988 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9230769230769231, + "NEGATIVE": 0.07692307692307693 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9230769230769231 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9980125427246094, + 0.9969182014465332, + 0.9995063543319702, + 0.998906135559082, + 0.9987679123878479, + 0.9988338351249695, + 0.9961299896240234, + 0.9940263032913208, + 0.999421238899231, + 0.9988419413566589, + 0.9989223480224609, + 0.9989266991615295, + 0.9987861514091492 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8461538461538461, + "NEGATIVE": 0.15384615384615385 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8461538461538461 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9965164661407471, + 0.9987816214561462, + 0.9983530044555664, + 0.9986666440963745, + 0.9986010193824768, + 0.997117280960083, + 0.9919706583023071, + 0.9982219338417053, + 0.9987720847129822, + 0.9994877576828003, + 0.998904824256897, + 0.9988080263137817, + 0.9987474679946899 + ], + "sentiment_counts": { + "NEGATIVE": 4, + "POSITIVE": 9 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3076923076923077, + "POSITIVE": 0.6923076923076923 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6923076923076923 + ] + }, + "final_label": "POSITIVE", + "final_count": 32, + "final_proportion": 0.8205128205128205, + "final_counts": { + "POSITIVE": 32, + "NEGATIVE": 7 + }, + "final_distribution": { + "POSITIVE": 0.8205128205128205, + "NEGATIVE": 0.1794871794871795 + } + } }, { "season_code": "202301", @@ -202534,7 +449512,7 @@ "14:30", "15:45", "WTS A32 - Watson Center 60 Sachem Street A32", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -202542,7 +449520,7 @@ "14:30", "15:45", "WTS A32 - Watson Center 60 Sachem Street A32", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -202558,10 +449536,105 @@ "classnotes": "This course has both lectures and laboratory sessions \u2013 please refer to the Canvas website for detailed information about sign-up for the laboratory sessions.\n\n", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84523\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84523/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987187385559082, + 0.9979410767555237, + 0.998913049697876, + 0.998869001865387, + 0.9986875653266907 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989058971405029, + 0.9989159107208252, + 0.9989269375801086, + 0.9986410737037659, + 0.9988941550254822 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988312125205994, + 0.9979754090309143, + 0.9985511898994446, + 0.9989393353462219, + 0.998903751373291 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 15 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -202598,7 +449671,7 @@ "9:00", "10:15", "WTS A74 - Watson Center 60 Sachem Street A74", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -202616,10 +449689,139 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84528\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84528/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987723231315613, + 0.9983047246932983, + 0.9985652565956116, + 0.9987327456474304, + 0.9974111914634705, + 0.9988458156585693, + 0.9988179802894592, + 0.9988707900047302, + 0.9988389611244202, + 0.9988487958908081, + 0.9975956082344055 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998768150806427, + 0.9988704323768616, + 0.9973032474517822, + 0.9988960027694702, + 0.9989113807678223, + 0.9988715052604675, + 0.9989396929740906, + 0.998859167098999, + 0.9988381266593933, + 0.9989271759986877, + 0.998934805393219, + 0.9898043870925903 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9166666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9897856116294861, + 0.998835027217865, + 0.9988118410110474, + 0.9987682700157166, + 0.9988943934440613, + 0.9988915324211121, + 0.9989056587219238, + 0.9987977743148804 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 30, + "final_proportion": 0.967741935483871, + "final_counts": { + "POSITIVE": 30, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.967741935483871, + "NEGATIVE": 0.03225806451612903 + } + } }, { "season_code": "202301", @@ -202650,7 +449852,7 @@ "13:30", "16:30", "WTS B41 - Watson Center 60 Sachem Street B41", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -202671,7 +449873,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -202702,7 +449932,7 @@ "13:30", "16:30", "WTS B41 - Watson Center 60 Sachem Street B41", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -202723,7 +449953,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -202754,7 +450012,7 @@ "13:30", "16:30", "WTS B41 - Watson Center 60 Sachem Street B41", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -202775,7 +450033,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -202812,7 +450098,7 @@ "18:00", "19:15", "HLH17 05 - 17 Hillhouse Avenue 05", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Thursday": [ @@ -202820,7 +450106,7 @@ "18:00", "19:15", "HLH17 05 - 17 Hillhouse Avenue 05", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -202838,10 +450124,143 @@ "classnotes": "", "final_exam": "Wednesday, May 10, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85224\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/85224/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988667964935303, + 0.9969070553779602, + 0.9895505309104919, + 0.9987598657608032, + 0.9988767504692078, + 0.9984795451164246, + 0.9986361861228943, + 0.9950478672981262, + 0.9979429841041565, + 0.9986976385116577, + 0.9971458315849304, + 0.9989068508148193 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9166666666666666 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988522529602051, + 0.9988892674446106, + 0.9981581568717957, + 0.9989204406738281, + 0.9973837733268738, + 0.9877102971076965, + 0.9988784193992615, + 0.999477207660675, + 0.9989111423492432, + 0.9988225102424622, + 0.9984042048454285 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8181818181818182, + "NEGATIVE": 0.18181818181818182 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8181818181818182 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.996792733669281, + 0.9986298084259033, + 0.9987989664077759, + 0.9987529516220093, + 0.998927891254425, + 0.9977574944496155, + 0.9979555606842041, + 0.9989320635795593, + 0.9989066123962402, + 0.9989223480224609 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 30, + "final_proportion": 0.9090909090909091, + "final_counts": { + "POSITIVE": 30, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + } + } }, { "season_code": "202301", @@ -202878,7 +450297,7 @@ "14:30", "15:45", "ML 211 - Mason Laboratory 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ], "Wednesday": [ @@ -202886,7 +450305,7 @@ "14:30", "15:45", "ML 211 - Mason Laboratory 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ] }, @@ -202904,10 +450323,135 @@ "classnotes": "", "final_exam": "Thursday, May 4, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84532\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84532/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9971873164176941, + 0.997633695602417, + 0.9988962411880493, + 0.9984992742538452, + 0.9989222288131714, + 0.9987927675247192, + 0.9988341927528381, + 0.9985576272010803 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9979889392852783, + 0.9987433552742004, + 0.9988873600959778, + 0.9988970756530762, + 0.9872991442680359, + 0.99873286485672, + 0.9987465143203735, + 0.998870313167572, + 0.9989301562309265, + 0.9987015724182129, + 0.9988977909088135, + 0.998462438583374, + 0.9988570213317871, + 0.9994956254959106 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 11 + }, + "sentiment_distribution": { + "NEGATIVE": 0.21428571428571427, + "POSITIVE": 0.7857142857142857 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7857142857142857 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988841414451599, + 0.9989084005355835, + 0.9987371563911438, + 0.9900963306427002, + 0.9987398982048035, + 0.9987909197807312, + 0.992308497428894 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.7142857142857143, + "NEGATIVE": 0.2857142857142857 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7142857142857143 + ] + }, + "final_label": "POSITIVE", + "final_count": 24, + "final_proportion": 0.8275862068965517, + "final_counts": { + "POSITIVE": 24, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.8275862068965517, + "NEGATIVE": 0.1724137931034483 + } + } }, { "season_code": "202301", @@ -202945,7 +450489,7 @@ "13:00", "14:15", "BCT CO31 - Becton Center CO31", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ], "Wednesday": [ @@ -202953,7 +450497,7 @@ "13:00", "14:15", "BCT CO31 - Becton Center CO31", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ], "Friday": [ @@ -202961,7 +450505,7 @@ "10:30", "13:30", "", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ] }, @@ -202973,15 +450517,186 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84538\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84538/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988817572593689, + 0.998762845993042, + 0.9984331727027893, + 0.9986935257911682, + 0.9972537159919739, + 0.9979208111763, + 0.9903580546379089, + 0.9985890984535217, + 0.9985009431838989, + 0.9986076951026917, + 0.9994681477546692, + 0.9982275366783142, + 0.9980060458183289, + 0.9987364411354065, + 0.9927500486373901, + 0.9990290403366089 + ], + "sentiment_counts": { + "POSITIVE": 14, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9994786381721497, + 0.9986916184425354, + 0.9925663471221924, + 0.9965478777885437, + 0.9968634843826294, + 0.9359337687492371, + 0.9977951049804688, + 0.998127281665802, + 0.998809814453125, + 0.9976143836975098, + 0.9988644123077393, + 0.9987590312957764, + 0.9987120628356934, + 0.9994983673095703, + 0.9987345337867737, + 0.998688280582428, + 0.997938334941864, + 0.9991878867149353, + 0.9995075464248657 + ], + "sentiment_counts": { + "NEGATIVE": 9, + "POSITIVE": 10 + }, + "sentiment_distribution": { + "NEGATIVE": 0.47368421052631576, + "POSITIVE": 0.5263157894736842 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9928223490715027, + 0.9980202913284302, + 0.9950602650642395, + 0.9908508658409119, + 0.9983383417129517, + 0.9979522228240967, + 0.9988338351249695, + 0.9980877041816711, + 0.9924547672271729, + 0.9987401366233826, + 0.9984676241874695, + 0.9995110034942627, + 0.9988934397697449, + 0.9719647765159607, + 0.9879150390625, + 0.9987491369247437, + 0.9995070695877075 + ], + "sentiment_counts": { + "POSITIVE": 14, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.8235294117647058, + "NEGATIVE": 0.17647058823529413 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8235294117647058 + ] + }, + "final_label": "POSITIVE", + "final_count": 38, + "final_proportion": 0.7307692307692307, + "final_counts": { + "POSITIVE": 38, + "NEGATIVE": 14 + }, + "final_distribution": { + "POSITIVE": 0.7307692307692307, + "NEGATIVE": 0.2692307692307692 + } + } }, { "season_code": "202301", "requirements": "Prerequisite: ENAS 130 or permission of instructor.", - "description": "Aspects of computer-aided design and manufacture (CAD\/CAM). The computer's role in the mechanical design and manufacturing process; commercial tools for two- and three-dimensional drafting and assembly modeling; finite-element analysis software for modeling mechanical, thermal, and fluid systems.", + "description": "Aspects of computer-aided design and manufacture (CAD/CAM). The computer's role in the mechanical design and manufacturing process; commercial tools for two- and three-dimensional drafting and assembly modeling; finite-element analysis software for modeling mechanical, thermal, and fluid systems.", "short_title": "Computer-Aided Engineering", "title": "Computer-Aided Engineering", "school": "YC", @@ -203014,7 +450729,7 @@ "18:00", "19:15", "HLH17 111 - 17 Hillhouse Avenue 111", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Wednesday": [ @@ -203022,7 +450737,7 @@ "18:00", "19:15", "HLH17 111 - 17 Hillhouse Avenue 111", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -203038,10 +450753,233 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84541\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84541/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9979021549224854, + 0.9984152317047119, + 0.9988345503807068, + 0.9987831711769104, + 0.9981390237808228, + 0.9988539218902588, + 0.99873286485672, + 0.9988941550254822, + 0.9985862970352173, + 0.996218740940094, + 0.9985802173614502, + 0.9987216591835022, + 0.9972445964813232, + 0.9977554678916931, + 0.9986836314201355, + 0.9985400438308716, + 0.9988333582878113, + 0.9988574981689453, + 0.998829185962677, + 0.9988874793052673, + 0.9985870122909546, + 0.9988456964492798, + 0.9987114667892456, + 0.9988921284675598, + 0.9987586736679077, + 0.99892657995224, + 0.998484194278717 + ], + "sentiment_counts": { + "POSITIVE": 27, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.997462272644043, + 0.9984152317047119, + 0.9985368251800537, + 0.9989042282104492, + 0.9988822340965271, + 0.9988723397254944, + 0.998278021812439, + 0.9988717436790466, + 0.9989151954650879, + 0.9988203644752502, + 0.9989099502563477, + 0.9989169836044312, + 0.9988937973976135, + 0.9989283680915833, + 0.9988049268722534, + 0.9976050853729248, + 0.9988982677459717, + 0.9988874793052673, + 0.99891197681427, + 0.9988466501235962, + 0.9983129501342773, + 0.9989014863967896, + 0.9985935091972351, + 0.9989141225814819 + ], + "sentiment_counts": { + "POSITIVE": 23, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9583333333333334, + "NEGATIVE": 0.041666666666666664 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9583333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988445043563843, + 0.9984152317047119, + 0.9987937211990356, + 0.9985804557800293, + 0.9988837838172913, + 0.998755693435669, + 0.9987329840660095, + 0.998581051826477, + 0.9989287257194519, + 0.9988945126533508, + 0.9981608986854553, + 0.9988594055175781, + 0.9987664222717285, + 0.9987804293632507, + 0.9988569021224976, + 0.9988313317298889, + 0.9988206028938293, + 0.998593270778656, + 0.9987490177154541, + 0.9988874793052673, + 0.9989187717437744, + 0.9987678527832031, + 0.9988934397697449, + 0.9989295601844788, + 0.9989076852798462, + 0.998842179775238, + 0.9989207983016968 + ], + "sentiment_counts": { + "POSITIVE": 27, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 77, + "final_proportion": 0.9871794871794872, + "final_counts": { + "POSITIVE": 77, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9871794871794872, + "NEGATIVE": 0.01282051282051282 + } + } }, { "season_code": "202301", @@ -203083,7 +451021,7 @@ "16:00", "17:15", "BCT 107 - Becton Center 107", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ], "Wednesday": [ @@ -203091,7 +451029,7 @@ "16:00", "17:15", "BCT 107 - Becton Center 107", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ] }, @@ -203105,10 +451043,189 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83918\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83918/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988884329795837, + 0.9987467527389526, + 0.9989126920700073, + 0.9988974332809448, + 0.9986911416053772, + 0.9987965822219849, + 0.9988775849342346, + 0.9987812638282776, + 0.9970787763595581, + 0.9988975524902344, + 0.9988909363746643, + 0.9984408020973206, + 0.9989093542098999, + 0.9988975524902344, + 0.9961948394775391, + 0.9988802075386047, + 0.9987797141075134, + 0.998815655708313, + 0.9989262223243713 + ], + "sentiment_counts": { + "POSITIVE": 19, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989058971405029, + 0.9989045858383179, + 0.992607831954956, + 0.99888676404953, + 0.9987735152244568, + 0.9989114999771118, + 0.9986045956611633, + 0.9987698197364807, + 0.9988709092140198, + 0.998856782913208, + 0.9994332194328308, + 0.9974697828292847, + 0.9844639897346497, + 0.9988527297973633, + 0.9988264441490173, + 0.9987998008728027, + 0.9989141225814819 + ], + "sentiment_counts": { + "POSITIVE": 15, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8823529411764706, + "NEGATIVE": 0.11764705882352941 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8823529411764706 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989001750946045, + 0.997817873954773, + 0.9988651275634766, + 0.9985816478729248, + 0.9989206790924072, + 0.9989334940910339, + 0.9988627433776855, + 0.9988340735435486, + 0.9989185333251953, + 0.9985446929931641, + 0.998915433883667, + 0.9988859295845032, + 0.998873770236969, + 0.9987025260925293, + 0.9988766312599182, + 0.998810887336731, + 0.9989173412322998, + 0.9988746047019958, + 0.9988998174667358, + 0.9989182949066162 + ], + "sentiment_counts": { + "POSITIVE": 20, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 54, + "final_proportion": 0.9642857142857143, + "final_counts": { + "POSITIVE": 54, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9642857142857143, + "NEGATIVE": 0.03571428571428571 + } + } }, { "season_code": "202301", @@ -203147,7 +451264,7 @@ "13:00", "14:15", "WTS B31 - Watson Center 60 Sachem Street B31", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -203155,7 +451272,7 @@ "13:00", "14:15", "WTS B31 - Watson Center 60 Sachem Street B31", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -203167,10 +451284,83 @@ "classnotes": "", "final_exam": "Sunday, May 7, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87136\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87136/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9955400824546814, + 0.9906514883041382 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987418055534363 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986652135848999 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 4, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 4 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -203207,7 +451397,7 @@ "19:30", "20:45", "HLH17 111 - 17 Hillhouse Avenue 111", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Wednesday": [ @@ -203215,7 +451405,7 @@ "19:30", "20:45", "HLH17 111 - 17 Hillhouse Avenue 111", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -203227,14 +451417,111 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84544\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84544/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "Prerequisites: physics and quantum mechanics\/physical chemistry courses for physical science and engineering majors, or by permission of instructor.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987971782684326, + 0.9979609251022339, + 0.998450517654419, + 0.9945389628410339 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986973404884338, + 0.9974888563156128, + 0.9860931038856506, + 0.9989250302314758 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998875081539154, + 0.9989246726036072, + 0.997117280960083, + 0.9988704323768616, + 0.9977026581764221, + 0.9989120960235596, + 0.9988541603088379 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 0.9333333333333333, + "final_counts": { + "POSITIVE": 14, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9333333333333333, + "NEGATIVE": 0.06666666666666667 + } + } + }, + { + "season_code": "202301", + "requirements": "Prerequisites: physics and quantum mechanics/physical chemistry courses for physical science and engineering majors, or by permission of instructor.", "description": "Introduction to concepts of advanced x-ray and electron-based techniques used for understanding the electronic, structural, and chemical behavior of materials. Students learn from world-leading experts on fundamentals and practical applications of various diffraction, spectroscopy, and microscopy methods. Course highlights the use of synchrotrons in practical experiments.", "short_title": "Advanced Synchrotron Techniqu...", "title": "Advanced Synchrotron Techniques and Electron Spectroscopy of Materials", @@ -203271,7 +451558,7 @@ "13:30", "15:20", "BCT 408A - Becton Center 408A", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ] }, @@ -203287,10 +451574,93 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83386\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83386/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.980558454990387, + 0.9988019466400146, + 0.9935812950134277 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988067150115967, + 0.998853325843811, + 0.9988487958908081, + 0.9988963603973389 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998740017414093, + 0.9984889030456543 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 9 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -203329,7 +451699,7 @@ "16:00", "17:15", "HLH17 05 - 17 Hillhouse Avenue 05", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Wednesday": [ @@ -203337,7 +451707,7 @@ "16:00", "17:15", "HLH17 05 - 17 Hillhouse Avenue 05", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -203351,10 +451721,87 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84547\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84547/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989162683486938, + 0.9983019828796387 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989301562309265, + 0.9987325072288513 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987786412239075, + 0.9987937211990356 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 6 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -203392,7 +451839,7 @@ "11:35", "12:50", "WTS A74 - Watson Center 60 Sachem Street A74", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -203400,7 +451847,7 @@ "11:35", "12:50", "WTS A74 - Watson Center 60 Sachem Street A74", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -203416,15 +451863,100 @@ "classnotes": "", "final_exam": "Saturday, May 6, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84549\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84549/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9962852001190186, + 0.9984508752822876, + 0.9988389611244202 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9984775185585022, + 0.9988278746604919, + 0.999288022518158 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9987722039222717, + 0.9988266825675964, + 0.9989272952079773 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 0.7777777777777778, + "final_counts": { + "POSITIVE": 7, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.7777777777777778, + "NEGATIVE": 0.2222222222222222 + } + } }, { "season_code": "202301", "requirements": "Permission of adviser and director of undergraduate studies is required. Students are required to attend a 75-minute section meeting once per week.", - "description": "Faculty-supervised one- or two-person projects with emphasis on research (experiment, simulation, or theory), engineering design, or tutorial study.\u00a0Students are expected to consult the course instructor, director of undergraduate studies, and\/or appropriate faculty members to discuss ideas and suggestions for topics. Focus on development of professional skills such as writing abstracts, prospectuses, and technical reports as well as good practices for preparing posters and delivering presentations.", + "description": "Faculty-supervised one- or two-person projects with emphasis on research (experiment, simulation, or theory), engineering design, or tutorial study.\u00a0Students are expected to consult the course instructor, director of undergraduate studies, and/or appropriate faculty members to discuss ideas and suggestions for topics. Focus on development of professional skills such as writing abstracts, prospectuses, and technical reports as well as good practices for preparing posters and delivering presentations.", "short_title": "Special Projects I", "title": "Special Projects I", "school": "YC", @@ -203456,7 +451988,7 @@ "13:00", "14:15", "WTS A39 - Watson Center 60 Sachem Street A39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -203464,7 +451996,7 @@ "13:00", "14:15", "WTS A39 - Watson Center 60 Sachem Street A39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -203478,15 +452010,114 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84551\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84551/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987228512763977, + 0.9988786578178406, + 0.9988670349121094, + 0.9939529299736023, + 0.997884213924408, + 0.995438277721405 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981484413146973, + 0.9984808564186096, + 0.9989186525344849, + 0.9989290833473206 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987236857414246, + 0.9969244599342346, + 0.9995088577270508, + 0.998796820640564, + 0.9989306330680847, + 0.9985767602920532 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 0.875, + "final_counts": { + "POSITIVE": 14, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + } + } }, { "season_code": "202301", "requirements": "MENG 471 or 472; permission of adviser and director of undergraduate studies.", - "description": "Faculty-supervised one- or two-person projects with emphasis on research (experiment, simulation, or theory), engineering design, or tutorial study. Students are expected to consult the course instructor, director of undergraduate studies, and\/or appropriate faculty members to discuss ideas and suggestions for topics. These courses may be taken at any time during the student's career and may be taken more than once.", + "description": "Faculty-supervised one- or two-person projects with emphasis on research (experiment, simulation, or theory), engineering design, or tutorial study. Students are expected to consult the course instructor, director of undergraduate studies, and/or appropriate faculty members to discuss ideas and suggestions for topics. These courses may be taken at any time during the student's career and may be taken more than once.", "short_title": "Special Projects II", "title": "Special Projects II", "school": "YC", @@ -203521,10 +452152,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84554\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84554/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -203584,10 +452243,123 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84557\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84557/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9979913234710693, + 0.9987298846244812, + 0.998803973197937, + 0.9994983673095703, + 0.9984579086303711, + 0.9986188411712646, + 0.9982069730758667, + 0.9989138841629028 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 6 + }, + "sentiment_distribution": { + "NEGATIVE": 0.25, + "POSITIVE": 0.75 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9909709692001343, + 0.9994252920150757, + 0.9987853169441223, + 0.9905914664268494, + 0.9988600015640259, + 0.9913567304611206, + 0.9978029131889343 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.5714285714285714, + "NEGATIVE": 0.42857142857142855 + }, + "sentiment_overall": [ + "POSITIVE", + 0.5714285714285714 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994650483131409, + 0.9995017051696777, + 0.9986388087272644, + 0.9984910488128662, + 0.9992730021476746, + 0.988088071346283, + 0.9994778037071228, + 0.9985670447349548 + ], + "sentiment_counts": { + "NEGATIVE": 5, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.625, + "POSITIVE": 0.375 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.625 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 0.5652173913043478, + "final_counts": { + "NEGATIVE": 10, + "POSITIVE": 13 + }, + "final_distribution": { + "NEGATIVE": 0.43478260869565216, + "POSITIVE": 0.5652173913043478 + } + } }, { "season_code": "202301", @@ -203625,7 +452397,7 @@ "11:35", "12:50", "WTS B74 - Watson Center 60 Sachem Street B74", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -203633,7 +452405,7 @@ "11:35", "12:50", "WTS B74 - Watson Center 60 Sachem Street B74", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -203649,10 +452421,103 @@ "classnotes": "", "final_exam": "Monday, May 8, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84558\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84558/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986799359321594, + 0.9986501336097717, + 0.9971542358398438, + 0.9961234927177429, + 0.998913049697876 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988012313842773, + 0.9989355206489563, + 0.9973846077919006 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9942479133605957, + 0.9989268183708191, + 0.991313636302948, + 0.9988246560096741, + 0.9985679388046265 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 0.9230769230769231, + "final_counts": { + "POSITIVE": 12, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9230769230769231, + "NEGATIVE": 0.07692307692307693 + } + } }, { "season_code": "202301", @@ -203690,7 +452555,7 @@ "11:35", "12:50", "HLH17 115 - 17 Hillhouse Avenue 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Thursday": [ @@ -203698,7 +452563,7 @@ "11:35", "12:50", "HLH17 115 - 17 Hillhouse Avenue 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -203710,10 +452575,93 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83941\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83941/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988787770271301, + 0.9986740350723267, + 0.9989295601844788 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989222288131714, + 0.9988289475440979, + 0.9986863732337952 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989383816719055, + 0.9989123344421387, + 0.9989250302314758 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 9 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -203762,10 +452710,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85060\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85060/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -203805,10 +452781,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87503\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87503/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -203848,7 +452852,7 @@ "13:15", "16:15", "EVANS 2230 - Edward P Evans Hall 2230", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -203860,10 +452864,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84561\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84561/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -203901,7 +452912,7 @@ "14:45", "17:45", "EVANS 2230 - Edward P Evans Hall 2230", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -203913,10 +452924,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85920\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85920/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -203954,7 +452993,7 @@ "14:45", "17:45", "EVANS 4430 - Edward P Evans Hall 4430", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -203966,10 +453005,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85921\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85921/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -204006,7 +453073,7 @@ "13:00", "16:00", "EVANS 1556 - Edward P Evans Hall 1556", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -204018,10 +453085,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84484\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84484/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -204058,7 +453153,7 @@ "14:40", "16:00", "EVANS 4230 - Edward P Evans Hall 4230", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Thursday": [ @@ -204066,7 +453161,7 @@ "14:40", "16:00", "EVANS 4230 - Edward P Evans Hall 4230", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -204078,15 +453173,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84490\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84490/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "Continuation of MGMT 740a\/ECON 670a.", + "description": "Continuation of MGMT 740a/ECON 670a.", "short_title": "Financial Economics of Climat...", "title": "Financial Economics of Climate and Sustainability", "school": "GS", @@ -204118,7 +453241,7 @@ "11:00", "13:00", "EVANS 2220 - Edward P Evans Hall 2220", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -204130,10 +453253,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87424\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87424/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -204170,7 +453321,7 @@ "13:00", "14:20", "EVANS 4220 - Edward P Evans Hall 4220", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Wednesday": [ @@ -204178,7 +453329,7 @@ "13:00", "14:20", "EVANS 4220 - Edward P Evans Hall 4220", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -204193,7 +453344,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -204231,7 +453410,7 @@ "16:10", "19:10", "EVANS 2200 - Edward P Evans Hall 2200", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -204243,10 +453422,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84499\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84499/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -204283,7 +453490,7 @@ "8:30", "11:30", "EVANS 2230 - Edward P Evans Hall 2230", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -204295,10 +453502,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84504\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84504/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -204335,7 +453549,7 @@ "13:00", "16:00", "EVANS 4230 - Edward P Evans Hall 4230", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -204347,10 +453561,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84509\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84509/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -204387,7 +453629,7 @@ "16:10", "19:10", "EVANS 4210 - Edward P Evans Hall 4210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -204402,12 +453644,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "781-01, Accounting\/Finance Workshop; 781-03, Marketing Workshop; 781-04, Organizations and Management Workshop; 781-05, Operations Workshop.", + "description": "781-01, Accounting/Finance Workshop; 781-03, Marketing Workshop; 781-04, Organizations and Management Workshop; 781-05, Operations Workshop.", "short_title": "PhD Seminar: PhD Seminar: Acc...", "title": "PhD Seminar: PhD Seminar: Accounting", "school": "GS", @@ -204454,12 +453724,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "781-01, Accounting\/Finance Workshop; 781-03, Marketing Workshop; 781-04, Organizations and Management Workshop; 781-05, Operations Workshop.", + "description": "781-01, Accounting/Finance Workshop; 781-03, Marketing Workshop; 781-04, Organizations and Management Workshop; 781-05, Operations Workshop.", "short_title": "PhD Seminar: PhD Seminar: Mar...", "title": "PhD Seminar: PhD Seminar: Marketing", "school": "GS", @@ -204491,7 +453789,7 @@ "11:35", "12:45", "EVANS 4210 - Edward P Evans Hall 4210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -204506,12 +453804,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "781-01, Accounting\/Finance Workshop; 781-03, Marketing Workshop; 781-04, Organizations and Management Workshop; 781-05, Operations Workshop.", + "description": "781-01, Accounting/Finance Workshop; 781-03, Marketing Workshop; 781-04, Organizations and Management Workshop; 781-05, Operations Workshop.", "short_title": "PhD Seminar: PhD Seminar: O & M", "title": "PhD Seminar: PhD Seminar: O & M", "school": "GS", @@ -204543,7 +453869,7 @@ "11:35", "12:50", "EVANS 4210 - Edward P Evans Hall 4210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -204558,12 +453884,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "781-01, Accounting\/Finance Workshop; 781-03, Marketing Workshop; 781-04, Organizations and Management Workshop; 781-05, Operations Workshop.", + "description": "781-01, Accounting/Finance Workshop; 781-03, Marketing Workshop; 781-04, Organizations and Management Workshop; 781-05, Operations Workshop.", "short_title": "PhD Seminar: PhD Seminar: Ope...", "title": "PhD Seminar: PhD Seminar: Operations", "school": "GS", @@ -204595,7 +453949,7 @@ "11:35", "12:50", "EVANS 4230 - Edward P Evans Hall 4230", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -204610,14 +453964,42 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "781-01, Accounting\/Finance Workshop; 781-03, Marketing Workshop; 781-04, Organizations and Management Workshop; 781-05, Operations Workshop.", + "description": "781-01, Accounting/Finance Workshop; 781-03, Marketing Workshop; 781-04, Organizations and Management Workshop; 781-05, Operations Workshop.", "short_title": "PhD Seminar: PhD Seminar:Fina...", - "title": "PhD Seminar: PhD Seminar:Finance\/Accounting", + "title": "PhD Seminar: PhD Seminar:Finance/Accounting", "school": "GS", "credits": 1.0, "extra_info": "ACTIVE", @@ -204647,7 +454029,7 @@ "11:10", "12:30", "EVANS 4200 - Edward P Evans Hall 4200", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -204662,7 +454044,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -204714,7 +454124,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -204751,7 +454189,7 @@ "10:10", "11:20", "EVANS 4210 - Edward P Evans Hall 4210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -204766,7 +454204,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -204803,7 +454269,7 @@ "10:10", "11:20", "EVANS 4210 - Edward P Evans Hall 4210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -204818,7 +454284,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -204855,7 +454349,7 @@ "16:30", "17:30", "EVANS 4220 - Edward P Evans Hall 4220", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -204870,14 +454364,42 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", "description": "782-01, Accounting Doctoral Student Pre-Workshop Seminar; 782-02, Financial Economics Doctoral Student Pre-Workshop Seminar; 782-03, Marketing Doctoral Student Pre-Workshop Seminar; 782-04, Organizations and Management Doctoral Student Pre-Workshop Seminar; 782-05, Operations Doctoral Student Pre-Workshop Seminar.", "short_title": "PhD PreSeminar: PhD PreSemina...", - "title": "PhD PreSeminar: PhD PreSeminar:Finanacia\/ Econ", + "title": "PhD PreSeminar: PhD PreSeminar:Finanacia/ Econ", "school": "GS", "credits": 1.0, "extra_info": "ACTIVE", @@ -204907,7 +454429,7 @@ "9:50", "11:00", "EVANS 4200 - Edward P Evans Hall 4200", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -204919,10 +454441,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84540\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84540/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -204959,7 +454509,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -205002,7 +454580,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -205039,7 +454645,7 @@ "9:25", "10:15", "RKZ 241 - Rosenkranz Hall 241", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ], "Tuesday": [ @@ -205047,7 +454653,7 @@ "9:25", "10:15", "RKZ 241 - Rosenkranz Hall 241", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ], "Wednesday": [ @@ -205055,7 +454661,7 @@ "9:25", "10:15", "RKZ 241 - Rosenkranz Hall 241", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ], "Thursday": [ @@ -205063,7 +454669,7 @@ "9:25", "10:15", "RKZ 241 - Rosenkranz Hall 241", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ], "Friday": [ @@ -205071,7 +454677,7 @@ "9:25", "10:15", "RKZ 241 - Rosenkranz Hall 241", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -205085,10 +454691,99 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84559\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84559/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988897442817688, + 0.9988447427749634, + 0.9988806843757629, + 0.9988246560096741 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988943934440613, + 0.9989035129547119, + 0.9987896084785461 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988759160041809, + 0.9989171028137207, + 0.9986979961395264, + 0.991407036781311 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 0.9090909090909091, + "final_counts": { + "POSITIVE": 10, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + } + } }, { "season_code": "202301", @@ -205125,7 +454820,7 @@ "10:30", "11:20", "RKZ 241 - Rosenkranz Hall 241", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ], "Tuesday": [ @@ -205133,7 +454828,7 @@ "10:30", "11:20", "RKZ 241 - Rosenkranz Hall 241", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ], "Wednesday": [ @@ -205141,7 +454836,7 @@ "10:30", "11:20", "RKZ 241 - Rosenkranz Hall 241", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ], "Thursday": [ @@ -205149,7 +454844,7 @@ "10:30", "11:20", "RKZ 241 - Rosenkranz Hall 241", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ], "Friday": [ @@ -205157,7 +454852,7 @@ "10:30", "11:20", "RKZ 241 - Rosenkranz Hall 241", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -205171,10 +454866,38 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84562\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84562/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -205216,7 +454939,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -205258,7 +455009,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -205297,7 +455076,7 @@ "13:30", "15:20", "RKZ 241 - Rosenkranz Hall 241", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -205313,10 +455092,95 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85110\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85110/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998704195022583, + 0.9987578392028809, + 0.9987120628356934 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989099502563477, + 0.9987390637397766, + 0.9987488985061646, + 0.9985461235046387 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987868666648865, + 0.9988558292388916, + 0.9988013505935669 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 10 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -205354,7 +455218,7 @@ "13:30", "15:20", "HQ C65 - Humanities Quadrangle C65", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -205368,10 +455232,93 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84487\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84487/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988240599632263, + 0.9988573789596558, + 0.9988905787467957 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989227652549744, + 0.9988529682159424, + 0.9989033937454224 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988523721694946, + 0.9988453388214111, + 0.9988436698913574 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 9 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -205411,7 +455358,7 @@ "9:25", "11:15", "LUCE 202 - Luce Hall 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ] }, @@ -205427,10 +455374,103 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84495\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84495/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989238381385803, + 0.9988835453987122, + 0.9988100528717041, + 0.9986996650695801, + 0.9987648725509644 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986563920974731, + 0.9988893866539001, + 0.9988890290260315, + 0.9989286065101624 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989092350006104, + 0.9988270401954651, + 0.9988270401954651, + 0.9988808035850525, + 0.9938933253288269 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 14 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -205470,7 +455510,7 @@ "13:30", "15:20", "WTS B39 - Watson Center 60 Sachem Street B39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -205486,15 +455526,122 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84500\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84500/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "", - "description": "\"Operations research (OR) is the science of decision making. Powerful software for formulating and solving OR models exists in the form of the Microsoft Excel spreadsheet package and its Solver Add-In. Combining, this class offers the opportunity to learn OR models in a class that will emphasize problem formulation, spreadsheet-based solution methods using Excel and resulting insight. The actual mathematics of the various models employed will be de-emphasized in favor of learning how to formulate and solve operations research problems. Much of this will happen in class: this will be one course where you will need your laptops to actively formulate and solve problems in real time during class sessions. Prerequisite is basic algebra and introductory calculus. Should not be taken by students who have already completed or are enrolled in AMTH 431\/S&DS 431 or a more advanced course in optimization, or S&DS 238 or S&DS 240 or a more advanced course in probability.\"", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998842179775238, + 0.998589813709259, + 0.9985631108283997, + 0.9984286427497864, + 0.9988778233528137, + 0.9980494976043701 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989332556724548, + 0.9989296793937683, + 0.9989269375801086, + 0.9987540245056152, + 0.997100293636322, + 0.998879611492157 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989259839057922, + 0.9989350438117981, + 0.9986311793327332, + 0.9988939166069031, + 0.9988688826560974, + 0.9988760352134705, + 0.9957029223442078, + 0.9989074468612671, + 0.9988679885864258 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 21, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 21 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } + }, + { + "season_code": "202301", + "requirements": "", + "description": "\"Operations research (OR) is the science of decision making. Powerful software for formulating and solving OR models exists in the form of the Microsoft Excel spreadsheet package and its Solver Add-In. Combining, this class offers the opportunity to learn OR models in a class that will emphasize problem formulation, spreadsheet-based solution methods using Excel and resulting insight. The actual mathematics of the various models employed will be de-emphasized in favor of learning how to formulate and solve operations research problems. Much of this will happen in class: this will be one course where you will need your laptops to actively formulate and solve problems in real time during class sessions. Prerequisite is basic algebra and introductory calculus. Should not be taken by students who have already completed or are enrolled in AMTH 431/S&DS 431 or a more advanced course in optimization, or S&DS 238 or S&DS 240 or a more advanced course in probability.\"", "short_title": "Intro to Operations Research", "title": "Intro to Operations Research", "school": "MG", @@ -205527,7 +455674,7 @@ "13:00", "14:20", "EVANS 4230 - Edward P Evans Hall 4230", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Wednesday": [ @@ -205535,7 +455682,7 @@ "13:00", "14:20", "EVANS 4230 - Edward P Evans Hall 4230", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -205547,15 +455694,96 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85522\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85522/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "", - "description": "\"The most important questions in business, public policy and beyond often revolve around understanding how some variable X affects some other variable Y. For example: How will demand for my product respond to a change in price? Will advertising increase demand for my product? Does this microfinance project seeking funding from my organization reduce poverty? Should I hold back my child a year before they start school? Will the outcome of the next election affect the value of my stock portfolio? This course will examine when and how data can be used specifically to infer whether there is a causal relationship between two variables. We will emphasize the role of theory in interpreting data and guiding analysis, and explore advanced techniques for inferring causality, including: regression discontinuity designs; matching estimators; instrumental variables; synthetic controls; event studies; heterogeneity modeling; audit studies; randomized controlled trials; natural experiments (and unnatural experiments); and A\/B testing. Lectures will contain some proofs and derivations (only calculus is required), but the emphasis will be on understanding the underlying concepts, and the practical use, implications and limitations of these techniques. Students will work intensively with data, drawing from examples in business and public policy. The goals of the course are for students to become expert consumers and producers of convincing causal empirical analysis.\"\"\"", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9494698643684387, + 0.9987672567367554 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 1 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989172220230103, + 0.9987138509750366 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988849759101868, + 0.9989050626754761, + 0.9985014200210571 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 0.8571428571428571, + "final_counts": { + "NEGATIVE": 1, + "POSITIVE": 6 + }, + "final_distribution": { + "NEGATIVE": 0.14285714285714285, + "POSITIVE": 0.8571428571428571 + } + } + }, + { + "season_code": "202301", + "requirements": "", + "description": "\"The most important questions in business, public policy and beyond often revolve around understanding how some variable X affects some other variable Y. For example: How will demand for my product respond to a change in price? Will advertising increase demand for my product? Does this microfinance project seeking funding from my organization reduce poverty? Should I hold back my child a year before they start school? Will the outcome of the next election affect the value of my stock portfolio? This course will examine when and how data can be used specifically to infer whether there is a causal relationship between two variables. We will emphasize the role of theory in interpreting data and guiding analysis, and explore advanced techniques for inferring causality, including: regression discontinuity designs; matching estimators; instrumental variables; synthetic controls; event studies; heterogeneity modeling; audit studies; randomized controlled trials; natural experiments (and unnatural experiments); and A/B testing. Lectures will contain some proofs and derivations (only calculus is required), but the emphasis will be on understanding the underlying concepts, and the practical use, implications and limitations of these techniques. Students will work intensively with data, drawing from examples in business and public policy. The goals of the course are for students to become expert consumers and producers of convincing causal empirical analysis.\"\"\"", "short_title": "Data Analysis and Causal Infe...", "title": "Data Analysis and Causal Inference", "school": "MG", @@ -205587,7 +455815,7 @@ "14:40", "16:00", "EVANS 4430 - Edward P Evans Hall 4430", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Wednesday": [ @@ -205595,7 +455823,7 @@ "14:40", "16:00", "EVANS 4430 - Edward P Evans Hall 4430", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -205612,7 +455840,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -205649,7 +455905,7 @@ "13:00", "14:20", "EVANS 4210 - Edward P Evans Hall 4210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Wednesday": [ @@ -205657,7 +455913,7 @@ "13:00", "14:20", "EVANS 4210 - Edward P Evans Hall 4210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -205671,10 +455927,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85532\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85532/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -205714,7 +455977,7 @@ "8:30", "9:50", "EVANS 2400 - Edward P Evans Hall 2400", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Wednesday": [ @@ -205722,7 +455985,7 @@ "8:30", "9:50", "EVANS 2400 - Edward P Evans Hall 2400", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -205736,10 +455999,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85533\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85533/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -205782,7 +456052,7 @@ "10:10", "11:30", "EVANS 2400 - Edward P Evans Hall 2400", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Wednesday": [ @@ -205790,7 +456060,7 @@ "10:10", "11:30", "EVANS 2400 - Edward P Evans Hall 2400", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -205804,10 +456074,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85533\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85533/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -205850,7 +456148,7 @@ "13:00", "14:20", "EVANS 2400 - Edward P Evans Hall 2400", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Wednesday": [ @@ -205858,7 +456156,7 @@ "13:00", "14:20", "EVANS 2400 - Edward P Evans Hall 2400", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -205872,10 +456170,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85533\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85533/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -205918,7 +456244,7 @@ "14:40", "16:00", "EVANS 2400 - Edward P Evans Hall 2400", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Wednesday": [ @@ -205926,7 +456252,7 @@ "14:40", "16:00", "EVANS 2400 - Edward P Evans Hall 2400", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -205940,10 +456266,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85533\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85533/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -205986,7 +456319,7 @@ "16:10", "17:30", "EVANS 2400 - Edward P Evans Hall 2400", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Wednesday": [ @@ -205994,7 +456327,7 @@ "16:10", "17:30", "EVANS 2400 - Edward P Evans Hall 2400", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -206008,10 +456341,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85533\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85533/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -206049,7 +456389,7 @@ "14:40", "16:00", "EVANS 2210 - Edward P Evans Hall 2210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Thursday": [ @@ -206057,7 +456397,7 @@ "14:40", "16:00", "EVANS 2210 - Edward P Evans Hall 2210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -206065,17 +456405,45 @@ "areas": [], "flags": [ "GB: Elective", - "PH: Global Health, Development\/Political Economy" + "PH: Global Health, Development/Political Economy" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85448\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85448/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -206112,7 +456480,7 @@ "13:00", "14:20", "EVANS 2230 - Edward P Evans Hall 2230", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Wednesday": [ @@ -206120,7 +456488,7 @@ "13:00", "14:20", "EVANS 2230 - Edward P Evans Hall 2230", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -206134,15 +456502,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85538\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85538/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "Launched in 2008 at the Yale School of Management, the Global Social Entrepreneurship (GSE) course links teams of Yale students with social enterprises based in India. GSE is committed to channeling the skills of Yale students to assist Indian organizations to expand their reach and impact on \"base of the pyramid\" communities. Yale students partner with mission-driven social entrepreneurs (SEs) to focus on a specific management challenge that the student\/SE teams work together to address during the semester. GSE has worked with more than 50 leading and emerging Indian social enterprises engaged in economic development, sustainable energy, women\u2019s empowerment, education, environmental conservation, and affordable housing. The course covers both theoretical and practical issues, including case studies and discussions on social enterprise, developing a theory of change and related social metrics, financing social businesses, the role of civil society in India, framing a consulting engagement, managing team dynamics, etc. The course is taught by Tony Sheldon, Lecturer in the Practice of Management and Executive Director of SOM\u2019s Program on Social Enterprise. The course meets on Wednesday afternoons 2:40 \u2013 5:40 during Fall-2 and Spring-1. All students will travel to India to work on-site with their partner SEs, and for a convening of all the student\/SE project teams, in late January. As with the International Experience and the Global Network Immersion Week, students will be responsible for covering the costs of their round-trip airfare to India and related expenses (such as visa and immunizations). The School will cover in-country travel, hotel and related costs (based on available GSA days). Course enrollment is by application only. Students accepted and enrolled in GSE will allocate 150 of their fall course bidding points towards the course. This is considered a 6 unit course that spans fall-2 and spring-1. It may not be taken as a half semester course. 2 units are applied in fall-2 and 4 units applied in spring-1. If travel to India is cancelled the units will change from 4 to 2 in spring 2022.", + "description": "Launched in 2008 at the Yale School of Management, the Global Social Entrepreneurship (GSE) course links teams of Yale students with social enterprises based in India. GSE is committed to channeling the skills of Yale students to assist Indian organizations to expand their reach and impact on \"base of the pyramid\" communities. Yale students partner with mission-driven social entrepreneurs (SEs) to focus on a specific management challenge that the student/SE teams work together to address during the semester. GSE has worked with more than 50 leading and emerging Indian social enterprises engaged in economic development, sustainable energy, women\u2019s empowerment, education, environmental conservation, and affordable housing. The course covers both theoretical and practical issues, including case studies and discussions on social enterprise, developing a theory of change and related social metrics, financing social businesses, the role of civil society in India, framing a consulting engagement, managing team dynamics, etc. The course is taught by Tony Sheldon, Lecturer in the Practice of Management and Executive Director of SOM\u2019s Program on Social Enterprise. The course meets on Wednesday afternoons 2:40 \u2013 5:40 during Fall-2 and Spring-1. All students will travel to India to work on-site with their partner SEs, and for a convening of all the student/SE project teams, in late January. As with the International Experience and the Global Network Immersion Week, students will be responsible for covering the costs of their round-trip airfare to India and related expenses (such as visa and immunizations). The School will cover in-country travel, hotel and related costs (based on available GSA days). Course enrollment is by application only. Students accepted and enrolled in GSE will allocate 150 of their fall course bidding points towards the course. This is considered a 6 unit course that spans fall-2 and spring-1. It may not be taken as a half semester course. 2 units are applied in fall-2 and 4 units applied in spring-1. If travel to India is cancelled the units will change from 4 to 2 in spring 2022.", "short_title": "GlblSocialEntrprneurship:India", "title": "GlblSocialEntrprneurship:India", "school": "MG", @@ -206174,7 +456570,7 @@ "14:40", "17:40", "EVANS 4410 - Edward P Evans Hall 4410", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -206186,10 +456582,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85086\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85086/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -206229,7 +456653,7 @@ "14:40", "17:40", "EVANS 4220 - Edward P Evans Hall 4220", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -206243,10 +456667,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85539\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85539/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -206283,7 +456735,7 @@ "10:10", "11:30", "EVANS 2210 - Edward P Evans Hall 2210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Wednesday": [ @@ -206291,7 +456743,7 @@ "10:10", "11:30", "EVANS 2210 - Edward P Evans Hall 2210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -206308,7 +456760,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -206345,7 +456825,7 @@ "13:00", "14:20", "EVANS 2210 - Edward P Evans Hall 2210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Wednesday": [ @@ -206353,7 +456833,7 @@ "13:00", "14:20", "EVANS 2210 - Edward P Evans Hall 2210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -206370,7 +456850,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -206407,7 +456915,7 @@ "8:30", "9:50", "EVANS 4430 - Edward P Evans Hall 4430", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Wednesday": [ @@ -206415,7 +456923,7 @@ "8:30", "9:50", "EVANS 4430 - Edward P Evans Hall 4430", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -206432,7 +456940,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -206469,7 +457005,7 @@ "14:40", "16:00", "EVANS 2230 - Edward P Evans Hall 2230", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Wednesday": [ @@ -206477,7 +457013,7 @@ "14:40", "16:00", "EVANS 2230 - Edward P Evans Hall 2230", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -206491,10 +457027,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85543\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85543/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -206532,7 +457096,7 @@ "14:40", "16:00", "EVANS 4410 - Edward P Evans Hall 4410", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Thursday": [ @@ -206540,7 +457104,7 @@ "14:40", "16:00", "EVANS 4410 - Edward P Evans Hall 4410", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -206552,10 +457116,111 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84505\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84505/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9976451992988586, + 0.973828136920929, + 0.9989235997200012, + 0.9988378882408142, + 0.9971725940704346, + 0.9845535755157471 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9962725639343262, + 0.9985054731369019, + 0.9987927675247192, + 0.9988968372344971, + 0.9987930059432983, + 0.9975812435150146 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 5 + }, + "sentiment_distribution": { + "NEGATIVE": 0.16666666666666666, + "POSITIVE": 0.8333333333333334 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987951517105103, + 0.998917818069458, + 0.9988201260566711, + 0.9194791913032532, + 0.9988594055175781 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 0.9411764705882353, + "final_counts": { + "POSITIVE": 16, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9411764705882353, + "NEGATIVE": 0.058823529411764705 + } + } }, { "season_code": "202301", @@ -206593,7 +457258,7 @@ "16:10", "17:30", "EVANS 4410 - Edward P Evans Hall 4410", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Thursday": [ @@ -206601,7 +457266,7 @@ "16:10", "17:30", "EVANS 4410 - Edward P Evans Hall 4410", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -206613,10 +457278,147 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84510\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84510/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9958156943321228, + 0.9989086389541626, + 0.9988647699356079, + 0.9988584518432617, + 0.9988827109336853, + 0.9988993406295776, + 0.9988273978233337, + 0.9987751841545105, + 0.9987151622772217, + 0.9987083673477173, + 0.998838484287262 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9952711462974548, + 0.9988067150115967, + 0.9988645315170288, + 0.998789370059967, + 0.9988219141960144, + 0.9988366961479187, + 0.9989142417907715, + 0.9988413453102112, + 0.9988942742347717, + 0.9988701939582825, + 0.9988081455230713, + 0.9988906979560852 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 11 + }, + "sentiment_distribution": { + "NEGATIVE": 0.08333333333333333, + "POSITIVE": 0.9166666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9166666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9995114803314209, + 0.9988541603088379, + 0.9988189339637756, + 0.9989336133003235, + 0.9989204406738281, + 0.9989297986030579, + 0.9985462427139282, + 0.9988973140716553, + 0.9982529282569885, + 0.9985508322715759, + 0.9989338517189026, + 0.9988347887992859 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 11 + }, + "sentiment_distribution": { + "NEGATIVE": 0.08333333333333333, + "POSITIVE": 0.9166666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9166666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 33, + "final_proportion": 0.9428571428571428, + "final_counts": { + "POSITIVE": 33, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9428571428571428, + "NEGATIVE": 0.05714285714285714 + } + } }, { "season_code": "202301", @@ -206653,7 +457455,7 @@ "16:10", "17:30", "EVANS 2410 - Edward P Evans Hall 2410", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Wednesday": [ @@ -206661,7 +457463,7 @@ "16:10", "17:30", "EVANS 2410 - Edward P Evans Hall 2410", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -206675,10 +457477,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85544\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85544/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -206715,7 +457545,7 @@ "8:30", "11:30", "EVANS 2200 - Edward P Evans Hall 2200", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -206729,10 +457559,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85545\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85545/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -206769,7 +457627,7 @@ "13:00", "16:00", "EVANS 2230 - Edward P Evans Hall 2230", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -206783,10 +457641,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85545\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85545/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -206823,7 +457709,7 @@ "13:00", "14:20", "EVANS 4430 - Edward P Evans Hall 4430", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Thursday": [ @@ -206831,7 +457717,7 @@ "13:00", "14:20", "EVANS 4430 - Edward P Evans Hall 4430", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -206843,10 +457729,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85547\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85547/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -206883,7 +457797,7 @@ "8:30", "9:50", "EVANS 4430 - Edward P Evans Hall 4430", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Thursday": [ @@ -206891,7 +457805,7 @@ "8:30", "9:50", "EVANS 4430 - Edward P Evans Hall 4430", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -206903,10 +457817,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85548\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85548/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -206943,7 +457885,7 @@ "10:10", "11:30", "EVANS 4430 - Edward P Evans Hall 4430", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Thursday": [ @@ -206951,7 +457893,7 @@ "10:10", "11:30", "EVANS 4430 - Edward P Evans Hall 4430", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -206963,10 +457905,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85548\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85548/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -207003,7 +457973,7 @@ "10:10", "11:30", "EVANS 4220 - Edward P Evans Hall 4220", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Thursday": [ @@ -207011,7 +457981,7 @@ "10:10", "11:30", "EVANS 4220 - Edward P Evans Hall 4220", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -207028,7 +457998,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -207065,7 +458063,7 @@ "13:00", "14:20", "EVANS 4220 - Edward P Evans Hall 4220", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Thursday": [ @@ -207073,7 +458071,7 @@ "13:00", "14:20", "EVANS 4220 - Edward P Evans Hall 4220", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -207090,7 +458088,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -207127,7 +458153,7 @@ "10:10", "11:30", "EVANS 4410 - Edward P Evans Hall 4410", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Thursday": [ @@ -207135,7 +458161,7 @@ "10:10", "11:30", "EVANS 4410 - Edward P Evans Hall 4410", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -207147,10 +458173,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85552\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85552/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -207187,7 +458241,7 @@ "13:00", "14:20", "EVANS 4410 - Edward P Evans Hall 4410", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Thursday": [ @@ -207195,7 +458249,7 @@ "13:00", "14:20", "EVANS 4410 - Edward P Evans Hall 4410", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -207209,10 +458263,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85552\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85552/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -207249,7 +458331,7 @@ "10:10", "11:30", "EVANS 4430 - Edward P Evans Hall 4430", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Wednesday": [ @@ -207257,7 +458339,7 @@ "10:10", "11:30", "EVANS 4430 - Edward P Evans Hall 4430", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -207269,10 +458351,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85554\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85554/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -207309,7 +458419,7 @@ "13:00", "14:20", "EVANS 4430 - Edward P Evans Hall 4430", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Wednesday": [ @@ -207317,7 +458427,7 @@ "13:00", "14:20", "EVANS 4430 - Edward P Evans Hall 4430", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -207329,15 +458439,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85554\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85554/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "\"Product management addresses the design and marketing of new products that solve problems consumers are willing to pay for. This course focuses on technology-driven products in B2C settings. Traditionally this referred to digital products (e.g., software apps), but increasingly includes physical products (e.g., electric vehicles). We will emphasize use of quantitative methods to analyze consumer feedback and product usage data to inform PM decisions. We will cover specific PM issues across startup-stage, growth-stage, and enterprise-stage firms. Examples include how startups can achieve product-market fit, convert consumer needs to MVPs, and assess traction and when to pivot; how growth-stage firms can prioritize features, balance competing strategic objectives, and develop channels that scale to new markets; and how enterprise firms can conduct systematic product innovation and optimize products at scale. The course will provide hands-on opportunities to apply course material on real PM problems from leading technology firms. We will accordingly cover technical skills required of PMs, including basics of technology-driven products (e.g., the software stack and modern cloud ecosystem); the interplay with design, UI\/UX, and product marketing; and how to develop statistical hypotheses and conduct A\/B tests.\"", + "description": "\"Product management addresses the design and marketing of new products that solve problems consumers are willing to pay for. This course focuses on technology-driven products in B2C settings. Traditionally this referred to digital products (e.g., software apps), but increasingly includes physical products (e.g., electric vehicles). We will emphasize use of quantitative methods to analyze consumer feedback and product usage data to inform PM decisions. We will cover specific PM issues across startup-stage, growth-stage, and enterprise-stage firms. Examples include how startups can achieve product-market fit, convert consumer needs to MVPs, and assess traction and when to pivot; how growth-stage firms can prioritize features, balance competing strategic objectives, and develop channels that scale to new markets; and how enterprise firms can conduct systematic product innovation and optimize products at scale. The course will provide hands-on opportunities to apply course material on real PM problems from leading technology firms. We will accordingly cover technical skills required of PMs, including basics of technology-driven products (e.g., the software stack and modern cloud ecosystem); the interplay with design, UI/UX, and product marketing; and how to develop statistical hypotheses and conduct A/B tests.\"", "short_title": "Product Management", "title": "Product Management", "school": "MG", @@ -207369,7 +458507,7 @@ "14:40", "16:00", "EVANS 4400 - Edward P Evans Hall 4400", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Wednesday": [ @@ -207377,7 +458515,7 @@ "14:40", "16:00", "EVANS 4400 - Edward P Evans Hall 4400", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -207389,15 +458527,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85556\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85556/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "\"Product management addresses the design and marketing of new products that solve problems consumers are willing to pay for. This course focuses on technology-driven products in B2C settings. Traditionally this referred to digital products (e.g., software apps), but increasingly includes physical products (e.g., electric vehicles). We will emphasize use of quantitative methods to analyze consumer feedback and product usage data to inform PM decisions. We will cover specific PM issues across startup-stage, growth-stage, and enterprise-stage firms. Examples include how startups can achieve product-market fit, convert consumer needs to MVPs, and assess traction and when to pivot; how growth-stage firms can prioritize features, balance competing strategic objectives, and develop channels that scale to new markets; and how enterprise firms can conduct systematic product innovation and optimize products at scale. The course will provide hands-on opportunities to apply course material on real PM problems from leading technology firms. We will accordingly cover technical skills required of PMs, including basics of technology-driven products (e.g., the software stack and modern cloud ecosystem); the interplay with design, UI\/UX, and product marketing; and how to develop statistical hypotheses and conduct A\/B tests.\"", + "description": "\"Product management addresses the design and marketing of new products that solve problems consumers are willing to pay for. This course focuses on technology-driven products in B2C settings. Traditionally this referred to digital products (e.g., software apps), but increasingly includes physical products (e.g., electric vehicles). We will emphasize use of quantitative methods to analyze consumer feedback and product usage data to inform PM decisions. We will cover specific PM issues across startup-stage, growth-stage, and enterprise-stage firms. Examples include how startups can achieve product-market fit, convert consumer needs to MVPs, and assess traction and when to pivot; how growth-stage firms can prioritize features, balance competing strategic objectives, and develop channels that scale to new markets; and how enterprise firms can conduct systematic product innovation and optimize products at scale. The course will provide hands-on opportunities to apply course material on real PM problems from leading technology firms. We will accordingly cover technical skills required of PMs, including basics of technology-driven products (e.g., the software stack and modern cloud ecosystem); the interplay with design, UI/UX, and product marketing; and how to develop statistical hypotheses and conduct A/B tests.\"", "short_title": "Product Management", "title": "Product Management", "school": "MG", @@ -207429,7 +458595,7 @@ "16:10", "17:30", "EVANS 4400 - Edward P Evans Hall 4400", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Wednesday": [ @@ -207437,7 +458603,7 @@ "16:10", "17:30", "EVANS 4400 - Edward P Evans Hall 4400", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -207449,10 +458615,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85556\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85556/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -207490,7 +458684,7 @@ "10:10", "11:30", "EVANS 2230 - Edward P Evans Hall 2230", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Thursday": [ @@ -207498,7 +458692,7 @@ "10:10", "11:30", "EVANS 2230 - Edward P Evans Hall 2230", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -207512,10 +458706,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85054\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85054/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -207552,7 +458774,7 @@ "14:40", "16:00", "EVANS 4420 - Edward P Evans Hall 4420", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Thursday": [ @@ -207560,7 +458782,7 @@ "14:40", "16:00", "EVANS 4420 - Edward P Evans Hall 4420", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -207574,10 +458796,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85558\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85558/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -207614,7 +458864,7 @@ "16:10", "17:30", "EVANS 4420 - Edward P Evans Hall 4420", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Thursday": [ @@ -207622,7 +458872,7 @@ "16:10", "17:30", "EVANS 4420 - Edward P Evans Hall 4420", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -207636,10 +458886,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85558\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85558/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -207676,7 +458954,7 @@ "10:10", "11:30", "EVANS 4210 - Edward P Evans Hall 4210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Wednesday": [ @@ -207684,7 +458962,7 @@ "10:10", "11:30", "EVANS 4210 - Edward P Evans Hall 4210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -207701,7 +458979,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -207739,7 +459045,7 @@ "8:30", "9:50", "EVANS 4420 - Edward P Evans Hall 4420", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Wednesday": [ @@ -207747,7 +459053,7 @@ "8:30", "9:50", "EVANS 4420 - Edward P Evans Hall 4420", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -207761,15 +459067,156 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84515\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84515/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "", - "description": "This course provides the opportunity to examine, through a set of case studies, key issues related to managing social enterprise organizations. Following initial content reviewing perspectives on the trend of social enterprise, topics covered include: choosing the right organizational legal form, managing competing or conflicting goals, tools for double and triple bottom line decision making, calculating a SROI (social return on investment), the challenge of integrating interdisciplinary human resources, raising capital at different stages of the organizational lifecycle, scaling a social innovation\/ product, and exits.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989239573478699, + 0.9988943934440613, + 0.9986760020256042, + 0.9986478686332703, + 0.9988638162612915, + 0.9988273978233337, + 0.9989124536514282, + 0.9988957643508911, + 0.9986059069633484, + 0.9981929659843445, + 0.9968010187149048, + 0.9985886216163635 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983617663383484, + 0.9988995790481567, + 0.9988507032394409, + 0.9989191293716431, + 0.998933732509613, + 0.9978492259979248, + 0.9988693594932556, + 0.9987358450889587, + 0.9972301125526428, + 0.998906135559082, + 0.9989166259765625, + 0.998914361000061, + 0.9988987445831299, + 0.998845100402832 + ], + "sentiment_counts": { + "POSITIVE": 14, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988596439361572, + 0.9985085129737854, + 0.998939573764801, + 0.9945459365844727, + 0.9986563920974731, + 0.9988312125205994, + 0.9989168643951416, + 0.9980168342590332, + 0.998524010181427, + 0.9989140033721924, + 0.9988521337509155, + 0.9988987445831299 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 38, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 38 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } + }, + { + "season_code": "202301", + "requirements": "", + "description": "This course provides the opportunity to examine, through a set of case studies, key issues related to managing social enterprise organizations. Following initial content reviewing perspectives on the trend of social enterprise, topics covered include: choosing the right organizational legal form, managing competing or conflicting goals, tools for double and triple bottom line decision making, calculating a SROI (social return on investment), the challenge of integrating interdisciplinary human resources, raising capital at different stages of the organizational lifecycle, scaling a social innovation/ product, and exits.", "short_title": "Managing Social Enterprises", "title": "Managing Social Enterprises", "school": "MG", @@ -207801,7 +459248,7 @@ "13:00", "14:20", "EVANS 2200 - Edward P Evans Hall 2200", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Thursday": [ @@ -207809,7 +459256,7 @@ "13:00", "14:20", "EVANS 2200 - Edward P Evans Hall 2200", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -207823,10 +459270,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85561\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85561/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -207863,7 +459338,7 @@ "14:40", "17:40", "EVANS 2400 - Edward P Evans Hall 2400", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -207877,10 +459352,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85562\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85562/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -207917,7 +459420,7 @@ "10:10", "11:30", "EVANS 4400 - Edward P Evans Hall 4400", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Thursday": [ @@ -207925,7 +459428,7 @@ "10:10", "11:30", "EVANS 4400 - Edward P Evans Hall 4400", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -207939,10 +459442,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85563\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85563/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -207979,7 +459510,7 @@ "13:00", "14:20", "EVANS 4400 - Edward P Evans Hall 4400", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Thursday": [ @@ -207987,7 +459518,7 @@ "13:00", "14:20", "EVANS 4400 - Edward P Evans Hall 4400", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -208001,17 +459532,45 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85563\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85563/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", "description": "", - "short_title": "LeaderStrategies\/MusPresenters", - "title": "LeaderStrategies\/MusPresenters", + "short_title": "LeaderStrategies/MusPresenters", + "title": "LeaderStrategies/MusPresenters", "school": "MG", "credits": 0.0, "extra_info": "ACTIVE", @@ -208042,7 +459601,7 @@ "18:00", "21:00", "LEIGH 211 - Leigh Hall (435 College) 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/559539" + "https://map.yale.edu/?id=1910#!m/559539" ] ] }, @@ -208057,7 +459616,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -208097,7 +459684,7 @@ "10:10", "11:30", "EVANS 4400 - Edward P Evans Hall 4400", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Wednesday": [ @@ -208105,14 +459692,14 @@ "10:10", "11:30", "EVANS 4400 - Edward P Evans Hall 4400", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, "skills": [], "areas": [], "flags": [ - "PH: Global Health, Development\/Political Economy" + "PH: Global Health, Development/Political Economy" ], "regnotes": "", "rp_attr": "", @@ -208122,7 +459709,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -208162,7 +459777,7 @@ "13:00", "14:20", "EVANS 4400 - Edward P Evans Hall 4400", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Wednesday": [ @@ -208170,14 +459785,14 @@ "13:00", "14:20", "EVANS 4400 - Edward P Evans Hall 4400", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, "skills": [], "areas": [], "flags": [ - "PH: Global Health, Development\/Political Economy" + "PH: Global Health, Development/Political Economy" ], "regnotes": "", "rp_attr": "", @@ -208187,12 +459802,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "Leaders for business and society need an array of competencies, but for leaders who work in global\/multinational environments, there are additional skills, abilities, and knowledge needed to be successful. This course is designed to help students learn about and practice the mindsets and skills necessary to be more flexible, resilient, and confident when working across geographic, interpersonal and cultural contexts. The central focus is to increase students\u2019 personal and interpersonal skills necessary for more effective leadership in global contexts.", + "description": "Leaders for business and society need an array of competencies, but for leaders who work in global/multinational environments, there are additional skills, abilities, and knowledge needed to be successful. This course is designed to help students learn about and practice the mindsets and skills necessary to be more flexible, resilient, and confident when working across geographic, interpersonal and cultural contexts. The central focus is to increase students\u2019 personal and interpersonal skills necessary for more effective leadership in global contexts.", "short_title": "Global Leadership: Increasing...", "title": "Global Leadership: Increasing Personal and Interpersonal Effectiveness", "school": "MG", @@ -208224,24 +459867,52 @@ "16:10", "19:10", "EVANS 2220 - Edward P Evans Hall 2220", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, "skills": [], "areas": [], "flags": [ - "PH: Global Health, Development\/Political Economy" + "PH: Global Health, Development/Political Economy" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85565\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85565/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -208278,7 +459949,7 @@ "10:10", "11:30", "EVANS 2410 - Edward P Evans Hall 2410", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Wednesday": [ @@ -208286,7 +459957,7 @@ "10:10", "11:30", "EVANS 2410 - Edward P Evans Hall 2410", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -208303,7 +459974,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -208340,7 +460039,7 @@ "13:00", "14:20", "EVANS 2410 - Edward P Evans Hall 2410", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Wednesday": [ @@ -208348,7 +460047,7 @@ "13:00", "14:20", "EVANS 2410 - Edward P Evans Hall 2410", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -208365,7 +460064,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -208402,7 +460129,7 @@ "14:40", "16:00", "EVANS 2410 - Edward P Evans Hall 2410", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Wednesday": [ @@ -208410,7 +460137,7 @@ "14:40", "16:00", "EVANS 2410 - Edward P Evans Hall 2410", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -208427,7 +460154,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -208466,7 +460221,7 @@ "10:00", "11:50", "CO47 106B - 47 College Street (CLP) 106B", - "https:\/\/map.yale.edu\/?id=1910#!m\/559997" + "https://map.yale.edu/?id=1910#!m/559997" ] ] }, @@ -208478,15 +460233,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85465\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85465/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "The purpose of this course is to provide full-time Yale SOM students with a mechanism to work on their start-up ventures for credit, applying principles derived from their other coursework, particularly the integrated core curriculum. Students in this course articulate milestones for their ventures and work with faculty, staff, and mentors to meet those milestones. Generally, the course employs \"lean\" methodology. Admission to the course is restricted to students in a full time program at Yale SOM who have formed a venture prior to the beginning of the class. Admission is by application only and is limited to Yale SOM students and joint degree students. To apply for Fall 2021, please fill out the application at: https:\/\/forms.gle\/Eow8V5JDDMWzErpx9 and provide all relevant supplementary documents. Applications are due by 11:59PM on Wednesday, July 28, 2021, and students will be notified of admission into the class by 8\/4\/2021. No bid points will be applied to this course. If you have any questions, please contact Jennifer McFadden, Lecturer and Associate Director of Entrepreneurial Programs at jennifer.mcfadden@yale.edu.", + "description": "The purpose of this course is to provide full-time Yale SOM students with a mechanism to work on their start-up ventures for credit, applying principles derived from their other coursework, particularly the integrated core curriculum. Students in this course articulate milestones for their ventures and work with faculty, staff, and mentors to meet those milestones. Generally, the course employs \"lean\" methodology. Admission to the course is restricted to students in a full time program at Yale SOM who have formed a venture prior to the beginning of the class. Admission is by application only and is limited to Yale SOM students and joint degree students. To apply for Fall 2021, please fill out the application at: https://forms.gle/Eow8V5JDDMWzErpx9 and provide all relevant supplementary documents. Applications are due by 11:59PM on Wednesday, July 28, 2021, and students will be notified of admission into the class by 8/4/2021. No bid points will be applied to this course. If you have any questions, please contact Jennifer McFadden, Lecturer and Associate Director of Entrepreneurial Programs at jennifer.mcfadden@yale.edu.", "short_title": "Start-up Founder Practicum", "title": "Start-up Founder Practicum", "school": "MG", @@ -208518,7 +460301,7 @@ "11:40", "12:50", "EVANS 2230 - Edward P Evans Hall 2230", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -208533,12 +460316,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This 6-credit, project-based course gives students exposure to some of the complex questions and challenges on the minds of top marketing executives today. In this experiential learning course, each small group of students will be paired with a leading corporation and will work alongside experienced faculty and advisors to tackle a current business challenge. This course applies theories in Behavioral Science to help uncover the drivers of consumers\u2019 beliefs and motivations. These insights will then be used to meet the real-world marketing challenge and results will be presented to high-level managers within the participating firm. Students will learn how to go from problem to solution in real-world situations. Each five-member student team will meet at least once per week as a group, and will attend weekly faculty advising meetings. Approximately 10 mandatory lectures \/ course events will take place on Wednesdays from 5:45-7:15PM EST, dates TBC. This course is by application only; there are no bid points assigned. See YCCI site for more information: https:\/\/som.yale.edu\/faculty-research-centers\/centers-initiatives\/center-for-customer-insights\/discovery-projects", + "description": "This 6-credit, project-based course gives students exposure to some of the complex questions and challenges on the minds of top marketing executives today. In this experiential learning course, each small group of students will be paired with a leading corporation and will work alongside experienced faculty and advisors to tackle a current business challenge. This course applies theories in Behavioral Science to help uncover the drivers of consumers\u2019 beliefs and motivations. These insights will then be used to meet the real-world marketing challenge and results will be presented to high-level managers within the participating firm. Students will learn how to go from problem to solution in real-world situations. Each five-member student team will meet at least once per week as a group, and will attend weekly faculty advising meetings. Approximately 10 mandatory lectures / course events will take place on Wednesdays from 5:45-7:15PM EST, dates TBC. This course is by application only; there are no bid points assigned. See YCCI site for more information: https://som.yale.edu/faculty-research-centers/centers-initiatives/center-for-customer-insights/discovery-projects", "short_title": "CustomerInsights&Applications", "title": "CustomerInsights&Applications", "school": "MG", @@ -208576,7 +460387,7 @@ "17:45", "19:15", "EVANS 4400 - Edward P Evans Hall 4400", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -208588,15 +460399,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85570\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85570/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "\"The course will give students a broad and practical understanding of identifying unmet medical needs and developing a business plan for new ventures in healthcare and medicine, including healthcare delivery, healthcare IT, digital health, medical devices, and surgical techniques. Students will learn how to assess market opportunities, identify the patient population, build interdisciplinary teams, and create a business strategy in any area of healthcare. The course will enable students to apply course lessons to real-world settings. Students will work both in the class and the hospital in small teams from the perspective of a start-up company to clearly define a business strategy for a new venture. Exercises will include interviewing potential customers within the healthcare community to gain a broad understanding of user needs and conclude with presenting your new venture to the class. The course is designed for a diverse student body, including management, science, law, public health, medicine, and others. To be clear, this class is an academic exercise, and no ownership of a venture is implied from participation. Students accepted and enrolled will allocate 50 course bidding points. If interested, students should apply by the deadline, Friday, December 3, 2021, at 5 pm. Students will be notified of their admittance into class by Friday, December 17, 2021. Application: http:\/\/bit.ly\/MGT657application"", + "description": "\"The course will give students a broad and practical understanding of identifying unmet medical needs and developing a business plan for new ventures in healthcare and medicine, including healthcare delivery, healthcare IT, digital health, medical devices, and surgical techniques. Students will learn how to assess market opportunities, identify the patient population, build interdisciplinary teams, and create a business strategy in any area of healthcare. The course will enable students to apply course lessons to real-world settings. Students will work both in the class and the hospital in small teams from the perspective of a start-up company to clearly define a business strategy for a new venture. Exercises will include interviewing potential customers within the healthcare community to gain a broad understanding of user needs and conclude with presenting your new venture to the class. The course is designed for a diverse student body, including management, science, law, public health, medicine, and others. To be clear, this class is an academic exercise, and no ownership of a venture is implied from participation. Students accepted and enrolled will allocate 50 course bidding points. If interested, students should apply by the deadline, Friday, December 3, 2021, at 5 pm. Students will be notified of their admittance into class by Friday, December 17, 2021. Application: http://bit.ly/MGT657application"", "short_title": "Creating Healthcare and Life ...", "title": "Creating Healthcare and Life Science Ventures", "school": "MG", @@ -208631,7 +460470,7 @@ "16:10", "19:10", "EVANS 4200 - Edward P Evans Hall 4200", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -208643,15 +460482,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85571\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85571/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "\"Trust in science among the public is at a recent-historic low, and there are powerful forces working to keep it that way. If experts do not actively engage in the information landscape, their work risks being undone or lost. If they interact in the wrong ways, they could end up only contributing more to the chaos and division that currently characterize the information landscape. Opting out is not an option; we all have public faces now, and the question is how best to develop and utilize them. Given the state of division and distrust that threaten science, it should likely be among the aspirations of every graduate with an interest in healthcare management, science, medicine, and\/or public health to have some part in shaping narratives that promote health and fact-based discourse over angry, divisive stagnation. This course invites students to study ways in which it can be done, and to reflect on their own potential, and to try out different techniques and different platforms\u2014to begin to find their public voice. To see what works for some messages and some communicators, and what fails, and why. The course will introduce and study the increasingly broad array of tools to engage in public discourse, to reach people outside of their immediate circles of professional contacts, and to influence the lives of many. It is predicated on the idea that science cannot be conceived as a system by which knowledge emanates outward (much less downward) from academia, or it will cease to reach people and to affect the world, but only exacerbate distrust and claims of elitism. Rather science can only exist as an active process of communication between researchers and the public. This is how trust is built and the learning process is most effective, as a mutual, shared endeavor. This is a widely held conception of science, and yet the actual methods of such engagement are overlooked or ignored by many in the health sciences. This course is not prescriptive, but is meant to engage critically with modes of communication and shaping discourse. The course will equip students to critically analyze emerging methods of health-oriented communication. It will offer a survey of many approaches wherein students will develop an understanding of the canonical paths to writing for large audiences (op-eds, long-form journalism)\u2014as well as explore how narratives emerge over time in much smaller and more personal scales. We will study the role that experts play in creating media on their own platforms and by working with media outlets as either sources or contributors, consultants or editors or publishers. It is critical that not all experts communicate in the same styles and on the same platforms. Writing an op-ed in The New York Times is valuable, for example, but the ability to do that is just one tool in what needs to be an arsenal of ways of reaching people across cultural, socioeconomic, ideological, intellectual, and educational backgrounds.\"\"\"", + "description": "\"Trust in science among the public is at a recent-historic low, and there are powerful forces working to keep it that way. If experts do not actively engage in the information landscape, their work risks being undone or lost. If they interact in the wrong ways, they could end up only contributing more to the chaos and division that currently characterize the information landscape. Opting out is not an option; we all have public faces now, and the question is how best to develop and utilize them. Given the state of division and distrust that threaten science, it should likely be among the aspirations of every graduate with an interest in healthcare management, science, medicine, and/or public health to have some part in shaping narratives that promote health and fact-based discourse over angry, divisive stagnation. This course invites students to study ways in which it can be done, and to reflect on their own potential, and to try out different techniques and different platforms\u2014to begin to find their public voice. To see what works for some messages and some communicators, and what fails, and why. The course will introduce and study the increasingly broad array of tools to engage in public discourse, to reach people outside of their immediate circles of professional contacts, and to influence the lives of many. It is predicated on the idea that science cannot be conceived as a system by which knowledge emanates outward (much less downward) from academia, or it will cease to reach people and to affect the world, but only exacerbate distrust and claims of elitism. Rather science can only exist as an active process of communication between researchers and the public. This is how trust is built and the learning process is most effective, as a mutual, shared endeavor. This is a widely held conception of science, and yet the actual methods of such engagement are overlooked or ignored by many in the health sciences. This course is not prescriptive, but is meant to engage critically with modes of communication and shaping discourse. The course will equip students to critically analyze emerging methods of health-oriented communication. It will offer a survey of many approaches wherein students will develop an understanding of the canonical paths to writing for large audiences (op-eds, long-form journalism)\u2014as well as explore how narratives emerge over time in much smaller and more personal scales. We will study the role that experts play in creating media on their own platforms and by working with media outlets as either sources or contributors, consultants or editors or publishers. It is critical that not all experts communicate in the same styles and on the same platforms. Writing an op-ed in The New York Times is valuable, for example, but the ability to do that is just one tool in what needs to be an arsenal of ways of reaching people across cultural, socioeconomic, ideological, intellectual, and educational backgrounds.\"\"\"", "short_title": "Narratives in Health Media on...", "title": "Narratives in Health Media on the Social Internet", "school": "MG", @@ -208683,7 +460550,7 @@ "16:10", "19:10", "EVANS 4410 - Edward P Evans Hall 4410", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -208700,7 +460567,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -208737,7 +460632,7 @@ "14:40", "16:00", "EVANS 2410 - Edward P Evans Hall 2410", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Wednesday": [ @@ -208745,7 +460640,7 @@ "14:40", "16:00", "EVANS 2410 - Edward P Evans Hall 2410", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -208757,15 +460652,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85573\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85573/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course will provide students with a practical hands-on instruction in the analysis of survey data using the statistical package Stata. It will serve as a bridge between the theory of statistics\/econometrics and the practice of social science research. Throughout the term students will learn to investigate a variety of policy and management issues using data from the U.S. as well as several developing countries. The course assumes no prior knowledge of the statistical package Stata. Given the nature of the course, students must have taken a graduate course providing an introduction to statistics. This course is cross-listed from the Graduate School and will follow the Graduate School academic calendar.", + "description": "This course will provide students with a practical hands-on instruction in the analysis of survey data using the statistical package Stata. It will serve as a bridge between the theory of statistics/econometrics and the practice of social science research. Throughout the term students will learn to investigate a variety of policy and management issues using data from the U.S. as well as several developing countries. The course assumes no prior knowledge of the statistical package Stata. Given the nature of the course, students must have taken a graduate course providing an introduction to statistics. This course is cross-listed from the Graduate School and will follow the Graduate School academic calendar.", "short_title": "Practicum in Data Analysis", "title": "Practicum in Data Analysis", "school": "MG", @@ -208798,7 +460721,7 @@ "16:00", "17:30", "EVANS 2210 - Edward P Evans Hall 2210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Wednesday": [ @@ -208806,7 +460729,7 @@ "16:00", "17:30", "EVANS 2210 - Edward P Evans Hall 2210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -208818,10 +460741,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85071\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85071/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -208858,7 +460809,7 @@ "10:10", "11:30", "EVANS 4220 - Edward P Evans Hall 4220", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Wednesday": [ @@ -208866,7 +460817,7 @@ "10:10", "11:30", "EVANS 4220 - Edward P Evans Hall 4220", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -208880,10 +460831,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85574\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85574/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -208920,7 +460899,7 @@ "16:10", "19:10", "EVANS 4220 - Edward P Evans Hall 4220", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -208932,10 +460911,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85575\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85575/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -208973,7 +460980,7 @@ "8:00", "9:50", "LEPH 115 - Laboratory of EPH 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ] }, @@ -208984,11 +460991,39 @@ "rp_attr": "", "classnotes": "", "final_exam": "", - "course_home_url": "https:\/\/yale.instructure.com\/courses\/85466", + "course_home_url": "https://yale.instructure.com/courses/85466", "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -209026,7 +461061,7 @@ "9:00", "11:50", "S 24 - Sage Hall 24", - "https:\/\/map.yale.edu\/?id=1910#!m\/559547" + "https://map.yale.edu/?id=1910#!m/559547" ] ] }, @@ -209038,15 +461073,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85042\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85042/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "The course is intended to be a practicum, exposing students to real-world tools of the trade as well as the theory underlying them. In place of a textbook, students are provided with approximately 400 pages of actual project documents used for a U.S. wind energy project constructed relatively recently. Through weekly homework assignments, students develop the skills necessary to construct a detailed financial model, largely comparable to what would be used by an investment firm, project developer, or independent power producer. Modeling skills include sizing debt capacity, sensitivity analysis, stochastic forecasting, taxes, and the creation of financial statements. Lectures also provide an introduction to risk management, energy market dynamics, alternative contractual structures, financial structuring, and the core engineering and risks inherent in the most common renewable energy technologies. While cross-listed at the School of Management, it follow the YSE academic calendar. Admission requires an application consisting of a one-paragraph statement of interest. Students who participate in bidding will allocate 50 bidding points towards the course if admitted and enrolled. Application is due November 28, 2020: https:\/\/forms.gle\/YHEM8fWh75f3AwmYA", + "description": "The course is intended to be a practicum, exposing students to real-world tools of the trade as well as the theory underlying them. In place of a textbook, students are provided with approximately 400 pages of actual project documents used for a U.S. wind energy project constructed relatively recently. Through weekly homework assignments, students develop the skills necessary to construct a detailed financial model, largely comparable to what would be used by an investment firm, project developer, or independent power producer. Modeling skills include sizing debt capacity, sensitivity analysis, stochastic forecasting, taxes, and the creation of financial statements. Lectures also provide an introduction to risk management, energy market dynamics, alternative contractual structures, financial structuring, and the core engineering and risks inherent in the most common renewable energy technologies. While cross-listed at the School of Management, it follow the YSE academic calendar. Admission requires an application consisting of a one-paragraph statement of interest. Students who participate in bidding will allocate 50 bidding points towards the course if admitted and enrolled. Application is due November 28, 2020: https://forms.gle/YHEM8fWh75f3AwmYA", "short_title": "RenewableEnergyProjFinance", "title": "RenewableEnergyProjFinance", "school": "MG", @@ -209099,15 +461162,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85004\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85004/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "The intended outcome of this course is to provide you with a \u2018capstone\u2019 experience; consulting to an organization in its early formative years, confronting real-life challenges at the intersections of starting-up, business strategy, and environmental sustainability; all with regular contact with the Founder\/Founding team of an entrepreneurial venture started by recent alumni or current student Founders. The course is designed for you to apply tools and insights gained in this and other courses to a defined project; creating deliverables that will be useful to the entrepreneurs leading their organization. It is designed to help prepare anyone who wishes to become a consultant after graduation; though it is also intended to be useful for those that intend to engage with consultants in their careers post-Yale and may be considering becoming an entrepreneur themselves. In short, there is hopefully something in it for many of you! If interested, please complete the online application form before 9am Wednesday January 12th. We will review applications and inform you of acceptance and project assignments by end of day on Friday January 14th. This course is cross-listed with Environment and will follow their academic calendar. Application: https:\/\/docs.google.com\/forms\/d\/e\/1FAIpQLSf9t0RWaY5v57f7YgbrNgAVKKOGPx8w7xjm3WzWuhkHSTCikA\/viewform", + "description": "The intended outcome of this course is to provide you with a \u2018capstone\u2019 experience; consulting to an organization in its early formative years, confronting real-life challenges at the intersections of starting-up, business strategy, and environmental sustainability; all with regular contact with the Founder/Founding team of an entrepreneurial venture started by recent alumni or current student Founders. The course is designed for you to apply tools and insights gained in this and other courses to a defined project; creating deliverables that will be useful to the entrepreneurs leading their organization. It is designed to help prepare anyone who wishes to become a consultant after graduation; though it is also intended to be useful for those that intend to engage with consultants in their careers post-Yale and may be considering becoming an entrepreneur themselves. In short, there is hopefully something in it for many of you! If interested, please complete the online application form before 9am Wednesday January 12th. We will review applications and inform you of acceptance and project assignments by end of day on Friday January 14th. This course is cross-listed with Environment and will follow their academic calendar. Application: https://docs.google.com/forms/d/e/1FAIpQLSf9t0RWaY5v57f7YgbrNgAVKKOGPx8w7xjm3WzWuhkHSTCikA/viewform", "short_title": "SustBusConsultClinic:Entrprnr...", "title": "SustBusConsultClinic:Entrprnrs: SustBusConsultClinic", "school": "MG", @@ -209140,7 +461231,7 @@ "13:00", "14:20", "KRN 319 - Kroon Hall 319", - "https:\/\/map.yale.edu\/?id=1910#!m\/559995" + "https://map.yale.edu/?id=1910#!m/559995" ] ], "Wednesday": [ @@ -209148,7 +461239,7 @@ "13:00", "14:20", "KRN 319 - Kroon Hall 319", - "https:\/\/map.yale.edu\/?id=1910#!m\/559995" + "https://map.yale.edu/?id=1910#!m/559995" ] ] }, @@ -209160,15 +461251,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85040\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85040/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course teaches students the critical skills in analyzing and working within the healthcare industry. The first portion of the course focuses on the Economic and Financial drivers of the domestic healthcare system, including private and public financing and delivery models. In the latter portion of the course, the students learn about current issues of importance to this $3 trillion dollar industry. The course is part didactic\/part seminar style, with team projects and presentations as a major component of the grade. Open to HCM-MPH students, SOM students and others (with permission of the Professor). Non-SOM students taking a YSOM course will be assessed a fee for copyright charges. The fee is $30.00 for a full semester course and $15.00 for a \u00bd semester course. Students enrolled in either the YSOM course number or the cross-listed course number will be charged.", + "description": "This course teaches students the critical skills in analyzing and working within the healthcare industry. The first portion of the course focuses on the Economic and Financial drivers of the domestic healthcare system, including private and public financing and delivery models. In the latter portion of the course, the students learn about current issues of importance to this $3 trillion dollar industry. The course is part didactic/part seminar style, with team projects and presentations as a major component of the grade. Open to HCM-MPH students, SOM students and others (with permission of the Professor). Non-SOM students taking a YSOM course will be assessed a fee for copyright charges. The fee is $30.00 for a full semester course and $15.00 for a \u00bd semester course. Students enrolled in either the YSOM course number or the cross-listed course number will be charged.", "short_title": "Healthcare Policy, Finance, a...", "title": "Healthcare Policy, Finance, and Economics", "school": "MG", @@ -209200,7 +461319,7 @@ "10:10", "11:30", "EVANS 4200 - Edward P Evans Hall 4200", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Wednesday": [ @@ -209208,7 +461327,7 @@ "10:10", "11:30", "EVANS 4200 - Edward P Evans Hall 4200", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -209220,15 +461339,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85576\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85576/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "Attendance for this course will be virtual for students outside of the MBA\/MD and MBA\/MPH joint degree programs and you will be enrolled as an auditor (no credit) for AY 2021-2022. The Colloquium in Healthcare Leadership brings prominent leaders from public, private, and nonprofit healthcare organizations to campus for candid discussions. You will deepen your understanding of the major trends in healthcare as well as the challenges of being a leader in this space. (The course provides credit (2 School of Management units) in the spring semester for a full-year of attendance. Only students that have been attending fall sessions can enroll in the spring). Thursday Evening Series - 6:30 PM , Beaumont Room, Sterling Hall of Medicine (2nd Floor), 333 Cedar Street http:\/\/som.yale.edu\/programs\/joint-degrees\/medicine\/colloquium-in-healthcare-leadership-thursday-evening-series", + "description": "Attendance for this course will be virtual for students outside of the MBA/MD and MBA/MPH joint degree programs and you will be enrolled as an auditor (no credit) for AY 2021-2022. The Colloquium in Healthcare Leadership brings prominent leaders from public, private, and nonprofit healthcare organizations to campus for candid discussions. You will deepen your understanding of the major trends in healthcare as well as the challenges of being a leader in this space. (The course provides credit (2 School of Management units) in the spring semester for a full-year of attendance. Only students that have been attending fall sessions can enroll in the spring). Thursday Evening Series - 6:30 PM , Beaumont Room, Sterling Hall of Medicine (2nd Floor), 333 Cedar Street http://som.yale.edu/programs/joint-degrees/medicine/colloquium-in-healthcare-leadership-thursday-evening-series", "short_title": "ColloquiumHealthcareLeadership", "title": "ColloquiumHealthcareLeadership", "school": "MG", @@ -209260,7 +461407,7 @@ "18:30", "21:30", "EVANS - EVANS", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -209275,7 +461422,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -209312,7 +461487,7 @@ "18:00", "21:00", "EVANS 4410 - Edward P Evans Hall 4410", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -209324,10 +461499,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85578\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85578/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -209364,7 +461567,7 @@ "14:40", "16:00", "EVANS 4430 - Edward P Evans Hall 4430", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Thursday": [ @@ -209372,7 +461575,7 @@ "14:40", "16:00", "EVANS 4430 - Edward P Evans Hall 4430", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -209384,10 +461587,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85579\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85579/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -209424,7 +461655,7 @@ "16:10", "17:30", "EVANS 4430 - Edward P Evans Hall 4430", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Thursday": [ @@ -209432,7 +461663,7 @@ "16:10", "17:30", "EVANS 4430 - Edward P Evans Hall 4430", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -209444,10 +461675,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85579\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85579/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -209484,7 +461743,7 @@ "10:10", "11:30", "EVANS 2400 - Edward P Evans Hall 2400", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Thursday": [ @@ -209492,7 +461751,7 @@ "10:10", "11:30", "EVANS 2400 - Edward P Evans Hall 2400", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -209504,15 +461763,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85581\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85581/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "\"This course examines the role of financial statement analysis in the evaluation of the firm\u2019s financial performance and the prediction of its future economic condition. Topics covered include fundamental analysis and applications related to credit and equity markets. This course combines both accounting and finance into a practical framework for equity valuation, with an emphasis on the implications for IPO, mergers & acquisitions, and equity investment. The course is designed to provide: Exposure to public sources of financial information used by capital market participants. Skills to critically analyze current financial statements, SEC filings, and other financial information. Exposure to accounting tricks firms play. Skills to predict the future economic condition of a firm. Practice applying financial information in a variety of trading strategies. Prerequisites: Basics of Accounting (MGT 402) is a must Financial Reporting (MGT 871) is highly desirable. Alternatively, you should have some prior training\/experience in accounting. Some exposure to finance (MGT 541 or similar courses) would be very helpful.\"\"\"", + "description": "\"This course examines the role of financial statement analysis in the evaluation of the firm\u2019s financial performance and the prediction of its future economic condition. Topics covered include fundamental analysis and applications related to credit and equity markets. This course combines both accounting and finance into a practical framework for equity valuation, with an emphasis on the implications for IPO, mergers & acquisitions, and equity investment. The course is designed to provide: Exposure to public sources of financial information used by capital market participants. Skills to critically analyze current financial statements, SEC filings, and other financial information. Exposure to accounting tricks firms play. Skills to predict the future economic condition of a firm. Practice applying financial information in a variety of trading strategies. Prerequisites: Basics of Accounting (MGT 402) is a must Financial Reporting (MGT 871) is highly desirable. Alternatively, you should have some prior training/experience in accounting. Some exposure to finance (MGT 541 or similar courses) would be very helpful.\"\"\"", "short_title": "Financial Statement Analysis", "title": "Financial Statement Analysis", "school": "MG", @@ -209544,7 +461831,7 @@ "13:00", "14:20", "EVANS 2400 - Edward P Evans Hall 2400", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Thursday": [ @@ -209552,7 +461839,7 @@ "13:00", "14:20", "EVANS 2400 - Edward P Evans Hall 2400", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -209566,15 +461853,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85582\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85582/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "\"This course examines the role of financial statement analysis in the evaluation of the firm\u2019s financial performance and the prediction of its future economic condition. Topics covered include fundamental analysis and applications related to credit and equity markets. This course combines both accounting and finance into a practical framework for equity valuation, with an emphasis on the implications for IPO, mergers & acquisitions, and equity investment. The course is designed to provide: Exposure to public sources of financial information used by capital market participants. Skills to critically analyze current financial statements, SEC filings, and other financial information. Exposure to accounting tricks firms play. Skills to predict the future economic condition of a firm. Practice applying financial information in a variety of trading strategies. Prerequisites: Basics of Accounting (MGT 402) is a must Financial Reporting (MGT 871) is highly desirable. Alternatively, you should have some prior training\/experience in accounting. Some exposure to finance (MGT 541 or similar courses) would be very helpful.\"\"\"", + "description": "\"This course examines the role of financial statement analysis in the evaluation of the firm\u2019s financial performance and the prediction of its future economic condition. Topics covered include fundamental analysis and applications related to credit and equity markets. This course combines both accounting and finance into a practical framework for equity valuation, with an emphasis on the implications for IPO, mergers & acquisitions, and equity investment. The course is designed to provide: Exposure to public sources of financial information used by capital market participants. Skills to critically analyze current financial statements, SEC filings, and other financial information. Exposure to accounting tricks firms play. Skills to predict the future economic condition of a firm. Practice applying financial information in a variety of trading strategies. Prerequisites: Basics of Accounting (MGT 402) is a must Financial Reporting (MGT 871) is highly desirable. Alternatively, you should have some prior training/experience in accounting. Some exposure to finance (MGT 541 or similar courses) would be very helpful.\"\"\"", "short_title": "Financial Statement Analysis", "title": "Financial Statement Analysis", "school": "MG", @@ -209606,7 +461921,7 @@ "13:00", "14:20", "EVANS 2400 - Edward P Evans Hall 2400", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Thursday": [ @@ -209614,7 +461929,7 @@ "13:00", "14:20", "EVANS 2400 - Edward P Evans Hall 2400", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -209631,12 +461946,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "\"This course examines the role of financial statement analysis in the evaluation of the firm\u2019s financial performance and the prediction of its future economic condition. Topics covered include fundamental analysis and applications related to credit and equity markets. This course combines both accounting and finance into a practical framework for equity valuation, with an emphasis on the implications for IPO, mergers & acquisitions, and equity investment. The course is designed to provide: Exposure to public sources of financial information used by capital market participants. Skills to critically analyze current financial statements, SEC filings, and other financial information. Exposure to accounting tricks firms play. Skills to predict the future economic condition of a firm. Practice applying financial information in a variety of trading strategies. Prerequisites: Basics of Accounting (MGT 402) is a must Financial Reporting (MGT 871) is highly desirable. Alternatively, you should have some prior training\/experience in accounting. Some exposure to finance (MGT 541 or similar courses) would be very helpful.\"\"\"", + "description": "\"This course examines the role of financial statement analysis in the evaluation of the firm\u2019s financial performance and the prediction of its future economic condition. Topics covered include fundamental analysis and applications related to credit and equity markets. This course combines both accounting and finance into a practical framework for equity valuation, with an emphasis on the implications for IPO, mergers & acquisitions, and equity investment. The course is designed to provide: Exposure to public sources of financial information used by capital market participants. Skills to critically analyze current financial statements, SEC filings, and other financial information. Exposure to accounting tricks firms play. Skills to predict the future economic condition of a firm. Practice applying financial information in a variety of trading strategies. Prerequisites: Basics of Accounting (MGT 402) is a must Financial Reporting (MGT 871) is highly desirable. Alternatively, you should have some prior training/experience in accounting. Some exposure to finance (MGT 541 or similar courses) would be very helpful.\"\"\"", "short_title": "Financial Statement Analysis", "title": "Financial Statement Analysis", "school": "MG", @@ -209668,7 +462011,7 @@ "10:10", "11:30", "EVANS 2400 - Edward P Evans Hall 2400", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Thursday": [ @@ -209676,7 +462019,7 @@ "10:10", "11:30", "EVANS 2400 - Edward P Evans Hall 2400", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -209693,7 +462036,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -209730,7 +462101,7 @@ "13:00", "14:20", "EVANS 4200 - Edward P Evans Hall 4200", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Wednesday": [ @@ -209738,7 +462109,7 @@ "13:00", "14:20", "EVANS 4200 - Edward P Evans Hall 4200", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -209750,10 +462121,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85585\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85585/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -209790,7 +462189,7 @@ "14:40", "16:00", "EVANS 4200 - Edward P Evans Hall 4200", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Wednesday": [ @@ -209798,7 +462197,7 @@ "14:40", "16:00", "EVANS 4200 - Edward P Evans Hall 4200", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -209810,10 +462209,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85585\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85585/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -209850,7 +462277,7 @@ "16:10", "17:30", "EVANS 4200 - Edward P Evans Hall 4200", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Wednesday": [ @@ -209858,7 +462285,7 @@ "16:10", "17:30", "EVANS 4200 - Edward P Evans Hall 4200", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -209870,10 +462297,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85585\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85585/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -209910,7 +462365,7 @@ "13:00", "14:20", "EVANS 2200 - Edward P Evans Hall 2200", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Wednesday": [ @@ -209918,7 +462373,7 @@ "13:00", "14:20", "EVANS 2200 - Edward P Evans Hall 2200", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -209932,10 +462387,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85588\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85588/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -209972,7 +462455,7 @@ "10:10", "11:30", "EVANS 2230 - Edward P Evans Hall 2230", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Wednesday": [ @@ -209980,7 +462463,7 @@ "10:10", "11:30", "EVANS 2230 - Edward P Evans Hall 2230", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -209992,10 +462475,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85590\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85590/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -210032,7 +462543,7 @@ "14:40", "16:00", "EVANS 2200 - Edward P Evans Hall 2200", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Wednesday": [ @@ -210040,7 +462551,7 @@ "14:40", "16:00", "EVANS 2200 - Edward P Evans Hall 2200", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -210052,10 +462563,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85588\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85588/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -210092,7 +462631,7 @@ "10:10", "11:30", "EVANS 4230 - Edward P Evans Hall 4230", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Wednesday": [ @@ -210100,7 +462639,7 @@ "10:10", "11:30", "EVANS 4230 - Edward P Evans Hall 4230", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -210117,12 +462656,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "Class is by application, please submit a statement of interest, including relevant experience and course background, to Rhona.ceppos@yale.edu . Accepting applications as seats are available through 12\/15. First round of seats will be offered by Dec 16. Deadline may be extended but only if seats are still available.This lab course features a different theme each spring and provides opportunities for students taking UPED in the Fall (or those coming in without it) to focus in a deeper way on one of the components of IED. Past years themes have included: Charting the Opportunity in Opportunity Zones (Spring 2019) and Rethinking Community Engagement and the Role of Narratives in IED (Spring 2020), Supporting and Scaling Black Owned Businesses (2021) and Infrastructure and Equity (2022). See iedl.yale.edu for more details on prior IEDL deliverables. For Spring 2022, the Lab will focus on the theme \"FUTURE OF WORK\/WORKFORCE DEVELOPMENT\". The course will invite guest speakers to help us think through the current state of knowledge and predictions about the future of work and workforce development with a focus on developing strategies for inclusive economic development. As in previous years, the Lab will provide opportunities for students to engage with key actors in the focal neighborhoods in New Haven, and work on a stakeholder project. The class will also produce Season 5 of the CitySCOPE podcast that gathers key insights from the work we do over the semester as well as a public curriculum shared out in a presentation to local stakeholders within the city and university. Course Objectives: This course aims to a) give students an in depth understanding of a key practice and policy area of Inclusive Economic Development, b) provide an opportunity to learn from leaders in this space nationally and to translate national models to a particular local environment, c) build skills in co-producing a deliverable that meets the needs of a diverse set of city stakeholders to guide inclusive economic development investment. Course Partners: Conversations are in place to coordinate our efforts with the work underway with local stakeholders in nonprofit community and city government.", + "description": "Class is by application, please submit a statement of interest, including relevant experience and course background, to Rhona.ceppos@yale.edu . Accepting applications as seats are available through 12/15. First round of seats will be offered by Dec 16. Deadline may be extended but only if seats are still available.This lab course features a different theme each spring and provides opportunities for students taking UPED in the Fall (or those coming in without it) to focus in a deeper way on one of the components of IED. Past years themes have included: Charting the Opportunity in Opportunity Zones (Spring 2019) and Rethinking Community Engagement and the Role of Narratives in IED (Spring 2020), Supporting and Scaling Black Owned Businesses (2021) and Infrastructure and Equity (2022). See iedl.yale.edu for more details on prior IEDL deliverables. For Spring 2022, the Lab will focus on the theme \"FUTURE OF WORK/WORKFORCE DEVELOPMENT\". The course will invite guest speakers to help us think through the current state of knowledge and predictions about the future of work and workforce development with a focus on developing strategies for inclusive economic development. As in previous years, the Lab will provide opportunities for students to engage with key actors in the focal neighborhoods in New Haven, and work on a stakeholder project. The class will also produce Season 5 of the CitySCOPE podcast that gathers key insights from the work we do over the semester as well as a public curriculum shared out in a presentation to local stakeholders within the city and university. Course Objectives: This course aims to a) give students an in depth understanding of a key practice and policy area of Inclusive Economic Development, b) provide an opportunity to learn from leaders in this space nationally and to translate national models to a particular local environment, c) build skills in co-producing a deliverable that meets the needs of a diverse set of city stakeholders to guide inclusive economic development investment. Course Partners: Conversations are in place to coordinate our efforts with the work underway with local stakeholders in nonprofit community and city government.", "short_title": "Inclusive Economic Developmen...", "title": "Inclusive Economic Development Lab: Opportunity Zones in New Haven", "school": "MG", @@ -210154,7 +462721,7 @@ "10:10", "11:30", "EVANS 4220 - Edward P Evans Hall 4220", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Wednesday": [ @@ -210162,7 +462729,7 @@ "10:10", "11:30", "EVANS 4220 - Edward P Evans Hall 4220", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -210176,10 +462743,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85592\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85592/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -210216,7 +462811,7 @@ "14:40", "17:40", "EVANS 4420 - Edward P Evans Hall 4420", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -210233,7 +462828,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -210270,7 +462893,7 @@ "13:00", "14:20", "EVANS 2230 - Edward P Evans Hall 2230", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Wednesday": [ @@ -210278,7 +462901,7 @@ "13:00", "14:20", "EVANS 2230 - Edward P Evans Hall 2230", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -210295,7 +462918,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -210332,7 +462983,7 @@ "16:10", "17:30", "EVANS 2230 - Edward P Evans Hall 2230", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Wednesday": [ @@ -210340,7 +462991,7 @@ "16:10", "17:30", "EVANS 2230 - Edward P Evans Hall 2230", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -210357,12 +463008,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "Surveys are a critical means of obtaining information about entities of interest, such as customers, employees, voters, students, donors, or research subjects in an experiment. Yale graduates hired by consulting, marketing or non-profit firms, hired by local or federal governments, or starting their own companies are often required to design, evaluate, and\/or implement surveys to obtain information about these entities of interest. The goal of this course is to introduce students to the main principles of survey design and analytics in order to obtain the best quality data: surveys whose answers capture the desired information, are implemented with the correct sampling methodology, and that yield low non-response rates. To this end, the course has three parts: (1) How to write good questions and design an effective survey. We cover, among other topics, when to use open-ended versus closed-ended questions; which types of scales to use (for example, unipolar versus bipolar); the optimal number of items on a scale; the best font and visual display for questions; and how to sequence questions optimally. (2) How to pre-test and how to field surveys to boost response rates. We cover, among other topics, the primary ways to pre-test a survey (expert reviews, focus groups, cognitive interviewing and field pre-tests); in which situations is each method most appropriate; how to craft persuasive messaging to increase response rates; and the optimal number of contacts and types of rewards that maximize response rates. (3) How to assess the appropriateness of each of the four commonly used sampling schemes\u2014simple random sampling, systematic random sampling, stratified random sampling, and clustered random sampling\u2014and how to compute quantities of interest, their margins of error, and their confidence intervals under each of these schemes. We will learn the course concepts with a mixture of lectures and hands-on examples, some of which will use STATA. Assignments, readings, in-class handouts, and lecture notes will be posted on the course website. The course will cover many examples of real-world surveys. These include surveys by market research firms to assess preferences towards products, by human resources managers to study employees, by merging firms to assess the suitability of the mergers, by local governments to research on attitudes on social issues and willingness to pay for services, by political polling firms on voting intentions, and by educational organizations to assess student preferences. Requirements: Basic knowledge of Probability or of Statistics. The course is open to all Yale School of Management students and to all those students that have taken an introductory course in either Probability or Statistics. Course Objectives: The goal of the course is to introduce you to the main principles of survey design and analytics in sufficient depth for you to apply these tools during your post-Yale career.", + "description": "Surveys are a critical means of obtaining information about entities of interest, such as customers, employees, voters, students, donors, or research subjects in an experiment. Yale graduates hired by consulting, marketing or non-profit firms, hired by local or federal governments, or starting their own companies are often required to design, evaluate, and/or implement surveys to obtain information about these entities of interest. The goal of this course is to introduce students to the main principles of survey design and analytics in order to obtain the best quality data: surveys whose answers capture the desired information, are implemented with the correct sampling methodology, and that yield low non-response rates. To this end, the course has three parts: (1) How to write good questions and design an effective survey. We cover, among other topics, when to use open-ended versus closed-ended questions; which types of scales to use (for example, unipolar versus bipolar); the optimal number of items on a scale; the best font and visual display for questions; and how to sequence questions optimally. (2) How to pre-test and how to field surveys to boost response rates. We cover, among other topics, the primary ways to pre-test a survey (expert reviews, focus groups, cognitive interviewing and field pre-tests); in which situations is each method most appropriate; how to craft persuasive messaging to increase response rates; and the optimal number of contacts and types of rewards that maximize response rates. (3) How to assess the appropriateness of each of the four commonly used sampling schemes\u2014simple random sampling, systematic random sampling, stratified random sampling, and clustered random sampling\u2014and how to compute quantities of interest, their margins of error, and their confidence intervals under each of these schemes. We will learn the course concepts with a mixture of lectures and hands-on examples, some of which will use STATA. Assignments, readings, in-class handouts, and lecture notes will be posted on the course website. The course will cover many examples of real-world surveys. These include surveys by market research firms to assess preferences towards products, by human resources managers to study employees, by merging firms to assess the suitability of the mergers, by local governments to research on attitudes on social issues and willingness to pay for services, by political polling firms on voting intentions, and by educational organizations to assess student preferences. Requirements: Basic knowledge of Probability or of Statistics. The course is open to all Yale School of Management students and to all those students that have taken an introductory course in either Probability or Statistics. Course Objectives: The goal of the course is to introduce you to the main principles of survey design and analytics in sufficient depth for you to apply these tools during your post-Yale career.", "short_title": "Leading and Managing Organiza...", "title": "Leading and Managing Organizations", "school": "MG", @@ -210394,7 +463073,7 @@ "14:40", "17:40", "EVANS 4230 - Edward P Evans Hall 4230", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -210409,7 +463088,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -210446,7 +463153,7 @@ "8:30", "9:50", "EVANS 4230 - Edward P Evans Hall 4230", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Thursday": [ @@ -210454,7 +463161,7 @@ "8:30", "9:50", "EVANS 4230 - Edward P Evans Hall 4230", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -210468,10 +463175,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85596\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85596/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -210508,7 +463243,7 @@ "10:10", "11:30", "EVANS 4230 - Edward P Evans Hall 4230", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Thursday": [ @@ -210516,7 +463251,7 @@ "10:10", "11:30", "EVANS 4230 - Edward P Evans Hall 4230", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -210530,10 +463265,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85596\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85596/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -210570,7 +463333,7 @@ "13:00", "14:20", "EVANS 4230 - Edward P Evans Hall 4230", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Thursday": [ @@ -210578,7 +463341,7 @@ "13:00", "14:20", "EVANS 4230 - Edward P Evans Hall 4230", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -210592,10 +463355,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85596\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85596/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -210632,7 +463423,7 @@ "13:00", "14:20", "EVANS 2200 - Edward P Evans Hall 2200", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Wednesday": [ @@ -210640,7 +463431,7 @@ "13:00", "14:20", "EVANS 2200 - Edward P Evans Hall 2200", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -210655,7 +463446,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -210695,7 +463514,7 @@ "10:10", "11:30", "EVANS 2230 - Edward P Evans Hall 2230", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Wednesday": [ @@ -210703,7 +463522,7 @@ "10:10", "11:30", "EVANS 2230 - Edward P Evans Hall 2230", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -210715,10 +463534,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85600\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85600/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -210755,7 +463602,7 @@ "14:40", "16:00", "EVANS 4220 - Edward P Evans Hall 4220", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Wednesday": [ @@ -210763,7 +463610,7 @@ "14:40", "16:00", "EVANS 4220 - Edward P Evans Hall 4220", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -210777,10 +463624,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85601\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85601/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -210817,7 +463692,7 @@ "14:40", "17:40", "EVANS 2200 - Edward P Evans Hall 2200", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -210835,7 +463710,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -210872,7 +463775,7 @@ "8:30", "9:50", "EVANS 4200 - Edward P Evans Hall 4200", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Thursday": [ @@ -210880,7 +463783,7 @@ "8:30", "9:50", "EVANS 4200 - Edward P Evans Hall 4200", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -210895,7 +463798,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -210932,7 +463863,7 @@ "14:40", "16:00", "EVANS 4210 - Edward P Evans Hall 4210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Thursday": [ @@ -210940,7 +463871,7 @@ "14:40", "16:00", "EVANS 4210 - Edward P Evans Hall 4210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -210952,10 +463883,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85604\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85604/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -210992,7 +463930,7 @@ "16:10", "19:10", "EVANS 4410 - Edward P Evans Hall 4410", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -211004,10 +463942,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85605\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85605/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -211044,7 +463989,7 @@ "14:40", "17:40", "EVANS 4420 - Edward P Evans Hall 4420", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -211059,7 +464004,14 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -211099,7 +464051,7 @@ "10:10", "11:30", "EVANS 4400 - Edward P Evans Hall 4400", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Thursday": [ @@ -211107,7 +464059,7 @@ "10:10", "11:30", "EVANS 4400 - Edward P Evans Hall 4400", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -211121,10 +464073,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85609\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85609/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -211164,7 +464144,7 @@ "13:00", "14:20", "EVANS 4400 - Edward P Evans Hall 4400", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Thursday": [ @@ -211172,7 +464152,7 @@ "13:00", "14:20", "EVANS 4400 - Edward P Evans Hall 4400", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -211186,10 +464166,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85609\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85609/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -211229,7 +464216,7 @@ "14:40", "16:00", "EVANS 4400 - Edward P Evans Hall 4400", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Thursday": [ @@ -211237,7 +464224,7 @@ "14:40", "16:00", "EVANS 4400 - Edward P Evans Hall 4400", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -211251,10 +464238,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85609\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85609/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -211291,7 +464306,7 @@ "10:10", "11:30", "EVANS 4200 - Edward P Evans Hall 4200", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Thursday": [ @@ -211299,7 +464314,7 @@ "10:10", "11:30", "EVANS 4200 - Edward P Evans Hall 4200", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -211316,7 +464331,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -211353,7 +464396,7 @@ "13:00", "14:20", "EVANS 4200 - Edward P Evans Hall 4200", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Thursday": [ @@ -211361,7 +464404,7 @@ "13:00", "14:20", "EVANS 4200 - Edward P Evans Hall 4200", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -211378,7 +464421,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -211415,7 +464486,7 @@ "8:30", "9:50", "EVANS 2200 - Edward P Evans Hall 2200", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Wednesday": [ @@ -211423,7 +464494,7 @@ "8:30", "9:50", "EVANS 2200 - Edward P Evans Hall 2200", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -211435,10 +464506,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85614\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85614/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -211475,7 +464574,7 @@ "10:10", "11:30", "EVANS 2200 - Edward P Evans Hall 2200", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Wednesday": [ @@ -211483,7 +464582,7 @@ "10:10", "11:30", "EVANS 2200 - Edward P Evans Hall 2200", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -211495,10 +464594,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85614\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85614/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -211535,7 +464662,7 @@ "13:00", "14:20", "EVANS 2210 - Edward P Evans Hall 2210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Thursday": [ @@ -211543,7 +464670,7 @@ "13:00", "14:20", "EVANS 2210 - Edward P Evans Hall 2210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -211558,7 +464685,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -211598,7 +464753,7 @@ "18:00", "21:00", "EVANS 4420 - Edward P Evans Hall 4420", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -211612,15 +464767,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85617\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85617/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "\"This is a half-semester class on applications of game theory, open to both undergraduates and students from professional schools. We build on the learnings from introductory game theory courses like ECON\/GLBL 159, MGT 822 or Game Theory in the SOM Core. The course aims to introduce important idea and tools from game theory, and use them to answer questions in social sciences, law, and business. For instance, how can we use game theory to design sound environmental policies and formulate environmental treaties? How large should juries be, and should we require unanimous verdicts? Why do bargaining parties sometimes engage in lengthy and costly legal battles? How do sellers decide the best format for an auction to sell a good? When do we see price wars? The topics will include basics of mechanism design, bargaining with incomplete information, dynamic pricing, and applications of repeated games. Prerequisites: Any introductory game theory course like ECON\/GLBL 159 or MGT 822\"", + "description": "\"This is a half-semester class on applications of game theory, open to both undergraduates and students from professional schools. We build on the learnings from introductory game theory courses like ECON/GLBL 159, MGT 822 or Game Theory in the SOM Core. The course aims to introduce important idea and tools from game theory, and use them to answer questions in social sciences, law, and business. For instance, how can we use game theory to design sound environmental policies and formulate environmental treaties? How large should juries be, and should we require unanimous verdicts? Why do bargaining parties sometimes engage in lengthy and costly legal battles? How do sellers decide the best format for an auction to sell a good? When do we see price wars? The topics will include basics of mechanism design, bargaining with incomplete information, dynamic pricing, and applications of repeated games. Prerequisites: Any introductory game theory course like ECON/GLBL 159 or MGT 822\"", "short_title": "Applications of Game Theory", "title": "Applications of Game Theory", "school": "MG", @@ -211657,7 +464840,7 @@ "14:40", "16:00", "EVANS 4400 - Edward P Evans Hall 4400", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Thursday": [ @@ -211665,7 +464848,7 @@ "14:40", "16:00", "EVANS 4400 - Edward P Evans Hall 4400", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -211679,10 +464862,97 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84520\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84520/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988510608673096, + 0.9989043474197388, + 0.9988664388656616 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987670183181763, + 0.9983845949172974 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988986253738403, + 0.9956117272377014, + 0.9989016056060791, + 0.9987834095954895, + 0.9908202290534973 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 0.9, + "final_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + } + } }, { "season_code": "202301", @@ -211719,7 +464989,7 @@ "16:10", "19:10", "EVANS 4410 - Edward P Evans Hall 4410", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -211731,10 +465001,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85618\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85618/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -211771,7 +465069,7 @@ "13:00", "14:20", "EVANS 2210 - Edward P Evans Hall 2210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Wednesday": [ @@ -211779,7 +465077,7 @@ "13:00", "14:20", "EVANS 2210 - Edward P Evans Hall 2210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -211791,10 +465089,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85619\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85619/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -211831,7 +465157,7 @@ "10:10", "11:30", "EVANS 2210 - Edward P Evans Hall 2210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Wednesday": [ @@ -211839,7 +465165,7 @@ "10:10", "11:30", "EVANS 2210 - Edward P Evans Hall 2210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -211851,15 +465177,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85619\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85619/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "The spring 2022 Global Social Entrepreneurship (GSE) course will be likely working with organizations in Kenya. Like the GSE India course (MGT 529), Spring GSE links teams of Yale students with local social enterprises, channeling the skills of Yale students to assist the organizations to expand their reach and impact on \"base of the pyramid\" communities. Yale students partner with mission-driven social entrepreneurs (SEs) to focus on a specific management challenge that the student\/SE teams work together to address during the semester. The course covers both theoretical and practical issues, including case studies and discussions on social enterprise, developing a theory of change and related social metrics, financing social businesses, the role of civil society, framing a consulting engagement, managing team dynamics, etc. The course is taught by Tony Sheldon, Lecturer in the Practice of Management and Executive Director of SOM\u2019s Program on Social Enterprise. The course meets on Tuesday evenings 4:10 \u2013 7:10 during Spring semester. Given the uncertainties around international travel, trip planning for March 2022 (the first week of spring break) is of course tentative at this point in time. As with the International Experience and the Global Network Immersion Week, students would be responsible for covering the costs of their round-trip airfare and related expenses (such as visa and immunizations). Students\u2019 available GSA funds can be utilized to off-set in-country travel, hotel and related costs. The Jackson Institute and the School of the Environment also have funds available to off-set in-country travel related costs for their students. Enrollment is by application only. Students accepted and enrolled in GSE will allocate spring course bidding points towards the course (100 points). Just a reminder that applications for Spring GSE (working with organizations in Kenya) are due by this Sunday, October 24, at midnight. You can also apply for next Fall\/Winter\u2019s GSE India course. The application can be found here: https:\/\/docs.google.com\/forms\/d\/e\/1FAIpQLSedIWlEvs-9C-8srME07ax66Z5pC7hLrhn819mjN5LU5ypRnA\/closedform.", + "description": "The spring 2022 Global Social Entrepreneurship (GSE) course will be likely working with organizations in Kenya. Like the GSE India course (MGT 529), Spring GSE links teams of Yale students with local social enterprises, channeling the skills of Yale students to assist the organizations to expand their reach and impact on \"base of the pyramid\" communities. Yale students partner with mission-driven social entrepreneurs (SEs) to focus on a specific management challenge that the student/SE teams work together to address during the semester. The course covers both theoretical and practical issues, including case studies and discussions on social enterprise, developing a theory of change and related social metrics, financing social businesses, the role of civil society, framing a consulting engagement, managing team dynamics, etc. The course is taught by Tony Sheldon, Lecturer in the Practice of Management and Executive Director of SOM\u2019s Program on Social Enterprise. The course meets on Tuesday evenings 4:10 \u2013 7:10 during Spring semester. Given the uncertainties around international travel, trip planning for March 2022 (the first week of spring break) is of course tentative at this point in time. As with the International Experience and the Global Network Immersion Week, students would be responsible for covering the costs of their round-trip airfare and related expenses (such as visa and immunizations). Students\u2019 available GSA funds can be utilized to off-set in-country travel, hotel and related costs. The Jackson Institute and the School of the Environment also have funds available to off-set in-country travel related costs for their students. Enrollment is by application only. Students accepted and enrolled in GSE will allocate spring course bidding points towards the course (100 points). Just a reminder that applications for Spring GSE (working with organizations in Kenya) are due by this Sunday, October 24, at midnight. You can also apply for next Fall/Winter\u2019s GSE India course. The application can be found here: https://docs.google.com/forms/d/e/1FAIpQLSedIWlEvs-9C-8srME07ax66Z5pC7hLrhn819mjN5LU5ypRnA/closedform.", "short_title": "Global Social Entrepreneurship", "title": "Global Social Entrepreneurship", "school": "MG", @@ -211891,7 +465245,7 @@ "16:10", "19:10", "EVANS 4230 - Edward P Evans Hall 4230", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -211903,10 +465257,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85090\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85090/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -211943,7 +465325,7 @@ "16:10", "19:10", "EVANS 2200 - Edward P Evans Hall 2200", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -211958,7 +465340,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -211995,7 +465405,7 @@ "8:30", "9:50", "EVANS 4410 - Edward P Evans Hall 4410", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Thursday": [ @@ -212003,7 +465413,7 @@ "8:30", "9:50", "EVANS 4410 - Edward P Evans Hall 4410", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -212015,10 +465425,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85622\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85622/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -212055,7 +465493,7 @@ "13:00", "14:20", "EVANS 4420 - Edward P Evans Hall 4420", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Thursday": [ @@ -212063,7 +465501,7 @@ "13:00", "14:20", "EVANS 4420 - Edward P Evans Hall 4420", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -212077,10 +465515,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85623\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85623/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -212117,7 +465583,7 @@ "8:30", "9:50", "EVANS 2410 - Edward P Evans Hall 2410", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Wednesday": [ @@ -212125,7 +465591,7 @@ "8:30", "9:50", "EVANS 2410 - Edward P Evans Hall 2410", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -212142,7 +465608,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -212179,7 +465673,7 @@ "14:40", "16:00", "EVANS 2410 - Edward P Evans Hall 2410", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Thursday": [ @@ -212187,7 +465681,7 @@ "14:40", "16:00", "EVANS 2410 - Edward P Evans Hall 2410", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -212201,10 +465695,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85625\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85625/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -212241,7 +465763,7 @@ "16:10", "17:30", "EVANS 2410 - Edward P Evans Hall 2410", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Thursday": [ @@ -212249,7 +465771,7 @@ "16:10", "17:30", "EVANS 2410 - Edward P Evans Hall 2410", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -212263,10 +465785,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85625\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85625/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -212303,7 +465853,7 @@ "8:30", "9:50", "EVANS 2410 - Edward P Evans Hall 2410", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Thursday": [ @@ -212311,7 +465861,7 @@ "8:30", "9:50", "EVANS 2410 - Edward P Evans Hall 2410", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -212323,10 +465873,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85627\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85627/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -212363,7 +465941,7 @@ "8:30", "9:50", "EVANS 2400 - Edward P Evans Hall 2400", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Thursday": [ @@ -212371,7 +465949,7 @@ "8:30", "9:50", "EVANS 2400 - Edward P Evans Hall 2400", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -212385,10 +465963,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85628\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85628/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -212425,7 +466031,7 @@ "8:30", "9:50", "EVANS 4400 - Edward P Evans Hall 4400", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Thursday": [ @@ -212433,7 +466039,7 @@ "8:30", "9:50", "EVANS 4400 - Edward P Evans Hall 4400", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -212445,15 +466051,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85629\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85629/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "Do you want a bigger pay raise? This half-semester elective will help you better negotiate with your boss, potential investors, clients, peers, and perhaps most formidable of all, friends and family. Through practice cases negotiated with classmates, you will obtain a set of tools (e.g., lie-detection\/prevention techniques, collaboration techniques) to improve the way you create and claim value. The class is both intense and fun. There are no prerequisites, and there are a few seats saved for non-SOM students. Sign up before enrollment is full.", + "description": "Do you want a bigger pay raise? This half-semester elective will help you better negotiate with your boss, potential investors, clients, peers, and perhaps most formidable of all, friends and family. Through practice cases negotiated with classmates, you will obtain a set of tools (e.g., lie-detection/prevention techniques, collaboration techniques) to improve the way you create and claim value. The class is both intense and fun. There are no prerequisites, and there are a few seats saved for non-SOM students. Sign up before enrollment is full.", "short_title": "Negotiations", "title": "Negotiations", "school": "MG", @@ -212485,7 +466119,7 @@ "14:40", "17:40", "EVANS 4210 - Edward P Evans Hall 4210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -212497,15 +466131,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85632\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85632/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "Do you want a bigger pay raise? This half-semester elective will help you better negotiate with your boss, potential investors, clients, peers, and perhaps most formidable of all, friends and family. Through practice cases negotiated with classmates, you will obtain a set of tools (e.g., lie-detection\/prevention techniques, collaboration techniques) to improve the way you create and claim value. The class is both intense and fun. There are no prerequisites, and there are a few seats saved for non-SOM students. Sign up before enrollment is full.", + "description": "Do you want a bigger pay raise? This half-semester elective will help you better negotiate with your boss, potential investors, clients, peers, and perhaps most formidable of all, friends and family. Through practice cases negotiated with classmates, you will obtain a set of tools (e.g., lie-detection/prevention techniques, collaboration techniques) to improve the way you create and claim value. The class is both intense and fun. There are no prerequisites, and there are a few seats saved for non-SOM students. Sign up before enrollment is full.", "short_title": "Negotiations", "title": "Negotiations", "school": "MG", @@ -212537,7 +466199,7 @@ "8:30", "11:30", "EVANS 2210 - Edward P Evans Hall 2210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -212551,10 +466213,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85633\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85633/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -212591,7 +466281,7 @@ "14:40", "17:40", "EVANS 4200 - Edward P Evans Hall 4200", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -212605,10 +466295,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85634\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85634/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -212645,7 +466363,7 @@ "10:10", "11:30", "EVANS 2210 - Edward P Evans Hall 2210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Thursday": [ @@ -212653,7 +466371,7 @@ "10:10", "11:30", "EVANS 2210 - Edward P Evans Hall 2210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -212670,7 +466388,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -212707,7 +466453,7 @@ "10:10", "11:30", "EVANS 4210 - Edward P Evans Hall 4210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Wednesday": [ @@ -212715,7 +466461,7 @@ "10:10", "11:30", "EVANS 4210 - Edward P Evans Hall 4210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -212732,7 +466478,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -212769,7 +466543,7 @@ "14:40", "16:00", "EVANS 4210 - Edward P Evans Hall 4210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Wednesday": [ @@ -212777,7 +466551,7 @@ "14:40", "16:00", "EVANS 4210 - Edward P Evans Hall 4210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -212794,7 +466568,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -212834,7 +466636,7 @@ "13:00", "16:00", "EVANS 2230 - Edward P Evans Hall 2230", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -212848,15 +466650,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85639\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85639/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "The course is designed to introduce the challenges and pitfalls of financing new enterprises. The course primarily takes the perspective of an entrepreneur. Broadly speaking, entrepreneurial financing decisions have a life cycle. The cycle begins with identifying opportunities, moves to marshaling resources to take advantage of these opportunities and executing the business plan, and ends with harvesting the venture's success. Accordingly, the course has three sections: Identifying and Valuing Opportunities, Structuring Deals, and Harvesting Opportunities. This course combines lectures and case studies. The lecture part will equip students with important techniques in each stage of entrepreneurial finance; those techniques are applied to case studies covering interesting entrepreneurial areas such as IT, healthcare, sharing economy, impact investment, etc. MGT 897 complements MGT 997 \"Venture Capital and Private Equity,\" which primarily takes the perspective of venture capital investors. The two courses can be taken independently or simultaneously. A detailed comparison chart of the two courses can be found here: https:\/\/songma.github.io\/teaching\/YaleSOM_MGT897_MGT997_Comparison.pdf.", + "description": "The course is designed to introduce the challenges and pitfalls of financing new enterprises. The course primarily takes the perspective of an entrepreneur. Broadly speaking, entrepreneurial financing decisions have a life cycle. The cycle begins with identifying opportunities, moves to marshaling resources to take advantage of these opportunities and executing the business plan, and ends with harvesting the venture's success. Accordingly, the course has three sections: Identifying and Valuing Opportunities, Structuring Deals, and Harvesting Opportunities. This course combines lectures and case studies. The lecture part will equip students with important techniques in each stage of entrepreneurial finance; those techniques are applied to case studies covering interesting entrepreneurial areas such as IT, healthcare, sharing economy, impact investment, etc. MGT 897 complements MGT 997 \"Venture Capital and Private Equity,\" which primarily takes the perspective of venture capital investors. The two courses can be taken independently or simultaneously. A detailed comparison chart of the two courses can be found here: https://songma.github.io/teaching/YaleSOM_MGT897_MGT997_Comparison.pdf.", "short_title": "Entrepreneurial Finance", "title": "Entrepreneurial Finance", "school": "MG", @@ -212888,7 +466718,7 @@ "8:30", "9:50", "EVANS 4400 - Edward P Evans Hall 4400", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Wednesday": [ @@ -212896,7 +466726,7 @@ "8:30", "9:50", "EVANS 4400 - Edward P Evans Hall 4400", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -212910,15 +466740,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85640\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85640/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "The course is designed to introduce the challenges and pitfalls of financing new enterprises. The course primarily takes the perspective of an entrepreneur. Broadly speaking, entrepreneurial financing decisions have a life cycle. The cycle begins with identifying opportunities, moves to marshaling resources to take advantage of these opportunities and executing the business plan, and ends with harvesting the venture's success. Accordingly, the course has three sections: Identifying and Valuing Opportunities, Structuring Deals, and Harvesting Opportunities. This course combines lectures and case studies. The lecture part will equip students with important techniques in each stage of entrepreneurial finance; those techniques are applied to case studies covering interesting entrepreneurial areas such as IT, healthcare, sharing economy, impact investment, etc. MGT 897 complements MGT 997 \"Venture Capital and Private Equity,\" which primarily takes the perspective of venture capital investors. The two courses can be taken independently or simultaneously. A detailed comparison chart of the two courses can be found here: https:\/\/songma.github.io\/teaching\/YaleSOM_MGT897_MGT997_Comparison.pdf.", + "description": "The course is designed to introduce the challenges and pitfalls of financing new enterprises. The course primarily takes the perspective of an entrepreneur. Broadly speaking, entrepreneurial financing decisions have a life cycle. The cycle begins with identifying opportunities, moves to marshaling resources to take advantage of these opportunities and executing the business plan, and ends with harvesting the venture's success. Accordingly, the course has three sections: Identifying and Valuing Opportunities, Structuring Deals, and Harvesting Opportunities. This course combines lectures and case studies. The lecture part will equip students with important techniques in each stage of entrepreneurial finance; those techniques are applied to case studies covering interesting entrepreneurial areas such as IT, healthcare, sharing economy, impact investment, etc. MGT 897 complements MGT 997 \"Venture Capital and Private Equity,\" which primarily takes the perspective of venture capital investors. The two courses can be taken independently or simultaneously. A detailed comparison chart of the two courses can be found here: https://songma.github.io/teaching/YaleSOM_MGT897_MGT997_Comparison.pdf.", "short_title": "Entrepreneurial Finance", "title": "Entrepreneurial Finance", "school": "MG", @@ -212950,7 +466808,7 @@ "10:10", "11:30", "EVANS 4400 - Edward P Evans Hall 4400", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Wednesday": [ @@ -212958,7 +466816,7 @@ "10:10", "11:30", "EVANS 4400 - Edward P Evans Hall 4400", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -212972,15 +466830,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85640\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85640/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "The course is designed to introduce the challenges and pitfalls of financing new enterprises. The course primarily takes the perspective of an entrepreneur. Broadly speaking, entrepreneurial financing decisions have a life cycle. The cycle begins with identifying opportunities, moves to marshaling resources to take advantage of these opportunities and executing the business plan, and ends with harvesting the venture's success. Accordingly, the course has three sections: Identifying and Valuing Opportunities, Structuring Deals, and Harvesting Opportunities. This course combines lectures and case studies. The lecture part will equip students with important techniques in each stage of entrepreneurial finance; those techniques are applied to case studies covering interesting entrepreneurial areas such as IT, healthcare, sharing economy, impact investment, etc. MGT 897 complements MGT 997 \"Venture Capital and Private Equity,\" which primarily takes the perspective of venture capital investors. The two courses can be taken independently or simultaneously. A detailed comparison chart of the two courses can be found here: https:\/\/songma.github.io\/teaching\/YaleSOM_MGT897_MGT997_Comparison.pdf.", + "description": "The course is designed to introduce the challenges and pitfalls of financing new enterprises. The course primarily takes the perspective of an entrepreneur. Broadly speaking, entrepreneurial financing decisions have a life cycle. The cycle begins with identifying opportunities, moves to marshaling resources to take advantage of these opportunities and executing the business plan, and ends with harvesting the venture's success. Accordingly, the course has three sections: Identifying and Valuing Opportunities, Structuring Deals, and Harvesting Opportunities. This course combines lectures and case studies. The lecture part will equip students with important techniques in each stage of entrepreneurial finance; those techniques are applied to case studies covering interesting entrepreneurial areas such as IT, healthcare, sharing economy, impact investment, etc. MGT 897 complements MGT 997 \"Venture Capital and Private Equity,\" which primarily takes the perspective of venture capital investors. The two courses can be taken independently or simultaneously. A detailed comparison chart of the two courses can be found here: https://songma.github.io/teaching/YaleSOM_MGT897_MGT997_Comparison.pdf.", "short_title": "Entrepreneurial Finance", "title": "Entrepreneurial Finance", "school": "MG", @@ -213012,7 +466898,7 @@ "13:00", "14:20", "EVANS 4400 - Edward P Evans Hall 4400", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Wednesday": [ @@ -213020,7 +466906,7 @@ "13:00", "14:20", "EVANS 4400 - Edward P Evans Hall 4400", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -213032,10 +466918,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85640\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85640/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -213072,7 +466986,7 @@ "14:40", "16:00", "EVANS 2200 - Edward P Evans Hall 2200", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Thursday": [ @@ -213080,7 +466994,7 @@ "14:40", "16:00", "EVANS 2200 - Edward P Evans Hall 2200", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -213094,10 +467008,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85643\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85643/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -213134,7 +467076,7 @@ "14:40", "17:40", "EVANS 4210 - Edward P Evans Hall 4210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -213146,10 +467088,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85644\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85644/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -213186,7 +467156,7 @@ "8:30", "9:50", "EVANS - EVANS", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Thursday": [ @@ -213194,7 +467164,7 @@ "8:30", "9:50", "EVANS - EVANS", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -213206,10 +467176,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85645\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85645/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -213249,7 +467247,7 @@ "11:30", "13:30", "EVANS 2410 - Edward P Evans Hall 2410", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -213261,10 +467259,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85646\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85646/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -213301,7 +467327,7 @@ "8:30", "11:30", "EVANS 4410 - Edward P Evans Hall 4410", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -213313,10 +467339,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85647\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85647/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -213353,7 +467407,7 @@ "8:00", "11:00", "EVANS 2410 - Edward P Evans Hall 2410", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -213365,10 +467419,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85648\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85648/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -213408,7 +467490,7 @@ "16:10", "19:10", "EVANS 4400 - Edward P Evans Hall 4400", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -213420,10 +467502,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85649\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85649/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -213460,7 +467570,7 @@ "16:10", "19:10", "EVANS 4400 - Edward P Evans Hall 4400", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -213472,10 +467582,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85651\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85651/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -213515,7 +467653,7 @@ "18:00", "21:00", "EVANS 4420 - Edward P Evans Hall 4420", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -213527,10 +467665,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85652\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85652/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -213567,7 +467733,7 @@ "16:10", "19:10", "EVANS 4400 - Edward P Evans Hall 4400", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -213584,7 +467750,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -213621,7 +467815,7 @@ "16:10", "19:10", "EVANS 4200 - Edward P Evans Hall 4200", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -213636,7 +467830,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -213676,7 +467898,7 @@ "13:00", "14:20", "EVANS 4210 - Edward P Evans Hall 4210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Thursday": [ @@ -213684,7 +467906,7 @@ "13:00", "14:20", "EVANS 4210 - Edward P Evans Hall 4210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -213698,15 +467920,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85655\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85655/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "Part II of this two semester course will continue to focus on current macroprudential theory and application and experience of macroprudential policy. The course will focus on the motivation for monitoring systemic risk and what indicators may be best to evaluate systemic risk. Macroprudential policy tools, theory behind them and research on their efficiency. This will be supported with data analysis, models and examples of use of the tools and evaluation of their efficiency. Prerequisites: Students are encouraged to complete MGT 944\/GLBL 944 prior to enrolling into MGT 945\/GLBL 945.", + "description": "Part II of this two semester course will continue to focus on current macroprudential theory and application and experience of macroprudential policy. The course will focus on the motivation for monitoring systemic risk and what indicators may be best to evaluate systemic risk. Macroprudential policy tools, theory behind them and research on their efficiency. This will be supported with data analysis, models and examples of use of the tools and evaluation of their efficiency. Prerequisites: Students are encouraged to complete MGT 944/GLBL 944 prior to enrolling into MGT 945/GLBL 945.", "short_title": "Macroprudential Policy II", "title": "Macroprudential Policy II", "school": "MG", @@ -213745,7 +467995,7 @@ "14:40", "16:00", "EVANS 2210 - Edward P Evans Hall 2210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Wednesday": [ @@ -213753,7 +468003,7 @@ "14:40", "16:00", "EVANS 2210 - Edward P Evans Hall 2210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -213765,10 +468015,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85080\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85080/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -213808,7 +468086,7 @@ "13:00", "14:20", "EVANS 4210 - Edward P Evans Hall 4210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -213820,10 +468098,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85656\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85656/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -213866,7 +468172,7 @@ "14:30", "15:45", "HQ 132 - Humanities Quadrangle 132", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -213874,7 +468180,7 @@ "14:30", "15:45", "HQ 132 - Humanities Quadrangle 132", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -213886,10 +468192,113 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84093\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84093/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989114999771118, + 0.998789370059967, + 0.998908519744873, + 0.9988896250724792, + 0.9989155530929565, + 0.9989334940910339 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983221888542175, + 0.9966064691543579, + 0.9981992840766907, + 0.9989058971405029, + 0.9989176988601685, + 0.9853879809379578 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9924666285514832, + 0.9987484216690063, + 0.9988945126533508, + 0.9989340901374817, + 0.9987887740135193, + 0.998930037021637 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 5 + }, + "sentiment_distribution": { + "NEGATIVE": 0.16666666666666666, + "POSITIVE": 0.8333333333333334 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 0.9444444444444444, + "final_counts": { + "POSITIVE": 17, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9444444444444444, + "NEGATIVE": 0.05555555555555555 + } + } }, { "season_code": "202301", @@ -213926,7 +468335,7 @@ "16:10", "19:10", "EVANS 4420 - Edward P Evans Hall 4420", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -213938,15 +468347,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85660\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85660/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "Venture capital and private equity play a critical role in the financing and development of high-growth entrepreneurial companies. This course takes the perspective of venture investors, and will cover the tools, methods, and mindset used by venture capitalist to operate, invest, and create value. Many of these skills and insights are readily generalizable to other PE models. The course is structured around the \"VC\/PE cycle.\" It starts from setting up a VC firm, fundraising from limited partners (LPs), and the contracting problem with LPs. The cycle moves to selecting and valuing an entrepreneurial company and structuring a deal. We then investigate the management of investments and value creation. Finally, we study the exit of investments and the risks and returns of the PE asset class. This course combines lectures and case studies. The lecture portion of the course is designed to equip students with key techniques and background knowledge; these techniques will be applied to case studies to help us solve practical problems in VC\/PE investment. MGT 997 complements MGT 897 \"Entrepreneurial Finance,\" which primarily takes the perspective of entrepreneurs. The two courses can be taken independently or simultaneously. A detailed comparison chart of the two courses can be found here: https:\/\/songma.github.io\/teaching\/YaleSOM_MGT897_MGT997_Comparison.pdf.", + "description": "Venture capital and private equity play a critical role in the financing and development of high-growth entrepreneurial companies. This course takes the perspective of venture investors, and will cover the tools, methods, and mindset used by venture capitalist to operate, invest, and create value. Many of these skills and insights are readily generalizable to other PE models. The course is structured around the \"VC/PE cycle.\" It starts from setting up a VC firm, fundraising from limited partners (LPs), and the contracting problem with LPs. The cycle moves to selecting and valuing an entrepreneurial company and structuring a deal. We then investigate the management of investments and value creation. Finally, we study the exit of investments and the risks and returns of the PE asset class. This course combines lectures and case studies. The lecture portion of the course is designed to equip students with key techniques and background knowledge; these techniques will be applied to case studies to help us solve practical problems in VC/PE investment. MGT 997 complements MGT 897 \"Entrepreneurial Finance,\" which primarily takes the perspective of entrepreneurs. The two courses can be taken independently or simultaneously. A detailed comparison chart of the two courses can be found here: https://songma.github.io/teaching/YaleSOM_MGT897_MGT997_Comparison.pdf.", "short_title": "VentureCapital&PrivateEquity", "title": "VentureCapital&PrivateEquity", "school": "MG", @@ -213978,7 +468415,7 @@ "8:30", "9:50", "EVANS 4400 - Edward P Evans Hall 4400", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Thursday": [ @@ -213986,7 +468423,7 @@ "8:30", "9:50", "EVANS 4400 - Edward P Evans Hall 4400", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -213998,15 +468435,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85661\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85661/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This year-long workshop focuses on the concepts, debates, methodologies, theories, and real-world constraints of the material histories of the human record across a range of formats and media. Organized around six rubrics\u2014Collecting, Describing, Displaying, Embodying, Disembodying, and Representing\u2014we aim to cut across long-standing divides between collections, archives and libraries, on the hand, and scholarly\/artistic spaces of the academic world; between preservation and consumption; between privacy and publicity; between the social sciences and the humanities.\u00a0Through critical readings that engage with diverse geographic and temporal subjects; the close analysis and physical handling of rare books, maps, manuscripts, images, objects, and textiles; and an orientation to cultural heritage and library professional practices and procedures, students learn the critical interventions of the history of the book and the archival turn in the humanities; the\u00a0key concepts and genealogies of archives and library special collections; and the generative collaborations currently underway between faculty and librarians to jointly address legacies of racism and white privilege, advance intellectual freedom and parity, and define the ethical stewardship of the material histories of the human record today. This workshop takes the form of a half-credit course in each semester that meets six times a term (every other week).\u00a0This course must be taken before or after MHHR 700 to earn 1 full credit.\u00a0We welcome all curious students to the first class, but permission of the instructors is subsequently required for enrollment\/registration.", + "description": "This year-long workshop focuses on the concepts, debates, methodologies, theories, and real-world constraints of the material histories of the human record across a range of formats and media. Organized around six rubrics\u2014Collecting, Describing, Displaying, Embodying, Disembodying, and Representing\u2014we aim to cut across long-standing divides between collections, archives and libraries, on the hand, and scholarly/artistic spaces of the academic world; between preservation and consumption; between privacy and publicity; between the social sciences and the humanities.\u00a0Through critical readings that engage with diverse geographic and temporal subjects; the close analysis and physical handling of rare books, maps, manuscripts, images, objects, and textiles; and an orientation to cultural heritage and library professional practices and procedures, students learn the critical interventions of the history of the book and the archival turn in the humanities; the\u00a0key concepts and genealogies of archives and library special collections; and the generative collaborations currently underway between faculty and librarians to jointly address legacies of racism and white privilege, advance intellectual freedom and parity, and define the ethical stewardship of the material histories of the human record today. This workshop takes the form of a half-credit course in each semester that meets six times a term (every other week).\u00a0This course must be taken before or after MHHR 700 to earn 1 full credit.\u00a0We welcome all curious students to the first class, but permission of the instructors is subsequently required for enrollment/registration.", "short_title": "Theory and Praxis of Material...", "title": "Theory and Praxis of Material Histories", "school": "GS", @@ -214041,7 +468506,7 @@ "15:30", "17:20", "BRBL 13 - Beinecke Rare Book Library 13", - "https:\/\/map.yale.edu\/?id=1910#!m\/531533" + "https://map.yale.edu/?id=1910#!m/531533" ] ] }, @@ -214053,10 +468518,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86263\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86263/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -214100,7 +468593,7 @@ "11:35", "12:50", "HQ 307 - Humanities Quadrangle 307", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -214108,7 +468601,7 @@ "11:35", "12:50", "HQ 307 - Humanities Quadrangle 307", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -214135,10 +468628,173 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84160\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84160/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984762072563171, + 0.9965823292732239, + 0.9987420439720154, + 0.998738706111908, + 0.9988890290260315, + 0.9987844824790955, + 0.9989080429077148, + 0.9968896508216858, + 0.99891197681427, + 0.9962582588195801, + 0.9987926483154297, + 0.9988880753517151, + 0.9988172650337219, + 0.9989134073257446 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9285714285714286, + "NEGATIVE": 0.07142857142857142 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9285714285714286 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994984865188599, + 0.9981104135513306, + 0.9988154172897339, + 0.9942962527275085, + 0.9994580149650574, + 0.9982935786247253, + 0.9988263249397278, + 0.9989131689071655, + 0.9988403916358948, + 0.9987169504165649, + 0.9989199638366699, + 0.9962582588195801, + 0.9988699555397034, + 0.9973528385162354, + 0.9985707998275757, + 0.99857497215271, + 0.979805052280426, + 0.9986971020698547 + ], + "sentiment_counts": { + "NEGATIVE": 4, + "POSITIVE": 14 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2222222222222222, + "POSITIVE": 0.7777777777777778 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7777777777777778 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988037347793579, + 0.9988871216773987, + 0.9984511137008667, + 0.9986259937286377, + 0.987037181854248, + 0.9987447261810303, + 0.998930037021637, + 0.9989023208618164, + 0.9988842606544495, + 0.9878063797950745, + 0.9989326596260071, + 0.9962582588195801, + 0.9988477230072021, + 0.9910148978233337, + 0.9989182949066162, + 0.9986000657081604 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.8125, + "NEGATIVE": 0.1875 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8125 + ] + }, + "final_label": "POSITIVE", + "final_count": 40, + "final_proportion": 0.8333333333333334, + "final_counts": { + "POSITIVE": 40, + "NEGATIVE": 8 + }, + "final_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + } + } }, { "season_code": "202301", @@ -214178,7 +468834,7 @@ "9:25", "11:15", "HQ C11 - Humanities Quadrangle C11", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -214194,10 +468850,155 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84330\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84330/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994730353355408, + 0.9987735152244568, + 0.9989132881164551, + 0.998863935470581, + 0.9981655478477478, + 0.9988279938697815, + 0.9989187717437744, + 0.9987779259681702, + 0.9988715052604675, + 0.9988929629325867, + 0.9988653659820557, + 0.9977631568908691, + 0.9988754391670227 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 12 + }, + "sentiment_distribution": { + "NEGATIVE": 0.07692307692307693, + "POSITIVE": 0.9230769230769231 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9230769230769231 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994981288909912, + 0.9987552165985107, + 0.9989013671875, + 0.9989364743232727, + 0.9987037181854248, + 0.9989111423492432, + 0.9946002960205078, + 0.9989228844642639, + 0.9982954859733582, + 0.9989129304885864, + 0.9987377524375916, + 0.9989160299301147, + 0.9988783001899719, + 0.9989315867424011 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 13 + }, + "sentiment_distribution": { + "NEGATIVE": 0.07142857142857142, + "POSITIVE": 0.9285714285714286 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9285714285714286 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994633793830872, + 0.9988186955451965, + 0.9989223480224609, + 0.9988671541213989, + 0.9989014863967896, + 0.9989328980445862, + 0.9987951517105103, + 0.9988805651664734, + 0.998842179775238, + 0.9959834814071655, + 0.9982752799987793, + 0.9989295601844788 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 11 + }, + "sentiment_distribution": { + "NEGATIVE": 0.08333333333333333, + "POSITIVE": 0.9166666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9166666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 36, + "final_proportion": 0.9230769230769231, + "final_counts": { + "NEGATIVE": 3, + "POSITIVE": 36 + }, + "final_distribution": { + "NEGATIVE": 0.07692307692307693, + "POSITIVE": 0.9230769230769231 + } + } }, { "season_code": "202301", @@ -214238,7 +469039,7 @@ "11:35", "12:50", "HQ 129 - Humanities Quadrangle 129", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -214246,7 +469047,7 @@ "11:35", "12:50", "HQ 129 - Humanities Quadrangle 129", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -214262,10 +469063,87 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84193\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84193/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988137483596802, + 0.9989005327224731 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9966269731521606 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 0 + }, + "sentiment_distribution": { + "NEGATIVE": 1.0, + "POSITIVE": 0.0 + }, + "sentiment_overall": [ + "NEGATIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988827109336853, + 0.9989258646965027 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 4, + "final_proportion": 0.8, + "final_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + } + } }, { "season_code": "202301", @@ -214304,7 +469182,7 @@ "13:00", "14:15", "HQ 113 - Humanities Quadrangle 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -214312,7 +469190,7 @@ "13:00", "14:15", "HQ 113 - Humanities Quadrangle 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -214326,10 +469204,93 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84972\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84972/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988493919372559, + 0.9988620281219482, + 0.998105525970459 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988897442817688, + 0.9989125728607178, + 0.9989339709281921 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984360337257385, + 0.9989093542098999, + 0.9989174604415894 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 9 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -214366,7 +469327,7 @@ "13:30", "15:20", "WTS B30 - Watson Center 60 Sachem Street B30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -214384,10 +469345,101 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85974\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85974/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989213943481445, + 0.9950677156448364, + 0.9989239573478699, + 0.9988657236099243, + 0.9989222288131714 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988548755645752, + 0.9989144802093506, + 0.9989197254180908, + 0.9988417029380798 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998630702495575, + 0.998340368270874, + 0.9989041090011597, + 0.9989318251609802 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 13 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -214425,7 +469477,7 @@ "9:25", "11:15", "LUCE 202 - Luce Hall 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ] }, @@ -214441,10 +469493,38 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87135\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/87135/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -214484,7 +469564,7 @@ "15:30", "17:20", "WLH 208 - William L. Harkness Hall 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -214498,10 +469578,123 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84398\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84398/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987761378288269, + 0.9988526105880737, + 0.9988616704940796, + 0.9988709092140198, + 0.9988692402839661, + 0.998865008354187 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982339143753052, + 0.999426007270813, + 0.9988495111465454, + 0.9988961219787598, + 0.9988528490066528, + 0.9995020627975464, + 0.9989275336265564 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.7142857142857143, + "NEGATIVE": 0.2857142857142857 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7142857142857143 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987536668777466, + 0.9988459348678589, + 0.9988019466400146, + 0.998782217502594, + 0.9988957643508911, + 0.9988753199577332, + 0.9995001554489136, + 0.9989253878593445, + 0.9989050626754761, + 0.9986708164215088 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 0.8695652173913043, + "final_counts": { + "POSITIVE": 20, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.8695652173913043, + "NEGATIVE": 0.13043478260869565 + } + } }, { "season_code": "202301", @@ -214541,7 +469734,7 @@ "15:30", "17:20", "WLH 011 - William L. Harkness Hall 011", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -214557,10 +469750,157 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84331\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84331/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989147186279297, + 0.9971709847450256, + 0.9988216757774353, + 0.9988547563552856, + 0.9989110231399536, + 0.9980278611183167, + 0.9989327788352966, + 0.998796820640564, + 0.9988337159156799, + 0.9988998174667358, + 0.998924195766449, + 0.9989174604415894, + 0.9989125728607178 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988594055175781, + 0.9989277720451355, + 0.9987912774085999, + 0.9989026784896851, + 0.9988887906074524, + 0.9988993406295776, + 0.9989206790924072, + 0.9989266991615295, + 0.9989330172538757, + 0.9988841414451599, + 0.998918890953064, + 0.9987988471984863, + 0.9989401698112488 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989142417907715, + 0.998934805393219, + 0.9989320635795593, + 0.9989142417907715, + 0.9984645843505859, + 0.998897910118103, + 0.9989385008811951, + 0.9989238381385803, + 0.998930037021637, + 0.9988995790481567, + 0.9989160299301147, + 0.9987499713897705, + 0.9989301562309265, + 0.9989232420921326, + 0.9989206790924072 + ], + "sentiment_counts": { + "POSITIVE": 15, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 41, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 41 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -214606,7 +469946,7 @@ "13:30", "15:20", "WLH 202 - William L. Harkness Hall 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -214626,15 +469966,98 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84127\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84127/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "", - "description": "In the decade since the 2011 Arab uprisings, the challenges facing the Middle East have been profound. They include\u00a0various forms of war and displacement, political and economic instability, social upheaval and societal rupture. Indeed, by 2015, millions of Middle Eastern men, women, and children had been driven from their homes by conflict.\u00a0This advanced undergraduate\/graduate seminar is designed to explore some of the most important contemporary cultural and political shifts that are shaping life across the Middle East and North Africa (MENA). The course aims for broad regional coverage, with particular focus on a variety of important Middle Eastern nation-states (e.g., Egypt, Lebanon, Palestine, Saudi Arabia, Turkey, Iran). Students should emerge from the course with a keener sense of Middle Eastern regional histories and contemporary social issues, as described by a new generation of leading scholars in the field of Middle East Studies and particularly Middle East Anthropology. This course is thus designed for students in Anthropology, Modern Middle East Studies, and Global Affairs, but also from the disciplines of Sociology, History, Political Science, Near Eastern Languages and Cultures, and the like. The course is also intended for students in the CMES Graduate Certificate Program.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998846173286438, + 0.9987742304801941, + 0.9987353682518005 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989000558853149, + 0.9988996982574463, + 0.9988102912902832 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989320635795593, + 0.9989295601844788, + 0.9988728165626526 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 9 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } + }, + { + "season_code": "202301", + "requirements": "", + "description": "In the decade since the 2011 Arab uprisings, the challenges facing the Middle East have been profound. They include\u00a0various forms of war and displacement, political and economic instability, social upheaval and societal rupture. Indeed, by 2015, millions of Middle Eastern men, women, and children had been driven from their homes by conflict.\u00a0This advanced undergraduate/graduate seminar is designed to explore some of the most important contemporary cultural and political shifts that are shaping life across the Middle East and North Africa (MENA). The course aims for broad regional coverage, with particular focus on a variety of important Middle Eastern nation-states (e.g., Egypt, Lebanon, Palestine, Saudi Arabia, Turkey, Iran). Students should emerge from the course with a keener sense of Middle Eastern regional histories and contemporary social issues, as described by a new generation of leading scholars in the field of Middle East Studies and particularly Middle East Anthropology. This course is thus designed for students in Anthropology, Modern Middle East Studies, and Global Affairs, but also from the disciplines of Sociology, History, Political Science, Near Eastern Languages and Cultures, and the like. The course is also intended for students in the CMES Graduate Certificate Program.", "short_title": "Culture and Politics in the C...", "title": "Culture and Politics in the Contemporary Middle East", "school": "YC", @@ -214668,7 +470091,7 @@ "13:30", "15:20", "WLH 203 - William L. Harkness Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -214686,10 +470109,111 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83359\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83359/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989182949066162, + 0.9988021850585938, + 0.998894989490509, + 0.998931348323822, + 0.9988157749176025, + 0.9989368319511414 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988887906074524, + 0.9989286065101624, + 0.9988834261894226, + 0.9989385008811951, + 0.9978532195091248, + 0.9988975524902344 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989039897918701, + 0.9989308714866638, + 0.9988272786140442, + 0.9989381432533264, + 0.9987731575965881, + 0.9989261031150818 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 18 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -214726,7 +470250,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -214763,7 +470315,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -214794,7 +470374,7 @@ "12:10", "13:00", "DOW 420 - Dow Hall 420", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ], "Tuesday": [ @@ -214802,7 +470382,7 @@ "12:10", "13:00", "DOW 420 - Dow Hall 420", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ], "Wednesday": [ @@ -214810,7 +470390,7 @@ "12:10", "13:00", "DOW 420 - Dow Hall 420", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ], "Thursday": [ @@ -214818,7 +470398,7 @@ "12:10", "13:00", "DOW 420 - Dow Hall 420", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ] }, @@ -214835,7 +470415,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -214874,7 +470482,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -214913,7 +470549,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -214950,7 +470614,7 @@ "9:00", "10:15", "LEIGH 402 - Leigh Hall (435 College) 402", - "https:\/\/map.yale.edu\/?id=1910#!m\/559539" + "https://map.yale.edu/?id=1910#!m/559539" ] ], "Wednesday": [ @@ -214958,7 +470622,7 @@ "9:00", "10:15", "LEIGH 402 - Leigh Hall (435 College) 402", - "https:\/\/map.yale.edu\/?id=1910#!m\/559539" + "https://map.yale.edu/?id=1910#!m/559539" ] ], "Friday": [ @@ -214966,7 +470630,7 @@ "9:00", "10:15", "LEIGH 402 - Leigh Hall (435 College) 402", - "https:\/\/map.yale.edu\/?id=1910#!m\/559539" + "https://map.yale.edu/?id=1910#!m/559539" ] ] }, @@ -214981,7 +470645,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -215018,7 +470710,7 @@ "9:00", "10:15", "LEIGH PARK - Leigh Hall (435 College) PARK", - "https:\/\/map.yale.edu\/?id=1910#!m\/559539" + "https://map.yale.edu/?id=1910#!m/559539" ] ], "Wednesday": [ @@ -215026,7 +470718,7 @@ "9:00", "10:15", "LEIGH PARK - Leigh Hall (435 College) PARK", - "https:\/\/map.yale.edu\/?id=1910#!m\/559539" + "https://map.yale.edu/?id=1910#!m/559539" ] ], "Friday": [ @@ -215034,7 +470726,7 @@ "9:00", "10:15", "LEIGH PARK - Leigh Hall (435 College) PARK", - "https:\/\/map.yale.edu\/?id=1910#!m\/559539" + "https://map.yale.edu/?id=1910#!m/559539" ] ] }, @@ -215049,7 +470741,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -215086,7 +470806,7 @@ "16:00", "17:50", "HEN 116 - Hendrie Hall 116", - "https:\/\/map.yale.edu\/?id=1910#!m\/563676" + "https://map.yale.edu/?id=1910#!m/563676" ] ] }, @@ -215101,14 +470821,42 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", "description": "2 credits per term. A language course designed specifically for the needs of singers. Intensive work on pronunciation, grammar, and literature throughout the term. French, German, English, Italian, Russian, and Latin are offered in alternating terms. Required.", - "short_title": "LyricDiction\/Singers: LyricDi...", - "title": "LyricDiction\/Singers: LyricDiction\/Singers-ITALIAN", + "short_title": "LyricDiction/Singers: LyricDi...", + "title": "LyricDiction/Singers: LyricDiction/Singers-ITALIAN", "school": "MU", "credits": 0.0, "extra_info": "ACTIVE", @@ -215138,7 +470886,7 @@ "10:30", "12:00", "HEN 114 - Hendrie Hall 114", - "https:\/\/map.yale.edu\/?id=1910#!m\/563676" + "https://map.yale.edu/?id=1910#!m/563676" ] ] }, @@ -215155,14 +470903,42 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", "description": "2 credits per term. A language course designed specifically for the needs of singers. Intensive work on pronunciation, grammar, and literature throughout the term. French, German, English, Italian, Russian, and Latin are offered in alternating terms. Required.", - "short_title": "LyricDiction\/Singers: LyricDi...", - "title": "LyricDiction\/Singers: LyricDiction\/Singers-ITALIAN", + "short_title": "LyricDiction/Singers: LyricDi...", + "title": "LyricDiction/Singers: LyricDiction/Singers-ITALIAN", "school": "MU", "credits": 0.0, "extra_info": "ACTIVE", @@ -215192,7 +470968,7 @@ "12:00", "13:30", "HEN 114 - Hendrie Hall 114", - "https:\/\/map.yale.edu\/?id=1910#!m\/563676" + "https://map.yale.edu/?id=1910#!m/563676" ] ] }, @@ -215209,7 +470985,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -215247,7 +471051,7 @@ "10:30", "12:15", "HEN 114 - Hendrie Hall 114", - "https:\/\/map.yale.edu\/?id=1910#!m\/563676" + "https://map.yale.edu/?id=1910#!m/563676" ] ] }, @@ -215264,7 +471068,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -215351,7 +471183,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -215394,14 +471254,42 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", "description": "1 credit per term. Individual private coaching in the art song repertoire, in preparation for required recitals. Students are coached on such elements of musical style as phrasing, rubato, and articulation, and in English, French, Italian, German, and Spanish diction. Students are expected to bring their recital accompaniments to coaching sessions as their recital times approach.", "short_title": "Art Song Coaching for Singers...", - "title": "Art Song Coaching for Singers: Art Song Coaching\/Singers ISM", + "title": "Art Song Coaching for Singers: Art Song Coaching/Singers ISM", "school": "MU", "credits": 0.0, "extra_info": "ACTIVE", @@ -215438,7 +471326,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -215475,7 +471391,7 @@ "9:00", "10:15", "LEIGH PARK - Leigh Hall (435 College) PARK", - "https:\/\/map.yale.edu\/?id=1910#!m\/559539" + "https://map.yale.edu/?id=1910#!m/559539" ] ], "Thursday": [ @@ -215483,7 +471399,7 @@ "9:00", "10:15", "LEIGH PARK - Leigh Hall (435 College) PARK", - "https:\/\/map.yale.edu\/?id=1910#!m\/559539" + "https://map.yale.edu/?id=1910#!m/559539" ] ] }, @@ -215495,10 +471411,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86739\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86739/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -215535,7 +471479,7 @@ "9:00", "10:15", "HEN 313 - Hendrie Hall 313", - "https:\/\/map.yale.edu\/?id=1910#!m\/563676" + "https://map.yale.edu/?id=1910#!m/563676" ] ], "Thursday": [ @@ -215543,7 +471487,7 @@ "9:00", "10:15", "HEN 313 - Hendrie Hall 313", - "https:\/\/map.yale.edu\/?id=1910#!m\/563676" + "https://map.yale.edu/?id=1910#!m/563676" ] ] }, @@ -215555,10 +471499,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86744\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86744/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -215595,7 +471567,7 @@ "9:00", "10:15", "LEIGH 402 - Leigh Hall (435 College) 402", - "https:\/\/map.yale.edu\/?id=1910#!m\/559539" + "https://map.yale.edu/?id=1910#!m/559539" ] ], "Thursday": [ @@ -215603,7 +471575,7 @@ "9:00", "10:15", "LEIGH 402 - Leigh Hall (435 College) 402", - "https:\/\/map.yale.edu\/?id=1910#!m\/559539" + "https://map.yale.edu/?id=1910#!m/559539" ] ] }, @@ -215618,7 +471590,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -215664,12 +471664,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "1 credit per term. NP. P\/F. Participation in seminars led by faculty and guest lecturers on topics concerning theology, music, worship, and related arts. Counts as one NP in the fourth term. Required of all Institute of Sacred Music students.", + "description": "1 credit per term. NP. P/F. Participation in seminars led by faculty and guest lecturers on topics concerning theology, music, worship, and related arts. Counts as one NP in the fourth term. Required of all Institute of Sacred Music students.", "short_title": "ISM Colloquium", "title": "ISM Colloquium", "school": "MU", @@ -215704,7 +471732,7 @@ "15:30", "17:20", "SDQ GREAT - Sterling Divinity Quadrangle GREAT", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -215719,7 +471747,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -215757,7 +471813,7 @@ "13:00", "14:15", "HEN 313 - Hendrie Hall 313", - "https:\/\/map.yale.edu\/?id=1910#!m\/563676" + "https://map.yale.edu/?id=1910#!m/563676" ] ], "Thursday": [ @@ -215765,7 +471821,7 @@ "13:00", "14:15", "HEN 313 - Hendrie Hall 313", - "https:\/\/map.yale.edu\/?id=1910#!m\/563676" + "https://map.yale.edu/?id=1910#!m/563676" ] ] }, @@ -215777,10 +471833,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84576\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84576/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -215819,7 +471903,7 @@ "16:00", "18:00", "HEN 201 - Hendrie Hall 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/563676" + "https://map.yale.edu/?id=1910#!m/563676" ] ] }, @@ -215834,7 +471918,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -215887,7 +471999,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -215958,7 +472098,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -215995,7 +472163,7 @@ "10:30", "12:00", "LEIGH 402 - Leigh Hall (435 College) 402", - "https:\/\/map.yale.edu\/?id=1910#!m\/559539" + "https://map.yale.edu/?id=1910#!m/559539" ] ] }, @@ -216010,7 +472178,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -216064,7 +472260,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -216118,7 +472342,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -216155,7 +472407,7 @@ "10:30", "11:50", "HEN 316 - Hendrie Hall 316", - "https:\/\/map.yale.edu\/?id=1910#!m\/563676" + "https://map.yale.edu/?id=1910#!m/563676" ] ] }, @@ -216170,7 +472422,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -216209,7 +472489,7 @@ "16:30", "18:30", "HEN 201 - Hendrie Hall 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/563676" + "https://map.yale.edu/?id=1910#!m/563676" ] ] }, @@ -216224,7 +472504,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -216269,7 +472577,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -216313,7 +472649,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -216358,7 +472722,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -216395,7 +472787,7 @@ "13:30", "15:30", "HEN 201 - Hendrie Hall 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/563676" + "https://map.yale.edu/?id=1910#!m/563676" ] ] }, @@ -216410,7 +472802,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -216454,7 +472874,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -216499,7 +472947,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -216544,7 +473020,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -216589,7 +473093,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -216634,7 +473166,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -216679,7 +473239,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -216722,7 +473310,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -216766,7 +473382,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -216811,7 +473455,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -216855,7 +473527,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -216899,7 +473599,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -216943,7 +473671,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -216987,7 +473743,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -217030,7 +473814,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -217074,7 +473886,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -217117,7 +473957,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -217161,7 +474029,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -217206,7 +474102,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -217250,7 +474174,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -217294,7 +474246,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -217338,7 +474318,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -217382,7 +474390,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -217425,7 +474461,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -217469,7 +474533,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -217513,7 +474605,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -217557,7 +474677,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -217601,7 +474749,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -217646,7 +474822,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -217690,7 +474894,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -217734,7 +474966,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -217778,7 +475038,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -217822,7 +475110,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -217866,7 +475182,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -217909,7 +475253,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -217952,12 +475324,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "2 credits per term. P\/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http:\/\/music.yale.edu\/study\/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", + "description": "2 credits per term. P/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http://music.yale.edu/study/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", "short_title": "Secndry Instrmnt--: Secndry I...", "title": "Secndry Instrmnt--: Secndry Instrmnt--BASS", "school": "MU", @@ -217992,15 +475392,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86830\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86830/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "2 credits per term. P\/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http:\/\/music.yale.edu\/study\/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", + "description": "2 credits per term. P/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http://music.yale.edu/study/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", "short_title": "Secndry Instrmnt--: Secndry I...", "title": "Secndry Instrmnt--: Secndry Instrmnt--CELLO", "school": "MU", @@ -218035,15 +475463,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86830\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86830/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "2 credits per term. P\/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http:\/\/music.yale.edu\/study\/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", + "description": "2 credits per term. P/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http://music.yale.edu/study/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", "short_title": "Secndry Instrmnt--: Secndry I...", "title": "Secndry Instrmnt--: Secndry Instrmnt--CHORAL COND", "school": "MU", @@ -218078,15 +475534,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86830\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86830/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "2 credits per term. P\/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http:\/\/music.yale.edu\/study\/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", + "description": "2 credits per term. P/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http://music.yale.edu/study/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", "short_title": "Secndry Instrmnt--: Secndry I...", "title": "Secndry Instrmnt--: Secndry Instrmnt--CLARINET", "school": "MU", @@ -218121,15 +475605,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86830\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86830/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "2 credits per term. P\/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http:\/\/music.yale.edu\/study\/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", + "description": "2 credits per term. P/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http://music.yale.edu/study/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", "short_title": "Secndry Instrmnt--: Secndry I...", "title": "Secndry Instrmnt--: Secndry Instrmnt--COMPOSITION", "school": "MU", @@ -218164,15 +475676,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86830\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86830/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "2 credits per term. P\/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http:\/\/music.yale.edu\/study\/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", + "description": "2 credits per term. P/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http://music.yale.edu/study/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", "short_title": "Secndry Instrmnt--: Secndry I...", "title": "Secndry Instrmnt--: Secndry Instrmnt--FLUTE", "school": "MU", @@ -218207,15 +475747,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86830\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86830/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "2 credits per term. P\/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http:\/\/music.yale.edu\/study\/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", + "description": "2 credits per term. P/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http://music.yale.edu/study/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", "short_title": "Secndry Instrmnt--: Secndry I...", "title": "Secndry Instrmnt--: Secndry Instrmnt--FRENCH HORN", "school": "MU", @@ -218250,15 +475818,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86830\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86830/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "2 credits per term. P\/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http:\/\/music.yale.edu\/study\/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", + "description": "2 credits per term. P/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http://music.yale.edu/study/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", "short_title": "Secndry Instrmnt--: Secndry I...", "title": "Secndry Instrmnt--: Secndry Instrmnt--GUITAR", "school": "MU", @@ -218293,15 +475889,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86830\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86830/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "2 credits per term. P\/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http:\/\/music.yale.edu\/study\/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", + "description": "2 credits per term. P/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http://music.yale.edu/study/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", "short_title": "Secndry Instrmnt--: Secndry I...", "title": "Secndry Instrmnt--: Secndry Instrmnt--HARP", "school": "MU", @@ -218336,15 +475960,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86830\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86830/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "2 credits per term. P\/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http:\/\/music.yale.edu\/study\/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", + "description": "2 credits per term. P/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http://music.yale.edu/study/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", "short_title": "Secndry Instrmnt--: Secndry I...", "title": "Secndry Instrmnt--: Secndry Instrmnt--HARPSICHORD", "school": "MU", @@ -218379,15 +476031,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86830\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86830/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "2 credits per term. P\/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http:\/\/music.yale.edu\/study\/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", + "description": "2 credits per term. P/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http://music.yale.edu/study/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", "short_title": "Secndry Instrmnt--: Secndry I...", "title": "Secndry Instrmnt--: Secndry Instrmnt--OBOE", "school": "MU", @@ -218422,15 +476102,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86830\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86830/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "2 credits per term. P\/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http:\/\/music.yale.edu\/study\/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", + "description": "2 credits per term. P/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http://music.yale.edu/study/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", "short_title": "Secndry Instrmnt--: Secndry I...", "title": "Secndry Instrmnt--: Secndry Instrmnt--ORCH COND", "school": "MU", @@ -218465,15 +476173,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86830\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86830/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "2 credits per term. P\/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http:\/\/music.yale.edu\/study\/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", + "description": "2 credits per term. P/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http://music.yale.edu/study/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", "short_title": "Secndry Instrmnt--: Secndry I...", "title": "Secndry Instrmnt--: Secndry Instrmnt--ORGAN", "school": "MU", @@ -218508,15 +476244,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86830\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86830/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "2 credits per term. P\/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http:\/\/music.yale.edu\/study\/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", + "description": "2 credits per term. P/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http://music.yale.edu/study/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", "short_title": "Secndry Instrmnt--: Secndry I...", "title": "Secndry Instrmnt--: Secndry Instrmnt--PERCUSSION", "school": "MU", @@ -218551,15 +476315,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86830\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86830/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "2 credits per term. P\/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http:\/\/music.yale.edu\/study\/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", + "description": "2 credits per term. P/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http://music.yale.edu/study/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", "short_title": "Secndry Instrmnt--: Secndry I...", "title": "Secndry Instrmnt--: Secndry Instrmnt--PIANO", "school": "MU", @@ -218594,15 +476386,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86830\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86830/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "2 credits per term. P\/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http:\/\/music.yale.edu\/study\/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", + "description": "2 credits per term. P/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http://music.yale.edu/study/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", "short_title": "Secndry Instrmnt--: Secndry I...", "title": "Secndry Instrmnt--: Secndry Instrmnt--SAXOPHONE", "school": "MU", @@ -218637,15 +476457,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86830\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86830/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "2 credits per term. P\/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http:\/\/music.yale.edu\/study\/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", + "description": "2 credits per term. P/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http://music.yale.edu/study/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", "short_title": "Secndry Instrmnt--: Secndry I...", "title": "Secndry Instrmnt--: Secndry Instrmnt--TROMBONE", "school": "MU", @@ -218680,15 +476528,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86830\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86830/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "2 credits per term. P\/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http:\/\/music.yale.edu\/study\/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", + "description": "2 credits per term. P/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http://music.yale.edu/study/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", "short_title": "Secndry Instrmnt--: Secndry I...", "title": "Secndry Instrmnt--: Secndry Instrmnt--TRUMPET", "school": "MU", @@ -218723,15 +476599,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86830\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86830/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "2 credits per term. P\/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http:\/\/music.yale.edu\/study\/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", + "description": "2 credits per term. P/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http://music.yale.edu/study/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", "short_title": "Secndry Instrmnt--: Secndry I...", "title": "Secndry Instrmnt--: Secndry Instrmnt--TUBA", "school": "MU", @@ -218766,15 +476670,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86830\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86830/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "2 credits per term. P\/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http:\/\/music.yale.edu\/study\/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", + "description": "2 credits per term. P/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http://music.yale.edu/study/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", "short_title": "Secndry Instrmnt--: Secndry I...", "title": "Secndry Instrmnt--: Secndry Instrmnt--VIOLA", "school": "MU", @@ -218809,15 +476741,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86830\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86830/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "2 credits per term. P\/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http:\/\/music.yale.edu\/study\/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", + "description": "2 credits per term. P/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http://music.yale.edu/study/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", "short_title": "Secndry Instrmnt--: Secndry I...", "title": "Secndry Instrmnt--: Secndry Instrmnt--VIOLIN", "school": "MU", @@ -218852,15 +476812,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86830\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86830/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "2 credits per term. P\/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http:\/\/music.yale.edu\/study\/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", + "description": "2 credits per term. P/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http://music.yale.edu/study/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", "short_title": "Secndry Instrmnt--: Secndry I...", "title": "Secndry Instrmnt--: Secndry Instrmnt--VOICE", "school": "MU", @@ -218895,10 +476883,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86830\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86830/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -218972,7 +476988,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -219032,15 +477076,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86873\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86873/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--BASS", "school": "MU", @@ -219080,12 +477152,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--BASSOON", "school": "MU", @@ -219123,12 +477223,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--CELLO", "school": "MU", @@ -219168,12 +477296,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--CHORAL COND", "school": "MU", @@ -219207,7 +477363,7 @@ "13:30", "15:30", "HEN 201 - Hendrie Hall 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/563676" + "https://map.yale.edu/?id=1910#!m/563676" ] ] }, @@ -219222,12 +477378,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--CLARINET", "school": "MU", @@ -219267,12 +477451,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--COMPOSITION", "school": "MU", @@ -219321,12 +477533,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--FLUTE", "school": "MU", @@ -219365,12 +477605,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--FRENCH HORN", "school": "MU", @@ -219410,12 +477678,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--GUITAR", "school": "MU", @@ -219448,7 +477744,7 @@ "16:00", "17:30", "HEN 313 - Hendrie Hall 313", - "https:\/\/map.yale.edu\/?id=1910#!m\/563676" + "https://map.yale.edu/?id=1910#!m/563676" ] ] }, @@ -219463,12 +477759,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--HARP", "school": "MU", @@ -219507,12 +477831,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--HARPSICHORD", "school": "MU", @@ -219551,12 +477903,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--OBOE", "school": "MU", @@ -219595,12 +477975,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--ORCH COND", "school": "MU", @@ -219638,12 +478046,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--ORGAN", "school": "MU", @@ -219682,12 +478118,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--PERCUSSION", "school": "MU", @@ -219726,12 +478190,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--TROMBONE", "school": "MU", @@ -219770,12 +478262,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--TRUMPET", "school": "MU", @@ -219815,12 +478335,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--TUBA", "school": "MU", @@ -219859,12 +478407,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--VIOLA", "school": "MU", @@ -219903,12 +478479,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--VIOLIN", "school": "MU", @@ -219947,12 +478551,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--VIOLIN", "school": "MU", @@ -219991,12 +478623,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--VIOLIN", "school": "MU", @@ -220035,12 +478695,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--VIOLIN", "school": "MU", @@ -220079,12 +478767,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--VOICE", "school": "MU", @@ -220123,12 +478839,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--VOICE", "school": "MU", @@ -220166,7 +478910,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -220210,7 +478982,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -220247,7 +479047,7 @@ "10:30", "12:20", "CCAM - CCAM", - "https:\/\/map.yale.edu\/?id=1910#!m\/560098" + "https://map.yale.edu/?id=1910#!m/560098" ] ] }, @@ -220262,7 +479062,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -220299,7 +479127,7 @@ "12:30", "14:20", "LEIGH PARK - Leigh Hall (435 College) PARK", - "https:\/\/map.yale.edu\/?id=1910#!m\/559539" + "https://map.yale.edu/?id=1910#!m/559539" ] ] }, @@ -220314,7 +479142,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -220374,7 +479230,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -220411,7 +479295,7 @@ "10:30", "12:20", "HEN 313 - Hendrie Hall 313", - "https:\/\/map.yale.edu\/?id=1910#!m\/563676" + "https://map.yale.edu/?id=1910#!m/563676" ] ] }, @@ -220423,10 +479307,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86852\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86852/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -220465,7 +479377,7 @@ "16:00", "17:50", "HEN 313 - Hendrie Hall 313", - "https:\/\/map.yale.edu\/?id=1910#!m\/563676" + "https://map.yale.edu/?id=1910#!m/563676" ] ] }, @@ -220479,10 +479391,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85867\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85867/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -220519,7 +479459,7 @@ "10:30", "11:45", "LEIGH 402 - Leigh Hall (435 College) 402", - "https:\/\/map.yale.edu\/?id=1910#!m\/559539" + "https://map.yale.edu/?id=1910#!m/559539" ] ], "Wednesday": [ @@ -220527,7 +479467,7 @@ "10:30", "11:45", "LEIGH 402 - Leigh Hall (435 College) 402", - "https:\/\/map.yale.edu\/?id=1910#!m\/559539" + "https://map.yale.edu/?id=1910#!m/559539" ] ] }, @@ -220542,7 +479482,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -220580,7 +479548,7 @@ "9:25", "11:15", "HEN 313 - Hendrie Hall 313", - "https:\/\/map.yale.edu\/?id=1910#!m\/563676" + "https://map.yale.edu/?id=1910#!m/563676" ] ] }, @@ -220592,10 +479560,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86172\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86172/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -220647,7 +479643,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -220685,7 +479709,7 @@ "14:00", "15:30", "SDQ - SDQ", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -220697,17 +479721,45 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86862\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86862/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", "description": "2 credits per term. A language course designed specifically for the needs of singers. Intensive work on pronunciation, grammar, and literature throughout the term. French, German, English, Italian, Russian, and Latin are offered in alternating terms. Required.", - "short_title": "LyricDiction\/Singers: LyricDi...", - "title": "LyricDiction\/Singers: LyricDiction\/Singers-FRENCH", + "short_title": "LyricDiction/Singers: LyricDi...", + "title": "LyricDiction/Singers: LyricDiction/Singers-FRENCH", "school": "MU", "credits": 0.0, "extra_info": "ACTIVE", @@ -220752,14 +479804,42 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", "description": "2 credits per term. A language course designed specifically for the needs of singers. Intensive work on pronunciation, grammar, and literature throughout the term. French, German, English, Italian, Russian, and Latin are offered in alternating terms. Required.", - "short_title": "LyricDiction\/Singers: LyricDi...", - "title": "LyricDiction\/Singers: LyricDiction\/Singers-ITALIAN", + "short_title": "LyricDiction/Singers: LyricDi...", + "title": "LyricDiction/Singers: LyricDiction/Singers-ITALIAN", "school": "MU", "credits": 0.0, "extra_info": "ACTIVE", @@ -220789,7 +479869,7 @@ "10:30", "12:00", "HEN 114 - Hendrie Hall 114", - "https:\/\/map.yale.edu\/?id=1910#!m\/563676" + "https://map.yale.edu/?id=1910#!m/563676" ] ] }, @@ -220804,14 +479884,42 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", "description": "2 credits per term. A language course designed specifically for the needs of singers. Intensive work on pronunciation, grammar, and literature throughout the term. French, German, English, Italian, Russian, and Latin are offered in alternating terms. Required.", - "short_title": "LyricDiction\/Singers: LyricDi...", - "title": "LyricDiction\/Singers: LyricDiction\/Singers-ITALIAN", + "short_title": "LyricDiction/Singers: LyricDi...", + "title": "LyricDiction/Singers: LyricDiction/Singers-ITALIAN", "school": "MU", "credits": 0.0, "extra_info": "ACTIVE", @@ -220841,7 +479949,7 @@ "12:00", "13:30", "HEN 114 - Hendrie Hall 114", - "https:\/\/map.yale.edu\/?id=1910#!m\/563676" + "https://map.yale.edu/?id=1910#!m/563676" ] ] }, @@ -220856,7 +479964,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -220894,7 +480030,7 @@ "10:30", "12:15", "HEN 114 - Hendrie Hall 114", - "https:\/\/map.yale.edu\/?id=1910#!m\/563676" + "https://map.yale.edu/?id=1910#!m/563676" ] ] }, @@ -220909,7 +480045,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -220994,7 +480158,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -221037,14 +480229,42 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", "description": "1 credit per term. Individual private coaching in the art song repertoire, in preparation for required recitals. Students are coached on such elements of musical style as phrasing, rubato, and articulation, and in English, French, Italian, German, and Spanish diction. Students are expected to bring their recital accompaniments to coaching sessions as their recital times approach.", "short_title": "Art Song Coaching for Singers...", - "title": "Art Song Coaching for Singers: Art Song Coaching\/Singers ISM", + "title": "Art Song Coaching for Singers: Art Song Coaching/Singers ISM", "school": "MU", "credits": 0.0, "extra_info": "ACTIVE", @@ -221081,7 +480301,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -221118,7 +480366,7 @@ "10:30", "12:20", "SML - SML", - "https:\/\/map.yale.edu\/?id=1910#!m\/563698" + "https://map.yale.edu/?id=1910#!m/563698" ] ] }, @@ -221133,7 +480381,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -221179,12 +480455,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "4 credits. NP. Group B. The musical development in the seventeenth century, the freer use of the dissonance in Monteverdi's \"seconda prattica,\" the liberation of the solo voice through the introduction of the basso continuo, and finally the \"invention\" of opera as one of the leading genres for musical innovation provided the composer with a vast array of new possibilities to express human emotions in music. These developments in music went along with a paradigm shift in theology and piety in the seventeenth century; contemporary theologians emphasized the individual and his\/her relationship with the divine. There was a revival of medieval mysticism, and metaphors of love and emotion were frequently used in religious poetry and devotional prose. The image of bridegroom (Christ) and bride (believer) was especially popular and led numerous composers to set sacred dialogues between the two \"lovers\" to music. The course examines the theological and musical developments in the seventeenth century and analyzes the relationship among the musical, literary, philosophical, and theological discourses during the Baroque. Follows Graduate School academic calendar.", + "description": "4 credits. NP. Group B. The musical development in the seventeenth century, the freer use of the dissonance in Monteverdi's \"seconda prattica,\" the liberation of the solo voice through the introduction of the basso continuo, and finally the \"invention\" of opera as one of the leading genres for musical innovation provided the composer with a vast array of new possibilities to express human emotions in music. These developments in music went along with a paradigm shift in theology and piety in the seventeenth century; contemporary theologians emphasized the individual and his/her relationship with the divine. There was a revival of medieval mysticism, and metaphors of love and emotion were frequently used in religious poetry and devotional prose. The image of bridegroom (Christ) and bride (believer) was especially popular and led numerous composers to set sacred dialogues between the two \"lovers\" to music. The course examines the theological and musical developments in the seventeenth century and analyzes the relationship among the musical, literary, philosophical, and theological discourses during the Baroque. Follows Graduate School academic calendar.", "short_title": "Intimacy, Love, and Devotion ...", "title": "Intimacy, Love, and Devotion in Seventeenth-Century Music", "school": "MU", @@ -221216,7 +480520,7 @@ "13:30", "15:20", "PR406 203 - 406 Prospect St., Miller Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/559978" + "https://map.yale.edu/?id=1910#!m/559978" ] ] }, @@ -221228,15 +480532,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86881\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86881/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "1 credit per term. NP. P\/F. Participation in seminars led by faculty and guest lecturers on topics concerning theology, music, worship, and related arts. Counts as one NP in the fourth term. Required of all Institute of Sacred Music students.", + "description": "1 credit per term. NP. P/F. Participation in seminars led by faculty and guest lecturers on topics concerning theology, music, worship, and related arts. Counts as one NP in the fourth term. Required of all Institute of Sacred Music students.", "short_title": "ISM Colloquium", "title": "ISM Colloquium", "school": "MU", @@ -221271,7 +480603,7 @@ "15:30", "17:20", "SDQ GREAT - Sterling Divinity Quadrangle GREAT", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -221286,7 +480618,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -221338,7 +480698,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -221381,7 +480769,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -221421,7 +480837,7 @@ "9:25", "11:15", "HEN 214 - Hendrie Hall 214", - "https:\/\/map.yale.edu\/?id=1910#!m\/563676" + "https://map.yale.edu/?id=1910#!m/563676" ] ] }, @@ -221433,10 +480849,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86824\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86824/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -221475,7 +480919,7 @@ "16:00", "18:00", "HEN 201 - Hendrie Hall 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/563676" + "https://map.yale.edu/?id=1910#!m/563676" ] ] }, @@ -221490,7 +480934,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -221543,7 +481015,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -221614,7 +481114,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -221668,7 +481196,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -221722,7 +481278,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -221761,7 +481345,7 @@ "16:30", "18:30", "HEN 201 - Hendrie Hall 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/563676" + "https://map.yale.edu/?id=1910#!m/563676" ] ] }, @@ -221776,7 +481360,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -221821,7 +481433,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -221865,7 +481505,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -221910,7 +481578,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -221947,7 +481643,7 @@ "13:30", "15:30", "HEN 201 - Hendrie Hall 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/563676" + "https://map.yale.edu/?id=1910#!m/563676" ] ] }, @@ -221962,7 +481658,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -222006,7 +481730,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -222051,7 +481803,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -222096,7 +481876,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -222141,7 +481949,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -222186,7 +482022,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -222231,7 +482095,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -222274,7 +482166,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -222318,7 +482238,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -222363,7 +482311,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -222407,7 +482383,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -222451,7 +482455,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -222495,7 +482527,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -222539,7 +482599,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -222583,7 +482671,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -222627,7 +482743,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -222672,7 +482816,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -222716,7 +482888,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -222760,7 +482960,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -222804,7 +483032,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -222848,7 +483104,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -222891,7 +483175,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -222935,7 +483247,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -222979,7 +483319,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -223023,7 +483391,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -223067,7 +483463,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -223112,7 +483536,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -223156,7 +483608,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -223200,7 +483680,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -223244,7 +483752,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -223288,7 +483824,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -223332,7 +483896,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -223375,12 +483967,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "2 credits per term. P\/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http:\/\/music.yale.edu\/study\/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", + "description": "2 credits per term. P/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http://music.yale.edu/study/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", "short_title": "Secndry Instrmnt--: Secndry I...", "title": "Secndry Instrmnt--: Secndry Instrmnt--BASS", "school": "MU", @@ -223415,15 +484035,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86830\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86830/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "2 credits per term. P\/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http:\/\/music.yale.edu\/study\/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", + "description": "2 credits per term. P/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http://music.yale.edu/study/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", "short_title": "Secndry Instrmnt--: Secndry I...", "title": "Secndry Instrmnt--: Secndry Instrmnt--BASSOON", "school": "MU", @@ -223458,15 +484106,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86830\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86830/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "2 credits per term. P\/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http:\/\/music.yale.edu\/study\/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", + "description": "2 credits per term. P/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http://music.yale.edu/study/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", "short_title": "Secndry Instrmnt--: Secndry I...", "title": "Secndry Instrmnt--: Secndry Instrmnt--CELLO", "school": "MU", @@ -223501,15 +484177,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86830\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86830/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "2 credits per term. P\/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http:\/\/music.yale.edu\/study\/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", + "description": "2 credits per term. P/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http://music.yale.edu/study/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", "short_title": "Secndry Instrmnt--: Secndry I...", "title": "Secndry Instrmnt--: Secndry Instrmnt--CHORAL COND", "school": "MU", @@ -223544,15 +484248,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86830\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86830/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "2 credits per term. P\/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http:\/\/music.yale.edu\/study\/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", + "description": "2 credits per term. P/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http://music.yale.edu/study/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", "short_title": "Secndry Instrmnt--: Secndry I...", "title": "Secndry Instrmnt--: Secndry Instrmnt--CLARINET", "school": "MU", @@ -223587,15 +484319,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86830\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86830/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "2 credits per term. P\/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http:\/\/music.yale.edu\/study\/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", + "description": "2 credits per term. P/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http://music.yale.edu/study/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", "short_title": "Secndry Instrmnt--: Secndry I...", "title": "Secndry Instrmnt--: Secndry Instrmnt--COMPOSITION", "school": "MU", @@ -223630,15 +484390,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86830\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86830/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "2 credits per term. P\/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http:\/\/music.yale.edu\/study\/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", + "description": "2 credits per term. P/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http://music.yale.edu/study/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", "short_title": "Secndry Instrmnt--: Secndry I...", "title": "Secndry Instrmnt--: Secndry Instrmnt--FLUTE", "school": "MU", @@ -223673,15 +484461,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86830\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86830/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "2 credits per term. P\/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http:\/\/music.yale.edu\/study\/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", + "description": "2 credits per term. P/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http://music.yale.edu/study/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", "short_title": "Secndry Instrmnt--: Secndry I...", "title": "Secndry Instrmnt--: Secndry Instrmnt--FRENCH HORN", "school": "MU", @@ -223716,15 +484532,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86830\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86830/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "2 credits per term. P\/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http:\/\/music.yale.edu\/study\/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", + "description": "2 credits per term. P/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http://music.yale.edu/study/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", "short_title": "Secndry Instrmnt--: Secndry I...", "title": "Secndry Instrmnt--: Secndry Instrmnt--GUITAR", "school": "MU", @@ -223759,15 +484603,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86830\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86830/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "2 credits per term. P\/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http:\/\/music.yale.edu\/study\/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", + "description": "2 credits per term. P/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http://music.yale.edu/study/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", "short_title": "Secndry Instrmnt--: Secndry I...", "title": "Secndry Instrmnt--: Secndry Instrmnt--HARP", "school": "MU", @@ -223802,15 +484674,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86830\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86830/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "2 credits per term. P\/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http:\/\/music.yale.edu\/study\/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", + "description": "2 credits per term. P/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http://music.yale.edu/study/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", "short_title": "Secndry Instrmnt--: Secndry I...", "title": "Secndry Instrmnt--: Secndry Instrmnt--HARPSICHORD", "school": "MU", @@ -223845,15 +484745,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86830\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86830/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "2 credits per term. P\/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http:\/\/music.yale.edu\/study\/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", + "description": "2 credits per term. P/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http://music.yale.edu/study/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", "short_title": "Secndry Instrmnt--: Secndry I...", "title": "Secndry Instrmnt--: Secndry Instrmnt--OBOE", "school": "MU", @@ -223888,15 +484816,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86830\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86830/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "2 credits per term. P\/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http:\/\/music.yale.edu\/study\/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", + "description": "2 credits per term. P/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http://music.yale.edu/study/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", "short_title": "Secndry Instrmnt--: Secndry I...", "title": "Secndry Instrmnt--: Secndry Instrmnt--ORGAN", "school": "MU", @@ -223931,15 +484887,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86830\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86830/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "2 credits per term. P\/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http:\/\/music.yale.edu\/study\/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", + "description": "2 credits per term. P/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http://music.yale.edu/study/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", "short_title": "Secndry Instrmnt--: Secndry I...", "title": "Secndry Instrmnt--: Secndry Instrmnt--PERCUSSION", "school": "MU", @@ -223974,15 +484958,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86830\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86830/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "2 credits per term. P\/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http:\/\/music.yale.edu\/study\/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", + "description": "2 credits per term. P/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http://music.yale.edu/study/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", "short_title": "Secndry Instrmnt--: Secndry I...", "title": "Secndry Instrmnt--: Secndry Instrmnt--PIANO", "school": "MU", @@ -224017,15 +485029,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86830\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86830/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "2 credits per term. P\/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http:\/\/music.yale.edu\/study\/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", + "description": "2 credits per term. P/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http://music.yale.edu/study/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", "short_title": "Secndry Instrmnt--: Secndry I...", "title": "Secndry Instrmnt--: Secndry Instrmnt--SAXOPHONE", "school": "MU", @@ -224060,15 +485100,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86830\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86830/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "2 credits per term. P\/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http:\/\/music.yale.edu\/study\/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", + "description": "2 credits per term. P/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http://music.yale.edu/study/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", "short_title": "Secndry Instrmnt--: Secndry I...", "title": "Secndry Instrmnt--: Secndry Instrmnt--TROMBONE", "school": "MU", @@ -224103,15 +485171,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86830\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86830/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "2 credits per term. P\/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http:\/\/music.yale.edu\/study\/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", + "description": "2 credits per term. P/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http://music.yale.edu/study/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", "short_title": "Secndry Instrmnt--: Secndry I...", "title": "Secndry Instrmnt--: Secndry Instrmnt--TRUMPET", "school": "MU", @@ -224146,15 +485242,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86830\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86830/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "2 credits per term. P\/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http:\/\/music.yale.edu\/study\/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", + "description": "2 credits per term. P/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http://music.yale.edu/study/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", "short_title": "Secndry Instrmnt--: Secndry I...", "title": "Secndry Instrmnt--: Secndry Instrmnt--TUBA", "school": "MU", @@ -224189,15 +485313,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86830\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86830/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "2 credits per term. P\/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http:\/\/music.yale.edu\/study\/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", + "description": "2 credits per term. P/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http://music.yale.edu/study/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", "short_title": "Secndry Instrmnt--: Secndry I...", "title": "Secndry Instrmnt--: Secndry Instrmnt--VIOLA", "school": "MU", @@ -224232,15 +485384,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86830\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86830/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "2 credits per term. P\/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http:\/\/music.yale.edu\/study\/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", + "description": "2 credits per term. P/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http://music.yale.edu/study/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", "short_title": "Secndry Instrmnt--: Secndry I...", "title": "Secndry Instrmnt--: Secndry Instrmnt--VIOLIN", "school": "MU", @@ -224275,15 +485455,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86830\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86830/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "2 credits per term. P\/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http:\/\/music.yale.edu\/study\/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", + "description": "2 credits per term. P/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http://music.yale.edu/study/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", "short_title": "Secndry Instrmnt--: Secndry I...", "title": "Secndry Instrmnt--: Secndry Instrmnt--VOICE", "school": "MU", @@ -224318,10 +485526,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86830\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86830/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -224395,7 +485631,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -224455,15 +485719,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86873\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86873/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--BASS", "school": "MU", @@ -224503,12 +485795,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--BASSOON", "school": "MU", @@ -224546,12 +485866,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--CELLO", "school": "MU", @@ -224591,12 +485939,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--CHORAL COND", "school": "MU", @@ -224630,7 +486006,7 @@ "13:30", "15:30", "HEN 201 - Hendrie Hall 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/563676" + "https://map.yale.edu/?id=1910#!m/563676" ] ] }, @@ -224645,12 +486021,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--CLARINET", "school": "MU", @@ -224690,12 +486094,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--COMPOSITION", "school": "MU", @@ -224744,12 +486176,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--FLUTE", "school": "MU", @@ -224788,12 +486248,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--FRENCH HORN", "school": "MU", @@ -224833,12 +486321,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--GUITAR", "school": "MU", @@ -224871,7 +486387,7 @@ "16:00", "17:30", "HEN 313 - Hendrie Hall 313", - "https:\/\/map.yale.edu\/?id=1910#!m\/563676" + "https://map.yale.edu/?id=1910#!m/563676" ] ] }, @@ -224886,12 +486402,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--HARP", "school": "MU", @@ -224930,12 +486474,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--HARPSICHORD", "school": "MU", @@ -224974,12 +486546,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--OBOE", "school": "MU", @@ -225018,12 +486618,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--ORGAN", "school": "MU", @@ -225062,12 +486690,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--PERCUSSION", "school": "MU", @@ -225106,12 +486762,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--TROMBONE", "school": "MU", @@ -225150,12 +486834,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--TRUMPET", "school": "MU", @@ -225195,12 +486907,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--TUBA", "school": "MU", @@ -225239,12 +486979,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--VIOLA", "school": "MU", @@ -225283,12 +487051,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--VIOLIN", "school": "MU", @@ -225327,12 +487123,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--VIOLIN", "school": "MU", @@ -225371,12 +487195,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--VIOLIN", "school": "MU", @@ -225415,12 +487267,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--VIOLIN", "school": "MU", @@ -225459,12 +487339,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--VOICE", "school": "MU", @@ -225503,12 +487411,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--VOICE", "school": "MU", @@ -225546,7 +487482,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -225590,12 +487554,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "4 credits. NP. Group A. This course uses the art song as a lens for exploring the seismic changes to musical style and expression that occurred in Europe between 1875 and 1915. Its concerns are, above all, analytical: through close engagement with dozens of individual songs (for voice and piano, orchestra, or chamber ensemble), we\u2019ll chart the many new approaches to harmony, melody, form and text-setting that emerged in this critical period. But we\u2019ll also take a keen interest in questions of method, asking of each new piece which analytical tools\u2014among many\u2014are the most illuminating and appropriate. In so doing, we\u2019ll find that the richest approach demands a toolkit as creative and eclectic as the repertoire itself, along with analytical flexibility and a thoughtful ear. Our principle corpus will be songs set in German (Mahler, Wolf, Strauss, Berg, Schoenberg) and French (Faur\u00e9, Debussy, Ravel). But depending on student interest, we may branch into other repertories as well, including works by contemporary Russian, British, and\/or Nordic composers (e.g., Mussorgsky, Vaughan Williams, Grieg, or Sibelius). Course requirements include weekly listening, reading, and analysis; occasional oral presentations; and a final analysis project on repertoire chosen by the student.", + "description": "4 credits. NP. Group A. This course uses the art song as a lens for exploring the seismic changes to musical style and expression that occurred in Europe between 1875 and 1915. Its concerns are, above all, analytical: through close engagement with dozens of individual songs (for voice and piano, orchestra, or chamber ensemble), we\u2019ll chart the many new approaches to harmony, melody, form and text-setting that emerged in this critical period. But we\u2019ll also take a keen interest in questions of method, asking of each new piece which analytical tools\u2014among many\u2014are the most illuminating and appropriate. In so doing, we\u2019ll find that the richest approach demands a toolkit as creative and eclectic as the repertoire itself, along with analytical flexibility and a thoughtful ear. Our principle corpus will be songs set in German (Mahler, Wolf, Strauss, Berg, Schoenberg) and French (Faur\u00e9, Debussy, Ravel). But depending on student interest, we may branch into other repertories as well, including works by contemporary Russian, British, and/or Nordic composers (e.g., Mussorgsky, Vaughan Williams, Grieg, or Sibelius). Course requirements include weekly listening, reading, and analysis; occasional oral presentations; and a final analysis project on repertoire chosen by the student.", "short_title": "Approaches to Fin-de-si\u00e8cle Song", "title": "Approaches to Fin-de-si\u00e8cle Song", "school": "MU", @@ -225627,7 +487619,7 @@ "10:30", "11:45", "LEIGH PARK - Leigh Hall (435 College) PARK", - "https:\/\/map.yale.edu\/?id=1910#!m\/559539" + "https://map.yale.edu/?id=1910#!m/559539" ] ], "Wednesday": [ @@ -225635,7 +487627,7 @@ "10:30", "11:45", "LEIGH PARK - Leigh Hall (435 College) PARK", - "https:\/\/map.yale.edu\/?id=1910#!m\/559539" + "https://map.yale.edu/?id=1910#!m/559539" ] ] }, @@ -225650,7 +487642,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -225687,7 +487707,7 @@ "9:00", "10:15", "LEIGH 211 - Leigh Hall (435 College) 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/559539" + "https://map.yale.edu/?id=1910#!m/559539" ] ], "Thursday": [ @@ -225695,7 +487715,7 @@ "9:00", "10:15", "LEIGH 211 - Leigh Hall (435 College) 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/559539" + "https://map.yale.edu/?id=1910#!m/559539" ] ] }, @@ -225710,7 +487730,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -225748,7 +487796,7 @@ "9:25", "11:15", "HEN 316 - Hendrie Hall 316", - "https:\/\/map.yale.edu\/?id=1910#!m\/563676" + "https://map.yale.edu/?id=1910#!m/563676" ] ] }, @@ -225760,15 +487808,112 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86036\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86036/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "", - "description": "4 credits. NP. Group B or C. This course is designed to help each student contextualize the lineage, life, and legacy of Langston Hughes within the broader understanding of American history and American musical culture from the Civil War to present; identify the variety of social, cultural, racial, ethnic, gendered, and migratory contexts that inform our collective musical identity and our individual artistic aesthetics; identify the broad swath of composers inspired by Hughes\u2019s writing and\/or connected to Hughes directly and evaluate representative compositions for how Hughes\u2019s literary style takes on musical form; communicate in both written and verbal form their unique perspective on the music, composers, and topics discussed; and integrate their knowledge\/understanding\/perspective on the music inspired by Hughes\u2019s literary contributions to create concert programming reflective of humanity\u2019s inherent diversity. Students complete weekly readings, viewings, and\/or listening on Hughes\u2019s life in preparation for class discussion, and research major events in American history (e.g., the Civil War, Reconstruction, WWI, the Great Migration, etc.) to situate class discussions in their historical context. Assignments include five two-page responses to reflection questions based on the composers, compositions, and historical events discussed in class; a ten-page research paper on a topic inspired by the course content in consultation with the instructor (topics that connect the course material to a student\u2019s individual performance, composition, or research interests are encouraged); and a group presentation in the form of a Concert Proposal. The proposal will include the proposed program (including at least one composition using Hughes\u2019s words or inspired by Hughes\u2019s writing), publicity materials, personnel, venue, budget\/funding, and a sample performance of a work from the program.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988057613372803, + 0.9988449811935425, + 0.9978708028793335, + 0.9988021850585938, + 0.998769223690033 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989227652549744, + 0.9988752007484436, + 0.9994775652885437, + 0.998547375202179, + 0.9987305998802185 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988570213317871, + 0.9989266991615295, + 0.9986562728881836, + 0.9989192485809326, + 0.9988545179367065 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 0.8666666666666667, + "final_counts": { + "POSITIVE": 13, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8666666666666667, + "NEGATIVE": 0.13333333333333333 + } + } + }, + { + "season_code": "202301", + "requirements": "", + "description": "4 credits. NP. Group B or C. This course is designed to help each student contextualize the lineage, life, and legacy of Langston Hughes within the broader understanding of American history and American musical culture from the Civil War to present; identify the variety of social, cultural, racial, ethnic, gendered, and migratory contexts that inform our collective musical identity and our individual artistic aesthetics; identify the broad swath of composers inspired by Hughes\u2019s writing and/or connected to Hughes directly and evaluate representative compositions for how Hughes\u2019s literary style takes on musical form; communicate in both written and verbal form their unique perspective on the music, composers, and topics discussed; and integrate their knowledge/understanding/perspective on the music inspired by Hughes\u2019s literary contributions to create concert programming reflective of humanity\u2019s inherent diversity. Students complete weekly readings, viewings, and/or listening on Hughes\u2019s life in preparation for class discussion, and research major events in American history (e.g., the Civil War, Reconstruction, WWI, the Great Migration, etc.) to situate class discussions in their historical context. Assignments include five two-page responses to reflection questions based on the composers, compositions, and historical events discussed in class; a ten-page research paper on a topic inspired by the course content in consultation with the instructor (topics that connect the course material to a student\u2019s individual performance, composition, or research interests are encouraged); and a group presentation in the form of a Concert Proposal. The proposal will include the proposed program (including at least one composition using Hughes\u2019s words or inspired by Hughes\u2019s writing), publicity materials, personnel, venue, budget/funding, and a sample performance of a work from the program.", "short_title": "The Literary Voice of Langsto...", "title": "The Literary Voice of Langston Hughes in American Music", "school": "MU", @@ -225800,7 +487945,7 @@ "10:30", "12:20", "HEN 316 - Hendrie Hall 316", - "https:\/\/map.yale.edu\/?id=1910#!m\/563676" + "https://map.yale.edu/?id=1910#!m/563676" ] ] }, @@ -225812,10 +487957,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86920\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86920/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -225875,7 +488048,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -225913,7 +488114,7 @@ "18:00", "21:00", "LEIGH 211 - Leigh Hall (435 College) 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/559539" + "https://map.yale.edu/?id=1910#!m/559539" ] ] }, @@ -225928,7 +488129,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -225965,7 +488194,7 @@ "10:20", "12:20", "LEIGH 402 - Leigh Hall (435 College) 402", - "https:\/\/map.yale.edu\/?id=1910#!m\/559539" + "https://map.yale.edu/?id=1910#!m/559539" ] ] }, @@ -225977,10 +488206,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86935\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86935/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -226032,7 +488289,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -226070,7 +488355,7 @@ "14:00", "15:30", "SDQ - SDQ", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -226082,10 +488367,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86862\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86862/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -226122,7 +488435,7 @@ "10:30", "12:20", "HEN 116 - Hendrie Hall 116", - "https:\/\/map.yale.edu\/?id=1910#!m\/563676" + "https://map.yale.edu/?id=1910#!m/563676" ] ] }, @@ -226134,15 +488447,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86944\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86944/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "2 credits. This course explores the improvisation of full organ symphony in four movements, Tryptique (Rondo-Aria-Theme\/variations), improvisation on visual images, text-based improvisation, and silent film. Classes typically are made up of two students, for a one-hour lesson on Mondays. The term culminates with an improvised recital, open to the public. In this recital, each student improvises for up to ten minutes on a submitted theme.", + "description": "2 credits. This course explores the improvisation of full organ symphony in four movements, Tryptique (Rondo-Aria-Theme/variations), improvisation on visual images, text-based improvisation, and silent film. Classes typically are made up of two students, for a one-hour lesson on Mondays. The term culminates with an improvised recital, open to the public. In this recital, each student improvises for up to ten minutes on a submitted theme.", "short_title": "Improvisation at the Organ III", "title": "Improvisation at the Organ III", "school": "MU", @@ -226183,12 +488524,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "1 credit per term. NP. P\/F. Participation in seminars led by faculty and guest lecturers on topics concerning theology, music, worship, and related arts. Counts as one NP in the fourth term. Required of all Institute of Sacred Music students.", + "description": "1 credit per term. NP. P/F. Participation in seminars led by faculty and guest lecturers on topics concerning theology, music, worship, and related arts. Counts as one NP in the fourth term. Required of all Institute of Sacred Music students.", "short_title": "ISM Colloquium", "title": "ISM Colloquium", "school": "MU", @@ -226223,7 +488592,7 @@ "15:30", "17:20", "SDQ GREAT - Sterling Divinity Quadrangle GREAT", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -226238,7 +488607,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -226277,7 +488674,7 @@ "16:00", "18:00", "HEN 201 - Hendrie Hall 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/563676" + "https://map.yale.edu/?id=1910#!m/563676" ] ] }, @@ -226292,7 +488689,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -226329,7 +488754,7 @@ "16:00", "18:00", "HEN 201 - Hendrie Hall 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/563676" + "https://map.yale.edu/?id=1910#!m/563676" ] ] }, @@ -226344,7 +488769,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -226415,7 +488868,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -226469,7 +488950,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -226523,7 +489032,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -226562,7 +489099,7 @@ "16:30", "18:30", "HEN 201 - Hendrie Hall 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/563676" + "https://map.yale.edu/?id=1910#!m/563676" ] ] }, @@ -226577,7 +489114,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -226622,7 +489187,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -226667,7 +489260,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -226704,7 +489325,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -226749,7 +489398,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -226794,7 +489471,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -226839,7 +489544,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -226884,7 +489617,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -226929,7 +489690,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -226974,7 +489763,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -227017,7 +489834,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -227060,7 +489905,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -227105,7 +489978,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -227148,7 +490049,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -227185,7 +490114,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -227228,7 +490185,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -227273,7 +490258,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -227316,7 +490329,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -227359,7 +490400,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -227402,12 +490471,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "2 credits per term. P\/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http:\/\/music.yale.edu\/study\/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", + "description": "2 credits per term. P/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http://music.yale.edu/study/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", "short_title": "Secndry Instrmnt--: Secndry I...", "title": "Secndry Instrmnt--: Secndry Instrmnt--BASS", "school": "MU", @@ -227442,15 +490539,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86830\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86830/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "2 credits per term. P\/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http:\/\/music.yale.edu\/study\/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", + "description": "2 credits per term. P/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http://music.yale.edu/study/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", "short_title": "Secndry Instrmnt--: Secndry I...", "title": "Secndry Instrmnt--: Secndry Instrmnt--HARPSICHORD", "school": "MU", @@ -227485,15 +490610,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86830\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86830/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "2 credits per term. P\/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http:\/\/music.yale.edu\/study\/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", + "description": "2 credits per term. P/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http://music.yale.edu/study/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", "short_title": "Secndry Instrmnt--: Secndry I...", "title": "Secndry Instrmnt--: Secndry Instrmnt--ORGAN", "school": "MU", @@ -227528,15 +490681,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86830\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86830/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "2 credits per term. P\/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http:\/\/music.yale.edu\/study\/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", + "description": "2 credits per term. P/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http://music.yale.edu/study/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", "short_title": "Secndry Instrmnt--: Secndry I...", "title": "Secndry Instrmnt--: Secndry Instrmnt--PIANO", "school": "MU", @@ -227571,15 +490752,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86830\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86830/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "2 credits per term. P\/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http:\/\/music.yale.edu\/study\/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", + "description": "2 credits per term. P/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http://music.yale.edu/study/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", "short_title": "Secndry Instrmnt--: Secndry I...", "title": "Secndry Instrmnt--: Secndry Instrmnt--PIANO", "school": "MU", @@ -227614,10 +490823,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86830\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86830/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -227691,7 +490928,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -227751,15 +491016,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86873\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86873/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--BASS", "school": "MU", @@ -227799,12 +491092,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--CELLO", "school": "MU", @@ -227844,12 +491165,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--CHORAL COND", "school": "MU", @@ -227883,7 +491232,7 @@ "13:30", "15:30", "HEN 201 - Hendrie Hall 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/563676" + "https://map.yale.edu/?id=1910#!m/563676" ] ] }, @@ -227898,12 +491247,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--CLARINET", "school": "MU", @@ -227943,12 +491320,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--COMPOSITION", "school": "MU", @@ -227997,12 +491402,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--FRENCH HORN", "school": "MU", @@ -228042,12 +491475,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--GUITAR", "school": "MU", @@ -228079,12 +491540,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--OBOE", "school": "MU", @@ -228122,12 +491611,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--PERCUSSION", "school": "MU", @@ -228165,12 +491682,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--TRUMPET", "school": "MU", @@ -228208,12 +491753,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--VIOLIN", "school": "MU", @@ -228251,12 +491824,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--VIOLIN", "school": "MU", @@ -228294,12 +491895,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--VIOLIN", "school": "MU", @@ -228337,7 +491966,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -228389,7 +492046,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -228435,7 +492120,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -228478,7 +492191,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -228521,7 +492262,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -228566,7 +492335,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -228609,14 +492406,42 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", "description": "", - "short_title": "Philharmonia\/New Music", - "title": "Philharmonia\/New Music", + "short_title": "Philharmonia/New Music", + "title": "Philharmonia/New Music", "school": "MU", "credits": 0.0, "extra_info": "ACTIVE", @@ -228683,7 +492508,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -228743,10 +492596,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86873\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86873/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -228789,7 +492670,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -228832,7 +492741,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -228869,7 +492806,7 @@ "10:30", "11:45", "LEIGH 211 - Leigh Hall (435 College) 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/559539" + "https://map.yale.edu/?id=1910#!m/559539" ] ], "Thursday": [ @@ -228877,7 +492814,7 @@ "10:30", "11:45", "LEIGH 211 - Leigh Hall (435 College) 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/559539" + "https://map.yale.edu/?id=1910#!m/559539" ] ] }, @@ -228889,10 +492826,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86945\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86945/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -228952,7 +492917,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -228990,7 +492983,7 @@ "14:30", "15:45", "AKW 123 - Arthur K. Watson Hall 123", - "https:\/\/map.yale.edu\/?id=1910#!m\/560119" + "https://map.yale.edu/?id=1910#!m/560119" ] ], "Thursday": [ @@ -228998,7 +492991,7 @@ "14:30", "15:45", "AKW 123 - Arthur K. Watson Hall 123", - "https:\/\/map.yale.edu\/?id=1910#!m\/560119" + "https://map.yale.edu/?id=1910#!m/560119" ] ] }, @@ -229012,10 +493005,99 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83694\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83694/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985823631286621, + 0.9976279139518738, + 0.998757004737854, + 0.99891197681427, + 0.9935252666473389 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9969820380210876, + 0.9970472455024719 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 1 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988306164741516, + 0.9981744289398193, + 0.9976102113723755, + 0.9982715845108032 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 0.9090909090909091, + "final_counts": { + "POSITIVE": 10, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + } + } }, { "season_code": "202301", @@ -229052,7 +493134,7 @@ "11:35", "12:50", "STOECK 107 - Stoeckel Hall (renovated) 107", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ], "Wednesday": [ @@ -229060,7 +493142,7 @@ "11:35", "12:50", "STOECK 107 - Stoeckel Hall (renovated) 107", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ] }, @@ -229076,10 +493158,93 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85713\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85713/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986748695373535, + 0.9988646507263184, + 0.9985933899879456, + 0.9987984895706177 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989117383956909, + 0.9988651275634766 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988791346549988, + 0.9989318251609802, + 0.9988715052604675 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 9 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -229116,7 +493281,7 @@ "11:35", "12:50", "STOECK 106 - Stoeckel Hall (renovated) 106", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ], "Thursday": [ @@ -229124,7 +493289,7 @@ "11:35", "12:50", "STOECK 106 - Stoeckel Hall (renovated) 106", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ] }, @@ -229136,10 +493301,189 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84535\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84535/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988646507263184, + 0.9987881779670715, + 0.9986658096313477, + 0.998903751373291, + 0.8596545457839966, + 0.995667576789856, + 0.9988123178482056, + 0.9985930323600769, + 0.9986945986747742, + 0.9985194802284241, + 0.998563826084137, + 0.9988724589347839, + 0.9988850951194763, + 0.9988002777099609, + 0.9987077713012695, + 0.9986972212791443, + 0.98933345079422, + 0.9987084865570068, + 0.9988849759101868 + ], + "sentiment_counts": { + "POSITIVE": 17, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8947368421052632, + "NEGATIVE": 0.10526315789473684 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8947368421052632 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988958835601807, + 0.9989221096038818, + 0.9988999366760254, + 0.998464822769165, + 0.998796820640564, + 0.9964163303375244, + 0.9988818764686584, + 0.9988790154457092, + 0.9972014427185059, + 0.9989186525344849, + 0.9801200032234192, + 0.9988002777099609, + 0.9989210367202759, + 0.9987988471984863, + 0.9994814991950989, + 0.9987926483154297, + 0.9988884329795837 + ], + "sentiment_counts": { + "POSITIVE": 15, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8823529411764706, + "NEGATIVE": 0.11764705882352941 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8823529411764706 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989019632339478, + 0.998630940914154, + 0.9986870884895325, + 0.9985201954841614, + 0.9989311099052429, + 0.9988353848457336, + 0.9987661838531494, + 0.6485497355461121, + 0.9985396862030029, + 0.998815655708313, + 0.9988400340080261, + 0.9981922507286072, + 0.9989205598831177, + 0.9988002777099609, + 0.9989187717437744, + 0.9988058805465698, + 0.9952024221420288, + 0.9987872242927551, + 0.9985254406929016, + 0.9989053010940552 + ], + "sentiment_counts": { + "POSITIVE": 19, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.95, + "NEGATIVE": 0.05 + }, + "sentiment_overall": [ + "POSITIVE", + 0.95 + ] + }, + "final_label": "POSITIVE", + "final_count": 51, + "final_proportion": 0.9107142857142857, + "final_counts": { + "POSITIVE": 51, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.9107142857142857, + "NEGATIVE": 0.08928571428571429 + } + } }, { "season_code": "202301", @@ -229179,7 +493523,7 @@ "9:25", "11:15", "STOECK 211 - Stoeckel Hall (renovated) 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ] }, @@ -229193,10 +493537,89 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85928\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85928/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988303780555725, + 0.9986567497253418 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989282488822937, + 0.9989056587219238 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998896598815918, + 0.998906135559082, + 0.9983211159706116 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 7 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -229233,7 +493656,7 @@ "13:00", "14:15", "STOECK 106 - Stoeckel Hall (renovated) 106", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ], "Wednesday": [ @@ -229241,7 +493664,7 @@ "13:00", "14:15", "STOECK 106 - Stoeckel Hall (renovated) 106", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ] }, @@ -229255,10 +493678,145 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85182\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/85182/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989296793937683, + 0.9988027811050415, + 0.9987868666648865, + 0.9988823533058167, + 0.9977021813392639, + 0.9987635612487793, + 0.998877227306366, + 0.9988523721694946, + 0.998866081237793, + 0.9988023042678833, + 0.9985724687576294 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998869001865387, + 0.998577356338501, + 0.997593104839325, + 0.9988681077957153, + 0.9989295601844788, + 0.9989191293716431, + 0.998770534992218, + 0.9988559484481812, + 0.9989325404167175, + 0.9988271594047546, + 0.998650848865509 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989027976989746, + 0.9935145378112793, + 0.9989250302314758, + 0.9988834261894226, + 0.9989262223243713, + 0.9988875985145569, + 0.9988483190536499, + 0.9988908171653748, + 0.9988079071044922, + 0.9989186525344849, + 0.9980168342590332, + 0.99886155128479 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9166666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 33, + "final_proportion": 0.9705882352941176, + "final_counts": { + "POSITIVE": 33, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9705882352941176, + "NEGATIVE": 0.029411764705882353 + } + } }, { "season_code": "202301", @@ -229296,7 +493854,7 @@ "13:30", "15:20", "STOECK 313 - Stoeckel Hall (renovated) 313", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ] }, @@ -229310,15 +493868,130 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84539\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "Prerequisite: Completion of a 100- or 200-level music theory course or the corresponding placement exam, and\/or permission of instructor.", - "description": "An introduction to music-theory analysis of commercial and popular song (with a focus on American and British music of the past 50 years, across multiple genres). Coursework involves study of harmony, voice leading and text setting, rhythm and meter, and form, with assigned reading, listening, musical transcription and arranging, and written\/oral presentation of analysis.", + "syllabus_url": "https://yale.instructure.com/courses/84539/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988754391670227, + 0.9987420439720154, + 0.998917818069458, + 0.9989197254180908, + 0.9987180233001709, + 0.9988664388656616, + 0.9988183379173279, + 0.9988529682159424 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989239573478699, + 0.9988712668418884, + 0.9989292025566101, + 0.9989325404167175, + 0.9988836646080017, + 0.9989375472068787, + 0.9989114999771118, + 0.9988881945610046 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988648891448975, + 0.998884379863739, + 0.998916506767273, + 0.9989185333251953, + 0.9989032745361328, + 0.9981018900871277, + 0.9989330172538757, + 0.9989345669746399, + 0.9989334940910339 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 25, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 25 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } + }, + { + "season_code": "202301", + "requirements": "Prerequisite: Completion of a 100- or 200-level music theory course or the corresponding placement exam, and/or permission of instructor.", + "description": "An introduction to music-theory analysis of commercial and popular song (with a focus on American and British music of the past 50 years, across multiple genres). Coursework involves study of harmony, voice leading and text setting, rhythm and meter, and form, with assigned reading, listening, musical transcription and arranging, and written/oral presentation of analysis.", "short_title": "Commercial and Popular Music ...", "title": "Commercial and Popular Music Theory", "school": "YC", @@ -229350,7 +494023,7 @@ "13:00", "14:15", "STOECK 210 - Stoeckel Hall (renovated) 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ], "Thursday": [ @@ -229358,7 +494031,7 @@ "13:00", "14:15", "STOECK 210 - Stoeckel Hall (renovated) 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ] }, @@ -229374,15 +494047,120 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84542\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84542/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "Prerequisite: Completion of a 100- or 200-level music theory course or the corresponding placement exam, and\/or permission of instructor.", - "description": "An introduction to music-theory analysis of commercial and popular song (with a focus on American and British music of the past 50 years, across multiple genres). Coursework involves study of harmony, voice leading and text setting, rhythm and meter, and form, with assigned reading, listening, musical transcription and arranging, and written\/oral presentation of analysis.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987499713897705, + 0.9986466765403748, + 0.998824417591095, + 0.997763991355896, + 0.9987114667892456, + 0.9987313151359558 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988743662834167, + 0.9988505840301514, + 0.998897910118103, + 0.99875807762146, + 0.9988736510276794, + 0.9985112547874451 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989135265350342, + 0.9989004135131836, + 0.998857855796814, + 0.9936082363128662, + 0.9953173398971558, + 0.9988722205162048, + 0.9174623489379883 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 0.9473684210526315, + "final_counts": { + "POSITIVE": 18, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9473684210526315, + "NEGATIVE": 0.05263157894736842 + } + } + }, + { + "season_code": "202301", + "requirements": "Prerequisite: Completion of a 100- or 200-level music theory course or the corresponding placement exam, and/or permission of instructor.", + "description": "An introduction to music-theory analysis of commercial and popular song (with a focus on American and British music of the past 50 years, across multiple genres). Coursework involves study of harmony, voice leading and text setting, rhythm and meter, and form, with assigned reading, listening, musical transcription and arranging, and written/oral presentation of analysis.", "short_title": "Commercial and Popular Music ...", "title": "Commercial and Popular Music Theory", "school": "YC", @@ -229408,7 +494186,7 @@ "10:30", "11:20", "STOECK 211 - Stoeckel Hall (renovated) 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ] }, @@ -229425,12 +494203,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", - "requirements": "Prerequisite: Completion of a 100- or 200-level music theory course or the corresponding placement exam, and\/or permission of instructor.", - "description": "An introduction to music-theory analysis of commercial and popular song (with a focus on American and British music of the past 50 years, across multiple genres). Coursework involves study of harmony, voice leading and text setting, rhythm and meter, and form, with assigned reading, listening, musical transcription and arranging, and written\/oral presentation of analysis.", + "requirements": "Prerequisite: Completion of a 100- or 200-level music theory course or the corresponding placement exam, and/or permission of instructor.", + "description": "An introduction to music-theory analysis of commercial and popular song (with a focus on American and British music of the past 50 years, across multiple genres). Coursework involves study of harmony, voice leading and text setting, rhythm and meter, and form, with assigned reading, listening, musical transcription and arranging, and written/oral presentation of analysis.", "short_title": "Commercial and Popular Music ...", "title": "Commercial and Popular Music Theory", "school": "YC", @@ -229456,7 +494262,7 @@ "11:35", "12:25", "STOECK 211 - Stoeckel Hall (renovated) 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ] }, @@ -229473,7 +494279,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -229510,7 +494344,7 @@ "16:00", "17:15", "STOECK 313 - Stoeckel Hall (renovated) 313", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ], "Thursday": [ @@ -229518,7 +494352,7 @@ "16:00", "17:15", "STOECK 313 - Stoeckel Hall (renovated) 313", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ] }, @@ -229534,10 +494368,117 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84546\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84546/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988935589790344, + 0.9989196062088013, + 0.9988549947738647, + 0.9973830580711365, + 0.9988147020339966, + 0.9988221526145935, + 0.9988304972648621 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989399313926697, + 0.9994896650314331, + 0.9981229901313782, + 0.9988983869552612, + 0.9989296793937683, + 0.9989266991615295 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988670349121094, + 0.9993836879730225, + 0.9988730549812317, + 0.9976741671562195, + 0.9989343285560608, + 0.9989216327667236, + 0.9988664388656616 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 0.9, + "final_counts": { + "POSITIVE": 18, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + } + } }, { "season_code": "202301", @@ -229574,7 +494515,7 @@ "14:30", "15:45", "WLH 114 - William L. Harkness Hall 114", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -229582,7 +494523,7 @@ "14:30", "15:45", "WLH 114 - William L. Harkness Hall 114", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -229598,15 +494539,116 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84550\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84550/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985509514808655, + 0.9988179802894592, + 0.998855471611023, + 0.9979026317596436 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988839030265808, + 0.9991381168365479, + 0.9988850951194763, + 0.9988382458686829, + 0.9988289475440979, + 0.9981037378311157 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9951308965682983, + 0.9987924098968506, + 0.9986477494239807, + 0.998855710029602, + 0.9988300204277039, + 0.9989394545555115, + 0.994404673576355 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 0.9411764705882353, + "final_counts": { + "POSITIVE": 16, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9411764705882353, + "NEGATIVE": 0.058823529411764705 + } + } }, { "season_code": "202301", "requirements": "Prerequisite: Completion of a 100- or 200-level music theory course, intermediate keyboard ability*, and permission of instructor.\u00a0", - "description": "This course teaches music-theory keyboard skills such as score reading, melody harmonization, figured-bass realization, and improvisation, and how these topics connect to written music-theory analysis and composition.\n\n*eg: 2-octave scales in major and minor keys through 4 sharps\/flats; sightread simple hymns\/chorales at beat=60; knowledge of roman numerals", + "description": "This course teaches music-theory keyboard skills such as score reading, melody harmonization, figured-bass realization, and improvisation, and how these topics connect to written music-theory analysis and composition.\n\n*eg: 2-octave scales in major and minor keys through 4 sharps/flats; sightread simple hymns/chorales at beat=60; knowledge of roman numerals", "short_title": "Keyboard Skills for Tonal Music", "title": "Keyboard Skills for Tonal Music", "school": "YC", @@ -229638,7 +494680,7 @@ "9:00", "10:15", "STOECK 408 - Stoeckel Hall (renovated) 408", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ], "Wednesday": [ @@ -229646,7 +494688,7 @@ "9:00", "10:15", "STOECK 408 - Stoeckel Hall (renovated) 408", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ] }, @@ -229660,14 +494702,105 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84553\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84553/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "Prerequisite: Completion of MUSI 110, or any 200-level MUSI course, or the following: ability to match pitch and sing a major scale; knowledge of standard staff notation (treble\/bass clefs); knowledge of major\/minor key signatures; knowledge of basic time signatures; knowledge of intervals; knowledge of triads.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985837936401367, + 0.99859219789505, + 0.9986091256141663, + 0.9913640022277832 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987542629241943, + 0.9989272952079773, + 0.9988846182823181, + 0.9989303946495056 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988889098167419, + 0.9988049268722534, + 0.998845100402832, + 0.9988418221473694, + 0.9988245368003845 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 13 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } + }, + { + "season_code": "202301", + "requirements": "Prerequisite: Completion of MUSI 110, or any 200-level MUSI course, or the following: ability to match pitch and sing a major scale; knowledge of standard staff notation (treble/bass clefs); knowledge of major/minor key signatures; knowledge of basic time signatures; knowledge of intervals; knowledge of triads.", "description": "Tonal music theory topics with an emphasis on sight-sightreading, rhythm,\u00a0melodic and harmonic dictation,\u00a0and aural analysis.", "short_title": "Aural Skills for Tonal Music", "title": "Aural Skills for Tonal Music", @@ -229700,7 +494833,7 @@ "15:30", "16:20", "STOECK 312 - Stoeckel Hall (renovated) 312", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ], "Wednesday": [ @@ -229708,7 +494841,7 @@ "15:30", "16:20", "STOECK 312 - Stoeckel Hall (renovated) 312", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ] }, @@ -229724,14 +494857,129 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84556\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84556/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "Prerequisite: Completion of MUSI 110, or any 200-level MUSI course, or the following: ability to match pitch and sing a major scale; knowledge of standard staff notation (treble\/bass clefs); knowledge of major\/minor key signatures; knowledge of basic time signatures; knowledge of intervals; knowledge of triads.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9971074461936951, + 0.9988183379173279, + 0.9968658089637756, + 0.9987756609916687, + 0.9989311099052429, + 0.9989222288131714 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988351464271545, + 0.9873430728912354, + 0.9988152980804443, + 0.998920202255249, + 0.9989320635795593, + 0.9994866847991943, + 0.9989380240440369, + 0.9988522529602051, + 0.9994173049926758 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989318251609802, + 0.9983946681022644, + 0.9978370070457458, + 0.9988880753517151, + 0.9989290833473206, + 0.9989374279975891, + 0.9995086193084717, + 0.998927652835846, + 0.9988580942153931 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.7777777777777778, + "NEGATIVE": 0.2222222222222222 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7777777777777778 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 0.7916666666666666, + "final_counts": { + "POSITIVE": 19, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.7916666666666666, + "NEGATIVE": 0.20833333333333334 + } + } + }, + { + "season_code": "202301", + "requirements": "Prerequisite: Completion of MUSI 110, or any 200-level MUSI course, or the following: ability to match pitch and sing a major scale; knowledge of standard staff notation (treble/bass clefs); knowledge of major/minor key signatures; knowledge of basic time signatures; knowledge of intervals; knowledge of triads.", "description": "Tonal music theory topics with an emphasis on sight-sightreading, rhythm,\u00a0melodic and harmonic dictation,\u00a0and aural analysis.", "short_title": "Aural Skills for Tonal Music", "title": "Aural Skills for Tonal Music", @@ -229758,7 +495006,7 @@ "13:30", "14:20", "STOECK 312 - Stoeckel Hall (renovated) 312", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ] }, @@ -229775,7 +495023,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -229812,7 +495088,7 @@ "16:30", "18:00", "WLH 201 - William L. Harkness Hall 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -229826,15 +495102,146 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84560\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84560/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984878301620483, + 0.9988229870796204, + 0.9989140033721924, + 0.9988695979118347, + 0.9986085295677185, + 0.9986612796783447, + 0.9982545971870422, + 0.9988452196121216, + 0.9987046718597412 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9987983703613281, + 0.9987710118293762, + 0.9988201260566711, + 0.9988609552383423, + 0.9985446929931641, + 0.998598039150238, + 0.9988784193992615, + 0.9994638562202454, + 0.998525083065033, + 0.9989124536514282, + 0.9994896650314331 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8181818181818182, + "NEGATIVE": 0.18181818181818182 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8181818181818182 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986758828163147, + 0.9982744455337524, + 0.9975359439849854, + 0.9978631138801575, + 0.9988886713981628, + 0.998840868473053, + 0.9988536834716797, + 0.981440007686615, + 0.9989233613014221, + 0.9989175796508789, + 0.9986215829849243, + 0.9988058805465698 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 28, + "final_proportion": 0.875, + "final_counts": { + "POSITIVE": 28, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + } + } }, { "season_code": "202301", "requirements": "Some previous musical experience is required.", - "description": "An introduction to the ensemble musics of West Asia\/Southeast Europe and their theoretical, cultural, and aesthetic traditions. Students learn repertoire and approaches to ornamentation, improvisation, and meter (including additive aksak meters like 7\/8 and 11\/8) on their own instruments and voice parts. Instruction on traditional regional instruments is also offered. The course culminates in a public ensemble performance. This course may be repeated for credit.", + "description": "An introduction to the ensemble musics of West Asia/Southeast Europe and their theoretical, cultural, and aesthetic traditions. Students learn repertoire and approaches to ornamentation, improvisation, and meter (including additive aksak meters like 7/8 and 11/8) on their own instruments and voice parts. Instruction on traditional regional instruments is also offered. The course culminates in a public ensemble performance. This course may be repeated for credit.", "short_title": "Near Eastern and Balkan Ensemble", "title": "Near Eastern and Balkan Ensemble", "school": "YC", @@ -229866,7 +495273,7 @@ "15:30", "17:20", "STOECK 210 - Stoeckel Hall (renovated) 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ] }, @@ -229880,10 +495287,85 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85959\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85959/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987562894821167, + 0.9988817572593689 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989031553268433, + 0.9986388087272644 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.998903751373291 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 5, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 5 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -229924,7 +495406,7 @@ "13:30", "16:30", "YK220 101 - 220 York Street 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ] }, @@ -229940,10 +495422,109 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84563\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84563/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988542795181274, + 0.9988783001899719, + 0.998826801776886, + 0.9989264607429504, + 0.9988701939582825, + 0.9989303946495056 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989207983016968, + 0.9989056587219238, + 0.9989057779312134, + 0.9989126920700073 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981436729431152, + 0.9988929629325867, + 0.9987737536430359, + 0.9988142251968384, + 0.9989179372787476, + 0.9989393353462219, + 0.9989138841629028 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 17 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -229980,7 +495561,7 @@ "13:30", "15:20", "STOECK B01 - Stoeckel Hall (renovated) B01", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ] }, @@ -229994,10 +495575,105 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84565\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84565/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987713694572449, + 0.998927652835846, + 0.9989356398582458, + 0.9902533888816833, + 0.9984654188156128 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987661838531494, + 0.9989228844642639, + 0.998530387878418, + 0.9983633160591125, + 0.998862624168396 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998914361000061, + 0.9989283680915833, + 0.9988995790481567, + 0.9987842440605164, + 0.9989317059516907 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 15 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -230034,7 +495710,7 @@ "9:25", "11:15", "STOECK B01 - Stoeckel Hall (renovated) B01", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ] }, @@ -230048,10 +495724,101 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84567\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84567/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988229870796204, + 0.9988605976104736, + 0.9988388419151306 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9992399215698242, + 0.9987868666648865, + 0.9989268183708191, + 0.9994662404060364 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9995071887969971, + 0.9988634586334229, + 0.9987494945526123, + 0.9989404082298279, + 0.9880093932151794 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 4 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2, + "POSITIVE": 0.8 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 0.75, + "final_counts": { + "POSITIVE": 9, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + } + } }, { "season_code": "202301", @@ -230088,7 +495855,7 @@ "13:30", "15:20", "STOECK 312 - Stoeckel Hall (renovated) 312", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ] }, @@ -230102,10 +495869,38 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84569\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84569/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -230142,7 +495937,7 @@ "15:30", "17:20", "STOECK 106 - Stoeckel Hall (renovated) 106", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ] }, @@ -230159,10 +495954,189 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84571\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84571/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986770749092102, + 0.9977169036865234, + 0.9988653659820557, + 0.994924783706665, + 0.9986792206764221, + 0.998765230178833, + 0.998767614364624, + 0.99868243932724, + 0.998745322227478, + 0.9987117052078247, + 0.9987801909446716, + 0.9968420267105103, + 0.9987074136734009, + 0.9986819624900818, + 0.9987573623657227, + 0.9977973699569702, + 0.9987282156944275, + 0.9988394379615784 + ], + "sentiment_counts": { + "POSITIVE": 18, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.999416708946228, + 0.9988304972648621, + 0.9988906979560852, + 0.9989321827888489, + 0.9988901019096375, + 0.9986928105354309, + 0.9989328980445862, + 0.9989016056060791, + 0.9989181756973267, + 0.9989190101623535, + 0.9989270567893982, + 0.9988833069801331, + 0.9987956285476685, + 0.9988700747489929, + 0.9989211559295654, + 0.9987754225730896, + 0.9988675117492676 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 16 + }, + "sentiment_distribution": { + "NEGATIVE": 0.058823529411764705, + "POSITIVE": 0.9411764705882353 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9411764705882353 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9946900606155396, + 0.9988647699356079, + 0.997117280960083, + 0.998887836933136, + 0.998832643032074, + 0.9983460903167725, + 0.9986580610275269, + 0.9980168342590332, + 0.9989149570465088, + 0.9988069534301758, + 0.9988768696784973, + 0.9989339709281921, + 0.9988614320755005, + 0.9982407093048096, + 0.9987583160400391, + 0.9988377690315247, + 0.9989244341850281, + 0.998889148235321, + 0.9988030195236206, + 0.9989288449287415, + 0.9988993406295776 + ], + "sentiment_counts": { + "POSITIVE": 21, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 55, + "final_proportion": 0.9821428571428571, + "final_counts": { + "POSITIVE": 55, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9821428571428571, + "NEGATIVE": 0.017857142857142856 + } + } }, { "season_code": "202301", @@ -230200,7 +496174,7 @@ "14:30", "15:45", "STOECK 312 - Stoeckel Hall (renovated) 312", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ], "Thursday": [ @@ -230208,7 +496182,7 @@ "14:30", "15:45", "STOECK 312 - Stoeckel Hall (renovated) 312", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ] }, @@ -230224,14 +496198,117 @@ "classnotes": "", "final_exam": "Wednesday, May 10, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85714\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85714/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "Prerequisite: MUSI 210 or MUSI 211 and\/or MUSI 312.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989186525344849, + 0.9988958835601807, + 0.9988409876823425, + 0.9984020590782166, + 0.9988777041435242 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988277554512024, + 0.9989340901374817, + 0.9988596439361572, + 0.9962298274040222, + 0.9988766312599182, + 0.9988227486610413, + 0.998651921749115 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.99866783618927, + 0.9988756775856018, + 0.9988064765930176, + 0.9988277554512024, + 0.9989259839057922, + 0.9987037181854248 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 0.8888888888888888, + "final_counts": { + "POSITIVE": 16, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + } + } + }, + { + "season_code": "202301", + "requirements": "Prerequisite: MUSI 210 or MUSI 211 and/or MUSI 312.", "description": "Intermediate analytic and creative projects in music composition and instrumentation, with a focus on jazz harmony, voice-leading, and music production tools. Study of compositional procedures and techniques in different ensemble settings. Group and individual lessons to supplement in-class lectures. Enrollment limited to 20. Students with questions should contact the instructor at\u00a0konrad.kaczmarek@yale.edu.", "short_title": "Composition Seminar II", "title": "Composition Seminar II", @@ -230264,7 +496341,7 @@ "14:30", "16:20", "STOECK 106 - Stoeckel Hall (renovated) 106", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ] }, @@ -230278,10 +496355,99 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84573\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84573/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988172054290771, + 0.9966853260993958, + 0.9987962245941162 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9966521859169006, + 0.9985944628715515, + 0.9989253878593445, + 0.9987493753433228 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989204406738281, + 0.9994744658470154, + 0.9945587515830994, + 0.9986121654510498 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 0.9090909090909091, + "final_counts": { + "POSITIVE": 10, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + } + } }, { "season_code": "202301", @@ -230318,7 +496484,7 @@ "15:30", "17:20", "STOECK 210 - Stoeckel Hall (renovated) 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ] }, @@ -230334,10 +496500,121 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85929\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/85929/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988839030265808, + 0.9988033771514893, + 0.9987936019897461, + 0.9986938834190369, + 0.9986741542816162, + 0.9988986253738403, + 0.9984632730484009, + 0.998913049697876, + 0.9988019466400146 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989367127418518, + 0.9988553524017334, + 0.998936116695404, + 0.9989144802093506, + 0.9988213181495667, + 0.9988090991973877 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989078044891357, + 0.9987837672233582, + 0.9988747239112854, + 0.9988547563552856, + 0.9988369345664978, + 0.9989233613014221, + 0.9989064931869507, + 0.998916506767273 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 23, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 23 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -230375,7 +496652,7 @@ "13:00", "14:15", "HEN 313 - Hendrie Hall 313", - "https:\/\/map.yale.edu\/?id=1910#!m\/563676" + "https://map.yale.edu/?id=1910#!m/563676" ] ], "Thursday": [ @@ -230383,7 +496660,7 @@ "13:00", "14:15", "HEN 313 - Hendrie Hall 313", - "https:\/\/map.yale.edu\/?id=1910#!m\/563676" + "https://map.yale.edu/?id=1910#!m/563676" ] ] }, @@ -230397,10 +496674,38 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84576\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84576/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -230440,7 +496745,7 @@ "13:30", "15:20", "STOECK 313 - Stoeckel Hall (renovated) 313", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ] }, @@ -230456,10 +496761,95 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84581\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84581/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987711310386658, + 0.9987205266952515, + 0.9988765120506287 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.968566358089447, + 0.998677670955658, + 0.9989069700241089, + 0.9989376664161682 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989320635795593, + 0.9989327788352966, + 0.9989282488822937 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 10 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -230500,7 +496890,7 @@ "16:00", "18:00", "STOECK 107 - Stoeckel Hall (renovated) 107", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ] }, @@ -230519,10 +496909,105 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84568\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84568/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9980530738830566, + 0.9984623193740845, + 0.9988279938697815, + 0.9986476302146912, + 0.9985169768333435 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989118576049805, + 0.9983910918235779, + 0.9976778626441956, + 0.9988935589790344 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989346861839294, + 0.9989386200904846, + 0.998892605304718, + 0.998719334602356, + 0.9988817572593689 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 0.9285714285714286, + "final_counts": { + "POSITIVE": 13, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9285714285714286, + "NEGATIVE": 0.07142857142857142 + } + } }, { "season_code": "202301", @@ -230567,7 +497052,156 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988127946853638, + 0.998784601688385, + 0.9960405826568604, + 0.9988223910331726, + 0.9987642765045166, + 0.9988935589790344, + 0.9988289475440979, + 0.9983065128326416, + 0.9984508752822876, + 0.998759388923645, + 0.9946435689926147, + 0.9988253712654114, + 0.9988780617713928 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982319474220276, + 0.9962900876998901, + 0.9994841814041138, + 0.9985598921775818, + 0.9988806843757629, + 0.9988813996315002, + 0.9988943934440613, + 0.9859601259231567, + 0.9964727759361267, + 0.9988652467727661, + 0.9989339709281921, + 0.9987541437149048 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987776875495911, + 0.9982553124427795, + 0.9989172220230103, + 0.9875630140304565, + 0.9982668161392212, + 0.9989054203033447, + 0.9980498552322388, + 0.9987163543701172, + 0.9989182949066162, + 0.9958361387252808, + 0.9989293217658997, + 0.9980582594871521, + 0.9989234805107117, + 0.9983314871788025, + 0.9988813996315002, + 0.9988563060760498 + ], + "sentiment_counts": { + "POSITIVE": 15, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9375, + "NEGATIVE": 0.0625 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9375 + ] + }, + "final_label": "POSITIVE", + "final_count": 37, + "final_proportion": 0.9024390243902439, + "final_counts": { + "POSITIVE": 37, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.9024390243902439, + "NEGATIVE": 0.0975609756097561 + } + } }, { "season_code": "202301", @@ -230604,7 +497238,7 @@ "11:35", "12:50", "STOECK 210 - Stoeckel Hall (renovated) 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ], "Thursday": [ @@ -230612,7 +497246,7 @@ "11:35", "12:50", "STOECK 210 - Stoeckel Hall (renovated) 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ] }, @@ -230628,10 +497262,123 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84572\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84572/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9942406415939331, + 0.9985871315002441, + 0.9988647699356079, + 0.9985847473144531, + 0.9987834095954895, + 0.9988780617713928 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988125562667847, + 0.998087465763092, + 0.9987056255340576, + 0.9986139535903931, + 0.9980120658874512, + 0.9989315867424011, + 0.9988825917243958, + 0.9985685348510742 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984637498855591, + 0.9988675117492676, + 0.9988783001899719, + 0.9987340569496155, + 0.9982553124427795, + 0.9976257681846619, + 0.9988754391670227, + 0.9983763694763184, + 0.9989122152328491 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 22, + "final_proportion": 0.9565217391304348, + "final_counts": { + "POSITIVE": 22, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9565217391304348, + "NEGATIVE": 0.043478260869565216 + } + } }, { "season_code": "202301", @@ -230662,7 +497409,7 @@ "16:00", "16:50", "STOECK 408 - Stoeckel Hall (renovated) 408", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ] }, @@ -230679,7 +497426,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -230710,7 +497485,7 @@ "17:00", "17:50", "STOECK 408 - Stoeckel Hall (renovated) 408", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ] }, @@ -230727,7 +497502,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -230758,7 +497561,7 @@ "10:30", "11:20", "STOECK 408 - Stoeckel Hall (renovated) 408", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ] }, @@ -230775,7 +497578,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -230806,7 +497637,7 @@ "11:35", "12:25", "STOECK 408 - Stoeckel Hall (renovated) 408", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ] }, @@ -230823,7 +497654,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -230860,7 +497719,7 @@ "13:00", "14:15", "STOECK 210 - Stoeckel Hall (renovated) 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ], "Wednesday": [ @@ -230868,7 +497727,7 @@ "13:00", "14:15", "STOECK 210 - Stoeckel Hall (renovated) 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ] }, @@ -230884,10 +497743,187 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84575\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84575/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988144636154175, + 0.9986730813980103, + 0.9988672733306885, + 0.9989094734191895, + 0.9989179372787476, + 0.9988019466400146, + 0.998877227306366, + 0.9989297986030579, + 0.9988601207733154, + 0.9988207221031189, + 0.9986692667007446, + 0.9989207983016968, + 0.9988839030265808, + 0.9988742470741272, + 0.998869001865387, + 0.9989376664161682, + 0.9988870024681091, + 0.9987866282463074 + ], + "sentiment_counts": { + "POSITIVE": 18, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989269375801086, + 0.9989405274391174, + 0.998908281326294, + 0.9989359974861145, + 0.9989306330680847, + 0.9989060163497925, + 0.9989258646965027, + 0.9989011287689209, + 0.9988605976104736, + 0.998918890953064, + 0.9988964796066284, + 0.9988213181495667, + 0.9989258646965027, + 0.9989389777183533, + 0.9989039897918701, + 0.9988489151000977, + 0.9988638162612915, + 0.9989343285560608 + ], + "sentiment_counts": { + "POSITIVE": 18, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989118576049805, + 0.998938262462616, + 0.9988895058631897, + 0.9989228844642639, + 0.9988123178482056, + 0.9989060163497925, + 0.9989073276519775, + 0.9988896250724792, + 0.9989331364631653, + 0.9989321827888489, + 0.9989287257194519, + 0.9987766146659851, + 0.9989264607429504, + 0.9989190101623535, + 0.9989376664161682, + 0.9989380240440369, + 0.9989268183708191, + 0.9988598823547363, + 0.998666524887085, + 0.9989367127418518 + ], + "sentiment_counts": { + "POSITIVE": 20, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 56, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 56 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -230925,7 +497961,7 @@ "13:00", "14:15", "WLH 116 - William L. Harkness Hall 116", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -230933,7 +497969,7 @@ "13:00", "14:15", "WLH 116 - William L. Harkness Hall 116", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -230949,10 +497985,143 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84577\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84577/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988963603973389, + 0.998891294002533, + 0.9988719820976257, + 0.9985796213150024, + 0.9987778067588806, + 0.998794674873352, + 0.9988616704940796, + 0.9989092350006104, + 0.9988827109336853, + 0.9988958835601807, + 0.9986910223960876, + 0.9987898468971252 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987154006958008, + 0.9988105297088623, + 0.9988968372344971, + 0.9986318945884705, + 0.9989011287689209, + 0.9988954067230225, + 0.9989376664161682, + 0.9989120960235596, + 0.9988653659820557, + 0.9966912269592285 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989138841629028, + 0.9981060028076172, + 0.9988640546798706, + 0.998921275138855, + 0.9988908171653748, + 0.9989068508148193, + 0.9989057779312134, + 0.9988403916358948, + 0.9989225268363953, + 0.9989142417907715, + 0.9980040192604065 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 32, + "final_proportion": 0.9696969696969697, + "final_counts": { + "POSITIVE": 32, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9696969696969697, + "NEGATIVE": 0.030303030303030304 + } + } }, { "season_code": "202301", @@ -230990,7 +498159,7 @@ "12:00", "15:00", "STOECK 312 - Stoeckel Hall (renovated) 312", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ] }, @@ -231004,10 +498173,93 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85402\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85402/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989253878593445, + 0.9989054203033447, + 0.9984942674636841 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989161491394043, + 0.9988988637924194, + 0.9988517761230469 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989344477653503, + 0.9989187717437744, + 0.9988610744476318 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 9 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -231044,7 +498296,7 @@ "13:30", "15:20", "STOECK 407 - Stoeckel Hall (renovated) 407", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ] }, @@ -231058,10 +498310,129 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84579\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84579/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988024234771729, + 0.9985489249229431, + 0.9989282488822937, + 0.9973553419113159, + 0.998847484588623, + 0.9988771080970764, + 0.9971027970314026, + 0.9979609251022339, + 0.9989098310470581 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986666440963745, + 0.9988833069801331, + 0.9985474944114685, + 0.9988648891448975, + 0.9988449811935425, + 0.9988521337509155, + 0.9989295601844788, + 0.9988775849342346 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 7 + }, + "sentiment_distribution": { + "NEGATIVE": 0.125, + "POSITIVE": 0.875 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9995073080062866, + 0.9989213943481445, + 0.9963676929473877, + 0.9989239573478699, + 0.9989025592803955, + 0.9989251494407654, + 0.9986518025398254, + 0.9988101720809937, + 0.9989237189292908 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 8 + }, + "sentiment_distribution": { + "NEGATIVE": 0.1111111111111111, + "POSITIVE": 0.8888888888888888 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "final_label": "POSITIVE", + "final_count": 24, + "final_proportion": 0.9230769230769231, + "final_counts": { + "POSITIVE": 24, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9230769230769231, + "NEGATIVE": 0.07692307692307693 + } + } }, { "season_code": "202301", @@ -231102,7 +498473,7 @@ "9:25", "10:15", "BCT 107 - Becton Center 107", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ], "Wednesday": [ @@ -231110,7 +498481,7 @@ "9:25", "10:15", "BCT 107 - Becton Center 107", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ] }, @@ -231127,10 +498498,107 @@ "classnotes": "", "final_exam": "Saturday, May 6, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85847\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85847/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987597465515137, + 0.9987936019897461, + 0.9988266825675964, + 0.9986661672592163, + 0.9987438321113586 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9986975193023682, + 0.998866081237793, + 0.9988811612129211, + 0.9981797933578491, + 0.9991650581359863 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989345669746399, + 0.9989057779312134, + 0.998879611492157, + 0.998200535774231, + 0.998910665512085 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 0.9333333333333333, + "final_counts": { + "POSITIVE": 14, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9333333333333333, + "NEGATIVE": 0.06666666666666667 + } + } }, { "season_code": "202301", @@ -231167,7 +498635,7 @@ "11:35", "12:50", "STOECK 313 - Stoeckel Hall (renovated) 313", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ], "Wednesday": [ @@ -231175,7 +498643,7 @@ "11:35", "12:50", "STOECK 313 - Stoeckel Hall (renovated) 313", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ] }, @@ -231189,10 +498657,38 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84582\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84582/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -231229,7 +498725,7 @@ "14:30", "16:20", "STOECK 407 - Stoeckel Hall (renovated) 407", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ] }, @@ -231243,10 +498739,85 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84584\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84584/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984312653541565, + 0.9988569021224976 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988319277763367 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988904595375061, + 0.9919303059577942 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 5, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 5 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -231285,7 +498856,7 @@ "11:35", "12:50", "WTS A46 - Watson Center 60 Sachem Street A46", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -231293,7 +498864,7 @@ "11:35", "12:50", "WTS A46 - Watson Center 60 Sachem Street A46", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -231309,10 +498880,121 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83731\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83731/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986240863800049, + 0.9984011054039001, + 0.9988924860954285, + 0.9958946704864502, + 0.9987769722938538, + 0.9980562925338745, + 0.9986807703971863 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 6 + }, + "sentiment_distribution": { + "NEGATIVE": 0.14285714285714285, + "POSITIVE": 0.8571428571428571 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994953870773315, + 0.9955440163612366, + 0.998927891254425, + 0.9906138181686401, + 0.9988070726394653, + 0.9982892870903015, + 0.9987027645111084 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 5 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2857142857142857, + "POSITIVE": 0.7142857142857143 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7142857142857143 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988860487937927, + 0.9984720349311829, + 0.9988656044006348, + 0.9980657696723938, + 0.9969407916069031, + 0.9994485974311829, + 0.9987941980361938, + 0.9988841414451599 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 5 + }, + "sentiment_distribution": { + "NEGATIVE": 0.375, + "POSITIVE": 0.625 + }, + "sentiment_overall": [ + "POSITIVE", + 0.625 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 0.7272727272727273, + "final_counts": { + "NEGATIVE": 6, + "POSITIVE": 16 + }, + "final_distribution": { + "NEGATIVE": 0.2727272727272727, + "POSITIVE": 0.7272727272727273 + } + } }, { "season_code": "202301", @@ -231357,7 +499039,110 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9964268803596497, + 0.9988893866539001, + 0.9987284541130066, + 0.9985021352767944, + 0.9986617565155029, + 0.998847484588623, + 0.9988395571708679 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988572597503662, + 0.9989006519317627, + 0.9987236857414246, + 0.9989128112792969, + 0.9918174147605896 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.997117280960083, + 0.9987347722053528, + 0.9982553124427795, + 0.9989222288131714, + 0.9981021285057068, + 0.9988939166069031 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 0.9444444444444444, + "final_counts": { + "POSITIVE": 17, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9444444444444444, + "NEGATIVE": 0.05555555555555555 + } + } }, { "season_code": "202301", @@ -231395,7 +499180,7 @@ "9:25", "11:15", "HEN 316 - Hendrie Hall 316", - "https:\/\/map.yale.edu\/?id=1910#!m\/563676" + "https://map.yale.edu/?id=1910#!m/563676" ] ] }, @@ -231409,10 +499194,107 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86036\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86036/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988057613372803, + 0.9988449811935425, + 0.9978708028793335, + 0.9988021850585938, + 0.998769223690033 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989227652549744, + 0.9988752007484436, + 0.9994775652885437, + 0.998547375202179, + 0.9987305998802185 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988570213317871, + 0.9989266991615295, + 0.9986562728881836, + 0.9989192485809326, + 0.9988545179367065 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 0.8666666666666667, + "final_counts": { + "POSITIVE": 13, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8666666666666667, + "NEGATIVE": 0.13333333333333333 + } + } }, { "season_code": "202301", @@ -231451,7 +499333,7 @@ "16:00", "17:50", "HEN 313 - Hendrie Hall 313", - "https:\/\/map.yale.edu\/?id=1910#!m\/563676" + "https://map.yale.edu/?id=1910#!m/563676" ] ] }, @@ -231468,10 +499350,38 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85867\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/85867/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -231511,7 +499421,7 @@ "13:00", "14:15", "LC 210 - Linsly-Chittenden Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -231519,7 +499429,7 @@ "13:00", "14:15", "LC 210 - Linsly-Chittenden Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -231540,17 +499450,110 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83982\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83982/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987292885780334, + 0.9872334003448486, + 0.9894639253616333, + 0.9984715580940247 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988622665405273, + 0.9988981485366821, + 0.9993638396263123 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989308714866638, + 0.9988476037979126, + 0.998931348323822, + 0.9986861348152161, + 0.9935492873191833, + 0.9994437098503113 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 0.7692307692307693, + "final_counts": { + "POSITIVE": 10, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.7692307692307693, + "NEGATIVE": 0.23076923076923078 + } + } }, { "season_code": "202301", "requirements": "Prerequisites: Critical listening skills and foundational music vocabulary (e.g. timbre, phrase, form, tension, resolution). Music notation literacy is\u00a0not\u00a0a requisite for this course.\u00a0", "description": "This is a listening and discussion-based analysis course that explores trends in 20th\u00a0and 21st\u00a0century music for the solo voice. In surveying the vast and wondrously diverse range of contemporary vocal repertoire, we address issues of semantics, musical meaning, linguistic meaning, embodied music cognition, and the voice as a unique mechanism for sound production, self-expression, and cultural identity. Topics include the centricity of the voice in blues and jazz, gospel music, the influence of text on music (and vice-versa), intimacy and experimentation in improvisation, non-semantic vocal music, indigenous vocal traditions, and the voice and electronics, with repertoire and iconic performances by Joan La Barbara, Betty Carter, Ella Fitzgerald, Sarah Vaughn, Sister Rosetta Tharpe, Tramaine Hawkins, Tonia Le\u00f3n, Kate Soper, Nicole Paris, Luciano Berio, Cathy Berberian, Georges Aperghis, Caroline Shaw, Tanya Tagaq, Pamela Z, and Laurie Anderson, among others.", "short_title": "Scat, Cyborgs, and Sirens: th...", - "title": "Scat, Cyborgs, and Sirens: the 20th\/21st Century Voice", + "title": "Scat, Cyborgs, and Sirens: the 20th/21st Century Voice", "school": "YC", "credits": 1.0, "extra_info": "ACTIVE", @@ -231581,7 +499584,7 @@ "9:25", "11:15", "HEN 313 - Hendrie Hall 313", - "https:\/\/map.yale.edu\/?id=1910#!m\/563676" + "https://map.yale.edu/?id=1910#!m/563676" ] ] }, @@ -231597,10 +499600,38 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86172\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/86172/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -231638,7 +499669,7 @@ "13:30", "15:20", "STOECK 312 - Stoeckel Hall (renovated) 312", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ] }, @@ -231655,10 +499686,149 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84591\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84591/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988574981689453, + 0.9987035989761353, + 0.9989150762557983, + 0.9988895058631897, + 0.9989035129547119, + 0.9988553524017334, + 0.9988290667533875, + 0.9921743869781494, + 0.9988827109336853, + 0.5801650881767273, + 0.9987635612487793 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8181818181818182, + "NEGATIVE": 0.18181818181818182 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8181818181818182 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989232420921326, + 0.9989007711410522, + 0.9988962411880493, + 0.9984253644943237, + 0.9988401532173157, + 0.9989375472068787, + 0.9987459182739258, + 0.998751163482666, + 0.9987288117408752, + 0.9989311099052429, + 0.9906741976737976, + 0.9987627267837524 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989215135574341, + 0.9986604452133179, + 0.9989332556724548, + 0.9987731575965881, + 0.9989274144172668, + 0.998930037021637, + 0.9989120960235596, + 0.9989049434661865, + 0.9985727071762085, + 0.9989282488822937, + 0.998340368270874, + 0.9988975524902344, + 0.998930037021637 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 34, + "final_proportion": 0.9444444444444444, + "final_counts": { + "POSITIVE": 34, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9444444444444444, + "NEGATIVE": 0.05555555555555555 + } + } }, { "season_code": "202301", @@ -231696,7 +499866,7 @@ "13:30", "15:20", "STOECK 107 - Stoeckel Hall (renovated) 107", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ] }, @@ -231711,11 +499881,126 @@ "rp_attr": "", "classnotes": "", "final_exam": "HTBA", - "course_home_url": "https:\/\/yale.instructure.com\/courses\/85715", - "syllabus_url": "", - "fysem": false, - "sysem": false, - "colsem": false + "course_home_url": "https://yale.instructure.com/courses/85715", + "syllabus_url": "", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988137483596802, + 0.9987223744392395, + 0.9954490065574646, + 0.9972646236419678, + 0.9989270567893982, + 0.9985993504524231, + 0.9989050626754761, + 0.9987905621528625, + 0.9988262057304382 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989010095596313, + 0.998771607875824, + 0.9954490065574646, + 0.9664072394371033, + 0.9988646507263184, + 0.9989292025566101, + 0.9989375472068787, + 0.9988647699356079 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998608410358429, + 0.9954490065574646, + 0.9988858103752136, + 0.9988498687744141, + 0.9989336133003235, + 0.998890221118927, + 0.9985798597335815, + 0.9987691044807434 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 25, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 25 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -231753,7 +500038,7 @@ "13:30", "15:20", "SDQ NIEBUHR - Sterling Divinity Quadrangle NIEBUHR", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -231769,10 +500054,91 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85716\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85716/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998623251914978, + 0.9987824559211731, + 0.9986977577209473 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989311099052429, + 0.9987441301345825 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 1 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9972931742668152, + 0.9987789988517761 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 1 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "final_label": "POSITIVE", + "final_count": 5, + "final_proportion": 0.7142857142857143, + "final_counts": { + "POSITIVE": 5, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.7142857142857143, + "NEGATIVE": 0.2857142857142857 + } + } }, { "season_code": "202301", @@ -231810,7 +500176,7 @@ "13:30", "15:20", "STOECK 408 - Stoeckel Hall (renovated) 408", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ] }, @@ -231826,15 +500192,122 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85183\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85183/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "", - "description": "This course presents a historical survey of sacred musical practice among a number of religious groups indigenous to the Middle East, including Muslims, Jews, Christians, Yarsanis, Yezidis, and Alevis. Students are introduced to various doctrinal positions on music\u2019s sacred origins, as well as ideas about its use (or misuse) among humankind. They grapple with questions that are not only timeless and theological but also contemporary and practical (political, even). The course draws on audio and video recordings of sacred music as well as liturgical, philosophical, and other texts stemming from a wide variety of sacred traditions. Rather than unfolding chronologically, the course progresses through three distinct modules (\"Music in the World,\" \"Music in\/as Sacred Text,\" and \"Music in Worship\"), beginning with an expansive sweep of sacred music ontologies and ending with specific case studies of music in sacred practice.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986928105354309, + 0.9988376498222351, + 0.9988621473312378, + 0.9987905621528625, + 0.9987087249755859, + 0.998245120048523 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9962432384490967, + 0.9988766312599182, + 0.9989166259765625, + 0.9989157915115356, + 0.9989311099052429, + 0.9988448619842529, + 0.9989296793937683, + 0.9986250400543213 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987214207649231, + 0.997946560382843, + 0.9989084005355835, + 0.9988676309585571, + 0.997117280960083, + 0.9989107847213745, + 0.9989364743232727 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 21, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 21 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } + }, + { + "season_code": "202301", + "requirements": "", + "description": "This course presents a historical survey of sacred musical practice among a number of religious groups indigenous to the Middle East, including Muslims, Jews, Christians, Yarsanis, Yezidis, and Alevis. Students are introduced to various doctrinal positions on music\u2019s sacred origins, as well as ideas about its use (or misuse) among humankind. They grapple with questions that are not only timeless and theological but also contemporary and practical (political, even). The course draws on audio and video recordings of sacred music as well as liturgical, philosophical, and other texts stemming from a wide variety of sacred traditions. Rather than unfolding chronologically, the course progresses through three distinct modules (\"Music in the World,\" \"Music in/as Sacred Text,\" and \"Music in Worship\"), beginning with an expansive sweep of sacred music ontologies and ending with specific case studies of music in sacred practice.", "short_title": "Sacred Musics of the Middle East", "title": "Sacred Musics of the Middle East", "school": "YC", @@ -231867,7 +500340,7 @@ "13:30", "15:20", "STOECK 107 - Stoeckel Hall (renovated) 107", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ] }, @@ -231883,10 +500356,38 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85854\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/85854/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -231923,7 +500424,7 @@ "14:30", "15:45", "STOECK 408 - Stoeckel Hall (renovated) 408", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ], "Thursday": [ @@ -231931,7 +500432,7 @@ "14:30", "15:45", "STOECK 408 - Stoeckel Hall (renovated) 408", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ] }, @@ -231949,15 +500450,96 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85184\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85184/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "", - "description": "Original essay in ethnomusicology, music history, music theory, or music technology and\/or multimedia art under the direction of a faculty adviser. Admission to the course upon submission to the department of the essay proposal by the registration deadline, and approval of the director of undergraduate studies.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986750483512878, + 0.9985155463218689 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989168643951416, + 0.9966699481010437, + 0.9987674951553345 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988564252853394, + 0.9944781064987183 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 0.8571428571428571, + "final_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + } + } + }, + { + "season_code": "202301", + "requirements": "", + "description": "Original essay in ethnomusicology, music history, music theory, or music technology and/or multimedia art under the direction of a faculty adviser. Admission to the course upon submission to the department of the essay proposal by the registration deadline, and approval of the director of undergraduate studies.", "short_title": "Individual Study", "title": "Individual Study", "school": "YC", @@ -231995,7 +500577,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -232038,7 +500648,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -232081,7 +500719,80 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988779425621033, + 0.9988176226615906 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988890290260315 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9860836863517761 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 4, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 4 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -232124,7 +500835,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -232167,7 +500906,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -232204,7 +500971,7 @@ "9:25", "11:15", "STOECK 313 - Stoeckel Hall (renovated) 313", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ] }, @@ -232216,10 +500983,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85845\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85845/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -232256,7 +501051,7 @@ "15:30", "17:20", "STOECK 107 - Stoeckel Hall (renovated) 107", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ] }, @@ -232268,15 +501063,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85185\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85185/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This graduate seminar delves into foundational and recent scholarship on the relationships between music and constructions of gender and sexuality. It is not intended as an all-encompassing survey of this topic and its history, but rather as an introduction to some of the innumerable approaches and \"objects\" of study at the nexus of music, gender, and sexuality.\u00a0Readings are drawn from work in historical musicology, popular music studies, ethnomusicology, music theory, performance studies, and beyond, and include (but are not limited to) work by such scholars as Suzanne Cusick, Will Cheng, Kara Keeling, Wayne Koestenbaum, Emily Wilbourne, Judy Tsou, Alisha Lola Jones, and Daphne Brooks.\u00a0To encourage students to read beyond the syllabus, the later weeks of the semester are left open for students to curate their own selections of scholarship for the rest of the class to read together (please note that the scope of this curation will depend on the number of enrolled students).\u00a0Undergraduates and students outside of the FAS\/GSAS may enroll, but only with permission of the instructor.", + "description": "This graduate seminar delves into foundational and recent scholarship on the relationships between music and constructions of gender and sexuality. It is not intended as an all-encompassing survey of this topic and its history, but rather as an introduction to some of the innumerable approaches and \"objects\" of study at the nexus of music, gender, and sexuality.\u00a0Readings are drawn from work in historical musicology, popular music studies, ethnomusicology, music theory, performance studies, and beyond, and include (but are not limited to) work by such scholars as Suzanne Cusick, Will Cheng, Kara Keeling, Wayne Koestenbaum, Emily Wilbourne, Judy Tsou, Alisha Lola Jones, and Daphne Brooks.\u00a0To encourage students to read beyond the syllabus, the later weeks of the semester are left open for students to curate their own selections of scholarship for the rest of the class to read together (please note that the scope of this curation will depend on the number of enrolled students).\u00a0Undergraduates and students outside of the FAS/GSAS may enroll, but only with permission of the instructor.", "short_title": "Topics in Music, Gender, and ...", "title": "Topics in Music, Gender, and Sexuality", "school": "GS", @@ -232308,7 +501131,7 @@ "13:30", "15:20", "STOECK 211 - Stoeckel Hall (renovated) 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ] }, @@ -232320,10 +501143,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85846\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85846/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -232360,7 +501211,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -232403,7 +501282,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -232440,7 +501347,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -232479,7 +501414,7 @@ "9:25", "11:15", "STOECK 211 - Stoeckel Hall (renovated) 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ] }, @@ -232491,10 +501426,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85188\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85188/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -232531,7 +501494,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -232568,7 +501559,7 @@ "9:25", "11:15", "STOECK 313 - Stoeckel Hall (renovated) 313", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ] }, @@ -232583,7 +501574,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -232620,7 +501639,7 @@ "12:30", "14:30", "WLH 201 - William L. Harkness Hall 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -232632,10 +501651,38 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86217\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/86217/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -232672,7 +501719,7 @@ "7:00", "8:45", "WH55 212 - 55 Whitney Avenue 212", - "https:\/\/map.yale.edu\/?id=1910#!m\/560121" + "https://map.yale.edu/?id=1910#!m/560121" ] ], "Thursday": [ @@ -232680,7 +501727,7 @@ "7:00", "8:45", "WH55 212 - 55 Whitney Avenue 212", - "https:\/\/map.yale.edu\/?id=1910#!m\/560121" + "https://map.yale.edu/?id=1910#!m/560121" ] ] }, @@ -232692,10 +501739,85 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86218\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86218/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985492825508118, + 0.9989062547683716 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989156723022461, + 0.9989223480224609 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988781809806824 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 5, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 5 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -232732,7 +501854,7 @@ "7:15", "8:45", "WH55 412 - 55 Whitney Avenue 412", - "https:\/\/map.yale.edu\/?id=1910#!m\/560121" + "https://map.yale.edu/?id=1910#!m/560121" ] ] }, @@ -232744,10 +501866,63 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86219\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86219/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC403": { + "sentiment_labels": [ + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9994789958000183 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 0 + }, + "sentiment_distribution": { + "NEGATIVE": 1.0, + "POSITIVE": 0.0 + }, + "sentiment_overall": [ + "NEGATIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988086223602295 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "neutral", + "final_count": 0.5, + "final_proportion": 0.5, + "final_counts": { + "NEGATIVE": 1, + "POSITIVE": 1 + }, + "final_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + } + } }, { "season_code": "202301", @@ -232784,7 +501959,7 @@ "7:30", "8:45", "WH55 412 - 55 Whitney Avenue 412", - "https:\/\/map.yale.edu\/?id=1910#!m\/560121" + "https://map.yale.edu/?id=1910#!m/560121" ] ], "Thursday": [ @@ -232792,7 +501967,7 @@ "7:30", "8:45", "WH55 412 - 55 Whitney Avenue 412", - "https:\/\/map.yale.edu\/?id=1910#!m\/560121" + "https://map.yale.edu/?id=1910#!m/560121" ] ] }, @@ -232804,10 +501979,83 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86220\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86220/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986588954925537 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988769888877869 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9853863716125488 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 0 + }, + "sentiment_distribution": { + "NEGATIVE": 1.0, + "POSITIVE": 0.0 + }, + "sentiment_overall": [ + "NEGATIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 2, + "final_proportion": 0.6666666666666666, + "final_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + } + } }, { "season_code": "202301", @@ -232844,7 +502092,7 @@ "9:30", "11:30", "WH55 212 - 55 Whitney Avenue 212", - "https:\/\/map.yale.edu\/?id=1910#!m\/560121" + "https://map.yale.edu/?id=1910#!m/560121" ] ] }, @@ -232856,10 +502104,38 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86248\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/86248/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -232902,7 +502178,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -232943,7 +502247,7 @@ "9:25", "11:15", "PH 310 - Phelps Hall 310", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -232957,10 +502261,91 @@ "classnotes": "", "final_exam": "Tuesday, May 9, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85893\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85893/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987851977348328 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998782217502594, + 0.9982998967170715 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9980016350746155, + 0.998710036277771, + 0.9981922507286072, + 0.9994983673095703 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "final_label": "POSITIVE", + "final_count": 5, + "final_proportion": 0.7142857142857143, + "final_counts": { + "POSITIVE": 5, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.7142857142857143, + "NEGATIVE": 0.2857142857142857 + } + } }, { "season_code": "202301", @@ -233009,7 +502394,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -233048,7 +502461,7 @@ "9:00", "10:15", "ESC 100 - Environmental Sciences Center 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560020" + "https://map.yale.edu/?id=1910#!m/560020" ] ], "Wednesday": [ @@ -233056,7 +502469,7 @@ "9:00", "10:15", "ESC 100 - Environmental Sciences Center 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560020" + "https://map.yale.edu/?id=1910#!m/560020" ] ] }, @@ -233072,10 +502485,119 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84609\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84609/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.995905876159668, + 0.9987812638282776, + 0.9976149797439575, + 0.9988930821418762, + 0.9987735152244568, + 0.9988510608673096, + 0.9995098114013672 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 5 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2857142857142857, + "POSITIVE": 0.7142857142857143 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7142857142857143 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9984551668167114, + 0.9987862706184387, + 0.9981393814086914, + 0.9986888766288757, + 0.9988916516304016, + 0.9989103078842163, + 0.9994902610778809 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.7142857142857143, + "NEGATIVE": 0.2857142857142857 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7142857142857143 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988629817962646, + 0.9991113543510437, + 0.98674076795578, + 0.9993696808815002, + 0.9924942255020142, + 0.9989033937454224, + 0.9995038509368896 + ], + "sentiment_counts": { + "NEGATIVE": 6, + "POSITIVE": 1 + }, + "sentiment_distribution": { + "NEGATIVE": 0.8571428571428571, + "POSITIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.8571428571428571 + ] + }, + "final_label": "neutral", + "final_count": 11, + "final_proportion": 0.5, + "final_counts": { + "NEGATIVE": 10, + "POSITIVE": 11 + }, + "final_distribution": { + "NEGATIVE": 0.47619047619047616, + "POSITIVE": 0.5238095238095238 + } + } }, { "season_code": "202301", @@ -233114,7 +502636,7 @@ "9:00", "10:15", "HQ 127 - Humanities Quadrangle 127", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -233122,7 +502644,7 @@ "9:00", "10:15", "HQ 127 - Humanities Quadrangle 127", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -233137,10 +502659,103 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84612\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84612/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988387227058411, + 0.998810887336731, + 0.9989144802093506, + 0.9988585710525513 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988695979118347, + 0.9989066123962402, + 0.9987351298332214, + 0.9982700347900391, + 0.9988608360290527 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986628293991089, + 0.9986855387687683, + 0.9981655478477478, + 0.9989280104637146, + 0.9988676309585571 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 14 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -233184,7 +502799,7 @@ "14:30", "15:45", "HQ C03 - Humanities Quadrangle C03", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -233192,7 +502807,7 @@ "14:30", "15:45", "HQ C03 - Humanities Quadrangle C03", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -233206,10 +502821,105 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83286\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83286/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988073110580444, + 0.998848557472229, + 0.9987161159515381, + 0.9988049268722534 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998894989490509, + 0.9967054724693298, + 0.9984285235404968, + 0.9988842606544495, + 0.9989232420921326, + 0.9984130859375 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987163543701172, + 0.9909997582435608, + 0.9967576861381531, + 0.9988337159156799 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 0.7857142857142857, + "final_counts": { + "POSITIVE": 11, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.7857142857142857, + "NEGATIVE": 0.21428571428571427 + } + } }, { "season_code": "202301", @@ -233247,7 +502957,7 @@ "9:00", "10:15", "WLH 006 - William L. Harkness Hall 006", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -233255,7 +502965,7 @@ "9:00", "10:15", "WLH 006 - William L. Harkness Hall 006", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -233269,10 +502979,97 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86192\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86192/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998916506767273, + 0.9986028075218201, + 0.9985647797584534 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981791973114014, + 0.998664379119873, + 0.9925984144210815, + 0.9988995790481567 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989160299301147, + 0.9988918900489807, + 0.998875081539154 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 0.9, + "final_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + } + } }, { "season_code": "202301", @@ -233312,7 +503109,7 @@ "9:25", "11:15", "HQ C11 - Humanities Quadrangle C11", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -233328,10 +503125,155 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84330\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84330/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994730353355408, + 0.9987735152244568, + 0.9989132881164551, + 0.998863935470581, + 0.9981655478477478, + 0.9988279938697815, + 0.9989187717437744, + 0.9987779259681702, + 0.9988715052604675, + 0.9988929629325867, + 0.9988653659820557, + 0.9977631568908691, + 0.9988754391670227 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 12 + }, + "sentiment_distribution": { + "NEGATIVE": 0.07692307692307693, + "POSITIVE": 0.9230769230769231 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9230769230769231 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994981288909912, + 0.9987552165985107, + 0.9989013671875, + 0.9989364743232727, + 0.9987037181854248, + 0.9989111423492432, + 0.9946002960205078, + 0.9989228844642639, + 0.9982954859733582, + 0.9989129304885864, + 0.9987377524375916, + 0.9989160299301147, + 0.9988783001899719, + 0.9989315867424011 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 13 + }, + "sentiment_distribution": { + "NEGATIVE": 0.07142857142857142, + "POSITIVE": 0.9285714285714286 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9285714285714286 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994633793830872, + 0.9988186955451965, + 0.9989223480224609, + 0.9988671541213989, + 0.9989014863967896, + 0.9989328980445862, + 0.9987951517105103, + 0.9988805651664734, + 0.998842179775238, + 0.9959834814071655, + 0.9982752799987793, + 0.9989295601844788 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 11 + }, + "sentiment_distribution": { + "NEGATIVE": 0.08333333333333333, + "POSITIVE": 0.9166666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9166666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 36, + "final_proportion": 0.9230769230769231, + "final_counts": { + "NEGATIVE": 3, + "POSITIVE": 36 + }, + "final_distribution": { + "NEGATIVE": 0.07692307692307693, + "POSITIVE": 0.9230769230769231 + } + } }, { "season_code": "202301", @@ -233369,7 +503311,7 @@ "11:35", "12:50", "HQ 209 - Humanities Quadrangle 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -233377,7 +503319,7 @@ "11:35", "12:50", "HQ 209 - Humanities Quadrangle 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -233391,15 +503333,122 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84620\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84620/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "", - "description": "What is Digitization of Cultural Heritage? What are its merits, challenges, and best practices? The course highlighst the documentation and interpretation of archaeological artifacts, in particular artifacts from Western Asia. The primary goal of the course is the use of new technologies in computer graphics, including 3D imaging, to support current research in archaeology and anthropology. The course does put particular emphasis on the best practices of digitizing artifacts in collections. The prime study subjects are the artifacts housed in the Yale Babylonian Collection (https:\/\/babylonian-collection.yale.edu). For some background information on the Collection see\u00a0here. Students engage directly with the artifacts while practicing the various imaging techniques.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.99885094165802, + 0.9988897442817688, + 0.9988186955451965, + 0.9986959099769592, + 0.9989193677902222, + 0.998883068561554, + 0.998842179775238 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989070892333984, + 0.9988652467727661, + 0.9987295269966125, + 0.9955578446388245, + 0.9988906979560852, + 0.9986718893051147 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988704323768616, + 0.9989176988601685, + 0.9983124732971191, + 0.9957557916641235, + 0.9982779026031494, + 0.998910665512085, + 0.997117280960083 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 0.95, + "final_counts": { + "POSITIVE": 19, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.95, + "NEGATIVE": 0.05 + } + } + }, + { + "season_code": "202301", + "requirements": "", + "description": "What is Digitization of Cultural Heritage? What are its merits, challenges, and best practices? The course highlighst the documentation and interpretation of archaeological artifacts, in particular artifacts from Western Asia. The primary goal of the course is the use of new technologies in computer graphics, including 3D imaging, to support current research in archaeology and anthropology. The course does put particular emphasis on the best practices of digitizing artifacts in collections. The prime study subjects are the artifacts housed in the Yale Babylonian Collection (https://babylonian-collection.yale.edu). For some background information on the Collection see\u00a0here. Students engage directly with the artifacts while practicing the various imaging techniques.", "short_title": "Imaging Ancient Worlds in Mus...", "title": "Imaging Ancient Worlds in Museum Collections", "school": "YC", @@ -233439,7 +503488,7 @@ "9:00", "10:15", "HQ 209 - Humanities Quadrangle 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -233447,7 +503496,7 @@ "9:00", "10:15", "HQ 209 - Humanities Quadrangle 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -233459,10 +503508,85 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84622\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84622/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983617663383484, + 0.9967058300971985 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987242817878723, + 0.994070827960968 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.998894989490509 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 5, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 5 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -233502,7 +503626,7 @@ "15:30", "17:20", "WLH 011 - William L. Harkness Hall 011", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -233518,10 +503642,157 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84331\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84331/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989147186279297, + 0.9971709847450256, + 0.9988216757774353, + 0.9988547563552856, + 0.9989110231399536, + 0.9980278611183167, + 0.9989327788352966, + 0.998796820640564, + 0.9988337159156799, + 0.9988998174667358, + 0.998924195766449, + 0.9989174604415894, + 0.9989125728607178 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988594055175781, + 0.9989277720451355, + 0.9987912774085999, + 0.9989026784896851, + 0.9988887906074524, + 0.9988993406295776, + 0.9989206790924072, + 0.9989266991615295, + 0.9989330172538757, + 0.9988841414451599, + 0.998918890953064, + 0.9987988471984863, + 0.9989401698112488 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989142417907715, + 0.998934805393219, + 0.9989320635795593, + 0.9989142417907715, + 0.9984645843505859, + 0.998897910118103, + 0.9989385008811951, + 0.9989238381385803, + 0.998930037021637, + 0.9988995790481567, + 0.9989160299301147, + 0.9987499713897705, + 0.9989301562309265, + 0.9989232420921326, + 0.9989206790924072 + ], + "sentiment_counts": { + "POSITIVE": 15, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 41, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 41 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -233565,7 +503836,7 @@ "15:30", "17:20", "WLH 001 - William L. Harkness Hall 001", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -233575,7 +503846,7 @@ "So" ], "flags": [ - "YC EVST: Core Human\/Social Sci", + "YC EVST: Core Human/Social Sci", "YC EVST: Advanced Seminar" ], "regnotes": "", @@ -233583,15 +503854,102 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83975\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83975/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "", - "description": "Let us discover together the multi-millennial history, art and culture of ancient Egypt, a civilization in close contact with many different worlds\u2013from Africa and the Near East to the Red Sea and the Mediterranean. We focus on liminality, the Egyptian ideological and cultural frontiers between \"me\/us\" (the Egyptians as an \"imagined community\") and \"you\/them\" (the imagined non-Egyptianity). Who were the Egyptians, and who were the \"Others\"? We discuss this complex and ever-changing interrelation in terms of multiculturalism and cultural entanglement in order to challenge Pharaonic monumental discourses, analyze their early scholarly reception, and discuss contemporary interpretations. From the 4th to the 1st millennium BCE, the course\u2019s chronologically- and thematically-organized lectures cover key historic moments and defining periods of interaction. Focusing on primary Egyptian and foreign sources (archaeology, monumental and documentary writings, and iconography), the course offers workshop-based classes, where students are in a position to interpret a variety of primary sources in the manner of a true historian.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9911019802093506, + 0.9986314177513123 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 1 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9995094537734985, + 0.9995040893554688, + 0.9995088577270508, + 0.9989113807678223, + 0.998471200466156 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.6, + "POSITIVE": 0.4 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.6 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9992269277572632, + 0.9988889098167419, + 0.9989245533943176 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "neutral", + "final_count": 0.5, + "final_proportion": 0.5, + "final_counts": { + "NEGATIVE": 5, + "POSITIVE": 5 + }, + "final_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + } + } + }, + { + "season_code": "202301", + "requirements": "", + "description": "Let us discover together the multi-millennial history, art and culture of ancient Egypt, a civilization in close contact with many different worlds\u2013from Africa and the Near East to the Red Sea and the Mediterranean. We focus on liminality, the Egyptian ideological and cultural frontiers between \"me/us\" (the Egyptians as an \"imagined community\") and \"you/them\" (the imagined non-Egyptianity). Who were the Egyptians, and who were the \"Others\"? We discuss this complex and ever-changing interrelation in terms of multiculturalism and cultural entanglement in order to challenge Pharaonic monumental discourses, analyze their early scholarly reception, and discuss contemporary interpretations. From the 4th to the 1st millennium BCE, the course\u2019s chronologically- and thematically-organized lectures cover key historic moments and defining periods of interaction. Focusing on primary Egyptian and foreign sources (archaeology, monumental and documentary writings, and iconography), the course offers workshop-based classes, where students are in a position to interpret a variety of primary sources in the manner of a true historian.", "short_title": "Ancient Egypt and its Neighbors", "title": "Ancient Egypt and its Neighbors", "school": "YC", @@ -233624,7 +503982,7 @@ "14:30", "15:45", "WLH 210 - William L. Harkness Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -233632,7 +503990,7 @@ "14:30", "15:45", "WLH 210 - William L. Harkness Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -233646,10 +504004,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86197\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86197/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -233692,7 +504078,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -233730,7 +504144,7 @@ "11:35", "12:50", "HQ 209 - Humanities Quadrangle 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -233738,7 +504152,7 @@ "11:35", "12:50", "HQ 209 - Humanities Quadrangle 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -233750,10 +504164,117 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84620\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84620/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.99885094165802, + 0.9988897442817688, + 0.9988186955451965, + 0.9986959099769592, + 0.9989193677902222, + 0.998883068561554, + 0.998842179775238 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989070892333984, + 0.9988652467727661, + 0.9987295269966125, + 0.9955578446388245, + 0.9988906979560852, + 0.9986718893051147 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988704323768616, + 0.9989176988601685, + 0.9983124732971191, + 0.9957557916641235, + 0.9982779026031494, + 0.998910665512085, + 0.997117280960083 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 0.95, + "final_counts": { + "POSITIVE": 19, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.95, + "NEGATIVE": 0.05 + } + } }, { "season_code": "202301", @@ -233798,7 +504319,7 @@ "9:00", "10:15", "HQ 209 - Humanities Quadrangle 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -233806,7 +504327,7 @@ "9:00", "10:15", "HQ 209 - Humanities Quadrangle 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -233818,10 +504339,85 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84622\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84622/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983617663383484, + 0.9967058300971985 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987242817878723, + 0.994070827960968 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.998894989490509 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 5, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 5 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -233864,7 +504460,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -233904,7 +504528,7 @@ "9:25", "11:15", "HQ C11 - Humanities Quadrangle C11", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -233918,10 +504542,155 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84330\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84330/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994730353355408, + 0.9987735152244568, + 0.9989132881164551, + 0.998863935470581, + 0.9981655478477478, + 0.9988279938697815, + 0.9989187717437744, + 0.9987779259681702, + 0.9988715052604675, + 0.9988929629325867, + 0.9988653659820557, + 0.9977631568908691, + 0.9988754391670227 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 12 + }, + "sentiment_distribution": { + "NEGATIVE": 0.07692307692307693, + "POSITIVE": 0.9230769230769231 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9230769230769231 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994981288909912, + 0.9987552165985107, + 0.9989013671875, + 0.9989364743232727, + 0.9987037181854248, + 0.9989111423492432, + 0.9946002960205078, + 0.9989228844642639, + 0.9982954859733582, + 0.9989129304885864, + 0.9987377524375916, + 0.9989160299301147, + 0.9988783001899719, + 0.9989315867424011 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 13 + }, + "sentiment_distribution": { + "NEGATIVE": 0.07142857142857142, + "POSITIVE": 0.9285714285714286 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9285714285714286 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994633793830872, + 0.9988186955451965, + 0.9989223480224609, + 0.9988671541213989, + 0.9989014863967896, + 0.9989328980445862, + 0.9987951517105103, + 0.9988805651664734, + 0.998842179775238, + 0.9959834814071655, + 0.9982752799987793, + 0.9989295601844788 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 11 + }, + "sentiment_distribution": { + "NEGATIVE": 0.08333333333333333, + "POSITIVE": 0.9166666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9166666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 36, + "final_proportion": 0.9230769230769231, + "final_counts": { + "NEGATIVE": 3, + "POSITIVE": 36 + }, + "final_distribution": { + "NEGATIVE": 0.07692307692307693, + "POSITIVE": 0.9230769230769231 + } + } }, { "season_code": "202301", @@ -233968,7 +504737,7 @@ "9:25", "11:15", "PH 401 - Phelps Hall 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -233980,10 +504749,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84198\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84198/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -234026,7 +504823,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -234062,10 +504887,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84814\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84814/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -234103,7 +504956,7 @@ "9:00", "10:15", "WLH 006 - William L. Harkness Hall 006", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -234111,7 +504964,7 @@ "9:00", "10:15", "WLH 006 - William L. Harkness Hall 006", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -234123,10 +504976,97 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86192\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86192/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998916506767273, + 0.9986028075218201, + 0.9985647797584534 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981791973114014, + 0.998664379119873, + 0.9925984144210815, + 0.9988995790481567 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989160299301147, + 0.9988918900489807, + 0.998875081539154 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 0.9, + "final_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + } + } }, { "season_code": "202301", @@ -234170,7 +505110,7 @@ "15:30", "17:20", "WLH 001 - William L. Harkness Hall 001", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -234182,10 +505122,97 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83975\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83975/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9911019802093506, + 0.9986314177513123 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 1 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9995094537734985, + 0.9995040893554688, + 0.9995088577270508, + 0.9989113807678223, + 0.998471200466156 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.6, + "POSITIVE": 0.4 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.6 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9992269277572632, + 0.9988889098167419, + 0.9989245533943176 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "neutral", + "final_count": 0.5, + "final_proportion": 0.5, + "final_counts": { + "NEGATIVE": 5, + "POSITIVE": 5 + }, + "final_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + } + } }, { "season_code": "202301", @@ -234224,7 +505251,7 @@ "15:30", "17:20", "WLH 112 - William L. Harkness Hall 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -234236,15 +505263,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83695\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83695/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "Let us discover together the multi-millennial history, art, and culture of ancient Egypt, a civilization in close contact with many different worlds\u2014from Africa and the Near East to the Red Sea and the Mediterranean. We focus on liminality, the Egyptian ideological and cultural frontiers between \"me\/us\" (the Egyptians as an \"imagined community\") and \"you\/them\" (the imagined non-Egyptianity). Who were the Egyptians, and who were the \"Others\"? We discuss this complex and ever-changing interrelation in terms of multiculturalism and cultural entanglement in order to challenge Pharaonic monumental discourses, analyze their early scholarly reception, and discuss contemporary interpretations. From the fourth to the first millennium BCE, the course\u2019s chronologically- and thematically-organized lectures covers key historic moments and defining periods of interaction. Focusing on primary Egyptian and foreign sources (archaeology, monumental and documentary writings, and iconography), the course offers discussion-based classes, where students are in a position to interpret a variety of primary sources in the manner of a true historian.", + "description": "Let us discover together the multi-millennial history, art, and culture of ancient Egypt, a civilization in close contact with many different worlds\u2014from Africa and the Near East to the Red Sea and the Mediterranean. We focus on liminality, the Egyptian ideological and cultural frontiers between \"me/us\" (the Egyptians as an \"imagined community\") and \"you/them\" (the imagined non-Egyptianity). Who were the Egyptians, and who were the \"Others\"? We discuss this complex and ever-changing interrelation in terms of multiculturalism and cultural entanglement in order to challenge Pharaonic monumental discourses, analyze their early scholarly reception, and discuss contemporary interpretations. From the fourth to the first millennium BCE, the course\u2019s chronologically- and thematically-organized lectures covers key historic moments and defining periods of interaction. Focusing on primary Egyptian and foreign sources (archaeology, monumental and documentary writings, and iconography), the course offers discussion-based classes, where students are in a position to interpret a variety of primary sources in the manner of a true historian.", "short_title": "Ancient Egypt and Its Neighbors", "title": "Ancient Egypt and Its Neighbors", "school": "GS", @@ -234277,7 +505332,7 @@ "14:30", "15:45", "WLH 210 - William L. Harkness Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -234285,7 +505340,7 @@ "14:30", "15:45", "WLH 210 - William L. Harkness Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -234297,10 +505352,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86197\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86197/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -234343,7 +505426,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -234382,7 +505493,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -234421,7 +505560,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -234460,12 +505627,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "", - "description": "Theoretical and empirical study of the development of criminal behavior, including constitutional, social, and neurobiological elements. Personality and psychopathological factors associated with criminal behavior; theoretical and psychobiological explanations of crime; the biological\/environment interaction; the impact of psychobiological models for policy and intervention.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } + }, + { + "season_code": "202301", + "requirements": "", + "description": "Theoretical and empirical study of the development of criminal behavior, including constitutional, social, and neurobiological elements. Personality and psychopathological factors associated with criminal behavior; theoretical and psychobiological explanations of crime; the biological/environment interaction; the impact of psychobiological models for policy and intervention.", "short_title": "The Criminal Mind", "title": "The Criminal Mind", "school": "YC", @@ -234498,7 +505693,7 @@ "13:00", "14:15", "SLB AUD - Sterling Law Buildings AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/531532" + "https://map.yale.edu/?id=1910#!m/531532" ] ], "Thursday": [ @@ -234506,7 +505701,7 @@ "13:00", "14:15", "SLB AUD - Sterling Law Buildings AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/531532" + "https://map.yale.edu/?id=1910#!m/531532" ] ] }, @@ -234522,15 +505717,910 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84754\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "", - "description": "An introduction to psychoactive drugs and their effects on both brain and behavior. Review of pharmacological and brain mechanisms of different classes of legal, illegal, and medicinal drugs, including alcohol, caffeine, tobacco, stimulants, depressants, antidepressants, and hallucinogens. Individual drugs' pharmacokinetics, mechanisms of action, dosing, routes of administration, and patterns and effects of use and misuse. Some attention to substance use disorders\/addictions, prevention, and treatment.", + "syllabus_url": "https://yale.instructure.com/courses/84754/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985998272895813, + 0.9988905787467957, + 0.9987919926643372, + 0.9091061353683472, + 0.9987226128578186, + 0.9988491535186768, + 0.9977172613143921, + 0.9981671571731567, + 0.99641352891922, + 0.9994997978210449, + 0.9976401329040527, + 0.9957432150840759, + 0.9987136125564575, + 0.9989180564880371, + 0.9988687634468079, + 0.9987868666648865, + 0.9988961219787598, + 0.9987689852714539, + 0.9987273812294006, + 0.9986937642097473, + 0.9984878301620483, + 0.9984544515609741, + 0.9988025426864624, + 0.9987572431564331, + 0.9986534118652344, + 0.9987693428993225, + 0.99871826171875, + 0.9987738728523254, + 0.9984342455863953, + 0.9988192915916443, + 0.9983830451965332, + 0.9988872408866882, + 0.9988895058631897, + 0.9907950758934021, + 0.9987403750419617, + 0.979979395866394, + 0.9898001551628113, + 0.9979950189590454, + 0.9987372756004333, + 0.9987336993217468, + 0.9986985921859741, + 0.99885094165802, + 0.998380184173584, + 0.9988139867782593, + 0.9986384510993958, + 0.9972375631332397, + 0.9986598491668701, + 0.9988658428192139, + 0.9988877177238464, + 0.9987008571624756, + 0.998717188835144, + 0.9984902143478394, + 0.9946205615997314, + 0.9987744688987732, + 0.9988885521888733, + 0.9980136156082153, + 0.9988256096839905, + 0.9979918003082275, + 0.9983828067779541, + 0.9987230896949768, + 0.9988757967948914, + 0.9988300204277039, + 0.9947057366371155, + 0.991986870765686, + 0.9986476302146912, + 0.9987679123878479, + 0.9988154172897339, + 0.9987603425979614, + 0.9988273978233337, + 0.9985321760177612, + 0.9956169128417969, + 0.9988240599632263, + 0.9988805651664734, + 0.9985522627830505, + 0.9987092018127441, + 0.9989226460456848, + 0.9987847208976746, + 0.9848712086677551, + 0.9987402558326721, + 0.9988968372344971, + 0.9986897110939026, + 0.9986691474914551, + 0.9989245533943176, + 0.9988995790481567, + 0.9977331161499023, + 0.9984738230705261, + 0.9986692667007446, + 0.9980320334434509, + 0.9985217452049255, + 0.9988381266593933, + 0.9988967180252075, + 0.9944742321968079, + 0.9964103102684021, + 0.9985914826393127, + 0.9986717700958252, + 0.9986990690231323, + 0.9984473586082458, + 0.9989377856254578, + 0.9988428354263306, + 0.9974609613418579, + 0.9977303147315979, + 0.9876804351806641, + 0.9986482262611389, + 0.9905925393104553, + 0.9989118576049805, + 0.9988308548927307, + 0.9988646507263184, + 0.9689452052116394, + 0.9987499713897705, + 0.9842697381973267, + 0.9988833069801331, + 0.9984180927276611, + 0.9987208247184753, + 0.9988887906074524, + 0.9962844848632812, + 0.996473491191864, + 0.9985009431838989, + 0.9986982345581055, + 0.9989047050476074, + 0.9987945556640625, + 0.9978561997413635, + 0.9989004135131836, + 0.9914857745170593, + 0.9988065958023071, + 0.9987874627113342, + 0.9988817572593689, + 0.998691737651825, + 0.9989218711853027, + 0.9989166259765625, + 0.9908038377761841, + 0.9988032579421997, + 0.9988033771514893, + 0.9982709884643555, + 0.998806357383728 + ], + "sentiment_counts": { + "POSITIVE": 130, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.9701492537313433, + "NEGATIVE": 0.029850746268656716 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9701492537313433 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988632202148438, + 0.995824933052063, + 0.9989381432533264, + 0.999481737613678, + 0.9988448619842529, + 0.998902440071106, + 0.9986261129379272, + 0.9988583326339722, + 0.9985910058021545, + 0.9988235831260681, + 0.9974603652954102, + 0.9988617897033691, + 0.9989274144172668, + 0.9989118576049805, + 0.9988788962364197, + 0.9988954067230225, + 0.9989258646965027, + 0.9988852143287659, + 0.9989186525344849, + 0.9984652996063232, + 0.9988263249397278, + 0.9995023012161255, + 0.9989144802093506, + 0.9985306262969971, + 0.9988539218902588, + 0.9987952709197998, + 0.9988906979560852, + 0.9988517761230469, + 0.9921552538871765, + 0.9989150762557983, + 0.9985402822494507, + 0.9989204406738281, + 0.9987542629241943, + 0.9961915016174316, + 0.9988691210746765, + 0.9989253878593445, + 0.9989219903945923, + 0.9989018440246582, + 0.9988897442817688, + 0.9988968372344971, + 0.9987727999687195, + 0.9790819883346558, + 0.9989117383956909, + 0.9972309470176697, + 0.9989005327224731, + 0.9988937973976135, + 0.9988948702812195, + 0.9988553524017334, + 0.9989122152328491, + 0.9989217519760132, + 0.9989197254180908, + 0.9989055395126343, + 0.9673664569854736, + 0.9987967014312744, + 0.9989192485809326, + 0.998794436454773, + 0.9985488057136536, + 0.9981812238693237, + 0.9988970756530762, + 0.9986758828163147, + 0.9988897442817688, + 0.9981120824813843, + 0.9988473653793335, + 0.9987479448318481, + 0.9989191293716431, + 0.9987655878067017, + 0.9988536834716797, + 0.9988911747932434, + 0.9988219141960144, + 0.9979262351989746, + 0.9983583092689514, + 0.9982458353042603, + 0.9989175796508789, + 0.9989049434661865, + 0.9987932443618774, + 0.99883633852005, + 0.9989054203033447, + 0.9874976873397827, + 0.9989128112792969, + 0.9989196062088013, + 0.9989308714866638, + 0.9983195662498474, + 0.9989317059516907, + 0.9987921118736267, + 0.9989217519760132, + 0.9986729621887207, + 0.9987378716468811, + 0.998913049697876, + 0.9988921284675598, + 0.9962582588195801, + 0.9988359808921814, + 0.9988598823547363, + 0.9976276755332947, + 0.9945425987243652, + 0.994216799736023, + 0.9989359974861145, + 0.9989288449287415, + 0.9989138841629028, + 0.9989320635795593, + 0.9979606866836548, + 0.9988604784011841, + 0.998816967010498, + 0.9975379705429077, + 0.9984991550445557, + 0.9993459582328796, + 0.9987435936927795, + 0.9986612796783447, + 0.9985565543174744, + 0.9987536668777466, + 0.9954671859741211, + 0.9987125396728516, + 0.9987370371818542, + 0.9989221096038818, + 0.9988151788711548, + 0.9986953139305115, + 0.9988883137702942, + 0.9989153146743774, + 0.9987988471984863, + 0.9988551139831543, + 0.9988332390785217, + 0.999241828918457, + 0.9987978935241699, + 0.9988722205162048, + 0.9988300204277039, + 0.9982159733772278, + 0.9989266991615295, + 0.998705267906189, + 0.9957536458969116, + 0.9986740350723267, + 0.9987310767173767, + 0.9989210367202759, + 0.9985079169273376 + ], + "sentiment_counts": { + "POSITIVE": 122, + "NEGATIVE": 10 + }, + "sentiment_distribution": { + "POSITIVE": 0.9242424242424242, + "NEGATIVE": 0.07575757575757576 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9242424242424242 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988847374916077, + 0.9988576173782349, + 0.9953718781471252, + 0.9981436729431152, + 0.998120129108429, + 0.9986333250999451, + 0.9989093542098999, + 0.9989250302314758, + 0.9839916825294495, + 0.9995020627975464, + 0.9988932013511658, + 0.998927652835846, + 0.9989296793937683, + 0.9989091157913208, + 0.9979967474937439, + 0.9989153146743774, + 0.9989215135574341, + 0.9989264607429504, + 0.9988282322883606, + 0.9989104270935059, + 0.9988740086555481, + 0.9880258440971375, + 0.9980016350746155, + 0.9988870024681091, + 0.9974592328071594, + 0.9987934827804565, + 0.9983333945274353, + 0.9989368319511414, + 0.9988324046134949, + 0.9989013671875, + 0.9985703229904175, + 0.9985872507095337, + 0.9988958835601807, + 0.9988653659820557, + 0.9989213943481445, + 0.9917746782302856, + 0.9986973404884338, + 0.998786985874176, + 0.9987550973892212, + 0.9987988471984863, + 0.9988881945610046, + 0.9974592328071594, + 0.9988548755645752, + 0.9988523721694946, + 0.9988036155700684, + 0.9985834360122681, + 0.9989010095596313, + 0.9984466433525085, + 0.9986459612846375, + 0.9982553124427795, + 0.9980579018592834, + 0.998915433883667, + 0.9963578581809998, + 0.9983354210853577, + 0.9988821148872375, + 0.9988693594932556, + 0.9989156723022461, + 0.9988904595375061, + 0.9988773465156555, + 0.9986050724983215, + 0.997117280960083, + 0.9988921284675598, + 0.9986568689346313, + 0.998753547668457, + 0.9978501796722412, + 0.9983274340629578, + 0.9978692531585693, + 0.9982553124427795, + 0.9989187717437744, + 0.9988677501678467, + 0.9988747239112854, + 0.9916849136352539, + 0.9987741112709045, + 0.9988718628883362, + 0.9988279938697815, + 0.9988868832588196, + 0.9988052845001221, + 0.9981436729431152, + 0.9989356398582458, + 0.9979382157325745, + 0.997117280960083, + 0.998908281326294, + 0.9988961219787598, + 0.9988841414451599, + 0.9989104270935059, + 0.9974015951156616, + 0.9989303946495056, + 0.9988905787467957, + 0.9994926452636719, + 0.9989064931869507, + 0.9987528324127197, + 0.9979534149169922, + 0.9989196062088013, + 0.9989022016525269, + 0.9988911747932434, + 0.9980168342590332, + 0.9988732933998108, + 0.9965298771858215, + 0.9989350438117981, + 0.9987475872039795, + 0.9986394047737122, + 0.9989257454872131, + 0.9988773465156555, + 0.9966147541999817, + 0.9988569021224976, + 0.9988356232643127, + 0.9982553124427795, + 0.9989150762557983, + 0.9986534118652344, + 0.9989235997200012, + 0.9989197254180908, + 0.997500479221344, + 0.9986029267311096, + 0.9989230036735535, + 0.9906057715415955, + 0.9988530874252319, + 0.9988969564437866, + 0.9984257221221924, + 0.9910734295845032, + 0.9946236610412598, + 0.9980168342590332, + 0.9986304044723511, + 0.9987803101539612, + 0.9988483190536499, + 0.9988571405410767, + 0.9974592328071594, + 0.9989339709281921, + 0.9988683462142944, + 0.9983721375465393, + 0.9985268115997314, + 0.9989350438117981, + 0.9988977909088135, + 0.9988827109336853, + 0.9989142417907715, + 0.9982694387435913, + 0.9989318251609802, + 0.9994387030601501, + 0.9987875819206238, + 0.9984970092773438, + 0.9989039897918701, + 0.9988645315170288, + 0.9989387392997742, + 0.9988308548927307, + 0.9986796975135803, + 0.998924195766449, + 0.9988308548927307, + 0.9988977909088135, + 0.9988232254981995 + ], + "sentiment_counts": { + "POSITIVE": 138, + "NEGATIVE": 10 + }, + "sentiment_distribution": { + "POSITIVE": 0.9324324324324325, + "NEGATIVE": 0.06756756756756757 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9324324324324325 + ] + }, + "final_label": "POSITIVE", + "final_count": 390, + "final_proportion": 0.9420289855072463, + "final_counts": { + "POSITIVE": 390, + "NEGATIVE": 24 + }, + "final_distribution": { + "POSITIVE": 0.9420289855072463, + "NEGATIVE": 0.057971014492753624 + } + } + }, + { + "season_code": "202301", + "requirements": "", + "description": "An introduction to psychoactive drugs and their effects on both brain and behavior. Review of pharmacological and brain mechanisms of different classes of legal, illegal, and medicinal drugs, including alcohol, caffeine, tobacco, stimulants, depressants, antidepressants, and hallucinogens. Individual drugs' pharmacokinetics, mechanisms of action, dosing, routes of administration, and patterns and effects of use and misuse. Some attention to substance use disorders/addictions, prevention, and treatment.", "short_title": "Drugs, Brain, and Behavior", "title": "Drugs, Brain, and Behavior", "school": "YC", @@ -234563,7 +506653,7 @@ "16:00", "17:15", "LC 102 - Linsly-Chittenden Hall 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -234571,7 +506661,7 @@ "16:00", "17:15", "LC 102 - Linsly-Chittenden Hall 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -234589,14 +506679,471 @@ "classnotes": "", "final_exam": "Wednesday, May 10, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84971\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "Prerequisites: PSYC 160\/NSCI 160 and a course in statistics, or permission of instructor.", + "syllabus_url": "https://yale.instructure.com/courses/84971/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9921969175338745, + 0.9988980293273926, + 0.9988021850585938, + 0.9979883432388306, + 0.9945095181465149, + 0.9973618388175964, + 0.9938176274299622, + 0.9995043277740479, + 0.9988359808921814, + 0.998613715171814, + 0.9988467693328857, + 0.998915433883667, + 0.9992645382881165, + 0.9994999170303345, + 0.99891197681427, + 0.9988951086997986, + 0.998751163482666, + 0.9965003728866577, + 0.9981321692466736, + 0.9989161491394043, + 0.9986559152603149, + 0.9987867474555969, + 0.9985490441322327, + 0.9903959631919861, + 0.9985853433609009, + 0.9987425208091736, + 0.9987236857414246, + 0.9988735318183899, + 0.9988027811050415, + 0.9987568855285645, + 0.9987529516220093, + 0.9986978769302368, + 0.998790442943573, + 0.9975737929344177, + 0.9988893866539001, + 0.9989023208618164, + 0.9986133575439453, + 0.9982326030731201, + 0.998815655708313, + 0.9988370537757874, + 0.9983762502670288, + 0.9984832406044006, + 0.998582124710083, + 0.9987553358078003, + 0.9987340569496155, + 0.99857497215271, + 0.9987666606903076, + 0.9943312406539917, + 0.9988403916358948, + 0.9962410926818848, + 0.9984594583511353, + 0.9782668352127075, + 0.9986779093742371, + 0.9987674951553345, + 0.998606264591217, + 0.9988321661949158, + 0.9987626075744629, + 0.9986730813980103 + ], + "sentiment_counts": { + "POSITIVE": 53, + "NEGATIVE": 5 + }, + "sentiment_distribution": { + "POSITIVE": 0.9137931034482759, + "NEGATIVE": 0.08620689655172414 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9137931034482759 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9993674159049988, + 0.999502420425415, + 0.9994751811027527, + 0.9988821148872375, + 0.9984822869300842, + 0.998914361000061, + 0.9988563060760498, + 0.9979472756385803, + 0.9982705116271973, + 0.9896983504295349, + 0.9994276165962219, + 0.9851263761520386, + 0.9978333115577698, + 0.9987529516220093, + 0.9899010062217712, + 0.998878538608551, + 0.9994779229164124, + 0.9994959831237793, + 0.9988939166069031, + 0.9906849265098572, + 0.9552738070487976, + 0.9940734505653381, + 0.9937777519226074, + 0.9988976716995239, + 0.9993921518325806, + 0.9987057447433472, + 0.9960609078407288, + 0.9961856007575989, + 0.9988270401954651, + 0.9988018274307251, + 0.9977613687515259, + 0.9987939596176147, + 0.9990783929824829, + 0.9988137483596802, + 0.9979690909385681, + 0.9988759160041809, + 0.9993960857391357, + 0.9988561868667603, + 0.9987969398498535, + 0.9995039701461792, + 0.9974430799484253, + 0.9995043277740479, + 0.996855616569519, + 0.9989117383956909, + 0.9984993934631348, + 0.9984980821609497, + 0.9989355206489563, + 0.9986993074417114, + 0.9987226128578186, + 0.9995059967041016, + 0.9988721013069153, + 0.9994854927062988, + 0.9988213181495667, + 0.9988692402839661, + 0.9994926452636719, + 0.9958517551422119, + 0.9985042810440063, + 0.9993867874145508, + 0.9978394508361816, + 0.9986501336097717, + 0.9980908036231995, + 0.9988850951194763, + 0.9986199140548706, + 0.9995055198669434, + 0.9989126920700073, + 0.9974147081375122, + 0.9986003041267395, + 0.9981181621551514 + ], + "sentiment_counts": { + "NEGATIVE": 27, + "POSITIVE": 41 + }, + "sentiment_distribution": { + "NEGATIVE": 0.39705882352941174, + "POSITIVE": 0.6029411764705882 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6029411764705882 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988669157028198, + 0.9994966983795166, + 0.9980652928352356, + 0.9988980293273926, + 0.9988422989845276, + 0.9989272952079773, + 0.9985761642456055, + 0.9834855794906616, + 0.9994924068450928, + 0.9980058073997498, + 0.9995083808898926, + 0.998651921749115, + 0.9982998967170715, + 0.9988226294517517, + 0.984423816204071, + 0.9987351298332214, + 0.9974017143249512, + 0.9995096921920776, + 0.9988002777099609, + 0.9981666803359985, + 0.9988932013511658, + 0.9988483190536499, + 0.9779918789863586, + 0.9989182949066162, + 0.9977788329124451, + 0.998158872127533, + 0.9981575608253479, + 0.9988627433776855, + 0.9988756775856018, + 0.9985601305961609, + 0.9984765648841858, + 0.9989367127418518, + 0.9988975524902344, + 0.9988769888877869, + 0.9719040393829346, + 0.9980652928352356, + 0.9964637160301208, + 0.9927873015403748, + 0.9982824325561523, + 0.9967212080955505, + 0.9988736510276794, + 0.9982157945632935, + 0.9981125593185425, + 0.9988542795181274, + 0.9994624257087708, + 0.9980016350746155, + 0.9989364743232727, + 0.9975046515464783, + 0.9988194108009338, + 0.9989107847213745, + 0.9984903335571289, + 0.9992971420288086, + 0.998714804649353, + 0.9994951486587524, + 0.9988382458686829, + 0.9987860321998596, + 0.9984596967697144, + 0.9988260865211487, + 0.9961866736412048, + 0.9980162382125854, + 0.994813084602356, + 0.9984670281410217, + 0.9989394545555115, + 0.9988847374916077, + 0.9995002746582031, + 0.9989131689071655, + 0.9500276446342468, + 0.9728887677192688, + 0.9977949857711792 + ], + "sentiment_counts": { + "POSITIVE": 44, + "NEGATIVE": 25 + }, + "sentiment_distribution": { + "POSITIVE": 0.6376811594202898, + "NEGATIVE": 0.36231884057971014 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6376811594202898 + ] + }, + "final_label": "POSITIVE", + "final_count": 138, + "final_proportion": 0.7076923076923077, + "final_counts": { + "POSITIVE": 138, + "NEGATIVE": 57 + }, + "final_distribution": { + "POSITIVE": 0.7076923076923077, + "NEGATIVE": 0.2923076923076923 + } + } + }, + { + "season_code": "202301", + "requirements": "Prerequisites: PSYC 160/NSCI 160 and a course in statistics, or permission of instructor.", "description": "Primary focus on structural, functional, and diffusion magnetic resonance imaging, with a secondary emphasis upon brain stimulation, electroencephalography, and evoked potentials. Students learn the fundamentals of each method and the experimental designs for which they are most applicable.", "short_title": "Research Methods in Human Neu...", "title": "Research Methods in Human Neuroscience", @@ -234630,7 +507177,7 @@ "13:00", "14:15", "WLH 117 - William L. Harkness Hall 117", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -234638,7 +507185,7 @@ "13:00", "14:15", "WLH 117 - William L. Harkness Hall 117", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -234654,15 +507201,186 @@ "classnotes": "", "final_exam": "Tuesday, May 9, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84764\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "Prerequisites: CPSC 100, CPSC 112 or other course involving terminal commands and programming (Python preferred); course in statistics and\/or data science; PSYC 160 or other human neuroscience course; or permission of instructor.", - "description": "This course provides training on how to use computational science for the advanced analysis of brain imaging data, primarily from functional magnetic resonance imaging (fMRI). Topics include scientific programming, high-performance computing, machine learning, network\/graph analysis, real-time neurofeedback, nonparametric statistics, and functional alignment.", + "syllabus_url": "https://yale.instructure.com/courses/84764/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988823533058167, + 0.9985685348510742, + 0.9983525276184082, + 0.9987941980361938, + 0.9988058805465698, + 0.9984740614891052, + 0.9919703006744385, + 0.9965007305145264, + 0.9989097118377686, + 0.9915568828582764, + 0.9986043572425842, + 0.9946035742759705, + 0.9986361861228943, + 0.9988049268722534, + 0.9987488985061646, + 0.9988264441490173 + ], + "sentiment_counts": { + "POSITIVE": 16, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988977909088135, + 0.9989012479782104, + 0.9850860834121704, + 0.9988968372344971, + 0.9988991022109985, + 0.9982618689537048, + 0.9980272650718689, + 0.9976128339767456, + 0.9945481419563293, + 0.9963564872741699, + 0.9989100694656372, + 0.998816728591919, + 0.998856782913208, + 0.9994899034500122, + 0.9988495111465454, + 0.9901254177093506, + 0.9989244341850281, + 0.9989168643951416 + ], + "sentiment_counts": { + "POSITIVE": 16, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988114833831787, + 0.9988627433776855, + 0.9975960850715637, + 0.9979776740074158, + 0.9983144998550415, + 0.9994285702705383, + 0.9994264841079712, + 0.9988835453987122, + 0.997117280960083, + 0.9962642788887024, + 0.9982523322105408, + 0.9872549772262573, + 0.998769223690033, + 0.9994847774505615, + 0.998871386051178, + 0.9982366561889648, + 0.9988908171653748, + 0.9989150762557983 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 6 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 44, + "final_proportion": 0.8461538461538461, + "final_counts": { + "POSITIVE": 44, + "NEGATIVE": 8 + }, + "final_distribution": { + "POSITIVE": 0.8461538461538461, + "NEGATIVE": 0.15384615384615385 + } + } + }, + { + "season_code": "202301", + "requirements": "Prerequisites: CPSC 100, CPSC 112 or other course involving terminal commands and programming (Python preferred); course in statistics and/or data science; PSYC 160 or other human neuroscience course; or permission of instructor.", + "description": "This course provides training on how to use computational science for the advanced analysis of brain imaging data, primarily from functional magnetic resonance imaging (fMRI). Topics include scientific programming, high-performance computing, machine learning, network/graph analysis, real-time neurofeedback, nonparametric statistics, and functional alignment.", "short_title": "Computational Methods in Huma...", "title": "Computational Methods in Human Neuroscience", "school": "YC", @@ -234695,7 +507413,7 @@ "13:00", "16:00", "SSS 306 - Sheffield-Sterling-Strathcona 306", - "https:\/\/map.yale.edu\/?id=1910#!m\/563689" + "https://map.yale.edu/?id=1910#!m/563689" ] ] }, @@ -234714,10 +507432,117 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84702\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84702/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985846281051636, + 0.9984641075134277, + 0.9986005425453186, + 0.9988184571266174, + 0.998887836933136, + 0.9986162185668945, + 0.9976309537887573 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987730383872986, + 0.9987984895706177, + 0.9987760186195374, + 0.9981762170791626, + 0.9977483153343201, + 0.9938285946846008 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9908097982406616, + 0.9960294961929321, + 0.9968173503875732, + 0.9989004135131836, + 0.9977909326553345, + 0.9994714856147766, + 0.997117280960083 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.7142857142857143, + "NEGATIVE": 0.2857142857142857 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7142857142857143 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 0.85, + "final_counts": { + "POSITIVE": 17, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.85, + "NEGATIVE": 0.15 + } + } }, { "season_code": "202301", @@ -234770,7 +507595,7 @@ "14:30", "15:45", "BASS 405 - Bass Center 405", - "https:\/\/map.yale.edu\/?id=1910#!m\/560102" + "https://map.yale.edu/?id=1910#!m/560102" ] ], "Thursday": [ @@ -234778,7 +507603,7 @@ "14:30", "15:45", "BASS 405 - Bass Center 405", - "https:\/\/map.yale.edu\/?id=1910#!m\/560102" + "https://map.yale.edu/?id=1910#!m/560102" ] ] }, @@ -234792,15 +507617,144 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84491\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84491/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988125562667847, + 0.9983453750610352, + 0.9986456036567688, + 0.9986985921859741, + 0.9977982044219971, + 0.9903422594070435, + 0.9986554384231567, + 0.9956871867179871, + 0.9983854293823242, + 0.9988418221473694, + 0.9961655139923096 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9090909090909091 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988546371459961, + 0.9924356341362, + 0.9994757771492004, + 0.998830258846283, + 0.9947176575660706, + 0.9983822107315063, + 0.9951450228691101, + 0.9986005425453186, + 0.9987438321113586, + 0.9995054006576538, + 0.9988664388656616 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.7272727272727273, + "NEGATIVE": 0.2727272727272727 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7272727272727273 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984412789344788, + 0.966108500957489, + 0.9989063739776611, + 0.9985975623130798, + 0.9945812821388245, + 0.9985987544059753, + 0.9927737712860107, + 0.9988572597503662, + 0.9988515377044678 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "final_label": "POSITIVE", + "final_count": 26, + "final_proportion": 0.8387096774193549, + "final_counts": { + "POSITIVE": 26, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.8387096774193549, + "NEGATIVE": 0.16129032258064516 + } + } }, { "season_code": "202301", "requirements": "Students should have some background in psychology; PSYC 110 and PSYC 160 preferred.\u00a0", - "description": "An overview and examination of the neuroscience of psychiatric illness. We focus on cutting-edge research in humans and animals aimed at understanding the biological mechanisms that underlie psychiatric illness. Although these questions date back to early philosophical texts, only recently have experimental psychologists and neuroscientists begun to explore this vast and exciting domain of study. We discuss the evolutionary and developmental origins of individual differences in human personality, measurement issues, fundamental dimensions of psychopathology, stability\/plasticity, heritability, and implications therapeutic interventions as well as the associated broader implications for public policy. A major focus is on the neurobiology of fear and anxiety, including brain circuits, molecular genetic pathways, and epigenetics. A secondary focus is on differences in behavior and biology that confer risk for the development of depression and addiction, including the biological systems involved in hedonic pleasure, motivated goal pursuit, and the regulation of impulses in the face of everyday temptation.", + "description": "An overview and examination of the neuroscience of psychiatric illness. We focus on cutting-edge research in humans and animals aimed at understanding the biological mechanisms that underlie psychiatric illness. Although these questions date back to early philosophical texts, only recently have experimental psychologists and neuroscientists begun to explore this vast and exciting domain of study. We discuss the evolutionary and developmental origins of individual differences in human personality, measurement issues, fundamental dimensions of psychopathology, stability/plasticity, heritability, and implications therapeutic interventions as well as the associated broader implications for public policy. A major focus is on the neurobiology of fear and anxiety, including brain circuits, molecular genetic pathways, and epigenetics. A secondary focus is on differences in behavior and biology that confer risk for the development of depression and addiction, including the biological systems involved in hedonic pleasure, motivated goal pursuit, and the regulation of impulses in the face of everyday temptation.", "short_title": "Topics in Clinical Neuroscience", "title": "Topics in Clinical Neuroscience", "school": "YC", @@ -234834,7 +507788,7 @@ "9:25", "11:15", "SSS 201 - Sheffield-Sterling-Strathcona 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/563689" + "https://map.yale.edu/?id=1910#!m/563689" ] ], "Thursday": [ @@ -234842,7 +507796,7 @@ "9:25", "11:15", "SSS 201 - Sheffield-Sterling-Strathcona 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/563689" + "https://map.yale.edu/?id=1910#!m/563689" ] ] }, @@ -234856,15 +507810,132 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84706\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84706/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "", - "description": "Research project under faculty supervision taken Pass\/Fail; does not count toward the major, but does count toward graduation requirements. Students are expected to spend approximately ten hours per week in the laboratory. A final research report and\/or presentation is required by end of term. Students who take this course more than once must reapply each term. To register, students must submit a form and written plan of study with bibliography, approved by the faculty research adviser and DUS, by the end of the first week of class. More detailed guidelines and forms can be obtained\u00a0from http:\/\/neuroscience.yale.edu.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987446069717407, + 0.9987677335739136, + 0.9987608194351196, + 0.9985492825508118, + 0.9980782270431519, + 0.9983646273612976, + 0.9988883137702942 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987744688987732, + 0.9987566471099854, + 0.9987967014312744, + 0.9989332556724548, + 0.9988853335380554, + 0.9988327622413635, + 0.9987599849700928, + 0.9942659735679626 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9770510792732239, + 0.9988151788711548, + 0.9978413581848145, + 0.9988526105880737, + 0.9987497329711914, + 0.9987202882766724, + 0.9982414245605469, + 0.998777449131012, + 0.9980764389038086, + 0.9989309906959534 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 9 + }, + "sentiment_distribution": { + "NEGATIVE": 0.1, + "POSITIVE": 0.9 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "final_label": "POSITIVE", + "final_count": 24, + "final_proportion": 0.96, + "final_counts": { + "POSITIVE": 24, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.96, + "NEGATIVE": 0.04 + } + } + }, + { + "season_code": "202301", + "requirements": "", + "description": "Research project under faculty supervision taken Pass/Fail; does not count toward the major, but does count toward graduation requirements. Students are expected to spend approximately ten hours per week in the laboratory. A final research report and/or presentation is required by end of term. Students who take this course more than once must reapply each term. To register, students must submit a form and written plan of study with bibliography, approved by the faculty research adviser and DUS, by the end of the first week of class. More detailed guidelines and forms can be obtained\u00a0from http://neuroscience.yale.edu.", "short_title": "Independent Research", "title": "Independent Research", "school": "YC", @@ -234902,15 +507973,88 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85791\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85791/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "", - "description": "Research survey under faculty supervision fulfills the senior requirement for the B.A. degree and awards a letter grade. For NSCI seniors only (and second term juniors with DUS permission). Students are expected to conduct a literature review, to complete written assignments, and to present their research once in either the fall or spring term. Students are encouraged to pursue the same research project for two terms. The final research paper is due in the hands of the sponsoring faculty member, with a copy submitted to the department, by the stated deadline near the end of the term. To register, students submit a form and written plan of study with bibliography, approved by the faculty research adviser and DUS, by the end of the first week of classes. More detailed guidelines and forms can be obtained from http:\/\/neuroscience.yale.edu.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988588094711304 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989172220230103 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984474778175354, + 0.9982094764709473 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 4, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 4 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } + }, + { + "season_code": "202301", + "requirements": "", + "description": "Research survey under faculty supervision fulfills the senior requirement for the B.A. degree and awards a letter grade. For NSCI seniors only (and second term juniors with DUS permission). Students are expected to conduct a literature review, to complete written assignments, and to present their research once in either the fall or spring term. Students are encouraged to pursue the same research project for two terms. The final research paper is due in the hands of the sponsoring faculty member, with a copy submitted to the department, by the stated deadline near the end of the term. To register, students submit a form and written plan of study with bibliography, approved by the faculty research adviser and DUS, by the end of the first week of classes. More detailed guidelines and forms can be obtained from http://neuroscience.yale.edu.", "short_title": "Senior Non-empirical Research", "title": "Senior Non-empirical Research", "school": "YC", @@ -234948,15 +508092,43 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85792\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85792/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "Laboratory or independent empirical research project under faculty supervision to fulfill the senior requirement for the B.S. degree. For NSCI seniors only (and second term juniors with DUS permission); this course awards a letter grade. Students are expected to spend at least ten hours per week in the laboratory, to complete written assignments, and to present their research once in either the fall or the spring term. Written assignments include a short research proposal summary due at the beginning of the term and a full research report due at the end of the term. Students are encouraged to pursue the same research project for two terms, in which case, the first term research report and the second term proposal summary may be combined into a full research proposal due at the end of the first term.\u00a0Final papers are due by the stated deadline. Students should reserve a research laboratory during the term preceding the research. To register, students must submit a form and written plan of study with bibliography, approved by the faculty research adviser and DUS, by the end of the first week of classes. More detailed guidelines and forms can be obtained from http:\/\/neuroscience.yale.edu.", + "description": "Laboratory or independent empirical research project under faculty supervision to fulfill the senior requirement for the B.S. degree. For NSCI seniors only (and second term juniors with DUS permission); this course awards a letter grade. Students are expected to spend at least ten hours per week in the laboratory, to complete written assignments, and to present their research once in either the fall or the spring term. Written assignments include a short research proposal summary due at the beginning of the term and a full research report due at the end of the term. Students are encouraged to pursue the same research project for two terms, in which case, the first term research report and the second term proposal summary may be combined into a full research proposal due at the end of the first term.\u00a0Final papers are due by the stated deadline. Students should reserve a research laboratory during the term preceding the research. To register, students must submit a form and written plan of study with bibliography, approved by the faculty research adviser and DUS, by the end of the first week of classes. More detailed guidelines and forms can be obtained from http://neuroscience.yale.edu.", "short_title": "Senior Empirical Research", "title": "Senior Empirical Research", "school": "YC", @@ -234994,10 +508166,155 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85793\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85793/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998843789100647, + 0.998719334602356, + 0.9989256262779236, + 0.9957972764968872, + 0.9874972105026245, + 0.9883791208267212, + 0.9988717436790466, + 0.9988130331039429, + 0.9985356330871582, + 0.9988903403282166, + 0.9988237023353577, + 0.998892605304718, + 0.9955422282218933, + 0.9987700581550598 + ], + "sentiment_counts": { + "POSITIVE": 14, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989345669746399, + 0.9989235997200012, + 0.9988623857498169, + 0.9994899034500122, + 0.9972364902496338, + 0.996880054473877, + 0.9981955885887146, + 0.9986298084259033, + 0.9981920123100281, + 0.990919828414917, + 0.9987245202064514, + 0.9972364902496338, + 0.9989240765571594, + 0.9862077236175537 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.7142857142857143, + "NEGATIVE": 0.2857142857142857 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7142857142857143 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986566305160522, + 0.9989030361175537, + 0.9988734126091003, + 0.9979944229125977, + 0.9971730709075928, + 0.993492066860199, + 0.9983565211296082, + 0.9986988306045532, + 0.9979895353317261, + 0.9981058835983276, + 0.9988418221473694 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 35, + "final_proportion": 0.8974358974358975, + "final_counts": { + "POSITIVE": 35, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.8974358974358975, + "NEGATIVE": 0.10256410256410256 + } + } }, { "season_code": "202301", @@ -235042,10 +508359,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85298\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85298/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -235104,15 +508449,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85299\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85299/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is designed to provide the student with the essential knowledge and skills to gather a comprehensive health history and perform a head-to-toe physical assessment of the patient. It aims to develop strong, clinically competent nurses with clinical reasoning skills that will allow them to provide high-quality, evidence-based patient care. Clinical skills and competency are demonstrated in a laboratory environment. This course requires four hours per week of didactic class time and four to eight hours per week of clinical labs\/skills laboratory to provide the nursing student with essential preparation to enter the clinical environment. Required of all GEPN students.", + "description": "This course is designed to provide the student with the essential knowledge and skills to gather a comprehensive health history and perform a head-to-toe physical assessment of the patient. It aims to develop strong, clinically competent nurses with clinical reasoning skills that will allow them to provide high-quality, evidence-based patient care. Clinical skills and competency are demonstrated in a laboratory environment. This course requires four hours per week of didactic class time and four to eight hours per week of clinical labs/skills laboratory to provide the nursing student with essential preparation to enter the clinical environment. Required of all GEPN students.", "short_title": "Essentials of Health Assessme...", "title": "Essentials of Health Assessment and Clinical Skills II", "school": "NR", @@ -235146,7 +508519,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -235198,10 +508599,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87074\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87074/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -235240,7 +508669,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -235283,7 +508740,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -235331,10 +508816,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85302\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85302/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -235383,7 +508896,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -235434,10 +508975,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85303\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85303/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -235476,7 +509045,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -235518,10 +509115,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85305\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85305/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -235561,10 +509186,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88027\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88027/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -235615,10 +509268,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85306\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85306/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -235657,7 +509338,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -235696,7 +509405,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -235755,10 +509492,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85309\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85309/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -235820,15 +509585,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85310\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85310/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "The focus of this course is to provide the foundation for management of commonly occurring mental health problems using the therapeutic relationship and basic models for intervention including stress management, crisis intervention, motivational interviewing, cognitive behavioral techniques, and pharmacotherapy. Diagnostic assessment, monitoring, and referral to specialty care and community resources are emphasized. Roles in management of commonly occurring mental health problems (anxiety, depression, sleep disturbance) and collaboration to manage severe and persistent mental illness (including schizophrenia, bipolar disorder, post-traumatic stress disorder, substance use, and eating disorders) and referral to community and psychiatric resources are examined. Required of all adult gerontology primary care, family, and midwifery\/women\u2019s health nurse practitioner students. Open to others with permission of the instructor. Two hours per week.", + "description": "The focus of this course is to provide the foundation for management of commonly occurring mental health problems using the therapeutic relationship and basic models for intervention including stress management, crisis intervention, motivational interviewing, cognitive behavioral techniques, and pharmacotherapy. Diagnostic assessment, monitoring, and referral to specialty care and community resources are emphasized. Roles in management of commonly occurring mental health problems (anxiety, depression, sleep disturbance) and collaboration to manage severe and persistent mental illness (including schizophrenia, bipolar disorder, post-traumatic stress disorder, substance use, and eating disorders) and referral to community and psychiatric resources are examined. Required of all adult gerontology primary care, family, and midwifery/women\u2019s health nurse practitioner students. Open to others with permission of the instructor. Two hours per week.", "short_title": "Mental Health Management for ...", "title": "Mental Health Management for Advanced Practice Nurses", "school": "NR", @@ -235866,15 +509659,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87323\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87323/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "The focus of this practicum is comprehensive management of a caseload of patients with diabetes specific to the student\u2019s elected specialty (adult\/gerontology acute care, adult\/gerontology primary care, family, midwifery\/women\u2019s health, and pediatric). The spring term is an extension of the fall and focuses on the management of common problems related to long-term diabetes complications, encouraging clinical decision-making and management of comorbidities. Student\u2019s clinical practicum in diabetes care is in various settings specific to student\u2019s specialty program. Required of all students in the diabetes care concentration in the final year. Four hours per week of practice required both terms. One and one-half hours of clinical conference per week.", + "description": "The focus of this practicum is comprehensive management of a caseload of patients with diabetes specific to the student\u2019s elected specialty (adult/gerontology acute care, adult/gerontology primary care, family, midwifery/women\u2019s health, and pediatric). The spring term is an extension of the fall and focuses on the management of common problems related to long-term diabetes complications, encouraging clinical decision-making and management of comorbidities. Student\u2019s clinical practicum in diabetes care is in various settings specific to student\u2019s specialty program. Required of all students in the diabetes care concentration in the final year. Four hours per week of practice required both terms. One and one-half hours of clinical conference per week.", "short_title": "Clinical Practice in Diabetes...", "title": "Clinical Practice in Diabetes Care and Management", "school": "NR", @@ -235918,10 +509739,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85311\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85311/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -235970,10 +509819,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85312\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85312/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -236025,15 +509902,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85313\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85313/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "The goal of this practicum is to prepare students to comprehensively manage a caseload of adults with cancer. Emphasis is on anticipation of high-incidence clinical problems, development of clinical reasoning in assessment, differential diagnosis, and formulation of management strategies. The practice sites provide opportunities to understand cancer care along the trajectory of illness from diagnosis to death\/bereavement, develop clinical leadership skills, and deliver high-quality supportive care to patients and families across the disease trajectory. Required of all students in the oncology concentration in the final year. Four hours per week of clinical experience plus one hour per week of clinical conference.", + "description": "The goal of this practicum is to prepare students to comprehensively manage a caseload of adults with cancer. Emphasis is on anticipation of high-incidence clinical problems, development of clinical reasoning in assessment, differential diagnosis, and formulation of management strategies. The practice sites provide opportunities to understand cancer care along the trajectory of illness from diagnosis to death/bereavement, develop clinical leadership skills, and deliver high-quality supportive care to patients and families across the disease trajectory. Required of all students in the oncology concentration in the final year. Four hours per week of clinical experience plus one hour per week of clinical conference.", "short_title": "Clinical Practicum for Oncolo...", "title": "Clinical Practicum for Oncology Nurse Practitioners", "school": "NR", @@ -236068,10 +509973,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85314\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85314/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -236120,15 +510053,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85315\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85315/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is a foundational course designed to provide the student with an introduction to the social, racial, and economic disparities as well as the clinical care of LGBTQI+ patients. The course is taught through the cultural safety framework in which students are asked to view patient care through the lens of addressing barriers to care including system, institutional, and knowledge barriers to providing health care services. This course serves to prepare future nurse practitioners\/midwives to care for common clinical issues seen in LGBTQI+ patients and communities. Students are provided with an introduction to primary care for transgender and non-binary (TGNB) patients including hormone administration, surgical intervention, sexual health and fertility, and general health promotion. The role of the nurse\u00a0practitioner\/midwife as a member of the health care delivery team is emphasized. Open to all specialty programs.", + "description": "This course is a foundational course designed to provide the student with an introduction to the social, racial, and economic disparities as well as the clinical care of LGBTQI+ patients. The course is taught through the cultural safety framework in which students are asked to view patient care through the lens of addressing barriers to care including system, institutional, and knowledge barriers to providing health care services. This course serves to prepare future nurse practitioners/midwives to care for common clinical issues seen in LGBTQI+ patients and communities. Students are provided with an introduction to primary care for transgender and non-binary (TGNB) patients including hormone administration, surgical intervention, sexual health and fertility, and general health promotion. The role of the nurse\u00a0practitioner/midwife as a member of the health care delivery team is emphasized. Open to all specialty programs.", "short_title": "Introduction to Health Dispar...", "title": "Introduction to Health Disparities in LGBTQI+ People", "school": "NR", @@ -236172,10 +510133,38 @@ "classnotes": "Classroom: 10501", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85316\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/85316/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -236215,15 +510204,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85317\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85317/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This interdisciplinary collaborative course with the School of Medicine provides the student with an experience in delivering interdisciplinary primary care to an underserved community at an urban medical clinic through a rotation at HAVEN, the Yale student-run free clinic. Students engage in near-peer teaching with other medical, physician associate, and nurse practitioner students who are at an earlier stage of their training. Students are assigned to eight Saturdays over the course of the fall and spring terms. The didactic curriculum consists of foundational knowledge regarding teaching skills and cultural diversity. This course is available to all family and adult\/gerontology primary care nurse practitioner students in either their first or second specialty year. Students apply for the elective and are chosen to participate at the discretion of the instructor. Students may enroll only once in the course.", + "description": "This interdisciplinary collaborative course with the School of Medicine provides the student with an experience in delivering interdisciplinary primary care to an underserved community at an urban medical clinic through a rotation at HAVEN, the Yale student-run free clinic. Students engage in near-peer teaching with other medical, physician associate, and nurse practitioner students who are at an earlier stage of their training. Students are assigned to eight Saturdays over the course of the fall and spring terms. The didactic curriculum consists of foundational knowledge regarding teaching skills and cultural diversity. This course is available to all family and adult/gerontology primary care nurse practitioner students in either their first or second specialty year. Students apply for the elective and are chosen to participate at the discretion of the instructor. Students may enroll only once in the course.", "short_title": "Advanced Primary Care and Com...", "title": "Advanced Primary Care and Community Health", "school": "NR", @@ -236263,7 +510280,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -236312,10 +510357,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85319\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85319/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -236367,15 +510440,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85320\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85320/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "Prerequisites: NURS 5040 and NURS 5041; or NURS 6000.", - "description": "This is the second of three didactic courses designed to enable students to gain the problem-solving and clinical strategies necessary for primary care practice as nurse practitioners; it builds upon content taught in NURS 7020 and NURS 7030. Classes focus on health promotion, disease prevention, differential diagnoses, and evidence-based management of common health conditions for diverse populations of patients from adolescence to senescence. Required of all adult\/gerontology primary care, family, and midwifery\/women\u2019s health nurse practitioner students in the first year of specialization.", + "description": "This is the second of three didactic courses designed to enable students to gain the problem-solving and clinical strategies necessary for primary care practice as nurse practitioners; it builds upon content taught in NURS 7020 and NURS 7030. Classes focus on health promotion, disease prevention, differential diagnoses, and evidence-based management of common health conditions for diverse populations of patients from adolescence to senescence. Required of all adult/gerontology primary care, family, and midwifery/women\u2019s health nurse practitioner students in the first year of specialization.", "short_title": "Primary Care II", "title": "Primary Care II", "school": "NR", @@ -236425,10 +510526,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85321\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85321/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -236483,10 +510612,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85322\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85322/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -236541,10 +510698,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85323\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85323/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -236599,10 +510784,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85324\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85324/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -236657,15 +510870,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85325\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85325/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "Prerequisite: NURS 7070.", - "description": "This clinical course builds upon the experiences gained in NURS 7070 and provides students further opportunity to develop advanced nursing skills, clinical judgment, and evidence-based patient management strategies necessary to manage common acute and chronic health care conditions. Students participate in designated weekly primary care clinical experiences arranged by faculty. In addition, students meet weekly for a ninety-minute clinical conference that is held concurrently with clinical practice. Clinical seminar discussions for family nurse practitioner students focus on family-centered care and providing care for patients across the lifespan. Clinical seminar discussions for all other students focus on providing patient-centered care for patients from adolescence to senescence. Clinical conference serves as a forum for students to present and discuss cases and explore issues encountered in clinical practice. Required of all adult\/gerontology primary care and family nurse practitioner students in the final year. Taken concurrently with NURS 7500. Eight to sixteen hours of clinical practice per week (fifteen weeks), and ninety minutes of clinical conference per week.", + "description": "This clinical course builds upon the experiences gained in NURS 7070 and provides students further opportunity to develop advanced nursing skills, clinical judgment, and evidence-based patient management strategies necessary to manage common acute and chronic health care conditions. Students participate in designated weekly primary care clinical experiences arranged by faculty. In addition, students meet weekly for a ninety-minute clinical conference that is held concurrently with clinical practice. Clinical seminar discussions for family nurse practitioner students focus on family-centered care and providing care for patients across the lifespan. Clinical seminar discussions for all other students focus on providing patient-centered care for patients from adolescence to senescence. Clinical conference serves as a forum for students to present and discuss cases and explore issues encountered in clinical practice. Required of all adult/gerontology primary care and family nurse practitioner students in the final year. Taken concurrently with NURS 7500. Eight to sixteen hours of clinical practice per week (fifteen weeks), and ninety minutes of clinical conference per week.", "short_title": "Primary Care IV Clinical Prac...", "title": "Primary Care IV Clinical Practice", "school": "NR", @@ -236712,15 +510953,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85326\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85326/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "Prerequisite: NURS 7070.", - "description": "This clinical course builds upon the experiences gained in NURS 7070 and provides students further opportunity to develop advanced nursing skills, clinical judgment, and evidence-based patient management strategies necessary to manage common acute and chronic health care conditions. Students participate in designated weekly primary care clinical experiences arranged by faculty. In addition, students meet weekly for a ninety-minute clinical conference that is held concurrently with clinical practice. Clinical seminar discussions for family nurse practitioner students focus on family-centered care and providing care for patients across the lifespan. Clinical seminar discussions for all other students focus on providing patient-centered care for patients from adolescence to senescence. Clinical conference serves as a forum for students to present and discuss cases and explore issues encountered in clinical practice. Required of all adult\/gerontology primary care and family nurse practitioner students in the final year. Taken concurrently with NURS 7500. Eight to sixteen hours of clinical practice per week (fifteen weeks), and ninety minutes of clinical conference per week.", + "description": "This clinical course builds upon the experiences gained in NURS 7070 and provides students further opportunity to develop advanced nursing skills, clinical judgment, and evidence-based patient management strategies necessary to manage common acute and chronic health care conditions. Students participate in designated weekly primary care clinical experiences arranged by faculty. In addition, students meet weekly for a ninety-minute clinical conference that is held concurrently with clinical practice. Clinical seminar discussions for family nurse practitioner students focus on family-centered care and providing care for patients across the lifespan. Clinical seminar discussions for all other students focus on providing patient-centered care for patients from adolescence to senescence. Clinical conference serves as a forum for students to present and discuss cases and explore issues encountered in clinical practice. Required of all adult/gerontology primary care and family nurse practitioner students in the final year. Taken concurrently with NURS 7500. Eight to sixteen hours of clinical practice per week (fifteen weeks), and ninety minutes of clinical conference per week.", "short_title": "Primary Care IV Clinical Prac...", "title": "Primary Care IV Clinical Practice", "school": "NR", @@ -236767,15 +511036,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85327\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85327/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "Prerequisite: NURS 7070.", - "description": "This clinical course builds upon the experiences gained in NURS 7070 and provides students further opportunity to develop advanced nursing skills, clinical judgment, and evidence-based patient management strategies necessary to manage common acute and chronic health care conditions. Students participate in designated weekly primary care clinical experiences arranged by faculty. In addition, students meet weekly for a ninety-minute clinical conference that is held concurrently with clinical practice. Clinical seminar discussions for family nurse practitioner students focus on family-centered care and providing care for patients across the lifespan. Clinical seminar discussions for all other students focus on providing patient-centered care for patients from adolescence to senescence. Clinical conference serves as a forum for students to present and discuss cases and explore issues encountered in clinical practice. Required of all adult\/gerontology primary care and family nurse practitioner students in the final year. Taken concurrently with NURS 7500. Eight to sixteen hours of clinical practice per week (fifteen weeks), and ninety minutes of clinical conference per week.", + "description": "This clinical course builds upon the experiences gained in NURS 7070 and provides students further opportunity to develop advanced nursing skills, clinical judgment, and evidence-based patient management strategies necessary to manage common acute and chronic health care conditions. Students participate in designated weekly primary care clinical experiences arranged by faculty. In addition, students meet weekly for a ninety-minute clinical conference that is held concurrently with clinical practice. Clinical seminar discussions for family nurse practitioner students focus on family-centered care and providing care for patients across the lifespan. Clinical seminar discussions for all other students focus on providing patient-centered care for patients from adolescence to senescence. Clinical conference serves as a forum for students to present and discuss cases and explore issues encountered in clinical practice. Required of all adult/gerontology primary care and family nurse practitioner students in the final year. Taken concurrently with NURS 7500. Eight to sixteen hours of clinical practice per week (fifteen weeks), and ninety minutes of clinical conference per week.", "short_title": "Primary Care IV Clinical Prac...", "title": "Primary Care IV Clinical Practice", "school": "NR", @@ -236822,15 +511119,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85328\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85328/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "Prerequisite: NURS 7070.", - "description": "This clinical course builds upon the experiences gained in NURS 7070 and provides students further opportunity to develop advanced nursing skills, clinical judgment, and evidence-based patient management strategies necessary to manage common acute and chronic health care conditions. Students participate in designated weekly primary care clinical experiences arranged by faculty. In addition, students meet weekly for a ninety-minute clinical conference that is held concurrently with clinical practice. Clinical seminar discussions for family nurse practitioner students focus on family-centered care and providing care for patients across the lifespan. Clinical seminar discussions for all other students focus on providing patient-centered care for patients from adolescence to senescence. Clinical conference serves as a forum for students to present and discuss cases and explore issues encountered in clinical practice. Required of all adult\/gerontology primary care and family nurse practitioner students in the final year. Taken concurrently with NURS 7500. Eight to sixteen hours of clinical practice per week (fifteen weeks), and ninety minutes of clinical conference per week.", + "description": "This clinical course builds upon the experiences gained in NURS 7070 and provides students further opportunity to develop advanced nursing skills, clinical judgment, and evidence-based patient management strategies necessary to manage common acute and chronic health care conditions. Students participate in designated weekly primary care clinical experiences arranged by faculty. In addition, students meet weekly for a ninety-minute clinical conference that is held concurrently with clinical practice. Clinical seminar discussions for family nurse practitioner students focus on family-centered care and providing care for patients across the lifespan. Clinical seminar discussions for all other students focus on providing patient-centered care for patients from adolescence to senescence. Clinical conference serves as a forum for students to present and discuss cases and explore issues encountered in clinical practice. Required of all adult/gerontology primary care and family nurse practitioner students in the final year. Taken concurrently with NURS 7500. Eight to sixteen hours of clinical practice per week (fifteen weeks), and ninety minutes of clinical conference per week.", "short_title": "Primary Care IV Clinical Prac...", "title": "Primary Care IV Clinical Practice", "school": "NR", @@ -236877,15 +511202,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85329\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85329/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "Prerequisite: NURS 7070.", - "description": "This clinical course builds upon the experiences gained in NURS 7070 and provides students further opportunity to develop advanced nursing skills, clinical judgment, and evidence-based patient management strategies necessary to manage common acute and chronic health care conditions. Students participate in designated weekly primary care clinical experiences arranged by faculty. In addition, students meet weekly for a ninety-minute clinical conference that is held concurrently with clinical practice. Clinical seminar discussions for family nurse practitioner students focus on family-centered care and providing care for patients across the lifespan. Clinical seminar discussions for all other students focus on providing patient-centered care for patients from adolescence to senescence. Clinical conference serves as a forum for students to present and discuss cases and explore issues encountered in clinical practice. Required of all adult\/gerontology primary care and family nurse practitioner students in the final year. Taken concurrently with NURS 7500. Eight to sixteen hours of clinical practice per week (fifteen weeks), and ninety minutes of clinical conference per week.", + "description": "This clinical course builds upon the experiences gained in NURS 7070 and provides students further opportunity to develop advanced nursing skills, clinical judgment, and evidence-based patient management strategies necessary to manage common acute and chronic health care conditions. Students participate in designated weekly primary care clinical experiences arranged by faculty. In addition, students meet weekly for a ninety-minute clinical conference that is held concurrently with clinical practice. Clinical seminar discussions for family nurse practitioner students focus on family-centered care and providing care for patients across the lifespan. Clinical seminar discussions for all other students focus on providing patient-centered care for patients from adolescence to senescence. Clinical conference serves as a forum for students to present and discuss cases and explore issues encountered in clinical practice. Required of all adult/gerontology primary care and family nurse practitioner students in the final year. Taken concurrently with NURS 7500. Eight to sixteen hours of clinical practice per week (fifteen weeks), and ninety minutes of clinical conference per week.", "short_title": "Primary Care IV Clinical Prac...", "title": "Primary Care IV Clinical Practice", "school": "NR", @@ -236932,10 +511285,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85330\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85330/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -236986,17 +511367,45 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85331\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85331/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is designed to prepare FNP\/AGPCNP students to clinically apply pharmacotherapeutics from an advanced practice approach. Students learn to identify the correct pharmaceutical agents for therapy and to develop plans to monitor the results for effectiveness and safety in a variety of advanced practice nursing clinical settings. Students learn multiple methods for obtaining pharmacological information requisite to safely prescribe and monitor effects of their pharmacological selections. Required of all adult\/gerontology primary care and family nurse practitioner students in the first year of specialization. Taken concurrently with NURS 6020. The hours per week are determined by the specialty.", - "short_title": "Advanced FNP\/AGPCNP Pharmacology", - "title": "Advanced FNP\/AGPCNP Pharmacology", + "description": "This course is designed to prepare FNP/AGPCNP students to clinically apply pharmacotherapeutics from an advanced practice approach. Students learn to identify the correct pharmaceutical agents for therapy and to develop plans to monitor the results for effectiveness and safety in a variety of advanced practice nursing clinical settings. Students learn multiple methods for obtaining pharmacological information requisite to safely prescribe and monitor effects of their pharmacological selections. Required of all adult/gerontology primary care and family nurse practitioner students in the first year of specialization. Taken concurrently with NURS 6020. The hours per week are determined by the specialty.", + "short_title": "Advanced FNP/AGPCNP Pharmacology", + "title": "Advanced FNP/AGPCNP Pharmacology", "school": "NR", "credits": 0.0, "extra_info": "ACTIVE", @@ -237041,10 +511450,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85332\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85332/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -237091,15 +511528,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85333\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85333/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is designed to build competencies in gynecologic\/reproductive\/sexual health care from adolescence through menopause. Building on the foundational content and competencies introduced in the previous semester, this course focuses on the evaluation and management of more complex gynecologic\/reproductive\/ sexual health conditions. Through the process of working with this content, students will also engage with a variety of advanced practice nursing competencies such as appraising evidence and ways of knowing to formulate and defend an approach to practice; fostering caring relationships; employing context driven, advanced reasoning to the diagnostic and decision making processes; and facilitating complex conversations and decisions with patients. This course is required for all nurse-midwifery, women\u2019s health nurse\u00a0practitioner, family nurse practitioner, and adult\/gerontologic primary care nurse practitioner students in the first year of specialization. Open to others, with the permission of the instructor. Two hours per week for 8 weeks.", + "description": "This course is designed to build competencies in gynecologic/reproductive/sexual health care from adolescence through menopause. Building on the foundational content and competencies introduced in the previous semester, this course focuses on the evaluation and management of more complex gynecologic/reproductive/ sexual health conditions. Through the process of working with this content, students will also engage with a variety of advanced practice nursing competencies such as appraising evidence and ways of knowing to formulate and defend an approach to practice; fostering caring relationships; employing context driven, advanced reasoning to the diagnostic and decision making processes; and facilitating complex conversations and decisions with patients. This course is required for all nurse-midwifery, women\u2019s health nurse\u00a0practitioner, family nurse practitioner, and adult/gerontologic primary care nurse practitioner students in the first year of specialization. Open to others, with the permission of the instructor. Two hours per week for 8 weeks.", "short_title": "Women\u2019s Health III", "title": "Women\u2019s Health III", "school": "NR", @@ -237152,10 +511617,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85334\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85334/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -237211,7 +511704,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -237267,7 +511788,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -237323,7 +511872,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -237379,7 +511956,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -237432,10 +512037,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85339\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85339/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -237488,10 +512121,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85340\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85340/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -237544,10 +512205,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85341\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85341/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -237603,7 +512292,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -237656,10 +512373,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85343\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85343/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -237702,15 +512447,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85344\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85344/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "Prerequisite: NURS 7312.", - "description": "This clinical course is the practicum for the seminar Global Midwifery: Uganda (NURS 7312) and runs for six consecutive weeks in the summer. This is an immersive clinical experience in nurse-midwifery that encompasses full-scope clinical experiences (AP, IP, PP, GYN) as well as some tropical medicine\/infectious diseases. The experience includes mandatory predeparture skills labs and six weeks in Uganda spent between two locations: Ot Nywal Me Kuc Birth House in Atiak and either Kawempe Hospital in Kampala or Lacor Hospital in Gulu. Yale faculty accompany students, and close preceptorship is provided at all times.", + "description": "This clinical course is the practicum for the seminar Global Midwifery: Uganda (NURS 7312) and runs for six consecutive weeks in the summer. This is an immersive clinical experience in nurse-midwifery that encompasses full-scope clinical experiences (AP, IP, PP, GYN) as well as some tropical medicine/infectious diseases. The experience includes mandatory predeparture skills labs and six weeks in Uganda spent between two locations: Ot Nywal Me Kuc Birth House in Atiak and either Kawempe Hospital in Kampala or Lacor Hospital in Gulu. Yale faculty accompany students, and close preceptorship is provided at all times.", "short_title": "Global Midwifery Clinical: Ug...", "title": "Global Midwifery Clinical: Uganda", "school": "NR", @@ -237751,12 +512524,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "Prerequisites: all YSN core courses and all nurse-midwifery core courses.", - "description": "This course is designed to help students assimilate all areas of midwifery practice. It integrates student provision of full-scope care with appropriate clinical supervision, academic support, and clinical support including site preceptors, faculty, school, and library resources. Students continue to refine their ability to provide high-quality, evidence-based, and culturally sensitive care that is safe and professionally accountable. Students are expected to build on the knowledge and skills they have gained in their previous courses at YSN. Required of all nurse-midwifery students in the final year. For nurse-midwifery and nurse-midwifery\/women\u2019s health nurse practitioner students, this course must be taken concurrently with NURS 7330, and students must successfully complete all requirements of both courses in order to graduate.", + "description": "This course is designed to help students assimilate all areas of midwifery practice. It integrates student provision of full-scope care with appropriate clinical supervision, academic support, and clinical support including site preceptors, faculty, school, and library resources. Students continue to refine their ability to provide high-quality, evidence-based, and culturally sensitive care that is safe and professionally accountable. Students are expected to build on the knowledge and skills they have gained in their previous courses at YSN. Required of all nurse-midwifery students in the final year. For nurse-midwifery and nurse-midwifery/women\u2019s health nurse practitioner students, this course must be taken concurrently with NURS 7330, and students must successfully complete all requirements of both courses in order to graduate.", "short_title": "Integration of Midwifery Care", "title": "Integration of Midwifery Care", "school": "NR", @@ -237795,15 +512596,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85346\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85346/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "Prerequisites: all YSN core courses and all nurse-midwifery core courses.", - "description": "This course is designed to help students assimilate all areas of midwifery practice. It integrates student provision of full-scope care with appropriate clinical supervision, academic support, and clinical support including site preceptors, faculty, school, and library resources. Students continue to refine their ability to provide high-quality, evidence-based, and culturally sensitive care that is safe and professionally accountable. Students are expected to build on the knowledge and skills they have gained in their previous courses at YSN. Required of all nurse-midwifery students in the final year. For nurse-midwifery and nurse-midwifery\/women\u2019s health nurse practitioner students, this course must be taken concurrently with NURS 7330, and students must successfully complete all requirements of both courses in order to graduate.", + "description": "This course is designed to help students assimilate all areas of midwifery practice. It integrates student provision of full-scope care with appropriate clinical supervision, academic support, and clinical support including site preceptors, faculty, school, and library resources. Students continue to refine their ability to provide high-quality, evidence-based, and culturally sensitive care that is safe and professionally accountable. Students are expected to build on the knowledge and skills they have gained in their previous courses at YSN. Required of all nurse-midwifery students in the final year. For nurse-midwifery and nurse-midwifery/women\u2019s health nurse practitioner students, this course must be taken concurrently with NURS 7330, and students must successfully complete all requirements of both courses in order to graduate.", "short_title": "Integration of Midwifery Care", "title": "Integration of Midwifery Care", "school": "NR", @@ -237842,15 +512671,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85346\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85346/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "Prerequisites: all YSN core courses and all nurse-midwifery core courses.", - "description": "This course is designed to help students assimilate all areas of midwifery practice. It integrates student provision of full-scope care with appropriate clinical supervision, academic support, and clinical support including site preceptors, faculty, school, and library resources. Students continue to refine their ability to provide high-quality, evidence-based, and culturally sensitive care that is safe and professionally accountable. Students are expected to build on the knowledge and skills they have gained in their previous courses at YSN. Required of all nurse-midwifery students in the final year. For nurse-midwifery and nurse-midwifery\/women\u2019s health nurse practitioner students, this course must be taken concurrently with NURS 7330, and students must successfully complete all requirements of both courses in order to graduate.", + "description": "This course is designed to help students assimilate all areas of midwifery practice. It integrates student provision of full-scope care with appropriate clinical supervision, academic support, and clinical support including site preceptors, faculty, school, and library resources. Students continue to refine their ability to provide high-quality, evidence-based, and culturally sensitive care that is safe and professionally accountable. Students are expected to build on the knowledge and skills they have gained in their previous courses at YSN. Required of all nurse-midwifery students in the final year. For nurse-midwifery and nurse-midwifery/women\u2019s health nurse practitioner students, this course must be taken concurrently with NURS 7330, and students must successfully complete all requirements of both courses in order to graduate.", "short_title": "Integration of Midwifery Care", "title": "Integration of Midwifery Care", "school": "NR", @@ -237889,15 +512746,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85346\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85346/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "Prerequisite: successful completion of all courses required for the first, second, and third terms of the specialty.", - "description": "This course concentrates on the application of physiologic, developmental, psychosocial, and cultural theories to advanced clinical decision-making, focusing on reproductive and developmental health issues for women from adolescence to senescence. Required of all nurse-midwifery and women\u2019s health nurse practitioner students in the final year of specialization. For nurse-midwifery and nurse-midwifery\/women\u2019s health nurse practitioner students, this course must be taken concurrently with NURS 7320, and students must successfully complete all requirements of both courses in order to graduate.", + "description": "This course concentrates on the application of physiologic, developmental, psychosocial, and cultural theories to advanced clinical decision-making, focusing on reproductive and developmental health issues for women from adolescence to senescence. Required of all nurse-midwifery and women\u2019s health nurse practitioner students in the final year of specialization. For nurse-midwifery and nurse-midwifery/women\u2019s health nurse practitioner students, this course must be taken concurrently with NURS 7320, and students must successfully complete all requirements of both courses in order to graduate.", "short_title": "Integration of Women\u2019s Health...", "title": "Integration of Women\u2019s Health Care", "school": "NR", @@ -237939,12 +512824,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "Prerequisite: successful completion of all courses required for the first, second, and third terms of the specialty.", - "description": "This course concentrates on the application of physiologic, developmental, psychosocial, and cultural theories to advanced clinical decision-making, focusing on reproductive and developmental health issues for women from adolescence to senescence. Required of all nurse-midwifery and women\u2019s health nurse practitioner students in the final year of specialization. For nurse-midwifery and nurse-midwifery\/women\u2019s health nurse practitioner students, this course must be taken concurrently with NURS 7320, and students must successfully complete all requirements of both courses in order to graduate.", + "description": "This course concentrates on the application of physiologic, developmental, psychosocial, and cultural theories to advanced clinical decision-making, focusing on reproductive and developmental health issues for women from adolescence to senescence. Required of all nurse-midwifery and women\u2019s health nurse practitioner students in the final year of specialization. For nurse-midwifery and nurse-midwifery/women\u2019s health nurse practitioner students, this course must be taken concurrently with NURS 7320, and students must successfully complete all requirements of both courses in order to graduate.", "short_title": "Integration of Women\u2019s Health...", "title": "Integration of Women\u2019s Health Care", "school": "NR", @@ -237986,12 +512899,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "Prerequisite: successful completion of all courses required for the first, second, and third terms of the specialty.", - "description": "This course concentrates on the application of physiologic, developmental, psychosocial, and cultural theories to advanced clinical decision-making, focusing on reproductive and developmental health issues for women from adolescence to senescence. Required of all nurse-midwifery and women\u2019s health nurse practitioner students in the final year of specialization. For nurse-midwifery and nurse-midwifery\/women\u2019s health nurse practitioner students, this course must be taken concurrently with NURS 7320, and students must successfully complete all requirements of both courses in order to graduate.", + "description": "This course concentrates on the application of physiologic, developmental, psychosocial, and cultural theories to advanced clinical decision-making, focusing on reproductive and developmental health issues for women from adolescence to senescence. Required of all nurse-midwifery and women\u2019s health nurse practitioner students in the final year of specialization. For nurse-midwifery and nurse-midwifery/women\u2019s health nurse practitioner students, this course must be taken concurrently with NURS 7320, and students must successfully complete all requirements of both courses in order to graduate.", "short_title": "Integration of Women\u2019s Health...", "title": "Integration of Women\u2019s Health Care", "school": "NR", @@ -238033,12 +512974,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "Prerequisite: successful completion of all courses required for the first, second, and third terms of the specialty.", - "description": "This course concentrates on the application of physiologic, developmental, psychosocial, and cultural theories to advanced clinical decision-making, focusing on reproductive and developmental health issues for women from adolescence to senescence. Required of all nurse-midwifery and women\u2019s health nurse practitioner students in the final year of specialization. For nurse-midwifery and nurse-midwifery\/women\u2019s health nurse practitioner students, this course must be taken concurrently with NURS 7320, and students must successfully complete all requirements of both courses in order to graduate.", + "description": "This course concentrates on the application of physiologic, developmental, psychosocial, and cultural theories to advanced clinical decision-making, focusing on reproductive and developmental health issues for women from adolescence to senescence. Required of all nurse-midwifery and women\u2019s health nurse practitioner students in the final year of specialization. For nurse-midwifery and nurse-midwifery/women\u2019s health nurse practitioner students, this course must be taken concurrently with NURS 7320, and students must successfully complete all requirements of both courses in order to graduate.", "short_title": "Integration of Women\u2019s Health...", "title": "Integration of Women\u2019s Health Care", "school": "NR", @@ -238077,10 +513046,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85352\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85352/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -238127,12 +513124,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This portion of the advanced clinical pharmacology course is designed to prepare students in the midwifery and women\u2019s health specialties to clinically apply principles of pharmacotherapy in the management of gynecologic\/reproductive\/sexual and primary health care conditions. Through employing the World Health Organization\u2019s person-drug (p-drug) process, series of selected case studies, and online and class discussion, students learn of responsible prescribing, including identifying when medication treatment is appropriate, choosing the best medicines for therapy, and monitoring the efficacy and safety of medicines. This course is required for all nurse-midwifery and women\u2019s health nurse practitioner students in the first year of specialization. Open to others with the permission of the instructor. Fifteen hours of content is presented over the course of the semester.", + "description": "This portion of the advanced clinical pharmacology course is designed to prepare students in the midwifery and women\u2019s health specialties to clinically apply principles of pharmacotherapy in the management of gynecologic/reproductive/sexual and primary health care conditions. Through employing the World Health Organization\u2019s person-drug (p-drug) process, series of selected case studies, and online and class discussion, students learn of responsible prescribing, including identifying when medication treatment is appropriate, choosing the best medicines for therapy, and monitoring the efficacy and safety of medicines. This course is required for all nurse-midwifery and women\u2019s health nurse practitioner students in the first year of specialization. Open to others with the permission of the instructor. Fifteen hours of content is presented over the course of the semester.", "short_title": "Midwifery and Women\u2019s Health ...", "title": "Midwifery and Women\u2019s Health Pharmacology", "school": "NR", @@ -238180,10 +513205,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85354\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85354/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -238226,7 +513279,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -238277,10 +513358,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85355\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85355/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -238332,10 +513441,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85356\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85356/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -238386,10 +513523,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85357\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85357/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -238441,10 +513606,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85358\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85358/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -238495,10 +513688,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85359\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85359/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -238549,10 +513770,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85360\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85360/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -238603,10 +513852,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85361\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85361/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -238657,10 +513934,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85362\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85362/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -238711,10 +514016,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85363\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85363/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -238765,10 +514098,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85364\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85364/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -238822,10 +514183,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85365\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85365/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -238876,10 +514265,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85366\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85366/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -238930,10 +514347,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85367\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85367/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -238984,10 +514429,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85368\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85368/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -239038,10 +514511,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85369\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85369/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -239092,10 +514593,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85370\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85370/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -239146,10 +514675,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87178\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87178/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -239203,10 +514760,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85371\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85371/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -239257,10 +514842,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85372\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85372/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -239311,10 +514924,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85373\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85373/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -239365,17 +515006,45 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85374\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85374/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course provides a basis for predicting the vulnerability for common cardiovascular, respiratory, hematologic, renal, and neurological clinical problems that occur as a result of illness or outcome of treatment in adult and geriatric patients. Assessment, management, and evaluation are emphasized. Normal physiology, pathophysiology, and pharmacological management of these conditions are included. Required of all adult\/gerontology acute care nurse practitioner students in the first year of specialization.", + "description": "This course provides a basis for predicting the vulnerability for common cardiovascular, respiratory, hematologic, renal, and neurological clinical problems that occur as a result of illness or outcome of treatment in adult and geriatric patients. Assessment, management, and evaluation are emphasized. Normal physiology, pathophysiology, and pharmacological management of these conditions are included. Required of all adult/gerontology acute care nurse practitioner students in the first year of specialization.", "short_title": "Pathophysiology and Managemen...", - "title": "Pathophysiology and Management of Adult\/Gerontology Acute Care Health Problems I", + "title": "Pathophysiology and Management of Adult/Gerontology Acute Care Health Problems I", "school": "NR", "credits": 0.0, "extra_info": "ACTIVE", @@ -239419,17 +515088,45 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85376\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85376/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "Prerequisites: NURS 5040 and NURS 5041, or NURS 6000; and NURS 7800 and NURS 7810.", - "description": "This practicum and seminar in the care of acutely, critically, and complex chronically ill adult and geriatric patients provides students with direct care experiences. The focus is on assessment and management. Critical thinking, clinical analysis of patient data, formulation of differential diagnoses, and planning of care are emphasized. Clinical seminars focus on case presentation by students. Required of all adult\/gerontology acute care nurse practitioner students in the first year of specialization. Eight hours of clinical practice plus one hour of seminar per week.", - "short_title": "Adult\/Gerontology Acute Care ...", - "title": "Adult\/Gerontology Acute Care Clinical Practice I", + "description": "This practicum and seminar in the care of acutely, critically, and complex chronically ill adult and geriatric patients provides students with direct care experiences. The focus is on assessment and management. Critical thinking, clinical analysis of patient data, formulation of differential diagnoses, and planning of care are emphasized. Clinical seminars focus on case presentation by students. Required of all adult/gerontology acute care nurse practitioner students in the first year of specialization. Eight hours of clinical practice plus one hour of seminar per week.", + "short_title": "Adult/Gerontology Acute Care ...", + "title": "Adult/Gerontology Acute Care Clinical Practice I", "school": "NR", "credits": 0.0, "extra_info": "ACTIVE", @@ -239476,17 +515173,45 @@ "classnotes": "Break out room: 30902", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85377\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/85377/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "Prerequisites: NURS 5040 and NURS 5041, or NURS 6000; and NURS 7800 and NURS 7810.", - "description": "This practicum and seminar in the care of acutely, critically, and complex chronically ill adult and geriatric patients provides students with direct care experiences. The focus is on assessment and management. Critical thinking, clinical analysis of patient data, formulation of differential diagnoses, and planning of care are emphasized. Clinical seminars focus on case presentation by students. Required of all adult\/gerontology acute care nurse practitioner students in the first year of specialization. Eight hours of clinical practice plus one hour of seminar per week.", - "short_title": "Adult\/Gerontology Acute Care ...", - "title": "Adult\/Gerontology Acute Care Clinical Practice I", + "description": "This practicum and seminar in the care of acutely, critically, and complex chronically ill adult and geriatric patients provides students with direct care experiences. The focus is on assessment and management. Critical thinking, clinical analysis of patient data, formulation of differential diagnoses, and planning of care are emphasized. Clinical seminars focus on case presentation by students. Required of all adult/gerontology acute care nurse practitioner students in the first year of specialization. Eight hours of clinical practice plus one hour of seminar per week.", + "short_title": "Adult/Gerontology Acute Care ...", + "title": "Adult/Gerontology Acute Care Clinical Practice I", "school": "NR", "credits": 0.0, "extra_info": "CANCELLED", @@ -239527,14 +515252,42 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "The second term of a yearlong (with NURS 7860) practicum that provides students with clinical experience in data-gathering techniques, diagnostic reasoning, management of acute and chronic health problems, application of technology in patient care, consultation, collaboration, health promotion, and risk factor modification. This course builds upon the foundational objectives successfully met in NURS 7840. The differential diagnosis and treatment of complex health problems commonly seen in acutely ill adult\/gerontology patients are stressed, with special emphasis on conditions presented in NURS 7830 and NURS 7850. The focus is on those acute illnesses with a predictable course and established treatment approaches. Students have the opportunity to manage a caseload of patients from admission through discharge, as well as follow patients on an outpatient basis. A two-hour weekly clinical conference addresses acute care clinical issues. Required of all adult\/gerontology acute care nurse practitioner students in the final year. Preceptors are APRNs and physicians. Twenty-four hours per week in an acute care setting for fifteen weeks.", - "short_title": "Adult\/Gerontology Acute Care ...", - "title": "Adult\/Gerontology Acute Care Clinical Practice III", + "description": "The second term of a yearlong (with NURS 7860) practicum that provides students with clinical experience in data-gathering techniques, diagnostic reasoning, management of acute and chronic health problems, application of technology in patient care, consultation, collaboration, health promotion, and risk factor modification. This course builds upon the foundational objectives successfully met in NURS 7840. The differential diagnosis and treatment of complex health problems commonly seen in acutely ill adult/gerontology patients are stressed, with special emphasis on conditions presented in NURS 7830 and NURS 7850. The focus is on those acute illnesses with a predictable course and established treatment approaches. Students have the opportunity to manage a caseload of patients from admission through discharge, as well as follow patients on an outpatient basis. A two-hour weekly clinical conference addresses acute care clinical issues. Required of all adult/gerontology acute care nurse practitioner students in the final year. Preceptors are APRNs and physicians. Twenty-four hours per week in an acute care setting for fifteen weeks.", + "short_title": "Adult/Gerontology Acute Care ...", + "title": "Adult/Gerontology Acute Care Clinical Practice III", "school": "NR", "credits": 0.0, "extra_info": "ACTIVE", @@ -239581,15 +515334,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85379\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85379/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is designed to prepare students to clinically apply pharmacotherapeutics from an advanced practice approach. Students learn to identify the correct pharmaceutical agents for therapy and to develop plans to monitor the results for effectiveness and safety in a variety of advanced practice nursing clinical settings. Students learn multiple methods for obtaining pharmacological information requisite to safely prescribe and monitor effects of their pharmacological selections. Required of all adult\/gerontology acute care nurse practitioner students in the first year of specialization. Taken concurrently with NURS 6020. The hours per week are determined by the specialty.", + "description": "This course is designed to prepare students to clinically apply pharmacotherapeutics from an advanced practice approach. Students learn to identify the correct pharmaceutical agents for therapy and to develop plans to monitor the results for effectiveness and safety in a variety of advanced practice nursing clinical settings. Students learn multiple methods for obtaining pharmacological information requisite to safely prescribe and monitor effects of their pharmacological selections. Required of all adult/gerontology acute care nurse practitioner students in the first year of specialization. Taken concurrently with NURS 6020. The hours per week are determined by the specialty.", "short_title": "Advanced Acute Care Pharmacology", "title": "Advanced Acute Care Pharmacology", "school": "NR", @@ -239635,10 +515416,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85380\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85380/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -239689,15 +515498,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85381\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85381/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "Prerequisites: NURS 7912 and NURS 7914.", - "description": "This practicum, the second of two clinical courses, provides students with direct learning experiences in the coordination and delivery of advanced care from infancy through adolescence in a pediatric acute care setting. The clinical setting differs from the first-term experience. The focus of this course is on learning to assess, diagnose, and manage acute conditions and illnesses encountered in the pediatric acute care population. Under the guidance and supervision of the preceptor, the student develops advanced clinical skills, explores evidence-based research, and develops plans of care within the context of their patient\u2019s culture and environment. Required of all pediatric nurse practitioner\u2014acute care students in the final term. Sixteen hours per week in a clinical setting and two hours per week of simulation\/clinical conference.", + "description": "This practicum, the second of two clinical courses, provides students with direct learning experiences in the coordination and delivery of advanced care from infancy through adolescence in a pediatric acute care setting. The clinical setting differs from the first-term experience. The focus of this course is on learning to assess, diagnose, and manage acute conditions and illnesses encountered in the pediatric acute care population. Under the guidance and supervision of the preceptor, the student develops advanced clinical skills, explores evidence-based research, and develops plans of care within the context of their patient\u2019s culture and environment. Required of all pediatric nurse practitioner\u2014acute care students in the final term. Sixteen hours per week in a clinical setting and two hours per week of simulation/clinical conference.", "short_title": "Acute Care of Children II Cli...", "title": "Acute Care of Children II Clinical", "school": "NR", @@ -239743,10 +515580,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85382\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85382/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -239786,10 +515651,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84990\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84990/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -239829,10 +515722,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86541\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86541/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -239872,10 +515793,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86619\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86619/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -239915,10 +515864,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86620\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86620/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -239958,10 +515935,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86621\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86621/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -240001,10 +516006,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86622\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86622/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -240044,10 +516077,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86623\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86623/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -240089,15 +516150,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85383\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85383/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is the fourth and final in a series of four Clinical DNP Practica in which students gain healthcare agency experience in preparing for, developing, implementing, evaluating, and disseminating their DNP projects. In this final practicum, students will evaluate and disseminate their DNP project implementation findings. They will develop a plan with their outside mentors\/experts to disseminate DNP project findings to the healthcare system or agency where the project was implemented. This will include recommendations for scaling and sustainability. The expected outcome is completion of the final DNP project phases: evaluation and dissemination. The student will keep weekly logs of their activities, which are submitted to, reviewed and discussed with course faculty. This course is required for all second year Clinical DNP students.", + "description": "This course is the fourth and final in a series of four Clinical DNP Practica in which students gain healthcare agency experience in preparing for, developing, implementing, evaluating, and disseminating their DNP projects. In this final practicum, students will evaluate and disseminate their DNP project implementation findings. They will develop a plan with their outside mentors/experts to disseminate DNP project findings to the healthcare system or agency where the project was implemented. This will include recommendations for scaling and sustainability. The expected outcome is completion of the final DNP project phases: evaluation and dissemination. The student will keep weekly logs of their activities, which are submitted to, reviewed and discussed with course faculty. This course is required for all second year Clinical DNP students.", "short_title": "Clinical D.N.P. Practicum IV", "title": "Clinical D.N.P. Practicum IV", "school": "NR", @@ -240134,10 +516223,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85384\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85384/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -240182,7 +516299,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -240224,10 +516369,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85386\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85386/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -240273,10 +516446,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85387\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85387/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -240319,10 +516520,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85388\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85388/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -240364,15 +516593,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85389\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85389/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This intensive course offered in summer semester is open to DNP and Ph.D. students and provides a critical overview of the historical and contemporary health and health disparities research, relevant literature, and policies as essential context for understanding how to achieve health equity. The social and biological determinants of health and health disparities are also critically examined in light of political, economic, cultural, legal, and ethical issues. Selected health and health disparities population-based data are examined as a foundation for explicating how subpopulations experience disparate health across the lifespan. Students examine how past and current policies (state, federal, tribal), politics, population-based data findings, and selected frameworks enhance or act as barriers to achieving health equity with diverse populations, systems, and\/or communities. Additionally, students design an organizational policy plan for achieving population health and health equity within a health system, organization, and\/or community-based health system. Required of all second-year Ph.D. students in nursing.", + "description": "This intensive course offered in summer semester is open to DNP and Ph.D. students and provides a critical overview of the historical and contemporary health and health disparities research, relevant literature, and policies as essential context for understanding how to achieve health equity. The social and biological determinants of health and health disparities are also critically examined in light of political, economic, cultural, legal, and ethical issues. Selected health and health disparities population-based data are examined as a foundation for explicating how subpopulations experience disparate health across the lifespan. Students examine how past and current policies (state, federal, tribal), politics, population-based data findings, and selected frameworks enhance or act as barriers to achieving health equity with diverse populations, systems, and/or communities. Additionally, students design an organizational policy plan for achieving population health and health equity within a health system, organization, and/or community-based health system. Required of all second-year Ph.D. students in nursing.", "short_title": "Achieving Population Health E...", "title": "Achieving Population Health Equity", "school": "GS", @@ -240410,7 +516667,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -240455,10 +516740,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85390\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85390/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -240503,15 +516816,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85391\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85391/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "Prerequisites: successful completion of all required theoretical and D.N.P. project courses as well as an approved D.N.P. project proposal.", - "description": "The Leadership Immersion is a yearlong, mentored experience in which students apply relevant knowledge to an evidence-based experience culminating in a final D.N.P. project in NURS 9990\/NURS 9991. Students employ effective communication and collaboration skills to influence improved health care quality and safety and to negotiate successful changes in care delivery processes within and\/or across health and health care systems and organizations. Students complete the immersion under guidance of the site mentor, who will be a member of the nursing faculty D.N.P. project adviser\/committee under the leadership of the D.N.P. project chair and the D.N.P. director. Required of all D.N.P. students in the final year. 225 practicum hours.", + "description": "The Leadership Immersion is a yearlong, mentored experience in which students apply relevant knowledge to an evidence-based experience culminating in a final D.N.P. project in NURS 9990/NURS 9991. Students employ effective communication and collaboration skills to influence improved health care quality and safety and to negotiate successful changes in care delivery processes within and/or across health and health care systems and organizations. Students complete the immersion under guidance of the site mentor, who will be a member of the nursing faculty D.N.P. project adviser/committee under the leadership of the D.N.P. project chair and the D.N.P. director. Required of all D.N.P. students in the final year. 225 practicum hours.", "short_title": "Leadership Immersion Practicum", "title": "Leadership Immersion Practicum", "school": "NR", @@ -240548,15 +516889,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85392\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85392/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "Students apply relevant knowledge to an evidence-based, yearlong experience culminating in a final D.N.P. project manuscript, which will be submitted for publication. The D.N.P. project includes critical review and integration of relevant literature\/research that provides support of the identified population-based health issue or problem, as well as at least one policy and\/or evidence-based strategy that has the potential to address that health issue or problem. Required of all D.N.P. students in the final year.", + "description": "Students apply relevant knowledge to an evidence-based, yearlong experience culminating in a final D.N.P. project manuscript, which will be submitted for publication. The D.N.P. project includes critical review and integration of relevant literature/research that provides support of the identified population-based health issue or problem, as well as at least one policy and/or evidence-based strategy that has the potential to address that health issue or problem. Required of all D.N.P. students in the final year.", "short_title": "D.N.P. Project: Evidence-Base...", "title": "D.N.P. Project: Evidence-Based Practice Change", "school": "NR", @@ -240593,10 +516962,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85393\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85393/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -240634,7 +517031,7 @@ "16:00", "17:15", "HQ 213 - Humanities Quadrangle 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -240642,7 +517039,7 @@ "16:00", "17:15", "HQ 213 - Humanities Quadrangle 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -240654,10 +517051,38 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84574\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84574/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -240694,7 +517119,7 @@ "14:30", "15:45", "HQ 213 - Humanities Quadrangle 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -240702,7 +517127,7 @@ "14:30", "15:45", "HQ 213 - Humanities Quadrangle 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -240714,10 +517139,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84578\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84578/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -240755,7 +517208,7 @@ "16:00", "17:15", "HQ 213 - Humanities Quadrangle 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -240763,7 +517216,7 @@ "16:00", "17:15", "HQ 213 - Humanities Quadrangle 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -240775,10 +517228,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84574\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84574/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -240815,7 +517296,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -240852,7 +517361,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -240889,7 +517426,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -240926,7 +517491,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -240963,7 +517556,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -241000,7 +517621,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -241037,7 +517686,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -241074,7 +517751,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -241114,10 +517819,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87167\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87167/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -241157,15 +517890,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84580\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84580/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "Study of the interactions between tissues and biomaterials, with an emphasis on the importance of molecular- and cellular-level events in dictating the performance and longevity of clinically relevant devices. Attention to specific areas such as biomaterials for tissue engineering and the importance of stem\/progenitor cells, as well as biomaterial-mediated gene and drug delivery.", + "description": "Study of the interactions between tissues and biomaterials, with an emphasis on the importance of molecular- and cellular-level events in dictating the performance and longevity of clinically relevant devices. Attention to specific areas such as biomaterials for tissue engineering and the importance of stem/progenitor cells, as well as biomaterial-mediated gene and drug delivery.", "short_title": "Biomaterial-Tissue Interactions", "title": "Biomaterial-Tissue Interactions", "school": "GS", @@ -241199,7 +517960,7 @@ "9:00", "10:15", "GR109 ROSENFELD - 109 Grove Street ROSENFELD", - "https:\/\/map.yale.edu\/?id=1910#!m\/560109" + "https://map.yale.edu/?id=1910#!m/560109" ] ], "Thursday": [ @@ -241207,7 +517968,7 @@ "9:00", "10:15", "GR109 ROSENFELD - 109 Grove Street ROSENFELD", - "https:\/\/map.yale.edu\/?id=1910#!m\/560109" + "https://map.yale.edu/?id=1910#!m/560109" ] ] }, @@ -241219,10 +517980,173 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83398\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83398/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988099336624146, + 0.9987118244171143, + 0.9986279010772705, + 0.9936205744743347, + 0.9978612065315247, + 0.9986523985862732, + 0.9985289573669434, + 0.9988441467285156, + 0.9808270931243896, + 0.9985437393188477, + 0.9967505931854248, + 0.9986782670021057, + 0.9987407326698303, + 0.9986328482627869 + ], + "sentiment_counts": { + "POSITIVE": 14, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9994599223136902, + 0.9988892674446106, + 0.9988734126091003, + 0.9994027614593506, + 0.9968274235725403, + 0.997668445110321, + 0.9988721013069153, + 0.9988349080085754, + 0.998449444770813, + 0.9980111122131348, + 0.9911053776741028, + 0.9985089898109436, + 0.9983434677124023, + 0.9988825917243958, + 0.9987339377403259, + 0.9984373450279236, + 0.9994755387306213 + ], + "sentiment_counts": { + "NEGATIVE": 4, + "POSITIVE": 13 + }, + "sentiment_distribution": { + "NEGATIVE": 0.23529411764705882, + "POSITIVE": 0.7647058823529411 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7647058823529411 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9816270470619202, + 0.9989243149757385, + 0.9994673132896423, + 0.9975169897079468, + 0.9984714388847351, + 0.997117280960083, + 0.998829185962677, + 0.9989288449287415, + 0.9988935589790344, + 0.9995110034942627, + 0.9972569346427917, + 0.9987109899520874, + 0.9988420605659485, + 0.9988729357719421, + 0.9989044666290283, + 0.9988370537757874, + 0.9994608759880066 + ], + "sentiment_counts": { + "NEGATIVE": 4, + "POSITIVE": 13 + }, + "sentiment_distribution": { + "NEGATIVE": 0.23529411764705882, + "POSITIVE": 0.7647058823529411 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7647058823529411 + ] + }, + "final_label": "POSITIVE", + "final_count": 40, + "final_proportion": 0.8333333333333334, + "final_counts": { + "POSITIVE": 40, + "NEGATIVE": 8 + }, + "final_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + } + } }, { "season_code": "202301", @@ -241262,7 +518186,7 @@ "13:00", "14:15", "BML 137 - Brady Memorial Laboratory 137", - "https:\/\/map.yale.edu\/?id=1910#!m\/560069" + "https://map.yale.edu/?id=1910#!m/560069" ] ], "Wednesday": [ @@ -241270,7 +518194,7 @@ "13:00", "14:15", "BML 137 - Brady Memorial Laboratory 137", - "https:\/\/map.yale.edu\/?id=1910#!m\/560069" + "https://map.yale.edu/?id=1910#!m/560069" ] ], "Friday": [ @@ -241278,7 +518202,7 @@ "13:30", "14:30", "BML 137 - Brady Memorial Laboratory 137", - "https:\/\/map.yale.edu\/?id=1910#!m\/560069" + "https://map.yale.edu/?id=1910#!m/560069" ] ] }, @@ -241290,10 +518214,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84583\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84583/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -241344,15 +518296,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86149\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86149/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "Readings and discussion on a diverse range of current topics in molecular medicine, pharmacology, and physiology. The class emphasizes analysis of primary research literature and development of presentation and writing skills. Contemporary articles are assigned on a related topic every week, and a student leads discussions with input from faculty who are experts in the topic area. The overall goal is to cover a specific topic of medical relevance (e.g., cancer, neurodegeneration) from the perspective of three primary disciplines (i.e., physiology: normal function; pathology: abnormal function; and pharmacology: intervention). Required of and open only to Ph.D. and M.D.\/Ph.D. students in the Molecular Medicine, Pharmacology, and Physiology track.", + "description": "Readings and discussion on a diverse range of current topics in molecular medicine, pharmacology, and physiology. The class emphasizes analysis of primary research literature and development of presentation and writing skills. Contemporary articles are assigned on a related topic every week, and a student leads discussions with input from faculty who are experts in the topic area. The overall goal is to cover a specific topic of medical relevance (e.g., cancer, neurodegeneration) from the perspective of three primary disciplines (i.e., physiology: normal function; pathology: abnormal function; and pharmacology: intervention). Required of and open only to Ph.D. and M.D./Ph.D. students in the Molecular Medicine, Pharmacology, and Physiology track.", "short_title": "Seminar in Molecular Medicine...", "title": "Seminar in Molecular Medicine, Pharmacology, and Physiology", "school": "GS", @@ -241407,10 +518387,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86148\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86148/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -241448,7 +518456,7 @@ "10:30", "11:20", "HQ 317 - Humanities Quadrangle 317", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Tuesday": [ @@ -241456,7 +518464,7 @@ "10:30", "11:20", "HQ 317 - Humanities Quadrangle 317", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -241464,7 +518472,7 @@ "10:30", "11:20", "HQ 317 - Humanities Quadrangle 317", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -241472,7 +518480,7 @@ "10:30", "11:20", "HQ 317 - Humanities Quadrangle 317", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Friday": [ @@ -241480,7 +518488,7 @@ "10:30", "11:20", "HQ 317 - Humanities Quadrangle 317", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -241497,7 +518505,114 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998677670955658, + 0.9989149570465088, + 0.9986686706542969, + 0.9988994598388672, + 0.9988186955451965, + 0.9988499879837036, + 0.9988806843757629 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985151886940002, + 0.9989232420921326, + 0.9989084005355835, + 0.9987403750419617, + 0.9984155893325806, + 0.9988755583763123, + 0.9989006519317627 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987196922302246, + 0.9989282488822937, + 0.9989319443702698, + 0.9986812472343445, + 0.9989112615585327, + 0.9988945126533508, + 0.9985450506210327 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 21, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 21 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -241535,7 +518650,7 @@ "9:25", "10:15", "HQ 317 - Humanities Quadrangle 317", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Tuesday": [ @@ -241543,7 +518658,7 @@ "9:25", "10:15", "HQ 317 - Humanities Quadrangle 317", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -241551,7 +518666,7 @@ "9:25", "10:15", "HQ 317 - Humanities Quadrangle 317", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -241559,7 +518674,7 @@ "9:25", "10:15", "HQ 317 - Humanities Quadrangle 317", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Friday": [ @@ -241567,7 +518682,7 @@ "9:25", "10:15", "HQ 317 - Humanities Quadrangle 317", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -241584,7 +518699,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -241622,7 +518765,7 @@ "14:30", "15:20", "WTS B52 - Watson Center 60 Sachem Street B52", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -241630,7 +518773,7 @@ "14:30", "15:20", "WTS B52 - Watson Center 60 Sachem Street B52", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Friday": [ @@ -241638,7 +518781,7 @@ "14:30", "15:20", "WTS B52 - Watson Center 60 Sachem Street B52", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -241652,10 +518795,38 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85951\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/85951/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -241698,10 +518869,38 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86270\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/86270/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -241739,7 +518938,7 @@ "10:30", "11:20", "HQ 317 - Humanities Quadrangle 317", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Tuesday": [ @@ -241747,7 +518946,7 @@ "10:30", "11:20", "HQ 317 - Humanities Quadrangle 317", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -241755,7 +518954,7 @@ "10:30", "11:20", "HQ 317 - Humanities Quadrangle 317", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -241763,7 +518962,7 @@ "10:30", "11:20", "HQ 317 - Humanities Quadrangle 317", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Friday": [ @@ -241771,7 +518970,7 @@ "10:30", "11:20", "HQ 317 - Humanities Quadrangle 317", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -241786,7 +518985,114 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998677670955658, + 0.9989149570465088, + 0.9986686706542969, + 0.9988994598388672, + 0.9988186955451965, + 0.9988499879837036, + 0.9988806843757629 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985151886940002, + 0.9989232420921326, + 0.9989084005355835, + 0.9987403750419617, + 0.9984155893325806, + 0.9988755583763123, + 0.9989006519317627 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987196922302246, + 0.9989282488822937, + 0.9989319443702698, + 0.9986812472343445, + 0.9989112615585327, + 0.9988945126533508, + 0.9985450506210327 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 21, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 21 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -241824,7 +519130,7 @@ "9:25", "10:15", "HQ 317 - Humanities Quadrangle 317", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Tuesday": [ @@ -241832,7 +519138,7 @@ "9:25", "10:15", "HQ 317 - Humanities Quadrangle 317", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -241840,7 +519146,7 @@ "9:25", "10:15", "HQ 317 - Humanities Quadrangle 317", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -241848,7 +519154,7 @@ "9:25", "10:15", "HQ 317 - Humanities Quadrangle 317", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Friday": [ @@ -241856,7 +519162,7 @@ "9:25", "10:15", "HQ 317 - Humanities Quadrangle 317", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -241871,7 +519177,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -241912,14 +519246,42 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86270\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86270/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", - "requirements": "This course is intended for students with a limited, non-academic familiarity with the Persian language, seeking formal instruction to improve their reading, writing, and\/or speaking skills. A second term will be offered in the spring.", + "requirements": "This course is intended for students with a limited, non-academic familiarity with the Persian language, seeking formal instruction to improve their reading, writing, and/or speaking skills. A second term will be offered in the spring.", "description": "This Persian language course is designed for heritage speakers who wish to strengthen their language skills, such as listening speaking, reading and writing in Persian. The term \"heritage speaker\" is used within the foreign-language teaching field to refer to a person who was exposed to a language and perhaps speaks it to some degree but is now mostly dominant in English. Prior knowledge of reading and writing is not required. Aspects of the Persian language are presented in their cultural, social and literary contexts.", "short_title": "Persian for Heritage Learners II", "title": "Persian for Heritage Learners II", @@ -241953,7 +519315,7 @@ "14:30", "15:20", "WTS B52 - Watson Center 60 Sachem Street B52", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -241961,7 +519323,7 @@ "14:30", "15:20", "WTS B52 - Watson Center 60 Sachem Street B52", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Friday": [ @@ -241969,7 +519331,7 @@ "14:30", "15:20", "WTS B52 - Watson Center 60 Sachem Street B52", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -241981,10 +519343,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85951\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85951/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -242021,7 +519411,7 @@ "13:30", "15:20", "WLH 007 - William L. Harkness Hall 007", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -242033,15 +519423,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85457\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85457/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "Readings and discussion on a diverse range of current topics in molecular medicine, pharmacology, and physiology. The class emphasizes analysis of primary research literature and development of presentation and writing skills. Contemporary articles are assigned on a related topic every week, and a student leads discussions with input from faculty who are experts in the topic area. The overall goal is to cover a specific topic of medical relevance (e.g., cancer, neurodegeneration) from the perspective of three primary disciplines (i.e., physiology: normal function; pathology: abnormal function; and pharmacology: intervention). Required of and open only to Ph.D. and M.D.\/Ph.D. students in the Molecular Medicine, Pharmacology, and Physiology track.", + "description": "Readings and discussion on a diverse range of current topics in molecular medicine, pharmacology, and physiology. The class emphasizes analysis of primary research literature and development of presentation and writing skills. Contemporary articles are assigned on a related topic every week, and a student leads discussions with input from faculty who are experts in the topic area. The overall goal is to cover a specific topic of medical relevance (e.g., cancer, neurodegeneration) from the perspective of three primary disciplines (i.e., physiology: normal function; pathology: abnormal function; and pharmacology: intervention). Required of and open only to Ph.D. and M.D./Ph.D. students in the Molecular Medicine, Pharmacology, and Physiology track.", "short_title": "Seminar in Molecular Medicine...", "title": "Seminar in Molecular Medicine, Pharmacology, and Physiology", "school": "GS", @@ -242096,10 +519514,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86148\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86148/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -242136,7 +519582,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -242215,7 +519689,7 @@ "9:25", "10:40", "SHM B201 - Sterling Hall of Medicine B201", - "https:\/\/map.yale.edu\/?id=1910#!m\/559929" + "https://map.yale.edu/?id=1910#!m/559929" ] ], "Thursday": [ @@ -242223,7 +519697,7 @@ "9:25", "10:40", "SHM B201 - Sterling Hall of Medicine B201", - "https:\/\/map.yale.edu\/?id=1910#!m\/559929" + "https://map.yale.edu/?id=1910#!m/559929" ] ] }, @@ -242235,10 +519709,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84593\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84593/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -242303,7 +519805,7 @@ "9:25", "10:40", "SHM B201 - Sterling Hall of Medicine B201", - "https:\/\/map.yale.edu\/?id=1910#!m\/559929" + "https://map.yale.edu/?id=1910#!m/559929" ] ], "Wednesday": [ @@ -242311,7 +519813,7 @@ "9:25", "10:40", "SHM B201 - Sterling Hall of Medicine B201", - "https:\/\/map.yale.edu\/?id=1910#!m\/559929" + "https://map.yale.edu/?id=1910#!m/559929" ] ] }, @@ -242323,10 +519825,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84596\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84596/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -242369,7 +519899,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -242412,7 +519970,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -242456,7 +520042,7 @@ "9:25", "10:15", "HLH17 115 - 17 Hillhouse Avenue 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Wednesday": [ @@ -242464,7 +520050,7 @@ "9:25", "10:15", "HLH17 115 - 17 Hillhouse Avenue 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Friday": [ @@ -242472,7 +520058,7 @@ "9:25", "10:15", "HLH17 115 - 17 Hillhouse Avenue 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -242484,10 +520070,121 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84506\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84506/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983678460121155, + 0.9984408020973206, + 0.9988372921943665, + 0.9981305003166199, + 0.9989367127418518, + 0.9983301758766174 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989234805107117, + 0.9989125728607178, + 0.9988905787467957, + 0.9986975193023682, + 0.9995036125183105, + 0.9994183778762817, + 0.9880630373954773, + 0.9987654685974121 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989303946495056, + 0.9984606504440308, + 0.9988518953323364, + 0.9989318251609802, + 0.9987974166870117, + 0.9994534850120544, + 0.9988964796066284, + 0.9988728165626526 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 0.8636363636363636, + "final_counts": { + "POSITIVE": 19, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.8636363636363636, + "NEGATIVE": 0.13636363636363635 + } + } }, { "season_code": "202301", @@ -242538,10 +520235,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86149\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86149/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -242578,7 +520303,7 @@ "14:30", "15:45", "WTS A42 - Watson Center 60 Sachem Street A42", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -242586,7 +520311,7 @@ "14:30", "15:45", "WTS A42 - Watson Center 60 Sachem Street A42", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -242602,10 +520327,115 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84606\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84606/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998620867729187, + 0.9988833069801331, + 0.9988011121749878, + 0.9984228610992432, + 0.9980731010437012, + 0.9988285899162292, + 0.9989073276519775 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988874793052673, + 0.9977292418479919, + 0.9988743662834167, + 0.9987886548042297, + 0.9987506866455078, + 0.9989039897918701 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9886952042579651, + 0.9988987445831299, + 0.9981573224067688, + 0.9989000558853149, + 0.9988170862197876, + 0.9984191656112671, + 0.9988943934440613 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 20 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -242642,7 +520472,7 @@ "13:00", "14:15", "YK212 004A - 212 York Street 004A", - "https:\/\/map.yale.edu\/?id=1910#!m\/559604" + "https://map.yale.edu/?id=1910#!m/559604" ] ], "Wednesday": [ @@ -242650,7 +520480,7 @@ "13:00", "14:15", "YK212 004A - 212 York Street 004A", - "https:\/\/map.yale.edu\/?id=1910#!m\/559604" + "https://map.yale.edu/?id=1910#!m/559604" ] ] }, @@ -242666,10 +520496,145 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85694\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85694/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984190464019775, + 0.99882572889328, + 0.9987857937812805, + 0.9988232254981995, + 0.9988793730735779, + 0.998680055141449, + 0.9988073110580444, + 0.9987213015556335, + 0.9986876845359802, + 0.9976246953010559, + 0.9988839030265808, + 0.9987137317657471 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9886887669563293, + 0.9988774657249451, + 0.9989075660705566, + 0.9987854361534119, + 0.9989041090011597, + 0.9986873269081116, + 0.9992610812187195, + 0.9988746047019958, + 0.9988724589347839, + 0.9989299178123474 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 8 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2, + "POSITIVE": 0.8 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998877227306366, + 0.9987356066703796, + 0.998860239982605, + 0.9974592328071594, + 0.9984970092773438, + 0.9957008957862854, + 0.9988213181495667, + 0.9988890290260315, + 0.9980060458183289, + 0.9989363551139832, + 0.998910665512085, + 0.9986796975135803 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9166666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 31, + "final_proportion": 0.9117647058823529, + "final_counts": { + "POSITIVE": 31, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.9117647058823529, + "NEGATIVE": 0.08823529411764706 + } + } }, { "season_code": "202301", @@ -242706,7 +520671,7 @@ "10:30", "11:20", "LC 101 - Linsly-Chittenden Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -242714,7 +520679,7 @@ "10:30", "11:20", "LC 101 - Linsly-Chittenden Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -242730,10 +520695,383 @@ "classnotes": "", "final_exam": "Friday, May 5, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84610\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84610/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986155033111572, + 0.9987785220146179, + 0.998737633228302, + 0.9943403005599976, + 0.9984801411628723, + 0.9988228678703308, + 0.9685143828392029, + 0.998816728591919, + 0.9890889525413513, + 0.9911457896232605, + 0.9988638162612915, + 0.9989181756973267, + 0.9987010955810547, + 0.9918707609176636, + 0.9987020492553711, + 0.9945204854011536, + 0.9988278746604919, + 0.9989029169082642, + 0.998651921749115, + 0.9987175464630127, + 0.9986016154289246, + 0.9984220266342163, + 0.9987925291061401, + 0.9989000558853149, + 0.9986100196838379, + 0.9964644908905029, + 0.9984453320503235, + 0.9986352324485779, + 0.9978679418563843, + 0.9986237287521362, + 0.998924195766449, + 0.998749852180481, + 0.99791020154953, + 0.9987647533416748, + 0.998477041721344, + 0.9989320635795593, + 0.998849630355835, + 0.9988722205162048, + 0.9978048205375671, + 0.9989172220230103, + 0.9951393604278564, + 0.9989014863967896, + 0.9988735318183899, + 0.9989145994186401, + 0.9870339632034302, + 0.9988248944282532, + 0.9971042275428772, + 0.9986631870269775, + 0.9988248944282532, + 0.9984409213066101 + ], + "sentiment_counts": { + "POSITIVE": 50, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988799691200256, + 0.9987194538116455, + 0.9984013438224792, + 0.9987437129020691, + 0.9984403252601624, + 0.9994072914123535, + 0.9988652467727661, + 0.995063841342926, + 0.9978480339050293, + 0.9989274144172668, + 0.9988771080970764, + 0.998917818069458, + 0.9989038705825806, + 0.9988073110580444, + 0.9988683462142944, + 0.9924231767654419, + 0.9987319111824036, + 0.9988382458686829, + 0.9988038539886475, + 0.9989227652549744, + 0.9988663196563721, + 0.9974145889282227, + 0.9986080527305603, + 0.9988620281219482, + 0.5704285502433777, + 0.9988507032394409, + 0.9971765279769897, + 0.9989261031150818, + 0.9988827109336853, + 0.9987320303916931, + 0.998938262462616, + 0.9987504482269287, + 0.998916506767273, + 0.9989386200904846, + 0.9978954792022705, + 0.9988565444946289, + 0.9989123344421387, + 0.9988871216773987, + 0.9989196062088013, + 0.9984859824180603, + 0.9906514883041382, + 0.9989120960235596, + 0.9969285130500793, + 0.9987497329711914, + 0.9987467527389526, + 0.9989182949066162, + 0.9987854361534119 + ], + "sentiment_counts": { + "POSITIVE": 42, + "NEGATIVE": 5 + }, + "sentiment_distribution": { + "POSITIVE": 0.8936170212765957, + "NEGATIVE": 0.10638297872340426 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8936170212765957 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9851385951042175, + 0.998894989490509, + 0.997117280960083, + 0.9932829141616821, + 0.9987549781799316, + 0.9988682270050049, + 0.9994668364524841, + 0.9988884329795837, + 0.998871386051178, + 0.9927598237991333, + 0.9989179372787476, + 0.9985945820808411, + 0.9989073276519775, + 0.9985809326171875, + 0.9988929629325867, + 0.9989209175109863, + 0.9988346695899963, + 0.9986690282821655, + 0.9986971020698547, + 0.9983181953430176, + 0.9988628625869751, + 0.9988264441490173, + 0.9994626641273499, + 0.9987770915031433, + 0.9985219836235046, + 0.9989344477653503, + 0.9989217519760132, + 0.9989389777183533, + 0.9989173412322998, + 0.9989120960235596, + 0.9988211989402771, + 0.9968710541725159, + 0.9894536733627319, + 0.9983583092689514, + 0.9986112117767334, + 0.998698353767395, + 0.9988692402839661, + 0.9989027976989746, + 0.9989268183708191, + 0.9989080429077148, + 0.9919539093971252, + 0.99891197681427, + 0.9985429048538208, + 0.9987013339996338, + 0.9989134073257446, + 0.9987401366233826, + 0.9989249110221863, + 0.9989142417907715, + 0.9988749623298645, + 0.9989367127418518, + 0.9928159713745117, + 0.9988137483596802, + 0.9995095729827881, + 0.9977883100509644, + 0.9987626075744629, + 0.9823716282844543 + ], + "sentiment_counts": { + "NEGATIVE": 7, + "POSITIVE": 49 + }, + "sentiment_distribution": { + "NEGATIVE": 0.125, + "POSITIVE": 0.875 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "final_label": "POSITIVE", + "final_count": 141, + "final_proportion": 0.9215686274509803, + "final_counts": { + "POSITIVE": 141, + "NEGATIVE": 12 + }, + "final_distribution": { + "POSITIVE": 0.9215686274509803, + "NEGATIVE": 0.0784313725490196 + } + } }, { "season_code": "202301", @@ -242764,7 +521102,7 @@ "11:35", "12:25", "PH 407 - Phelps Hall 407", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -242781,7 +521119,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -242812,7 +521178,7 @@ "11:35", "12:25", "PH 407 - Phelps Hall 407", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -242829,7 +521195,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -242860,7 +521254,7 @@ "9:25", "10:15", "PH 407 - Phelps Hall 407", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -242877,7 +521271,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -242908,7 +521330,7 @@ "10:30", "11:20", "LC 104 - Linsly-Chittenden Hall 104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -242925,7 +521347,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -242956,7 +521406,7 @@ "13:30", "14:20", "PH 407 - Phelps Hall 407", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -242973,7 +521423,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -243004,7 +521482,7 @@ "14:30", "15:20", "PH 407 - Phelps Hall 407", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -243021,7 +521499,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -243052,7 +521558,7 @@ "11:35", "12:25", "PH 207 - Phelps Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -243069,7 +521575,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -243100,7 +521634,7 @@ "13:30", "14:20", "PH 310 - Phelps Hall 310", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -243117,7 +521651,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -243155,7 +521717,7 @@ "11:35", "12:50", "LC 211 - Linsly-Chittenden Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -243163,7 +521725,7 @@ "11:35", "12:50", "LC 211 - Linsly-Chittenden Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -243181,10 +521743,147 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84613\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84613/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9973180890083313, + 0.998842716217041, + 0.9988402724266052, + 0.9988937973976135, + 0.9989297986030579, + 0.9988099336624146, + 0.9989199638366699, + 0.9986977577209473, + 0.9988322854042053, + 0.9987699389457703, + 0.9987654685974121 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9969045519828796, + 0.9987333416938782, + 0.9989163875579834, + 0.9989149570465088, + 0.9963434338569641, + 0.9988916516304016, + 0.9994114637374878, + 0.9981043338775635, + 0.9977974891662598, + 0.9989004135131836, + 0.9985717535018921 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.7272727272727273, + "NEGATIVE": 0.2727272727272727 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7272727272727273 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.999366819858551, + 0.9988265633583069, + 0.9995113611221313, + 0.9989196062088013, + 0.9982553124427795, + 0.998833954334259, + 0.9989270567893982, + 0.997117280960083, + 0.9988493919372559, + 0.9906960725784302, + 0.9989118576049805, + 0.9988278746604919, + 0.9924582242965698 + ], + "sentiment_counts": { + "NEGATIVE": 4, + "POSITIVE": 9 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3076923076923077, + "POSITIVE": 0.6923076923076923 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6923076923076923 + ] + }, + "final_label": "POSITIVE", + "final_count": 28, + "final_proportion": 0.8, + "final_counts": { + "POSITIVE": 28, + "NEGATIVE": 7 + }, + "final_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + } + } }, { "season_code": "202301", @@ -243221,7 +521920,7 @@ "10:30", "11:20", "LC 102 - Linsly-Chittenden Hall 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -243229,7 +521928,7 @@ "10:30", "11:20", "LC 102 - Linsly-Chittenden Hall 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -243245,10 +521944,351 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84617\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84617/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988921284675598, + 0.9947974681854248, + 0.9980300068855286, + 0.9971604347229004, + 0.9981757402420044, + 0.9988424181938171, + 0.9978367686271667, + 0.9981560111045837, + 0.9983798265457153, + 0.9887414574623108, + 0.9989284873008728, + 0.998782217502594, + 0.9983189702033997, + 0.9985851049423218, + 0.9987584352493286, + 0.9995003938674927, + 0.998801589012146, + 0.9985779523849487, + 0.9988388419151306, + 0.9988961219787598, + 0.9987167119979858, + 0.9986894726753235, + 0.9988452196121216, + 0.9994841814041138, + 0.9972780346870422, + 0.988893449306488, + 0.9987898468971252, + 0.9977380037307739, + 0.9986224174499512, + 0.9986193180084229, + 0.9988964796066284, + 0.998561680316925, + 0.9988455772399902, + 0.9988491535186768, + 0.9994669556617737, + 0.9988300204277039, + 0.9989112615585327, + 0.9988490343093872, + 0.9985045194625854, + 0.9977962970733643, + 0.998921275138855, + 0.995694637298584, + 0.9869427680969238, + 0.9979269504547119, + 0.9988491535186768 + ], + "sentiment_counts": { + "POSITIVE": 39, + "NEGATIVE": 6 + }, + "sentiment_distribution": { + "POSITIVE": 0.8666666666666667, + "NEGATIVE": 0.13333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8666666666666667 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9965274930000305, + 0.9993385672569275, + 0.9973606467247009, + 0.9988634586334229, + 0.9989297986030579, + 0.9988627433776855, + 0.9944767355918884, + 0.9939299821853638, + 0.9987665414810181, + 0.9986904263496399, + 0.9989239573478699, + 0.9985741376876831, + 0.998904824256897, + 0.9987978935241699, + 0.9993082284927368, + 0.9852287769317627, + 0.9988828301429749, + 0.9987930059432983, + 0.9988287091255188, + 0.9942347407341003, + 0.9988906979560852, + 0.9988270401954651, + 0.9994691014289856, + 0.9994900226593018, + 0.9967324733734131, + 0.9989301562309265, + 0.9966031312942505, + 0.9987540245056152, + 0.9985803365707397, + 0.9989379048347473, + 0.9971340894699097, + 0.9987853169441223, + 0.9929414987564087, + 0.9951539039611816, + 0.9988988637924194, + 0.9993581175804138, + 0.9985753297805786, + 0.998903751373291, + 0.9979828596115112, + 0.9988706707954407, + 0.9989016056060791, + 0.9994596838951111, + 0.9920865893363953, + 0.997642457485199, + 0.9987990856170654 + ], + "sentiment_counts": { + "NEGATIVE": 11, + "POSITIVE": 34 + }, + "sentiment_distribution": { + "NEGATIVE": 0.24444444444444444, + "POSITIVE": 0.7555555555555555 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7555555555555555 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984309077262878, + 0.987133264541626, + 0.9994543194770813, + 0.9982548356056213, + 0.9930341243743896, + 0.9989075660705566, + 0.9988603591918945, + 0.9983245730400085, + 0.9988766312599182, + 0.9986414313316345, + 0.9987624883651733, + 0.9974036812782288, + 0.9966102242469788, + 0.9987888932228088, + 0.9989030361175537, + 0.9988570213317871, + 0.9982178807258606, + 0.998799204826355, + 0.9970406889915466, + 0.9988560676574707, + 0.9951838850975037, + 0.9995007514953613, + 0.9989176988601685, + 0.9955631494522095, + 0.9962553977966309, + 0.9995049238204956, + 0.9981287121772766, + 0.9989113807678223, + 0.9985747337341309, + 0.9986556768417358, + 0.9989138841629028, + 0.9987125396728516, + 0.9989250302314758, + 0.9982372522354126, + 0.9843957424163818, + 0.9995076656341553, + 0.9989031553268433, + 0.9994906187057495, + 0.9985361099243164, + 0.9982883334159851, + 0.9986967444419861, + 0.9988937973976135, + 0.9988446235656738, + 0.9994816184043884, + 0.9974592328071594, + 0.9994913339614868, + 0.9983072280883789 + ], + "sentiment_counts": { + "NEGATIVE": 16, + "POSITIVE": 31 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3404255319148936, + "POSITIVE": 0.6595744680851063 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6595744680851063 + ] + }, + "final_label": "POSITIVE", + "final_count": 104, + "final_proportion": 0.7591240875912408, + "final_counts": { + "POSITIVE": 104, + "NEGATIVE": 33 + }, + "final_distribution": { + "POSITIVE": 0.7591240875912408, + "NEGATIVE": 0.24087591240875914 + } + } }, { "season_code": "202301", @@ -243279,7 +522319,7 @@ "16:00", "16:50", "WLH 006 - William L. Harkness Hall 006", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -243296,7 +522336,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -243327,7 +522395,7 @@ "9:25", "10:15", "LC 211 - Linsly-Chittenden Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -243344,7 +522412,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -243375,7 +522471,7 @@ "16:00", "16:50", "CO493 106 - 493 College Street 106", - "https:\/\/map.yale.edu\/?id=1910#!m\/560001" + "https://map.yale.edu/?id=1910#!m/560001" ] ] }, @@ -243392,7 +522488,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -243423,7 +522547,7 @@ "17:00", "17:50", "PH 312 - Phelps Hall 312", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -243440,7 +522564,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -243471,7 +522623,7 @@ "19:00", "19:50", "PH 312 - Phelps Hall 312", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -243488,7 +522640,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -243519,7 +522699,7 @@ "10:30", "11:20", "LORIA 360 - Loria Center 360", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -243536,7 +522716,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -243567,7 +522775,7 @@ "11:35", "12:25", "LORIA 360 - Loria Center 360", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -243584,7 +522792,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -243615,7 +522851,7 @@ "9:25", "10:15", "PH 407 - Phelps Hall 407", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -243632,7 +522868,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -243663,7 +522927,7 @@ "13:30", "14:20", "PH 310 - Phelps Hall 310", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -243680,7 +522944,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -243711,7 +523003,7 @@ "14:30", "15:20", "PH 312 - Phelps Hall 312", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -243728,7 +523020,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -243767,7 +523087,7 @@ "10:30", "11:20", "WLH 207 - William L. Harkness Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -243775,7 +523095,7 @@ "10:30", "11:20", "WLH 207 - William L. Harkness Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -243791,10 +523111,141 @@ "classnotes": "", "final_exam": "Friday, May 5, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83790\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83790/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984807372093201, + 0.9989200830459595, + 0.998847484588623, + 0.9989172220230103, + 0.9988459348678589, + 0.9987438321113586, + 0.995695948600769, + 0.998868465423584, + 0.998216450214386, + 0.9988507032394409 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989294409751892, + 0.9987168312072754, + 0.9988240599632263, + 0.99892657995224, + 0.998914361000061, + 0.9988821148872375, + 0.9972770810127258, + 0.9987475872039795, + 0.9988976716995239 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988517761230469, + 0.9973018169403076, + 0.9982553124427795, + 0.9989135265350342, + 0.998933732509613, + 0.9989132881164551, + 0.9989323019981384, + 0.9989269375801086, + 0.9981945157051086, + 0.9983124732971191, + 0.9987610578536987, + 0.9987334609031677, + 0.9980625510215759 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 31, + "final_proportion": 0.96875, + "final_counts": { + "POSITIVE": 31, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.96875, + "NEGATIVE": 0.03125 + } + } }, { "season_code": "202301", @@ -243826,7 +523277,7 @@ "10:30", "11:20", "HQ 209 - Humanities Quadrangle 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -243843,7 +523294,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -243875,7 +523354,7 @@ "11:35", "12:25", "HQ 209 - Humanities Quadrangle 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -243892,7 +523371,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -243924,7 +523431,7 @@ "10:30", "11:20", "HQ 113 - Humanities Quadrangle 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -243941,7 +523448,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -243981,7 +523516,7 @@ "14:30", "15:45", "HQ 113 - Humanities Quadrangle 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -243989,7 +523524,7 @@ "14:30", "15:45", "HQ 113 - Humanities Quadrangle 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -244007,10 +523542,93 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84789\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84789/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986647367477417, + 0.9986265897750854, + 0.9989118576049805 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989350438117981, + 0.9989033937454224, + 0.9989362359046936 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988598823547363, + 0.998909592628479, + 0.9988313317298889 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 9 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -244048,7 +523666,7 @@ "11:35", "12:50", "WLH 119 - William L. Harkness Hall 119", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -244056,7 +523674,7 @@ "11:35", "12:50", "WLH 119 - William L. Harkness Hall 119", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -244065,7 +523683,7 @@ ], "areas": [], "flags": [ - "YC Math: Logic\/Foundations", + "YC Math: Logic/Foundations", "YC Phil: Logic", "YC Phil: Metaphysics & Epistemol" ], @@ -244074,10 +523692,239 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84623\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84623/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987088441848755, + 0.9985540509223938, + 0.9959522485733032, + 0.9988407492637634, + 0.9985582232475281, + 0.9883583188056946, + 0.9982136487960815, + 0.9931496977806091, + 0.9980277419090271, + 0.9988003969192505, + 0.9988802075386047, + 0.998894989490509, + 0.9948563575744629, + 0.9970923662185669, + 0.9983128309249878, + 0.9985352754592896, + 0.9984297156333923, + 0.9985223412513733, + 0.9979873895645142, + 0.9987472295761108, + 0.9988943934440613, + 0.9974519610404968, + 0.9984185695648193, + 0.9984341263771057, + 0.9987062215805054 + ], + "sentiment_counts": { + "POSITIVE": 24, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.96, + "NEGATIVE": 0.04 + }, + "sentiment_overall": [ + "POSITIVE", + 0.96 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9974942207336426, + 0.9906072616577148, + 0.9913010001182556, + 0.9989089965820312, + 0.9989038705825806, + 0.9985463619232178, + 0.9986017346382141, + 0.9987542629241943, + 0.9989145994186401, + 0.9992673993110657, + 0.9955116510391235, + 0.9989044666290283, + 0.9989135265350342, + 0.9988546371459961, + 0.997128427028656, + 0.9988676309585571, + 0.9995088577270508, + 0.9923369288444519, + 0.9988790154457092, + 0.9920344948768616, + 0.9988351464271545, + 0.9989297986030579, + 0.9884476065635681, + 0.9985913634300232, + 0.9988383650779724, + 0.9994932413101196, + 0.9988858103752136, + 0.9974954724311829 + ], + "sentiment_counts": { + "NEGATIVE": 8, + "POSITIVE": 20 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2857142857142857, + "POSITIVE": 0.7142857142857143 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7142857142857143 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994775652885437, + 0.9958617687225342, + 0.9989283680915833, + 0.9939672946929932, + 0.9988917708396912, + 0.998894989490509, + 0.9962571859359741, + 0.9988290667533875, + 0.9986010193824768, + 0.9988273978233337, + 0.9994780421257019, + 0.9989161491394043, + 0.99888676404953, + 0.999046266078949, + 0.9987980127334595, + 0.9994663596153259, + 0.9965147376060486, + 0.9987836480140686, + 0.7616178393363953, + 0.9989399313926697, + 0.9988699555397034, + 0.9991545677185059, + 0.9988864064216614, + 0.9988269209861755, + 0.9924237728118896, + 0.9988634586334229, + 0.9986574649810791, + 0.9988999366760254 + ], + "sentiment_counts": { + "NEGATIVE": 7, + "POSITIVE": 21 + }, + "sentiment_distribution": { + "NEGATIVE": 0.25, + "POSITIVE": 0.75 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 65, + "final_proportion": 0.8024691358024691, + "final_counts": { + "POSITIVE": 65, + "NEGATIVE": 16 + }, + "final_distribution": { + "POSITIVE": 0.8024691358024691, + "NEGATIVE": 0.19753086419753085 + } + } }, { "season_code": "202301", @@ -244116,7 +523963,7 @@ "9:00", "10:15", "LUCE 101 - Luce Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ], "Thursday": [ @@ -244124,7 +523971,7 @@ "9:00", "10:15", "LUCE 101 - Luce Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ] }, @@ -244133,17 +523980,256 @@ "So" ], "flags": [ - "YC EVST: Core Human\/Social Sci" + "YC EVST: Core Human/Social Sci" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84062\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84062/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989332556724548, + 0.998915433883667, + 0.9891936182975769, + 0.998788058757782, + 0.9945852160453796, + 0.9987579584121704, + 0.9986727237701416, + 0.998865008354187, + 0.998894989490509, + 0.9987485408782959, + 0.9988663196563721, + 0.9989227652549744, + 0.9979153275489807, + 0.9985132813453674, + 0.998790442943573, + 0.9970226883888245, + 0.9985962510108948, + 0.9974486231803894, + 0.9987539052963257, + 0.998736560344696, + 0.9988119602203369, + 0.9988526105880737, + 0.9989209175109863, + 0.9985186457633972, + 0.9988144636154175, + 0.9989169836044312, + 0.9987366795539856 + ], + "sentiment_counts": { + "POSITIVE": 26, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9629629629629629, + "NEGATIVE": 0.037037037037037035 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9629629629629629 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988002777099609, + 0.9987773299217224, + 0.9995059967041016, + 0.9971598386764526, + 0.99950110912323, + 0.9995086193084717, + 0.9988172650337219, + 0.9989196062088013, + 0.9989017248153687, + 0.9985610842704773, + 0.9949237704277039, + 0.9986408352851868, + 0.9985164999961853, + 0.9994801878929138, + 0.9993270635604858, + 0.9988240599632263, + 0.9988434314727783, + 0.9988960027694702, + 0.9988116025924683, + 0.9984443783760071, + 0.9989222288131714, + 0.9987266659736633, + 0.998853325843811, + 0.9988480806350708, + 0.997979462146759, + 0.9987955093383789, + 0.9994897842407227, + 0.9985559582710266, + 0.9989370703697205, + 0.9989036321640015 + ], + "sentiment_counts": { + "POSITIVE": 21, + "NEGATIVE": 9 + }, + "sentiment_distribution": { + "POSITIVE": 0.7, + "NEGATIVE": 0.3 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987757802009583, + 0.998890221118927, + 0.9995061159133911, + 0.9989145994186401, + 0.9995065927505493, + 0.999512791633606, + 0.9988235831260681, + 0.9980236291885376, + 0.9989049434661865, + 0.9982553124427795, + 0.9988952279090881, + 0.9989067316055298, + 0.997117280960083, + 0.999489426612854, + 0.993126630783081, + 0.9988058805465698, + 0.9981436729431152, + 0.9989080429077148, + 0.9987064599990845, + 0.9988402724266052, + 0.9989199638366699, + 0.9983456134796143, + 0.9989196062088013, + 0.9978938698768616, + 0.9987866282463074, + 0.9974762797355652, + 0.9988738894462585, + 0.9988808035850525, + 0.9984097480773926 + ], + "sentiment_counts": { + "POSITIVE": 24, + "NEGATIVE": 5 + }, + "sentiment_distribution": { + "POSITIVE": 0.8275862068965517, + "NEGATIVE": 0.1724137931034483 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8275862068965517 + ] + }, + "final_label": "POSITIVE", + "final_count": 71, + "final_proportion": 0.8255813953488372, + "final_counts": { + "POSITIVE": 71, + "NEGATIVE": 15 + }, + "final_distribution": { + "POSITIVE": 0.8255813953488372, + "NEGATIVE": 0.1744186046511628 + } + } }, { "season_code": "202301", @@ -244175,7 +524261,7 @@ "13:30", "14:20", "WTS A39 - Watson Center 60 Sachem Street A39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -244192,7 +524278,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -244224,7 +524338,7 @@ "14:30", "15:20", "WTS A39 - Watson Center 60 Sachem Street A39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -244241,7 +524355,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -244273,7 +524415,7 @@ "9:25", "10:15", "PH 310 - Phelps Hall 310", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -244290,7 +524432,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -244322,7 +524492,7 @@ "13:30", "14:20", "LC 212 - Linsly-Chittenden Hall 212", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -244339,7 +524509,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -244371,7 +524569,7 @@ "16:00", "16:50", "WTS B51 - Watson Center 60 Sachem Street B51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -244388,7 +524586,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -244420,7 +524646,7 @@ "17:00", "17:50", "WTS B51 - Watson Center 60 Sachem Street B51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -244437,7 +524663,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -244477,10 +524731,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84789\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84789/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -244522,7 +524804,7 @@ "14:30", "15:45", "PH 207 - Phelps Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ], "Thursday": [ @@ -244530,7 +524812,7 @@ "14:30", "15:45", "PH 207 - Phelps Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -244547,10 +524829,121 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84627\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84627/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988141059875488, + 0.9965903759002686, + 0.9988465309143066, + 0.9987828135490417, + 0.9995033740997314, + 0.9988623857498169, + 0.9986159801483154 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9990390539169312, + 0.9988694787025452, + 0.9988956451416016, + 0.991764485836029, + 0.9989331364631653, + 0.9987930059432983, + 0.9987930059432983 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 6 + }, + "sentiment_distribution": { + "NEGATIVE": 0.14285714285714285, + "POSITIVE": 0.8571428571428571 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982553124427795, + 0.9989118576049805, + 0.9988988637924194, + 0.9989111423492432, + 0.9995043277740479, + 0.998880922794342, + 0.9988678693771362, + 0.9988558292388916 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 0.8636363636363636, + "final_counts": { + "POSITIVE": 19, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.8636363636363636, + "NEGATIVE": 0.13636363636363635 + } + } }, { "season_code": "202301", @@ -244589,7 +524982,7 @@ "13:30", "15:20", "PH 312 - Phelps Hall 312", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -244599,17 +524992,144 @@ "So" ], "flags": [ - "YC Phil: Intersctn PSYC\/PHIL" + "YC Phil: Intersctn PSYC/PHIL" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "Tuesday, May 9, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84632\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84632/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988009929656982, + 0.9989277720451355, + 0.9989290833473206, + 0.9987101554870605, + 0.9988901019096375, + 0.9989012479782104, + 0.9989161491394043, + 0.9988664388656616, + 0.9989148378372192 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989336133003235, + 0.9987305998802185, + 0.9979569911956787, + 0.980651319026947, + 0.9994495511054993, + 0.998928964138031, + 0.9989321827888489, + 0.9977073669433594, + 0.9980382323265076 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998855471611023, + 0.9989350438117981, + 0.9989268183708191, + 0.9989223480224609, + 0.9978086352348328, + 0.9984118938446045, + 0.9989174604415894, + 0.9989116191864014, + 0.9985563158988953, + 0.9924628734588623, + 0.9980986714363098, + 0.9985830783843994 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9166666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 28, + "final_proportion": 0.9333333333333333, + "final_counts": { + "POSITIVE": 28, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9333333333333333, + "NEGATIVE": 0.06666666666666667 + } + } }, { "season_code": "202301", @@ -244648,7 +525168,7 @@ "19:00", "20:50", "HQ 109 - Humanities Quadrangle 109", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -244666,10 +525186,117 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85960\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85960/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982345104217529, + 0.9988848567008972, + 0.9988833069801331, + 0.9986829161643982, + 0.9989036321640015, + 0.9987936019897461 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9951080679893494, + 0.9988616704940796, + 0.998932421207428, + 0.9971219897270203, + 0.9975426197052002, + 0.9988887906074524, + 0.998611330986023 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982397556304932, + 0.9988937973976135, + 0.9989098310470581, + 0.9988887906074524, + 0.9994695782661438, + 0.9982329607009888, + 0.998902440071106 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 0.9, + "final_counts": { + "POSITIVE": 18, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + } + } }, { "season_code": "202301", @@ -244708,7 +525335,7 @@ "13:30", "14:20", "LC 211 - Linsly-Chittenden Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -244716,7 +525343,7 @@ "13:30", "14:20", "LC 211 - Linsly-Chittenden Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -244733,10 +525360,153 @@ "classnotes": "", "final_exam": "Sunday, May 7, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84636\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84636/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985780715942383, + 0.9640228748321533, + 0.9987457990646362, + 0.9988892674446106, + 0.9986146688461304, + 0.9988150596618652, + 0.9989258646965027, + 0.9959883093833923, + 0.9988725781440735, + 0.9985626339912415, + 0.9988395571708679 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986341595649719, + 0.9988640546798706, + 0.9988362193107605, + 0.9955695271492004, + 0.9986347556114197, + 0.9988335967063904, + 0.9989283680915833, + 0.9697723984718323, + 0.9985276460647583, + 0.9986284971237183, + 0.9992590546607971, + 0.9988276362419128 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988283514976501, + 0.9976277947425842, + 0.997654139995575, + 0.9987801909446716, + 0.9986175298690796, + 0.9651569724082947, + 0.9989299178123474, + 0.9988906979560852, + 0.9988334774971008, + 0.9988875985145569, + 0.9989221096038818, + 0.9494630694389343, + 0.9988665580749512, + 0.9989383816719055, + 0.9989103078842163 + ], + "sentiment_counts": { + "POSITIVE": 14, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9333333333333333, + "NEGATIVE": 0.06666666666666667 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9333333333333333 + ] + }, + "final_label": "POSITIVE", + "final_count": 35, + "final_proportion": 0.9210526315789473, + "final_counts": { + "POSITIVE": 35, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.9210526315789473, + "NEGATIVE": 0.07894736842105263 + } + } }, { "season_code": "202301", @@ -244768,7 +525538,7 @@ "10:30", "11:20", "PH 407 - Phelps Hall 407", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -244785,7 +525555,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -244817,7 +525615,7 @@ "15:30", "16:20", "PH 407 - Phelps Hall 407", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -244834,7 +525632,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -244866,7 +525692,7 @@ "10:30", "11:20", "HQ C03 - Humanities Quadrangle C03", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -244883,7 +525709,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -244915,7 +525769,7 @@ "13:30", "14:20", "HQ C07 - Humanities Quadrangle C07", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -244932,12 +525786,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "Prerequisite: At least one course in which the student has read and engaged substantively with Plato's Republic. For example: Directed Studies (fall semester); PHIL 125 (ancient philosophy); PLSC 114 (Political Philosophy); or equivalent.", - "description": "How can ancient philosophy engage contemporary audiences? Public Plato explores this question through three strands. (1) Strand one introduces students to material from the Open Yale Course \"Philosophy and the Science of Human Nature,\" which pairs core texts from the Western philosophical tradition with recent findings in cognitive science. (In slogan form, the structure of the course is \"Dead guy on Tuesday; Cog Sci on Thursday.\") Readings here include selections from philosophers (Plato, Aristotle, Epictetus) and psychologists (Millgram, Kahneman, Lyubomirksy) focused on the topic of human flourishing. (2) Strand two introduces students to certain large-scale experiments in public philosophical outreach (the Wireless Philosophy Project, the Aspen Institute, EdX\/Coursera). Readings here include primary-source materials and theoretical and historical discussions of their import. (3) Strand three introduces students to a set of digital technologies through hands-on practice at the Poorvu Center. These strands are woven together through the course assignments: Using materials in the Open Yale Course initiative as an archive, students learn to curate a set of digital educational resources ranging from TikTok videos to Podcasts to longer-form (Coursera) courses. Graded assignments include both group-based creative projects and individual written work, including weekly directed writing exercises.", + "description": "How can ancient philosophy engage contemporary audiences? Public Plato explores this question through three strands. (1) Strand one introduces students to material from the Open Yale Course \"Philosophy and the Science of Human Nature,\" which pairs core texts from the Western philosophical tradition with recent findings in cognitive science. (In slogan form, the structure of the course is \"Dead guy on Tuesday; Cog Sci on Thursday.\") Readings here include selections from philosophers (Plato, Aristotle, Epictetus) and psychologists (Millgram, Kahneman, Lyubomirksy) focused on the topic of human flourishing. (2) Strand two introduces students to certain large-scale experiments in public philosophical outreach (the Wireless Philosophy Project, the Aspen Institute, EdX/Coursera). Readings here include primary-source materials and theoretical and historical discussions of their import. (3) Strand three introduces students to a set of digital technologies through hands-on practice at the Poorvu Center. These strands are woven together through the course assignments: Using materials in the Open Yale Course initiative as an archive, students learn to curate a set of digital educational resources ranging from TikTok videos to Podcasts to longer-form (Coursera) courses. Graded assignments include both group-based creative projects and individual written work, including weekly directed writing exercises.", "short_title": "Public Plato: Ancient Wisdom ...", "title": "Public Plato: Ancient Wisdom in the Digital Age", "school": "YC", @@ -244972,7 +525854,7 @@ "13:30", "15:20", "SML 120B - Sterling Memorial Library 120B", - "https:\/\/map.yale.edu\/?id=1910#!m\/563698" + "https://map.yale.edu/?id=1910#!m/563698" ] ] }, @@ -244988,10 +525870,103 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85866\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85866/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998918890953064, + 0.9984135627746582, + 0.9986271858215332, + 0.9986830353736877, + 0.9989288449287415 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9986567497253418, + 0.9989054203033447, + 0.9895350337028503 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.998708963394165, + 0.9983287453651428, + 0.9986146688461304, + 0.998909592628479, + 0.990972638130188 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 0.8461538461538461, + "final_counts": { + "POSITIVE": 11, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8461538461538461, + "NEGATIVE": 0.15384615384615385 + } + } }, { "season_code": "202301", @@ -245028,7 +526003,7 @@ "11:35", "12:50", "PH 207 - Phelps Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ], "Thursday": [ @@ -245036,7 +526011,7 @@ "11:35", "12:50", "PH 207 - Phelps Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -245053,10 +526028,125 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84642\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84642/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986733198165894, + 0.9988964796066284, + 0.9987731575965881, + 0.993582546710968, + 0.9988503456115723, + 0.9988905787467957, + 0.998900294303894 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985982775688171, + 0.9989211559295654, + 0.9989286065101624, + 0.9963216781616211, + 0.9986550807952881, + 0.9989140033721924, + 0.9967819452285767 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981922507286072, + 0.9989281296730042, + 0.9988804459571838, + 0.9988771080970764, + 0.998904824256897, + 0.9970190525054932, + 0.9988104104995728, + 0.9987385869026184, + 0.998897910118103, + 0.997117280960083 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 23, + "final_proportion": 0.9583333333333334, + "final_counts": { + "POSITIVE": 23, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9583333333333334, + "NEGATIVE": 0.041666666666666664 + } + } }, { "season_code": "202301", @@ -245095,7 +526185,7 @@ "13:00", "14:15", "HQ 113 - Humanities Quadrangle 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -245103,7 +526193,7 @@ "13:00", "14:15", "HQ 113 - Humanities Quadrangle 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -245117,10 +526207,93 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84972\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84972/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988493919372559, + 0.9988620281219482, + 0.998105525970459 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988897442817688, + 0.9989125728607178, + 0.9989339709281921 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984360337257385, + 0.9989093542098999, + 0.9989174604415894 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 9 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -245160,7 +526333,7 @@ "13:00", "14:15", "YK220 002 - 220 York Street 002", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ], "Wednesday": [ @@ -245168,7 +526341,7 @@ "13:00", "14:15", "YK220 002 - 220 York Street 002", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ] }, @@ -245182,10 +526355,97 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84646\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84646/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998788058757782, + 0.9987947940826416, + 0.9989112615585327 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998862624168396, + 0.9988619089126587, + 0.9988707900047302, + 0.998933732509613 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989011287689209, + 0.9988197684288025, + 0.9989346861839294, + 0.9988850951194763 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 11 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -245229,7 +526489,7 @@ "15:30", "17:20", "HQ 129 - Humanities Quadrangle 129", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -245247,10 +526507,129 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84797\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84797/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989339709281921, + 0.9838201999664307, + 0.9989207983016968, + 0.9988794922828674, + 0.9987175464630127, + 0.9987875819206238, + 0.9988642930984497, + 0.9988080263137817, + 0.9988754391670227 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989261031150818, + 0.9988849759101868, + 0.9964867830276489, + 0.9989225268363953, + 0.997114896774292, + 0.9988021850585938, + 0.9988846182823181, + 0.9984984397888184, + 0.998715877532959 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989318251609802, + 0.997117280960083, + 0.9994094371795654, + 0.9989306330680847, + 0.9989271759986877, + 0.9971302151679993, + 0.9983568787574768, + 0.9989226460456848 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "final_label": "POSITIVE", + "final_count": 24, + "final_proportion": 0.9230769230769231, + "final_counts": { + "POSITIVE": 24, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9230769230769231, + "NEGATIVE": 0.07692307692307693 + } + } }, { "season_code": "202301", @@ -245293,7 +526672,7 @@ "13:30", "15:20", "LC 211 - Linsly-Chittenden Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -245311,10 +526690,123 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84403\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84403/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9938866496086121, + 0.9989053010940552, + 0.9977352619171143, + 0.998863697052002, + 0.9988037347793579, + 0.9987534284591675, + 0.9989042282104492, + 0.9989140033721924 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987389445304871, + 0.998935878276825, + 0.9989338517189026, + 0.9988526105880737, + 0.9988893866539001, + 0.9980757236480713, + 0.9989306330680847, + 0.992807149887085 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9979275465011597, + 0.9987668991088867, + 0.9981922507286072, + 0.9970254302024841, + 0.9989197254180908, + 0.9989100694656372, + 0.99888676404953, + 0.9988850951194763 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 24, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 24 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -245352,7 +526844,7 @@ "19:00", "20:50", "LC 103 - Linsly-Chittenden Hall 103", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -245369,10 +526861,131 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84650\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84650/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988670349121094, + 0.9988390803337097, + 0.9954109787940979, + 0.9986976385116577, + 0.9987435936927795, + 0.9989136457443237, + 0.9988353848457336, + 0.9966322779655457 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9972774386405945, + 0.9988916516304016, + 0.9988316893577576, + 0.9995036125183105, + 0.9989044666290283, + 0.9945823550224304, + 0.9979519248008728, + 0.9961785078048706, + 0.9982585310935974 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998840868473053, + 0.9991437196731567, + 0.9988861680030823, + 0.9988406300544739, + 0.9988462924957275, + 0.9986817240715027, + 0.998878538608551, + 0.998895525932312, + 0.9981683492660522, + 0.9988515377044678 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "final_label": "POSITIVE", + "final_count": 25, + "final_proportion": 0.9259259259259259, + "final_counts": { + "POSITIVE": 25, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9259259259259259, + "NEGATIVE": 0.07407407407407407 + } + } }, { "season_code": "202301", @@ -245410,7 +527023,7 @@ "13:30", "15:20", "WALL81 301 - 81 Wall Street 301", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -245426,10 +527039,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84654\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84654/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -245467,7 +527108,7 @@ "13:30", "15:20", "PH 312 - Phelps Hall 312", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -245483,10 +527124,109 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84658\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84658/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998630166053772, + 0.9431992769241333, + 0.9985560774803162, + 0.9961351156234741 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9973937273025513, + 0.9989330172538757, + 0.9988969564437866, + 0.9986421465873718, + 0.9989058971405029, + 0.9987941980361938 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 5 + }, + "sentiment_distribution": { + "NEGATIVE": 0.16666666666666666, + "POSITIVE": 0.8333333333333334 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9906231760978699, + 0.9987358450889587, + 0.998763918876648, + 0.9982553124427795, + 0.9988994598388672, + 0.9987043142318726 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 5 + }, + "sentiment_distribution": { + "NEGATIVE": 0.16666666666666666, + "POSITIVE": 0.8333333333333334 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 0.8125, + "final_counts": { + "POSITIVE": 13, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.8125, + "NEGATIVE": 0.1875 + } + } }, { "season_code": "202301", @@ -245527,7 +527267,7 @@ "15:30", "17:20", "LC 206 - Linsly-Chittenden Hall 206", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -245543,10 +527283,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84663\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84663/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -245584,7 +527352,7 @@ "15:30", "17:20", "LC 211 - Linsly-Chittenden Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -245596,7 +527364,7 @@ ], "flags": [ "YC CSEC: Elective not CS or EC", - "YC Math: Logic\/Foundations", + "YC Math: Logic/Foundations", "YC Phil: Logic", "YC Phil: Metaphysics & Epistemol" ], @@ -245605,10 +527373,139 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84589\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84589/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985682964324951, + 0.9927048087120056, + 0.9893855452537537, + 0.9987264275550842, + 0.9824009537696838, + 0.9981470108032227, + 0.9986750483512878, + 0.998751163482666, + 0.998254120349884, + 0.99735426902771 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986579418182373, + 0.9988594055175781, + 0.9988699555397034, + 0.9981691837310791, + 0.9988923668861389, + 0.9988409876823425, + 0.9988130331039429, + 0.9988403916358948, + 0.9988844990730286, + 0.9987881779670715 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985154271125793, + 0.9988585710525513, + 0.9988749623298645, + 0.9963504076004028, + 0.9982553124427795, + 0.99882572889328, + 0.9987577199935913, + 0.9987640380859375, + 0.9988431930541992, + 0.9975766539573669, + 0.9989019632339478 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 28, + "final_proportion": 0.9032258064516129, + "final_counts": { + "POSITIVE": 28, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.9032258064516129, + "NEGATIVE": 0.0967741935483871 + } + } }, { "season_code": "202301", @@ -245646,7 +527543,7 @@ "9:00", "10:15", "LC 208 - Linsly-Chittenden Hall 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -245654,7 +527551,7 @@ "9:00", "10:15", "LC 208 - Linsly-Chittenden Hall 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -245670,10 +527567,135 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84592\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84592/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998915433883667, + 0.9988214373588562, + 0.9989032745361328, + 0.9989198446273804, + 0.9984763264656067, + 0.9987425208091736, + 0.9989044666290283, + 0.9989135265350342, + 0.9989311099052429, + 0.9989216327667236 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998927652835846, + 0.9988623857498169, + 0.9989392161369324, + 0.9989252686500549, + 0.9989257454872131, + 0.998916506767273, + 0.9976915121078491, + 0.9989315867424011, + 0.9989240765571594 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989249110221863, + 0.9989373087882996, + 0.9989339709281921, + 0.9987278580665588, + 0.9988769888877869, + 0.9981436729431152, + 0.9988229870796204, + 0.9988191723823547, + 0.9989369511604309, + 0.9988929629325867, + 0.9989062547683716 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 30, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 30 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -245716,7 +527738,7 @@ "9:25", "11:15", "HQ 401 - Humanities Quadrangle 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -245736,10 +527758,121 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84206\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84206/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.994451105594635, + 0.99888676404953, + 0.9988627433776855, + 0.9989333748817444, + 0.9987595081329346, + 0.9988391995429993 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.998842716217041, + 0.9989129304885864, + 0.9989238381385803, + 0.9962312579154968, + 0.9969401359558105, + 0.9986774325370789, + 0.9989373087882996, + 0.9936462640762329 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985981583595276, + 0.9980226755142212, + 0.9988202452659607, + 0.9988977909088135, + 0.9971134662628174, + 0.9987371563911438, + 0.9989243149757385, + 0.9989074468612671 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 0.9090909090909091, + "final_counts": { + "POSITIVE": 20, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + } + } }, { "season_code": "202301", @@ -245776,7 +527909,7 @@ "15:30", "17:20", "LC 105 - Linsly-Chittenden Hall 105", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -245794,15 +527927,43 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85434\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85434/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "Prerequisite: At least one course in semantics, pragmatics, or philosophy of language; or permission of instructor.", - "description": "This seminar explores theoretical and experimental approaches to conversational implicature, focusing on scalar implicature (whose 50th anniversary falls in 2022). We examine the role that pragmatic inference plays in the determination of what is said and of the delineation of at-issue and non-at-issue content within neo-Gricean pragmatics and competing theories. Readings, presentations, and discussion draw on the available evidence from linguistic diagnostics, corpora, and especially a range of experimental studies on the acquisition, processing, and diversity of scalar implicature, negative strengthening, and exhaustivity in focus constructions. In particular, we review current work on the effects of discourse context, politeness and \"face\" considerations, and lexical semantics in constraining when and how pragmatic inferences are\u2014and aren\u2019t\u2014drawn. Another focus is on the explosion of recent work re-examining the role played by scalar implicature and other factors in the universal resistance to the lexicalization of concepts corresponding to\u00a0*nall\u00a0(= \u2018not all\u2019),\u00a0*nand\u00a0(= \u2018or not\u2019), and *noth\u00a0(= \u2018not both\u2019) vis-\u00e0-vis\u00a0none, nor, neither. We also consider the application of the what is said\/what is implicated distinction to the characterization of lying vs. misleading in and out of the courtroom. Time and interest permitting, we also touch on recent developments in rational speech act theory and intention- vs. commitment-based approaches to assertion and implicature. Our goal in this seminar is to explore the landscape of scalar implicature, and conversational implicature more generally, and to develop the empirical tools for investigating this landscape.", + "description": "This seminar explores theoretical and experimental approaches to conversational implicature, focusing on scalar implicature (whose 50th anniversary falls in 2022). We examine the role that pragmatic inference plays in the determination of what is said and of the delineation of at-issue and non-at-issue content within neo-Gricean pragmatics and competing theories. Readings, presentations, and discussion draw on the available evidence from linguistic diagnostics, corpora, and especially a range of experimental studies on the acquisition, processing, and diversity of scalar implicature, negative strengthening, and exhaustivity in focus constructions. In particular, we review current work on the effects of discourse context, politeness and \"face\" considerations, and lexical semantics in constraining when and how pragmatic inferences are\u2014and aren\u2019t\u2014drawn. Another focus is on the explosion of recent work re-examining the role played by scalar implicature and other factors in the universal resistance to the lexicalization of concepts corresponding to\u00a0*nall\u00a0(= \u2018not all\u2019),\u00a0*nand\u00a0(= \u2018or not\u2019), and *noth\u00a0(= \u2018not both\u2019) vis-\u00e0-vis\u00a0none, nor, neither. We also consider the application of the what is said/what is implicated distinction to the characterization of lying vs. misleading in and out of the courtroom. Time and interest permitting, we also touch on recent developments in rational speech act theory and intention- vs. commitment-based approaches to assertion and implicature. Our goal in this seminar is to explore the landscape of scalar implicature, and conversational implicature more generally, and to develop the empirical tools for investigating this landscape.", "short_title": "Implicature and Pragmatic Theory", "title": "Implicature and Pragmatic Theory", "school": "YC", @@ -245837,7 +527998,7 @@ "9:25", "11:15", "WALL81 101 - 81 Wall Street 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -245846,9 +528007,9 @@ "So" ], "flags": [ - "YC LING: Adv Courses\/Seminars", + "YC LING: Adv Courses/Seminars", "YC LING: Depth", - "YC LING Depth: Semntcs\/Pragmat", + "YC LING Depth: Semntcs/Pragmat", "YC LING: Elective", "YC Phil: Metaphysics & Epistemol" ], @@ -245857,10 +528018,111 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84354\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84354/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985992312431335, + 0.9978214502334595, + 0.9987466335296631 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9968620538711548, + 0.9971398115158081, + 0.9989185333251953, + 0.9988366961479187, + 0.9989305138587952, + 0.9989019632339478 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9814485907554626, + 0.9966859221458435, + 0.9988301396369934, + 0.9915800094604492, + 0.9987873435020447, + 0.9986227750778198, + 0.9989092350006104, + 0.9989004135131836 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 7 + }, + "sentiment_distribution": { + "NEGATIVE": 0.125, + "POSITIVE": 0.875 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 0.9411764705882353, + "final_counts": { + "POSITIVE": 16, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9411764705882353, + "NEGATIVE": 0.058823529411764705 + } + } }, { "season_code": "202301", @@ -245899,7 +528161,7 @@ "13:30", "15:20", "LC 209 - Linsly-Chittenden Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -245915,10 +528177,113 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84035\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84035/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988871216773987, + 0.9989023208618164, + 0.9979787468910217, + 0.9986230134963989, + 0.9988742470741272, + 0.9905574321746826 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9878383874893188, + 0.9798460602760315, + 0.9989163875579834, + 0.9954485297203064, + 0.9988982677459717, + 0.9988564252853394 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9991509914398193, + 0.9990247488021851, + 0.9989286065101624, + 0.998799204826355, + 0.9989017248153687, + 0.9988563060760498 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 4 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 0.7777777777777778, + "final_counts": { + "POSITIVE": 14, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.7777777777777778, + "NEGATIVE": 0.2222222222222222 + } + } }, { "season_code": "202301", @@ -245959,7 +528324,7 @@ "15:30", "17:20", "LC 205 - Linsly-Chittenden Hall 205", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -245976,10 +528341,85 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84595\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84595/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987013339996338 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9972383975982666 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988670349121094, + 0.9995020627975464 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "final_label": "POSITIVE", + "final_count": 3, + "final_proportion": 0.75, + "final_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + } + } }, { "season_code": "202301", @@ -246019,7 +528459,7 @@ "9:25", "11:15", "WLH 115 - William L. Harkness Hall 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -246033,10 +528473,113 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86161\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86161/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988582134246826, + 0.9988898634910583, + 0.9988890290260315, + 0.9989172220230103, + 0.9988777041435242, + 0.998764157295227 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989292025566101, + 0.9988477230072021, + 0.9989280104637146, + 0.9988915324211121, + 0.9989306330680847 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989340901374817, + 0.997117280960083, + 0.9988848567008972, + 0.9981436729431152, + 0.9989331364631653, + 0.9989149570465088, + 0.9988886713981628, + 0.9989142417907715 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 19 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -246074,7 +528617,7 @@ "9:25", "11:15", "WALL53 B-02 - 53 Wall Street B-02", - "https:\/\/map.yale.edu\/?id=1910#!m\/559554" + "https://map.yale.edu/?id=1910#!m/559554" ] ] }, @@ -246083,7 +528626,7 @@ "Hu" ], "flags": [ - "YC MA&PHL: add crse w\/log comp", + "YC MA&PHL: add crse w/log comp", "YC Phil: Metaphysics & Epistemol" ], "regnotes": "", @@ -246091,10 +528634,97 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85923\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85923/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.992172122001648, + 0.9987854361534119, + 0.9986727237701416, + 0.9989005327224731 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985839128494263, + 0.9989107847213745, + 0.9988164901733398 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985358715057373, + 0.9973727464675903, + 0.9988611936569214, + 0.9989017248153687 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 11 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -246137,7 +528767,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -246175,7 +528833,7 @@ "9:25", "11:15", "AKW 100 - Arthur K. Watson Hall 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560119" + "https://map.yale.edu/?id=1910#!m/560119" ] ] }, @@ -246189,10 +528847,111 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84601\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84601/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986355900764465, + 0.9987801909446716, + 0.9988176226615906, + 0.9988256096839905, + 0.9978723526000977 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985150694847107, + 0.9989100694656372, + 0.9989112615585327, + 0.9989054203033447, + 0.9988951086997986, + 0.9986067414283752 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9311820864677429, + 0.9987969398498535, + 0.9988216757774353, + 0.9966772794723511, + 0.9987576007843018, + 0.9974592328071594 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 5 + }, + "sentiment_distribution": { + "NEGATIVE": 0.16666666666666666, + "POSITIVE": 0.8333333333333334 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 0.9411764705882353, + "final_counts": { + "POSITIVE": 16, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9411764705882353, + "NEGATIVE": 0.058823529411764705 + } + } }, { "season_code": "202301", @@ -246232,10 +528991,95 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84604\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84604/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988173842430115, + 0.9984056353569031, + 0.998875081539154 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988738894462585, + 0.9988923668861389, + 0.998474657535553, + 0.998711109161377 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9923491477966309, + 0.9988874793052673, + 0.9989340901374817 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 10 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -246272,7 +529116,7 @@ "13:30", "15:20", "PH 312 - Phelps Hall 312", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -246290,10 +529134,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84607\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84607/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -246331,7 +529203,7 @@ "11:35", "12:50", "WLH 119 - William L. Harkness Hall 119", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -246339,7 +529211,7 @@ "11:35", "12:50", "WLH 119 - William L. Harkness Hall 119", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -246351,17 +529223,246 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84623\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84623/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987088441848755, + 0.9985540509223938, + 0.9959522485733032, + 0.9988407492637634, + 0.9985582232475281, + 0.9883583188056946, + 0.9982136487960815, + 0.9931496977806091, + 0.9980277419090271, + 0.9988003969192505, + 0.9988802075386047, + 0.998894989490509, + 0.9948563575744629, + 0.9970923662185669, + 0.9983128309249878, + 0.9985352754592896, + 0.9984297156333923, + 0.9985223412513733, + 0.9979873895645142, + 0.9987472295761108, + 0.9988943934440613, + 0.9974519610404968, + 0.9984185695648193, + 0.9984341263771057, + 0.9987062215805054 + ], + "sentiment_counts": { + "POSITIVE": 24, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.96, + "NEGATIVE": 0.04 + }, + "sentiment_overall": [ + "POSITIVE", + 0.96 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9974942207336426, + 0.9906072616577148, + 0.9913010001182556, + 0.9989089965820312, + 0.9989038705825806, + 0.9985463619232178, + 0.9986017346382141, + 0.9987542629241943, + 0.9989145994186401, + 0.9992673993110657, + 0.9955116510391235, + 0.9989044666290283, + 0.9989135265350342, + 0.9988546371459961, + 0.997128427028656, + 0.9988676309585571, + 0.9995088577270508, + 0.9923369288444519, + 0.9988790154457092, + 0.9920344948768616, + 0.9988351464271545, + 0.9989297986030579, + 0.9884476065635681, + 0.9985913634300232, + 0.9988383650779724, + 0.9994932413101196, + 0.9988858103752136, + 0.9974954724311829 + ], + "sentiment_counts": { + "NEGATIVE": 8, + "POSITIVE": 20 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2857142857142857, + "POSITIVE": 0.7142857142857143 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7142857142857143 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994775652885437, + 0.9958617687225342, + 0.9989283680915833, + 0.9939672946929932, + 0.9988917708396912, + 0.998894989490509, + 0.9962571859359741, + 0.9988290667533875, + 0.9986010193824768, + 0.9988273978233337, + 0.9994780421257019, + 0.9989161491394043, + 0.99888676404953, + 0.999046266078949, + 0.9987980127334595, + 0.9994663596153259, + 0.9965147376060486, + 0.9987836480140686, + 0.7616178393363953, + 0.9989399313926697, + 0.9988699555397034, + 0.9991545677185059, + 0.9988864064216614, + 0.9988269209861755, + 0.9924237728118896, + 0.9988634586334229, + 0.9986574649810791, + 0.9988999366760254 + ], + "sentiment_counts": { + "NEGATIVE": 7, + "POSITIVE": 21 + }, + "sentiment_distribution": { + "NEGATIVE": 0.25, + "POSITIVE": 0.75 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 65, + "final_proportion": 0.8024691358024691, + "final_counts": { + "POSITIVE": 65, + "NEGATIVE": 16 + }, + "final_distribution": { + "POSITIVE": 0.8024691358024691, + "NEGATIVE": 0.19753086419753085 + } + } }, { "season_code": "202301", "requirements": "", "description": "A systematic, chapter-by-chapter study of Heidegger\u2019s Being and Time, arguably the most important work of philosophy of the twentieth century. All the major themes of the book are addressed in detail, with a particular emphasis on care, time, death, and the meaning of being.", "short_title": "Heidegger\u2019s Being and Time...", - "title": "Heidegger\u2019s Being and Time<\/i>", + "title": "Heidegger\u2019s Being and Time", "school": "GS", "credits": 1.0, "extra_info": "ACTIVE", @@ -246397,7 +529498,7 @@ "13:30", "15:20", "LC 211 - Linsly-Chittenden Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -246409,10 +529510,123 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84403\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84403/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9938866496086121, + 0.9989053010940552, + 0.9977352619171143, + 0.998863697052002, + 0.9988037347793579, + 0.9987534284591675, + 0.9989042282104492, + 0.9989140033721924 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987389445304871, + 0.998935878276825, + 0.9989338517189026, + 0.9988526105880737, + 0.9988893866539001, + 0.9980757236480713, + 0.9989306330680847, + 0.992807149887085 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9979275465011597, + 0.9987668991088867, + 0.9981922507286072, + 0.9970254302024841, + 0.9989197254180908, + 0.9989100694656372, + 0.99888676404953, + 0.9988850951194763 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 24, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 24 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -246450,7 +529664,7 @@ "19:00", "20:50", "LC 103 - Linsly-Chittenden Hall 103", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -246462,10 +529676,131 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84650\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84650/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988670349121094, + 0.9988390803337097, + 0.9954109787940979, + 0.9986976385116577, + 0.9987435936927795, + 0.9989136457443237, + 0.9988353848457336, + 0.9966322779655457 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9972774386405945, + 0.9988916516304016, + 0.9988316893577576, + 0.9995036125183105, + 0.9989044666290283, + 0.9945823550224304, + 0.9979519248008728, + 0.9961785078048706, + 0.9982585310935974 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998840868473053, + 0.9991437196731567, + 0.9988861680030823, + 0.9988406300544739, + 0.9988462924957275, + 0.9986817240715027, + 0.998878538608551, + 0.998895525932312, + 0.9981683492660522, + 0.9988515377044678 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "final_label": "POSITIVE", + "final_count": 25, + "final_proportion": 0.9259259259259259, + "final_counts": { + "POSITIVE": 25, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9259259259259259, + "NEGATIVE": 0.07407407407407407 + } + } }, { "season_code": "202301", @@ -246503,7 +529838,7 @@ "13:30", "15:20", "WALL81 301 - 81 Wall Street 301", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -246515,10 +529850,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84654\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84654/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -246556,7 +529919,7 @@ "13:30", "15:20", "PH 312 - Phelps Hall 312", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -246568,10 +529931,109 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84658\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84658/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998630166053772, + 0.9431992769241333, + 0.9985560774803162, + 0.9961351156234741 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9973937273025513, + 0.9989330172538757, + 0.9988969564437866, + 0.9986421465873718, + 0.9989058971405029, + 0.9987941980361938 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 5 + }, + "sentiment_distribution": { + "NEGATIVE": 0.16666666666666666, + "POSITIVE": 0.8333333333333334 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9906231760978699, + 0.9987358450889587, + 0.998763918876648, + 0.9982553124427795, + 0.9988994598388672, + 0.9987043142318726 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 5 + }, + "sentiment_distribution": { + "NEGATIVE": 0.16666666666666666, + "POSITIVE": 0.8333333333333334 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 0.8125, + "final_counts": { + "POSITIVE": 13, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.8125, + "NEGATIVE": 0.1875 + } + } }, { "season_code": "202301", @@ -246612,7 +530074,7 @@ "15:30", "17:20", "LC 206 - Linsly-Chittenden Hall 206", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -246624,10 +530086,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84663\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84663/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -246665,7 +530155,7 @@ "15:30", "17:20", "LC 211 - Linsly-Chittenden Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -246679,10 +530169,139 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84589\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84589/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985682964324951, + 0.9927048087120056, + 0.9893855452537537, + 0.9987264275550842, + 0.9824009537696838, + 0.9981470108032227, + 0.9986750483512878, + 0.998751163482666, + 0.998254120349884, + 0.99735426902771 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986579418182373, + 0.9988594055175781, + 0.9988699555397034, + 0.9981691837310791, + 0.9988923668861389, + 0.9988409876823425, + 0.9988130331039429, + 0.9988403916358948, + 0.9988844990730286, + 0.9987881779670715 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985154271125793, + 0.9988585710525513, + 0.9988749623298645, + 0.9963504076004028, + 0.9982553124427795, + 0.99882572889328, + 0.9987577199935913, + 0.9987640380859375, + 0.9988431930541992, + 0.9975766539573669, + 0.9989019632339478 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 28, + "final_proportion": 0.9032258064516129, + "final_counts": { + "POSITIVE": 28, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.9032258064516129, + "NEGATIVE": 0.0967741935483871 + } + } }, { "season_code": "202301", @@ -246721,7 +530340,7 @@ "13:30", "15:20", "LC 209 - Linsly-Chittenden Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -246735,10 +530354,113 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84035\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84035/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988871216773987, + 0.9989023208618164, + 0.9979787468910217, + 0.9986230134963989, + 0.9988742470741272, + 0.9905574321746826 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9878383874893188, + 0.9798460602760315, + 0.9989163875579834, + 0.9954485297203064, + 0.9988982677459717, + 0.9988564252853394 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9991509914398193, + 0.9990247488021851, + 0.9989286065101624, + 0.998799204826355, + 0.9989017248153687, + 0.9988563060760498 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 4 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 0.7777777777777778, + "final_counts": { + "POSITIVE": 14, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.7777777777777778, + "NEGATIVE": 0.2222222222222222 + } + } }, { "season_code": "202301", @@ -246779,7 +530501,7 @@ "15:30", "17:20", "LC 205 - Linsly-Chittenden Hall 205", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -246791,10 +530513,85 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84595\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84595/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987013339996338 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9972383975982666 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988670349121094, + 0.9995020627975464 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "final_label": "POSITIVE", + "final_count": 3, + "final_proportion": 0.75, + "final_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + } + } }, { "season_code": "202301", @@ -246832,7 +530629,7 @@ "9:25", "11:15", "WALL53 B-02 - 53 Wall Street B-02", - "https:\/\/map.yale.edu\/?id=1910#!m\/559554" + "https://map.yale.edu/?id=1910#!m/559554" ] ] }, @@ -246844,10 +530641,97 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85923\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85923/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.992172122001648, + 0.9987854361534119, + 0.9986727237701416, + 0.9989005327224731 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985839128494263, + 0.9989107847213745, + 0.9988164901733398 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985358715057373, + 0.9973727464675903, + 0.9988611936569214, + 0.9989017248153687 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 11 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -246885,7 +530769,7 @@ "9:25", "11:15", "AKW 100 - Arthur K. Watson Hall 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560119" + "https://map.yale.edu/?id=1910#!m/560119" ] ] }, @@ -246897,10 +530781,111 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84601\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84601/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986355900764465, + 0.9987801909446716, + 0.9988176226615906, + 0.9988256096839905, + 0.9978723526000977 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985150694847107, + 0.9989100694656372, + 0.9989112615585327, + 0.9989054203033447, + 0.9988951086997986, + 0.9986067414283752 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9311820864677429, + 0.9987969398498535, + 0.9988216757774353, + 0.9966772794723511, + 0.9987576007843018, + 0.9974592328071594 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 5 + }, + "sentiment_distribution": { + "NEGATIVE": 0.16666666666666666, + "POSITIVE": 0.8333333333333334 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 0.9411764705882353, + "final_counts": { + "POSITIVE": 16, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9411764705882353, + "NEGATIVE": 0.058823529411764705 + } + } }, { "season_code": "202301", @@ -246940,7 +530925,7 @@ "9:25", "11:15", "WALL81 101 - 81 Wall Street 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -246952,10 +530937,111 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84354\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84354/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985992312431335, + 0.9978214502334595, + 0.9987466335296631 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9968620538711548, + 0.9971398115158081, + 0.9989185333251953, + 0.9988366961479187, + 0.9989305138587952, + 0.9989019632339478 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9814485907554626, + 0.9966859221458435, + 0.9988301396369934, + 0.9915800094604492, + 0.9987873435020447, + 0.9986227750778198, + 0.9989092350006104, + 0.9989004135131836 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 7 + }, + "sentiment_distribution": { + "NEGATIVE": 0.125, + "POSITIVE": 0.875 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 0.9411764705882353, + "final_counts": { + "POSITIVE": 16, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9411764705882353, + "NEGATIVE": 0.058823529411764705 + } + } }, { "season_code": "202301", @@ -246992,7 +531078,7 @@ "13:30", "15:20", "LC 103 - Linsly-Chittenden Hall 103", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -247007,7 +531093,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -247044,7 +531158,7 @@ "10:35", "12:00", "BAKER 116 - Baker Hall 116", - "https:\/\/map.yale.edu\/?id=1910#!m\/563680" + "https://map.yale.edu/?id=1910#!m/563680" ] ], "Thursday": [ @@ -247052,7 +531166,7 @@ "10:35", "12:00", "BAKER 116 - Baker Hall 116", - "https:\/\/map.yale.edu\/?id=1910#!m\/563680" + "https://map.yale.edu/?id=1910#!m/563680" ] ] }, @@ -247066,10 +531180,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84351\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84351/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -247112,7 +531254,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -247152,7 +531322,7 @@ "16:10", "18:00", "SLB 111 - Sterling Law Buildings 111", - "https:\/\/map.yale.edu\/?id=1910#!m\/531532" + "https://map.yale.edu/?id=1910#!m/531532" ] ] }, @@ -247164,10 +531334,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84355\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84355/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -247205,7 +531403,7 @@ "15:30", "17:20", "SDQ S212 - Sterling Divinity Quadrangle S212", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -247217,10 +531415,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84618\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84618/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -247263,7 +531489,7 @@ "9:25", "11:15", "HQ 401 - Humanities Quadrangle 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -247275,10 +531501,121 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84206\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84206/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.994451105594635, + 0.99888676404953, + 0.9988627433776855, + 0.9989333748817444, + 0.9987595081329346, + 0.9988391995429993 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.998842716217041, + 0.9989129304885864, + 0.9989238381385803, + 0.9962312579154968, + 0.9969401359558105, + 0.9986774325370789, + 0.9989373087882996, + 0.9936462640762329 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985981583595276, + 0.9980226755142212, + 0.9988202452659607, + 0.9988977909088135, + 0.9971134662628174, + 0.9987371563911438, + 0.9989243149757385, + 0.9989074468612671 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 0.9090909090909091, + "final_counts": { + "POSITIVE": 20, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + } + } }, { "season_code": "202301", @@ -247318,7 +531655,7 @@ "13:30", "15:20", "YK220 100 - 220 York Street 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ] }, @@ -247330,10 +531667,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84621\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84621/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -247374,7 +531739,7 @@ "15:30", "17:20", "PH 312 - Phelps Hall 312", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -247386,10 +531751,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84625\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84625/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -247432,7 +531825,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -247475,7 +531896,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -247514,7 +531963,7 @@ "13:30", "15:20", "HQ 209 - Humanities Quadrangle 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -247526,10 +531975,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83280\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83280/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -247567,12 +532044,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "The course work and practicum\/micro-credential lead to a significant project to be approved by the DGS or assistant DGS (an exhibition, documentary, research paper, etc.) and to be presented in a public forum on its completion.", + "description": "The course work and practicum/micro-credential lead to a significant project to be approved by the DGS or assistant DGS (an exhibition, documentary, research paper, etc.) and to be presented in a public forum on its completion.", "short_title": "Public Humanities Capstone Pr...", "title": "Public Humanities Capstone Project", "school": "GS", @@ -247605,7 +532110,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -247644,7 +532177,7 @@ "11:35", "12:50", "AKW 100 - Arthur K. Watson Hall 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560119" + "https://map.yale.edu/?id=1910#!m/560119" ] ], "Thursday": [ @@ -247652,7 +532185,7 @@ "11:35", "12:50", "AKW 100 - Arthur K. Watson Hall 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560119" + "https://map.yale.edu/?id=1910#!m/560119" ] ] }, @@ -247666,10 +532199,123 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83358\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83358/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998678982257843, + 0.9988253712654114, + 0.9981560111045837, + 0.9971610307693481, + 0.9988269209861755, + 0.9988566637039185, + 0.9987723231315613 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988560676574707, + 0.9994902610778809, + 0.9989180564880371, + 0.9987769722938538, + 0.9919111132621765, + 0.9988262057304382, + 0.998561441898346, + 0.9995086193084717 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.625, + "NEGATIVE": 0.375 + }, + "sentiment_overall": [ + "POSITIVE", + 0.625 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988988637924194, + 0.9988322854042053, + 0.9995063543319702, + 0.998895525932312, + 0.9987786412239075, + 0.9959132075309753, + 0.9984059929847717, + 0.9995064735412598 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 0.7391304347826086, + "final_counts": { + "POSITIVE": 17, + "NEGATIVE": 6 + }, + "final_distribution": { + "POSITIVE": 0.7391304347826086, + "NEGATIVE": 0.2608695652173913 + } + } }, { "season_code": "202301", @@ -247710,7 +532356,7 @@ "13:30", "15:20", "WTS A42 - Watson Center 60 Sachem Street A42", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -247722,10 +532368,107 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84633\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84633/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9978175163269043, + 0.9988942742347717, + 0.9983519315719604, + 0.992295503616333, + 0.9988190531730652 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984105825424194, + 0.9988803267478943, + 0.9967917799949646, + 0.9969640374183655, + 0.9939751029014587, + 0.9989259839057922 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.999470055103302, + 0.9989041090011597, + 0.9995087385177612, + 0.9987061023712158 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 0.7333333333333333, + "final_counts": { + "POSITIVE": 11, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.7333333333333333, + "NEGATIVE": 0.26666666666666666 + } + } }, { "season_code": "202301", @@ -247766,7 +532509,7 @@ "14:30", "15:45", "AKW 100 - Arthur K. Watson Hall 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560119" + "https://map.yale.edu/?id=1910#!m/560119" ] ], "Wednesday": [ @@ -247774,7 +532517,7 @@ "14:30", "15:45", "AKW 100 - Arthur K. Watson Hall 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560119" + "https://map.yale.edu/?id=1910#!m/560119" ] ] }, @@ -247792,10 +532535,129 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83363\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83363/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987213015556335, + 0.9988129138946533, + 0.9972946047782898, + 0.9988101720809937, + 0.998798131942749, + 0.9989086389541626, + 0.9989030361175537, + 0.9988982677459717, + 0.9988283514976501 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987598657608032, + 0.9988417029380798, + 0.973635733127594, + 0.9989319443702698, + 0.9908389449119568, + 0.9988753199577332, + 0.9980974793434143, + 0.998778760433197, + 0.9978864789009094 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989151954650879, + 0.9989174604415894, + 0.8070329427719116, + 0.9989311099052429, + 0.9989210367202759, + 0.9989100694656372, + 0.9988678693771362, + 0.9988464117050171 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "final_label": "POSITIVE", + "final_count": 24, + "final_proportion": 0.9230769230769231, + "final_counts": { + "POSITIVE": 24, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9230769230769231, + "NEGATIVE": 0.07692307692307693 + } + } }, { "season_code": "202301", @@ -247837,7 +532699,7 @@ "13:00", "14:15", "WTS A35 - Watson Center 60 Sachem Street A35", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -247845,7 +532707,7 @@ "13:00", "14:15", "WTS A35 - Watson Center 60 Sachem Street A35", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -247862,10 +532724,99 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84637\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84637/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989107847213745, + 0.9988844990730286, + 0.9985470175743103, + 0.9987719655036926 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987339377403259, + 0.9988312125205994, + 0.9988663196563721, + 0.9988352656364441 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998934805393219, + 0.9988986253738403, + 0.998884379863739, + 0.9989355206489563 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 12 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -247902,7 +532853,7 @@ "15:30", "17:20", "WTS A74 - Watson Center 60 Sachem Street A74", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -247916,10 +532867,141 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84641\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84641/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988335967063904, + 0.9989161491394043, + 0.998857855796814, + 0.9988417029380798, + 0.9986791014671326, + 0.9879727363586426, + 0.9988471269607544, + 0.9986887574195862, + 0.9878206849098206, + 0.998719334602356 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988669157028198, + 0.9988839030265808, + 0.9901532530784607, + 0.9987683892250061, + 0.9994794726371765, + 0.9987892508506775, + 0.9917076230049133, + 0.998872697353363, + 0.9995075464248657, + 0.9988492727279663 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.6, + "NEGATIVE": 0.4 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988996982574463, + 0.9989174604415894, + 0.9987860321998596, + 0.9988355040550232, + 0.9988535642623901, + 0.9972695708274841, + 0.9988515377044678, + 0.998839795589447, + 0.9995027780532837, + 0.9986806511878967, + 0.999504566192627, + 0.9989239573478699 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 26, + "final_proportion": 0.8125, + "final_counts": { + "POSITIVE": 26, + "NEGATIVE": 6 + }, + "final_distribution": { + "POSITIVE": 0.8125, + "NEGATIVE": 0.1875 + } + } }, { "season_code": "202301", @@ -247958,7 +533040,7 @@ "11:35", "12:50", "WTS A51 - Watson Center 60 Sachem Street A51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -247966,7 +533048,7 @@ "11:35", "12:50", "WTS A51 - Watson Center 60 Sachem Street A51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -247980,10 +533062,179 @@ "classnotes": "textbook\n Calculus: Multivariable (ISBN 978-1-119-93781-4) \n", "final_exam": "Saturday, May 6, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83887\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83887/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984341263771057, + 0.9976792931556702, + 0.9989381432533264, + 0.99887615442276, + 0.7012736797332764, + 0.9988503456115723, + 0.9987236857414246, + 0.9981949925422668, + 0.9989223480224609, + 0.9943140745162964, + 0.9977756142616272, + 0.9839734435081482, + 0.9980827569961548, + 0.9980795383453369, + 0.9991384744644165, + 0.9988754391670227, + 0.9985950589179993 + ], + "sentiment_counts": { + "POSITIVE": 15, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8823529411764706, + "NEGATIVE": 0.11764705882352941 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8823529411764706 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9986124038696289, + 0.9983215928077698, + 0.9988666772842407, + 0.9989286065101624, + 0.9988422989845276, + 0.9987391829490662, + 0.9992073178291321, + 0.9987900853157043, + 0.9987670183181763, + 0.9988253712654114, + 0.9989181756973267, + 0.99882572889328, + 0.9976824522018433, + 0.6885560750961304, + 0.9988304972648621, + 0.9988489151000977, + 0.993559718132019 + ], + "sentiment_counts": { + "POSITIVE": 14, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.8235294117647058, + "NEGATIVE": 0.17647058823529413 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8235294117647058 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9710614085197449, + 0.9986631870269775, + 0.9994926452636719, + 0.9989053010940552, + 0.9989359974861145, + 0.9985585808753967, + 0.9983965754508972, + 0.988770604133606, + 0.9985834360122681, + 0.9987687468528748, + 0.997875452041626, + 0.9988200068473816, + 0.9988094568252563, + 0.9969737529754639, + 0.9983073472976685, + 0.9924652576446533, + 0.9940859079360962 + ], + "sentiment_counts": { + "POSITIVE": 14, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.8235294117647058, + "NEGATIVE": 0.17647058823529413 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8235294117647058 + ] + }, + "final_label": "POSITIVE", + "final_count": 43, + "final_proportion": 0.8431372549019608, + "final_counts": { + "POSITIVE": 43, + "NEGATIVE": 8 + }, + "final_distribution": { + "POSITIVE": 0.8431372549019608, + "NEGATIVE": 0.1568627450980392 + } + } }, { "season_code": "202301", @@ -248037,10 +533288,535 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84645\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84645/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9955314993858337, + 0.9995083808898926, + 0.9986801743507385, + 0.9982829093933105, + 0.99790358543396, + 0.9985879063606262, + 0.9938739538192749, + 0.9987769722938538, + 0.9975568056106567, + 0.9984539747238159, + 0.9986602067947388, + 0.9989286065101624, + 0.9985777139663696, + 0.9987932443618774, + 0.9988101720809937, + 0.998645007610321, + 0.9987824559211731, + 0.9987965822219849, + 0.99859219789505, + 0.9987296462059021, + 0.99847811460495, + 0.9986421465873718, + 0.9890586733818054, + 0.9986629486083984, + 0.9985381364822388, + 0.9986860156059265, + 0.9988892674446106, + 0.9877259135246277, + 0.9962292313575745, + 0.9986857771873474, + 0.9979888200759888, + 0.9973133206367493, + 0.9988705515861511, + 0.9906762838363647, + 0.9988330006599426, + 0.9983653426170349, + 0.9931970834732056, + 0.9972198009490967, + 0.9945574998855591, + 0.9985167384147644, + 0.9989338517189026, + 0.9955778121948242, + 0.9860956072807312, + 0.998725950717926, + 0.9873493313789368, + 0.9986453652381897, + 0.9987751841545105, + 0.9988049268722534, + 0.9986565113067627, + 0.6839982867240906, + 0.9988160133361816, + 0.9987375140190125, + 0.9987072944641113, + 0.9877261519432068, + 0.9934741854667664, + 0.9987659454345703, + 0.9952846169471741, + 0.9984548091888428, + 0.9973272085189819, + 0.9987530708312988, + 0.9988190531730652, + 0.9986409544944763, + 0.9987322688102722, + 0.998829185962677, + 0.999413251876831, + 0.998785674571991, + 0.9988813996315002, + 0.998722493648529, + 0.9988564252853394, + 0.9986603260040283, + 0.997961163520813 + ], + "sentiment_counts": { + "POSITIVE": 69, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.971830985915493, + "NEGATIVE": 0.028169014084507043 + }, + "sentiment_overall": [ + "POSITIVE", + 0.971830985915493 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9952711462974548, + 0.9918904304504395, + 0.999504566192627, + 0.9994592070579529, + 0.9984122514724731, + 0.9879752993583679, + 0.9968967437744141, + 0.9964654445648193, + 0.9991819262504578, + 0.9952051639556885, + 0.9908535480499268, + 0.9995017051696777, + 0.9988783001899719, + 0.9988964796066284, + 0.9990125894546509, + 0.9989066123962402, + 0.989379346370697, + 0.9988095760345459, + 0.9994999170303345, + 0.9988849759101868, + 0.9966018199920654, + 0.9988671541213989, + 0.9984018206596375, + 0.9984702467918396, + 0.999502420425415, + 0.9995059967041016, + 0.9986698627471924, + 0.9986912608146667, + 0.9987630844116211, + 0.9989171028137207, + 0.9988647699356079, + 0.9963133931159973, + 0.9988341927528381, + 0.9898410439491272, + 0.9951068162918091, + 0.9951317310333252, + 0.9985992312431335, + 0.99748295545578, + 0.9986967444419861, + 0.998033344745636, + 0.9988676309585571, + 0.9971076846122742, + 0.9988617897033691, + 0.9981065988540649, + 0.9985333681106567, + 0.9971582889556885, + 0.9988492727279663, + 0.9989111423492432, + 0.999479353427887, + 0.999381422996521, + 0.7918567657470703, + 0.9988885521888733, + 0.9988992214202881, + 0.9971765279769897, + 0.9930199980735779, + 0.9986580610275269, + 0.9987924098968506, + 0.9987109899520874, + 0.9988168478012085, + 0.9954824447631836, + 0.9945554733276367, + 0.9985805749893188, + 0.9908269047737122, + 0.9987838864326477, + 0.997177004814148, + 0.9988603591918945, + 0.9989173412322998, + 0.9897034764289856, + 0.9988915324211121, + 0.9993854761123657, + 0.9990233182907104, + 0.9952656030654907, + 0.9989331364631653, + 0.9988875985145569, + 0.8569561243057251, + 0.9983118772506714, + 0.9995037317276001, + 0.9995026588439941, + 0.9982372522354126, + 0.9989210367202759, + 0.9989294409751892, + 0.9993991851806641, + 0.9989652633666992, + 0.9987999200820923 + ], + "sentiment_counts": { + "NEGATIVE": 33, + "POSITIVE": 51 + }, + "sentiment_distribution": { + "NEGATIVE": 0.39285714285714285, + "POSITIVE": 0.6071428571428571 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6071428571428571 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.997789740562439, + 0.9980016350746155, + 0.9994978904724121, + 0.9971611499786377, + 0.9988662004470825, + 0.9989269375801086, + 0.9950496554374695, + 0.9986767172813416, + 0.9962814450263977, + 0.9988616704940796, + 0.998902440071106, + 0.9988240599632263, + 0.9987934827804565, + 0.9986280202865601, + 0.9987896084785461, + 0.9956879019737244, + 0.9928120970726013, + 0.9989274144172668, + 0.9994576573371887, + 0.9994727969169617, + 0.9967703819274902, + 0.9994925260543823, + 0.9990463852882385, + 0.9995121955871582, + 0.9994624257087708, + 0.9994307160377502, + 0.9988816380500793, + 0.9984157085418701, + 0.9988076686859131, + 0.9988603591918945, + 0.9988192915916443, + 0.9990511536598206, + 0.9963646531105042, + 0.9988695979118347, + 0.99868243932724, + 0.9924456477165222, + 0.9950129389762878, + 0.9986955523490906, + 0.9994351267814636, + 0.9987084865570068, + 0.9987768530845642, + 0.9994902610778809, + 0.9994639754295349, + 0.995439887046814, + 0.9988872408866882, + 0.999454915523529, + 0.9980257749557495, + 0.9959709048271179, + 0.9981715679168701, + 0.9955846667289734, + 0.9985111355781555, + 0.9949404001235962, + 0.9812518358230591, + 0.9821332097053528, + 0.9922077059745789, + 0.9894292950630188, + 0.9995079040527344, + 0.9988355040550232, + 0.9987356066703796, + 0.994676947593689, + 0.9980006814002991, + 0.9958328604698181, + 0.9952486157417297, + 0.9985709190368652, + 0.9988734126091003, + 0.9958751797676086, + 0.9973403811454773, + 0.9988963603973389, + 0.9901157021522522, + 0.9954901337623596, + 0.9960764050483704, + 0.9988967180252075, + 0.9989081621170044, + 0.9995148181915283 + ], + "sentiment_counts": { + "POSITIVE": 53, + "NEGATIVE": 21 + }, + "sentiment_distribution": { + "POSITIVE": 0.7162162162162162, + "NEGATIVE": 0.28378378378378377 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7162162162162162 + ] + }, + "final_label": "POSITIVE", + "final_count": 173, + "final_proportion": 0.7554585152838428, + "final_counts": { + "POSITIVE": 173, + "NEGATIVE": 56 + }, + "final_distribution": { + "POSITIVE": 0.7554585152838428, + "NEGATIVE": 0.2445414847161572 + } + } }, { "season_code": "202301", @@ -248071,7 +533847,7 @@ "13:30", "16:30", "SPL 39 - Sloane Physics Laboratory 39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ] }, @@ -248088,7 +533864,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -248119,7 +533923,7 @@ "13:30", "16:30", "SPL 42 - Sloane Physics Laboratory 42", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ] }, @@ -248136,7 +533940,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -248167,7 +533999,7 @@ "13:30", "16:30", "SPL 43 - Sloane Physics Laboratory 43", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ] }, @@ -248184,7 +534016,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -248215,7 +534075,7 @@ "13:30", "16:30", "SPL 39 - Sloane Physics Laboratory 39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ] }, @@ -248232,7 +534092,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -248263,7 +534151,7 @@ "13:30", "16:30", "SPL 42 - Sloane Physics Laboratory 42", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ] }, @@ -248280,7 +534168,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -248311,7 +534227,7 @@ "13:30", "16:30", "SPL 43 - Sloane Physics Laboratory 43", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ] }, @@ -248328,7 +534244,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -248359,7 +534303,7 @@ "13:30", "16:30", "SPL 39 - Sloane Physics Laboratory 39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ] }, @@ -248376,7 +534320,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -248407,7 +534379,7 @@ "13:30", "16:30", "SPL 42 - Sloane Physics Laboratory 42", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ] }, @@ -248424,7 +534396,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -248455,7 +534455,7 @@ "13:30", "16:30", "SPL 43 - Sloane Physics Laboratory 43", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ] }, @@ -248472,7 +534472,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -248503,7 +534531,7 @@ "11:35", "14:35", "SPL 39 - Sloane Physics Laboratory 39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ] }, @@ -248520,7 +534548,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -248551,7 +534607,7 @@ "11:35", "14:35", "SPL 42 - Sloane Physics Laboratory 42", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ] }, @@ -248568,7 +534624,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -248607,7 +534691,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -248638,7 +534750,7 @@ "15:30", "18:30", "SPL 39 - Sloane Physics Laboratory 39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ] }, @@ -248655,7 +534767,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -248686,7 +534826,7 @@ "15:30", "18:30", "SPL 42 - Sloane Physics Laboratory 42", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ] }, @@ -248703,7 +534843,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -248734,7 +534902,7 @@ "15:30", "18:30", "SPL 43 - Sloane Physics Laboratory 43", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ] }, @@ -248751,7 +534919,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -248782,7 +534978,7 @@ "8:20", "11:20", "SPL 39 - Sloane Physics Laboratory 39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ] }, @@ -248799,7 +534995,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -248830,7 +535054,7 @@ "8:20", "11:20", "SPL 42 - Sloane Physics Laboratory 42", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ] }, @@ -248847,7 +535071,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -248878,7 +535130,7 @@ "8:20", "11:20", "SPL 43 - Sloane Physics Laboratory 43", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ] }, @@ -248895,7 +535147,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -248926,7 +535206,7 @@ "11:35", "14:35", "SPL 39 - Sloane Physics Laboratory 39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ] }, @@ -248943,7 +535223,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -248974,7 +535282,7 @@ "11:35", "14:35", "SPL 42 - Sloane Physics Laboratory 42", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ] }, @@ -248991,7 +535299,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -249022,7 +535358,7 @@ "11:35", "14:35", "SPL 43 - Sloane Physics Laboratory 43", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ] }, @@ -249039,7 +535375,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -249076,7 +535440,7 @@ "11:35", "12:50", "SCL 160 - Sterling Chemistry Laboratory 160", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ], "Wednesday": [ @@ -249084,7 +535448,7 @@ "11:35", "12:50", "SCL 160 - Sterling Chemistry Laboratory 160", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -249100,10 +535464,361 @@ "classnotes": "", "final_exam": "Monday, May 8, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84649\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84649/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989043474197388, + 0.9881268739700317, + 0.9985748529434204, + 0.9988742470741272, + 0.9981446266174316, + 0.9988012313842773, + 0.996452808380127, + 0.9986764788627625, + 0.9984093308448792, + 0.998807430267334, + 0.9985947012901306, + 0.9972858428955078, + 0.9993047714233398, + 0.998595654964447, + 0.9860249161720276, + 0.8832660913467407, + 0.9988511800765991, + 0.9987564086914062, + 0.9963831901550293, + 0.9988495111465454, + 0.9988370537757874, + 0.9987764954566956, + 0.9987548589706421, + 0.9988460540771484, + 0.9919703006744385, + 0.998815655708313, + 0.9985023736953735, + 0.996427595615387, + 0.9979552030563354, + 0.9989357590675354, + 0.9988505840301514, + 0.9976638555526733, + 0.9984672665596008, + 0.9972276091575623, + 0.9986796975135803, + 0.99860018491745, + 0.9988324046134949, + 0.9963843822479248, + 0.9988735318183899, + 0.9983828067779541 + ], + "sentiment_counts": { + "POSITIVE": 39, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.975, + "NEGATIVE": 0.025 + }, + "sentiment_overall": [ + "POSITIVE", + 0.975 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989093542098999, + 0.9983437061309814, + 0.9987422823905945, + 0.9986956715583801, + 0.9960623383522034, + 0.9989155530929565, + 0.9988698363304138, + 0.9989390969276428, + 0.9988694787025452, + 0.9995071887969971, + 0.9989124536514282, + 0.9988743662834167, + 0.9987149238586426, + 0.9989124536514282, + 0.9949488639831543, + 0.9994995594024658, + 0.9988664388656616, + 0.9040930271148682, + 0.998897910118103, + 0.9986000657081604, + 0.9985336065292358, + 0.9987732768058777, + 0.9988620281219482, + 0.9989086389541626, + 0.9989379048347473, + 0.9989380240440369, + 0.997564435005188, + 0.9988588094711304, + 0.9987837672233582, + 0.9989334940910339, + 0.9961065649986267, + 0.9994891881942749, + 0.9970085024833679, + 0.9989330172538757, + 0.9989250302314758, + 0.998738706111908, + 0.9994899034500122, + 0.9989287257194519, + 0.9988387227058411, + 0.9989306330680847, + 0.9994990825653076, + 0.9988763928413391, + 0.9987542629241943, + 0.9986286163330078, + 0.998875081539154, + 0.999504566192627, + 0.9989100694656372, + 0.9989038705825806, + 0.9978283047676086, + 0.9989057779312134, + 0.9989251494407654, + 0.9930610060691833 + ], + "sentiment_counts": { + "POSITIVE": 44, + "NEGATIVE": 8 + }, + "sentiment_distribution": { + "POSITIVE": 0.8461538461538461, + "NEGATIVE": 0.15384615384615385 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8461538461538461 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988853335380554, + 0.9986135959625244, + 0.9988383650779724, + 0.9984641075134277, + 0.9976840019226074, + 0.9951895475387573, + 0.9988332390785217, + 0.9989030361175537, + 0.9989184141159058, + 0.9753255248069763, + 0.9989252686500549, + 0.9865788817405701, + 0.9894098043441772, + 0.9987653493881226, + 0.9953896999359131, + 0.7855744957923889, + 0.9988752007484436, + 0.997117280960083, + 0.9989109039306641, + 0.9982553124427795, + 0.997761607170105, + 0.9987339377403259, + 0.998904824256897, + 0.9987896084785461, + 0.9988096952438354, + 0.9803367257118225, + 0.9988316893577576, + 0.99870765209198, + 0.998933732509613, + 0.9986925721168518, + 0.9988794922828674, + 0.9989266991615295, + 0.9988896250724792, + 0.9988012313842773, + 0.9988735318183899, + 0.9984610080718994, + 0.9984386563301086, + 0.9874911308288574, + 0.9989186525344849, + 0.9988559484481812, + 0.9983460903167725, + 0.9939305782318115, + 0.9987494945526123, + 0.9754528999328613, + 0.9988541603088379, + 0.9984638690948486, + 0.9974592328071594, + 0.9914041757583618, + 0.9988908171653748, + 0.9975560903549194 + ], + "sentiment_counts": { + "POSITIVE": 42, + "NEGATIVE": 8 + }, + "sentiment_distribution": { + "POSITIVE": 0.84, + "NEGATIVE": 0.16 + }, + "sentiment_overall": [ + "POSITIVE", + 0.84 + ] + }, + "final_label": "POSITIVE", + "final_count": 125, + "final_proportion": 0.8802816901408451, + "final_counts": { + "POSITIVE": 125, + "NEGATIVE": 17 + }, + "final_distribution": { + "POSITIVE": 0.8802816901408451, + "NEGATIVE": 0.11971830985915492 + } + } }, { "season_code": "202301", @@ -249140,7 +535855,7 @@ "11:35", "12:50", "SPL 59 - Sloane Physics Laboratory 59", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ], "Wednesday": [ @@ -249148,7 +535863,7 @@ "11:35", "12:50", "SPL 59 - Sloane Physics Laboratory 59", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ] }, @@ -249164,10 +535879,379 @@ "classnotes": "", "final_exam": "Monday, May 8, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84652\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84652/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988993406295776, + 0.9799413084983826, + 0.9985975623130798, + 0.9983963370323181, + 0.9988222718238831, + 0.9989057779312134, + 0.9989350438117981, + 0.9984083771705627, + 0.998808741569519, + 0.6400772333145142, + 0.998654842376709, + 0.9986294507980347, + 0.9989296793937683, + 0.9947861433029175, + 0.9987810254096985, + 0.9989187717437744, + 0.9962497353553772, + 0.9987591505050659, + 0.998505711555481, + 0.9989179372787476, + 0.9989221096038818, + 0.9988968372344971, + 0.9889459013938904, + 0.9983707070350647, + 0.9988158941268921, + 0.9983273148536682, + 0.9988214373588562, + 0.858258843421936, + 0.9976242184638977, + 0.9982665777206421, + 0.998703122138977, + 0.9950201511383057, + 0.9988573789596558, + 0.9984368681907654, + 0.9959208965301514, + 0.9949547648429871, + 0.9876817464828491, + 0.9988202452659607, + 0.99872225522995, + 0.9989264607429504, + 0.9975087642669678, + 0.9987059831619263, + 0.9987090826034546, + 0.9970845580101013, + 0.9987115859985352 + ], + "sentiment_counts": { + "POSITIVE": 44, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9777777777777777, + "NEGATIVE": 0.022222222222222223 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9777777777777777 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989176988601685, + 0.9987877011299133, + 0.9988833069801331, + 0.998915433883667, + 0.9989389777183533, + 0.9940896034240723, + 0.9987872242927551, + 0.998505711555481, + 0.9989111423492432, + 0.9987812638282776, + 0.9995098114013672, + 0.9989351630210876, + 0.9988908171653748, + 0.998889148235321, + 0.9989156723022461, + 0.9994875192642212, + 0.998924195766449, + 0.9988683462142944, + 0.9909115433692932, + 0.9989160299301147, + 0.9989306330680847, + 0.9989286065101624, + 0.9985551238059998, + 0.998902440071106, + 0.9989076852798462, + 0.9989275336265564, + 0.9987936019897461, + 0.9994491934776306, + 0.9989327788352966, + 0.9989087581634521, + 0.9988633394241333, + 0.9972816705703735, + 0.9988736510276794, + 0.9977337121963501, + 0.998916506767273, + 0.9986374974250793, + 0.9988884329795837, + 0.9986801743507385, + 0.998915433883667, + 0.9988957643508911, + 0.9985346794128418, + 0.9988586902618408, + 0.9985935091972351, + 0.998939573764801, + 0.9987442493438721, + 0.9985596537590027, + 0.9988536834716797, + 0.9989160299301147, + 0.9987323880195618, + 0.9988023042678833 + ], + "sentiment_counts": { + "POSITIVE": 46, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.92, + "NEGATIVE": 0.08 + }, + "sentiment_overall": [ + "POSITIVE", + 0.92 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994832277297974, + 0.9989185333251953, + 0.9946191310882568, + 0.9983591437339783, + 0.9989302754402161, + 0.9987940788269043, + 0.9988856911659241, + 0.9989385008811951, + 0.9989033937454224, + 0.9978154897689819, + 0.9989004135131836, + 0.998863935470581, + 0.9974501729011536, + 0.998842716217041, + 0.9994902610778809, + 0.9988269209861755, + 0.9987539052963257, + 0.9989033937454224, + 0.9989356398582458, + 0.9986231327056885, + 0.9961680769920349, + 0.9988442659378052, + 0.9988254904747009, + 0.9989294409751892, + 0.9989325404167175, + 0.998904824256897, + 0.7458998560905457, + 0.998938262462616, + 0.9988365769386292, + 0.9989249110221863, + 0.998238205909729, + 0.9965710639953613, + 0.9974182844161987, + 0.9989227652549744, + 0.9981595873832703, + 0.9988043308258057, + 0.9988294243812561, + 0.9983460903167725, + 0.9987217783927917, + 0.9988956451416016, + 0.9987427592277527, + 0.9988020658493042, + 0.9858960509300232, + 0.9989362359046936, + 0.998490571975708, + 0.9987873435020447, + 0.9989117383956909, + 0.9971610307693481, + 0.9978864789009094, + 0.9988454580307007, + 0.9988973140716553, + 0.997117280960083, + 0.9989222288131714, + 0.9991909861564636, + 0.9708988666534424, + 0.9969394207000732 + ], + "sentiment_counts": { + "NEGATIVE": 10, + "POSITIVE": 46 + }, + "sentiment_distribution": { + "NEGATIVE": 0.17857142857142858, + "POSITIVE": 0.8214285714285714 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8214285714285714 + ] + }, + "final_label": "POSITIVE", + "final_count": 136, + "final_proportion": 0.9006622516556292, + "final_counts": { + "POSITIVE": 136, + "NEGATIVE": 15 + }, + "final_distribution": { + "POSITIVE": 0.9006622516556292, + "NEGATIVE": 0.09933774834437085 + } + } }, { "season_code": "202301", @@ -249204,7 +536288,7 @@ "13:00", "14:15", "SPL 59 - Sloane Physics Laboratory 59", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ], "Wednesday": [ @@ -249212,7 +536296,7 @@ "13:00", "14:15", "SPL 59 - Sloane Physics Laboratory 59", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ] }, @@ -249228,10 +536312,353 @@ "classnotes": "", "final_exam": "Monday, May 8, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84655\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84655/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987448453903198, + 0.6413404941558838, + 0.9988135099411011, + 0.9945764541625977, + 0.9988251328468323, + 0.9988288283348083, + 0.9988848567008972, + 0.9988254904747009, + 0.9988239407539368, + 0.998474657535553, + 0.9988572597503662, + 0.9851323962211609, + 0.9989078044891357, + 0.9988144636154175, + 0.9988893866539001, + 0.9988380074501038, + 0.9984341263771057, + 0.9949414134025574, + 0.9952937960624695, + 0.9987334609031677, + 0.9988930821418762, + 0.9984551668167114, + 0.9989014863967896, + 0.9984316229820251, + 0.9953752756118774, + 0.9609821438789368, + 0.7994667291641235, + 0.9988168478012085, + 0.9987313151359558, + 0.9988815188407898, + 0.9989192485809326, + 0.9980717301368713, + 0.9982954859733582, + 0.998794436454773, + 0.998526930809021, + 0.9988766312599182, + 0.9989179372787476, + 0.9985380172729492, + 0.9971388578414917, + 0.9988138675689697, + 0.9987094402313232, + 0.9988613128662109, + 0.998547375202179, + 0.9987577199935913, + 0.9987841248512268 + ], + "sentiment_counts": { + "POSITIVE": 43, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.9555555555555556, + "NEGATIVE": 0.044444444444444446 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9555555555555556 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989297986030579, + 0.9985954165458679, + 0.9920929074287415, + 0.998761773109436, + 0.9989203214645386, + 0.9989017248153687, + 0.9988376498222351, + 0.9989246726036072, + 0.9994288086891174, + 0.9988975524902344, + 0.9989364743232727, + 0.9987642765045166, + 0.9983610510826111, + 0.9987595081329346, + 0.998920202255249, + 0.99893718957901, + 0.9988493919372559, + 0.9975429773330688, + 0.9974900484085083, + 0.9989067316055298, + 0.9988994598388672, + 0.9987121820449829, + 0.9989075660705566, + 0.9988850951194763, + 0.9988597631454468, + 0.9989286065101624, + 0.9988611936569214, + 0.9987665414810181, + 0.9993274211883545, + 0.9992558360099792, + 0.9988977909088135, + 0.9989151954650879, + 0.9989192485809326, + 0.9988403916358948, + 0.9988886713981628, + 0.9989045858383179, + 0.9989271759986877, + 0.9989233613014221, + 0.9989257454872131, + 0.9989293217658997, + 0.9989094734191895, + 0.9944491386413574, + 0.9989057779312134, + 0.9988669157028198, + 0.980575680732727, + 0.9989066123962402, + 0.9983038902282715, + 0.9986403584480286 + ], + "sentiment_counts": { + "POSITIVE": 41, + "NEGATIVE": 7 + }, + "sentiment_distribution": { + "POSITIVE": 0.8541666666666666, + "NEGATIVE": 0.14583333333333334 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8541666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988192915916443, + 0.9975378513336182, + 0.9989235997200012, + 0.9995019435882568, + 0.9941351413726807, + 0.9989281296730042, + 0.9989306330680847, + 0.9973931312561035, + 0.998897910118103, + 0.9949192404747009, + 0.9987329840660095, + 0.9988277554512024, + 0.9989259839057922, + 0.9989270567893982, + 0.9988915324211121, + 0.9991638660430908, + 0.9973800778388977, + 0.9980168342590332, + 0.9987348914146423, + 0.997117280960083, + 0.9941455125808716, + 0.9989087581634521, + 0.9987877011299133, + 0.9987447261810303, + 0.9986597299575806, + 0.9976869821548462, + 0.997384250164032, + 0.9989365935325623, + 0.9987133741378784, + 0.9988699555397034, + 0.9845457077026367, + 0.9982841610908508, + 0.9988641738891602, + 0.9984880685806274, + 0.9988787770271301, + 0.9989245533943176, + 0.9989194869995117, + 0.9988570213317871, + 0.7149381637573242, + 0.9992839694023132, + 0.9985312223434448, + 0.9974812865257263, + 0.9989197254180908, + 0.9945487380027771, + 0.9989292025566101 + ], + "sentiment_counts": { + "POSITIVE": 37, + "NEGATIVE": 8 + }, + "sentiment_distribution": { + "POSITIVE": 0.8222222222222222, + "NEGATIVE": 0.17777777777777778 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8222222222222222 + ] + }, + "final_label": "POSITIVE", + "final_count": 121, + "final_proportion": 0.8768115942028986, + "final_counts": { + "POSITIVE": 121, + "NEGATIVE": 17 + }, + "final_distribution": { + "POSITIVE": 0.8768115942028986, + "NEGATIVE": 0.12318840579710146 + } + } }, { "season_code": "202301", @@ -249268,7 +536695,7 @@ "11:35", "12:50", "SPL 57 - Sloane Physics Laboratory 57", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ], "Wednesday": [ @@ -249276,7 +536703,7 @@ "11:35", "12:50", "SPL 57 - Sloane Physics Laboratory 57", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ] }, @@ -249292,10 +536719,257 @@ "classnotes": "", "final_exam": "Monday, May 8, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84659\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84659/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985200762748718, + 0.9894452691078186, + 0.9989069700241089, + 0.9985617995262146, + 0.9741896986961365, + 0.9987267851829529, + 0.9958770275115967, + 0.9985538125038147, + 0.9987118244171143, + 0.9988034963607788, + 0.9987699389457703, + 0.9988923668861389, + 0.9988566637039185, + 0.998883068561554, + 0.9988464117050171, + 0.9988700747489929, + 0.9986349940299988, + 0.9976296424865723, + 0.9989205598831177, + 0.9988961219787598, + 0.9987680315971375, + 0.9989157915115356, + 0.9986728429794312, + 0.9988214373588562, + 0.9985467791557312 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 24 + }, + "sentiment_distribution": { + "NEGATIVE": 0.04, + "POSITIVE": 0.96 + }, + "sentiment_overall": [ + "POSITIVE", + 0.96 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.8540147542953491, + 0.9988225102424622, + 0.9987474679946899, + 0.9989323019981384, + 0.9958421587944031, + 0.9989237189292908, + 0.9981303811073303, + 0.9852782487869263, + 0.9949036836624146, + 0.9988541603088379, + 0.9987849593162537, + 0.9987967014312744, + 0.9989363551139832, + 0.9989252686500549, + 0.9989275336265564, + 0.9819698333740234, + 0.9988930821418762, + 0.9989244341850281, + 0.9877128601074219, + 0.9990517497062683, + 0.9983454942703247, + 0.998863935470581, + 0.9989239573478699, + 0.9988981485366821, + 0.9989087581634521, + 0.9918014407157898, + 0.9988584518432617, + 0.9987781643867493, + 0.998848557472229, + 0.9987607002258301, + 0.9989068508148193, + 0.9931515455245972 + ], + "sentiment_counts": { + "NEGATIVE": 5, + "POSITIVE": 27 + }, + "sentiment_distribution": { + "NEGATIVE": 0.15625, + "POSITIVE": 0.84375 + }, + "sentiment_overall": [ + "POSITIVE", + 0.84375 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9972422122955322, + 0.9989053010940552, + 0.9967344403266907, + 0.99866783618927, + 0.998935878276825, + 0.9988721013069153, + 0.9967809915542603, + 0.9989012479782104, + 0.9988584518432617, + 0.9988216757774353, + 0.9987636804580688, + 0.9988698363304138, + 0.9989162683486938, + 0.9988970756530762, + 0.9989331364631653, + 0.9988688826560974, + 0.9983245730400085, + 0.9987879395484924, + 0.9989200830459595, + 0.9989101886749268, + 0.9988045692443848, + 0.9989398121833801, + 0.9976493716239929, + 0.9989297986030579, + 0.9989309906959534, + 0.998845100402832, + 0.9989163875579834, + 0.9989333748817444, + 0.9988306164741516, + 0.9988152980804443, + 0.9987672567367554, + 0.9987917542457581, + 0.9928921461105347 + ], + "sentiment_counts": { + "POSITIVE": 33, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 84, + "final_proportion": 0.9333333333333333, + "final_counts": { + "NEGATIVE": 6, + "POSITIVE": 84 + }, + "final_distribution": { + "NEGATIVE": 0.06666666666666667, + "POSITIVE": 0.9333333333333333 + } + } }, { "season_code": "202301", @@ -249346,10 +537020,163 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84662\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84662/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989089965820312, + 0.998775064945221, + 0.9987850785255432, + 0.5876544713973999, + 0.9967185854911804, + 0.9987428784370422, + 0.9988229870796204, + 0.9908227920532227, + 0.9972186088562012, + 0.9987449645996094, + 0.9987994432449341, + 0.9988473653793335, + 0.9986696243286133, + 0.9952919483184814 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9285714285714286, + "NEGATIVE": 0.07142857142857142 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9285714285714286 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994739890098572, + 0.9989257454872131, + 0.9984532594680786, + 0.9987732768058777, + 0.9993628859519958, + 0.998918890953064, + 0.9989069700241089, + 0.9988377690315247, + 0.9926195740699768, + 0.9989319443702698, + 0.9988290667533875, + 0.9987803101539612, + 0.9988975524902344, + 0.9989315867424011 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 11 + }, + "sentiment_distribution": { + "NEGATIVE": 0.21428571428571427, + "POSITIVE": 0.7857142857142857 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7857142857142857 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994977712631226, + 0.9989166259765625, + 0.9989323019981384, + 0.9988740086555481, + 0.998599112033844, + 0.9994730353355408, + 0.98502117395401, + 0.9988816380500793, + 0.9988971948623657, + 0.9979463219642639, + 0.9987156391143799, + 0.9989169836044312, + 0.9989173412322998, + 0.9988313317298889, + 0.9975284934043884 + ], + "sentiment_counts": { + "NEGATIVE": 4, + "POSITIVE": 11 + }, + "sentiment_distribution": { + "NEGATIVE": 0.26666666666666666, + "POSITIVE": 0.7333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7333333333333333 + ] + }, + "final_label": "POSITIVE", + "final_count": 35, + "final_proportion": 0.813953488372093, + "final_counts": { + "POSITIVE": 35, + "NEGATIVE": 8 + }, + "final_distribution": { + "POSITIVE": 0.813953488372093, + "NEGATIVE": 0.18604651162790697 + } + } }, { "season_code": "202301", @@ -249380,7 +537207,7 @@ "13:30", "16:30", "SCL 141 - Sterling Chemistry Laboratory 141", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -249397,7 +537224,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -249428,7 +537283,7 @@ "13:30", "16:30", "SCL 141 - Sterling Chemistry Laboratory 141", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -249445,7 +537300,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -249484,7 +537367,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -249515,7 +537426,7 @@ "12:00", "15:00", "SCL 141 - Sterling Chemistry Laboratory 141", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -249532,7 +537443,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -249583,10 +537522,149 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84666\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84666/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9979975819587708, + 0.998782217502594, + 0.9987903237342834, + 0.9987302422523499, + 0.9987667798995972, + 0.9988964796066284, + 0.9987120628356934, + 0.9959040284156799, + 0.9980902075767517, + 0.998874843120575, + 0.9983966946601868, + 0.9988151788711548, + 0.9988849759101868 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9230769230769231, + "NEGATIVE": 0.07692307692307693 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9230769230769231 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987022876739502, + 0.9994895458221436, + 0.9983720183372498, + 0.9979771971702576, + 0.997260332107544, + 0.9981831908226013, + 0.996921181678772, + 0.9846298098564148, + 0.9989132881164551, + 0.9987253546714783, + 0.997619092464447 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8181818181818182, + "NEGATIVE": 0.18181818181818182 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8181818181818182 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981063604354858, + 0.9993228912353516, + 0.9989161491394043, + 0.9988213181495667, + 0.9995018243789673, + 0.9777402877807617, + 0.9940056800842285, + 0.9985557198524475, + 0.9989268183708191, + 0.99868243932724, + 0.9989155530929565, + 0.9968432188034058 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 30, + "final_proportion": 0.8333333333333334, + "final_counts": { + "POSITIVE": 30, + "NEGATIVE": 6 + }, + "final_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + } + } }, { "season_code": "202301", @@ -249625,7 +537703,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -249656,7 +537762,7 @@ "13:30", "16:30", "WTS B62 - Watson Center 60 Sachem Street B62", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -249673,7 +537779,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -249704,7 +537838,7 @@ "13:30", "16:30", "WTS B62 - Watson Center 60 Sachem Street B62", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -249721,7 +537855,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -249752,7 +537914,7 @@ "12:00", "15:00", "WTS A39 - Watson Center 60 Sachem Street A39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -249769,12 +537931,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "Concurrently with MATH 120, ENAS 151, PHYS 151, or PHYS 301, or equivalent.\u00a0Students considering an alternative MATH course should check with the\u00a0DUS in Physics.\u00a0", - "description": "An introduction to\u00a0major branches of physics\u2014classical and relativistic\u00a0mechanics; gravitation; electricity\u00a0and\u00a0magnetism; and\u00a0quantum\u00a0physics,information, and computation\u2014at\u00a0a sophisticated level. For students majoring in the physical sciences,\u00a0mathematics,\u00a0and\u00a0philosophy whose high school\u00a0training\u00a0included both mechanics\u00a0and\u00a0electricity\u00a0and\u00a0magnetism at the typical college\/AP level and have excellent training in, and a flair for, mathematical methods and\u00a0quantitative analysis.", + "description": "An introduction to\u00a0major branches of physics\u2014classical and relativistic\u00a0mechanics; gravitation; electricity\u00a0and\u00a0magnetism; and\u00a0quantum\u00a0physics,information, and computation\u2014at\u00a0a sophisticated level. For students majoring in the physical sciences,\u00a0mathematics,\u00a0and\u00a0philosophy whose high school\u00a0training\u00a0included both mechanics\u00a0and\u00a0electricity\u00a0and\u00a0magnetism at the typical college/AP level and have excellent training in, and a flair for, mathematical methods and\u00a0quantitative analysis.", "short_title": "Intensive Introductory Physics", "title": "Intensive Introductory Physics", "school": "YC", @@ -249806,7 +537996,7 @@ "11:35", "12:50", "SCL 111 - Sterling Chemistry Laboratory 111", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ], "Wednesday": [ @@ -249814,7 +538004,7 @@ "11:35", "12:50", "SCL 111 - Sterling Chemistry Laboratory 111", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -249830,15 +538020,128 @@ "classnotes": "", "final_exam": "Monday, May 8, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84668\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84668/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987530708312988, + 0.9975737929344177, + 0.9986304044723511, + 0.9986207485198975, + 0.9994811415672302, + 0.998862624168396, + 0.9988409876823425, + 0.9988228678703308 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989370703697205, + 0.9929199814796448, + 0.9988559484481812, + 0.9985254406929016, + 0.9987502098083496, + 0.998906135559082 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988093376159668, + 0.9955537915229797, + 0.9988068342208862, + 0.9988564252853394, + 0.9757837653160095, + 0.9941996335983276, + 0.9983990788459778, + 0.9931100606918335, + 0.9988038539886475 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 0.782608695652174, + "final_counts": { + "POSITIVE": 18, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.782608695652174, + "NEGATIVE": 0.21739130434782608 + } + } }, { "season_code": "202301", "requirements": "Familiarity with complex numbers and the basics of linear algebra (matrices, determinants, eigenvectors and eigenvalues) is assumed. Prior exposure to basic probability and statistics. as well as a course in quantum mechanics are useful but not required.\u00a0\u00a0", - "description": "This course is intended for undergraduate physics, chemistry, engineering, computer science, statistics and data science, and mathematics majors seeking an introduction to quantum information science. There is now a second quantum revolution underway and a world-wide race to build powerful new types of computers based on quantum principles, and to develop new techniques for encrypted communication whose security is guaranteed by the laws of quantum mechanics. The approach of this course to these topics will strip away much of the traditional physics details to focus on the information content of quantum systems, the nature of measurement, and why the true randomness of certain measurement results can be a feature rather than a bug. We learn what it means for a quantum bit (\u2018qubit\u2019) to be simultaneously 0 and 1 (in some sense). We learn about quantum entanglement and the associated \u2018spooky action at a distance\u2019 that convinced Einstein that the quantum theory must be wrong. Ironically, this bizarre effect is now used on a daily basis to prove that quantum mechanics is indeed correct and used as a routine engineering test to make sure that quantum computers are working properly and are truly quantum. Specific topics include: the mathematical representation of quantum states as complex vectors, the superposition principle, entanglement and Bell inequalities, quantum gates and algorithms for quantum computers, quantum error correction, dense coding, teleportation, and secure quantum communication. Students learn to do problem sets based on programming and operating publicly-accessible cloud-based quantum computers. See for example: https:\/\/www.ibm.com\/quantum-computing\/.", + "description": "This course is intended for undergraduate physics, chemistry, engineering, computer science, statistics and data science, and mathematics majors seeking an introduction to quantum information science. There is now a second quantum revolution underway and a world-wide race to build powerful new types of computers based on quantum principles, and to develop new techniques for encrypted communication whose security is guaranteed by the laws of quantum mechanics. The approach of this course to these topics will strip away much of the traditional physics details to focus on the information content of quantum systems, the nature of measurement, and why the true randomness of certain measurement results can be a feature rather than a bug. We learn what it means for a quantum bit (\u2018qubit\u2019) to be simultaneously 0 and 1 (in some sense). We learn about quantum entanglement and the associated \u2018spooky action at a distance\u2019 that convinced Einstein that the quantum theory must be wrong. Ironically, this bizarre effect is now used on a daily basis to prove that quantum mechanics is indeed correct and used as a routine engineering test to make sure that quantum computers are working properly and are truly quantum. Specific topics include: the mathematical representation of quantum states as complex vectors, the superposition principle, entanglement and Bell inequalities, quantum gates and algorithms for quantum computers, quantum error correction, dense coding, teleportation, and secure quantum communication. Students learn to do problem sets based on programming and operating publicly-accessible cloud-based quantum computers. See for example: https://www.ibm.com/quantum-computing/.", "short_title": "Introduction to Quantum Infor...", "title": "Introduction to Quantum Information Processing and Communication", "school": "YC", @@ -249870,7 +538173,7 @@ "9:00", "10:15", "WTS A53 - Watson Center 60 Sachem Street A53", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -249878,7 +538181,7 @@ "9:00", "10:15", "WTS A53 - Watson Center 60 Sachem Street A53", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -249892,10 +538195,179 @@ "classnotes": "", "final_exam": "Saturday, May 6, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84672\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84672/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9973345994949341, + 0.9987525939941406, + 0.9986251592636108, + 0.9986604452133179, + 0.9979580640792847, + 0.9988009929656982, + 0.9987896084785461, + 0.995445728302002, + 0.9987081289291382, + 0.9988734126091003, + 0.9863634705543518, + 0.9937258362770081, + 0.9987806677818298, + 0.9988092184066772, + 0.9986750483512878, + 0.9987345337867737 + ], + "sentiment_counts": { + "POSITIVE": 15, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9375, + "NEGATIVE": 0.0625 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9375 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.993636965751648, + 0.998514711856842, + 0.9989235997200012, + 0.9989008903503418, + 0.9988810420036316, + 0.997920572757721, + 0.9989365935325623, + 0.9986574649810791, + 0.9959108829498291, + 0.9987894892692566, + 0.9987789988517761, + 0.9989155530929565, + 0.9989585876464844, + 0.9988842606544495, + 0.9988589286804199, + 0.9981268048286438 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.8125, + "NEGATIVE": 0.1875 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8125 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988685846328735, + 0.9986714124679565, + 0.9989142417907715, + 0.998916745185852, + 0.9989124536514282, + 0.9985041618347168, + 0.9988968372344971, + 0.9972224235534668, + 0.9989266991615295, + 0.9940809607505798, + 0.9984122514724731, + 0.9989344477653503, + 0.9986914992332458, + 0.9987749457359314, + 0.9985610842704773, + 0.9989207983016968, + 0.9989232420921326, + 0.9986257553100586, + 0.998794674873352 + ], + "sentiment_counts": { + "POSITIVE": 19, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 47, + "final_proportion": 0.9215686274509803, + "final_counts": { + "POSITIVE": 47, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.9215686274509803, + "NEGATIVE": 0.0784313725490196 + } + } }, { "season_code": "202301", @@ -249935,7 +538407,7 @@ "13:00", "16:00", "HLH17 115 - 17 Hillhouse Avenue 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -249949,10 +538421,175 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84608\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84608/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989216327667236, + 0.9932257533073425, + 0.9988923668861389, + 0.9987329840660095, + 0.9988369345664978, + 0.9960871934890747, + 0.9975152015686035, + 0.9988754391670227, + 0.9983104467391968, + 0.9976860284805298, + 0.9988476037979126, + 0.9988580942153931, + 0.9986592531204224, + 0.9952040910720825, + 0.9969220757484436, + 0.9984610080718994, + 0.9984652996063232 + ], + "sentiment_counts": { + "POSITIVE": 17, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988027811050415, + 0.9988604784011841, + 0.9989138841629028, + 0.9986945986747742, + 0.9980992674827576, + 0.9988196492195129, + 0.9977782368659973, + 0.998862624168396, + 0.9986973404884338, + 0.9988939166069031, + 0.9969010353088379, + 0.998865008354187, + 0.9987938404083252, + 0.9982560276985168, + 0.9984721541404724, + 0.9994969367980957, + 0.9989016056060791 + ], + "sentiment_counts": { + "POSITIVE": 14, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.8235294117647058, + "NEGATIVE": 0.17647058823529413 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8235294117647058 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987284541130066, + 0.998884379863739, + 0.9988369345664978, + 0.998824417591095, + 0.9981866478919983, + 0.9988502264022827, + 0.9979634284973145, + 0.9988294243812561, + 0.9989336133003235, + 0.9922376275062561, + 0.9989039897918701, + 0.9988883137702942, + 0.9994937181472778, + 0.9964722394943237, + 0.9957139492034912 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8666666666666667, + "NEGATIVE": 0.13333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8666666666666667 + ] + }, + "final_label": "POSITIVE", + "final_count": 44, + "final_proportion": 0.8979591836734694, + "final_counts": { + "POSITIVE": 44, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.8979591836734694, + "NEGATIVE": 0.10204081632653061 + } + } }, { "season_code": "202301", @@ -250020,10 +538657,125 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84615\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84615/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984104633331299, + 0.9986830353736877, + 0.9989058971405029, + 0.9966710209846497, + 0.9985955357551575, + 0.9987780451774597, + 0.998889148235321, + 0.9966747760772705 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9978606104850769, + 0.9995068311691284, + 0.9989249110221863, + 0.9987331032752991, + 0.9993553757667542, + 0.9988631010055542, + 0.9989330172538757, + 0.9956634640693665 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 5 + }, + "sentiment_distribution": { + "NEGATIVE": 0.375, + "POSITIVE": 0.625 + }, + "sentiment_overall": [ + "POSITIVE", + 0.625 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988480806350708, + 0.999505877494812, + 0.998913049697876, + 0.9982118606567383, + 0.995668888092041, + 0.998878538608551, + 0.998896598815918, + 0.998838484287262 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 0.8333333333333334, + "final_counts": { + "POSITIVE": 20, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + } + } }, { "season_code": "202301", @@ -250060,7 +538812,7 @@ "11:35", "12:50", "SPL 51 - Sloane Physics Laboratory 51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ], "Thursday": [ @@ -250068,7 +538820,7 @@ "11:35", "12:50", "SPL 51 - Sloane Physics Laboratory 51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ] }, @@ -250084,10 +538836,117 @@ "classnotes": "", "final_exam": "Monday, May 8, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84619\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84619/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984273910522461, + 0.9983567595481873, + 0.9988579750061035, + 0.9987634420394897, + 0.998830258846283, + 0.9982814788818359, + 0.9989288449287415, + 0.9984548091888428 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998863697052002, + 0.9988608360290527, + 0.9988068342208862, + 0.9988993406295776, + 0.9988943934440613, + 0.9988816380500793 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988958835601807, + 0.997117280960083, + 0.9988580942153931, + 0.9994567036628723, + 0.9989227652549744, + 0.9979966282844543 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 0.95, + "final_counts": { + "POSITIVE": 19, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.95, + "NEGATIVE": 0.05 + } + } }, { "season_code": "202301", @@ -250124,7 +538983,7 @@ "11:35", "12:50", "SCL 111 - Sterling Chemistry Laboratory 111", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ], "Thursday": [ @@ -250132,7 +538991,7 @@ "11:35", "12:50", "SCL 111 - Sterling Chemistry Laboratory 111", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -250148,10 +539007,225 @@ "classnotes": "", "final_exam": "Monday, May 8, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84624\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84624/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987342953681946, + 0.9990611672401428, + 0.9986988306045532, + 0.998601496219635, + 0.9995015859603882, + 0.9994841814041138, + 0.9986397624015808, + 0.998431384563446, + 0.9989307522773743, + 0.9966642260551453, + 0.9988462924957275, + 0.9987475872039795, + 0.9981598258018494, + 0.9920476078987122, + 0.9986543655395508, + 0.9986060261726379, + 0.9952629804611206, + 0.9965022802352905, + 0.9986938834190369, + 0.9301431179046631, + 0.9983737468719482, + 0.9974225759506226 + ], + "sentiment_counts": { + "POSITIVE": 17, + "NEGATIVE": 5 + }, + "sentiment_distribution": { + "POSITIVE": 0.7727272727272727, + "NEGATIVE": 0.22727272727272727 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7727272727272727 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.998909592628479, + 0.9994828701019287, + 0.997040331363678, + 0.9988654851913452, + 0.99826979637146, + 0.9994792342185974, + 0.999298095703125, + 0.9979509711265564, + 0.9995049238204956, + 0.9988073110580444, + 0.9994878768920898, + 0.9903302192687988, + 0.9988627433776855, + 0.997751772403717, + 0.9994958639144897, + 0.9972537159919739, + 0.9988319277763367, + 0.9994755387306213, + 0.9988762736320496, + 0.9994829893112183, + 0.9978175163269043, + 0.9991059899330139, + 0.9995108842849731, + 0.993699312210083, + 0.9987627267837524, + 0.9763076305389404 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 15 + }, + "sentiment_distribution": { + "POSITIVE": 0.4230769230769231, + "NEGATIVE": 0.5769230769230769 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.5769230769230769 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9644798636436462, + 0.9994940757751465, + 0.9995074272155762, + 0.999508261680603, + 0.9979555606842041, + 0.9270257949829102, + 0.9994744658470154, + 0.9989148378372192, + 0.9988561868667603, + 0.9989325404167175, + 0.9988682270050049, + 0.9992497563362122, + 0.9976498484611511, + 0.9988359808921814, + 0.9995099306106567, + 0.9995104074478149, + 0.999460756778717, + 0.9834296703338623, + 0.9987963438034058, + 0.9979169964790344, + 0.9995088577270508, + 0.9100133776664734, + 0.9993011951446533, + 0.9994825124740601, + 0.9988725781440735, + 0.9970595240592957 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 13 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "final_label": "POSITIVE", + "final_count": 41, + "final_proportion": 0.5540540540540541, + "final_counts": { + "POSITIVE": 41, + "NEGATIVE": 33 + }, + "final_distribution": { + "POSITIVE": 0.5540540540540541, + "NEGATIVE": 0.44594594594594594 + } + } }, { "season_code": "202301", @@ -250188,7 +539262,7 @@ "11:35", "12:50", "SPL 56 - Sloane Physics Laboratory 56", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ], "Wednesday": [ @@ -250196,7 +539270,7 @@ "11:35", "12:50", "SPL 56 - Sloane Physics Laboratory 56", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ] }, @@ -250212,10 +539286,125 @@ "classnotes": "", "final_exam": "Saturday, May 6, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84628\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84628/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984152317047119, + 0.9988576173782349, + 0.9975445866584778, + 0.9968761205673218, + 0.9987360835075378, + 0.9988135099411011, + 0.9028806090354919, + 0.9955623149871826 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9987441301345825, + 0.9989149570465088, + 0.9988514184951782, + 0.9989138841629028, + 0.9987094402313232, + 0.9935624599456787, + 0.9994186162948608 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9973069429397583, + 0.998534083366394, + 0.9989141225814819, + 0.9988718628883362, + 0.997117280960083, + 0.9988688826560974, + 0.9865433573722839, + 0.9989098310470581, + 0.9977040886878967 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 23, + "final_proportion": 0.9583333333333334, + "final_counts": { + "POSITIVE": 23, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9583333333333334, + "NEGATIVE": 0.041666666666666664 + } + } }, { "season_code": "202301", @@ -250253,7 +539442,7 @@ "13:00", "14:15", "SPL 63 - Sloane Physics Laboratory 63", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ], "Wednesday": [ @@ -250261,7 +539450,7 @@ "13:00", "14:15", "SPL 63 - Sloane Physics Laboratory 63", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ] }, @@ -250277,10 +539466,101 @@ "classnotes": "", "final_exam": "Tuesday, May 9, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84631\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84631/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994966983795166, + 0.9986067414283752, + 0.9995057582855225, + 0.9988640546798706 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9968922734260559, + 0.9979199767112732, + 0.9995055198669434, + 0.9972641468048096 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9951854348182678, + 0.999476969242096, + 0.9995101690292358, + 0.9987301230430603 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "final_label": "neutral", + "final_count": 0.5, + "final_proportion": 0.5, + "final_counts": { + "NEGATIVE": 6, + "POSITIVE": 6 + }, + "final_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + } + } }, { "season_code": "202301", @@ -250321,7 +539601,7 @@ "11:35", "12:50", "BCT 408A - Becton Center 408A", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ], "Wednesday": [ @@ -250329,7 +539609,7 @@ "11:35", "12:50", "BCT 408A - Becton Center 408A", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ] }, @@ -250345,15 +539625,92 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83383\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83383/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "", - "description": "Each student works on an independent project under the supervision of a member of the faculty or research staff. Students participate in a series of seminar meetings in which they present a talk on their project or research related to it. A written report is also required. For students with a strong background in physics coursework.\u00a0This course may be taken multiple times for pass\/fail credit. Suggested for first years and sophomores.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9919009804725647, + 0.9978255033493042 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986433386802673, + 0.9989079236984253 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981049299240112, + 0.9987448453903198 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 6 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } + }, + { + "season_code": "202301", + "requirements": "", + "description": "Each student works on an independent project under the supervision of a member of the faculty or research staff. Students participate in a series of seminar meetings in which they present a talk on their project or research related to it. A written report is also required. For students with a strong background in physics coursework.\u00a0This course may be taken multiple times for pass/fail credit. Suggested for first years and sophomores.", "short_title": "Independent Research in Physics", "title": "Independent Research in Physics", "school": "YC", @@ -250391,10 +539748,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84635\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84635/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -250437,10 +539822,123 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84639\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84639/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9959314465522766, + 0.9989274144172668, + 0.9988124370574951, + 0.9934666752815247, + 0.9978162050247192, + 0.9957274198532104, + 0.9986684322357178 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988217949867249, + 0.9988573789596558, + 0.9989181756973267, + 0.998781144618988, + 0.9988840222358704, + 0.996829092502594, + 0.9967960715293884 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982383251190186, + 0.992576539516449, + 0.9932617545127869, + 0.9977158308029175, + 0.9895778894424438, + 0.9982510209083557, + 0.994804322719574, + 0.9974585175514221, + 0.9989159107208252 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 22, + "final_proportion": 0.9565217391304348, + "final_counts": { + "POSITIVE": 22, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9565217391304348, + "NEGATIVE": 0.043478260869565216 + } + } }, { "season_code": "202301", @@ -250477,7 +539975,7 @@ "13:00", "14:15", "SPL 57 - Sloane Physics Laboratory 57", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ], "Wednesday": [ @@ -250485,7 +539983,7 @@ "13:00", "14:15", "SPL 57 - Sloane Physics Laboratory 57", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ] }, @@ -250497,10 +539995,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84643\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84643/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -250564,10 +540090,125 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84615\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84615/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984104633331299, + 0.9986830353736877, + 0.9989058971405029, + 0.9966710209846497, + 0.9985955357551575, + 0.9987780451774597, + 0.998889148235321, + 0.9966747760772705 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9978606104850769, + 0.9995068311691284, + 0.9989249110221863, + 0.9987331032752991, + 0.9993553757667542, + 0.9988631010055542, + 0.9989330172538757, + 0.9956634640693665 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 5 + }, + "sentiment_distribution": { + "NEGATIVE": 0.375, + "POSITIVE": 0.625 + }, + "sentiment_overall": [ + "POSITIVE", + 0.625 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988480806350708, + 0.999505877494812, + 0.998913049697876, + 0.9982118606567383, + 0.995668888092041, + 0.998878538608551, + 0.998896598815918, + 0.998838484287262 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 0.8333333333333334, + "final_counts": { + "POSITIVE": 20, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + } + } }, { "season_code": "202301", @@ -250604,7 +540245,7 @@ "9:00", "10:15", "SPL 59 - Sloane Physics Laboratory 59", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ], "Wednesday": [ @@ -250612,7 +540253,7 @@ "9:00", "10:15", "SPL 59 - Sloane Physics Laboratory 59", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ] }, @@ -250624,10 +540265,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84647\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84647/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -250664,7 +540333,7 @@ "13:00", "14:15", "SPL 57 - Sloane Physics Laboratory 57", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ], "Thursday": [ @@ -250672,7 +540341,7 @@ "13:00", "14:15", "SPL 57 - Sloane Physics Laboratory 57", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ] }, @@ -250684,10 +540353,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84651\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84651/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -250727,7 +540424,7 @@ "18:00", "19:15", "BASS 405 - Bass Center 405", - "https:\/\/map.yale.edu\/?id=1910#!m\/560102" + "https://map.yale.edu/?id=1910#!m/560102" ] ], "Wednesday": [ @@ -250735,7 +540432,7 @@ "18:00", "19:15", "BASS 405 - Bass Center 405", - "https:\/\/map.yale.edu\/?id=1910#!m\/560102" + "https://map.yale.edu/?id=1910#!m/560102" ] ] }, @@ -250747,10 +540444,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84464\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84464/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -250787,7 +540512,7 @@ "13:00", "14:15", "SPL 48 - Sloane Physics Laboratory 48", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ], "Thursday": [ @@ -250795,7 +540520,7 @@ "13:00", "14:15", "SPL 48 - Sloane Physics Laboratory 48", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ] }, @@ -250807,10 +540532,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84657\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84657/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -250848,7 +540601,7 @@ "13:00", "14:15", "SPL 63 - Sloane Physics Laboratory 63", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ], "Wednesday": [ @@ -250856,7 +540609,7 @@ "13:00", "14:15", "SPL 63 - Sloane Physics Laboratory 63", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ] }, @@ -250868,10 +540621,101 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84631\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84631/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994966983795166, + 0.9986067414283752, + 0.9995057582855225, + 0.9988640546798706 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9968922734260559, + 0.9979199767112732, + 0.9995055198669434, + 0.9972641468048096 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9951854348182678, + 0.999476969242096, + 0.9995101690292358, + 0.9987301230430603 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "final_label": "neutral", + "final_count": 0.5, + "final_proportion": 0.5, + "final_counts": { + "NEGATIVE": 6, + "POSITIVE": 6 + }, + "final_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + } + } }, { "season_code": "202301", @@ -250912,7 +540756,7 @@ "11:35", "12:50", "BCT 408A - Becton Center 408A", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ], "Wednesday": [ @@ -250920,7 +540764,7 @@ "11:35", "12:50", "BCT 408A - Becton Center 408A", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ] }, @@ -250932,10 +540776,87 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83383\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83383/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9919009804725647, + 0.9978255033493042 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986433386802673, + 0.9989079236984253 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981049299240112, + 0.9987448453903198 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 6 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -250988,7 +540909,7 @@ "14:30", "15:45", "BASS 405 - Bass Center 405", - "https:\/\/map.yale.edu\/?id=1910#!m\/560102" + "https://map.yale.edu/?id=1910#!m/560102" ] ], "Thursday": [ @@ -250996,7 +540917,7 @@ "14:30", "15:45", "BASS 405 - Bass Center 405", - "https:\/\/map.yale.edu\/?id=1910#!m\/560102" + "https://map.yale.edu/?id=1910#!m/560102" ] ] }, @@ -251008,10 +540929,139 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84491\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84491/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988125562667847, + 0.9983453750610352, + 0.9986456036567688, + 0.9986985921859741, + 0.9977982044219971, + 0.9903422594070435, + 0.9986554384231567, + 0.9956871867179871, + 0.9983854293823242, + 0.9988418221473694, + 0.9961655139923096 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9090909090909091 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988546371459961, + 0.9924356341362, + 0.9994757771492004, + 0.998830258846283, + 0.9947176575660706, + 0.9983822107315063, + 0.9951450228691101, + 0.9986005425453186, + 0.9987438321113586, + 0.9995054006576538, + 0.9988664388656616 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.7272727272727273, + "NEGATIVE": 0.2727272727272727 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7272727272727273 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984412789344788, + 0.966108500957489, + 0.9989063739776611, + 0.9985975623130798, + 0.9945812821388245, + 0.9985987544059753, + 0.9927737712860107, + 0.9988572597503662, + 0.9988515377044678 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "final_label": "POSITIVE", + "final_count": 26, + "final_proportion": 0.8387096774193549, + "final_counts": { + "POSITIVE": 26, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.8387096774193549, + "NEGATIVE": 0.16129032258064516 + } + } }, { "season_code": "202301", @@ -251049,7 +541099,7 @@ "15:30", "16:45", "SPL 57 - Sloane Physics Laboratory 57", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ] }, @@ -251061,10 +541111,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84661\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84661/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -251102,7 +541180,7 @@ "11:35", "12:50", "SPL 63 - Sloane Physics Laboratory 63", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ], "Thursday": [ @@ -251110,7 +541188,7 @@ "11:35", "12:50", "SPL 63 - Sloane Physics Laboratory 63", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ] }, @@ -251122,10 +541200,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84669\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84669/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -251162,7 +541268,7 @@ "9:00", "10:15", "SPL 48 - Sloane Physics Laboratory 48", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ], "Thursday": [ @@ -251170,7 +541276,7 @@ "9:00", "10:15", "SPL 48 - Sloane Physics Laboratory 48", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ] }, @@ -251182,15 +541288,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84673\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84673/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course covers various advanced topics in particle theory. Possible topics include symmetries and anomalies, conformal field theories, supersymmetry, and aspects of string theory and the AdS\/CFT correspondence. This course assumes knowledge from PHYS 609 but may be taken concurrently with PHYS 630.", + "description": "This course covers various advanced topics in particle theory. Possible topics include symmetries and anomalies, conformal field theories, supersymmetry, and aspects of string theory and the AdS/CFT correspondence. This course assumes knowledge from PHYS 609 but may be taken concurrently with PHYS 630.", "short_title": "Special Topics in Particle Th...", "title": "Special Topics in Particle Theory", "school": "GS", @@ -251222,7 +541356,7 @@ "14:30", "15:45", "SPL 51 - Sloane Physics Laboratory 51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ], "Thursday": [ @@ -251230,7 +541364,7 @@ "14:30", "15:45", "SPL 51 - Sloane Physics Laboratory 51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ] }, @@ -251242,10 +541376,38 @@ "classnotes": "\n", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85115\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/85115/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -251285,7 +541447,7 @@ "13:30", "15:20", "SPL 48 - Sloane Physics Laboratory 48", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ] }, @@ -251297,10 +541459,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84675\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84675/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -251338,18 +541528,46 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Chemistry 562L: Laboratory in Instrument Design and the Mechanical Arts\nPhysics 762L: Laboratory in Instrument Design and the Mechanical Arts\n\nInstructor: David Johnson\n\nPlace: Wright Laboratory, Room 101\n\nRegistration procedure: Registration in-person only. Registration by permission of instructor.\nSpring 2023 registration takes place the first week of the semester on W, Th, and Fr from 9:00 AM to 3:00 PM in WL 101.\n\nStudents must register in person with David Johnson to choose a day. Classes fill quickly and no registrations will be accepted by phone or e-mail.\n\nWL 101 is at the north end of campus and difficult to navigate because of ongoing construction, and as such students are encouraged to allocate extra time to find the class location.\n\nA more complete syllabus for each course can be picked up in WL 110 during the first class 1\/17\/2023.", + "classnotes": "Chemistry 562L: Laboratory in Instrument Design and the Mechanical Arts\nPhysics 762L: Laboratory in Instrument Design and the Mechanical Arts\n\nInstructor: David Johnson\n\nPlace: Wright Laboratory, Room 101\n\nRegistration procedure: Registration in-person only. Registration by permission of instructor.\nSpring 2023 registration takes place the first week of the semester on W, Th, and Fr from 9:00 AM to 3:00 PM in WL 101.\n\nStudents must register in person with David Johnson to choose a day. Classes fill quickly and no registrations will be accepted by phone or e-mail.\n\nWL 101 is at the north end of campus and difficult to navigate because of ongoing construction, and as such students are encouraged to allocate extra time to find the class location.\n\nA more complete syllabus for each course can be picked up in WL 110 during the first class 1/17/2023.", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87107\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87107/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "An advanced course covering the concepts and techniques of radio-frequency design and their application in making microwave measurements. The course begins with a review of lumped element and transmission line circuits, network analysis, and design of passive elements, including filters and impedance transformers. We continue with a treatment of passive and active components such as couplers, circulators, amplifiers, and modulators. Finally, we employ this understanding for the design of microwave measurement systems and techniques for modulation and signal recovery, to analyze the performance of heterodyne\/homodyne receivers and radiometers.", + "description": "An advanced course covering the concepts and techniques of radio-frequency design and their application in making microwave measurements. The course begins with a review of lumped element and transmission line circuits, network analysis, and design of passive elements, including filters and impedance transformers. We continue with a treatment of passive and active components such as couplers, circulators, amplifiers, and modulators. Finally, we employ this understanding for the design of microwave measurement systems and techniques for modulation and signal recovery, to analyze the performance of heterodyne/homodyne receivers and radiometers.", "short_title": "Techniques of Microwave Measu...", "title": "Techniques of Microwave Measurement and RF Design", "school": "GS", @@ -251382,7 +541600,7 @@ "14:30", "15:45", "BCT 508 - Becton Center 508", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ], "Thursday": [ @@ -251390,7 +541608,7 @@ "14:30", "15:45", "BCT 508 - Becton Center 508", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ] }, @@ -251402,10 +541620,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83392\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83392/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -251448,10 +541694,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84677\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84677/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -251489,7 +541763,7 @@ "11:35", "12:50", "CO493 103 - 493 College Street 103", - "https:\/\/map.yale.edu\/?id=1910#!m\/560001" + "https://map.yale.edu/?id=1910#!m/560001" ] ], "Thursday": [ @@ -251497,7 +541771,7 @@ "11:35", "12:50", "CO493 103 - 493 College Street 103", - "https:\/\/map.yale.edu\/?id=1910#!m\/560001" + "https://map.yale.edu/?id=1910#!m/560001" ] ] }, @@ -251511,10 +541785,81 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85662\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85662/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986972212791443 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988433122634888 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.998927891254425 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 3, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 3 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -251551,7 +541896,7 @@ "13:30", "14:20", "LC 102 - Linsly-Chittenden Hall 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -251559,7 +541904,7 @@ "13:30", "14:20", "LC 102 - Linsly-Chittenden Hall 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -251576,10 +541921,317 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84681\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84681/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989321827888489, + 0.9594502449035645, + 0.998831570148468, + 0.9987688660621643, + 0.9980092644691467, + 0.9986668825149536, + 0.998871386051178, + 0.9976440072059631, + 0.9981649518013, + 0.9962582588195801, + 0.9982268214225769, + 0.9985456466674805, + 0.9987888932228088, + 0.9989068508148193, + 0.9987279772758484, + 0.9962403774261475, + 0.9988929629325867, + 0.9989176988601685, + 0.9987826943397522, + 0.998920202255249, + 0.9931471943855286, + 0.998565137386322, + 0.9989256262779236, + 0.9986361861228943, + 0.9988208413124084, + 0.9988061189651489, + 0.9982125759124756, + 0.9974086880683899, + 0.9989257454872131, + 0.9853573441505432, + 0.9988853335380554, + 0.9982584118843079, + 0.9988698363304138, + 0.9989225268363953, + 0.9989155530929565, + 0.9988968372344971, + 0.9988859295845032, + 0.9989109039306641, + 0.9989277720451355 + ], + "sentiment_counts": { + "POSITIVE": 36, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.9230769230769231, + "NEGATIVE": 0.07692307692307693 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9230769230769231 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987372756004333, + 0.9988589286804199, + 0.9988884329795837, + 0.9976440072059631, + 0.9962582588195801, + 0.9965071082115173, + 0.9957693815231323, + 0.9903422594070435, + 0.9989031553268433, + 0.9989112615585327, + 0.9994805455207825, + 0.9978541731834412, + 0.9988828301429749, + 0.9971893429756165, + 0.9989137649536133, + 0.9986875653266907, + 0.9989217519760132, + 0.9994465708732605, + 0.9987016916275024, + 0.9989346861839294, + 0.9994445443153381, + 0.9986503720283508, + 0.9994750618934631, + 0.9980511665344238, + 0.9988511800765991, + 0.9988917708396912, + 0.9962678551673889, + 0.9988353848457336, + 0.9975869655609131, + 0.9989207983016968, + 0.9988505840301514, + 0.9989232420921326, + 0.998803973197937, + 0.9691889882087708, + 0.9936104416847229, + 0.9989269375801086, + 0.9983078241348267 + ], + "sentiment_counts": { + "POSITIVE": 25, + "NEGATIVE": 12 + }, + "sentiment_distribution": { + "POSITIVE": 0.6756756756756757, + "NEGATIVE": 0.32432432432432434 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6756756756756757 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988805651664734, + 0.9974592328071594, + 0.9987586736679077, + 0.9989332556724548, + 0.998877227306366, + 0.997117280960083, + 0.9995081424713135, + 0.9986587762832642, + 0.9988276362419128, + 0.9976440072059631, + 0.9962582588195801, + 0.9989244341850281, + 0.9918704032897949, + 0.9989163875579834, + 0.9989262223243713, + 0.9989172220230103, + 0.9757247567176819, + 0.998910665512085, + 0.9989332556724548, + 0.9981922507286072, + 0.9989238381385803, + 0.9987691044807434, + 0.9989243149757385, + 0.9993289709091187, + 0.9985973238945007, + 0.9988617897033691, + 0.9989116191864014, + 0.9988322854042053, + 0.9989092350006104, + 0.9968470931053162, + 0.9994823932647705, + 0.9989203214645386, + 0.9989186525344849, + 0.998141884803772, + 0.9988952279090881, + 0.997163712978363, + 0.9988817572593689, + 0.9989261031150818, + 0.9989030361175537, + 0.9989043474197388, + 0.9989311099052429, + 0.9988844990730286, + 0.9989351630210876, + 0.9982833862304688 + ], + "sentiment_counts": { + "POSITIVE": 37, + "NEGATIVE": 7 + }, + "sentiment_distribution": { + "POSITIVE": 0.8409090909090909, + "NEGATIVE": 0.1590909090909091 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8409090909090909 + ] + }, + "final_label": "POSITIVE", + "final_count": 98, + "final_proportion": 0.8166666666666667, + "final_counts": { + "POSITIVE": 98, + "NEGATIVE": 22 + }, + "final_distribution": { + "POSITIVE": 0.8166666666666667, + "NEGATIVE": 0.18333333333333332 + } + } }, { "season_code": "202301", @@ -251610,7 +542262,7 @@ "16:00", "16:50", "WLH 210 - William L. Harkness Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -251627,7 +542279,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -251658,7 +542338,7 @@ "19:00", "19:50", "HQ 127 - Humanities Quadrangle 127", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -251675,7 +542355,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -251706,7 +542414,7 @@ "17:00", "17:50", "WLH 113 - William L. Harkness Hall 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -251723,7 +542431,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -251754,7 +542490,7 @@ "19:00", "19:50", "WLH 006 - William L. Harkness Hall 006", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -251771,7 +542507,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -251802,7 +542566,7 @@ "13:30", "14:20", "AKW 100 - Arthur K. Watson Hall 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560119" + "https://map.yale.edu/?id=1910#!m/560119" ] ] }, @@ -251819,7 +542583,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -251850,7 +542642,7 @@ "13:30", "14:20", "WLH 120 - William L. Harkness Hall 120", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -251867,7 +542659,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -251898,7 +542718,7 @@ "10:30", "11:20", "WLH 006 - William L. Harkness Hall 006", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -251915,7 +542735,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -251946,7 +542794,7 @@ "10:30", "11:20", "HQ 309 - Humanities Quadrangle 309", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -251963,7 +542811,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -251994,7 +542870,7 @@ "9:25", "10:15", "WTS A35 - Watson Center 60 Sachem Street A35", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -252011,7 +542887,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -252042,7 +542946,7 @@ "10:30", "11:20", "WTS A35 - Watson Center 60 Sachem Street A35", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -252059,7 +542963,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -252096,7 +543028,7 @@ "10:30", "11:20", "LC 101 - Linsly-Chittenden Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -252104,7 +543036,7 @@ "10:30", "11:20", "LC 101 - Linsly-Chittenden Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -252120,10 +543052,291 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84683\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84683/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988616704940796, + 0.9988369345664978, + 0.9988269209861755, + 0.9985328912734985, + 0.9985073208808899, + 0.982575535774231, + 0.9987528324127197, + 0.9985131621360779, + 0.9989057779312134, + 0.9987063407897949, + 0.9988553524017334, + 0.9988752007484436, + 0.9988489151000977, + 0.9988608360290527, + 0.9986506104469299, + 0.9995099306106567, + 0.9984292387962341, + 0.9988553524017334, + 0.9968665242195129, + 0.998391330242157, + 0.9986579418182373, + 0.9988948702812195, + 0.9988216757774353, + 0.9987097978591919, + 0.9787002205848694, + 0.9988013505935669, + 0.9985913634300232, + 0.9989056587219238, + 0.9988247752189636, + 0.9984134435653687, + 0.9988823533058167, + 0.9988306164741516, + 0.9988057613372803, + 0.9988877177238464, + 0.9988388419151306 + ], + "sentiment_counts": { + "POSITIVE": 34, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9714285714285714, + "NEGATIVE": 0.02857142857142857 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9714285714285714 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988961219787598, + 0.9989332556724548, + 0.9962627291679382, + 0.9987903237342834, + 0.9989305138587952, + 0.9988967180252075, + 0.9986656904220581, + 0.9975320100784302, + 0.9987766146659851, + 0.9987719655036926, + 0.998868465423584, + 0.9987297654151917, + 0.998910665512085, + 0.9994609951972961, + 0.999503493309021, + 0.9988817572593689, + 0.9986218214035034, + 0.9988967180252075, + 0.9987926483154297, + 0.9948475360870361, + 0.9986942410469055, + 0.9989306330680847, + 0.9987047910690308, + 0.9986771941184998, + 0.9988468885421753, + 0.9983811378479004, + 0.9989122152328491, + 0.9988436698913574, + 0.9988044500350952, + 0.9986521601676941, + 0.9988799691200256, + 0.998924195766449, + 0.9989144802093506, + 0.9989103078842163 + ], + "sentiment_counts": { + "POSITIVE": 31, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.9117647058823529, + "NEGATIVE": 0.08823529411764706 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9117647058823529 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998863697052002, + 0.9989159107208252, + 0.9988070726394653, + 0.9989344477653503, + 0.9988546371459961, + 0.9988786578178406, + 0.9989123344421387, + 0.9984942674636841, + 0.998134434223175, + 0.9988662004470825, + 0.9985492825508118, + 0.9992641806602478, + 0.9989067316055298, + 0.998782217502594, + 0.9989237189292908, + 0.9981922507286072, + 0.9995095729827881, + 0.9987433552742004, + 0.9988977909088135, + 0.9988691210746765, + 0.9988651275634766, + 0.9993929862976074, + 0.9982662796974182, + 0.9982553124427795, + 0.9989187717437744, + 0.9985396862030029, + 0.998524010181427, + 0.9988295435905457, + 0.998855471611023, + 0.9989338517189026, + 0.9989210367202759, + 0.9989350438117981, + 0.9994764924049377, + 0.9989332556724548, + 0.9989091157913208, + 0.9989068508148193, + 0.9988991022109985, + 0.9987849593162537 + ], + "sentiment_counts": { + "POSITIVE": 32, + "NEGATIVE": 6 + }, + "sentiment_distribution": { + "POSITIVE": 0.8421052631578947, + "NEGATIVE": 0.15789473684210525 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8421052631578947 + ] + }, + "final_label": "POSITIVE", + "final_count": 97, + "final_proportion": 0.9065420560747663, + "final_counts": { + "POSITIVE": 97, + "NEGATIVE": 10 + }, + "final_distribution": { + "POSITIVE": 0.9065420560747663, + "NEGATIVE": 0.09345794392523364 + } + } }, { "season_code": "202301", @@ -252154,7 +543367,7 @@ "13:30", "14:20", "DOW 215 - Dow Hall 215", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ] }, @@ -252171,7 +543384,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -252202,7 +543443,7 @@ "14:30", "15:20", "DOW 215 - Dow Hall 215", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ] }, @@ -252219,7 +543460,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -252250,7 +543519,7 @@ "15:30", "16:20", "RKZ 04 - Rosenkranz Hall 04", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -252267,7 +543536,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -252298,7 +543595,7 @@ "16:30", "17:20", "RKZ 04 - Rosenkranz Hall 04", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -252315,7 +543612,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -252346,7 +543671,7 @@ "14:30", "15:20", "WLH 113 - William L. Harkness Hall 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -252363,7 +543688,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -252394,7 +543747,7 @@ "15:30", "16:20", "BM 013 - Bingham Hall 013", - "https:\/\/map.yale.edu\/?id=1910#!m\/559569" + "https://map.yale.edu/?id=1910#!m/559569" ] ] }, @@ -252411,7 +543764,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -252469,7 +543850,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -252500,7 +543909,7 @@ "14:30", "15:20", "RKZ 04 - Rosenkranz Hall 04", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -252519,7 +543928,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -252556,7 +543993,7 @@ "11:35", "12:25", "WLH 117 - William L. Harkness Hall 117", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -252564,7 +544001,7 @@ "11:35", "12:25", "WLH 117 - William L. Harkness Hall 117", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -252581,10 +544018,121 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84686\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84686/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986770749092102, + 0.9988768696784973, + 0.9985143542289734, + 0.9985970854759216, + 0.9986135959625244, + 0.9987599849700928 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9995098114013672, + 0.9977939128875732, + 0.9986795783042908, + 0.9995131492614746, + 0.9994082450866699, + 0.9978753328323364, + 0.9985646605491638 + ], + "sentiment_counts": { + "NEGATIVE": 4, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5714285714285714, + "POSITIVE": 0.42857142857142855 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.5714285714285714 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983184337615967, + 0.9980652928352356, + 0.9995070695877075, + 0.9987217783927917, + 0.9983507394790649, + 0.9995061159133911, + 0.9988138675689697, + 0.9988896250724792, + 0.9988276362419128 + ], + "sentiment_counts": { + "NEGATIVE": 4, + "POSITIVE": 5 + }, + "sentiment_distribution": { + "NEGATIVE": 0.4444444444444444, + "POSITIVE": 0.5555555555555556 + }, + "sentiment_overall": [ + "POSITIVE", + 0.5555555555555556 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 0.6363636363636364, + "final_counts": { + "POSITIVE": 14, + "NEGATIVE": 8 + }, + "final_distribution": { + "POSITIVE": 0.6363636363636364, + "NEGATIVE": 0.36363636363636365 + } + } }, { "season_code": "202301", @@ -252615,7 +544163,7 @@ "15:30", "16:20", "RKZ 04 - Rosenkranz Hall 04", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -252634,7 +544182,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -252665,7 +544241,7 @@ "17:00", "17:50", "RKZ 04 - Rosenkranz Hall 04", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -252684,7 +544260,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -252715,7 +544319,7 @@ "15:30", "16:20", "RKZ 06 - Rosenkranz Hall 06", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -252734,7 +544338,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -252765,7 +544397,7 @@ "17:00", "17:50", "RKZ 06 - Rosenkranz Hall 06", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -252784,7 +544416,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -252815,7 +544475,7 @@ "17:00", "17:50", "WLH 004 - William L. Harkness Hall 004", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -252834,7 +544494,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -252865,7 +544553,7 @@ "19:00", "19:50", "WLH 004 - William L. Harkness Hall 004", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -252884,7 +544572,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -252915,7 +544631,7 @@ "13:30", "14:20", "RKZ 04 - Rosenkranz Hall 04", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -252934,7 +544650,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -252992,7 +544736,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -253023,7 +544795,7 @@ "16:00", "16:50", "WLH 012 - William L. Harkness Hall 012", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -253042,7 +544814,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -253079,7 +544879,7 @@ "11:35", "12:25", "LUCE 101 - Luce Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ], "Thursday": [ @@ -253087,7 +544887,7 @@ "11:35", "12:25", "LUCE 101 - Luce Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ] }, @@ -253104,10 +544904,369 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84691\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84691/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9893872737884521, + 0.9988794922828674, + 0.9979216456413269, + 0.9967233538627625, + 0.9989114999771118, + 0.9976440072059631, + 0.9988698363304138, + 0.9993656277656555, + 0.9987816214561462, + 0.9988586902618408, + 0.998869001865387, + 0.9989120960235596, + 0.9987167119979858, + 0.9978111386299133, + 0.9989373087882996, + 0.9988303780555725, + 0.9908520579338074, + 0.9986230134963989, + 0.9988730549812317, + 0.9989182949066162, + 0.9915308952331543, + 0.9988422989845276, + 0.9988172054290771, + 0.9988864064216614, + 0.9988318085670471, + 0.9987472295761108, + 0.9973989725112915, + 0.998715877532959, + 0.9988620281219482, + 0.9987635612487793, + 0.998715877532959, + 0.9987307190895081, + 0.9982635378837585, + 0.9982736110687256, + 0.9987924098968506, + 0.9989218711853027, + 0.9989060163497925, + 0.9988937973976135, + 0.9988710284233093, + 0.9965728521347046, + 0.9987241625785828, + 0.9979941844940186, + 0.9988278746604919, + 0.9988723397254944, + 0.9982097148895264, + 0.9984682202339172 + ], + "sentiment_counts": { + "POSITIVE": 43, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.9347826086956522, + "NEGATIVE": 0.06521739130434782 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9347826086956522 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.997438907623291, + 0.9987291693687439, + 0.9988899827003479, + 0.9974811673164368, + 0.9988395571708679, + 0.9989314675331116, + 0.9976440072059631, + 0.9989274144172668, + 0.9995090961456299, + 0.9989247918128967, + 0.9971931576728821, + 0.995936393737793, + 0.9982228875160217, + 0.998878538608551, + 0.9989008903503418, + 0.9987363219261169, + 0.9982871413230896, + 0.9988536834716797, + 0.9960781931877136, + 0.9984868764877319, + 0.9986898303031921, + 0.9988012313842773, + 0.9988333582878113, + 0.9989269375801086, + 0.998738706111908, + 0.998526930809021, + 0.9988319277763367, + 0.9942016005516052, + 0.9770654439926147, + 0.9989173412322998, + 0.9964864253997803, + 0.9988316893577576, + 0.9986503720283508, + 0.998779833316803, + 0.9952530860900879, + 0.9986189603805542, + 0.9984815716743469, + 0.9989047050476074, + 0.9988932013511658, + 0.9989343285560608, + 0.9988988637924194, + 0.9989268183708191, + 0.9986832737922668, + 0.9988756775856018, + 0.9995031356811523, + 0.9986268281936646 + ], + "sentiment_counts": { + "NEGATIVE": 13, + "POSITIVE": 33 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2826086956521739, + "POSITIVE": 0.717391304347826 + }, + "sentiment_overall": [ + "POSITIVE", + 0.717391304347826 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.996428906917572, + 0.9988309741020203, + 0.9984742999076843, + 0.9609653949737549, + 0.9994434714317322, + 0.9989223480224609, + 0.9985336065292358, + 0.9976440072059631, + 0.9989068508148193, + 0.9995132684707642, + 0.9989271759986877, + 0.9944434762001038, + 0.998830258846283, + 0.9988477230072021, + 0.9988707900047302, + 0.9988290667533875, + 0.9989234805107117, + 0.9987708926200867, + 0.9982798099517822, + 0.998862624168396, + 0.9988405108451843, + 0.9989138841629028, + 0.9968059062957764, + 0.9979230761528015, + 0.9989099502563477, + 0.998902440071106, + 0.997117280960083, + 0.9987810254096985, + 0.9988705515861511, + 0.9989198446273804, + 0.9890196919441223, + 0.9984124898910522, + 0.998925507068634, + 0.9990296363830566, + 0.9974004030227661, + 0.9959238767623901, + 0.9994964599609375, + 0.99888676404953, + 0.9994901418685913, + 0.997586727142334, + 0.9989023208618164, + 0.9989286065101624, + 0.9988930821418762, + 0.9988273978233337, + 0.9988884329795837, + 0.998818576335907, + 0.9988861680030823, + 0.9927614331245422, + 0.9989256262779236, + 0.9995100498199463, + 0.9988719820976257, + 0.9874460697174072, + 0.9980050921440125, + 0.9988769888877869 + ], + "sentiment_counts": { + "NEGATIVE": 11, + "POSITIVE": 43 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2037037037037037, + "POSITIVE": 0.7962962962962963 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7962962962962963 + ] + }, + "final_label": "POSITIVE", + "final_count": 119, + "final_proportion": 0.815068493150685, + "final_counts": { + "POSITIVE": 119, + "NEGATIVE": 27 + }, + "final_distribution": { + "POSITIVE": 0.815068493150685, + "NEGATIVE": 0.18493150684931506 + } + } }, { "season_code": "202301", @@ -253138,7 +545297,7 @@ "17:00", "17:50", "WLH 006 - William L. Harkness Hall 006", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -253157,7 +545316,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -253188,7 +545375,7 @@ "19:00", "19:50", "WLH 001 - William L. Harkness Hall 001", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -253207,7 +545394,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -253238,7 +545453,7 @@ "20:00", "20:50", "WLH 006 - William L. Harkness Hall 006", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -253257,7 +545472,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -253288,7 +545531,7 @@ "9:25", "10:15", "WTS A39 - Watson Center 60 Sachem Street A39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -253307,7 +545550,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -253338,7 +545609,7 @@ "10:30", "11:20", "WTS A68 - Watson Center 60 Sachem Street A68", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -253357,7 +545628,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -253388,7 +545687,7 @@ "15:30", "16:20", "RKZ 02 - Rosenkranz Hall 02", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -253407,7 +545706,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -253438,7 +545765,7 @@ "15:30", "16:20", "RKZ 06 - Rosenkranz Hall 06", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -253457,7 +545784,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -253488,7 +545843,7 @@ "16:30", "17:20", "RKZ 02 - Rosenkranz Hall 02", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -253507,7 +545862,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -253538,7 +545921,7 @@ "17:00", "17:50", "RKZ 06 - Rosenkranz Hall 06", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -253557,7 +545940,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -253588,7 +545999,7 @@ "17:00", "17:50", "WLH 209 - William L. Harkness Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -253607,7 +546018,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -253644,7 +546083,7 @@ "13:30", "15:20", "RKZ 02 - Rosenkranz Hall 02", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -253661,10 +546100,38 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84694\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84694/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -253702,7 +546169,7 @@ "9:25", "11:15", "HQ 129 - Humanities Quadrangle 129", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -253713,11 +546180,94 @@ "rp_attr": "", "classnotes": "", "final_exam": "HTBA", - "course_home_url": "https:\/\/yale.instructure.com\/courses\/87326", + "course_home_url": "https://yale.instructure.com/courses/87326", "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981356859207153, + 0.9989211559295654, + 0.998865008354187 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989315867424011, + 0.9989266991615295 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988976716995239, + 0.9984686970710754, + 0.9984412789344788, + 0.9988657236099243 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 9 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -253755,7 +546305,7 @@ "14:30", "15:20", "WLH 208 - William L. Harkness Hall 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -253763,7 +546313,7 @@ "14:30", "15:20", "WLH 208 - William L. Harkness Hall 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -253780,10 +546330,179 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84640\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84640/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989156723022461, + 0.9987366795539856, + 0.998829185962677, + 0.9988234639167786, + 0.9986976385116577, + 0.9989200830459595, + 0.9985608458518982, + 0.9987887740135193, + 0.9988617897033691, + 0.9989307522773743, + 0.9988924860954285, + 0.998915433883667, + 0.9988803267478943, + 0.9934032559394836, + 0.9988138675689697, + 0.9987335801124573, + 0.9988559484481812, + 0.9989222288131714 + ], + "sentiment_counts": { + "POSITIVE": 18, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988704323768616, + 0.9986967444419861, + 0.9978692531585693, + 0.9988905787467957, + 0.993796706199646, + 0.9978066086769104, + 0.998895525932312, + 0.9989168643951416, + 0.9988992214202881, + 0.9989299178123474, + 0.9988970756530762, + 0.9988738894462585, + 0.9984086155891418, + 0.9991722106933594, + 0.998875081539154 + ], + "sentiment_counts": { + "POSITIVE": 14, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9333333333333333, + "NEGATIVE": 0.06666666666666667 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9333333333333333 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988783001899719, + 0.9929854273796082, + 0.9988993406295776, + 0.998931348323822, + 0.9989151954650879, + 0.9994933605194092, + 0.9987579584121704, + 0.9988266825675964, + 0.9989239573478699, + 0.998934805393219, + 0.9988683462142944, + 0.9989179372787476, + 0.9989179372787476, + 0.9979561567306519, + 0.9988732933998108, + 0.9985570311546326, + 0.998706579208374, + 0.9989244341850281 + ], + "sentiment_counts": { + "POSITIVE": 15, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 47, + "final_proportion": 0.9215686274509803, + "final_counts": { + "POSITIVE": 47, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.9215686274509803, + "NEGATIVE": 0.0784313725490196 + } + } }, { "season_code": "202301", @@ -253821,7 +546540,7 @@ "13:30", "15:20", "RKZ 05 - Rosenkranz Hall 05", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -253835,10 +546554,111 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83778\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83778/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989193677902222, + 0.9988717436790466, + 0.9984539747238159, + 0.9989026784896851, + 0.9988055229187012 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9980112314224243, + 0.9988934397697449, + 0.9988580942153931, + 0.9986995458602905, + 0.9988992214202881, + 0.9986711740493774 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982820749282837, + 0.9875454306602478, + 0.9989274144172668, + 0.9985604882240295, + 0.9989252686500549, + 0.9987754225730896 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 0.9411764705882353, + "final_counts": { + "POSITIVE": 16, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9411764705882353, + "NEGATIVE": 0.058823529411764705 + } + } }, { "season_code": "202301", @@ -253878,7 +546698,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -253916,7 +546764,7 @@ "13:30", "15:20", "RKZ 05 - Rosenkranz Hall 05", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -253930,10 +546778,119 @@ "classnotes": "Please submit the following information with your request to enroll in this course:\n1. Name\n2. Major\n3. Year at Yale\n4. A brief statement (paragraph or less) on interest in this course", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84644\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84644/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988231062889099, + 0.9987173080444336, + 0.9989089965820312, + 0.9984062314033508, + 0.998872697353363, + 0.9985907673835754, + 0.9989305138587952 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988908171653748, + 0.998719334602356, + 0.9976693987846375, + 0.9939032196998596, + 0.9988182187080383, + 0.9987388253211975, + 0.9987238049507141 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987247586250305, + 0.998761773109436, + 0.9988330006599426, + 0.9827225208282471, + 0.9987637996673584, + 0.9933218359947205, + 0.9986885190010071 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.7142857142857143, + "NEGATIVE": 0.2857142857142857 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7142857142857143 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 0.8095238095238095, + "final_counts": { + "POSITIVE": 17, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.8095238095238095, + "NEGATIVE": 0.19047619047619047 + } + } }, { "season_code": "202301", @@ -253970,7 +546927,7 @@ "10:30", "11:20", "LUCE 101 - Luce Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ], "Wednesday": [ @@ -253978,7 +546935,7 @@ "10:30", "11:20", "LUCE 101 - Luce Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ] }, @@ -253997,10 +546954,255 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84653\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84653/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988170862197876, + 0.9988297820091248, + 0.9987530708312988, + 0.9988676309585571, + 0.9985193610191345, + 0.9988875985145569, + 0.9988705515861511, + 0.9926714897155762, + 0.9989269375801086, + 0.9957606196403503, + 0.9961017370223999, + 0.9989205598831177, + 0.9988251328468323, + 0.9988952875137329, + 0.9988524913787842, + 0.9994592070579529, + 0.998872697353363, + 0.9989197254180908, + 0.9988510608673096, + 0.9989211559295654, + 0.9987949132919312, + 0.9979673027992249, + 0.9988725781440735, + 0.9985653758049011, + 0.9988246560096741, + 0.9986016154289246, + 0.9988906979560852, + 0.9988043308258057, + 0.9987958669662476 + ], + "sentiment_counts": { + "POSITIVE": 28, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9655172413793104, + "NEGATIVE": 0.034482758620689655 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9655172413793104 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9970355033874512, + 0.9988846182823181, + 0.9756900072097778, + 0.9905542731285095, + 0.99782794713974, + 0.9986538887023926, + 0.9986253976821899, + 0.9982927441596985, + 0.9988744854927063, + 0.9985242486000061, + 0.9988441467285156, + 0.998887836933136, + 0.9988969564437866, + 0.992815375328064, + 0.9986224174499512, + 0.9987161159515381, + 0.9989383816719055, + 0.9989131689071655, + 0.9988774657249451, + 0.9988685846328735, + 0.998869001865387, + 0.9988862872123718, + 0.998897910118103, + 0.9952137470245361, + 0.9984815716743469, + 0.9994932413101196, + 0.9989247918128967 + ], + "sentiment_counts": { + "POSITIVE": 23, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.8518518518518519, + "NEGATIVE": 0.14814814814814814 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8518518518518519 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9962950348854065, + 0.9988915324211121, + 0.9989243149757385, + 0.9987996816635132, + 0.9988663196563721, + 0.9834801554679871, + 0.9980168342590332, + 0.9810450077056885, + 0.9989045858383179, + 0.9988189339637756, + 0.9988723397254944, + 0.9993191957473755, + 0.9988915324211121, + 0.9980168342590332, + 0.9971972703933716, + 0.998897910118103, + 0.998785674571991, + 0.9995094537734985, + 0.9980016350746155, + 0.998727023601532, + 0.9988024234771729, + 0.9989159107208252, + 0.9988559484481812, + 0.9966273903846741, + 0.9955959916114807, + 0.9987829327583313, + 0.9988790154457092, + 0.9989074468612671, + 0.9989327788352966, + 0.997117280960083, + 0.9975805282592773, + 0.9989074468612671, + 0.9988999366760254 + ], + "sentiment_counts": { + "POSITIVE": 28, + "NEGATIVE": 5 + }, + "sentiment_distribution": { + "POSITIVE": 0.8484848484848485, + "NEGATIVE": 0.15151515151515152 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8484848484848485 + ] + }, + "final_label": "POSITIVE", + "final_count": 79, + "final_proportion": 0.8876404494382022, + "final_counts": { + "POSITIVE": 79, + "NEGATIVE": 10 + }, + "final_distribution": { + "POSITIVE": 0.8876404494382022, + "NEGATIVE": 0.11235955056179775 + } + } }, { "season_code": "202301", @@ -254040,7 +547242,7 @@ "13:30", "15:20", "HQ 132 - Humanities Quadrangle 132", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -254049,7 +547251,7 @@ "So" ], "flags": [ - "YC EVST: Core Human\/Social Sci", + "YC EVST: Core Human/Social Sci", "YC GLHTH: Health & Societies", "YC GLHTH: Polit Econ & Govern", "YC PLSC: American Govt" @@ -254059,10 +547261,145 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84066\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84066/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988701939582825, + 0.9988918900489807, + 0.9921477437019348, + 0.9988276362419128, + 0.9987004995346069, + 0.9988986253738403, + 0.9989198446273804, + 0.9988481998443604, + 0.9988188147544861, + 0.9987941980361938, + 0.9987064599990845 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9823588728904724, + 0.9988149404525757, + 0.9989333748817444, + 0.9989256262779236, + 0.9989344477653503, + 0.9989063739776611, + 0.9989162683486938, + 0.9983733892440796, + 0.9973631501197815, + 0.9989039897918701, + 0.9989022016525269 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 8 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2727272727272727, + "POSITIVE": 0.7272727272727273 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7272727272727273 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998782217502594, + 0.9987050294876099, + 0.9988222718238831, + 0.9948569536209106, + 0.9984742999076843, + 0.9984195232391357, + 0.9988653659820557, + 0.9989256262779236, + 0.9986452460289001, + 0.9988420605659485, + 0.9984684586524963, + 0.9988973140716553 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9166666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 30, + "final_proportion": 0.8823529411764706, + "final_counts": { + "POSITIVE": 30, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.8823529411764706, + "NEGATIVE": 0.11764705882352941 + } + } }, { "season_code": "202301", @@ -254099,7 +547436,7 @@ "15:30", "17:20", "RKZ 102 - Rosenkranz Hall 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -254117,10 +547454,119 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84660\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84660/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998736560344696, + 0.9986883997917175, + 0.9987033605575562, + 0.9989134073257446, + 0.9989386200904846, + 0.9989018440246582 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9983831644058228, + 0.9989200830459595, + 0.9988505840301514, + 0.9987176656723022, + 0.9963091015815735, + 0.9989174604415894, + 0.9990009665489197 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994581341743469, + 0.9986347556114197, + 0.997117280960083, + 0.9892706871032715, + 0.9995089769363403, + 0.9988834261894226, + 0.9988853335380554, + 0.9983704686164856 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 6 + }, + "sentiment_distribution": { + "NEGATIVE": 0.25, + "POSITIVE": 0.75 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 0.8571428571428571, + "final_counts": { + "POSITIVE": 18, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + } + } }, { "season_code": "202301", @@ -254157,7 +547603,7 @@ "11:35", "12:50", "WLH 201 - William L. Harkness Hall 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -254165,7 +547611,7 @@ "11:35", "12:50", "WLH 201 - William L. Harkness Hall 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -254181,10 +547627,249 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85740\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/85740/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988697171211243, + 0.9988971948623657, + 0.9988644123077393, + 0.9988821148872375, + 0.9987394213676453, + 0.9988654851913452, + 0.9989043474197388, + 0.9987748265266418, + 0.9987502098083496, + 0.9988825917243958, + 0.9988906979560852, + 0.9987847208976746, + 0.9988816380500793, + 0.9987517595291138, + 0.998824417591095, + 0.9987994432449341, + 0.9987589120864868, + 0.9988798499107361, + 0.9988504648208618, + 0.998814582824707, + 0.998847484588623, + 0.9989239573478699, + 0.9988837838172913, + 0.9988133907318115, + 0.9917409420013428, + 0.9988142251968384, + 0.9271343946456909 + ], + "sentiment_counts": { + "POSITIVE": 26, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9629629629629629, + "NEGATIVE": 0.037037037037037035 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9629629629629629 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982391595840454, + 0.998916745185852, + 0.9989233613014221, + 0.993423581123352, + 0.9987912774085999, + 0.9984965324401855, + 0.9987919926643372, + 0.9983152151107788, + 0.9987173080444336, + 0.998511016368866, + 0.998918890953064, + 0.99891197681427, + 0.9988003969192505, + 0.9971266388893127, + 0.998817503452301, + 0.9978803396224976, + 0.9970308542251587, + 0.9988704323768616, + 0.9981138706207275, + 0.9981826543807983, + 0.9989259839057922, + 0.9827492237091064, + 0.9988892674446106, + 0.9988698363304138, + 0.9987146854400635, + 0.9946733117103577, + 0.9955937266349792, + 0.9988676309585571, + 0.9989043474197388 + ], + "sentiment_counts": { + "POSITIVE": 25, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.8620689655172413, + "NEGATIVE": 0.13793103448275862 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8620689655172413 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988735318183899, + 0.9988815188407898, + 0.9976277947425842, + 0.9986991882324219, + 0.9941912293434143, + 0.9988991022109985, + 0.9968177080154419, + 0.9974592328071594, + 0.9989333748817444, + 0.9988922476768494, + 0.9957693815231323, + 0.9988088607788086, + 0.9988608360290527, + 0.9988774657249451, + 0.9979158043861389, + 0.9973691701889038, + 0.9988805651664734, + 0.9987913966178894, + 0.9989184141159058, + 0.9799266457557678, + 0.9862014651298523, + 0.9986599683761597, + 0.9987437129020691, + 0.9988672733306885, + 0.9984167814254761, + 0.9988887906074524, + 0.9987128973007202, + 0.9995050430297852, + 0.9989243149757385, + 0.9989401698112488 + ], + "sentiment_counts": { + "POSITIVE": 28, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.9333333333333333, + "NEGATIVE": 0.06666666666666667 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9333333333333333 + ] + }, + "final_label": "POSITIVE", + "final_count": 79, + "final_proportion": 0.9186046511627907, + "final_counts": { + "POSITIVE": 79, + "NEGATIVE": 7 + }, + "final_distribution": { + "POSITIVE": 0.9186046511627907, + "NEGATIVE": 0.08139534883720931 + } + } }, { "season_code": "202301", @@ -254225,7 +547910,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -254262,7 +547975,7 @@ "15:30", "17:20", "RKZ 08 - Rosenkranz Hall 08", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -254278,10 +547991,129 @@ "classnotes": "This course requires instructor permission. Please submit 50 words on why you want to take the course and a brief list of where you get your political news on a typical day. ", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87191\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87191/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984301924705505, + 0.9984509944915771, + 0.9987403750419617, + 0.9988007545471191, + 0.9985533356666565, + 0.9985414743423462, + 0.998802900314331, + 0.9988414645195007 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989023208618164, + 0.9987743496894836, + 0.9989114999771118, + 0.9988150596618652, + 0.9995044469833374, + 0.9987732768058777, + 0.9988104104995728, + 0.9989375472068787, + 0.998867392539978 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989352822303772, + 0.9987758994102478, + 0.9988828301429749, + 0.998650848865509, + 0.9986335635185242, + 0.9982553124427795, + 0.997117280960083, + 0.9978534579277039, + 0.9989104270935059 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 25, + "final_proportion": 0.9615384615384616, + "final_counts": { + "POSITIVE": 25, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9615384615384616, + "NEGATIVE": 0.038461538461538464 + } + } }, { "season_code": "202301", @@ -254318,7 +548150,7 @@ "13:30", "15:20", "RKZ 08 - Rosenkranz Hall 08", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -254334,10 +548166,97 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85931\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85931/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987836480140686, + 0.9989311099052429 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989109039306641, + 0.9989168643951416, + 0.9987221360206604 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987934827804565, + 0.9987286925315857, + 0.9988441467285156, + 0.9974592328071594, + 0.9989173412322998, + 0.9989321827888489 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 11 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -254374,7 +548293,7 @@ "15:30", "17:20", "RKZ 02 - Rosenkranz Hall 02", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -254388,10 +548307,127 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86236\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/86236/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988479614257812, + 0.9988841414451599, + 0.9988870024681091, + 0.9987987279891968, + 0.9982832670211792, + 0.998855710029602, + 0.9988945126533508, + 0.9988493919372559, + 0.9987045526504517 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989249110221863, + 0.9988890290260315, + 0.9988982677459717, + 0.9989333748817444, + 0.9989297986030579, + 0.9988853335380554, + 0.9989280104637146, + 0.9989151954650879 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989137649536133, + 0.9988975524902344, + 0.9988740086555481, + 0.9989238381385803, + 0.9989245533943176, + 0.9989100694656372, + 0.9988466501235962, + 0.998894989490509, + 0.9988849759101868 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 26, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 26 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -254432,7 +548468,7 @@ "15:30", "17:20", "RKZ 102 - Rosenkranz Hall 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -254448,10 +548484,83 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84667\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84667/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9919912219047546 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.99886155128479 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9943179488182068, + 0.9956592917442322 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 4, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 4 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -254489,7 +548598,7 @@ "9:25", "11:15", "LC 204 - Linsly-Chittenden Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -254504,13 +548613,114 @@ ], "regnotes": "", "rp_attr": "", - "classnotes": "See the English department website for a list of creative writing and journalism courses that require the submission of an application by noon on November 4. https:\/\/english.yale.edu\/undergraduate\/courses\/creative-writing-journalism-courses", + "classnotes": "See the English department website for a list of creative writing and journalism courses that require the submission of an application by noon on November 4. https://english.yale.edu/undergraduate/courses/creative-writing-journalism-courses", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84024\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84024/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989184141159058, + 0.9985151886940002, + 0.9943801760673523, + 0.998703122138977, + 0.9989091157913208 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989393353462219, + 0.9987137317657471, + 0.9988870024681091, + 0.9989257454872131, + 0.9994614720344543, + 0.9989025592803955 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989345669746399, + 0.9988428354263306, + 0.9989396929740906, + 0.9989334940910339, + 0.9987900853157043, + 0.9971877932548523 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 0.9411764705882353, + "final_counts": { + "POSITIVE": 16, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9411764705882353, + "NEGATIVE": 0.058823529411764705 + } + } }, { "season_code": "202301", @@ -254548,7 +548758,7 @@ "9:25", "11:15", "LC 319 - Linsly-Chittenden Hall 319", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -254563,13 +548773,130 @@ ], "regnotes": "", "rp_attr": "", - "classnotes": "Course enrollment or preregistration: Enrollment is capped at eighteen during preregistration. The instructor will review enrollment numbers during add\/drop in January and may admit additional students then. Admission is by permission of the instructor. Successfully navigating the preregistration process is a major qualification for admission. To preregister, follow the instructions provided by the registrar or those given by Ms. Farnham in the EP&E program office.\nEP&E and PLSC majors receive preferential consideration but Professor Fotos also reserves spots for non-majors or for students who were on leave or study abroad or otherwise unable to participate in fall registration. If you have questions about the seminar, feel free to email Professor Fotos directly.\n", + "classnotes": "Course enrollment or preregistration: Enrollment is capped at eighteen during preregistration. The instructor will review enrollment numbers during add/drop in January and may admit additional students then. Admission is by permission of the instructor. Successfully navigating the preregistration process is a major qualification for admission. To preregister, follow the instructions provided by the registrar or those given by Ms. Farnham in the EP&E program office.\nEP&E and PLSC majors receive preferential consideration but Professor Fotos also reserves spots for non-majors or for students who were on leave or study abroad or otherwise unable to participate in fall registration. If you have questions about the seminar, feel free to email Professor Fotos directly.\n", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84025\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84025/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989081621170044, + 0.9995124340057373, + 0.9988540410995483, + 0.9988521337509155, + 0.9989105463027954, + 0.9989159107208252, + 0.9994943141937256, + 0.9995095729827881 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.625, + "NEGATIVE": 0.375 + }, + "sentiment_overall": [ + "POSITIVE", + 0.625 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988415837287903, + 0.9994617104530334, + 0.9995120763778687, + 0.9989134073257446, + 0.9988969564437866, + 0.9982958436012268, + 0.9987983703613281, + 0.9935365319252014, + 0.999504566192627 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.5555555555555556, + "NEGATIVE": 0.4444444444444444 + }, + "sentiment_overall": [ + "POSITIVE", + 0.5555555555555556 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988633394241333, + 0.9983184337615967, + 0.9993867874145508, + 0.9988234639167786, + 0.9987782835960388, + 0.9989018440246582, + 0.999508261680603, + 0.9912145137786865 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.625, + "NEGATIVE": 0.375 + }, + "sentiment_overall": [ + "POSITIVE", + 0.625 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 0.6, + "final_counts": { + "POSITIVE": 15, + "NEGATIVE": 10 + }, + "final_distribution": { + "POSITIVE": 0.6, + "NEGATIVE": 0.4 + } + } }, { "season_code": "202301", @@ -254606,7 +548933,7 @@ "9:00", "10:15", "DAVIES AUD - Davies Auditorium, Becton Ctr AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ], "Wednesday": [ @@ -254614,7 +548941,7 @@ "9:00", "10:15", "DAVIES AUD - Davies Auditorium, Becton Ctr AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ] }, @@ -254631,10 +548958,561 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85191\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/85191/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998879611492157, + 0.9986242055892944, + 0.9989122152328491, + 0.998791515827179, + 0.998895525932312, + 0.9978243112564087, + 0.9986482262611389, + 0.9980460405349731, + 0.9988299012184143, + 0.9986605644226074, + 0.998884379863739, + 0.998927891254425, + 0.9985889792442322, + 0.9987819790840149, + 0.9986445307731628, + 0.9964625239372253, + 0.9988448619842529, + 0.9987710118293762, + 0.9989006519317627, + 0.9976053237915039, + 0.9989205598831177, + 0.9986407160758972, + 0.9987742304801941, + 0.998078465461731, + 0.9984790682792664, + 0.9984779953956604, + 0.9989132881164551, + 0.9985266923904419, + 0.9988369345664978, + 0.9979081153869629, + 0.998762845993042, + 0.9876236915588379, + 0.9987131357192993, + 0.9987586736679077, + 0.9988044500350952, + 0.9987561702728271, + 0.9988442659378052, + 0.9981210827827454, + 0.998878538608551, + 0.9988999366760254, + 0.9987561702728271, + 0.998848557472229, + 0.9989110231399536, + 0.9968931674957275, + 0.9988922476768494, + 0.9980377554893494, + 0.9989023208618164, + 0.9986407160758972, + 0.9987961053848267, + 0.9978957176208496, + 0.998181939125061, + 0.9986100196838379, + 0.9989294409751892, + 0.9988371729850769, + 0.9988203644752502, + 0.99534010887146, + 0.998724639415741, + 0.9989058971405029, + 0.9987626075744629, + 0.998823344707489, + 0.998690664768219, + 0.9988610744476318, + 0.9982401132583618, + 0.9988124370574951, + 0.9987653493881226, + 0.998884379863739, + 0.9988658428192139, + 0.9988594055175781, + 0.9876410365104675, + 0.998627781867981, + 0.9989132881164551, + 0.9988172054290771, + 0.9987951517105103, + 0.9986610412597656, + 0.9987678527832031, + 0.9988262057304382, + 0.9988695979118347 + ], + "sentiment_counts": { + "POSITIVE": 77, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9979650974273682, + 0.9989269375801086, + 0.998883068561554, + 0.998918890953064, + 0.9939868450164795, + 0.9989308714866638, + 0.8922443389892578, + 0.9989303946495056, + 0.998910665512085, + 0.9988324046134949, + 0.9985559582710266, + 0.9986838698387146, + 0.9987444877624512, + 0.9987925291061401, + 0.9988210797309875, + 0.9989286065101624, + 0.998676598072052, + 0.998916506767273, + 0.9940521121025085, + 0.9988983869552612, + 0.9988609552383423, + 0.9986023306846619, + 0.9961031675338745, + 0.9981985688209534, + 0.9979690909385681, + 0.9989092350006104, + 0.9988964796066284, + 0.9971410036087036, + 0.9988865256309509, + 0.9987770915031433, + 0.9988974332809448, + 0.9988479614257812, + 0.9989200830459595, + 0.996971607208252, + 0.9966848492622375, + 0.9975548386573792, + 0.998630702495575, + 0.9988740086555481, + 0.9985525012016296, + 0.9989016056060791, + 0.9988640546798706, + 0.9988922476768494, + 0.9989266991615295, + 0.9989263415336609, + 0.9989179372787476, + 0.9989306330680847, + 0.9986528158187866, + 0.9988640546798706, + 0.9988899827003479, + 0.9897768497467041, + 0.9987353682518005, + 0.9989383816719055, + 0.9989141225814819, + 0.9989213943481445, + 0.998863935470581, + 0.9989354014396667, + 0.998924195766449, + 0.9980416297912598, + 0.9985883831977844, + 0.9988879561424255, + 0.9988306164741516, + 0.9988749623298645, + 0.9988970756530762, + 0.9962557554244995, + 0.9988773465156555, + 0.998807430267334, + 0.9984207153320312, + 0.9988821148872375, + 0.9989230036735535, + 0.9989261031150818, + 0.9989001750946045, + 0.9964743256568909, + 0.998887836933136 + ], + "sentiment_counts": { + "POSITIVE": 70, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.958904109589041, + "NEGATIVE": 0.0410958904109589 + }, + "sentiment_overall": [ + "POSITIVE", + 0.958904109589041 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9978451728820801, + 0.9984581470489502, + 0.9988780617713928, + 0.9988762736320496, + 0.9988559484481812, + 0.9989196062088013, + 0.997117280960083, + 0.9986414313316345, + 0.9987810254096985, + 0.9977588653564453, + 0.99883633852005, + 0.9989307522773743, + 0.9987899661064148, + 0.9988906979560852, + 0.9988574981689453, + 0.9988375306129456, + 0.9987290501594543, + 0.998838484287262, + 0.9987786412239075, + 0.9987245202064514, + 0.9988792538642883, + 0.9987834095954895, + 0.998873770236969, + 0.9977954626083374, + 0.9986365437507629, + 0.9989249110221863, + 0.9988168478012085, + 0.9987252354621887, + 0.9988157749176025, + 0.997117280960083, + 0.9988370537757874, + 0.9989268183708191, + 0.9989388585090637, + 0.998918890953064, + 0.9988555908203125, + 0.9989234805107117, + 0.9987425208091736, + 0.9988757967948914, + 0.9967683553695679, + 0.9977311491966248, + 0.9987137317657471, + 0.9988967180252075, + 0.9988864064216614, + 0.9989211559295654, + 0.9989150762557983, + 0.9980168342590332, + 0.9983988404273987, + 0.9988934397697449, + 0.9988528490066528, + 0.9989219903945923, + 0.9989163875579834, + 0.9986286163330078, + 0.9981096982955933, + 0.9989092350006104, + 0.9985551238059998, + 0.9989112615585327, + 0.9989150762557983, + 0.997117280960083, + 0.9989050626754761, + 0.9988771080970764, + 0.9989261031150818, + 0.9987925291061401, + 0.9988847374916077, + 0.9989093542098999, + 0.9981531500816345, + 0.9989317059516907, + 0.9989042282104492, + 0.9989282488822937, + 0.9988439083099365, + 0.9980168342590332, + 0.9988048076629639, + 0.997117280960083, + 0.9982989430427551, + 0.9989020824432373, + 0.9987634420394897, + 0.9988778233528137, + 0.9988592863082886, + 0.9984392523765564, + 0.9989210367202759, + 0.9989277720451355, + 0.9989084005355835, + 0.9989354014396667, + 0.9988927245140076, + 0.9963807463645935, + 0.9988658428192139, + 0.9988603591918945, + 0.9989318251609802, + 0.9988922476768494, + 0.9976826906204224, + 0.9988716244697571, + 0.9988852143287659, + 0.998161256313324 + ], + "sentiment_counts": { + "POSITIVE": 91, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9891304347826086, + "NEGATIVE": 0.010869565217391304 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9891304347826086 + ] + }, + "final_label": "POSITIVE", + "final_count": 238, + "final_proportion": 0.9834710743801653, + "final_counts": { + "POSITIVE": 238, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.9834710743801653, + "NEGATIVE": 0.01652892561983471 + } + } }, { "season_code": "202301", @@ -254665,7 +549543,7 @@ "15:30", "16:20", "RKZ 06 - Rosenkranz Hall 06", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -254682,7 +549560,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -254713,7 +549619,7 @@ "16:30", "17:20", "RKZ 02 - Rosenkranz Hall 02", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -254730,7 +549636,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -254761,7 +549695,7 @@ "19:00", "19:50", "HQ 113 - Humanities Quadrangle 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -254778,7 +549712,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -254809,7 +549771,7 @@ "20:00", "20:50", "HQ 113 - Humanities Quadrangle 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -254826,7 +549788,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -254857,7 +549847,7 @@ "10:30", "11:20", "DOW 215 - Dow Hall 215", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ] }, @@ -254874,7 +549864,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -254905,7 +549923,7 @@ "10:30", "11:20", "HQ 401 - Humanities Quadrangle 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -254922,7 +549940,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -254953,7 +549999,7 @@ "10:30", "11:20", "LC 211 - Linsly-Chittenden Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -254970,7 +550016,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -255001,7 +550075,7 @@ "11:35", "12:25", "LC 213 - Linsly-Chittenden Hall 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -255018,7 +550092,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -255049,7 +550151,7 @@ "19:00", "19:50", "WLH 209 - William L. Harkness Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -255066,7 +550168,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -255097,7 +550227,7 @@ "20:00", "20:50", "WLH 209 - William L. Harkness Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -255114,7 +550244,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -255145,7 +550303,7 @@ "19:00", "19:50", "WLH 209 - William L. Harkness Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -255162,7 +550320,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -255193,7 +550379,7 @@ "20:00", "20:50", "WLH 210 - William L. Harkness Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -255210,7 +550396,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -255241,7 +550455,7 @@ "13:30", "14:20", "RKZ 08 - Rosenkranz Hall 08", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -255258,7 +550472,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -255289,7 +550531,7 @@ "14:30", "15:20", "RKZ 08 - Rosenkranz Hall 08", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -255306,7 +550548,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -255337,7 +550607,7 @@ "14:30", "15:20", "WLH 211 - William L. Harkness Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -255354,7 +550624,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -255385,7 +550683,7 @@ "14:30", "15:20", "WLH 204 - William L. Harkness Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -255402,7 +550700,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -255441,7 +550767,7 @@ "13:30", "14:20", "OML 202 - Osborn Memorial Laboratories 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/559958" + "https://map.yale.edu/?id=1910#!m/559958" ] ], "Wednesday": [ @@ -255449,7 +550775,7 @@ "13:30", "14:20", "OML 202 - Osborn Memorial Laboratories 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/559958" + "https://map.yale.edu/?id=1910#!m/559958" ] ] }, @@ -255466,10 +550792,275 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84670\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84670/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982264637947083, + 0.9985517859458923, + 0.9993465542793274, + 0.9975343942642212, + 0.9988056421279907, + 0.998863935470581, + 0.9976440072059631, + 0.9988914132118225, + 0.9974128603935242, + 0.998838484287262, + 0.998860239982605, + 0.9409608840942383, + 0.9987435936927795, + 0.9988237023353577, + 0.998591959476471, + 0.9988712668418884, + 0.9988905787467957, + 0.998802661895752, + 0.9988399147987366, + 0.9968575239181519, + 0.9988548755645752, + 0.9988563060760498, + 0.9989118576049805, + 0.9988085031509399, + 0.9988617897033691, + 0.9986061453819275, + 0.9987288117408752, + 0.9988276362419128, + 0.9978190660476685, + 0.9989109039306641 + ], + "sentiment_counts": { + "POSITIVE": 28, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.9333333333333333, + "NEGATIVE": 0.06666666666666667 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9333333333333333 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.5999741554260254, + 0.9986794590950012, + 0.9984666109085083, + 0.9785497784614563, + 0.9988765120506287, + 0.9925668239593506, + 0.9976440072059631, + 0.9985331296920776, + 0.9962865114212036, + 0.9994906187057495, + 0.9980740547180176, + 0.9988952279090881, + 0.9995101690292358, + 0.9994722008705139, + 0.9988584518432617, + 0.998932421207428, + 0.9989016056060791, + 0.998593270778656, + 0.9974863529205322, + 0.9994951486587524, + 0.9978663325309753, + 0.998913049697876, + 0.998992383480072, + 0.9985253214836121, + 0.9988422989845276, + 0.9988816380500793, + 0.9987220168113708, + 0.9988982677459717, + 0.996577799320221, + 0.9988672733306885, + 0.9983401298522949, + 0.9988977909088135 + ], + "sentiment_counts": { + "NEGATIVE": 13, + "POSITIVE": 19 + }, + "sentiment_distribution": { + "NEGATIVE": 0.40625, + "POSITIVE": 0.59375 + }, + "sentiment_overall": [ + "POSITIVE", + 0.59375 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9994028806686401, + 0.9987646341323853, + 0.9970054030418396, + 0.9980652928352356, + 0.9987955093383789, + 0.9976440072059631, + 0.997117280960083, + 0.9989199638366699, + 0.998845100402832, + 0.998903751373291, + 0.9989113807678223, + 0.9995028972625732, + 0.9968119263648987, + 0.9983124732971191, + 0.9919800758361816, + 0.9994557499885559, + 0.997620165348053, + 0.9980016350746155, + 0.9988995790481567, + 0.9987837672233582, + 0.9994828701019287, + 0.9994860887527466, + 0.999517560005188, + 0.9989118576049805, + 0.9957135915756226, + 0.9989168643951416, + 0.9988975524902344, + 0.9989035129547119, + 0.9849973917007446, + 0.9975152015686035, + 0.998855710029602, + 0.9988061189651489, + 0.9993597865104675, + 0.9984826445579529, + 0.9988068342208862, + 0.9988791346549988, + 0.9904679656028748 + ], + "sentiment_counts": { + "NEGATIVE": 13, + "POSITIVE": 24 + }, + "sentiment_distribution": { + "NEGATIVE": 0.35135135135135137, + "POSITIVE": 0.6486486486486487 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6486486486486487 + ] + }, + "final_label": "POSITIVE", + "final_count": 71, + "final_proportion": 0.7171717171717171, + "final_counts": { + "POSITIVE": 71, + "NEGATIVE": 28 + }, + "final_distribution": { + "POSITIVE": 0.7171717171717171, + "NEGATIVE": 0.2828282828282828 + } + } }, { "season_code": "202301", @@ -255502,7 +551093,7 @@ "9:25", "10:15", "RKZ 102 - Rosenkranz Hall 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -255519,7 +551110,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -255552,7 +551171,7 @@ "10:30", "11:20", "RKZ 102 - Rosenkranz Hall 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -255569,7 +551188,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -255602,7 +551249,7 @@ "14:30", "15:20", "WLH 011 - William L. Harkness Hall 011", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -255619,7 +551266,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -255652,7 +551327,7 @@ "17:00", "17:50", "WLH 013 - William L. Harkness Hall 013", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -255669,7 +551344,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -255702,7 +551405,7 @@ "9:25", "10:15", "RKZ 05 - Rosenkranz Hall 05", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -255719,7 +551422,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -255752,7 +551483,7 @@ "10:30", "11:20", "RKZ 05 - Rosenkranz Hall 05", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -255769,7 +551500,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -255802,7 +551561,7 @@ "13:30", "14:20", "RKZ 02 - Rosenkranz Hall 02", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -255819,7 +551578,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -255852,7 +551639,7 @@ "14:30", "15:20", "RKZ 02 - Rosenkranz Hall 02", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -255869,7 +551656,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -255902,7 +551717,7 @@ "14:30", "15:20", "LC 103 - Linsly-Chittenden Hall 103", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -255919,7 +551734,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -255952,7 +551795,7 @@ "16:00", "16:50", "RKZ 05 - Rosenkranz Hall 05", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -255969,7 +551812,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -256002,7 +551873,7 @@ "19:00", "19:50", "WLH 009 - William L. Harkness Hall 009", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -256019,7 +551890,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -256057,7 +551956,7 @@ "13:30", "15:20", "RKZ 202 - Rosenkranz Hall 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -256071,10 +551970,101 @@ "classnotes": "Preference will be given to graduate students and political science majors writing senior essays. Please provide: name, year, department, relevant prior coursework, and a brief statement of why you want to be in course, including whether you plan to write a senior essay in it.", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84674\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84674/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9972813129425049, + 0.9988131523132324, + 0.9989023208618164, + 0.998915433883667 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986225366592407, + 0.9988698363304138, + 0.998932421207428, + 0.9967284202575684 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986448884010315, + 0.9979658126831055, + 0.9989180564880371, + 0.9985026121139526, + 0.9988203644752502 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 13 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -256117,7 +552107,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -256158,7 +552176,7 @@ "13:30", "15:20", "WLH 006 - William L. Harkness Hall 006", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -256176,10 +552194,113 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85961\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85961/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984681010246277, + 0.9989023208618164, + 0.9987999200820923, + 0.9988932013511658, + 0.9989064931869507, + 0.9989149570465088, + 0.998826801776886 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989259839057922, + 0.9979013204574585, + 0.9987432360649109, + 0.9989210367202759, + 0.9988973140716553, + 0.9988835453987122 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9971141815185547, + 0.9985865354537964, + 0.9988549947738647, + 0.9988499879837036, + 0.9986931681632996, + 0.9988263249397278 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 19 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -256220,7 +552341,7 @@ "15:30", "17:20", "LC 205 - Linsly-Chittenden Hall 205", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -256237,10 +552358,85 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84595\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84595/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987013339996338 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9972383975982666 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988670349121094, + 0.9995020627975464 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "final_label": "POSITIVE", + "final_count": 3, + "final_proportion": 0.75, + "final_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + } + } }, { "season_code": "202301", @@ -256277,7 +552473,7 @@ "11:35", "12:50", "WLH 117 - William L. Harkness Hall 117", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -256285,7 +552481,7 @@ "11:35", "12:50", "WLH 117 - William L. Harkness Hall 117", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -256301,10 +552497,123 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86237\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/86237/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988995790481567, + 0.9988287091255188, + 0.9929036498069763, + 0.998619556427002, + 0.9934872388839722, + 0.9988672733306885, + 0.9953027963638306, + 0.998807430267334 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9987671375274658, + 0.998897910118103, + 0.9994118213653564, + 0.9988211989402771, + 0.9988721013069153, + 0.9994997978210449 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989233613014221, + 0.9977066516876221, + 0.9981291890144348, + 0.9988767504692078, + 0.9992913007736206, + 0.9989268183708191, + 0.998786985874176, + 0.9981942772865295, + 0.9983425140380859 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 0.7391304347826086, + "final_counts": { + "POSITIVE": 17, + "NEGATIVE": 6 + }, + "final_distribution": { + "POSITIVE": 0.7391304347826086, + "NEGATIVE": 0.2608695652173913 + } + } }, { "season_code": "202301", @@ -256343,7 +552652,7 @@ "16:00", "17:15", "WLH 113 - William L. Harkness Hall 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -256351,7 +552660,7 @@ "16:00", "17:15", "WLH 113 - William L. Harkness Hall 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -256368,10 +552677,123 @@ "classnotes": "", "final_exam": "Wednesday, May 10, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86014\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86014/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989157915115356, + 0.9983547329902649, + 0.9988113641738892, + 0.9987735152244568, + 0.9988489151000977, + 0.998671293258667, + 0.9988933205604553 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989352822303772, + 0.9988201260566711, + 0.9988436698913574, + 0.9988470077514648, + 0.9989075660705566, + 0.9988760352134705, + 0.9988828301429749, + 0.9989232420921326 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989357590675354, + 0.9976447224617004, + 0.9988884329795837, + 0.9831075668334961, + 0.9988651275634766, + 0.9988718628883362, + 0.9985583424568176, + 0.9989359974861145 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "final_label": "POSITIVE", + "final_count": 22, + "final_proportion": 0.9565217391304348, + "final_counts": { + "POSITIVE": 22, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9565217391304348, + "NEGATIVE": 0.043478260869565216 + } + } }, { "season_code": "202301", @@ -256404,7 +552826,7 @@ "13:30", "14:20", "WLH 203 - William L. Harkness Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -256422,7 +552844,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -256455,7 +552905,7 @@ "14:30", "15:20", "WLH 013 - William L. Harkness Hall 013", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -256473,7 +552923,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -256512,7 +552990,7 @@ "16:00", "17:15", "WLH 114 - William L. Harkness Hall 114", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -256520,7 +552998,7 @@ "16:00", "17:15", "WLH 114 - William L. Harkness Hall 114", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -256536,10 +553014,143 @@ "classnotes": "", "final_exam": "Thursday, May 4, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84867\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84867/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987815022468567, + 0.998894989490509, + 0.9988275170326233, + 0.9988464117050171, + 0.9989252686500549, + 0.9989128112792969, + 0.9989368319511414, + 0.998456597328186, + 0.9988987445831299, + 0.9989182949066162 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989011287689209, + 0.9976363182067871, + 0.9989342093467712, + 0.9989225268363953, + 0.9822700619697571, + 0.998871386051178, + 0.9988910555839539, + 0.9988943934440613, + 0.998921275138855, + 0.9972112774848938, + 0.9988940358161926, + 0.9989288449287415 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985517859458923, + 0.9988458156585693, + 0.9989181756973267, + 0.9989210367202759, + 0.998481810092926, + 0.998938262462616, + 0.9979693293571472, + 0.9988540410995483, + 0.9994710087776184, + 0.9989180564880371, + 0.9989054203033447 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9090909090909091 + ] + }, + "final_label": "POSITIVE", + "final_count": 32, + "final_proportion": 0.9696969696969697, + "final_counts": { + "POSITIVE": 32, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9696969696969697, + "NEGATIVE": 0.030303030303030304 + } + } }, { "season_code": "202301", @@ -256572,7 +553183,7 @@ "16:00", "16:50", "WLH 210 - William L. Harkness Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -256591,7 +553202,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -256624,7 +553263,7 @@ "17:00", "17:50", "WLH 001 - William L. Harkness Hall 001", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -256643,7 +553282,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -256703,7 +553370,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -256763,7 +553458,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -256823,7 +553546,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -256883,7 +553634,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -256921,7 +553700,7 @@ "9:25", "11:15", "HQ C64 - Humanities Quadrangle C64", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -256938,10 +553717,89 @@ "classnotes": "This course requires instructor permission. Please note any previous courses in political theory, philosophy or intellectual history you have taken and your graduation year. \n\n", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85962\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85962/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989380240440369, + 0.9989160299301147 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988686442375183, + 0.9987951517105103 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989074468612671, + 0.9786601662635803 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "final_label": "POSITIVE", + "final_count": 5, + "final_proportion": 0.8333333333333334, + "final_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + } + } }, { "season_code": "202301", @@ -256979,7 +553837,7 @@ "13:30", "15:20", "RKZ 102 - Rosenkranz Hall 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -256994,10 +553852,109 @@ "classnotes": "This course requires instructor permission. Please list any relevant course work and interest in taking this class.", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84676\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84676/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989325404167175, + 0.9986944794654846, + 0.998902440071106, + 0.9988767504692078 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988976716995239, + 0.9969141483306885, + 0.99888676404953, + 0.9971241354942322, + 0.9989297986030579, + 0.9961296319961548 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998887836933136, + 0.9993135929107666, + 0.9989038705825806, + 0.9988352656364441, + 0.9988105297088623, + 0.9976664781570435 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 0.875, + "final_counts": { + "POSITIVE": 14, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + } + } }, { "season_code": "202301", @@ -257035,7 +553992,7 @@ "15:30", "17:20", "HLH31 108 - 31 Hillhouse Avenue 108", - "https:\/\/map.yale.edu\/?id=1910#!m\/559990" + "https://map.yale.edu/?id=1910#!m/559990" ] ] }, @@ -257051,10 +554008,97 @@ "classnotes": "Preregistration for this course is for EPE and PLSC majors only and the form can be found on epe.yale.edu. In one paragraph, please explain your interest and make sure to include your class and major.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84030\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84030/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989078044891357, + 0.999506950378418 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998309850692749, + 0.9953481554985046, + 0.9975181818008423, + 0.9970601201057434 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9986119270324707, + 0.9988757967948914, + 0.9994319081306458, + 0.999500036239624 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.25, + "NEGATIVE": 0.75 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.75 + ] + }, + "final_label": "NEGATIVE", + "final_count": 6, + "final_proportion": 0.6, + "final_counts": { + "POSITIVE": 4, + "NEGATIVE": 6 + }, + "final_distribution": { + "POSITIVE": 0.4, + "NEGATIVE": 0.6 + } + } }, { "season_code": "202301", @@ -257092,7 +554136,7 @@ "13:30", "15:20", "HLH31 108 - 31 Hillhouse Avenue 108", - "https:\/\/map.yale.edu\/?id=1910#!m\/559990" + "https://map.yale.edu/?id=1910#!m/559990" ] ] }, @@ -257109,10 +554153,115 @@ "classnotes": "Preregistration for this course is for EPE and PLSC majors only and the form can be found on epe.yale.edu. In one paragraph, please explain your interest and make sure to include your class and major.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84038\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84038/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985092282295227, + 0.9985337257385254, + 0.9987996816635132, + 0.9988969564437866, + 0.9988905787467957, + 0.9989362359046936, + 0.9988353848457336 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989369511604309, + 0.9988715052604675, + 0.9974080920219421, + 0.9989284873008728, + 0.9989336133003235, + 0.9987886548042297 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989336133003235, + 0.9988634586334229, + 0.9986287355422974, + 0.9986818432807922, + 0.9989023208618164, + 0.9988877177238464, + 0.9942677021026611 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 20 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -257149,7 +554298,7 @@ "13:30", "15:20", "WALL81 301 - 81 Wall Street 301", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -257166,10 +554315,107 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84678\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84678/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988994598388672, + 0.9988376498222351, + 0.9988940358161926, + 0.9989296793937683, + 0.9976754784584045 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987680315971375, + 0.9968265295028687, + 0.99892657995224, + 0.9988969564437866, + 0.9989076852798462 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9942923784255981, + 0.9940934777259827, + 0.9989041090011597, + 0.9989174604415894, + 0.9981417655944824 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.4, + "POSITIVE": 0.6 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 0.8, + "final_counts": { + "POSITIVE": 12, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + } + } }, { "season_code": "202301", @@ -257208,7 +554454,7 @@ "13:30", "15:20", "WLH 011 - William L. Harkness Hall 011", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -257226,10 +554472,87 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84226\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84226/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.998883068561554 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989051818847656, + 0.998795747756958 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988958835601807, + 0.9982553124427795, + 0.9988030195236206 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 6 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -257268,7 +554591,7 @@ "13:30", "15:20", "HQ 127 - Humanities Quadrangle 127", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -257285,15 +554608,110 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84311\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84311/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "", - "description": "Examination of how freedom of speech and bias influence the criminal justice system, focusing on wrongful convictions and administration of the death penalty. Understanding the role of potential bias at various levels and the competing interests of protecting speech, due process, and the innocent. Topics include limitations on speech, practical effects of speech, the efficacy of the death penalty, actual innocence, gender\/race\/economic bias and its effects on the justice system, as well as best practices for improving our sense of justice.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988676309585571, + 0.9988656044006348, + 0.9987913966178894, + 0.998846173286438, + 0.9984458088874817 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998918890953064, + 0.9988166093826294, + 0.9764682054519653, + 0.9887734055519104, + 0.9987500905990601 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988922476768494, + 0.9978411197662354, + 0.9917318820953369, + 0.9981526732444763 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 0.9285714285714286, + "final_counts": { + "POSITIVE": 13, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9285714285714286, + "NEGATIVE": 0.07142857142857142 + } + } + }, + { + "season_code": "202301", + "requirements": "", + "description": "Examination of how freedom of speech and bias influence the criminal justice system, focusing on wrongful convictions and administration of the death penalty. Understanding the role of potential bias at various levels and the competing interests of protecting speech, due process, and the innocent. Topics include limitations on speech, practical effects of speech, the efficacy of the death penalty, actual innocence, gender/race/economic bias and its effects on the justice system, as well as best practices for improving our sense of justice.", "short_title": "Ethics, Law, and Current Issues", "title": "Ethics, Law, and Current Issues", "school": "YC", @@ -257326,7 +554744,7 @@ "18:30", "20:20", "HLH31 108 - 31 Hillhouse Avenue 108", - "https:\/\/map.yale.edu\/?id=1910#!m\/559990" + "https://map.yale.edu/?id=1910#!m/559990" ] ] }, @@ -257340,10 +554758,105 @@ "classnotes": "Preregistration for this course is for EPE and PLSC majors only and the form can be found on epe.yale.edu. In one paragraph, please explain your interest and make sure to include your class and major.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84047\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84047/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988081455230713, + 0.9988935589790344, + 0.9981517195701599, + 0.9987015724182129, + 0.9988853335380554 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989219903945923, + 0.9988847374916077, + 0.9985289573669434, + 0.9989194869995117 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989111423492432, + 0.9980168342590332, + 0.998896598815918, + 0.9989016056060791, + 0.9989032745361328, + 0.998915433883667 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 15 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -257386,7 +554899,7 @@ "14:30", "15:45", "HQ 132 - Humanities Quadrangle 132", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -257394,7 +554907,7 @@ "14:30", "15:45", "HQ 132 - Humanities Quadrangle 132", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -257417,10 +554930,113 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84093\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84093/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989114999771118, + 0.998789370059967, + 0.998908519744873, + 0.9988896250724792, + 0.9989155530929565, + 0.9989334940910339 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983221888542175, + 0.9966064691543579, + 0.9981992840766907, + 0.9989058971405029, + 0.9989176988601685, + 0.9853879809379578 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9924666285514832, + 0.9987484216690063, + 0.9988945126533508, + 0.9989340901374817, + 0.9987887740135193, + 0.998930037021637 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 5 + }, + "sentiment_distribution": { + "NEGATIVE": 0.16666666666666666, + "POSITIVE": 0.8333333333333334 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 0.9444444444444444, + "final_counts": { + "POSITIVE": 17, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9444444444444444, + "NEGATIVE": 0.05555555555555555 + } + } }, { "season_code": "202301", @@ -257459,7 +555075,7 @@ "14:30", "15:45", "WALL81 301 - 81 Wall Street 301", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ], "Wednesday": [ @@ -257467,7 +555083,7 @@ "14:30", "15:45", "WALL81 301 - 81 Wall Street 301", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -257483,14 +555099,109 @@ "classnotes": "", "final_exam": "Thursday, May 4, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85394\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85394/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "Prerequisite: substantial course work in intellectual history and\/or political theory. Appropriate for graduate students preparing for the political theory field exam.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998908519744873, + 0.9988137483596802, + 0.989204466342926, + 0.9988657236099243, + 0.9986458420753479 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9978039860725403, + 0.9989005327224731, + 0.9988828301429749, + 0.9989194869995117, + 0.9988941550254822 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989277720451355, + 0.9984122514724731, + 0.9988321661949158, + 0.9989054203033447, + 0.9989309906959534 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 15 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } + }, + { + "season_code": "202301", + "requirements": "Prerequisite: substantial course work in intellectual history and/or political theory. Appropriate for graduate students preparing for the political theory field exam.", "description": "This seminar explores key concepts in modern political philosophy. This term our thematic focus is on the relation between civil society and state institutions, as it has been conceptualized by political philosophy.", "short_title": "Advanced Topics in Modern Pol...", "title": "Advanced Topics in Modern Political Philosophy", @@ -257528,7 +555239,7 @@ "13:30", "15:20", "RKZ 102 - Rosenkranz Hall 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -257545,10 +555256,109 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85403\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85403/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986910223960876, + 0.9988477230072021, + 0.9984325766563416, + 0.9987545013427734, + 0.9986769556999207, + 0.9987761378288269 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9969527721405029, + 0.9985860586166382, + 0.998845100402832, + 0.9859194755554199, + 0.9987008571624756, + 0.9988622665405273 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985302686691284, + 0.9989249110221863, + 0.9988755583763123, + 0.9988887906074524 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 0.9375, + "final_counts": { + "POSITIVE": 15, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9375, + "NEGATIVE": 0.0625 + } + } }, { "season_code": "202301", @@ -257587,7 +555397,7 @@ "14:30", "15:45", "WALL81 101 - 81 Wall Street 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ], "Thursday": [ @@ -257595,7 +555405,7 @@ "14:30", "15:45", "WALL81 101 - 81 Wall Street 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -257609,10 +555419,95 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85878\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85878/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988853335380554, + 0.9988697171211243, + 0.9988394379615784 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989312291145325, + 0.9988176226615906, + 0.9989012479782104 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988285899162292, + 0.997117280960083, + 0.9989375472068787, + 0.9989257454872131 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 10 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -257649,7 +555544,7 @@ "13:30", "15:20", "RKZ 06 - Rosenkranz Hall 06", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -257665,10 +555560,103 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87252\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87252/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988662004470825, + 0.9984161853790283, + 0.9989047050476074, + 0.9989093542098999, + 0.9989240765571594 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988014698028564, + 0.9989274144172668, + 0.9989135265350342, + 0.9989261031150818 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989288449287415, + 0.9988711476325989, + 0.9989334940910339, + 0.998903751373291, + 0.9989000558853149 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 14 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -257705,7 +555693,7 @@ "13:30", "15:20", "WTS B51 - Watson Center 60 Sachem Street B51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -257719,14 +555707,97 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86256\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86256/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "A background in 20th century history and\/or the history of political thought\/intellectual history is helpful.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989250302314758, + 0.9989001750946045, + 0.9988757967948914 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989374279975891, + 0.9989092350006104, + 0.9989033937454224 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989342093467712, + 0.9989227652549744, + 0.9989294409751892 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 9 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } + }, + { + "season_code": "202301", + "requirements": "A background in 20th century history and/or the history of political thought/intellectual history is helpful.", "description": "This course is an examination and consideration of one of the most influential groups of political and cultural critics of the 20th century: the New York Intellectuals. A loose group of political and literary critics, mostly Jewish, they played formative roles in many of the key political and cultural debates of the 20th century, from the spread of Marxism and Modernism, to the origins of the Cold War, from debates about the alienation of modern man, to the rise of modern (neo-) conservatism. Who were they? And now that they have mostly passed away, and what has their legacy been?", "short_title": "The New York Intellectuals: P...", "title": "The New York Intellectuals: Politics, Art, Argument", @@ -257759,7 +555830,7 @@ "13:30", "15:20", "WALL81 101 - 81 Wall Street 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -257775,10 +555846,117 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85404\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85404/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988716244697571, + 0.9947216510772705, + 0.9987851977348328, + 0.9988143444061279, + 0.9995068311691284 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988306164741516, + 0.9985476136207581, + 0.9989338517189026, + 0.9988570213317871, + 0.9987554550170898, + 0.9995136260986328, + 0.9987963438034058 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.998852014541626, + 0.9988620281219482, + 0.9989330172538757, + 0.997117280960083, + 0.9988952279090881, + 0.9988963603973389, + 0.9994829893112183, + 0.9994702935218811 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 0.8, + "final_counts": { + "POSITIVE": 16, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + } + } }, { "season_code": "202301", @@ -257844,10 +556022,111 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85116\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85116/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985811710357666, + 0.9982442855834961, + 0.99828040599823, + 0.998134195804596, + 0.9988487958908081 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988825917243958, + 0.9981696605682373, + 0.9860562086105347, + 0.9894806146621704, + 0.999483585357666, + 0.998816967010498, + 0.9989206790924072 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.42857142857142855, + "NEGATIVE": 0.5714285714285714 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.5714285714285714 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9971264004707336, + 0.9753815531730652, + 0.998755931854248, + 0.9986746311187744, + 0.9988407492637634 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 0.7058823529411765, + "final_counts": { + "POSITIVE": 12, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.7058823529411765, + "NEGATIVE": 0.29411764705882354 + } + } }, { "season_code": "202301", @@ -257879,7 +556158,7 @@ "14:30", "15:20", "WTS B60 - Watson Center 60 Sachem Street B60", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -257898,7 +556177,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -257930,7 +556237,7 @@ "9:25", "10:15", "WTS B39 - Watson Center 60 Sachem Street B39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -257949,7 +556256,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -257987,10 +556322,38 @@ "classnotes": "Along with your major, class year, and interest in the course, please list the courses in economics, math, and political theory or philosophy you have taken. Please note that a course in intermediate microeconomics and a course in calculus is required.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85167\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/85167/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -258030,7 +556393,7 @@ "14:30", "15:45", "YSB MARSH - Yale Science Building MARSH", - "https:\/\/map.yale.edu\/?id=1910#!m\/563700" + "https://map.yale.edu/?id=1910#!m/563700" ] ], "Thursday": [ @@ -258038,7 +556401,7 @@ "14:30", "15:45", "YSB MARSH - Yale Science Building MARSH", - "https:\/\/map.yale.edu\/?id=1910#!m\/563700" + "https://map.yale.edu/?id=1910#!m/563700" ] ] }, @@ -258055,10 +556418,493 @@ "classnotes": "", "final_exam": "Wednesday, May 10, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84847\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84847/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988390803337097, + 0.9313662648200989, + 0.9985993504524231, + 0.9988899827003479, + 0.9993763566017151, + 0.9988467693328857, + 0.9923166036605835, + 0.9954389929771423, + 0.9987394213676453, + 0.9954096674919128, + 0.9973886609077454, + 0.9989051818847656, + 0.9696313738822937, + 0.9988816380500793, + 0.9979748129844666, + 0.9976974129676819, + 0.9988600015640259, + 0.9985936284065247, + 0.9943304061889648, + 0.6966997981071472, + 0.9909794330596924, + 0.9987766146659851, + 0.9962397813796997, + 0.9966402053833008, + 0.9941121935844421, + 0.9988204836845398, + 0.9974930286407471, + 0.9987313151359558, + 0.9986740350723267, + 0.9973850846290588, + 0.998791515827179, + 0.9988551139831543, + 0.998920202255249, + 0.9988157749176025, + 0.9925565123558044, + 0.6966997981071472, + 0.9986429810523987, + 0.9988308548927307, + 0.8254338502883911, + 0.9951391220092773, + 0.9988755583763123, + 0.9983452558517456, + 0.9624868631362915, + 0.995354413986206, + 0.998823344707489, + 0.9976018071174622, + 0.9898678064346313, + 0.9982247948646545, + 0.9956926703453064, + 0.9980265498161316, + 0.993362545967102, + 0.9988679885864258, + 0.998910665512085, + 0.9891722202301025, + 0.998763918876648, + 0.9982233643531799, + 0.9983764886856079, + 0.9987964630126953, + 0.9972135424613953, + 0.9825941920280457, + 0.9987201690673828, + 0.9988223910331726, + 0.9918251037597656, + 0.9988749623298645, + 0.9985941052436829, + 0.9975353479385376, + 0.9952988028526306, + 0.9982408285140991, + 0.9964553117752075 + ], + "sentiment_counts": { + "POSITIVE": 62, + "NEGATIVE": 7 + }, + "sentiment_distribution": { + "POSITIVE": 0.8985507246376812, + "NEGATIVE": 0.10144927536231885 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8985507246376812 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988120794296265, + 0.9906856417655945, + 0.998322069644928, + 0.9988588094711304, + 0.9994621872901917, + 0.9988473653793335, + 0.9988729357719421, + 0.9987753033638, + 0.9929297566413879, + 0.9988870024681091, + 0.9985925555229187, + 0.9989203214645386, + 0.99891197681427, + 0.9994958639144897, + 0.9988915324211121, + 0.9989176988601685, + 0.9949889779090881, + 0.9988176226615906, + 0.9988964796066284, + 0.9994756579399109, + 0.9951633214950562, + 0.99718177318573, + 0.998890221118927, + 0.9989140033721924, + 0.993835985660553, + 0.9903426170349121, + 0.9986850619316101, + 0.9989087581634521, + 0.9937487840652466, + 0.9981314539909363, + 0.9993155002593994, + 0.9988297820091248, + 0.998791515827179, + 0.996482253074646, + 0.998907208442688, + 0.9982265830039978, + 0.9988477230072021, + 0.9994760155677795, + 0.9987025260925293, + 0.9965721368789673, + 0.997686505317688, + 0.9994988441467285, + 0.9988040924072266, + 0.9985962510108948, + 0.9978637099266052, + 0.9987891316413879, + 0.998863697052002, + 0.9989153146743774, + 0.9955337047576904, + 0.9989022016525269, + 0.9994587302207947, + 0.9970155954360962, + 0.9989181756973267, + 0.9978260397911072, + 0.9916815161705017, + 0.9983128309249878, + 0.9994958639144897, + 0.9977091550827026, + 0.9994990825653076, + 0.9976643323898315, + 0.9989014863967896, + 0.9988013505935669, + 0.999484658241272, + 0.9989088773727417, + 0.996813952922821, + 0.9988449811935425, + 0.9986633062362671, + 0.9988850951194763, + 0.9987645149230957, + 0.9988723397254944, + 0.9971765279769897, + 0.9985021352767944, + 0.9983749389648438 + ], + "sentiment_counts": { + "POSITIVE": 54, + "NEGATIVE": 19 + }, + "sentiment_distribution": { + "POSITIVE": 0.7397260273972602, + "NEGATIVE": 0.2602739726027397 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7397260273972602 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987590312957764, + 0.9957950115203857, + 0.9987393021583557, + 0.9960975646972656, + 0.9995051622390747, + 0.9984720349311829, + 0.9988909363746643, + 0.9985710382461548, + 0.9988948702812195, + 0.9989385008811951, + 0.9988910555839539, + 0.9989251494407654, + 0.99919193983078, + 0.9814485907554626, + 0.997117280960083, + 0.9987396597862244, + 0.9974592328071594, + 0.9988322854042053, + 0.9995080232620239, + 0.9986888766288757, + 0.9974592328071594, + 0.9988011121749878, + 0.9988499879837036, + 0.9988592863082886, + 0.9988529682159424, + 0.9988456964492798, + 0.9982553124427795, + 0.9981569647789001, + 0.9981942772865295, + 0.997117280960083, + 0.9986503720283508, + 0.998791515827179, + 0.9985626339912415, + 0.9985793828964233, + 0.9986091256141663, + 0.998511016368866, + 0.9495463967323303, + 0.9928285479545593, + 0.9985781908035278, + 0.9981749057769775, + 0.997712254524231, + 0.9989008903503418, + 0.9987488985061646, + 0.9989131689071655, + 0.9638811945915222, + 0.9984458088874817, + 0.9964146614074707, + 0.9993763566017151, + 0.9977746605873108, + 0.9984636306762695, + 0.9988266825675964, + 0.9989233613014221, + 0.9988744854927063, + 0.9988036155700684, + 0.9962062835693359, + 0.9970763921737671, + 0.9914073348045349, + 0.9986932873725891, + 0.9988895058631897, + 0.9988924860954285, + 0.9989135265350342, + 0.9982553124427795, + 0.997117280960083, + 0.9989099502563477, + 0.9988345503807068, + 0.9985203146934509 + ], + "sentiment_counts": { + "POSITIVE": 55, + "NEGATIVE": 11 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 171, + "final_proportion": 0.8221153846153846, + "final_counts": { + "POSITIVE": 171, + "NEGATIVE": 37 + }, + "final_distribution": { + "POSITIVE": 0.8221153846153846, + "NEGATIVE": 0.1778846153846154 + } + } }, { "season_code": "202301", @@ -258096,7 +556942,7 @@ "13:30", "15:20", "RKZ 301 - Rosenkranz Hall 301", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -258113,10 +556959,105 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84679\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84679/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9936103224754333, + 0.9973742961883545, + 0.9987013339996338, + 0.9987280964851379, + 0.995496392250061 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9877049922943115, + 0.9987271428108215, + 0.998798131942749, + 0.9985221028327942 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.25, + "POSITIVE": 0.75 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987310767173767, + 0.9987338185310364, + 0.9980168342590332, + 0.9919473528862, + 0.9988238215446472 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 0.8571428571428571, + "final_counts": { + "POSITIVE": 12, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + } + } }, { "season_code": "202301", @@ -258155,7 +557096,7 @@ "15:30", "17:20", "RKZ 202 - Rosenkranz Hall 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -258172,10 +557113,95 @@ "classnotes": "This course requires instructor permission. Please submit the following information with your registration request: your major, any previous coursework related to Europe, and what issues or problems pertaining to or involving the EU are of greatest interest to you. ", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85862\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85862/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987583160400391, + 0.9986431002616882, + 0.9961695075035095, + 0.9989149570465088 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987708926200867, + 0.9988362193107605, + 0.9989363551139832 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9978603720664978, + 0.9988988637924194, + 0.998896598815918 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 10 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -258212,7 +557238,7 @@ "19:00", "20:50", "WLH 203 - William L. Harkness Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -258228,10 +557254,101 @@ "classnotes": "Instructor permission is required. Basic mathematical and statistical knowledge such as calculus, linear algebra, t-tests, hypotheses testing, and regressions are highly recommended for understanding some of the course material. ", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85932\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85932/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9974762797355652, + 0.9988020658493042, + 0.9985509514808655, + 0.9928679466247559 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989111423492432, + 0.9989364743232727, + 0.9960058331489563, + 0.9988532066345215 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986202716827393, + 0.9989293217658997, + 0.998923122882843, + 0.9982694387435913, + 0.9974592328071594 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 13 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -258269,7 +557386,7 @@ "9:00", "10:15", "WLH 116 - William L. Harkness Hall 116", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -258277,7 +557394,7 @@ "9:00", "10:15", "WLH 116 - William L. Harkness Hall 116", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -258294,10 +557411,205 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83800\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83800/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988173842430115, + 0.9881293773651123, + 0.9985105395317078, + 0.9987599849700928, + 0.9985837936401367, + 0.9985750913619995, + 0.9988518953323364, + 0.9987568855285645, + 0.9979873895645142, + 0.9985576272010803, + 0.9994816184043884, + 0.998896598815918, + 0.9986191987991333, + 0.9989169836044312, + 0.998613715171814, + 0.9901878237724304, + 0.9988064765930176, + 0.9987775683403015, + 0.9986931681632996, + 0.9981673955917358 + ], + "sentiment_counts": { + "POSITIVE": 19, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.95, + "NEGATIVE": 0.05 + }, + "sentiment_overall": [ + "POSITIVE", + 0.95 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986386895179749, + 0.9987093210220337, + 0.998900294303894, + 0.9964189529418945, + 0.9988300204277039, + 0.9989288449287415, + 0.9988452196121216, + 0.9987766146659851, + 0.9989179372787476, + 0.9974960684776306, + 0.9987860321998596, + 0.9994996786117554, + 0.9988371729850769, + 0.9995050430297852, + 0.9988688826560974, + 0.9966427087783813, + 0.998815655708313, + 0.998671293258667, + 0.9985601305961609, + 0.9985688924789429, + 0.9987905621528625, + 0.9988824725151062, + 0.9817447066307068 + ], + "sentiment_counts": { + "POSITIVE": 20, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.8695652173913043, + "NEGATIVE": 0.13043478260869565 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8695652173913043 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986289739608765, + 0.997117280960083, + 0.9986990690231323, + 0.9984304308891296, + 0.9989136457443237, + 0.9987618923187256, + 0.9988670349121094, + 0.9987359642982483, + 0.9982553124427795, + 0.9963602423667908, + 0.9988107681274414, + 0.9995006322860718, + 0.9988632202148438, + 0.9995062351226807, + 0.9987983703613281, + 0.998695433139801, + 0.9985633492469788, + 0.9989087581634521, + 0.9988911747932434, + 0.9984412789344788, + 0.9961736798286438 + ], + "sentiment_counts": { + "POSITIVE": 19, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.9047619047619048, + "NEGATIVE": 0.09523809523809523 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9047619047619048 + ] + }, + "final_label": "POSITIVE", + "final_count": 58, + "final_proportion": 0.90625, + "final_counts": { + "POSITIVE": 58, + "NEGATIVE": 6 + }, + "final_distribution": { + "POSITIVE": 0.90625, + "NEGATIVE": 0.09375 + } + } }, { "season_code": "202301", @@ -258335,7 +557647,7 @@ "15:30", "17:20", "WTS A35 - Watson Center 60 Sachem Street A35", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -258349,10 +557661,93 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83785\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83785/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9984158277511597, + 0.9985494017601013, + 0.9992043375968933 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9987697005271912, + 0.9995067119598389 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 0 + }, + "sentiment_distribution": { + "NEGATIVE": 1.0, + "POSITIVE": 0.0 + }, + "sentiment_overall": [ + "NEGATIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989198446273804, + 0.9995064735412598, + 0.9986918568611145 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "neutral", + "final_count": 0.5, + "final_proportion": 0.5, + "final_counts": { + "POSITIVE": 4, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + } + } }, { "season_code": "202301", @@ -258392,7 +557787,7 @@ "13:30", "15:20", "WTS B39 - Watson Center 60 Sachem Street B39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -258409,10 +557804,117 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84500\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84500/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998842179775238, + 0.998589813709259, + 0.9985631108283997, + 0.9984286427497864, + 0.9988778233528137, + 0.9980494976043701 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989332556724548, + 0.9989296793937683, + 0.9989269375801086, + 0.9987540245056152, + 0.997100293636322, + 0.998879611492157 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989259839057922, + 0.9989350438117981, + 0.9986311793327332, + 0.9988939166069031, + 0.9988688826560974, + 0.9988760352134705, + 0.9957029223442078, + 0.9989074468612671, + 0.9988679885864258 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 21, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 21 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -258452,7 +557954,7 @@ "13:30", "15:20", "RKZ 202 - Rosenkranz Hall 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -258468,13 +557970,102 @@ ], "regnotes": "", "rp_attr": "", - "classnotes": "This course requires instructor permission. Please submit the following information with your registration request: year, major, related courses taken (if any), 2-3 sentences why you are interested in the course, plan to write senior essay in this seminar (Yes\/No\/Undecided).", + "classnotes": "This course requires instructor permission. Please submit the following information with your registration request: year, major, related courses taken (if any), 2-3 sentences why you are interested in the course, plan to write senior essay in this seminar (Yes/No/Undecided).", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85148\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85148/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988574981689453, + 0.9989180564880371, + 0.9986271858215332, + 0.9987420439720154 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998923122882843, + 0.99891197681427, + 0.9989261031150818, + 0.9988885521888733 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989087581634521, + 0.9989331364631653, + 0.9988707900047302, + 0.9989271759986877 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 12 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -258512,7 +558103,7 @@ "10:30", "11:20", "LC 211 - Linsly-Chittenden Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -258520,7 +558111,7 @@ "10:30", "11:20", "LC 211 - Linsly-Chittenden Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -258536,10 +558127,179 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84682\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84682/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987910389900208, + 0.9988688826560974, + 0.9972422122955322, + 0.9985758066177368, + 0.9987579584121704, + 0.9989088773727417, + 0.9988604784011841, + 0.9973220229148865, + 0.9988985061645508, + 0.9988924860954285, + 0.9987435936927795, + 0.9986060261726379, + 0.9988760352134705, + 0.998907208442688, + 0.998820960521698, + 0.9987034797668457, + 0.9989174604415894, + 0.9989064931869507 + ], + "sentiment_counts": { + "POSITIVE": 18, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987861514091492, + 0.9988094568252563, + 0.9988623857498169, + 0.9988717436790466, + 0.9988842606544495, + 0.9989064931869507, + 0.9986580610275269, + 0.998916506767273, + 0.9989266991615295, + 0.9988003969192505, + 0.9987733960151672, + 0.9989122152328491, + 0.9994982481002808, + 0.9988453388214111, + 0.9988454580307007, + 0.9989355206489563 + ], + "sentiment_counts": { + "POSITIVE": 14, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982762336730957, + 0.9980693459510803, + 0.9989257454872131, + 0.9988240599632263, + 0.9988741278648376, + 0.9985396862030029, + 0.9989216327667236, + 0.998914361000061, + 0.9981603026390076, + 0.9988679885864258, + 0.9989356398582458, + 0.9989073276519775, + 0.9989114999771118, + 0.999488115310669, + 0.9988590478897095, + 0.999495267868042, + 0.9989365935325623 + ], + "sentiment_counts": { + "POSITIVE": 15, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8823529411764706, + "NEGATIVE": 0.11764705882352941 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8823529411764706 + ] + }, + "final_label": "POSITIVE", + "final_count": 47, + "final_proportion": 0.9215686274509803, + "final_counts": { + "POSITIVE": 47, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.9215686274509803, + "NEGATIVE": 0.0784313725490196 + } + } }, { "season_code": "202301", @@ -258571,7 +558331,7 @@ "9:25", "10:15", "WTS A35 - Watson Center 60 Sachem Street A35", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -258588,7 +558348,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -258620,7 +558408,7 @@ "10:30", "11:20", "WTS A35 - Watson Center 60 Sachem Street A35", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -258637,7 +558425,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -258677,7 +558493,7 @@ "9:25", "10:15", "WLH 119 - William L. Harkness Hall 119", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -258685,7 +558501,7 @@ "9:25", "10:15", "WLH 119 - William L. Harkness Hall 119", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -258701,10 +558517,239 @@ "classnotes": "During the period between November 14 and November 24, enrollment will be limited to majors. After November 24, registration will be opened to all Yale College students. Please register your interest via the Yale Course Search website. ", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84684\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84684/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985846281051636, + 0.9988105297088623, + 0.9985256791114807, + 0.9985295534133911, + 0.9988969564437866, + 0.9988834261894226, + 0.9977514147758484, + 0.9988563060760498, + 0.9987576007843018, + 0.9975693821907043, + 0.9987862706184387, + 0.9986097812652588, + 0.9974665641784668, + 0.9988927245140076, + 0.9987136125564575, + 0.9987572431564331, + 0.998791515827179, + 0.9944117665290833, + 0.9888995885848999, + 0.9989033937454224, + 0.9988823533058167, + 0.9987388253211975, + 0.9987381100654602, + 0.9591807126998901, + 0.9987437129020691, + 0.9984278678894043 + ], + "sentiment_counts": { + "POSITIVE": 26, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987310767173767, + 0.9988885521888733, + 0.9971687197685242, + 0.998896598815918, + 0.998936116695404, + 0.9794125556945801, + 0.9989044666290283, + 0.9988607168197632, + 0.9988886713981628, + 0.9987872242927551, + 0.9959118366241455, + 0.9987677335739136, + 0.9988596439361572, + 0.9987506866455078, + 0.9949052333831787, + 0.9988143444061279, + 0.9985610842704773, + 0.9994980096817017, + 0.998879611492157, + 0.9988208413124084, + 0.9972012042999268, + 0.999474823474884, + 0.998870313167572, + 0.9988526105880737, + 0.9982838034629822, + 0.9988747239112854 + ], + "sentiment_counts": { + "POSITIVE": 22, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.8461538461538461, + "NEGATIVE": 0.15384615384615385 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8461538461538461 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989081621170044, + 0.9988532066345215, + 0.9982553124427795, + 0.9989147186279297, + 0.9988744854927063, + 0.9988996982574463, + 0.9988558292388916, + 0.9849560856819153, + 0.9989055395126343, + 0.9986552000045776, + 0.9984148740768433, + 0.998860239982605, + 0.9986028075218201, + 0.9982799291610718, + 0.9989160299301147, + 0.9988149404525757, + 0.9987614154815674, + 0.9980523586273193, + 0.9988523721694946, + 0.974129855632782, + 0.9989210367202759, + 0.9982553124427795, + 0.9989327788352966, + 0.9989131689071655, + 0.9989345669746399, + 0.9452022910118103, + 0.9987466335296631, + 0.9989161491394043, + 0.998930037021637 + ], + "sentiment_counts": { + "POSITIVE": 25, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.8620689655172413, + "NEGATIVE": 0.13793103448275862 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8620689655172413 + ] + }, + "final_label": "POSITIVE", + "final_count": 73, + "final_proportion": 0.9012345679012346, + "final_counts": { + "POSITIVE": 73, + "NEGATIVE": 8 + }, + "final_distribution": { + "POSITIVE": 0.9012345679012346, + "NEGATIVE": 0.09876543209876543 + } + } }, { "season_code": "202301", @@ -258738,7 +558783,7 @@ "9:25", "10:15", "BASSLB L70 - Bass Library L70", - "https:\/\/map.yale.edu\/?id=1910#!m\/564574" + "https://map.yale.edu/?id=1910#!m/564574" ] ] }, @@ -258755,7 +558800,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -258789,7 +558862,7 @@ "10:30", "11:20", "BASSLB L70 - Bass Library L70", - "https:\/\/map.yale.edu\/?id=1910#!m\/564574" + "https://map.yale.edu/?id=1910#!m/564574" ] ] }, @@ -258806,7 +558879,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -258840,7 +558941,7 @@ "16:00", "16:50", "WTS A38 - Watson Center 60 Sachem Street A38", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -258857,7 +558958,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -258891,7 +559020,7 @@ "17:00", "17:50", "WTS A38 - Watson Center 60 Sachem Street A38", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -258908,7 +559037,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -258948,7 +559105,7 @@ "15:30", "17:20", "RKZ 301 - Rosenkranz Hall 301", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -258961,13 +559118,94 @@ ], "regnotes": "", "rp_attr": "", - "classnotes": "This course requires instructor permission. Please submit the following information with your request to register.\n1. Full Name:\n2.\tRank: Undergraduate (major)? Master? PhD candidate?\n3.\tMajor and year\n4.\tGPA\n5.\tDo you wish you write your senior essay in one the seminars selected? If yes, on what topic?\n6.\tDo you have any previous course work that is related to State Formation\/State Building?\n7.\tDid you shop this course last year but did not get in?\n8.\tWhy do you wish to take this seminar?\n9.\tWhich period and region are you eager to study in this seminar? Why?\n10.\tDo you have any notion of quantitative analysis and or game theory? List relevant course work.\n", + "classnotes": "This course requires instructor permission. Please submit the following information with your request to register.\n1. Full Name:\n2.\tRank: Undergraduate (major)? Master? PhD candidate?\n3.\tMajor and year\n4.\tGPA\n5.\tDo you wish you write your senior essay in one the seminars selected? If yes, on what topic?\n6.\tDo you have any previous course work that is related to State Formation/State Building?\n7.\tDid you shop this course last year but did not get in?\n8.\tWhy do you wish to take this seminar?\n9.\tWhich period and region are you eager to study in this seminar? Why?\n10.\tDo you have any notion of quantitative analysis and or game theory? List relevant course work.\n", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85435\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85435/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988842606544495, + 0.9927089214324951, + 0.9987228512763977 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998900294303894, + 0.9988118410110474 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987723231315613, + 0.997117280960083, + 0.9987229704856873 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 8, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 8 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -259007,7 +559245,7 @@ "9:25", "10:15", "HQ 132 - Humanities Quadrangle 132", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -259015,7 +559253,7 @@ "9:25", "10:15", "HQ 132 - Humanities Quadrangle 132", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -259031,10 +559269,133 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85249\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85249/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9972086548805237, + 0.9988486766815186, + 0.9989362359046936, + 0.9988975524902344, + 0.9985952973365784, + 0.9988297820091248, + 0.9989247918128967, + 0.9988231062889099, + 0.9987345337867737 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988241791725159, + 0.9988961219787598, + 0.9989107847213745, + 0.9989163875579834, + 0.9984201192855835, + 0.9995107650756836, + 0.9979415535926819, + 0.9988810420036316 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988608360290527, + 0.9988521337509155, + 0.9987747073173523, + 0.9989257454872131, + 0.9988905787467957, + 0.9988517761230469, + 0.998880922794342, + 0.9994984865188599, + 0.9989290833473206, + 0.9988786578178406, + 0.9987645149230957 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9090909090909091 + ] + }, + "final_label": "POSITIVE", + "final_count": 26, + "final_proportion": 0.9285714285714286, + "final_counts": { + "POSITIVE": 26, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9285714285714286, + "NEGATIVE": 0.07142857142857142 + } + } }, { "season_code": "202301", @@ -259065,7 +559426,7 @@ "10:30", "11:20", "WLH 006 - William L. Harkness Hall 006", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -259082,7 +559443,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -259113,7 +559502,7 @@ "16:00", "16:50", "LC 203 - Linsly-Chittenden Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -259130,7 +559519,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -259167,7 +559584,7 @@ "11:35", "12:50", "RKZ 05 - Rosenkranz Hall 05", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ], "Thursday": [ @@ -259175,7 +559592,7 @@ "11:35", "12:50", "RKZ 05 - Rosenkranz Hall 05", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -259192,10 +559609,125 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85933\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/85933/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988441467285156, + 0.9985396862030029, + 0.9989168643951416, + 0.9988200068473816, + 0.9988152980804443, + 0.9989058971405029, + 0.9982185959815979, + 0.9982262253761292 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989056587219238, + 0.99947589635849, + 0.9989257454872131, + 0.9988383650779724, + 0.9988813996315002, + 0.9994056224822998, + 0.9987571239471436, + 0.9989343285560608 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989175796508789, + 0.9974592328071594, + 0.9988239407539368, + 0.9859306812286377, + 0.9989137649536133, + 0.9988956451416016, + 0.9988915324211121, + 0.9989207983016968 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 22, + "final_proportion": 0.9166666666666666, + "final_counts": { + "POSITIVE": 22, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + } + } }, { "season_code": "202301", @@ -259233,7 +559765,7 @@ "9:25", "11:15", "HQ 207 - Humanities Quadrangle 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -259253,10 +559785,151 @@ "classnotes": "Priority is given to students in Education Studies (certificate & scholars program) and Political Science and then by course year. Priority is also given to students who have taken EDST110. On courses.edu, please request instructor permission. In the note, please indicate your interest in the course including any international background, as well as major, EDST program and whether you've taken EDST 110 when you request permission.\n", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83863\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83863/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987898468971252, + 0.9987607002258301, + 0.9988597631454468, + 0.9988728165626526, + 0.9987794756889343, + 0.9989176988601685, + 0.9988880753517151, + 0.9987792372703552, + 0.998904824256897, + 0.9988025426864624, + 0.9968806505203247, + 0.9988590478897095, + 0.9986974596977234 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998529314994812, + 0.9988682270050049, + 0.9989055395126343, + 0.9989317059516907, + 0.9989032745361328, + 0.9988320469856262, + 0.9988992214202881, + 0.9989318251609802, + 0.9988235831260681, + 0.9988278746604919, + 0.9988490343093872, + 0.9987776875495911, + 0.9988874793052673 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998895525932312, + 0.9988921284675598, + 0.9988917708396912, + 0.998873770236969, + 0.9989258646965027, + 0.9989089965820312, + 0.9989243149757385, + 0.9988768696784973, + 0.9989251494407654, + 0.9988014698028564, + 0.9989026784896851, + 0.9989299178123474 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 38, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 38 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -259294,7 +559967,7 @@ "13:00", "14:15", "WTS A30 - Watson Center 60 Sachem Street A30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -259302,7 +559975,7 @@ "13:00", "14:15", "WTS A30 - Watson Center 60 Sachem Street A30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -259319,10 +559992,137 @@ "classnotes": "", "final_exam": "Tuesday, May 9, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85405\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/85405/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989307522773743, + 0.9985218644142151, + 0.9981077909469604, + 0.9989013671875, + 0.9987926483154297, + 0.9989026784896851, + 0.9922052025794983, + 0.9982354640960693, + 0.9988791346549988 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988956451416016, + 0.9988982677459717, + 0.9988137483596802, + 0.9989251494407654, + 0.9986579418182373, + 0.9988245368003845, + 0.9986342787742615, + 0.9988730549812317, + 0.9988252520561218, + 0.997819185256958 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988942742347717, + 0.9981257319450378, + 0.9987626075744629, + 0.9989315867424011, + 0.998897910118103, + 0.9922612309455872, + 0.9973117113113403, + 0.9988334774971008, + 0.9971088767051697, + 0.9984989166259766, + 0.9989156723022461 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8181818181818182, + "NEGATIVE": 0.18181818181818182 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8181818181818182 + ] + }, + "final_label": "POSITIVE", + "final_count": 28, + "final_proportion": 0.9333333333333333, + "final_counts": { + "POSITIVE": 28, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9333333333333333, + "NEGATIVE": 0.06666666666666667 + } + } }, { "season_code": "202301", @@ -259360,7 +560160,7 @@ "13:30", "15:20", "RKZ 04 - Rosenkranz Hall 04", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -259376,10 +560176,115 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85250\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85250/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998650848865509, + 0.9989295601844788, + 0.9980345368385315, + 0.998918890953064, + 0.9987584352493286, + 0.998694121837616, + 0.9987265467643738 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988980293273926, + 0.9986818432807922, + 0.9989333748817444, + 0.9989297986030579, + 0.9987769722938538, + 0.9989342093467712 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989272952079773, + 0.9988628625869751, + 0.9921017289161682, + 0.9989270567893982, + 0.9988847374916077, + 0.9960964322090149, + 0.998910665512085 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 20 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -259417,7 +560322,7 @@ "13:30", "15:20", "RKZ 06 - Rosenkranz Hall 06", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -259433,10 +560338,115 @@ "classnotes": "This course requires instructor permission. Students with computer science and data backgrounds, please note this in your application. ", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85934\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85934/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9964053630828857, + 0.9988884329795837, + 0.9988299012184143, + 0.9987131357192993, + 0.9986250400543213, + 0.9984713196754456, + 0.9935386776924133 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9995111227035522, + 0.998830258846283, + 0.998712420463562, + 0.9983623623847961, + 0.9885846972465515, + 0.9919513463973999, + 0.9972251653671265 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 4 + }, + "sentiment_distribution": { + "NEGATIVE": 0.42857142857142855, + "POSITIVE": 0.5714285714285714 + }, + "sentiment_overall": [ + "POSITIVE", + 0.5714285714285714 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9995083808898926, + 0.9989155530929565, + 0.9995073080062866, + 0.9994738698005676, + 0.9994871616363525 + ], + "sentiment_counts": { + "NEGATIVE": 4, + "POSITIVE": 1 + }, + "sentiment_distribution": { + "NEGATIVE": 0.8, + "POSITIVE": 0.2 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 0.631578947368421, + "final_counts": { + "POSITIVE": 12, + "NEGATIVE": 7 + }, + "final_distribution": { + "POSITIVE": 0.631578947368421, + "NEGATIVE": 0.3684210526315789 + } + } }, { "season_code": "202301", @@ -259474,7 +560484,7 @@ "13:30", "15:20", "RKZ 05 - Rosenkranz Hall 05", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -259490,15 +560500,118 @@ "classnotes": "This course requires instructor permission. Please indicate any prior background related to the course and a brief description of why you are interested. ", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84687\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84687/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "", - "description": "Special reading courses may be established with individual members of the department. They must satisfy the following conditions: (1) a prospectus describing the nature of the program and the readings to be covered must be approved by both the instructor and the director of undergraduate studies; (2) the student must meet regularly with the instructor for an average of at least two hours per week; (3) the course must include a term essay, several short essays, or a final examination; (4) the topic and\/or content must not be substantially encompassed by an existing undergraduate or graduate course. All coursework must be submitted no later than the last day of reading period.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989047050476074, + 0.9988040924072266, + 0.9988923668861389, + 0.9988695979118347, + 0.998256504535675, + 0.9987826943397522 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9974164962768555, + 0.9988880753517151, + 0.9988406300544739, + 0.998755931854248, + 0.9987934827804565, + 0.9969363212585449, + 0.9955209493637085 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988747239112854, + 0.9983333945274353, + 0.998371422290802, + 0.9987722039222717, + 0.9941530823707581 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 0.9444444444444444, + "final_counts": { + "POSITIVE": 17, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9444444444444444, + "NEGATIVE": 0.05555555555555555 + } + } + }, + { + "season_code": "202301", + "requirements": "", + "description": "Special reading courses may be established with individual members of the department. They must satisfy the following conditions: (1) a prospectus describing the nature of the program and the readings to be covered must be approved by both the instructor and the director of undergraduate studies; (2) the student must meet regularly with the instructor for an average of at least two hours per week; (3) the course must include a term essay, several short essays, or a final examination; (4) the topic and/or content must not be substantially encompassed by an existing undergraduate or graduate course. All coursework must be submitted no later than the last day of reading period.", "short_title": "Individual Reading for Majors", "title": "Individual Reading for Majors", "school": "YC", @@ -259536,7 +560649,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -259579,7 +560720,78 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9950413107872009 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985973238945007 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9950454235076904 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 3, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 3 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -259622,7 +560834,104 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988411068916321, + 0.9987965822219849, + 0.9988683462142944, + 0.9988006353378296, + 0.998704195022583, + 0.9988960027694702 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998920202255249, + 0.9987454414367676, + 0.9983768463134766, + 0.9989235997200012 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985750913619995, + 0.9988222718238831, + 0.9988793730735779, + 0.9985396862030029, + 0.9974362254142761, + 0.9989029169082642 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 16 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -259659,7 +560968,7 @@ "9:25", "11:15", "WALL81 101 - 81 Wall Street 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -259668,13 +560977,90 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Students who are interested in writing a year-long senior essay must apply to the DUS Office. Applications are due by December 7 for admission to PLSC 490 for the Spring 2023 semester. The application must include: (1) the Year-long Senior Essay Prospectus form signed by the faculty adviser who has agreed to supervise the student's essay, (2) an up-to-date, unofficial transcript, and (3) a 1-2 page prospectus that describes the topic, issue, or analytic or theoretical problem the student wishes to examine. The prospectus should also discuss the relevance of the topic, issue, or problem. A good prospectus should include the questions being asked, as well as the type of research that would be employed to address those questions. Finally, the prospectus should describe previous coursework taken that is relevant to the project. Students should make sure to discuss their plans with their senior essay adviser and ask him\/her to review the prospectus before signing the form. Copy and paste the following link to access the form: https:\/\/politicalscience.yale.edu\/sites\/default\/files\/2022-11-07-yearlong_senior_essay_prospectus_plsc_490-_491-application_.pdf", + "classnotes": "Students who are interested in writing a year-long senior essay must apply to the DUS Office. Applications are due by December 7 for admission to PLSC 490 for the Spring 2023 semester. The application must include: (1) the Year-long Senior Essay Prospectus form signed by the faculty adviser who has agreed to supervise the student's essay, (2) an up-to-date, unofficial transcript, and (3) a 1-2 page prospectus that describes the topic, issue, or analytic or theoretical problem the student wishes to examine. The prospectus should also discuss the relevance of the topic, issue, or problem. A good prospectus should include the questions being asked, as well as the type of research that would be employed to address those questions. Finally, the prospectus should describe previous coursework taken that is relevant to the project. Students should make sure to discuss their plans with their senior essay adviser and ask him/her to review the prospectus before signing the form. Copy and paste the following link to access the form: https://politicalscience.yale.edu/sites/default/files/2022-11-07-yearlong_senior_essay_prospectus_plsc_490-_491-application_.pdf", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85409\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85409/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983036518096924 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9976468682289124, + 0.9989118576049805 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9865951538085938, + 0.9982553124427795 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 1 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "final_label": "POSITIVE", + "final_count": 4, + "final_proportion": 0.8, + "final_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + } + } }, { "season_code": "202301", @@ -259717,7 +561103,100 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989216327667236, + 0.9984084963798523, + 0.9985130429267883, + 0.9981310963630676, + 0.99689120054245 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9971765279769897, + 0.9970206618309021, + 0.9988779425621033, + 0.8508132100105286 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.25, + "POSITIVE": 0.75 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9971765279769897, + 0.9973184466362, + 0.9984610080718994, + 0.9989062547683716 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.25, + "POSITIVE": 0.75 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 0.8461538461538461, + "final_counts": { + "POSITIVE": 11, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8461538461538461, + "NEGATIVE": 0.15384615384615385 + } + } }, { "season_code": "202301", @@ -259760,12 +561239,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "Prerequisites: PLSC 500, with mathematical training at the level of the math camp, and PLSC 529.", - "description": "This course provides an intensive introduction to the methods used in political science for quantitative empirical inquiry. Topics include: missing data, causal inference, selection on observables, instrumental variables, regression discontinuity designs, and panel (TSCS\/longitudinal) data.", + "description": "This course provides an intensive introduction to the methods used in political science for quantitative empirical inquiry. Topics include: missing data, causal inference, selection on observables, instrumental variables, regression discontinuity designs, and panel (TSCS/longitudinal) data.", "short_title": "Theory and Practice of Quanti...", "title": "Theory and Practice of Quantitative Methods", "school": "GS", @@ -259797,7 +561304,7 @@ "10:30", "11:20", "RKZ 05 - Rosenkranz Hall 05", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ], "Thursday": [ @@ -259805,7 +561312,7 @@ "10:30", "11:20", "RKZ 05 - Rosenkranz Hall 05", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -259820,10 +561327,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84690\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84690/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -259861,7 +561396,7 @@ "13:30", "15:20", "RKZ 102 - Rosenkranz Hall 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -259875,10 +561410,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84692\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84692/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -259916,7 +561479,7 @@ "13:30", "15:20", "WLH 003 - William L. Harkness Hall 003", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -259928,10 +561491,38 @@ "classnotes": "This is a graduate course. Undergraduates need explicit permission to take the course. Please see syllabus with instructions to submit an application for the course.", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84817\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84817/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -259968,7 +561559,7 @@ "13:30", "15:20", "RKZ 202 - Rosenkranz Hall 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -259980,10 +561571,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84695\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84695/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -260021,7 +561640,7 @@ "13:30", "15:20", "RKZ 301 - Rosenkranz Hall 301", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -260037,10 +561656,105 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84679\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84679/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9936103224754333, + 0.9973742961883545, + 0.9987013339996338, + 0.9987280964851379, + 0.995496392250061 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9877049922943115, + 0.9987271428108215, + 0.998798131942749, + 0.9985221028327942 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.25, + "POSITIVE": 0.75 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987310767173767, + 0.9987338185310364, + 0.9980168342590332, + 0.9919473528862, + 0.9988238215446472 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 0.8571428571428571, + "final_counts": { + "POSITIVE": 12, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + } + } }, { "season_code": "202301", @@ -260080,7 +561794,7 @@ "9:00", "10:15", "YSB MARSH - Yale Science Building MARSH", - "https:\/\/map.yale.edu\/?id=1910#!m\/563700" + "https://map.yale.edu/?id=1910#!m/563700" ] ], "Thursday": [ @@ -260088,7 +561802,7 @@ "9:00", "10:15", "YSB MARSH - Yale Science Building MARSH", - "https:\/\/map.yale.edu\/?id=1910#!m\/563700" + "https://map.yale.edu/?id=1910#!m/563700" ] ] }, @@ -260103,10 +561817,685 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84854\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84854/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9957060217857361, + 0.9983963370323181, + 0.9987702965736389, + 0.9993384480476379, + 0.995563268661499, + 0.998848557472229, + 0.998505711555481, + 0.9986794590950012, + 0.9978664517402649, + 0.9987805485725403, + 0.8332710266113281, + 0.9985344409942627, + 0.9988658428192139, + 0.9980286955833435, + 0.9988411068916321, + 0.9979686141014099, + 0.9842320680618286, + 0.9987119436264038, + 0.9986373782157898, + 0.9965710639953613, + 0.9982958436012268, + 0.99853515625, + 0.9974263310432434, + 0.9988835453987122, + 0.9995074272155762, + 0.8332710266113281, + 0.9908440709114075, + 0.9957789182662964, + 0.9978261590003967, + 0.9984598159790039, + 0.9986514449119568, + 0.9542851448059082, + 0.998741090297699, + 0.995273768901825, + 0.9976206421852112, + 0.998802661895752, + 0.9986287355422974, + 0.9981252551078796, + 0.9988033771514893, + 0.998895525932312, + 0.9979217648506165, + 0.9986355900764465, + 0.9983229041099548, + 0.9986674785614014, + 0.9983331561088562, + 0.9981325268745422, + 0.9982004165649414, + 0.9987947940826416, + 0.9988102912902832, + 0.9988331198692322, + 0.998475968837738, + 0.9988492727279663, + 0.997967541217804, + 0.998588502407074, + 0.9985595345497131, + 0.9987999200820923, + 0.9987727999687195, + 0.9926827549934387, + 0.9985735416412354, + 0.998753547668457, + 0.9988164901733398, + 0.9854896068572998, + 0.9976977705955505, + 0.9984960556030273, + 0.998335063457489, + 0.9943777918815613, + 0.9986881613731384, + 0.9970759153366089, + 0.9982156753540039, + 0.9986394047737122, + 0.9938712120056152, + 0.9969344139099121, + 0.9983464479446411, + 0.998645007610321, + 0.9943760633468628, + 0.9982286095619202, + 0.9926155805587769, + 0.9981200098991394, + 0.9986714124679565, + 0.9985120892524719, + 0.9984087347984314, + 0.9988582134246826, + 0.9987971782684326, + 0.9859678745269775, + 0.9982370138168335, + 0.9975293278694153, + 0.9969696402549744, + 0.9981050491333008, + 0.9987435936927795, + 0.9988685846328735, + 0.9986504912376404, + 0.9986410737037659, + 0.8332710266113281, + 0.998822033405304, + 0.9979312419891357, + 0.9989093542098999, + 0.9981157779693604, + 0.9985456466674805, + 0.99813312292099, + 0.9975791573524475, + 0.9988284707069397, + 0.9988631010055542 + ], + "sentiment_counts": { + "POSITIVE": 94, + "NEGATIVE": 8 + }, + "sentiment_distribution": { + "POSITIVE": 0.9215686274509803, + "NEGATIVE": 0.0784313725490196 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9215686274509803 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.997785210609436, + 0.9988498687744141, + 0.9985697269439697, + 0.998359739780426, + 0.9928559064865112, + 0.9988481998443604, + 0.9916354417800903, + 0.9995044469833374, + 0.9987149238586426, + 0.9989234805107117, + 0.9989116191864014, + 0.9989184141159058, + 0.9987666606903076, + 0.9987647533416748, + 0.9988968372344971, + 0.9994920492172241, + 0.9989238381385803, + 0.9994913339614868, + 0.9994827508926392, + 0.9982263445854187, + 0.9995081424713135, + 0.994878888130188, + 0.9989320635795593, + 0.999496340751648, + 0.9900509715080261, + 0.9988180994987488, + 0.9984726309776306, + 0.9989206790924072, + 0.9987354874610901, + 0.9994760155677795, + 0.9988973140716553, + 0.9989012479782104, + 0.9988056421279907, + 0.998356282711029, + 0.9989137649536133, + 0.9986463189125061, + 0.9989293217658997, + 0.9973716735839844, + 0.9988036155700684, + 0.9986655712127686, + 0.9908451437950134, + 0.9982427358627319, + 0.9989362359046936, + 0.995399534702301, + 0.998257577419281, + 0.9987540245056152, + 0.9943718910217285, + 0.9832941293716431, + 0.9994181394577026, + 0.9939607381820679, + 0.9986636638641357, + 0.9986292123794556, + 0.9869707822799683, + 0.9953317046165466, + 0.9986482262611389, + 0.9954794645309448, + 0.9988459348678589, + 0.9851312041282654, + 0.9994962215423584, + 0.9980888962745667, + 0.9985330104827881, + 0.9980475902557373, + 0.9986332058906555, + 0.9986251592636108, + 0.9988232254981995, + 0.9956852197647095, + 0.9989041090011597, + 0.9987026453018188, + 0.9895289540290833, + 0.9982047080993652, + 0.9983447790145874, + 0.998909592628479, + 0.9987529516220093, + 0.998927652835846, + 0.9965546131134033, + 0.9988870024681091, + 0.998874843120575, + 0.9986299276351929, + 0.9986182451248169, + 0.9988904595375061, + 0.9982571005821228, + 0.9983726143836975, + 0.9987938404083252, + 0.9993858337402344, + 0.9985598921775818, + 0.994134247303009, + 0.9985162615776062, + 0.9984220266342163, + 0.9877961874008179, + 0.9989056587219238, + 0.9971858859062195, + 0.9894683957099915, + 0.9989056587219238, + 0.995390772819519, + 0.9988178610801697, + 0.9988706707954407, + 0.9987236857414246, + 0.9987381100654602, + 0.9989364743232727, + 0.9972062706947327, + 0.9988799691200256 + ], + "sentiment_counts": { + "NEGATIVE": 22, + "POSITIVE": 79 + }, + "sentiment_distribution": { + "NEGATIVE": 0.21782178217821782, + "POSITIVE": 0.7821782178217822 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7821782178217822 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988545179367065, + 0.9987943172454834, + 0.9994895458221436, + 0.9955366849899292, + 0.9937028288841248, + 0.9988535642623901, + 0.9994581341743469, + 0.9895998239517212, + 0.9974656105041504, + 0.700718104839325, + 0.9988890290260315, + 0.9995052814483643, + 0.998842179775238, + 0.9988429546356201, + 0.9988638162612915, + 0.9983245730400085, + 0.9989330172538757, + 0.9987275004386902, + 0.9987685084342957, + 0.9988576173782349, + 0.9953336119651794, + 0.9989141225814819, + 0.9989148378372192, + 0.9995099306106567, + 0.9960653185844421, + 0.9987586736679077, + 0.9983124732971191, + 0.9987994432449341, + 0.9989162683486938, + 0.995817244052887, + 0.9989250302314758, + 0.9974592328071594, + 0.997117280960083, + 0.9986811280250549, + 0.9988783001899719, + 0.99854576587677, + 0.9989367127418518, + 0.9994781613349915, + 0.9986039996147156, + 0.9987154006958008, + 0.999152421951294, + 0.9977813363075256, + 0.9988958835601807, + 0.9988234639167786, + 0.9978014826774597, + 0.9900681972503662, + 0.9983722567558289, + 0.9987381100654602, + 0.9994654059410095, + 0.9960653185844421, + 0.9782708287239075, + 0.9938364624977112, + 0.997117280960083, + 0.9987514019012451, + 0.9982553124427795, + 0.9983006119728088, + 0.9987483024597168, + 0.9960015416145325, + 0.9991791844367981, + 0.6829744577407837, + 0.9988372921943665, + 0.9994248151779175, + 0.9946631193161011, + 0.9955321550369263, + 0.9987132549285889, + 0.9977285265922546, + 0.9988968372344971, + 0.9963952898979187, + 0.9988008737564087, + 0.998875081539154, + 0.9979496598243713, + 0.9988853335380554, + 0.9989013671875, + 0.9984482526779175, + 0.9989057779312134, + 0.9915626645088196, + 0.9987432360649109, + 0.9988924860954285, + 0.9989084005355835, + 0.9988665580749512, + 0.9988929629325867, + 0.9988725781440735, + 0.9988448619842529, + 0.9910309314727783, + 0.996421217918396, + 0.9987500905990601, + 0.9975625276565552, + 0.9984638690948486, + 0.9962217807769775, + 0.9988784193992615, + 0.9987278580665588, + 0.9989045858383179, + 0.9989256262779236, + 0.9988155364990234, + 0.9988860487937927, + 0.9988576173782349, + 0.9986879229545593, + 0.9988355040550232, + 0.998835027217865, + 0.9988396763801575, + 0.9989180564880371 + ], + "sentiment_counts": { + "POSITIVE": 83, + "NEGATIVE": 18 + }, + "sentiment_distribution": { + "POSITIVE": 0.8217821782178217, + "NEGATIVE": 0.1782178217821782 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8217821782178217 + ] + }, + "final_label": "POSITIVE", + "final_count": 256, + "final_proportion": 0.8421052631578947, + "final_counts": { + "POSITIVE": 256, + "NEGATIVE": 48 + }, + "final_distribution": { + "POSITIVE": 0.8421052631578947, + "NEGATIVE": 0.15789473684210525 + } + } }, { "season_code": "202301", @@ -260168,10 +562557,563 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84854\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84854/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9931656718254089, + 0.9932988882064819, + 0.9987340569496155, + 0.9984560012817383, + 0.9351113438606262, + 0.9924337863922119, + 0.9969362020492554, + 0.9842998385429382, + 0.9890410304069519, + 0.9831171035766602, + 0.9985718727111816, + 0.998722493648529, + 0.9979192614555359, + 0.9895251989364624, + 0.9966191053390503, + 0.998703122138977, + 0.998903751373291, + 0.9987000226974487, + 0.9962873458862305, + 0.9985287189483643, + 0.9924337863922119, + 0.9988613128662109, + 0.9985890984535217, + 0.998857855796814, + 0.9987618923187256, + 0.9969792366027832, + 0.99813312292099, + 0.9994199275970459, + 0.9921742677688599, + 0.9949508905410767, + 0.998359739780426, + 0.9988909363746643, + 0.998680055141449, + 0.9994027614593506, + 0.9987855553627014, + 0.9611027836799622, + 0.9958505630493164, + 0.998809814453125, + 0.9889119863510132, + 0.9988960027694702, + 0.9987082481384277, + 0.9695665240287781, + 0.9985337257385254, + 0.9975053668022156, + 0.9919496774673462, + 0.9876385927200317, + 0.9784610867500305, + 0.9913018941879272, + 0.9983415603637695, + 0.958283007144928, + 0.952523410320282, + 0.998801589012146, + 0.9966922998428345, + 0.9957492351531982, + 0.9989093542098999, + 0.9984182119369507, + 0.9988719820976257, + 0.9831021428108215, + 0.9983275532722473, + 0.9988529682159424, + 0.996702253818512, + 0.9989303946495056, + 0.8332710266113281, + 0.9988238215446472, + 0.9988293051719666, + 0.8332710266113281, + 0.9989019632339478, + 0.9695665240287781, + 0.9987363219261169, + 0.9973793029785156, + 0.9878736138343811, + 0.9984530210494995, + 0.9984629154205322, + 0.9988566637039185, + 0.9984999895095825, + 0.9988388419151306, + 0.9983034133911133, + 0.9984729886054993, + 0.9956848621368408, + 0.9979689717292786 + ], + "sentiment_counts": { + "POSITIVE": 74, + "NEGATIVE": 6 + }, + "sentiment_distribution": { + "POSITIVE": 0.925, + "NEGATIVE": 0.075 + }, + "sentiment_overall": [ + "POSITIVE", + 0.925 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989067316055298, + 0.9855768084526062, + 0.9987120628356934, + 0.9994019269943237, + 0.9987305998802185, + 0.9985424280166626, + 0.998607337474823, + 0.9973548650741577, + 0.9986602067947388, + 0.9986363053321838, + 0.9985314607620239, + 0.9886743426322937, + 0.9911922812461853, + 0.9995009899139404, + 0.9966233968734741, + 0.9989211559295654, + 0.9989374279975891, + 0.9986310601234436, + 0.9976099729537964, + 0.9972994923591614, + 0.9965173006057739, + 0.9986079335212708, + 0.9989364743232727, + 0.998881995677948, + 0.9983853101730347, + 0.9950042366981506, + 0.998893678188324, + 0.9994729161262512, + 0.9863829612731934, + 0.949722170829773, + 0.9994982481002808, + 0.9983497858047485, + 0.9994617104530334, + 0.9363119602203369, + 0.9994139671325684, + 0.9994825124740601, + 0.9994945526123047, + 0.9987611770629883, + 0.9986667633056641, + 0.9988341927528381, + 0.999504804611206, + 0.9133415222167969, + 0.9808903932571411, + 0.9994889497756958, + 0.9988601207733154, + 0.998789370059967, + 0.9944722056388855, + 0.9977430105209351, + 0.9964725375175476, + 0.9986289739608765, + 0.9988250136375427, + 0.9980335831642151, + 0.9985361099243164, + 0.9982720613479614, + 0.9994823932647705, + 0.998890221118927, + 0.9988840222358704, + 0.9736230969429016, + 0.9867772459983826, + 0.9988879561424255, + 0.9988341927528381, + 0.9987818598747253, + 0.9980296492576599, + 0.997580885887146, + 0.9989101886749268, + 0.9977694749832153, + 0.9988433122634888, + 0.998656153678894, + 0.9975234866142273, + 0.9955281615257263, + 0.9946677684783936, + 0.9977739453315735, + 0.9987794756889343, + 0.9989192485809326, + 0.9988958835601807, + 0.9988642930984497, + 0.9988322854042053, + 0.9988855719566345 + ], + "sentiment_counts": { + "POSITIVE": 52, + "NEGATIVE": 26 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984531402587891, + 0.9982628226280212, + 0.9987484216690063, + 0.997117280960083, + 0.9974592328071594, + 0.9988393187522888, + 0.9981922507286072, + 0.9978984594345093, + 0.9982463121414185, + 0.9820570945739746, + 0.9987094402313232, + 0.998832643032074, + 0.9983409643173218, + 0.9987327456474304, + 0.9954245686531067, + 0.9980598092079163, + 0.9980734586715698, + 0.9981852173805237, + 0.9989193677902222, + 0.9988154172897339, + 0.9982572197914124, + 0.9988023042678833, + 0.9989001750946045, + 0.9988429546356201, + 0.9908897280693054, + 0.9988962411880493, + 0.9988018274307251, + 0.9989284873008728, + 0.9983810186386108, + 0.9988238215446472, + 0.9954760670661926, + 0.9922966361045837, + 0.9983787536621094, + 0.998870313167572, + 0.9988504648208618, + 0.9988682270050049, + 0.9987707734107971, + 0.9983308911323547, + 0.9992780089378357, + 0.9994940757751465, + 0.994709849357605, + 0.9936606287956238, + 0.997117280960083, + 0.9986667633056641, + 0.9964948296546936, + 0.9988594055175781, + 0.9982014894485474, + 0.9990482926368713, + 0.997892439365387, + 0.998875081539154, + 0.9985576272010803, + 0.9988738894462585, + 0.9988788962364197, + 0.9989386200904846, + 0.9974592328071594, + 0.9986168146133423, + 0.9988872408866882, + 0.9981604218482971, + 0.9863064289093018, + 0.9987984895706177, + 0.9987689852714539, + 0.9989162683486938, + 0.9987775683403015, + 0.9987125396728516, + 0.9988986253738403, + 0.998627781867981, + 0.9989244341850281, + 0.9964451193809509, + 0.9982346296310425, + 0.9988061189651489, + 0.9987509250640869, + 0.9946428537368774, + 0.9974592328071594, + 0.9974592328071594, + 0.9987552165985107, + 0.9987506866455078, + 0.9994992017745972, + 0.9909997582435608, + 0.9981922507286072, + 0.9988752007484436, + 0.9988277554512024, + 0.9960544109344482, + 0.998913049697876, + 0.9988613128662109, + 0.9988376498222351 + ], + "sentiment_counts": { + "POSITIVE": 75, + "NEGATIVE": 10 + }, + "sentiment_distribution": { + "POSITIVE": 0.8823529411764706, + "NEGATIVE": 0.11764705882352941 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8823529411764706 + ] + }, + "final_label": "POSITIVE", + "final_count": 201, + "final_proportion": 0.8271604938271605, + "final_counts": { + "POSITIVE": 201, + "NEGATIVE": 42 + }, + "final_distribution": { + "POSITIVE": 0.8271604938271605, + "NEGATIVE": 0.1728395061728395 + } + } }, { "season_code": "202301", @@ -260233,10 +563175,111 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85116\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85116/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985811710357666, + 0.9982442855834961, + 0.99828040599823, + 0.998134195804596, + 0.9988487958908081 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988825917243958, + 0.9981696605682373, + 0.9860562086105347, + 0.9894806146621704, + 0.999483585357666, + 0.998816967010498, + 0.9989206790924072 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.42857142857142855, + "NEGATIVE": 0.5714285714285714 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.5714285714285714 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9971264004707336, + 0.9753815531730652, + 0.998755931854248, + 0.9986746311187744, + 0.9988407492637634 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 0.7058823529411765, + "final_counts": { + "POSITIVE": 12, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.7058823529411765, + "NEGATIVE": 0.29411764705882354 + } + } }, { "season_code": "202301", @@ -260282,7 +563325,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -260319,7 +563390,7 @@ "13:30", "15:20", "RKZ 301 - Rosenkranz Hall 301", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -260331,10 +563402,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84703\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84703/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -260375,7 +563474,7 @@ "13:30", "15:20", "WLH 006 - William L. Harkness Hall 006", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -260387,10 +563486,113 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85961\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85961/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984681010246277, + 0.9989023208618164, + 0.9987999200820923, + 0.9988932013511658, + 0.9989064931869507, + 0.9989149570465088, + 0.998826801776886 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989259839057922, + 0.9979013204574585, + 0.9987432360649109, + 0.9989210367202759, + 0.9988973140716553, + 0.9988835453987122 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9971141815185547, + 0.9985865354537964, + 0.9988549947738647, + 0.9988499879837036, + 0.9986931681632996, + 0.9988263249397278 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 19 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -260431,7 +563633,7 @@ "15:30", "17:20", "LC 205 - Linsly-Chittenden Hall 205", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -260443,10 +563645,85 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84595\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84595/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987013339996338 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9972383975982666 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988670349121094, + 0.9995020627975464 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "final_label": "POSITIVE", + "final_count": 3, + "final_proportion": 0.75, + "final_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + } + } }, { "season_code": "202301", @@ -260484,7 +563761,7 @@ "13:30", "15:20", "RKZ 102 - Rosenkranz Hall 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -260496,15 +563773,114 @@ "classnotes": "This course requires instructor permission. Please list any relevant course work and interest in taking this class.", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84676\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84676/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "", - "description": "This seminar explores key concepts in modern political philosophy at a level appropriate for graduate students (to help prepare for the political theory field exam) and for advanced undergraduates who have completed substantial course work in intellectual history and\/or political theory.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989325404167175, + 0.9986944794654846, + 0.998902440071106, + 0.9988767504692078 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988976716995239, + 0.9969141483306885, + 0.99888676404953, + 0.9971241354942322, + 0.9989297986030579, + 0.9961296319961548 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998887836933136, + 0.9993135929107666, + 0.9989038705825806, + 0.9988352656364441, + 0.9988105297088623, + 0.9976664781570435 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 0.875, + "final_counts": { + "POSITIVE": 14, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + } + } + }, + { + "season_code": "202301", + "requirements": "", + "description": "This seminar explores key concepts in modern political philosophy at a level appropriate for graduate students (to help prepare for the political theory field exam) and for advanced undergraduates who have completed substantial course work in intellectual history and/or political theory.", "short_title": "Advanced Topics in Modern Pol...", "title": "Advanced Topics in Modern Political Philosophy", "school": "GS", @@ -260541,7 +563917,7 @@ "13:30", "15:20", "RKZ 102 - Rosenkranz Hall 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -260553,10 +563929,109 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85403\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85403/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986910223960876, + 0.9988477230072021, + 0.9984325766563416, + 0.9987545013427734, + 0.9986769556999207, + 0.9987761378288269 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9969527721405029, + 0.9985860586166382, + 0.998845100402832, + 0.9859194755554199, + 0.9987008571624756, + 0.9988622665405273 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985302686691284, + 0.9989249110221863, + 0.9988755583763123, + 0.9988887906074524 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 0.9375, + "final_counts": { + "POSITIVE": 15, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9375, + "NEGATIVE": 0.0625 + } + } }, { "season_code": "202301", @@ -260594,7 +564069,7 @@ "13:30", "15:20", "RKZ 04 - Rosenkranz Hall 04", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -260606,10 +564081,115 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85250\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85250/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998650848865509, + 0.9989295601844788, + 0.9980345368385315, + 0.998918890953064, + 0.9987584352493286, + 0.998694121837616, + 0.9987265467643738 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988980293273926, + 0.9986818432807922, + 0.9989333748817444, + 0.9989297986030579, + 0.9987769722938538, + 0.9989342093467712 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989272952079773, + 0.9988628625869751, + 0.9921017289161682, + 0.9989270567893982, + 0.9988847374916077, + 0.9960964322090149, + 0.998910665512085 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 20 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -260646,7 +564226,7 @@ "9:25", "11:15", "RKZ 202 - Rosenkranz Hall 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -260660,10 +564240,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84685\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84685/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -260700,7 +564308,7 @@ "16:10", "18:00", "SLB 110 - Sterling Law Buildings 110", - "https:\/\/map.yale.edu\/?id=1910#!m\/531532" + "https://map.yale.edu/?id=1910#!m/531532" ] ], "Tuesday": [ @@ -260708,7 +564316,7 @@ "16:10", "18:00", "SLB 110 - Sterling Law Buildings 110", - "https:\/\/map.yale.edu\/?id=1910#!m\/531532" + "https://map.yale.edu/?id=1910#!m/531532" ] ] }, @@ -260720,10 +564328,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84346\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84346/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -260764,7 +564400,7 @@ "13:00", "15:30", "HLH28 A06 - 28 Hillhouse Avenue A06", - "https:\/\/map.yale.edu\/?id=1910#!m\/559988" + "https://map.yale.edu/?id=1910#!m/559988" ] ] }, @@ -260776,10 +564412,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83841\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83841/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -260816,7 +564459,7 @@ "15:10", "17:00", "SLB 111 - Sterling Law Buildings 111", - "https:\/\/map.yale.edu\/?id=1910#!m\/531532" + "https://map.yale.edu/?id=1910#!m/531532" ] ] }, @@ -260828,15 +564471,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86317\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86317/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This weekly workshop is dedicated to group discussion of work-in-progress by visiting scholars, Yale graduate students, and in-house faculty from Sociology and affiliated disciplines. Papers are distributed a week ahead of time and also posted on the website of the Center for Comparative Research (http:\/\/ccr.yale.edu). Students who are enrolled for credit are expected to present a paper-in-progress.", + "description": "This weekly workshop is dedicated to group discussion of work-in-progress by visiting scholars, Yale graduate students, and in-house faculty from Sociology and affiliated disciplines. Papers are distributed a week ahead of time and also posted on the website of the Center for Comparative Research (http://ccr.yale.edu). Students who are enrolled for credit are expected to present a paper-in-progress.", "short_title": "Comparative Research Workshop", "title": "Comparative Research Workshop", "school": "GS", @@ -260869,7 +564540,7 @@ "12:00", "13:30", "WTS A32 - Watson Center 60 Sachem Street A32", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -260884,7 +564555,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -260923,7 +564622,7 @@ "15:30", "17:20", "RKZ 202 - Rosenkranz Hall 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -260935,10 +564634,95 @@ "classnotes": "This course requires instructor permission. Please submit the following information with your registration request: your major, any previous coursework related to Europe, and what issues or problems pertaining to or involving the EU are of greatest interest to you. ", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85862\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85862/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987583160400391, + 0.9986431002616882, + 0.9961695075035095, + 0.9989149570465088 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987708926200867, + 0.9988362193107605, + 0.9989363551139832 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9978603720664978, + 0.9988988637924194, + 0.998896598815918 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 10 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -260978,7 +564762,7 @@ "15:30", "17:20", "RKZ 301 - Rosenkranz Hall 301", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -260987,13 +564771,94 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "This course requires instructor permission. Please submit the following information with your request to register.\n1. Full Name:\n2.\tRank: Undergraduate (major)? Master? PhD candidate?\n3.\tMajor and year\n4.\tGPA\n5.\tDo you wish you write your senior essay in one the seminars selected? If yes, on what topic?\n6.\tDo you have any previous course work that is related to State Formation\/State Building?\n7.\tDid you shop this course last year but did not get in?\n8.\tWhy do you wish to take this seminar?\n9.\tWhich period and region are you eager to study in this seminar? Why?\n10.\tDo you have any notion of quantitative analysis and or game theory? List relevant course work.\n", + "classnotes": "This course requires instructor permission. Please submit the following information with your request to register.\n1. Full Name:\n2.\tRank: Undergraduate (major)? Master? PhD candidate?\n3.\tMajor and year\n4.\tGPA\n5.\tDo you wish you write your senior essay in one the seminars selected? If yes, on what topic?\n6.\tDo you have any previous course work that is related to State Formation/State Building?\n7.\tDid you shop this course last year but did not get in?\n8.\tWhy do you wish to take this seminar?\n9.\tWhich period and region are you eager to study in this seminar? Why?\n10.\tDo you have any notion of quantitative analysis and or game theory? List relevant course work.\n", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85435\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85435/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988842606544495, + 0.9927089214324951, + 0.9987228512763977 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998900294303894, + 0.9988118410110474 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987723231315613, + 0.997117280960083, + 0.9987229704856873 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 8, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 8 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -261031,7 +564896,7 @@ "13:30", "15:20", "RKZ 06 - Rosenkranz Hall 06", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -261045,10 +564910,115 @@ "classnotes": "This course requires instructor permission. Students with computer science and data backgrounds, please note this in your application. ", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85934\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85934/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9964053630828857, + 0.9988884329795837, + 0.9988299012184143, + 0.9987131357192993, + 0.9986250400543213, + 0.9984713196754456, + 0.9935386776924133 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9995111227035522, + 0.998830258846283, + 0.998712420463562, + 0.9983623623847961, + 0.9885846972465515, + 0.9919513463973999, + 0.9972251653671265 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 4 + }, + "sentiment_distribution": { + "NEGATIVE": 0.42857142857142855, + "POSITIVE": 0.5714285714285714 + }, + "sentiment_overall": [ + "POSITIVE", + 0.5714285714285714 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9995083808898926, + 0.9989155530929565, + 0.9995073080062866, + 0.9994738698005676, + 0.9994871616363525 + ], + "sentiment_counts": { + "NEGATIVE": 4, + "POSITIVE": 1 + }, + "sentiment_distribution": { + "NEGATIVE": 0.8, + "POSITIVE": 0.2 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 0.631578947368421, + "final_counts": { + "POSITIVE": 12, + "NEGATIVE": 7 + }, + "final_distribution": { + "POSITIVE": 0.631578947368421, + "NEGATIVE": 0.3684210526315789 + } + } }, { "season_code": "202301", @@ -261088,7 +565058,7 @@ "13:30", "15:20", "RKZ 202 - Rosenkranz Hall 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -261100,13 +565070,102 @@ ], "regnotes": "", "rp_attr": "", - "classnotes": "This course requires instructor permission. Please submit the following information with your registration request: year, major, related courses taken (if any), 2-3 sentences why you are interested in the course, plan to write senior essay in this seminar (Yes\/No\/Undecided).", + "classnotes": "This course requires instructor permission. Please submit the following information with your registration request: year, major, related courses taken (if any), 2-3 sentences why you are interested in the course, plan to write senior essay in this seminar (Yes/No/Undecided).", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85148\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85148/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988574981689453, + 0.9989180564880371, + 0.9986271858215332, + 0.9987420439720154 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998923122882843, + 0.99891197681427, + 0.9989261031150818, + 0.9988885521888733 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989087581634521, + 0.9989331364631653, + 0.9988707900047302, + 0.9989271759986877 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 12 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -261143,7 +565202,7 @@ "9:25", "11:15", "RKZ 05 - Rosenkranz Hall 05", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -261155,10 +565214,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84689\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84689/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -261195,7 +565282,7 @@ "13:30", "15:20", "RKZ 301 - Rosenkranz Hall 301", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -261207,10 +565294,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84970\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84970/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -261251,7 +565366,7 @@ "15:30", "17:20", "RKZ 102 - Rosenkranz Hall 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -261263,10 +565378,83 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84667\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84667/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9919912219047546 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.99886155128479 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9943179488182068, + 0.9956592917442322 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 4, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 4 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -261304,7 +565492,7 @@ "13:30", "15:20", "RKZ 202 - Rosenkranz Hall 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -261318,10 +565506,101 @@ "classnotes": "Preference will be given to graduate students and political science majors writing senior essays. Please provide: name, year, department, relevant prior coursework, and a brief statement of why you want to be in course, including whether you plan to write a senior essay in it.", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84674\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84674/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9972813129425049, + 0.9988131523132324, + 0.9989023208618164, + 0.998915433883667 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986225366592407, + 0.9988698363304138, + 0.998932421207428, + 0.9967284202575684 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986448884010315, + 0.9979658126831055, + 0.9989180564880371, + 0.9985026121139526, + 0.9988203644752502 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 13 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -261358,7 +565637,7 @@ "13:10", "15:00", "SLB 110 - Sterling Law Buildings 110", - "https:\/\/map.yale.edu\/?id=1910#!m\/531532" + "https://map.yale.edu/?id=1910#!m/531532" ] ] }, @@ -261370,10 +565649,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84348\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84348/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -261410,7 +565717,7 @@ "9:25", "11:15", "RKZ 301 - Rosenkranz Hall 301", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -261421,11 +565728,39 @@ "rp_attr": "", "classnotes": "", "final_exam": "", - "course_home_url": "https:\/\/yale.instructure.com\/courses\/84693", + "course_home_url": "https://yale.instructure.com/courses/84693", "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -261464,12 +565799,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "The ISS Brady-Johnson Colloquium in Grand Strategy and International History engages work in the fields of international security, grand strategy, and international history. The forum attracts outside speakers, Yale faculty, and graduate students, providing a venue to develop ideas, polish work-in-progress, or showcase completed projects. Typically, the speaker prepares a twenty-minute presentation, followed by a question-and-answer session. Open only to graduate students in the Political Science department. Graded Satisfactory\/Unsatisfactory only.", + "description": "The ISS Brady-Johnson Colloquium in Grand Strategy and International History engages work in the fields of international security, grand strategy, and international history. The forum attracts outside speakers, Yale faculty, and graduate students, providing a venue to develop ideas, polish work-in-progress, or showcase completed projects. Typically, the speaker prepares a twenty-minute presentation, followed by a question-and-answer session. Open only to graduate students in the Political Science department. Graded Satisfactory/Unsatisfactory only.", "short_title": "ISS Workshop", "title": "ISS Workshop", "school": "GS", @@ -261513,15 +565876,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84696\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84696/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "The course meets throughout the year in conjunction with the ISPS American Politics Workshop. It serves as a forum for graduate students in American politics to discuss current research in the field as presented by outside speakers and current graduate students. Open only to graduate students in the Political Science department. Can be taken as Satisfactory\/Unsatisfactory only.", + "description": "The course meets throughout the year in conjunction with the ISPS American Politics Workshop. It serves as a forum for graduate students in American politics to discuss current research in the field as presented by outside speakers and current graduate students. Open only to graduate students in the Political Science department. Can be taken as Satisfactory/Unsatisfactory only.", "short_title": "American Politics Workshop", "title": "American Politics Workshop", "school": "GS", @@ -261571,12 +565962,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "A forum for the presentation of ongoing research by Yale graduate students, Yale faculty, and invited external speakers in a rigorous and critical environment. The workshop\u2019s methodological and substantive range is broad, covering the entire range of comparative politics. There are no formal presentations. Papers are read in advance by participants; a graduate student critically discusses the week\u2019s paper, the presenter responds, and discussion ensues. Detailed information can be found at https:\/\/campuspress.yale.edu\/cpworkshop. Open only to graduate students in the Political Science department. Can be taken as Satisfactory\/Unsatisfactory only.", + "description": "A forum for the presentation of ongoing research by Yale graduate students, Yale faculty, and invited external speakers in a rigorous and critical environment. The workshop\u2019s methodological and substantive range is broad, covering the entire range of comparative politics. There are no formal presentations. Papers are read in advance by participants; a graduate student critically discusses the week\u2019s paper, the presenter responds, and discussion ensues. Detailed information can be found at https://campuspress.yale.edu/cpworkshop. Open only to graduate students in the Political Science department. Can be taken as Satisfactory/Unsatisfactory only.", "short_title": "Comparative Politics Workshop", "title": "Comparative Politics Workshop", "school": "GS", @@ -261614,7 +566033,7 @@ "12:00", "13:20", "LUCE 202 - Luce Hall 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ] }, @@ -261629,12 +566048,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "An interdisciplinary forum that focuses on theoretical and philosophical approaches to the study of politics. The workshop seeks to engage with (and expose students to) a broad range of current scholarship in political theory and political philosophy, including work in the history of political thought; theoretical investigations of contemporary political phenomena; philosophical analyses of key political concepts; conceptual issues in ethics, law, and public policy; and contributions to normative political theory. The workshop features ongoing research by Yale faculty members, visiting scholars, invited guests, and advanced graduate students. Papers are distributed and read in advance, and discussions are opened by a graduate student commentator. Detailed information can be found at http:\/\/politicaltheory.yale.edu. Open only to graduate students in the Political Science department. Can be taken as Satisfactory\/Unsatisfactory only.", + "description": "An interdisciplinary forum that focuses on theoretical and philosophical approaches to the study of politics. The workshop seeks to engage with (and expose students to) a broad range of current scholarship in political theory and political philosophy, including work in the history of political thought; theoretical investigations of contemporary political phenomena; philosophical analyses of key political concepts; conceptual issues in ethics, law, and public policy; and contributions to normative political theory. The workshop features ongoing research by Yale faculty members, visiting scholars, invited guests, and advanced graduate students. Papers are distributed and read in advance, and discussions are opened by a graduate student commentator. Detailed information can be found at http://politicaltheory.yale.edu. Open only to graduate students in the Political Science department. Can be taken as Satisfactory/Unsatisfactory only.", "short_title": "Political Theory Workshop", "title": "Political Theory Workshop", "school": "GS", @@ -261669,7 +566116,7 @@ "16:15", "18:00", "RKZ 05 - Rosenkranz Hall 05", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -261684,12 +566131,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This seminar series engages research on the interaction between economics and politics as well as research that employs the methods of political economists to study a wide range of social phenomena. The workshop serves as a forum for graduate students and faculty to present their own work and to discuss current research in the field as presented by outside speakers, faculty, and students. Detailed information can be found at http:\/\/leitner.yale.edu\/seminars. Open only to graduate students in the Political Science department. Can be taken as Satisfactory\/Unsatisfactory only.", + "description": "This seminar series engages research on the interaction between economics and politics as well as research that employs the methods of political economists to study a wide range of social phenomena. The workshop serves as a forum for graduate students and faculty to present their own work and to discuss current research in the field as presented by outside speakers, faculty, and students. Detailed information can be found at http://leitner.yale.edu/seminars. Open only to graduate students in the Political Science department. Can be taken as Satisfactory/Unsatisfactory only.", "short_title": "Leitner Political Economy Sem...", "title": "Leitner Political Economy Seminar Series", "school": "GS", @@ -261721,7 +566196,7 @@ "12:00", "13:20", "LUCE 202 - Luce Hall 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ] }, @@ -261736,12 +566211,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This workshop engages work in the fields of international security, international political economy, and international institutions. The forum attracts outside speakers, Yale faculty, and graduate students. It provides a venue to develop ideas, polish work in progress, or showcase completed projects. Typically, the speaker would prepare a 35- to 40-minute presentation, followed by a question-and-answer session. More information can be found at http:\/\/irworkshop.yale.edu. Open only to graduate students in the Political Science department. Can be taken as Satisfactory\/Unsatisfactory only.", + "description": "This workshop engages work in the fields of international security, international political economy, and international institutions. The forum attracts outside speakers, Yale faculty, and graduate students. It provides a venue to develop ideas, polish work in progress, or showcase completed projects. Typically, the speaker would prepare a 35- to 40-minute presentation, followed by a question-and-answer session. More information can be found at http://irworkshop.yale.edu. Open only to graduate students in the Political Science department. Can be taken as Satisfactory/Unsatisfactory only.", "short_title": "International Relations Workshop", "title": "International Relations Workshop", "school": "GS", @@ -261776,7 +566279,7 @@ "12:00", "13:20", "RKZ 05 - Rosenkranz Hall 05", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -261791,7 +566294,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -261828,7 +566359,7 @@ "15:30", "17:00", "RKZ 102 - Rosenkranz Hall 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -261845,7 +566376,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -261882,7 +566441,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -261919,7 +566506,7 @@ "9:25", "10:15", "CO493 208 - 493 College Street 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560001" + "https://map.yale.edu/?id=1910#!m/560001" ] ], "Tuesday": [ @@ -261927,7 +566514,7 @@ "9:25", "10:15", "CO493 208 - 493 College Street 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560001" + "https://map.yale.edu/?id=1910#!m/560001" ] ], "Wednesday": [ @@ -261935,7 +566522,7 @@ "9:25", "10:15", "CO493 208 - 493 College Street 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560001" + "https://map.yale.edu/?id=1910#!m/560001" ] ], "Thursday": [ @@ -261943,7 +566530,7 @@ "9:25", "10:15", "CO493 208 - 493 College Street 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560001" + "https://map.yale.edu/?id=1910#!m/560001" ] ], "Friday": [ @@ -261951,7 +566538,7 @@ "9:25", "10:15", "CO493 208 - 493 College Street 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560001" + "https://map.yale.edu/?id=1910#!m/560001" ] ] }, @@ -261965,10 +566552,109 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84722\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84722/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982343912124634, + 0.9931459426879883, + 0.994143545627594, + 0.9968363046646118, + 0.9983882904052734, + 0.9987848401069641, + 0.9988961219787598 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985462427139282, + 0.9911977648735046, + 0.9988644123077393, + 0.9989251494407654 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989263415336609, + 0.997117280960083, + 0.9987695813179016, + 0.9987772107124329, + 0.9988871216773987, + 0.9988036155700684 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 17 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -262005,7 +566691,7 @@ "10:30", "11:20", "CO493 208 - 493 College Street 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560001" + "https://map.yale.edu/?id=1910#!m/560001" ] ], "Tuesday": [ @@ -262013,7 +566699,7 @@ "10:30", "11:20", "CO493 208 - 493 College Street 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560001" + "https://map.yale.edu/?id=1910#!m/560001" ] ], "Wednesday": [ @@ -262021,7 +566707,7 @@ "10:30", "11:20", "CO493 208 - 493 College Street 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560001" + "https://map.yale.edu/?id=1910#!m/560001" ] ], "Thursday": [ @@ -262029,7 +566715,7 @@ "10:30", "11:20", "CO493 208 - 493 College Street 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560001" + "https://map.yale.edu/?id=1910#!m/560001" ] ], "Friday": [ @@ -262037,7 +566723,7 @@ "10:30", "11:20", "CO493 208 - 493 College Street 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560001" + "https://map.yale.edu/?id=1910#!m/560001" ] ] }, @@ -262051,10 +566737,93 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84726\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84726/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988524913787842, + 0.9988686442375183, + 0.9988297820091248, + 0.998611330986023 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9970255494117737, + 0.9988763928413391 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988914132118225, + 0.9988762736320496, + 0.998925507068634 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 9 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -262091,7 +566860,7 @@ "8:00", "8:50", "CO493 208 - 493 College Street 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560001" + "https://map.yale.edu/?id=1910#!m/560001" ] ], "Tuesday": [ @@ -262099,7 +566868,7 @@ "8:00", "8:50", "CO493 208 - 493 College Street 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560001" + "https://map.yale.edu/?id=1910#!m/560001" ] ], "Wednesday": [ @@ -262107,7 +566876,7 @@ "8:00", "8:50", "CO493 208 - 493 College Street 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560001" + "https://map.yale.edu/?id=1910#!m/560001" ] ], "Thursday": [ @@ -262115,7 +566884,7 @@ "8:00", "8:50", "CO493 208 - 493 College Street 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560001" + "https://map.yale.edu/?id=1910#!m/560001" ] ], "Friday": [ @@ -262123,7 +566892,7 @@ "8:00", "8:50", "CO493 208 - 493 College Street 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560001" + "https://map.yale.edu/?id=1910#!m/560001" ] ] }, @@ -262140,7 +566909,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -262178,7 +566975,7 @@ "13:00", "14:15", "HQ 132 - Humanities Quadrangle 132", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -262186,7 +566983,7 @@ "13:00", "14:15", "HQ 132 - Humanities Quadrangle 132", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Saturday": [ @@ -262194,7 +566991,7 @@ "19:00", "22:00", "HQ 109 - Humanities Quadrangle 109", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -262208,10 +567005,107 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84729\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84729/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986767172813416, + 0.9988625049591064, + 0.998883068561554, + 0.9988157749176025, + 0.9988585710525513, + 0.998923122882843 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989161491394043, + 0.9988330006599426, + 0.9989376664161682, + 0.9987642765045166, + 0.9988202452659607 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983280301094055, + 0.9989286065101624, + 0.9989275336265564, + 0.9989224672317505, + 0.9988356232643127 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 16 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -262242,7 +567136,7 @@ "18:10", "20:00", "DOW 420 - Dow Hall 420", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ], "Wednesday": [ @@ -262250,7 +567144,7 @@ "18:10", "20:00", "DOW 420 - Dow Hall 420", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ] }, @@ -262267,7 +567161,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -262306,7 +567228,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -262343,7 +567293,7 @@ "9:25", "10:15", "LC 205 - Linsly-Chittenden Hall 205", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Tuesday": [ @@ -262351,7 +567301,7 @@ "9:25", "10:15", "LC 205 - Linsly-Chittenden Hall 205", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -262359,7 +567309,7 @@ "9:25", "10:15", "LC 205 - Linsly-Chittenden Hall 205", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -262367,7 +567317,7 @@ "9:25", "10:15", "LC 205 - Linsly-Chittenden Hall 205", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Friday": [ @@ -262375,7 +567325,7 @@ "9:25", "10:15", "LC 205 - Linsly-Chittenden Hall 205", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -262389,10 +567339,105 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84732\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84732/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988793730735779, + 0.9987496137619019, + 0.9988006353378296, + 0.9988330006599426, + 0.9987618923187256 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988811612129211, + 0.9957417249679565, + 0.9989380240440369, + 0.9987932443618774, + 0.9988856911659241 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988885521888733, + 0.9989336133003235, + 0.9989080429077148, + 0.9989007711410522 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 0.9285714285714286, + "final_counts": { + "POSITIVE": 13, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9285714285714286, + "NEGATIVE": 0.07142857142857142 + } + } }, { "season_code": "202301", @@ -262429,7 +567474,7 @@ "10:30", "11:20", "LC 205 - Linsly-Chittenden Hall 205", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Tuesday": [ @@ -262437,7 +567482,7 @@ "10:30", "11:20", "LC 205 - Linsly-Chittenden Hall 205", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -262445,7 +567490,7 @@ "10:30", "11:20", "LC 205 - Linsly-Chittenden Hall 205", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -262453,7 +567498,7 @@ "10:30", "11:20", "LC 205 - Linsly-Chittenden Hall 205", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Friday": [ @@ -262461,7 +567506,7 @@ "10:30", "11:20", "LC 205 - Linsly-Chittenden Hall 205", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -262475,10 +567520,135 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85699\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85699/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988942742347717, + 0.9989132881164551, + 0.9987614154815674, + 0.9989336133003235, + 0.997814416885376, + 0.9987999200820923, + 0.998729407787323, + 0.9972768425941467, + 0.9986633062362671, + 0.9984191656112671 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989198446273804, + 0.9989356398582458, + 0.9985538125038147, + 0.9986897110939026, + 0.9988698363304138, + 0.9989137649536133, + 0.99880051612854, + 0.9989162683486938, + 0.9989309906959534, + 0.9977548718452454 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982553124427795, + 0.9987062215805054, + 0.9989012479782104, + 0.9988594055175781, + 0.9980168342590332, + 0.9987926483154297, + 0.9987468719482422, + 0.997117280960083, + 0.9984703660011292, + 0.9988207221031189 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 30, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 30 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -262515,7 +567685,7 @@ "11:35", "12:25", "LC 205 - Linsly-Chittenden Hall 205", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Tuesday": [ @@ -262523,7 +567693,7 @@ "11:35", "12:25", "LC 205 - Linsly-Chittenden Hall 205", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -262531,7 +567701,7 @@ "11:35", "12:25", "LC 205 - Linsly-Chittenden Hall 205", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -262539,7 +567709,7 @@ "11:35", "12:25", "LC 205 - Linsly-Chittenden Hall 205", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Friday": [ @@ -262547,7 +567717,7 @@ "11:35", "12:25", "LC 205 - Linsly-Chittenden Hall 205", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -262561,10 +567731,101 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85700\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85700/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988911747932434, + 0.9987971782684326, + 0.9985595345497131, + 0.9987447261810303 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988607168197632, + 0.9989363551139832, + 0.9986922144889832, + 0.9954749941825867 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988834261894226, + 0.998865008354187, + 0.9989318251609802, + 0.9989105463027954 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 0.9166666666666666, + "final_counts": { + "POSITIVE": 11, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + } + } }, { "season_code": "202301", @@ -262601,7 +567862,7 @@ "9:25", "10:15", "WLH 113 - William L. Harkness Hall 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Tuesday": [ @@ -262609,7 +567870,7 @@ "9:25", "10:15", "WLH 113 - William L. Harkness Hall 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -262617,7 +567878,7 @@ "9:25", "10:15", "WLH 113 - William L. Harkness Hall 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -262625,7 +567886,7 @@ "9:25", "10:15", "WLH 113 - William L. Harkness Hall 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Friday": [ @@ -262633,7 +567894,7 @@ "9:25", "10:15", "WLH 113 - William L. Harkness Hall 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -262647,10 +567908,127 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84736\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84736/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988806843757629, + 0.9988880753517151, + 0.9988065958023071, + 0.9988654851913452, + 0.9989064931869507, + 0.9988564252853394, + 0.9988899827003479, + 0.998927891254425, + 0.9987140893936157 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9987853169441223, + 0.9988721013069153, + 0.9988994598388672, + 0.9989252686500549, + 0.9987742304801941, + 0.9988844990730286, + 0.9989206790924072, + 0.9979419112205505 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989271759986877, + 0.9988777041435242, + 0.9976508021354675, + 0.998927652835846, + 0.9988905787467957, + 0.9988024234771729, + 0.9988337159156799, + 0.9986567497253418 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 24, + "final_proportion": 0.96, + "final_counts": { + "POSITIVE": 24, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.96, + "NEGATIVE": 0.04 + } + } }, { "season_code": "202301", @@ -262687,7 +568065,7 @@ "10:30", "11:20", "LC 105 - Linsly-Chittenden Hall 105", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Tuesday": [ @@ -262695,7 +568073,7 @@ "10:30", "11:20", "LC 105 - Linsly-Chittenden Hall 105", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -262703,7 +568081,7 @@ "10:30", "11:20", "LC 105 - Linsly-Chittenden Hall 105", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -262711,7 +568089,7 @@ "10:30", "11:20", "LC 105 - Linsly-Chittenden Hall 105", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Friday": [ @@ -262719,7 +568097,7 @@ "10:30", "11:20", "LC 105 - Linsly-Chittenden Hall 105", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -262733,15 +568111,92 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85701\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85701/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986724853515625, + 0.9987000226974487 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988453388214111, + 0.9988471269607544 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983124732971191, + 0.9989194869995117 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 6 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", "requirements": "Prerequisite: PORT 140 or equivalent.", - "description": "This course\u00a0analyzes how a variety of theater plays from Brazil, Angola, Guinea Bissau, and Portugal articulate sociocultural, historical, discursive, musical, and aesthetic elements to oppose, ironize, resist, or dismantle structures of power or authoritarianism that subtly or violently oppress individual or collective emancipation\/ imagination. We study how a variety of authors designed different destinies for the underrepresentation of women, undocumented people, working-class, Black people, and LGBTQIA+ by subverting, disclosing or decolonizing a set of beliefs (conscious or unconscious) that are still maintained by a capitalist neoliberalism in the form of gender, racial, and class violence. The study of plays also aims at promoting cooperative and action-oriented learning while enhancing transdisciplinary, intercultural and translingual competences. Students are invited to engage in practices with theatrical readings, production of clips, and an essay or video-essay. In the end, students have the opportunity to submit their production to be published in the Yale Portuguese Students\u2019 Digital Magazine. Conducted in Portuguese.\u00a0This course counts towards a requirement for the Advanced Language Certificate in Portuguese from the Yale Department of Spanish and Portuguese.", + "description": "This course\u00a0analyzes how a variety of theater plays from Brazil, Angola, Guinea Bissau, and Portugal articulate sociocultural, historical, discursive, musical, and aesthetic elements to oppose, ironize, resist, or dismantle structures of power or authoritarianism that subtly or violently oppress individual or collective emancipation/ imagination. We study how a variety of authors designed different destinies for the underrepresentation of women, undocumented people, working-class, Black people, and LGBTQIA+ by subverting, disclosing or decolonizing a set of beliefs (conscious or unconscious) that are still maintained by a capitalist neoliberalism in the form of gender, racial, and class violence. The study of plays also aims at promoting cooperative and action-oriented learning while enhancing transdisciplinary, intercultural and translingual competences. Students are invited to engage in practices with theatrical readings, production of clips, and an essay or video-essay. In the end, students have the opportunity to submit their production to be published in the Yale Portuguese Students\u2019 Digital Magazine. Conducted in Portuguese.\u00a0This course counts towards a requirement for the Advanced Language Certificate in Portuguese from the Yale Department of Spanish and Portuguese.", "short_title": "Drama as Resistance: From Neo...", "title": "Drama as Resistance: From Neoliberalism to the Bolsonarism Crisis", "school": "YC", @@ -262773,7 +568228,7 @@ "11:35", "12:50", "WLH 112 - William L. Harkness Hall 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -262781,7 +568236,7 @@ "11:35", "12:50", "WLH 112 - William L. Harkness Hall 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -262795,10 +568250,99 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85717\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85717/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9960466027259827, + 0.8470039963722229, + 0.9980977177619934 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998895525932312, + 0.9987056255340576, + 0.9989116191864014 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998887836933136, + 0.9980910420417786, + 0.9989118576049805, + 0.9988995790481567, + 0.9987995624542236 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 0.9090909090909091, + "final_counts": { + "POSITIVE": 10, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + } + } }, { "season_code": "202301", @@ -262839,7 +568383,7 @@ "13:00", "14:15", "WLH 113 - William L. Harkness Hall 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -262847,7 +568391,7 @@ "13:00", "14:15", "WLH 113 - William L. Harkness Hall 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -262861,10 +568405,143 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86173\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/86173/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987286925315857, + 0.9987770915031433, + 0.9988585710525513, + 0.9987416863441467, + 0.9989053010940552, + 0.9986703395843506, + 0.9985929131507874, + 0.9988076686859131, + 0.9987892508506775, + 0.9989145994186401, + 0.997857391834259 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989179372787476, + 0.9988939166069031, + 0.9982935786247253, + 0.9988971948623657, + 0.9989332556724548, + 0.9989209175109863, + 0.9988062381744385, + 0.9750773310661316, + 0.9988754391670227, + 0.9989145994186401, + 0.9987932443618774, + 0.9983556866645813 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9166666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988995790481567, + 0.9981922507286072, + 0.9989373087882996, + 0.9988808035850525, + 0.9989155530929565, + 0.998898983001709, + 0.9988975524902344, + 0.9989354014396667, + 0.9902792572975159, + 0.999200165271759 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "final_label": "POSITIVE", + "final_count": 31, + "final_proportion": 0.9393939393939394, + "final_counts": { + "POSITIVE": 31, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9393939393939394, + "NEGATIVE": 0.06060606060606061 + } + } }, { "season_code": "202301", @@ -262901,7 +568578,7 @@ "15:30", "17:20", "HQ C05 - Humanities Quadrangle C05", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -262913,10 +568590,38 @@ "classnotes": "This course will be taught by visiting professor, Patr\u00edcia Lino.", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85891\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/85891/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -262956,10 +568661,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84739\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84739/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -262996,7 +568729,7 @@ "13:30", "15:20", "PH 207 - Phelps Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -263008,10 +568741,41 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84743\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84743/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989281296730042 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 1, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 1 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -263048,7 +568812,7 @@ "13:30", "15:20", "PH 207 - Phelps Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -263060,10 +568824,87 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84746\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84746/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9908910393714905, + 0.9972521662712097, + 0.998935878276825 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984167814254761, + 0.9988253712654114 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987816214561462 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 6 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -263100,7 +568941,7 @@ "13:00", "14:15", "DAVIES AUD - Davies Auditorium, Becton Ctr AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ], "Thursday": [ @@ -263108,7 +568949,7 @@ "13:00", "14:15", "DAVIES AUD - Davies Auditorium, Becton Ctr AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ] }, @@ -263122,15 +568963,496 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84750\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "", - "description": "This course introduces students to the history of psychology with a focus on racism and colonial power embedded in the \"mind sciences.\" Students grapple with primary and secondary sources which prompt them to think critically about the past and present of psychology and the ways in which systems of race, gender, and class inequality interact with major institutions, systems, and research practices. Students study the historical relationship between the \"mind sciences\" and the intertwined systems\/institutions of white supremacy\/racial hierarchy, cisheteropatriarchy, capitalism, empire, and colonialism from the 17th century to the present. Students also examine the role some psychologists and related scientists and scholars have played in challenging and resisting those same intertwined systems and institutions. This course is interdisciplinary in that, in addition to studying works by psychologists, students study, analyze, and critique works in other fields\u2013such as history, anthropology, ethnic studies, and postcolonial studies\u2013which are relevant to understanding the historical development of the psychological sciences.", + "syllabus_url": "https://yale.instructure.com/courses/84750/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989288449287415, + 0.9962893724441528, + 0.9986396431922913, + 0.998094379901886, + 0.9987229704856873, + 0.9987737536430359, + 0.9986225366592407, + 0.9988574981689453, + 0.9988960027694702, + 0.9866598844528198, + 0.996173083782196, + 0.9987900853157043, + 0.9955857992172241, + 0.9987826943397522, + 0.9985337257385254, + 0.9953556060791016, + 0.9988454580307007, + 0.9981295466423035, + 0.9977339506149292, + 0.9956421852111816, + 0.9988669157028198, + 0.9972631931304932, + 0.9988685846328735, + 0.9983661770820618, + 0.9989218711853027, + 0.9987986087799072, + 0.9980021119117737, + 0.9979054927825928, + 0.9987336993217468, + 0.9884791970252991, + 0.9994640946388245, + 0.9988675117492676, + 0.9963777661323547, + 0.9988546371459961, + 0.9986745119094849, + 0.9817661046981812, + 0.9986355900764465, + 0.9988246560096741, + 0.9989088773727417, + 0.9986868500709534, + 0.9987689852714539, + 0.998802900314331, + 0.9987404942512512, + 0.996302604675293, + 0.9987481832504272, + 0.9988425970077515, + 0.9988024234771729, + 0.9987726807594299, + 0.9987841248512268, + 0.9987689852714539, + 0.9994850158691406, + 0.9988985061645508, + 0.9986370205879211, + 0.9988391995429993, + 0.9987164735794067, + 0.9949278831481934, + 0.9988402724266052, + 0.9848091006278992, + 0.9987531900405884, + 0.9215766191482544, + 0.9987649917602539, + 0.9987924098968506, + 0.9989141225814819 + ], + "sentiment_counts": { + "POSITIVE": 55, + "NEGATIVE": 8 + }, + "sentiment_distribution": { + "POSITIVE": 0.873015873015873, + "NEGATIVE": 0.12698412698412698 + }, + "sentiment_overall": [ + "POSITIVE", + 0.873015873015873 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987882971763611, + 0.9976047277450562, + 0.9988693594932556, + 0.9989257454872131, + 0.9985159039497375, + 0.9983701109886169, + 0.9939510822296143, + 0.9988769888877869, + 0.998377799987793, + 0.9994933605194092, + 0.9987943172454834, + 0.9989066123962402, + 0.9995042085647583, + 0.9964744448661804, + 0.9988526105880737, + 0.9989206790924072, + 0.9994966983795166, + 0.9718214273452759, + 0.9936009049415588, + 0.9988742470741272, + 0.998894989490509, + 0.9987673759460449, + 0.9994783997535706, + 0.9994943141937256, + 0.9984391331672668, + 0.9868833422660828, + 0.998705267906189, + 0.9988662004470825, + 0.9726113080978394, + 0.9986687898635864, + 0.9994693398475647, + 0.9986955523490906, + 0.9995073080062866, + 0.9989166259765625, + 0.9994251728057861, + 0.9941410422325134, + 0.9987747073173523, + 0.9984713196754456, + 0.9917280673980713, + 0.9982851147651672, + 0.9987817406654358, + 0.9994828701019287, + 0.9988729357719421, + 0.9986976385116577, + 0.9989272952079773, + 0.9987083673477173, + 0.9986920952796936, + 0.9942163228988647, + 0.9989261031150818, + 0.9983649849891663, + 0.9989093542098999, + 0.9953893423080444, + 0.9988871216773987, + 0.9989175796508789, + 0.9958814382553101, + 0.9986451268196106, + 0.9986439347267151, + 0.9988981485366821, + 0.9990554451942444, + 0.998927652835846, + 0.9976845979690552, + 0.9989029169082642, + 0.9988538026809692, + 0.9971856474876404, + 0.9989156723022461, + 0.9995006322860718, + 0.9994878768920898, + 0.9988831877708435, + 0.9688539505004883, + 0.9982237219810486, + 0.9994681477546692, + 0.9968005418777466 + ], + "sentiment_counts": { + "POSITIVE": 54, + "NEGATIVE": 18 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989126920700073, + 0.9995015859603882, + 0.97569340467453, + 0.9984090924263, + 0.9971567392349243, + 0.9986491799354553, + 0.997393012046814, + 0.9975292086601257, + 0.9988998174667358, + 0.9984868764877319, + 0.9980016350746155, + 0.9993448853492737, + 0.9980016350746155, + 0.999468982219696, + 0.9988678693771362, + 0.9988572597503662, + 0.9995094537734985, + 0.9965654015541077, + 0.9988330006599426, + 0.99692302942276, + 0.9986121654510498, + 0.9988875985145569, + 0.9988623857498169, + 0.9983294606208801, + 0.998909592628479, + 0.9650158882141113, + 0.998771607875824, + 0.9988865256309509, + 0.9985320568084717, + 0.9988768696784973, + 0.9988264441490173, + 0.9987801909446716, + 0.9988671541213989, + 0.9968113303184509, + 0.999477207660675, + 0.9988940358161926, + 0.9983042478561401, + 0.9985062479972839, + 0.9988617897033691, + 0.9984368681907654, + 0.9989110231399536, + 0.9974464178085327, + 0.9992691874504089, + 0.9959164261817932, + 0.9989263415336609, + 0.998921275138855, + 0.9988083839416504, + 0.9955124258995056, + 0.9989206790924072, + 0.9980968832969666, + 0.9988460540771484, + 0.9988788962364197, + 0.9492369294166565, + 0.9984912872314453, + 0.9987554550170898, + 0.9989263415336609, + 0.9994840621948242, + 0.9986768364906311, + 0.9987527132034302, + 0.9988904595375061, + 0.999504804611206, + 0.9985637068748474, + 0.9989136457443237, + 0.9989134073257446, + 0.998637855052948, + 0.998849630355835, + 0.9980635046958923, + 0.9974163770675659, + 0.9975311160087585, + 0.9983687996864319, + 0.9951692223548889, + 0.9965079426765442 + ], + "sentiment_counts": { + "POSITIVE": 51, + "NEGATIVE": 21 + }, + "sentiment_distribution": { + "POSITIVE": 0.7083333333333334, + "NEGATIVE": 0.2916666666666667 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7083333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 160, + "final_proportion": 0.7729468599033816, + "final_counts": { + "POSITIVE": 160, + "NEGATIVE": 47 + }, + "final_distribution": { + "POSITIVE": 0.7729468599033816, + "NEGATIVE": 0.22705314009661837 + } + } + }, + { + "season_code": "202301", + "requirements": "", + "description": "This course introduces students to the history of psychology with a focus on racism and colonial power embedded in the \"mind sciences.\" Students grapple with primary and secondary sources which prompt them to think critically about the past and present of psychology and the ways in which systems of race, gender, and class inequality interact with major institutions, systems, and research practices. Students study the historical relationship between the \"mind sciences\" and the intertwined systems/institutions of white supremacy/racial hierarchy, cisheteropatriarchy, capitalism, empire, and colonialism from the 17th century to the present. Students also examine the role some psychologists and related scientists and scholars have played in challenging and resisting those same intertwined systems and institutions. This course is interdisciplinary in that, in addition to studying works by psychologists, students study, analyze, and critique works in other fields\u2013such as history, anthropology, ethnic studies, and postcolonial studies\u2013which are relevant to understanding the historical development of the psychological sciences.", "short_title": "History of Psychology: Racism...", "title": "History of Psychology: Racism and Colonial Power", "school": "YC", @@ -263162,7 +569484,7 @@ "13:00", "14:15", "WLH 208 - William L. Harkness Hall 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -263170,7 +569492,7 @@ "13:00", "14:15", "WLH 208 - William L. Harkness Hall 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -263186,10 +569508,199 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86232\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/86232/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981880784034729, + 0.9989359974861145, + 0.9986051917076111, + 0.9988312125205994, + 0.9987980127334595, + 0.9986780285835266, + 0.9987356066703796, + 0.9130136966705322, + 0.9984725117683411, + 0.9983073472976685, + 0.9987667798995972, + 0.9988797307014465, + 0.9704475998878479, + 0.9596075415611267, + 0.9989049434661865, + 0.998836100101471, + 0.9988036155700684, + 0.9959926009178162 + ], + "sentiment_counts": { + "NEGATIVE": 4, + "POSITIVE": 14 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2222222222222222, + "POSITIVE": 0.7777777777777778 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7777777777777778 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9995051622390747, + 0.9971532821655273, + 0.9985597729682922, + 0.999233603477478, + 0.9956525564193726, + 0.9969671368598938, + 0.9933509230613708, + 0.99950110912323, + 0.9983370304107666, + 0.9995074272155762, + 0.9991439580917358, + 0.9987161159515381, + 0.9988252520561218, + 0.9875118732452393, + 0.9751355051994324, + 0.9995050430297852, + 0.9964371919631958, + 0.9989011287689209, + 0.9988563060760498, + 0.9989006519317627 + ], + "sentiment_counts": { + "NEGATIVE": 10, + "POSITIVE": 10 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.999504804611206, + 0.9994667172431946, + 0.9988002777099609, + 0.9989211559295654, + 0.9978224039077759, + 0.9982553124427795, + 0.9988724589347839, + 0.9970597624778748, + 0.993240475654602, + 0.9873754978179932, + 0.997117280960083, + 0.9995043277740479, + 0.9986457228660583, + 0.9987866282463074, + 0.9987353682518005, + 0.9949775338172913, + 0.9987271428108215, + 0.9994933605194092, + 0.9988687634468079, + 0.9989319443702698, + 0.995850682258606, + 0.9988258481025696, + 0.9989039897918701 + ], + "sentiment_counts": { + "NEGATIVE": 6, + "POSITIVE": 17 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2608695652173913, + "POSITIVE": 0.7391304347826086 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7391304347826086 + ] + }, + "final_label": "POSITIVE", + "final_count": 41, + "final_proportion": 0.6721311475409836, + "final_counts": { + "NEGATIVE": 20, + "POSITIVE": 41 + }, + "final_distribution": { + "NEGATIVE": 0.32786885245901637, + "POSITIVE": 0.6721311475409836 + } + } }, { "season_code": "202301", @@ -263228,7 +569739,7 @@ "14:30", "15:45", "LC 101 - Linsly-Chittenden Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -263236,7 +569747,7 @@ "14:30", "15:45", "LC 101 - Linsly-Chittenden Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -263253,10 +569764,245 @@ "classnotes": "", "final_exam": "Thursday, May 4, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84372\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84372/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986911416053772, + 0.998896598815918, + 0.9982989430427551, + 0.9987226128578186, + 0.9988375306129456, + 0.995455265045166, + 0.9988614320755005, + 0.9994912147521973, + 0.9961259961128235, + 0.9988676309585571, + 0.9987837672233582, + 0.9988332390785217, + 0.9983593821525574, + 0.9994045495986938, + 0.9988478422164917, + 0.9987137317657471, + 0.9987070560455322, + 0.9987636804580688, + 0.998747706413269, + 0.9988011121749878, + 0.9987021684646606, + 0.9933885335922241, + 0.9987275004386902, + 0.9989049434661865, + 0.9987988471984863, + 0.9987414479255676, + 0.9988614320755005 + ], + "sentiment_counts": { + "POSITIVE": 25, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.9259259259259259, + "NEGATIVE": 0.07407407407407407 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9259259259259259 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988273978233337, + 0.9974735379219055, + 0.9980286955833435, + 0.9980618357658386, + 0.9995071887969971, + 0.9988456964492798, + 0.9988276362419128, + 0.9994982481002808, + 0.9867162704467773, + 0.9978837370872498, + 0.9970316886901855, + 0.9988886713981628, + 0.9989117383956909, + 0.9993865489959717, + 0.9988849759101868, + 0.9987784028053284, + 0.9988827109336853, + 0.9989151954650879, + 0.9965760111808777, + 0.9982239603996277, + 0.9988372921943665, + 0.9987035989761353, + 0.9982008934020996, + 0.9988446235656738, + 0.998778760433197, + 0.9988020658493042, + 0.9986108541488647, + 0.9994955062866211, + 0.9930644631385803 + ], + "sentiment_counts": { + "POSITIVE": 19, + "NEGATIVE": 10 + }, + "sentiment_distribution": { + "POSITIVE": 0.6551724137931034, + "NEGATIVE": 0.3448275862068966 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6551724137931034 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9914430975914001, + 0.9989230036735535, + 0.9981480836868286, + 0.999470055103302, + 0.9995036125183105, + 0.99891197681427, + 0.9969677329063416, + 0.9985792636871338, + 0.9986806511878967, + 0.9965193271636963, + 0.99720299243927, + 0.9994733929634094, + 0.9986843466758728, + 0.9989092350006104, + 0.9988266825675964, + 0.9985396862030029, + 0.9988777041435242, + 0.9987925291061401, + 0.9989266991615295, + 0.9962736368179321, + 0.9995083808898926, + 0.9989027976989746, + 0.9964545965194702, + 0.9986093044281006, + 0.9980790615081787, + 0.9950947761535645, + 0.9988920092582703, + 0.996468186378479 + ], + "sentiment_counts": { + "NEGATIVE": 9, + "POSITIVE": 19 + }, + "sentiment_distribution": { + "NEGATIVE": 0.32142857142857145, + "POSITIVE": 0.6785714285714286 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6785714285714286 + ] + }, + "final_label": "POSITIVE", + "final_count": 63, + "final_proportion": 0.75, + "final_counts": { + "POSITIVE": 63, + "NEGATIVE": 21 + }, + "final_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + } + } }, { "season_code": "202301", @@ -263295,7 +570041,7 @@ "14:30", "16:20", "GEO350 C203 - 350 George Street C203", - "https:\/\/map.yale.edu\/?id=1910#!m\/563701" + "https://map.yale.edu/?id=1910#!m/563701" ] ] }, @@ -263313,10 +570059,115 @@ "classnotes": "Permission of the instructor is REQUIRED for this seminar. Preregistration applications are required, and students should apply on the Yale Course Selection site by December 2. The instructor will select students and construct a waiting list by December 8. Students should include on their application: \n\uf0a7\tName, Class, Preferred Pronouns, Major, and if in Ed Studies \n\uf0a7\tBriefly describe previous experience working with children\n\uf0a7\tWhy do you want to take this class?\n\uf0a7\tWill you be able to identify a child to observe?\n\uf0a7\tIs there anything else you think it would be helpful to know about you?\nThe full syllabus can be found on Canvas. Students are expected to arrange on their own to do a weekly observation of 1 hour per week (either in person or virtually) of a child under the age of 6. It is expected that an additional 2 hour in- person classroom observation will also be possible at Calvin Hill Day Care Center. Total observation time commitment is 3 hours per week.", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85898\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85898/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998665452003479, + 0.998828113079071, + 0.9987382292747498, + 0.9988815188407898, + 0.9988529682159424, + 0.9989120960235596, + 0.9987873435020447 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989159107208252, + 0.9989103078842163, + 0.9988768696784973, + 0.9956915974617004, + 0.99886155128479 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989338517189026, + 0.9989217519760132, + 0.9989157915115356, + 0.9989124536514282, + 0.9968796968460083, + 0.9989218711853027, + 0.998829185962677, + 0.9987707734107971 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 20 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -263358,7 +570209,7 @@ "9:25", "11:15", "GEO350 C203 - 350 George Street C203", - "https:\/\/map.yale.edu\/?id=1910#!m\/563701" + "https://map.yale.edu/?id=1910#!m/563701" ] ] }, @@ -263376,15 +570227,88 @@ "classnotes": "Permission of the instructors is REQUIRED for this seminar. Preregistration applications are required, and students should apply on the Yale Course Selection site by December 2. The instructors will select students and construct a waiting list by December 8. Students should include on their application: \n\uf0a7\tName, Class, Preferred Pronouns, Major, and if in Ed Studies \n\uf0a7\tBriefly describe previous experience working with children\n\uf0a7\tWhy do you want to take this class?\n\uf0a7\tWill you be able to identify a child to observe?\n\uf0a7\tIs there anything else you think it would be helpful for us to know about you?\no\tThe full syllabus can be found on Canvas.\no\tAdditional information: Students are expected to arrange on their own to do a weekly observation of 1 hour per week (either in person or virtually) of a child under the age of 6. It is expected that an additional 2 hour in- person classroom observation will also be possible at Calvin Hill Day Care Center. Total observation time commitment is 3 hours per week.\n", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85899\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85899/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "", - "description": "Theoretical and empirical study of the development of criminal behavior, including constitutional, social, and neurobiological elements. Personality and psychopathological factors associated with criminal behavior; theoretical and psychobiological explanations of crime; the biological\/environment interaction; the impact of psychobiological models for policy and intervention.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985910058021545 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.998880922794342 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998553454875946, + 0.9988679885864258 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 4, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 4 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } + }, + { + "season_code": "202301", + "requirements": "", + "description": "Theoretical and empirical study of the development of criminal behavior, including constitutional, social, and neurobiological elements. Personality and psychopathological factors associated with criminal behavior; theoretical and psychobiological explanations of crime; the biological/environment interaction; the impact of psychobiological models for policy and intervention.", "short_title": "The Criminal Mind", "title": "The Criminal Mind", "school": "YC", @@ -263417,7 +570341,7 @@ "13:00", "14:15", "SLB AUD - Sterling Law Buildings AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/531532" + "https://map.yale.edu/?id=1910#!m/531532" ] ], "Thursday": [ @@ -263425,7 +570349,7 @@ "13:00", "14:15", "SLB AUD - Sterling Law Buildings AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/531532" + "https://map.yale.edu/?id=1910#!m/531532" ] ] }, @@ -263441,15 +570365,910 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84754\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "", - "description": "Theories, methodology, and applications of social psychology. Core topics include the self, social cognition\/social perception, attitudes and persuasion, group processes, conformity, human conflict and aggression, prejudice, prosocial behavior, and emotion.", + "syllabus_url": "https://yale.instructure.com/courses/84754/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985998272895813, + 0.9988905787467957, + 0.9987919926643372, + 0.9091061353683472, + 0.9987226128578186, + 0.9988491535186768, + 0.9977172613143921, + 0.9981671571731567, + 0.99641352891922, + 0.9994997978210449, + 0.9976401329040527, + 0.9957432150840759, + 0.9987136125564575, + 0.9989180564880371, + 0.9988687634468079, + 0.9987868666648865, + 0.9988961219787598, + 0.9987689852714539, + 0.9987273812294006, + 0.9986937642097473, + 0.9984878301620483, + 0.9984544515609741, + 0.9988025426864624, + 0.9987572431564331, + 0.9986534118652344, + 0.9987693428993225, + 0.99871826171875, + 0.9987738728523254, + 0.9984342455863953, + 0.9988192915916443, + 0.9983830451965332, + 0.9988872408866882, + 0.9988895058631897, + 0.9907950758934021, + 0.9987403750419617, + 0.979979395866394, + 0.9898001551628113, + 0.9979950189590454, + 0.9987372756004333, + 0.9987336993217468, + 0.9986985921859741, + 0.99885094165802, + 0.998380184173584, + 0.9988139867782593, + 0.9986384510993958, + 0.9972375631332397, + 0.9986598491668701, + 0.9988658428192139, + 0.9988877177238464, + 0.9987008571624756, + 0.998717188835144, + 0.9984902143478394, + 0.9946205615997314, + 0.9987744688987732, + 0.9988885521888733, + 0.9980136156082153, + 0.9988256096839905, + 0.9979918003082275, + 0.9983828067779541, + 0.9987230896949768, + 0.9988757967948914, + 0.9988300204277039, + 0.9947057366371155, + 0.991986870765686, + 0.9986476302146912, + 0.9987679123878479, + 0.9988154172897339, + 0.9987603425979614, + 0.9988273978233337, + 0.9985321760177612, + 0.9956169128417969, + 0.9988240599632263, + 0.9988805651664734, + 0.9985522627830505, + 0.9987092018127441, + 0.9989226460456848, + 0.9987847208976746, + 0.9848712086677551, + 0.9987402558326721, + 0.9988968372344971, + 0.9986897110939026, + 0.9986691474914551, + 0.9989245533943176, + 0.9988995790481567, + 0.9977331161499023, + 0.9984738230705261, + 0.9986692667007446, + 0.9980320334434509, + 0.9985217452049255, + 0.9988381266593933, + 0.9988967180252075, + 0.9944742321968079, + 0.9964103102684021, + 0.9985914826393127, + 0.9986717700958252, + 0.9986990690231323, + 0.9984473586082458, + 0.9989377856254578, + 0.9988428354263306, + 0.9974609613418579, + 0.9977303147315979, + 0.9876804351806641, + 0.9986482262611389, + 0.9905925393104553, + 0.9989118576049805, + 0.9988308548927307, + 0.9988646507263184, + 0.9689452052116394, + 0.9987499713897705, + 0.9842697381973267, + 0.9988833069801331, + 0.9984180927276611, + 0.9987208247184753, + 0.9988887906074524, + 0.9962844848632812, + 0.996473491191864, + 0.9985009431838989, + 0.9986982345581055, + 0.9989047050476074, + 0.9987945556640625, + 0.9978561997413635, + 0.9989004135131836, + 0.9914857745170593, + 0.9988065958023071, + 0.9987874627113342, + 0.9988817572593689, + 0.998691737651825, + 0.9989218711853027, + 0.9989166259765625, + 0.9908038377761841, + 0.9988032579421997, + 0.9988033771514893, + 0.9982709884643555, + 0.998806357383728 + ], + "sentiment_counts": { + "POSITIVE": 130, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.9701492537313433, + "NEGATIVE": 0.029850746268656716 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9701492537313433 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988632202148438, + 0.995824933052063, + 0.9989381432533264, + 0.999481737613678, + 0.9988448619842529, + 0.998902440071106, + 0.9986261129379272, + 0.9988583326339722, + 0.9985910058021545, + 0.9988235831260681, + 0.9974603652954102, + 0.9988617897033691, + 0.9989274144172668, + 0.9989118576049805, + 0.9988788962364197, + 0.9988954067230225, + 0.9989258646965027, + 0.9988852143287659, + 0.9989186525344849, + 0.9984652996063232, + 0.9988263249397278, + 0.9995023012161255, + 0.9989144802093506, + 0.9985306262969971, + 0.9988539218902588, + 0.9987952709197998, + 0.9988906979560852, + 0.9988517761230469, + 0.9921552538871765, + 0.9989150762557983, + 0.9985402822494507, + 0.9989204406738281, + 0.9987542629241943, + 0.9961915016174316, + 0.9988691210746765, + 0.9989253878593445, + 0.9989219903945923, + 0.9989018440246582, + 0.9988897442817688, + 0.9988968372344971, + 0.9987727999687195, + 0.9790819883346558, + 0.9989117383956909, + 0.9972309470176697, + 0.9989005327224731, + 0.9988937973976135, + 0.9988948702812195, + 0.9988553524017334, + 0.9989122152328491, + 0.9989217519760132, + 0.9989197254180908, + 0.9989055395126343, + 0.9673664569854736, + 0.9987967014312744, + 0.9989192485809326, + 0.998794436454773, + 0.9985488057136536, + 0.9981812238693237, + 0.9988970756530762, + 0.9986758828163147, + 0.9988897442817688, + 0.9981120824813843, + 0.9988473653793335, + 0.9987479448318481, + 0.9989191293716431, + 0.9987655878067017, + 0.9988536834716797, + 0.9988911747932434, + 0.9988219141960144, + 0.9979262351989746, + 0.9983583092689514, + 0.9982458353042603, + 0.9989175796508789, + 0.9989049434661865, + 0.9987932443618774, + 0.99883633852005, + 0.9989054203033447, + 0.9874976873397827, + 0.9989128112792969, + 0.9989196062088013, + 0.9989308714866638, + 0.9983195662498474, + 0.9989317059516907, + 0.9987921118736267, + 0.9989217519760132, + 0.9986729621887207, + 0.9987378716468811, + 0.998913049697876, + 0.9988921284675598, + 0.9962582588195801, + 0.9988359808921814, + 0.9988598823547363, + 0.9976276755332947, + 0.9945425987243652, + 0.994216799736023, + 0.9989359974861145, + 0.9989288449287415, + 0.9989138841629028, + 0.9989320635795593, + 0.9979606866836548, + 0.9988604784011841, + 0.998816967010498, + 0.9975379705429077, + 0.9984991550445557, + 0.9993459582328796, + 0.9987435936927795, + 0.9986612796783447, + 0.9985565543174744, + 0.9987536668777466, + 0.9954671859741211, + 0.9987125396728516, + 0.9987370371818542, + 0.9989221096038818, + 0.9988151788711548, + 0.9986953139305115, + 0.9988883137702942, + 0.9989153146743774, + 0.9987988471984863, + 0.9988551139831543, + 0.9988332390785217, + 0.999241828918457, + 0.9987978935241699, + 0.9988722205162048, + 0.9988300204277039, + 0.9982159733772278, + 0.9989266991615295, + 0.998705267906189, + 0.9957536458969116, + 0.9986740350723267, + 0.9987310767173767, + 0.9989210367202759, + 0.9985079169273376 + ], + "sentiment_counts": { + "POSITIVE": 122, + "NEGATIVE": 10 + }, + "sentiment_distribution": { + "POSITIVE": 0.9242424242424242, + "NEGATIVE": 0.07575757575757576 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9242424242424242 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988847374916077, + 0.9988576173782349, + 0.9953718781471252, + 0.9981436729431152, + 0.998120129108429, + 0.9986333250999451, + 0.9989093542098999, + 0.9989250302314758, + 0.9839916825294495, + 0.9995020627975464, + 0.9988932013511658, + 0.998927652835846, + 0.9989296793937683, + 0.9989091157913208, + 0.9979967474937439, + 0.9989153146743774, + 0.9989215135574341, + 0.9989264607429504, + 0.9988282322883606, + 0.9989104270935059, + 0.9988740086555481, + 0.9880258440971375, + 0.9980016350746155, + 0.9988870024681091, + 0.9974592328071594, + 0.9987934827804565, + 0.9983333945274353, + 0.9989368319511414, + 0.9988324046134949, + 0.9989013671875, + 0.9985703229904175, + 0.9985872507095337, + 0.9988958835601807, + 0.9988653659820557, + 0.9989213943481445, + 0.9917746782302856, + 0.9986973404884338, + 0.998786985874176, + 0.9987550973892212, + 0.9987988471984863, + 0.9988881945610046, + 0.9974592328071594, + 0.9988548755645752, + 0.9988523721694946, + 0.9988036155700684, + 0.9985834360122681, + 0.9989010095596313, + 0.9984466433525085, + 0.9986459612846375, + 0.9982553124427795, + 0.9980579018592834, + 0.998915433883667, + 0.9963578581809998, + 0.9983354210853577, + 0.9988821148872375, + 0.9988693594932556, + 0.9989156723022461, + 0.9988904595375061, + 0.9988773465156555, + 0.9986050724983215, + 0.997117280960083, + 0.9988921284675598, + 0.9986568689346313, + 0.998753547668457, + 0.9978501796722412, + 0.9983274340629578, + 0.9978692531585693, + 0.9982553124427795, + 0.9989187717437744, + 0.9988677501678467, + 0.9988747239112854, + 0.9916849136352539, + 0.9987741112709045, + 0.9988718628883362, + 0.9988279938697815, + 0.9988868832588196, + 0.9988052845001221, + 0.9981436729431152, + 0.9989356398582458, + 0.9979382157325745, + 0.997117280960083, + 0.998908281326294, + 0.9988961219787598, + 0.9988841414451599, + 0.9989104270935059, + 0.9974015951156616, + 0.9989303946495056, + 0.9988905787467957, + 0.9994926452636719, + 0.9989064931869507, + 0.9987528324127197, + 0.9979534149169922, + 0.9989196062088013, + 0.9989022016525269, + 0.9988911747932434, + 0.9980168342590332, + 0.9988732933998108, + 0.9965298771858215, + 0.9989350438117981, + 0.9987475872039795, + 0.9986394047737122, + 0.9989257454872131, + 0.9988773465156555, + 0.9966147541999817, + 0.9988569021224976, + 0.9988356232643127, + 0.9982553124427795, + 0.9989150762557983, + 0.9986534118652344, + 0.9989235997200012, + 0.9989197254180908, + 0.997500479221344, + 0.9986029267311096, + 0.9989230036735535, + 0.9906057715415955, + 0.9988530874252319, + 0.9988969564437866, + 0.9984257221221924, + 0.9910734295845032, + 0.9946236610412598, + 0.9980168342590332, + 0.9986304044723511, + 0.9987803101539612, + 0.9988483190536499, + 0.9988571405410767, + 0.9974592328071594, + 0.9989339709281921, + 0.9988683462142944, + 0.9983721375465393, + 0.9985268115997314, + 0.9989350438117981, + 0.9988977909088135, + 0.9988827109336853, + 0.9989142417907715, + 0.9982694387435913, + 0.9989318251609802, + 0.9994387030601501, + 0.9987875819206238, + 0.9984970092773438, + 0.9989039897918701, + 0.9988645315170288, + 0.9989387392997742, + 0.9988308548927307, + 0.9986796975135803, + 0.998924195766449, + 0.9988308548927307, + 0.9988977909088135, + 0.9988232254981995 + ], + "sentiment_counts": { + "POSITIVE": 138, + "NEGATIVE": 10 + }, + "sentiment_distribution": { + "POSITIVE": 0.9324324324324325, + "NEGATIVE": 0.06756756756756757 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9324324324324325 + ] + }, + "final_label": "POSITIVE", + "final_count": 390, + "final_proportion": 0.9420289855072463, + "final_counts": { + "POSITIVE": 390, + "NEGATIVE": 24 + }, + "final_distribution": { + "POSITIVE": 0.9420289855072463, + "NEGATIVE": 0.057971014492753624 + } + } + }, + { + "season_code": "202301", + "requirements": "", + "description": "Theories, methodology, and applications of social psychology. Core topics include the self, social cognition/social perception, attitudes and persuasion, group processes, conformity, human conflict and aggression, prejudice, prosocial behavior, and emotion.", "short_title": "Social Psychology", "title": "Social Psychology", "school": "YC", @@ -263482,7 +571301,7 @@ "11:35", "12:50", "LC 102 - Linsly-Chittenden Hall 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -263490,7 +571309,7 @@ "11:35", "12:50", "LC 102 - Linsly-Chittenden Hall 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -263507,15 +571326,256 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84759\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "", - "description": "An introduction to psychoactive drugs and their effects on both brain and behavior. Review of pharmacological and brain mechanisms of different classes of legal, illegal, and medicinal drugs, including alcohol, caffeine, tobacco, stimulants, depressants, antidepressants, and hallucinogens. Individual drugs' pharmacokinetics, mechanisms of action, dosing, routes of administration, and patterns and effects of use and misuse. Some attention to substance use disorders\/addictions, prevention, and treatment.", + "syllabus_url": "https://yale.instructure.com/courses/84759/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9935678839683533, + 0.9981178045272827, + 0.9966261386871338, + 0.998906135559082, + 0.9988508224487305, + 0.9987503290176392, + 0.9989199638366699, + 0.9986782670021057, + 0.9988431930541992, + 0.998867392539978, + 0.9987837672233582, + 0.9988208413124084, + 0.998230516910553, + 0.9987314343452454, + 0.9988699555397034, + 0.9988118410110474, + 0.9988204836845398, + 0.9988763928413391, + 0.9988089799880981, + 0.9988269209861755, + 0.9972001314163208, + 0.9985234141349792, + 0.9945098161697388, + 0.9932712912559509, + 0.9988324046134949, + 0.9989169836044312, + 0.9971864819526672, + 0.9988631010055542, + 0.9987084865570068 + ], + "sentiment_counts": { + "POSITIVE": 29, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9816787838935852, + 0.9994080066680908, + 0.9977466464042664, + 0.9986259937286377, + 0.9987726807594299, + 0.9995067119598389, + 0.9989318251609802, + 0.9983938336372375, + 0.9974701404571533, + 0.9973282814025879, + 0.997340738773346, + 0.9988204836845398, + 0.9988172054290771, + 0.9952219128608704, + 0.9989309906959534, + 0.9994935989379883, + 0.998610258102417, + 0.9987788796424866, + 0.9992401599884033, + 0.9988465309143066, + 0.9989237189292908, + 0.99887615442276, + 0.9968411922454834, + 0.9894489049911499, + 0.9977474808692932, + 0.9988768696784973, + 0.9988401532173157, + 0.9873331785202026, + 0.9955982565879822, + 0.9963552951812744 + ], + "sentiment_counts": { + "POSITIVE": 23, + "NEGATIVE": 7 + }, + "sentiment_distribution": { + "POSITIVE": 0.7666666666666667, + "NEGATIVE": 0.23333333333333334 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7666666666666667 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987959861755371, + 0.9974592328071594, + 0.9994288086891174, + 0.9988625049591064, + 0.9989243149757385, + 0.9995071887969971, + 0.997117280960083, + 0.9988123178482056, + 0.9935656189918518, + 0.9987261891365051, + 0.998842179775238, + 0.9956198334693909, + 0.9986567497253418, + 0.9961957931518555, + 0.9988678693771362, + 0.9988335967063904, + 0.9988540410995483, + 0.9988648891448975, + 0.9988975524902344, + 0.9989081621170044, + 0.9915992021560669, + 0.9950256943702698, + 0.9864288568496704, + 0.9986444115638733, + 0.9989098310470581, + 0.9981061220169067, + 0.9985812902450562, + 0.9986642599105835 + ], + "sentiment_counts": { + "POSITIVE": 23, + "NEGATIVE": 5 + }, + "sentiment_distribution": { + "POSITIVE": 0.8214285714285714, + "NEGATIVE": 0.17857142857142858 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8214285714285714 + ] + }, + "final_label": "POSITIVE", + "final_count": 75, + "final_proportion": 0.8620689655172413, + "final_counts": { + "POSITIVE": 75, + "NEGATIVE": 12 + }, + "final_distribution": { + "POSITIVE": 0.8620689655172413, + "NEGATIVE": 0.13793103448275862 + } + } + }, + { + "season_code": "202301", + "requirements": "", + "description": "An introduction to psychoactive drugs and their effects on both brain and behavior. Review of pharmacological and brain mechanisms of different classes of legal, illegal, and medicinal drugs, including alcohol, caffeine, tobacco, stimulants, depressants, antidepressants, and hallucinogens. Individual drugs' pharmacokinetics, mechanisms of action, dosing, routes of administration, and patterns and effects of use and misuse. Some attention to substance use disorders/addictions, prevention, and treatment.", "short_title": "Drugs, Brain, and Behavior", "title": "Drugs, Brain, and Behavior", "school": "YC", @@ -263548,7 +571608,7 @@ "16:00", "17:15", "LC 102 - Linsly-Chittenden Hall 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -263556,7 +571616,7 @@ "16:00", "17:15", "LC 102 - Linsly-Chittenden Hall 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -263574,14 +571634,471 @@ "classnotes": "", "final_exam": "Wednesday, May 10, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84971\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "Prerequisites: PSYC 160\/NSCI 160 and a course in statistics, or permission of instructor.", + "syllabus_url": "https://yale.instructure.com/courses/84971/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9921969175338745, + 0.9988980293273926, + 0.9988021850585938, + 0.9979883432388306, + 0.9945095181465149, + 0.9973618388175964, + 0.9938176274299622, + 0.9995043277740479, + 0.9988359808921814, + 0.998613715171814, + 0.9988467693328857, + 0.998915433883667, + 0.9992645382881165, + 0.9994999170303345, + 0.99891197681427, + 0.9988951086997986, + 0.998751163482666, + 0.9965003728866577, + 0.9981321692466736, + 0.9989161491394043, + 0.9986559152603149, + 0.9987867474555969, + 0.9985490441322327, + 0.9903959631919861, + 0.9985853433609009, + 0.9987425208091736, + 0.9987236857414246, + 0.9988735318183899, + 0.9988027811050415, + 0.9987568855285645, + 0.9987529516220093, + 0.9986978769302368, + 0.998790442943573, + 0.9975737929344177, + 0.9988893866539001, + 0.9989023208618164, + 0.9986133575439453, + 0.9982326030731201, + 0.998815655708313, + 0.9988370537757874, + 0.9983762502670288, + 0.9984832406044006, + 0.998582124710083, + 0.9987553358078003, + 0.9987340569496155, + 0.99857497215271, + 0.9987666606903076, + 0.9943312406539917, + 0.9988403916358948, + 0.9962410926818848, + 0.9984594583511353, + 0.9782668352127075, + 0.9986779093742371, + 0.9987674951553345, + 0.998606264591217, + 0.9988321661949158, + 0.9987626075744629, + 0.9986730813980103 + ], + "sentiment_counts": { + "POSITIVE": 53, + "NEGATIVE": 5 + }, + "sentiment_distribution": { + "POSITIVE": 0.9137931034482759, + "NEGATIVE": 0.08620689655172414 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9137931034482759 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9993674159049988, + 0.999502420425415, + 0.9994751811027527, + 0.9988821148872375, + 0.9984822869300842, + 0.998914361000061, + 0.9988563060760498, + 0.9979472756385803, + 0.9982705116271973, + 0.9896983504295349, + 0.9994276165962219, + 0.9851263761520386, + 0.9978333115577698, + 0.9987529516220093, + 0.9899010062217712, + 0.998878538608551, + 0.9994779229164124, + 0.9994959831237793, + 0.9988939166069031, + 0.9906849265098572, + 0.9552738070487976, + 0.9940734505653381, + 0.9937777519226074, + 0.9988976716995239, + 0.9993921518325806, + 0.9987057447433472, + 0.9960609078407288, + 0.9961856007575989, + 0.9988270401954651, + 0.9988018274307251, + 0.9977613687515259, + 0.9987939596176147, + 0.9990783929824829, + 0.9988137483596802, + 0.9979690909385681, + 0.9988759160041809, + 0.9993960857391357, + 0.9988561868667603, + 0.9987969398498535, + 0.9995039701461792, + 0.9974430799484253, + 0.9995043277740479, + 0.996855616569519, + 0.9989117383956909, + 0.9984993934631348, + 0.9984980821609497, + 0.9989355206489563, + 0.9986993074417114, + 0.9987226128578186, + 0.9995059967041016, + 0.9988721013069153, + 0.9994854927062988, + 0.9988213181495667, + 0.9988692402839661, + 0.9994926452636719, + 0.9958517551422119, + 0.9985042810440063, + 0.9993867874145508, + 0.9978394508361816, + 0.9986501336097717, + 0.9980908036231995, + 0.9988850951194763, + 0.9986199140548706, + 0.9995055198669434, + 0.9989126920700073, + 0.9974147081375122, + 0.9986003041267395, + 0.9981181621551514 + ], + "sentiment_counts": { + "NEGATIVE": 27, + "POSITIVE": 41 + }, + "sentiment_distribution": { + "NEGATIVE": 0.39705882352941174, + "POSITIVE": 0.6029411764705882 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6029411764705882 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988669157028198, + 0.9994966983795166, + 0.9980652928352356, + 0.9988980293273926, + 0.9988422989845276, + 0.9989272952079773, + 0.9985761642456055, + 0.9834855794906616, + 0.9994924068450928, + 0.9980058073997498, + 0.9995083808898926, + 0.998651921749115, + 0.9982998967170715, + 0.9988226294517517, + 0.984423816204071, + 0.9987351298332214, + 0.9974017143249512, + 0.9995096921920776, + 0.9988002777099609, + 0.9981666803359985, + 0.9988932013511658, + 0.9988483190536499, + 0.9779918789863586, + 0.9989182949066162, + 0.9977788329124451, + 0.998158872127533, + 0.9981575608253479, + 0.9988627433776855, + 0.9988756775856018, + 0.9985601305961609, + 0.9984765648841858, + 0.9989367127418518, + 0.9988975524902344, + 0.9988769888877869, + 0.9719040393829346, + 0.9980652928352356, + 0.9964637160301208, + 0.9927873015403748, + 0.9982824325561523, + 0.9967212080955505, + 0.9988736510276794, + 0.9982157945632935, + 0.9981125593185425, + 0.9988542795181274, + 0.9994624257087708, + 0.9980016350746155, + 0.9989364743232727, + 0.9975046515464783, + 0.9988194108009338, + 0.9989107847213745, + 0.9984903335571289, + 0.9992971420288086, + 0.998714804649353, + 0.9994951486587524, + 0.9988382458686829, + 0.9987860321998596, + 0.9984596967697144, + 0.9988260865211487, + 0.9961866736412048, + 0.9980162382125854, + 0.994813084602356, + 0.9984670281410217, + 0.9989394545555115, + 0.9988847374916077, + 0.9995002746582031, + 0.9989131689071655, + 0.9500276446342468, + 0.9728887677192688, + 0.9977949857711792 + ], + "sentiment_counts": { + "POSITIVE": 44, + "NEGATIVE": 25 + }, + "sentiment_distribution": { + "POSITIVE": 0.6376811594202898, + "NEGATIVE": 0.36231884057971014 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6376811594202898 + ] + }, + "final_label": "POSITIVE", + "final_count": 138, + "final_proportion": 0.7076923076923077, + "final_counts": { + "POSITIVE": 138, + "NEGATIVE": 57 + }, + "final_distribution": { + "POSITIVE": 0.7076923076923077, + "NEGATIVE": 0.2923076923076923 + } + } + }, + { + "season_code": "202301", + "requirements": "Prerequisites: PSYC 160/NSCI 160 and a course in statistics, or permission of instructor.", "description": "Primary focus on structural, functional, and diffusion magnetic resonance imaging, with a secondary emphasis upon brain stimulation, electroencephalography, and evoked potentials. Students learn the fundamentals of each method and the experimental designs for which they are most applicable.", "short_title": "Research Methods in Human Neu...", "title": "Research Methods in Human Neuroscience", @@ -263615,7 +572132,7 @@ "13:00", "14:15", "WLH 117 - William L. Harkness Hall 117", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -263623,7 +572140,7 @@ "13:00", "14:15", "WLH 117 - William L. Harkness Hall 117", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -263639,10 +572156,181 @@ "classnotes": "", "final_exam": "Tuesday, May 9, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84764\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84764/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988823533058167, + 0.9985685348510742, + 0.9983525276184082, + 0.9987941980361938, + 0.9988058805465698, + 0.9984740614891052, + 0.9919703006744385, + 0.9965007305145264, + 0.9989097118377686, + 0.9915568828582764, + 0.9986043572425842, + 0.9946035742759705, + 0.9986361861228943, + 0.9988049268722534, + 0.9987488985061646, + 0.9988264441490173 + ], + "sentiment_counts": { + "POSITIVE": 16, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988977909088135, + 0.9989012479782104, + 0.9850860834121704, + 0.9988968372344971, + 0.9988991022109985, + 0.9982618689537048, + 0.9980272650718689, + 0.9976128339767456, + 0.9945481419563293, + 0.9963564872741699, + 0.9989100694656372, + 0.998816728591919, + 0.998856782913208, + 0.9994899034500122, + 0.9988495111465454, + 0.9901254177093506, + 0.9989244341850281, + 0.9989168643951416 + ], + "sentiment_counts": { + "POSITIVE": 16, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988114833831787, + 0.9988627433776855, + 0.9975960850715637, + 0.9979776740074158, + 0.9983144998550415, + 0.9994285702705383, + 0.9994264841079712, + 0.9988835453987122, + 0.997117280960083, + 0.9962642788887024, + 0.9982523322105408, + 0.9872549772262573, + 0.998769223690033, + 0.9994847774505615, + 0.998871386051178, + 0.9982366561889648, + 0.9988908171653748, + 0.9989150762557983 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 6 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 44, + "final_proportion": 0.8461538461538461, + "final_counts": { + "POSITIVE": 44, + "NEGATIVE": 8 + }, + "final_distribution": { + "POSITIVE": 0.8461538461538461, + "NEGATIVE": 0.15384615384615385 + } + } }, { "season_code": "202301", @@ -263679,7 +572367,7 @@ "9:00", "10:15", "DOW 215 - Dow Hall 215", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ], "Wednesday": [ @@ -263687,7 +572375,7 @@ "9:00", "10:15", "DOW 215 - Dow Hall 215", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ] }, @@ -263705,15 +572393,94 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84771\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84771/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987471103668213, + 0.9977860450744629 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9995033740997314, + 0.998913049697876 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 1 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9904953241348267, + 0.9951692223548889 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 1 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "final_label": "POSITIVE", + "final_count": 4, + "final_proportion": 0.6666666666666666, + "final_counts": { + "POSITIVE": 4, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + } + } }, { "season_code": "202301", "requirements": "Prerequisites: PSYC 110 or Psychology AP equivalent, and Intro Statistics course\u00a0(concurrent enrollment is acceptable with instructor permission).", - "description": "Introduction to general principles and approaches to psychological research, with a focus on sampling diversity and cultural\/cross-cultural research. Topics include generating and testing hypotheses, laboratory and field experiments, scale construction, sampling, archival methods, case studies, ethics, and politics of research. Hands-on research experience is part of the course.", + "description": "Introduction to general principles and approaches to psychological research, with a focus on sampling diversity and cultural/cross-cultural research. Topics include generating and testing hypotheses, laboratory and field experiments, scale construction, sampling, archival methods, case studies, ethics, and politics of research. Hands-on research experience is part of the course.", "short_title": "Research Methods with Diverse...", "title": "Research Methods with Diverse Samples", "school": "YC", @@ -263745,7 +572512,7 @@ "9:00", "10:15", "WLH 112 - William L. Harkness Hall 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -263753,7 +572520,7 @@ "9:00", "10:15", "WLH 112 - William L. Harkness Hall 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -263769,10 +572536,105 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84776\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84776/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9968165755271912, + 0.9896233677864075, + 0.9926825165748596, + 0.997410237789154, + 0.9988945126533508 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989296793937683, + 0.9989056587219238, + 0.9987851977348328, + 0.9974297881126404, + 0.9989240765571594 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983808994293213, + 0.9988644123077393, + 0.9988653659820557, + 0.9985848665237427 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 0.9285714285714286, + "final_counts": { + "POSITIVE": 13, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9285714285714286, + "NEGATIVE": 0.07142857142857142 + } + } }, { "season_code": "202301", @@ -263812,7 +572674,7 @@ "13:00", "14:15", "HQ 113 - Humanities Quadrangle 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -263820,7 +572682,7 @@ "13:00", "14:15", "HQ 113 - Humanities Quadrangle 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -263829,7 +572691,7 @@ "So" ], "flags": [ - "YC LING: Adv Courses\/Seminars", + "YC LING: Adv Courses/Seminars", "YC LING: Depth", "YC LING Depth: Phonetics", "YC LING: Elective" @@ -263839,15 +572701,104 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84391\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84391/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "Prerequisites: CPSC 100, CPSC 112 or other course involving terminal commands and programming (Python preferred); course in statistics and\/or data science; PSYC 160 or other human neuroscience course; or permission of instructor.", - "description": "This course provides training on how to use computational science for the advanced analysis of brain imaging data, primarily from functional magnetic resonance imaging (fMRI). Topics include scientific programming, high-performance computing, machine learning, network\/graph analysis, real-time neurofeedback, nonparametric statistics, and functional alignment.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981117248535156, + 0.9987229704856873, + 0.998646080493927 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984824061393738, + 0.9989122152328491, + 0.9987420439720154, + 0.9989012479782104 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983124732971191, + 0.9987533092498779, + 0.9988922476768494, + 0.9988707900047302, + 0.9989148378372192 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 12 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } + }, + { + "season_code": "202301", + "requirements": "Prerequisites: CPSC 100, CPSC 112 or other course involving terminal commands and programming (Python preferred); course in statistics and/or data science; PSYC 160 or other human neuroscience course; or permission of instructor.", + "description": "This course provides training on how to use computational science for the advanced analysis of brain imaging data, primarily from functional magnetic resonance imaging (fMRI). Topics include scientific programming, high-performance computing, machine learning, network/graph analysis, real-time neurofeedback, nonparametric statistics, and functional alignment.", "short_title": "Computational Methods in Huma...", "title": "Computational Methods in Human Neuroscience", "school": "YC", @@ -263880,7 +572831,7 @@ "13:00", "16:00", "SSS 306 - Sheffield-Sterling-Strathcona 306", - "https:\/\/map.yale.edu\/?id=1910#!m\/563689" + "https://map.yale.edu/?id=1910#!m/563689" ] ] }, @@ -263899,10 +572850,117 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84702\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84702/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985846281051636, + 0.9984641075134277, + 0.9986005425453186, + 0.9988184571266174, + 0.998887836933136, + 0.9986162185668945, + 0.9976309537887573 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987730383872986, + 0.9987984895706177, + 0.9987760186195374, + 0.9981762170791626, + 0.9977483153343201, + 0.9938285946846008 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9908097982406616, + 0.9960294961929321, + 0.9968173503875732, + 0.9989004135131836, + 0.9977909326553345, + 0.9994714856147766, + 0.997117280960083 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.7142857142857143, + "NEGATIVE": 0.2857142857142857 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7142857142857143 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 0.85, + "final_counts": { + "POSITIVE": 17, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.85, + "NEGATIVE": 0.15 + } + } }, { "season_code": "202301", @@ -263939,7 +572997,7 @@ "9:25", "11:15", "WLH 114 - William L. Harkness Hall 114", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -263955,10 +573013,123 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85993\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/85993/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987378716468811, + 0.9989093542098999, + 0.9989140033721924, + 0.9988784193992615, + 0.9986287355422974, + 0.9988400340080261, + 0.9987209439277649, + 0.9986060261726379 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988800883293152, + 0.9989314675331116, + 0.998925507068634, + 0.9985830783843994, + 0.9988969564437866, + 0.9956151247024536, + 0.9989171028137207, + 0.9988535642623901 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984700083732605, + 0.9989264607429504, + 0.9987723231315613, + 0.9988769888877869, + 0.9988980293273926, + 0.9989277720451355, + 0.9989249110221863, + 0.9989376664161682 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 24, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 24 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -263995,7 +573166,7 @@ "11:35", "12:50", "K 207 - Kirtland Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/559945" + "https://map.yale.edu/?id=1910#!m/559945" ] ], "Wednesday": [ @@ -264003,7 +573174,7 @@ "11:35", "12:50", "K 207 - Kirtland Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/559945" + "https://map.yale.edu/?id=1910#!m/559945" ] ] }, @@ -264019,10 +573190,119 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86233\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/86233/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988168478012085, + 0.9987857937812805, + 0.9987162351608276, + 0.9985347986221313, + 0.9988780617713928, + 0.9981077909469604, + 0.99869304895401, + 0.9988364577293396 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988957643508911, + 0.998806357383728, + 0.9901313781738281, + 0.9989280104637146, + 0.9988999366760254, + 0.9989299178123474 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988896250724792, + 0.9986242055892944, + 0.998903751373291, + 0.9987881779670715, + 0.9988980293273926, + 0.9976517558097839, + 0.9989103078842163 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 0.9523809523809523, + "final_counts": { + "POSITIVE": 20, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9523809523809523, + "NEGATIVE": 0.047619047619047616 + } + } }, { "season_code": "202301", @@ -264061,7 +573341,7 @@ "13:30", "15:20", "PH 312 - Phelps Hall 312", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -264071,17 +573351,144 @@ "So" ], "flags": [ - "YC Phil: Intersctn PSYC\/PHIL" + "YC Phil: Intersctn PSYC/PHIL" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "Tuesday, May 9, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84632\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84632/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988009929656982, + 0.9989277720451355, + 0.9989290833473206, + 0.9987101554870605, + 0.9988901019096375, + 0.9989012479782104, + 0.9989161491394043, + 0.9988664388656616, + 0.9989148378372192 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989336133003235, + 0.9987305998802185, + 0.9979569911956787, + 0.980651319026947, + 0.9994495511054993, + 0.998928964138031, + 0.9989321827888489, + 0.9977073669433594, + 0.9980382323265076 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998855471611023, + 0.9989350438117981, + 0.9989268183708191, + 0.9989223480224609, + 0.9978086352348328, + 0.9984118938446045, + 0.9989174604415894, + 0.9989116191864014, + 0.9985563158988953, + 0.9924628734588623, + 0.9980986714363098, + 0.9985830783843994 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9166666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 28, + "final_proportion": 0.9333333333333333, + "final_counts": { + "POSITIVE": 28, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9333333333333333, + "NEGATIVE": 0.06666666666666667 + } + } }, { "season_code": "202301", @@ -264120,7 +573527,7 @@ "9:00", "10:15", "WLH 207 - William L. Harkness Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -264128,7 +573535,7 @@ "9:00", "10:15", "WLH 207 - William L. Harkness Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -264149,10 +573556,153 @@ "classnotes": "", "final_exam": "Saturday, May 6, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84380\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84380/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987179040908813, + 0.9988250136375427, + 0.9975519776344299, + 0.9988943934440613, + 0.9981707334518433, + 0.9986610412597656, + 0.9987804293632507, + 0.9954476952552795, + 0.9966926574707031, + 0.9978943467140198, + 0.9982632994651794, + 0.9986703395843506, + 0.9957969188690186 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9929982423782349, + 0.995093584060669, + 0.9987118244171143, + 0.9982830286026001, + 0.9760679602622986, + 0.9980541467666626, + 0.9986622333526611, + 0.9989211559295654, + 0.9987700581550598, + 0.9989243149757385 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986745119094849, + 0.984992504119873, + 0.9988403916358948, + 0.9987699389457703, + 0.9949396848678589, + 0.9918935298919678, + 0.9989073276519775, + 0.9978119134902954, + 0.9988036155700684, + 0.9988434314727783, + 0.9988904595375061, + 0.9988934397697449, + 0.9989234805107117, + 0.9988512992858887, + 0.9988071918487549 + ], + "sentiment_counts": { + "POSITIVE": 14, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9333333333333333, + "NEGATIVE": 0.06666666666666667 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9333333333333333 + ] + }, + "final_label": "POSITIVE", + "final_count": 37, + "final_proportion": 0.9736842105263158, + "final_counts": { + "POSITIVE": 37, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9736842105263158, + "NEGATIVE": 0.02631578947368421 + } + } }, { "season_code": "202301", @@ -264191,7 +573741,7 @@ "14:30", "15:45", "DOW B-21 - Dow Hall B-21", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ], "Wednesday": [ @@ -264199,7 +573749,7 @@ "14:30", "15:45", "DOW B-21 - Dow Hall B-21", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ] }, @@ -264209,9 +573759,9 @@ "So" ], "flags": [ - "YC LING: Adv Courses\/Seminars", + "YC LING: Adv Courses/Seminars", "YC LING: Depth", - "YC LING Depth: Lang&Mind\/Brain", + "YC LING Depth: Lang&Mind/Brain", "YC LING: Elective" ], "regnotes": "", @@ -264219,10 +573769,123 @@ "classnotes": "", "final_exam": "Thursday, May 4, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84384\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84384/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9978635907173157, + 0.9988811612129211, + 0.9988057613372803, + 0.9967691898345947, + 0.9988452196121216 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988372921943665, + 0.9994920492172241, + 0.9988934397697449, + 0.9952835440635681, + 0.998838484287262, + 0.9995074272155762, + 0.9994756579399109, + 0.9989125728607178, + 0.9988186955451965, + 0.9986427426338196 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.6, + "NEGATIVE": 0.4 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989223480224609, + 0.9932314157485962, + 0.9941350817680359, + 0.9988231062889099, + 0.9995150566101074, + 0.9994980096817017, + 0.9988924860954285, + 0.9986409544944763 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.625, + "NEGATIVE": 0.375 + }, + "sentiment_overall": [ + "POSITIVE", + 0.625 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 0.6521739130434783, + "final_counts": { + "POSITIVE": 15, + "NEGATIVE": 8 + }, + "final_distribution": { + "POSITIVE": 0.6521739130434783, + "NEGATIVE": 0.34782608695652173 + } + } }, { "season_code": "202301", @@ -264254,7 +573917,7 @@ "17:00", "17:50", "WLH 211 - William L. Harkness Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -264272,7 +573935,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -264320,7 +574011,7 @@ "15:30", "17:00", "CSC COHEN-AUD - Child Study Center COHEN-AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/563701" + "https://map.yale.edu/?id=1910#!m/563701" ] ] }, @@ -264336,15 +574027,138 @@ "classnotes": "All classes will be held in the Child Study Center Cohen Auditorium (E02). Permission of the instructors is REQUIRED for this seminar. Preregistration applications are required, and students should apply on the Yale Course Selection site. Instructors will select students and construct a waiting list. Students should include on their application: \n\uf0a7\tName, Class, Preferred Pronouns, Major \n\uf0a7\tBriefly describe any previous experience with autism\n\uf0a7\tWhy do you want to take this class?\nThe full syllabus can be found on Canvas.\n", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85900\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/85900/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9973719120025635, + 0.9988712668418884, + 0.9989055395126343, + 0.9988553524017334, + 0.9985491633415222, + 0.9988961219787598, + 0.9988141059875488, + 0.998775064945221 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988484382629395, + 0.9971529245376587, + 0.9988824725151062, + 0.9988995790481567, + 0.9987688660621643, + 0.9984897375106812, + 0.9987906813621521, + 0.9995049238204956, + 0.9989175796508789, + 0.9985935091972351 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9986648559570312, + 0.9976826906204224, + 0.9974592328071594, + 0.9988866448402405, + 0.9989091157913208, + 0.9988798499107361, + 0.9994813799858093, + 0.9988791346549988, + 0.9988343119621277, + 0.9992978572845459 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 24, + "final_proportion": 0.8571428571428571, + "final_counts": { + "POSITIVE": 24, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + } + } }, { "season_code": "202301", "requirements": "Prerequisites: LING 110, CGSC 110, LING 217, or LING 263.", - "description": "The meaning of a word or sentence is something in the human mind that has specific\u00a0properties: it can be expressed (written\/signed\/spoken forms); it can be combined with other meanings; its expression is not language dependent; it connects with the world; it serves as a vehicle for inference; and it is hidden from awareness. The course explores these properties in some detail and, in the process, provides the students with technical\u00a0vocabulary and analytical tools to further investigate them. The course is thus intended for those students\u00a0interested in undertaking a research project on the structure of meaning.\u00a0the nature of lexico-conceptual structure, that is, the structure of concepts which we refer to as \"word\u00a0meanings\", and how they may be combined through linguistic and non-linguistic means. Its ultimate objective is to bridge models of conceptual structure and models of linguistic semantic composition, \u00a0identify their respective strengths and weaknesses and explore some of the fundamental questions that any theory of linguistic meaning composition must answer. Evidence discussed will emerge from naturalistic, introspectional, and experimental methodologies.", + "description": "The meaning of a word or sentence is something in the human mind that has specific\u00a0properties: it can be expressed (written/signed/spoken forms); it can be combined with other meanings; its expression is not language dependent; it connects with the world; it serves as a vehicle for inference; and it is hidden from awareness. The course explores these properties in some detail and, in the process, provides the students with technical\u00a0vocabulary and analytical tools to further investigate them. The course is thus intended for those students\u00a0interested in undertaking a research project on the structure of meaning.\u00a0the nature of lexico-conceptual structure, that is, the structure of concepts which we refer to as \"word\u00a0meanings\", and how they may be combined through linguistic and non-linguistic means. Its ultimate objective is to bridge models of conceptual structure and models of linguistic semantic composition, \u00a0identify their respective strengths and weaknesses and explore some of the fundamental questions that any theory of linguistic meaning composition must answer. Evidence discussed will emerge from naturalistic, introspectional, and experimental methodologies.", "short_title": "Linguistic Meaning and Concep...", "title": "Linguistic Meaning and Conceptual Structure", "school": "YC", @@ -264379,7 +574193,7 @@ "14:30", "15:45", "WLH 002 - William L. Harkness Hall 002", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -264387,7 +574201,7 @@ "14:30", "15:45", "WLH 002 - William L. Harkness Hall 002", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -264396,9 +574210,9 @@ "So" ], "flags": [ - "YC LING: Adv Courses\/Seminars", + "YC LING: Adv Courses/Seminars", "YC LING: Depth", - "YC LING Depth: Lang&Mind\/Brain", + "YC LING Depth: Lang&Mind/Brain", "YC LING: Elective" ], "regnotes": "", @@ -264406,15 +574220,108 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84350\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84350/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981061220169067, + 0.9983164072036743, + 0.99845290184021, + 0.9988356232643127 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989043474197388, + 0.9994563460350037, + 0.9964460730552673, + 0.998184859752655, + 0.998925507068634 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.6, + "NEGATIVE": 0.4 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9995124340057373, + 0.997117280960083, + 0.9954760670661926, + 0.9988189339637756 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.25, + "POSITIVE": 0.75 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 0.7692307692307693, + "final_counts": { + "POSITIVE": 10, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.7692307692307693, + "NEGATIVE": 0.23076923076923078 + } + } }, { "season_code": "202301", "requirements": "Students should have some background in psychology; PSYC 110 and PSYC 160 preferred.\u00a0", - "description": "An overview and examination of the neuroscience of psychiatric illness. We focus on cutting-edge research in humans and animals aimed at understanding the biological mechanisms that underlie psychiatric illness. Although these questions date back to early philosophical texts, only recently have experimental psychologists and neuroscientists begun to explore this vast and exciting domain of study. We discuss the evolutionary and developmental origins of individual differences in human personality, measurement issues, fundamental dimensions of psychopathology, stability\/plasticity, heritability, and implications therapeutic interventions as well as the associated broader implications for public policy. A major focus is on the neurobiology of fear and anxiety, including brain circuits, molecular genetic pathways, and epigenetics. A secondary focus is on differences in behavior and biology that confer risk for the development of depression and addiction, including the biological systems involved in hedonic pleasure, motivated goal pursuit, and the regulation of impulses in the face of everyday temptation.", + "description": "An overview and examination of the neuroscience of psychiatric illness. We focus on cutting-edge research in humans and animals aimed at understanding the biological mechanisms that underlie psychiatric illness. Although these questions date back to early philosophical texts, only recently have experimental psychologists and neuroscientists begun to explore this vast and exciting domain of study. We discuss the evolutionary and developmental origins of individual differences in human personality, measurement issues, fundamental dimensions of psychopathology, stability/plasticity, heritability, and implications therapeutic interventions as well as the associated broader implications for public policy. A major focus is on the neurobiology of fear and anxiety, including brain circuits, molecular genetic pathways, and epigenetics. A secondary focus is on differences in behavior and biology that confer risk for the development of depression and addiction, including the biological systems involved in hedonic pleasure, motivated goal pursuit, and the regulation of impulses in the face of everyday temptation.", "short_title": "Topics in Clinical Neuroscience", "title": "Topics in Clinical Neuroscience", "school": "YC", @@ -264448,7 +574355,7 @@ "9:25", "11:15", "SSS 201 - Sheffield-Sterling-Strathcona 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/563689" + "https://map.yale.edu/?id=1910#!m/563689" ] ], "Thursday": [ @@ -264456,7 +574363,7 @@ "9:25", "11:15", "SSS 201 - Sheffield-Sterling-Strathcona 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/563689" + "https://map.yale.edu/?id=1910#!m/563689" ] ] }, @@ -264472,10 +574379,127 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84706\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84706/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987446069717407, + 0.9987677335739136, + 0.9987608194351196, + 0.9985492825508118, + 0.9980782270431519, + 0.9983646273612976, + 0.9988883137702942 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987744688987732, + 0.9987566471099854, + 0.9987967014312744, + 0.9989332556724548, + 0.9988853335380554, + 0.9988327622413635, + 0.9987599849700928, + 0.9942659735679626 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9770510792732239, + 0.9988151788711548, + 0.9978413581848145, + 0.9988526105880737, + 0.9987497329711914, + 0.9987202882766724, + 0.9982414245605469, + 0.998777449131012, + 0.9980764389038086, + 0.9989309906959534 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 9 + }, + "sentiment_distribution": { + "NEGATIVE": 0.1, + "POSITIVE": 0.9 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "final_label": "POSITIVE", + "final_count": 24, + "final_proportion": 0.96, + "final_counts": { + "POSITIVE": 24, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.96, + "NEGATIVE": 0.04 + } + } }, { "season_code": "202301", @@ -264514,7 +574538,7 @@ "15:30", "17:20", "WLH 007 - William L. Harkness Hall 007", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -264528,10 +574552,119 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84710\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84710/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988214373588562, + 0.9974284768104553, + 0.9987643957138062, + 0.9988738894462585, + 0.9978875517845154, + 0.9987849593162537, + 0.9989107847213745 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988982677459717, + 0.9988951086997986, + 0.998907208442688, + 0.9995012283325195, + 0.9986705780029297, + 0.9989238381385803, + 0.9984477758407593 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988371729850769, + 0.9989092350006104, + 0.9988982677459717, + 0.9988536834716797, + 0.9994673132896423, + 0.9988982677459717, + 0.9989196062088013 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 0.9047619047619048, + "final_counts": { + "POSITIVE": 19, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9047619047619048, + "NEGATIVE": 0.09523809523809523 + } + } }, { "season_code": "202301", @@ -264568,7 +574701,7 @@ "13:30", "15:20", "DL 217 - Dunham Laboratory 217", - "https:\/\/map.yale.edu\/?id=1910#!m\/560005" + "https://map.yale.edu/?id=1910#!m/560005" ] ] }, @@ -264579,11 +574712,106 @@ "rp_attr": "", "classnotes": "", "final_exam": "No regular final examination", - "course_home_url": "https:\/\/yale.instructure.com\/courses\/84713", + "course_home_url": "https://yale.instructure.com/courses/84713", "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986253976821899, + 0.9988994598388672, + 0.9989363551139832, + 0.9987731575965881 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989295601844788, + 0.998928964138031, + 0.9988585710525513, + 0.9987982511520386, + 0.9988572597503662 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989147186279297, + 0.9989243149757385, + 0.9989203214645386, + 0.9988682270050049, + 0.9984610080718994, + 0.9974592328071594 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 15 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -264621,7 +574849,7 @@ "9:25", "11:15", "SSS 201 - Sheffield-Sterling-Strathcona 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/563689" + "https://map.yale.edu/?id=1910#!m/563689" ] ] }, @@ -264637,10 +574865,151 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85794\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85794/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986845850944519, + 0.9980936646461487, + 0.9987766146659851, + 0.9988620281219482, + 0.9988057613372803, + 0.9983641505241394, + 0.998910665512085, + 0.9969114661216736, + 0.9987292885780334, + 0.9989288449287415, + 0.9989168643951416, + 0.9989342093467712 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988885521888733, + 0.9975278973579407, + 0.998904824256897, + 0.9989280104637146, + 0.9989180564880371, + 0.9987993240356445, + 0.9989109039306641, + 0.9988480806350708, + 0.9987165927886963, + 0.9987732768058777, + 0.9988974332809448, + 0.9988704323768616, + 0.9989365935325623 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986013770103455, + 0.9988279938697815, + 0.9989151954650879, + 0.998895525932312, + 0.9982553124427795, + 0.9989084005355835, + 0.998883068561554, + 0.9989019632339478, + 0.997117280960083, + 0.9985628724098206, + 0.998939573764801, + 0.9989081621170044, + 0.9986567497253418 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 38, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 38 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -264679,7 +575048,7 @@ "15:30", "17:20", "SSS 201 - Sheffield-Sterling-Strathcona 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/563689" + "https://map.yale.edu/?id=1910#!m/563689" ] ] }, @@ -264695,15 +575064,118 @@ "classnotes": "", "final_exam": "Thursday, May 4, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84717\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84717/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988732933998108, + 0.9958479404449463, + 0.9989307522773743, + 0.9988341927528381, + 0.9988247752189636, + 0.9988419413566589 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987724423408508, + 0.9989402890205383, + 0.998939573764801, + 0.9989349246025085, + 0.9988691210746765, + 0.998920202255249 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988759160041809, + 0.998803973197937, + 0.9989093542098999, + 0.9988365769386292, + 0.9988879561424255, + 0.9989153146743774, + 0.998830258846283 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 19 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", "requirements": "May not be used for the Psychology senior essay requirement.", - "description": "Empirical research projects or literature review. A student must be sponsored by a faculty member, who sets the requirements and supervises the student's progress. To register, the student must\u00a0download a tutorial form from http:\/\/psychology.yale.edu\/undergraduate\/undergraduate-major-forms, complete it with the adviser, and submit it to the director of undergraduate studies by the deadline listed on the form. The normal minimum requirement is a written report of the completed research or literature review, but individual faculty members may set alternative equivalent requirements. May be elected for one or two terms.", + "description": "Empirical research projects or literature review. A student must be sponsored by a faculty member, who sets the requirements and supervises the student's progress. To register, the student must\u00a0download a tutorial form from http://psychology.yale.edu/undergraduate/undergraduate-major-forms, complete it with the adviser, and submit it to the director of undergraduate studies by the deadline listed on the form. The normal minimum requirement is a written report of the completed research or literature review, but individual faculty members may set alternative equivalent requirements. May be elected for one or two terms.", "short_title": "Directed Research", "title": "Directed Research", "school": "YC", @@ -264741,12 +575213,111 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986881613731384, + 0.9989207983016968, + 0.9988353848457336, + 0.9989122152328491, + 0.9978001713752747, + 0.9986237287521362 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988387227058411, + 0.9957601428031921, + 0.9988886713981628, + 0.9986904263496399, + 0.99888676404953, + 0.9984038472175598 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988477230072021, + 0.9989093542098999, + 0.9988377690315247, + 0.9985554814338684, + 0.9989041090011597 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 17 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", "requirements": "May not be used for the Psychology senior essay requirement.", - "description": "Empirical research project or literature review. A student must be sponsored by a faculty member, who sets the requirements and supervises the student's progress. To register, the student\u00a0must\u00a0download\u00a0a\u00a0tutorial form from http:\/\/psychology.yale.edu\/undergraduate\/undergraduate-major-forms, complete it with\u00a0the adviser, and submit it\u00a0to the director of undergraduate\u00a0studies by the date indicated on the form.\u00a0The normal minimum requirement is a written report of the completed research or literature review, but individual faculty members may set alternative equivalent requirements. May be elected for one or two terms.", + "description": "Empirical research project or literature review. A student must be sponsored by a faculty member, who sets the requirements and supervises the student's progress. To register, the student\u00a0must\u00a0download\u00a0a\u00a0tutorial form from http://psychology.yale.edu/undergraduate/undergraduate-major-forms, complete it with\u00a0the adviser, and submit it\u00a0to the director of undergraduate\u00a0studies by the date indicated on the form.\u00a0The normal minimum requirement is a written report of the completed research or literature review, but individual faculty members may set alternative equivalent requirements. May be elected for one or two terms.", "short_title": "Research Topics", "title": "Research Topics", "school": "YC", @@ -264784,12 +575355,127 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "", - "description": "Independent senior research project (either empirical research or literature review), conducted under the guidance of a faculty adviser who sets the requirements and supervises the research.\u00a0To register, the student\u00a0must\u00a0download\u00a0a\u00a0tutorial form from http:\/\/psychology.yale.edu\/undergraduate\/undergraduate-major-forms, complete it with\u00a0the adviser, and submit it\u00a0by the deadline indicated on the form.\u00a0The normal minimum requirement is a written report of the completed research or literature review, but individual faculty members may set alternative equivalent requirements.\u00a0A paper of 5,000 words or more meets the writing needed for the senior requirement. To be considered for Distinction in the Major, the paper should be submitted at least one week before the last day of classes and will be graded by the adviser and a second reader assigned by the DUS.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9977319240570068, + 0.9986466765403748, + 0.9987568855285645, + 0.9979673027992249, + 0.9987540245056152, + 0.9987013339996338, + 0.9754366874694824, + 0.998747706413269, + 0.9989087581634521, + 0.9988746047019958, + 0.9988049268722534, + 0.9985517859458923 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989147186279297, + 0.9989362359046936, + 0.9989103078842163, + 0.9988981485366821, + 0.9987950325012207, + 0.998923122882843 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9978203773498535, + 0.9974592328071594, + 0.9988970756530762, + 0.9987233281135559, + 0.9988675117492676, + 0.9982550740242004, + 0.9988478422164917 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 25, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 25 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } + }, + { + "season_code": "202301", + "requirements": "", + "description": "Independent senior research project (either empirical research or literature review), conducted under the guidance of a faculty adviser who sets the requirements and supervises the research.\u00a0To register, the student\u00a0must\u00a0download\u00a0a\u00a0tutorial form from http://psychology.yale.edu/undergraduate/undergraduate-major-forms, complete it with\u00a0the adviser, and submit it\u00a0by the deadline indicated on the form.\u00a0The normal minimum requirement is a written report of the completed research or literature review, but individual faculty members may set alternative equivalent requirements.\u00a0A paper of 5,000 words or more meets the writing needed for the senior requirement. To be considered for Distinction in the Major, the paper should be submitted at least one week before the last day of classes and will be graded by the adviser and a second reader assigned by the DUS.", "short_title": "Senior Essay", "title": "Senior Essay", "school": "YC", @@ -264827,7 +575513,108 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987541437149048, + 0.9988658428192139, + 0.9994101524353027, + 0.9987952709197998, + 0.9961899518966675, + 0.9970265030860901, + 0.998561441898346 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994926452636719, + 0.9983432292938232, + 0.9838988184928894, + 0.9988538026809692, + 0.998802661895752, + 0.9984003901481628 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 5 + }, + "sentiment_distribution": { + "NEGATIVE": 0.16666666666666666, + "POSITIVE": 0.8333333333333334 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988709092140198, + 0.9980016350746155, + 0.997488260269165, + 0.9984606504440308 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 0.8235294117647058, + "final_counts": { + "POSITIVE": 14, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.8235294117647058, + "NEGATIVE": 0.17647058823529413 + } + } }, { "season_code": "202301", @@ -264864,7 +575651,7 @@ "9:25", "11:15", "K 207 - Kirtland Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/559945" + "https://map.yale.edu/?id=1910#!m/559945" ] ] }, @@ -264876,10 +575663,38 @@ "classnotes": "Class Note: This course is for Psychology Ph.D. students.", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85192\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/85192/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -264916,7 +575731,7 @@ "13:30", "15:20", "SSS 4 - Sheffield-Sterling-Strathcona 4", - "https:\/\/map.yale.edu\/?id=1910#!m\/563689" + "https://map.yale.edu/?id=1910#!m/563689" ] ] }, @@ -264928,15 +575743,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84728\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84728/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "Prerequisite: some prior experience with programming, data preprocessing, and basic fMRI analysis.", - "description": "This course provides training on how to use computational science for the advanced analysis of brain imaging data, primarily from functional magnetic resonance imaging (fMRI). Topics include scientific programming, high-performance computing, machine learning, network\/graph analysis, real-time neurofeedback, nonparametric statistics, and functional alignment.", + "description": "This course provides training on how to use computational science for the advanced analysis of brain imaging data, primarily from functional magnetic resonance imaging (fMRI). Topics include scientific programming, high-performance computing, machine learning, network/graph analysis, real-time neurofeedback, nonparametric statistics, and functional alignment.", "short_title": "Computational Methods in Huma...", "title": "Computational Methods in Human Neuroscience", "school": "GS", @@ -264972,10 +575815,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86223\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86223/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -265014,7 +575885,7 @@ "15:30", "17:20", "WLH 007 - William L. Harkness Hall 007", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -265026,10 +575897,119 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84710\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84710/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988214373588562, + 0.9974284768104553, + 0.9987643957138062, + 0.9988738894462585, + 0.9978875517845154, + 0.9987849593162537, + 0.9989107847213745 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988982677459717, + 0.9988951086997986, + 0.998907208442688, + 0.9995012283325195, + 0.9986705780029297, + 0.9989238381385803, + 0.9984477758407593 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988371729850769, + 0.9989092350006104, + 0.9988982677459717, + 0.9988536834716797, + 0.9994673132896423, + 0.9988982677459717, + 0.9989196062088013 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 0.9047619047619048, + "final_counts": { + "POSITIVE": 19, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9047619047619048, + "NEGATIVE": 0.09523809523809523 + } + } }, { "season_code": "202301", @@ -265068,7 +576048,7 @@ "15:30", "17:20", "SSS 201 - Sheffield-Sterling-Strathcona 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/563689" + "https://map.yale.edu/?id=1910#!m/563689" ] ] }, @@ -265080,10 +576060,113 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84717\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84717/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988732933998108, + 0.9958479404449463, + 0.9989307522773743, + 0.9988341927528381, + 0.9988247752189636, + 0.9988419413566589 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987724423408508, + 0.9989402890205383, + 0.998939573764801, + 0.9989349246025085, + 0.9988691210746765, + 0.998920202255249 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988759160041809, + 0.998803973197937, + 0.9989093542098999, + 0.9988365769386292, + 0.9988879561424255, + 0.9989153146743774, + 0.998830258846283 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 19 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -265135,7 +576218,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -265187,7 +576298,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -265239,7 +576378,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -265291,7 +576458,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -265343,12 +576538,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "Faculty and students in personality\/social psychology meet during lunchtime to hear about and discuss the work of a local or visiting speaker.", + "description": "Faculty and students in personality/social psychology meet during lunchtime to hear about and discuss the work of a local or visiting speaker.", "short_title": "Current Work in Social Psycho...", "title": "Current Work in Social Psychology and Personality", "school": "GS", @@ -265395,7 +576618,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -265447,7 +576698,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -265490,7 +576769,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -265533,7 +576840,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -265576,7 +576911,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -265614,7 +576977,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -265657,7 +577048,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -265700,7 +577119,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -265743,7 +577190,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -265795,7 +577270,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -265847,7 +577350,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -265890,7 +577421,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -265933,7 +577492,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -265976,7 +577563,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -266019,7 +577634,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -266068,10 +577711,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84715\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84715/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -266120,10 +577791,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84718\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84718/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -266166,12 +577865,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "Students in this laboratory course are introduced to and participate in social-psychological research examining interactions and broader relations between members of socioculturally advantaged and disadvantaged groups. For instance, we examine the phenomena and processes associated with one\u2019s beliefs about members of social groups (stereotypes), attitudes and evaluative responses toward group members (prejudice), and behaviors toward members of a social group based on their group membership (discrimination). We also study how these issues shape the experiences of social group members, especially when they are members of low-status and\/or minority groups. We primarily focus on large societal groups that differ on cultural dimensions of identity, with a focus on race, ethnicity, and gender. Notably, we apply the theoretical and empirical work to current events and relevant policy issues.", + "description": "Students in this laboratory course are introduced to and participate in social-psychological research examining interactions and broader relations between members of socioculturally advantaged and disadvantaged groups. For instance, we examine the phenomena and processes associated with one\u2019s beliefs about members of social groups (stereotypes), attitudes and evaluative responses toward group members (prejudice), and behaviors toward members of a social group based on their group membership (discrimination). We also study how these issues shape the experiences of social group members, especially when they are members of low-status and/or minority groups. We primarily focus on large societal groups that differ on cultural dimensions of identity, with a focus on race, ethnicity, and gender. Notably, we apply the theoretical and empirical work to current events and relevant policy issues.", "short_title": "Research Topics in Intergroup...", "title": "Research Topics in Intergroup Relations", "school": "GS", @@ -266209,7 +577936,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -266252,7 +578007,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -266295,7 +578078,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -266338,7 +578149,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -266381,7 +578220,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -266424,7 +578291,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -266467,7 +578362,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -266510,7 +578433,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -266570,7 +578521,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -266613,7 +578592,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -266665,12 +578672,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "Lab meeting is held once a week throughout the year and is attended by undergraduate and graduate students, research staff, postdoctoral fellows, and other researchers interested in the weekly topics. In a rotating fashion, both internal and external speakers present data and ideas from various research projects, and\/or research and methods papers in related areas, including the use of functional magnetic resonance imaging to answer questions in clinical and affective psychology.", + "description": "Lab meeting is held once a week throughout the year and is attended by undergraduate and graduate students, research staff, postdoctoral fellows, and other researchers interested in the weekly topics. In a rotating fashion, both internal and external speakers present data and ideas from various research projects, and/or research and methods papers in related areas, including the use of functional magnetic resonance imaging to answer questions in clinical and affective psychology.", "short_title": "Research Topics in Clinical a...", "title": "Research Topics in Clinical and Affective Neuropsychology", "school": "GS", @@ -266705,10 +578740,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84762\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84762/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -266751,7 +578814,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -266794,7 +578885,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -266837,7 +578956,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -266880,7 +579027,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -266923,7 +579098,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -266975,7 +579178,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -267018,7 +579249,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -267055,7 +579314,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -267098,7 +579385,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -267141,7 +579456,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -267184,7 +579527,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -267227,7 +579598,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -267264,7 +579663,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -267301,7 +579728,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -267344,7 +579799,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -267387,7 +579870,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -267430,7 +579941,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -267473,7 +580012,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -267516,14 +580083,42 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", "description": "By arrangement with faculty.", "short_title": "Pre-Dissertation Research: Ju...", - "title": "Pre-Dissertation Research: Judging Ability of AI\/Robots", + "title": "Pre-Dissertation Research: Judging Ability of AI/Robots", "school": "GS", "credits": 1.0, "extra_info": "ACTIVE", @@ -267559,7 +580154,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -267602,7 +580225,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -267645,7 +580296,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -267682,7 +580361,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -267725,7 +580432,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -267831,10 +580566,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83407\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83407/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -267871,7 +580634,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -267908,7 +580699,7 @@ "8:30", "9:20", "SDQ BUSH-S100 - Sterling Divinity Quadrangle BUSH-S100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ], "Wednesday": [ @@ -267916,7 +580707,7 @@ "8:30", "9:20", "SDQ BUSH-S100 - Sterling Divinity Quadrangle BUSH-S100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ], "Friday": [ @@ -267924,7 +580715,7 @@ "8:30", "9:20", "SDQ BUSH-S100 - Sterling Divinity Quadrangle BUSH-S100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -267939,7 +580730,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -267976,7 +580795,7 @@ "8:30", "9:20", "SDQ SG54 - Sterling Divinity Quadrangle SG54", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ], "Wednesday": [ @@ -267984,7 +580803,7 @@ "8:30", "9:20", "SDQ SG54 - Sterling Divinity Quadrangle SG54", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ], "Friday": [ @@ -267992,7 +580811,7 @@ "8:30", "9:20", "SDQ SG54 - Sterling Divinity Quadrangle SG54", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -268004,10 +580823,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86543\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86543/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -268044,7 +580891,7 @@ "10:00", "11:20", "SDQ WOOD - Sterling Divinity Quadrangle WOOD", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ], "Thursday": [ @@ -268052,7 +580899,7 @@ "10:00", "11:20", "SDQ WOOD - Sterling Divinity Quadrangle WOOD", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -268064,10 +580911,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87235\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87235/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -268110,7 +580985,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -268147,14 +581050,42 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", "description": "The overall purpose of the Colloquium series in the Anglican Studies curriculum is to supplement the curriculum with topics of importance in preparing for service to God in and through the Episcopal Church and Anglican Communion. The Colloquium offers Episcopal and Anglican students an opportunity to engage in reflection and discernment on their experience of formation for religious leadership, lay and ordained, providing an opportunity to integrate varied theological disciplines. While leadership skills and capabilities can in some measure be taught abstractly, they are most effectively integrated into one\u2019s formation through exposure to seasoned leaders in various institutional contexts. Students explore a wide variety of leadership skills and styles in the presentations at the Colloquium and the assigned readings. Students practice leadership skills through role-playing, improvisation, and case studies. The intention is to set a leadership context in which students can practice leadership lessons that can be adapted to a ministry environment. Each term of the Colloquium focuses on different leadership skills. Over the course of their participation in Colloquium, Berkeley students are exposed to, and given an opportunity to practice, valuable leadership skills for ministry. These colloquia are required of all Berkeley Divinity School students wishing to qualify for the Diploma in Anglican Studies.", "short_title": "Colloquium on Ministry Format...", - "title": "Colloquium on Ministry Formation\/Anglican", + "title": "Colloquium on Ministry Formation/Anglican", "school": "DI", "credits": 0.0, "extra_info": "ACTIVE", @@ -268187,7 +581118,7 @@ "16:00", "17:20", "SDQ NIEBUHR - Sterling Divinity Quadrangle NIEBUHR", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -268199,17 +581130,45 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86545\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86545/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", "description": "The one-half-credit Lutheran Colloquium is offered each fall and spring term. The fall colloquium focuses on Lutheran worship; the spring colloquium focuses on Lutheran spiritual practices and self-care. The primary focus is on students considering ordination in the Evangelical Lutheran Church in America, but it is open to all.", "short_title": "Colloquium on Ministry Format...", - "title": "Colloquium on Ministry Formation\/Lutheran", + "title": "Colloquium on Ministry Formation/Lutheran", "school": "DI", "credits": 0.0, "extra_info": "ACTIVE", @@ -268242,10 +581201,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86546\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86546/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -268282,7 +581269,7 @@ "17:30", "18:20", "SDQ BUSH-S100 - Sterling Divinity Quadrangle BUSH-S100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -268294,10 +581281,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86547\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86547/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -268334,7 +581349,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -268380,7 +581423,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -268432,7 +581503,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -268469,12 +581568,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This two-day (Friday afternoon\/evening and all day Saturday), one-credit course offers intense engagement with significant leaders in church and society and include analysis, reflection, and leadership training models for those who anticipate leadership roles in churches and other institutions. In addition to reading about 300 pages in preparation for the weekend class, a ten-page response paper is due two weeks following conclusion of the course.", + "description": "This two-day (Friday afternoon/evening and all day Saturday), one-credit course offers intense engagement with significant leaders in church and society and include analysis, reflection, and leadership training models for those who anticipate leadership roles in churches and other institutions. In addition to reading about 300 pages in preparation for the weekend class, a ten-page response paper is due two weeks following conclusion of the course.", "short_title": "Transformational Leadership: ...", "title": "Transformational Leadership: TL:Antiracism&TransformtvPower", "school": "DI", @@ -268509,15 +581636,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86551\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86551/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This two-day (Friday afternoon\/evening and all day Saturday), one-credit course offers intense engagement with significant leaders in church and society and include analysis, reflection, and leadership training models for those who anticipate leadership roles in churches and other institutions. In addition to reading about 300 pages in preparation for the weekend class, a ten-page response paper is due two weeks following conclusion of the course.", + "description": "This two-day (Friday afternoon/evening and all day Saturday), one-credit course offers intense engagement with significant leaders in church and society and include analysis, reflection, and leadership training models for those who anticipate leadership roles in churches and other institutions. In addition to reading about 300 pages in preparation for the weekend class, a ten-page response paper is due two weeks following conclusion of the course.", "short_title": "Transformational Leadership: ...", "title": "Transformational Leadership: TL:Faith&ClimateChange", "school": "DI", @@ -268552,10 +581707,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87207\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87207/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -268592,7 +581775,7 @@ "18:00", "20:00", "SDQ JE-DINING - Sterling Divinity Quadrangle JE-DINING", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -268604,10 +581787,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86552\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86552/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -268644,22 +581855,50 @@ "15:30", "17:20", "SDQ WOOD - Sterling Divinity Quadrangle WOOD", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, "skills": [], "areas": [], "flags": [], - "regnotes": "Course meeting dates: 1\/23; 2\/6; 2\/20; 3\/6; 4\/3; 4\/17.\nExcept in cases where students have special permission, this course is limited to students participating in Andover Newton Seminary's diploma program", + "regnotes": "Course meeting dates: 1/23; 2/6; 2/20; 3/6; 4/3; 4/17.\nExcept in cases where students have special permission, this course is limited to students participating in Andover Newton Seminary's diploma program", "rp_attr": "", "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86553\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86553/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -268708,10 +581947,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86554\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86554/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -268751,7 +582018,7 @@ "15:30", "17:20", "SDQ GREAT - Sterling Divinity Quadrangle GREAT", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -268766,7 +582033,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -268806,7 +582101,7 @@ "16:00", "17:20", "SDQ BUSH-S104 - Sterling Divinity Quadrangle BUSH-S104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -268818,15 +582113,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86556\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86556/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "Prerequisite: Successful completion of REL 3993 and REL 3994 or of REL 3986 and REL 3987.", - "description": "This is the second term of an advanced, year-long, non-profit internship option for students who have successfully completed REL 3993\/3994 or REL 3986\/3987. This internship requires 300 hours that include participation in a weekly one-hour practicum group. The practicum group includes discussion of the experiential learning taking place at the internship sites and various reading assignments.\u00a0A $5000 stipend is offered, paid out through the full year. It is expected that students enroll in both fall and spring terms.\u00a0Students may do a non-profit internship in their area of interest as long as the site is approved by the director of professional formation.", + "description": "This is the second term of an advanced, year-long, non-profit internship option for students who have successfully completed REL 3993/3994 or REL 3986/3987. This internship requires 300 hours that include participation in a weekly one-hour practicum group. The practicum group includes discussion of the experiential learning taking place at the internship sites and various reading assignments.\u00a0A $5000 stipend is offered, paid out through the full year. It is expected that students enroll in both fall and spring terms.\u00a0Students may do a non-profit internship in their area of interest as long as the site is approved by the director of professional formation.", "short_title": "Advanced Practicum for Non-Pr...", "title": "Advanced Practicum for Non-Profit Internship II", "school": "DI", @@ -268861,10 +582184,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87444\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87444/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -268901,7 +582252,7 @@ "16:00", "17:30", "SDQ BUSH-S104 - Sterling Divinity Quadrangle BUSH-S104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -268913,10 +582264,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86557\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86557/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -268965,10 +582344,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87208\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87208/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -269020,7 +582427,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -269069,15 +582504,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86558\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86558/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "Prerequisites: REL 3991.", - "description": "Vocational discernment takes place in the classroom as well as in the field, where students can express their faith in action, testing the waters of identity as minister, theologian, social activist. YDS offers a few different internships through which a student may explore their role in the church and the world. This course, a continuation of REL 3991, offers the\u00a0opportunity to examine possibilities for work in the world\u00a0through an immersive yearlong experience in a nonprofit setting. Students are assigned to boards of nonprofits in the Greater New Haven region, where they attend board meetings, participate on a board committee of their choice, and engage with the board on a special project. Through a twice-monthly seminar spanning both fall and spring terms, students explore nonprofit leadership, organizational structure and governance, and the larger context of community. Agency mentors and the seminar groups help guide the student\u2019s learning. This nonprofit immersion requires just under 100 hours in a combination of agency meetings, special project work, and seminar sessions. Students must register for REL 3991 in the fall term and REL 3992 in the Spring term, 1.5 credits each term. Students are introduced to participating nonprofits at the beginning of the fall term and are assigned by mid-September. Participating agencies may include those focused on community development, housing and homelessness, food insecurity, health care, prison reentry\/prison education, environmental justice, immigration, the arts, and others. A stipend of $500 is given at the end of each semester.", + "description": "Vocational discernment takes place in the classroom as well as in the field, where students can express their faith in action, testing the waters of identity as minister, theologian, social activist. YDS offers a few different internships through which a student may explore their role in the church and the world. This course, a continuation of REL 3991, offers the\u00a0opportunity to examine possibilities for work in the world\u00a0through an immersive yearlong experience in a nonprofit setting. Students are assigned to boards of nonprofits in the Greater New Haven region, where they attend board meetings, participate on a board committee of their choice, and engage with the board on a special project. Through a twice-monthly seminar spanning both fall and spring terms, students explore nonprofit leadership, organizational structure and governance, and the larger context of community. Agency mentors and the seminar groups help guide the student\u2019s learning. This nonprofit immersion requires just under 100 hours in a combination of agency meetings, special project work, and seminar sessions. Students must register for REL 3991 in the fall term and REL 3992 in the Spring term, 1.5 credits each term. Students are introduced to participating nonprofits at the beginning of the fall term and are assigned by mid-September. Participating agencies may include those focused on community development, housing and homelessness, food insecurity, health care, prison reentry/prison education, environmental justice, immigration, the arts, and others. A stipend of $500 is given at the end of each semester.", "short_title": "Board Fellows Practicum II", "title": "Board Fellows Practicum II", "school": "DI", @@ -269109,7 +582572,7 @@ "15:30", "17:20", "SDQ BROHOLM - Sterling Divinity Quadrangle BROHOLM", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -269124,7 +582587,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -269161,7 +582652,7 @@ "16:00", "17:20", "SDQ BUSH-S101 - Sterling Divinity Quadrangle BUSH-S101", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -269173,10 +582664,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86560\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86560/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -269213,7 +582732,7 @@ "15:30", "17:00", "SDQ WOOD - Sterling Divinity Quadrangle WOOD", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -269225,10 +582744,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86561\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86561/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -269265,7 +582812,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -269302,7 +582877,7 @@ "10:30", "11:20", "SDQ NIEBUHR - Sterling Divinity Quadrangle NIEBUHR", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ], "Wednesday": [ @@ -269310,7 +582885,7 @@ "10:30", "11:20", "SDQ NIEBUHR - Sterling Divinity Quadrangle NIEBUHR", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ], "Friday": [ @@ -269318,7 +582893,7 @@ "10:30", "11:20", "SDQ NIEBUHR - Sterling Divinity Quadrangle NIEBUHR", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -269333,10 +582908,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86563\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86563/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -269373,7 +582976,7 @@ "10:30", "11:20", "SDQ GREAT - Sterling Divinity Quadrangle GREAT", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ], "Wednesday": [ @@ -269381,7 +582984,7 @@ "10:30", "11:20", "SDQ GREAT - Sterling Divinity Quadrangle GREAT", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ], "Friday": [ @@ -269389,7 +582992,7 @@ "10:30", "11:20", "SDQ GREAT - Sterling Divinity Quadrangle GREAT", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -269404,10 +583007,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86564\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86564/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -269446,7 +583077,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -269483,7 +583142,7 @@ "9:00", "10:20", "SDQ BUSH-S100 - Sterling Divinity Quadrangle BUSH-S100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ], "Thursday": [ @@ -269491,7 +583150,7 @@ "9:00", "10:20", "SDQ BUSH-S100 - Sterling Divinity Quadrangle BUSH-S100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -269505,15 +583164,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86566\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86566/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This seminar is divided into two parts. The first considers possible concepts of race and\/or ethnicity in the ancient Mediterranean world, while the second focuses on racial\/ethnic theory and minoritized hermeneutics. Ancient primary sources, the New Testament, and contemporary scholarship form the reading materials. Area I and Area V.", + "description": "This seminar is divided into two parts. The first considers possible concepts of race and/or ethnicity in the ancient Mediterranean world, while the second focuses on racial/ethnic theory and minoritized hermeneutics. Ancient primary sources, the New Testament, and contemporary scholarship form the reading materials. Area I and Area V.", "short_title": "\u201cRace\u201d and the New Testament", "title": "\u201cRace\u201d and the New Testament", "school": "DI", @@ -269545,7 +583232,7 @@ "13:30", "15:20", "SDQ LATOURETTE - Sterling Divinity Quadrangle LATOURETTE", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -269561,10 +583248,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86567\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86567/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -269601,7 +583316,7 @@ "13:30", "15:20", "SDQ JE-DINING - Sterling Divinity Quadrangle JE-DINING", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -269615,10 +583330,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87199\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87199/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -269658,7 +583401,7 @@ "13:30", "15:20", "SDQ JE-DINING - Sterling Divinity Quadrangle JE-DINING", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -269672,10 +583415,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86568\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86568/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -269712,7 +583483,7 @@ "9:30", "11:20", "SDQ LIBR-104 - Sterling Divinity Quadrangle LIBR-104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -269726,10 +583497,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86569\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86569/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -269766,7 +583565,7 @@ "15:30", "17:20", "SDQ BUSH-S104 - Sterling Divinity Quadrangle BUSH-S104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -269782,10 +583581,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87242\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87242/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -269822,7 +583649,7 @@ "9:00", "10:20", "SDQ BROHOLM - Sterling Divinity Quadrangle BROHOLM", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ], "Thursday": [ @@ -269830,7 +583657,7 @@ "9:00", "10:20", "SDQ BROHOLM - Sterling Divinity Quadrangle BROHOLM", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -269847,7 +583674,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -269884,7 +583739,7 @@ "15:30", "17:20", "SDQ JE-DINING - Sterling Divinity Quadrangle JE-DINING", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -269898,14 +583753,42 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86660\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86660/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", - "requirements": "Prerequisites: some level of reading ability in Greek, Latin, or Arabic; some level of reading ability in German, French, or modern Greek; and previous course work in\u00a0early Christianity, New Testament, or Classics\/Roman history.", + "requirements": "Prerequisites: some level of reading ability in Greek, Latin, or Arabic; some level of reading ability in German, French, or modern Greek; and previous course work in\u00a0early Christianity, New Testament, or Classics/Roman history.", "description": "The first portion of the course introduces students to working with archaeological data from the Greco-Roman world (inscriptions, architecture, sculpture, coins). The second portion consists of seminars in Greece and Turkey during May, including some meetings with archaeologists and other scholars abroad. Area I.", "short_title": "Archaeology of the Roman Empi...", "title": "Archaeology of the Roman Empire for the Study of New Testament and Early Christianity", @@ -269939,7 +583822,7 @@ "13:30", "15:20", "WLH 202 - William L. Harkness Hall 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -269952,16 +583835,44 @@ "rp_attr": "", "classnotes": "", "final_exam": "", - "course_home_url": "https:\/\/yale.instructure.com\/courses\/86570", + "course_home_url": "https://yale.instructure.com/courses/86570", "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "Prerequisite: Facility in reading Hellenistic Greek.", - "description": "No other letter in the New Testament has had as much impact on the history of Christianity as Romans. From the garden in which Augustine heard a voice reading from Romans that led to his conversion, through Luther\u2019s lectures on it at the University of Wittenberg in 1515\u201316, until Karl Barth wrote his famous commentary that changed the landscape of Protestant theology in the early twentieth century, Romans has played a significant role in pivotal moments. This course consists of a close reading of the Greek text of Romans. The class also explores some of the larger issues raised both by the text and by its reception throughout Christian history and in the contemporary church, especially in the way in which the Jew\/Gentile divide in the letter has implications for racial tensions in our world. Area I.", + "description": "No other letter in the New Testament has had as much impact on the history of Christianity as Romans. From the garden in which Augustine heard a voice reading from Romans that led to his conversion, through Luther\u2019s lectures on it at the University of Wittenberg in 1515\u201316, until Karl Barth wrote his famous commentary that changed the landscape of Protestant theology in the early twentieth century, Romans has played a significant role in pivotal moments. This course consists of a close reading of the Greek text of Romans. The class also explores some of the larger issues raised both by the text and by its reception throughout Christian history and in the contemporary church, especially in the way in which the Jew/Gentile divide in the letter has implications for racial tensions in our world. Area I.", "short_title": "Greek Exegesis: Paul\u2019s Letter...", "title": "Greek Exegesis: Paul\u2019s Letter to the Romans", "school": "DI", @@ -269993,7 +583904,7 @@ "15:30", "17:20", "SDQ JE-DINING - Sterling Divinity Quadrangle JE-DINING", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -270010,7 +583921,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -270047,7 +583986,7 @@ "9:30", "11:20", "SDQ JE-DINING - Sterling Divinity Quadrangle JE-DINING", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -270063,15 +584002,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87263\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87263/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course considers varied black theological traditions. It inquires: What does it mean to be black and Christian (and, by extension, to be black, Christian, and poor; black, Christian, and woman; black, Christian, and sexually minoritized; black, Christian, and diasporan immigrant; and\/or any aggregation of these social indicators) amidst racist, sexist, heterosexist, and xenophobic social contexts and theological metanarratives rooted in white cisgendered heteronormativity? In light of black realities, black theology asks: Who is God and who is God in Christ for those who live and move and have their being in the margins of church and society? Students preliminarily engage the underpinnings of the black radical tradition as a proto-black theological response to anti-black racism in the United States. Students further engage the substantial intracommunal critique of black theological method. The course concludes with an examination of the problem of ontological blackness, as well as an abbreviated consideration of the peril and promise that varieties of blacknesses and black religious experience hold for the Black Church and for black theological and praxeological tasks in the twenty-first century. Area II.", + "description": "This course considers varied black theological traditions. It inquires: What does it mean to be black and Christian (and, by extension, to be black, Christian, and poor; black, Christian, and woman; black, Christian, and sexually minoritized; black, Christian, and diasporan immigrant; and/or any aggregation of these social indicators) amidst racist, sexist, heterosexist, and xenophobic social contexts and theological metanarratives rooted in white cisgendered heteronormativity? In light of black realities, black theology asks: Who is God and who is God in Christ for those who live and move and have their being in the margins of church and society? Students preliminarily engage the underpinnings of the black radical tradition as a proto-black theological response to anti-black racism in the United States. Students further engage the substantial intracommunal critique of black theological method. The course concludes with an examination of the problem of ontological blackness, as well as an abbreviated consideration of the peril and promise that varieties of blacknesses and black religious experience hold for the Black Church and for black theological and praxeological tasks in the twenty-first century. Area II.", "short_title": "Black Theology", "title": "Black Theology", "school": "DI", @@ -270103,7 +584070,7 @@ "13:30", "15:20", "SDQ LATOURETTE - Sterling Divinity Quadrangle LATOURETTE", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -270119,10 +584086,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87105\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87105/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -270159,7 +584154,7 @@ "15:30", "17:20", "SDQ SG54 - Sterling Divinity Quadrangle SG54", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -270174,10 +584169,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86572\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86572/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -270214,7 +584237,7 @@ "18:30", "20:30", "PR406 203 - 406 Prospect St., Miller Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/559978" + "https://map.yale.edu/?id=1910#!m/559978" ] ], "Friday": [ @@ -270222,7 +584245,7 @@ "13:30", "15:20", "PR406 203 - 406 Prospect St., Miller Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/559978" + "https://map.yale.edu/?id=1910#!m/559978" ] ] }, @@ -270241,7 +584264,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -270278,7 +584329,7 @@ "9:30", "10:20", "SDQ NIEBUHR - Sterling Divinity Quadrangle NIEBUHR", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ], "Thursday": [ @@ -270286,7 +584337,7 @@ "9:30", "10:20", "SDQ NIEBUHR - Sterling Divinity Quadrangle NIEBUHR", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -270303,10 +584354,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86573\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86573/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -270343,7 +584422,7 @@ "15:30", "17:20", "SDQ BUSH-S100 - Sterling Divinity Quadrangle BUSH-S100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -270360,10 +584439,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86661\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86661/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -270400,7 +584507,7 @@ "13:30", "15:20", "SDQ LATOURETTE - Sterling Divinity Quadrangle LATOURETTE", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -270415,10 +584522,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87106\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87106/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -270455,7 +584590,7 @@ "9:30", "11:20", "SDQ S212 - Sterling Divinity Quadrangle S212", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -270470,10 +584605,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86574\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86574/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -270510,7 +584673,7 @@ "10:30", "11:20", "SDQ NIEBUHR - Sterling Divinity Quadrangle NIEBUHR", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ], "Thursday": [ @@ -270518,7 +584681,7 @@ "10:30", "11:20", "SDQ NIEBUHR - Sterling Divinity Quadrangle NIEBUHR", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -270534,10 +584697,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86575\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86575/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -270574,7 +584765,7 @@ "15:30", "17:20", "PR406 107 - 406 Prospect St., Miller Hall 107", - "https:\/\/map.yale.edu\/?id=1910#!m\/559978" + "https://map.yale.edu/?id=1910#!m/559978" ] ] }, @@ -270588,10 +584779,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86576\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86576/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -270628,7 +584847,7 @@ "13:30", "15:20", "SDQ WOOD - Sterling Divinity Quadrangle WOOD", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -270642,10 +584861,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86577\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86577/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -270682,7 +584929,7 @@ "13:30", "15:20", "SDQ BUSH-S100 - Sterling Divinity Quadrangle BUSH-S100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -270697,10 +584944,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86578\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86578/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -270737,7 +585012,7 @@ "13:30", "15:20", "SDQ BROHOLM - Sterling Divinity Quadrangle BROHOLM", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -270751,10 +585026,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86579\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86579/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -270791,7 +585094,7 @@ "13:30", "15:20", "SDQ SG54 - Sterling Divinity Quadrangle SG54", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -270805,10 +585108,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86580\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86580/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -270848,7 +585158,7 @@ "13:30", "15:20", "SDQ BUSH-S100 - Sterling Divinity Quadrangle BUSH-S100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -270863,10 +585173,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86581\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86581/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -270903,7 +585241,7 @@ "13:30", "15:20", "SDQ WOOD - Sterling Divinity Quadrangle WOOD", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -270917,10 +585255,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86582\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86582/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -270957,7 +585323,7 @@ "9:30", "11:20", "PR406 203 - 406 Prospect St., Miller Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/559978" + "https://map.yale.edu/?id=1910#!m/559978" ] ] }, @@ -270973,10 +585339,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86583\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86583/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -271013,7 +585407,7 @@ "13:30", "15:20", "SDQ S212 - Sterling Divinity Quadrangle S212", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -271027,14 +585421,42 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86584\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86584/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", - "requirements": "Prerequisites: REL 682, concurrent or completed, will be an asset, as will a course in liturgical studies and\/or Catholic theology.", + "requirements": "Prerequisites: REL 682, concurrent or completed, will be an asset, as will a course in liturgical studies and/or Catholic theology.", "description": "This course offers an introduction to Roman Catholic liturgical traditions and practices. Given the breadth of the subject matter (2,000 years of history; complex dogmatic developments; numerous rites, rituals, and rhythms; contemporary tensions), the course seeks to range broadly, yet has to do so quite selectively. One focus is on key liturgical documents of the past hundred years or so. And throughout the course, attention is paid to the broader cultural realities that always influence practices of worship, e.g., ethnic identities, and, more recently, media developments (for example, the migration of Catholic liturgical practices into digital social space).\u00a0Area II.", "short_title": "Catholic Liturgy", "title": "Catholic Liturgy", @@ -271067,7 +585489,7 @@ "13:30", "15:20", "SDQ S212 - Sterling Divinity Quadrangle S212", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -271081,10 +585503,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86585\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86585/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -271121,7 +585571,7 @@ "18:00", "19:50", "SDQ BUSH-S101 - Sterling Divinity Quadrangle BUSH-S101", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -271138,7 +585588,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -271177,7 +585655,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -271215,7 +585721,7 @@ "9:30", "10:20", "SDQ NIEBUHR - Sterling Divinity Quadrangle NIEBUHR", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ], "Wednesday": [ @@ -271223,7 +585729,7 @@ "9:30", "10:20", "SDQ NIEBUHR - Sterling Divinity Quadrangle NIEBUHR", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ], "Friday": [ @@ -271231,7 +585737,7 @@ "9:30", "10:20", "SDQ NIEBUHR - Sterling Divinity Quadrangle NIEBUHR", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -271245,10 +585751,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85117\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85117/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -271288,7 +585822,7 @@ "9:30", "10:20", "SDQ GREAT - Sterling Divinity Quadrangle GREAT", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ], "Wednesday": [ @@ -271296,7 +585830,7 @@ "9:30", "10:20", "SDQ GREAT - Sterling Divinity Quadrangle GREAT", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ], "Friday": [ @@ -271304,7 +585838,7 @@ "9:30", "10:20", "SDQ GREAT - Sterling Divinity Quadrangle GREAT", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -271319,15 +585853,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86588\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86588/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course explores the history of liberation theology and liberationist Christian movements in Latin America, paying particular attention to the political, economic, social, and cultural ramifications of the emergence of the \"Church(es) of the People.\" The majority of assigned readings are primary sources that document a wide variety of liberationist experiences and actors. Students read about activists in peasant leagues, priests resisting authoritarian regimes, bishops coming together to outline new paths for the Latin American Catholic Church, women promoting feminist liberation theologies, laypeople leading ecclesial base communities, and more. The seminar examines and discusses a number of questions, including: How did the liberation theology movement change over time? What was the relationship between religion and politics in Latin America during times of war and dictatorship? How did the liberation theology movement subvert traditional notions of political and religious authority? What does it mean to build a \"Church of the People,\" and how did the liberation theology movement succeed and\/or fail to build such a church? Area III and Area V.", + "description": "This course explores the history of liberation theology and liberationist Christian movements in Latin America, paying particular attention to the political, economic, social, and cultural ramifications of the emergence of the \"Church(es) of the People.\" The majority of assigned readings are primary sources that document a wide variety of liberationist experiences and actors. Students read about activists in peasant leagues, priests resisting authoritarian regimes, bishops coming together to outline new paths for the Latin American Catholic Church, women promoting feminist liberation theologies, laypeople leading ecclesial base communities, and more. The seminar examines and discusses a number of questions, including: How did the liberation theology movement change over time? What was the relationship between religion and politics in Latin America during times of war and dictatorship? How did the liberation theology movement subvert traditional notions of political and religious authority? What does it mean to build a \"Church of the People,\" and how did the liberation theology movement succeed and/or fail to build such a church? Area III and Area V.", "short_title": "The Liberation Theology Movem...", "title": "The Liberation Theology Movement in Latin America: History and Sources", "school": "DI", @@ -271359,7 +585921,7 @@ "13:30", "15:20", "SDQ LIBR-104 - Sterling Divinity Quadrangle LIBR-104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -271377,10 +585939,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86589\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86589/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -271417,7 +586007,7 @@ "13:30", "15:20", "SDQ BUSH-S104 - Sterling Divinity Quadrangle BUSH-S104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -271434,10 +586024,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86590\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86590/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -271474,7 +586092,7 @@ "13:30", "15:20", "SDQ BUSH-S104 - Sterling Divinity Quadrangle BUSH-S104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -271493,7 +586111,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -271530,7 +586176,7 @@ "9:30", "11:20", "SDQ BUSH-S104 - Sterling Divinity Quadrangle BUSH-S104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -271544,10 +586190,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86591\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86591/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -271584,7 +586258,7 @@ "13:30", "15:20", "SDQ N54 - Sterling Divinity Quadrangle N54", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -271598,10 +586272,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86592\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86592/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -271639,7 +586341,7 @@ "13:30", "15:20", "SDQ BUSH-S104 - Sterling Divinity Quadrangle BUSH-S104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -271654,15 +586356,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87077\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87077/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course surveys the religious and moral frameworks used to define \"America\" in the culture wars of the long twentieth century. Beginning with the \"Roaring Twenties,\" students critically examine national controversies on alcohol, biological evolutionism, birth control, and Communism to shed light on different and conflicting religious and moral frameworks used to define American identity and regulate human conduct. Our exploration of the Long Culture Wars helps us engage the place of Christianity in the debates around music and art, education, abortion, HIV\/AIDS, and 9\/11 in the latter twentieth and twenty-first centuries. In the end, this course helps us understand the Culture Wars in American Christianity and politics today. Area III.", + "description": "This course surveys the religious and moral frameworks used to define \"America\" in the culture wars of the long twentieth century. Beginning with the \"Roaring Twenties,\" students critically examine national controversies on alcohol, biological evolutionism, birth control, and Communism to shed light on different and conflicting religious and moral frameworks used to define American identity and regulate human conduct. Our exploration of the Long Culture Wars helps us engage the place of Christianity in the debates around music and art, education, abortion, HIV/AIDS, and 9/11 in the latter twentieth and twenty-first centuries. In the end, this course helps us understand the Culture Wars in American Christianity and politics today. Area III.", "short_title": "Battle for the Soul of Americ...", "title": "Battle for the Soul of America: Christianity and the Culture Wars", "school": "DI", @@ -271694,7 +586424,7 @@ "9:30", "11:20", "SDQ JE-DINING - Sterling Divinity Quadrangle JE-DINING", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -271712,7 +586442,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -271751,7 +586509,7 @@ "15:30", "17:20", "PR406 203 - 406 Prospect St., Miller Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/559978" + "https://map.yale.edu/?id=1910#!m/559978" ] ] }, @@ -271766,10 +586524,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85922\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85922/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -271810,7 +586596,7 @@ "15:30", "17:20", "SDQ LATOURETTE - Sterling Divinity Quadrangle LATOURETTE", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -271825,15 +586611,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84986\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84986/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "Under the logics of Western modernity, \"religion\" and \"law\" are commonly perceived to be easily distinguishable from one another, with each operating as a distinct and largely self-contained aspect of societal organization and social life. Applying the theories and methods of religious studies, this course seeks to critically interrogate that assumption by scrutinizing the complex ways in which religion and law have mutually influenced one another in both historical and contemporary contexts. With a particular focus on the United States, this seminar explores how various religious histories and practices as well as theological claims have helped to structure American legislation, public policy, and judicial doctrines. In turn, it also examines how the American legal system has operated to shape and constrain the possibilities of religious expression and flourishing. Course participants begin by developing a set of critical frameworks from within which to consider and assess interrelationships between religion and law. In relation to this critical rubric, the course then generally proceeds chronologically, focusing on moments in US history and politics when intersections of religion and law are especially salient. Topics, for example, include First Amendment doctrine, the (mis)recognition of Native American traditions, the aesthetics of civic religious displays, and the enduring legacies of slavery and gender subordination. Prior coursework in US religious and\/or legal history is preferred. Area III and Area V.", + "description": "Under the logics of Western modernity, \"religion\" and \"law\" are commonly perceived to be easily distinguishable from one another, with each operating as a distinct and largely self-contained aspect of societal organization and social life. Applying the theories and methods of religious studies, this course seeks to critically interrogate that assumption by scrutinizing the complex ways in which religion and law have mutually influenced one another in both historical and contemporary contexts. With a particular focus on the United States, this seminar explores how various religious histories and practices as well as theological claims have helped to structure American legislation, public policy, and judicial doctrines. In turn, it also examines how the American legal system has operated to shape and constrain the possibilities of religious expression and flourishing. Course participants begin by developing a set of critical frameworks from within which to consider and assess interrelationships between religion and law. In relation to this critical rubric, the course then generally proceeds chronologically, focusing on moments in US history and politics when intersections of religion and law are especially salient. Topics, for example, include First Amendment doctrine, the (mis)recognition of Native American traditions, the aesthetics of civic religious displays, and the enduring legacies of slavery and gender subordination. Prior coursework in US religious and/or legal history is preferred. Area III and Area V.", "short_title": "Readings in US Law and Religion", "title": "Readings in US Law and Religion", "school": "DI", @@ -271884,15 +586698,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85246\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85246/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course introduces students to public theology, public policy, and moral fusion movements in American history. Through a three-fold framework of moral analysis, moral articulation and moral action, students are invited to examine how public theology has impacted the most significant advances in public policy in American history and why pastors, clergy, and theologians of our time must practice in the tradition of moral leaders who have challenged systemic oppression in the public square and guided critical public policy shifts over the past two centuries.\u00a0While it is commonplace in American public life to acknowledge that we are, as a people, \"more divided than ever,\" conversations about critical issues impacting our communities are consistently framed by a shared narrative of left versus right, liberal versus conservative, progressive versus traditional. This framing allows for a distorted moral narrative that focuses religious leadership and moral concerns either on a narrow set of personal issues or on wedge issues designed to perpetuate the left\/right frame. Religion has been co-opted in American public life to serve the narrow interests of an extreme minority.\u00a0Throughout this course, students will be called to reimagine what public theology and moral action can look like today, and how they can apply these historical lessons as they develop their own practice of theology.\u00a0Area IV and Area V", + "description": "This course introduces students to public theology, public policy, and moral fusion movements in American history. Through a three-fold framework of moral analysis, moral articulation and moral action, students are invited to examine how public theology has impacted the most significant advances in public policy in American history and why pastors, clergy, and theologians of our time must practice in the tradition of moral leaders who have challenged systemic oppression in the public square and guided critical public policy shifts over the past two centuries.\u00a0While it is commonplace in American public life to acknowledge that we are, as a people, \"more divided than ever,\" conversations about critical issues impacting our communities are consistently framed by a shared narrative of left versus right, liberal versus conservative, progressive versus traditional. This framing allows for a distorted moral narrative that focuses religious leadership and moral concerns either on a narrow set of personal issues or on wedge issues designed to perpetuate the left/right frame. Religion has been co-opted in American public life to serve the narrow interests of an extreme minority.\u00a0Throughout this course, students will be called to reimagine what public theology and moral action can look like today, and how they can apply these historical lessons as they develop their own practice of theology.\u00a0Area IV and Area V", "short_title": "Introduction to Public Theolo...", "title": "Introduction to Public Theology, Public Policy, and Moral Fusion Movements in America", "school": "DI", @@ -271927,7 +586769,7 @@ "13:30", "15:20", "SDQ SG58 - Sterling Divinity Quadrangle SG58", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -271942,10 +586784,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87200\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87200/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -271991,7 +586861,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -272028,7 +586926,7 @@ "18:30", "20:00", "SDQ MARQ - Sterling Divinity Quadrangle MARQ", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -272045,7 +586943,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -272082,7 +587008,7 @@ "19:00", "21:00", "SDQ MARQ - Sterling Divinity Quadrangle MARQ", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -272099,12 +587025,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "As an introduction to pastoral theology and care, this course explores the\u00a0history, theory, and methods of the care of souls tradition, concentrating on the narrative, communal-contextual model. The course\u00a0invites learners\u00a0into the practice of particular\u00a0pastoral care skills such as listening and responding in pastoral conversations; supporting families through life transitions; \"reading\" and engaging cultural contexts and systems of injustice in which care takes place; and the\u00a0intentional\u00a0uses of the self in spiritual care. The course introduces at a basic level key theoretical\u00a0frameworks\u00a0including narrative, intercultural\/interreligious care; family systems; and grief and trauma theory.\u00a0Teaching and learning methods include lecture, discussion, case studies, role plays, theological reflection, genograms, and visits to local ministry sites. Area IV.", + "description": "As an introduction to pastoral theology and care, this course explores the\u00a0history, theory, and methods of the care of souls tradition, concentrating on the narrative, communal-contextual model. The course\u00a0invites learners\u00a0into the practice of particular\u00a0pastoral care skills such as listening and responding in pastoral conversations; supporting families through life transitions; \"reading\" and engaging cultural contexts and systems of injustice in which care takes place; and the\u00a0intentional\u00a0uses of the self in spiritual care. The course introduces at a basic level key theoretical\u00a0frameworks\u00a0including narrative, intercultural/interreligious care; family systems; and grief and trauma theory.\u00a0Teaching and learning methods include lecture, discussion, case studies, role plays, theological reflection, genograms, and visits to local ministry sites. Area IV.", "short_title": "Introduction to Pastoral Theo...", "title": "Introduction to Pastoral Theology and Care", "school": "DI", @@ -272136,7 +587090,7 @@ "13:30", "16:00", "SDQ LATOURETTE - Sterling Divinity Quadrangle LATOURETTE", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -272150,10 +587104,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86596\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86596/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -272190,7 +587172,7 @@ "15:30", "17:20", "SDQ SG54 - Sterling Divinity Quadrangle SG54", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -272206,10 +587188,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86597\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86597/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -272246,7 +587256,7 @@ "14:00", "15:20", "SDQ NIEBUHR - Sterling Divinity Quadrangle NIEBUHR", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -272262,15 +587272,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86598\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86598/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "Prerequisite: REL 807.", - "description": "This course invites participants into the study of three distinct but overlapping forms of human suffering. Trauma is a person\u2019s experience of threat to one\u2019s being and\/or identity that exceeds resources for coping with the threat, and which resists integration. Moral injury has been identified more recently by scholars and clinicians as a psychological wound involving violation of conscience\/deeply held values, either by someone in a position of legitimate authority or by one\u2019s self, in a high-stakes situation. Crises are turning-point moments of extreme difficulty or distress that bring to the foreground fundamental questions about life matters such as relationships, purpose\/vocation, and the existence and presence of God in human affairs. Engaging practical theology\u2019s multidisciplinary approach to these three complex phenomena, we utilize perspectives from theology, psychology, sociology, biology, cinema, and art as frameworks for understanding and responding. We learn and practice basic skills of crisis intervention and trauma-informed pastoral care. Topics include collective trauma, transgenerational trauma transmission, PTSD, \"secondary\" trauma, post-traumatic growth, crisis theory, suicide, memorialization, and pastoral care in disasters. Area IV.", + "description": "This course invites participants into the study of three distinct but overlapping forms of human suffering. Trauma is a person\u2019s experience of threat to one\u2019s being and/or identity that exceeds resources for coping with the threat, and which resists integration. Moral injury has been identified more recently by scholars and clinicians as a psychological wound involving violation of conscience/deeply held values, either by someone in a position of legitimate authority or by one\u2019s self, in a high-stakes situation. Crises are turning-point moments of extreme difficulty or distress that bring to the foreground fundamental questions about life matters such as relationships, purpose/vocation, and the existence and presence of God in human affairs. Engaging practical theology\u2019s multidisciplinary approach to these three complex phenomena, we utilize perspectives from theology, psychology, sociology, biology, cinema, and art as frameworks for understanding and responding. We learn and practice basic skills of crisis intervention and trauma-informed pastoral care. Topics include collective trauma, transgenerational trauma transmission, PTSD, \"secondary\" trauma, post-traumatic growth, crisis theory, suicide, memorialization, and pastoral care in disasters. Area IV.", "short_title": "Trauma, Moral Injury, and Cri...", "title": "Trauma, Moral Injury, and Crisis Ministry", "school": "DI", @@ -272302,7 +587340,7 @@ "18:00", "20:00", "SDQ LATOURETTE - Sterling Divinity Quadrangle LATOURETTE", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -272316,10 +587354,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86599\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86599/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -272356,7 +587422,7 @@ "13:30", "15:20", "SDQ BUSH-S200 - Sterling Divinity Quadrangle BUSH-S200", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -272370,10 +587436,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86600\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86600/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -272410,7 +587504,7 @@ "13:30", "15:20", "SDQ BUSH-S100 - Sterling Divinity Quadrangle BUSH-S100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -272424,10 +587518,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86601\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86601/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -272464,7 +587586,7 @@ "9:30", "11:20", "SDQ LATOURETTE - Sterling Divinity Quadrangle LATOURETTE", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -272478,10 +587600,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86602\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86602/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -272518,7 +587668,7 @@ "13:30", "15:20", "SDQ BUSH-S100 - Sterling Divinity Quadrangle BUSH-S100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -272533,10 +587683,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86603\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86603/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -272573,7 +587751,7 @@ "13:30", "15:20", "SDQ S212 - Sterling Divinity Quadrangle S212", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -272587,15 +587765,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86604\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86604/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This seminar is designed to allow students to pursue, in depth, themes raised in the introductory courses. The course\u2019s overall consideration is how an educational leader trained at YDS can effectively \"minister\" to students, colleagues, and other members of school communities. Readings and discussions cover a range of topics including the tradition of faith-based education, school mission, pedagogy, worship, service programs, and ethical leadership in the \"business\" of schools (admissions, budgets, fundraising). The seminar also makes extensive use of case studies and simulations. For the major research project, each student pursues a topic of particular interest related to schools and educational leadership. Research includes direct experience, fieldwork\/campus visits, and review of scholarship. Issues of race, class, gender, and sexuality arise in connection with topics considered in this seminar. Area IV and Area V.", + "description": "This seminar is designed to allow students to pursue, in depth, themes raised in the introductory courses. The course\u2019s overall consideration is how an educational leader trained at YDS can effectively \"minister\" to students, colleagues, and other members of school communities. Readings and discussions cover a range of topics including the tradition of faith-based education, school mission, pedagogy, worship, service programs, and ethical leadership in the \"business\" of schools (admissions, budgets, fundraising). The seminar also makes extensive use of case studies and simulations. For the major research project, each student pursues a topic of particular interest related to schools and educational leadership. Research includes direct experience, fieldwork/campus visits, and review of scholarship. Issues of race, class, gender, and sexuality arise in connection with topics considered in this seminar. Area IV and Area V.", "short_title": "Advanced Topics in Educationa...", "title": "Advanced Topics in Educational Ministry in Schools and Colleges", "school": "DI", @@ -272630,7 +587836,7 @@ "18:00", "20:30", "SDQ BUSH-S104 - Sterling Divinity Quadrangle BUSH-S104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -272645,15 +587851,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86605\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86605/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course\u00a0examines the relationship between literary authors and the philosophers (and theologians) who influenced them, or whom they influenced. In addition to exploring philosophical influences in the literary work as a way of illuminating our understanding of it, the course considers how the literary work helps us understand the points the philosophers and theologians are making.\u00a0In terms of how literature and philosophy relate to each other more broadly, we ask several guiding questions, including: How do we understand ways the imagination functions in both undertakings? How might literature be regarded as one way of \"doing\" philosophy or theology? How do the respective critical methods of these different disciplines collide or collaborate in the effort to hold forth meaning?\u00a0We proceed with five pairs of conversations, each of which forms two seminar sessions. These paired conversations include Plato and Iris Murdoch, Duns Scotus and Gerard Manley Hopkins, S\u00f8ren Kierkegaard and Walker Percy, John Calvin and Marilynne Robinson, and a Womanist theologian and African American woman writer, both yet to be determined. For our literary authors there is select poetry or one of their novels, as well as short critical work that exemplifies the philosophical influence under consideration.\u00a0Previous experience in the study of literature and\/or philosophy or theology would be helpful background. Area V.", + "description": "This course\u00a0examines the relationship between literary authors and the philosophers (and theologians) who influenced them, or whom they influenced. In addition to exploring philosophical influences in the literary work as a way of illuminating our understanding of it, the course considers how the literary work helps us understand the points the philosophers and theologians are making.\u00a0In terms of how literature and philosophy relate to each other more broadly, we ask several guiding questions, including: How do we understand ways the imagination functions in both undertakings? How might literature be regarded as one way of \"doing\" philosophy or theology? How do the respective critical methods of these different disciplines collide or collaborate in the effort to hold forth meaning?\u00a0We proceed with five pairs of conversations, each of which forms two seminar sessions. These paired conversations include Plato and Iris Murdoch, Duns Scotus and Gerard Manley Hopkins, S\u00f8ren Kierkegaard and Walker Percy, John Calvin and Marilynne Robinson, and a Womanist theologian and African American woman writer, both yet to be determined. For our literary authors there is select poetry or one of their novels, as well as short critical work that exemplifies the philosophical influence under consideration.\u00a0Previous experience in the study of literature and/or philosophy or theology would be helpful background. Area V.", "short_title": "Literary Appropriations: Writ...", "title": "Literary Appropriations: Writers and Philosophers in Conversation", "school": "DI", @@ -272688,7 +587922,7 @@ "15:30", "17:20", "SDQ BUSH-S100 - Sterling Divinity Quadrangle BUSH-S100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -272704,10 +587938,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86606\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86606/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -272747,7 +588009,7 @@ "9:00", "10:20", "SDQ BUSH-S200 - Sterling Divinity Quadrangle BUSH-S200", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ], "Thursday": [ @@ -272755,7 +588017,7 @@ "9:00", "10:20", "SDQ BUSH-S200 - Sterling Divinity Quadrangle BUSH-S200", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -272769,10 +588031,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86607\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86607/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -272811,7 +588101,7 @@ "13:30", "14:20", "LC 211 - Linsly-Chittenden Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -272819,7 +588109,7 @@ "13:30", "14:20", "LC 211 - Linsly-Chittenden Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -272833,10 +588123,153 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84636\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84636/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985780715942383, + 0.9640228748321533, + 0.9987457990646362, + 0.9988892674446106, + 0.9986146688461304, + 0.9988150596618652, + 0.9989258646965027, + 0.9959883093833923, + 0.9988725781440735, + 0.9985626339912415, + 0.9988395571708679 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986341595649719, + 0.9988640546798706, + 0.9988362193107605, + 0.9955695271492004, + 0.9986347556114197, + 0.9988335967063904, + 0.9989283680915833, + 0.9697723984718323, + 0.9985276460647583, + 0.9986284971237183, + 0.9992590546607971, + 0.9988276362419128 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988283514976501, + 0.9976277947425842, + 0.997654139995575, + 0.9987801909446716, + 0.9986175298690796, + 0.9651569724082947, + 0.9989299178123474, + 0.9988906979560852, + 0.9988334774971008, + 0.9988875985145569, + 0.9989221096038818, + 0.9494630694389343, + 0.9988665580749512, + 0.9989383816719055, + 0.9989103078842163 + ], + "sentiment_counts": { + "POSITIVE": 14, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9333333333333333, + "NEGATIVE": 0.06666666666666667 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9333333333333333 + ] + }, + "final_label": "POSITIVE", + "final_count": 35, + "final_proportion": 0.9210526315789473, + "final_counts": { + "POSITIVE": 35, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.9210526315789473, + "NEGATIVE": 0.07894736842105263 + } + } }, { "season_code": "202301", @@ -272876,7 +588309,7 @@ "13:30", "15:20", "SDQ JE-DINING - Sterling Divinity Quadrangle JE-DINING", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -272891,10 +588324,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86608\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86608/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -272932,7 +588393,7 @@ "9:30", "11:20", "PR406 203 - 406 Prospect St., Miller Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/559978" + "https://map.yale.edu/?id=1910#!m/559978" ] ] }, @@ -272947,10 +588408,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87104\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87104/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -273010,10 +588499,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87493\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87493/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -273051,7 +588568,7 @@ "15:30", "17:20", "HQ C65 - Humanities Quadrangle C65", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -273065,10 +588582,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85972\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85972/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -273105,7 +588650,7 @@ "13:30", "15:20", "SDQ S212 - Sterling Divinity Quadrangle S212", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -273120,10 +588665,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86611\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86611/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -273160,7 +588733,7 @@ "18:00", "20:00", "SDQ BUSH-S100 - Sterling Divinity Quadrangle BUSH-S100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -273176,10 +588749,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86612\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86612/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -273216,7 +588817,7 @@ "15:30", "17:20", "SDQ BUSH-S200 - Sterling Divinity Quadrangle BUSH-S200", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -273232,10 +588833,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86613\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86613/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -273273,7 +588902,7 @@ "13:30", "15:20", "SDQ NIEBUHR - Sterling Divinity Quadrangle NIEBUHR", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -273288,10 +588917,91 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85716\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85716/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998623251914978, + 0.9987824559211731, + 0.9986977577209473 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989311099052429, + 0.9987441301345825 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 1 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9972931742668152, + 0.9987789988517761 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 1 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "final_label": "POSITIVE", + "final_count": 5, + "final_proportion": 0.7142857142857143, + "final_counts": { + "POSITIVE": 5, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.7142857142857143, + "NEGATIVE": 0.2857142857142857 + } + } }, { "season_code": "202301", @@ -273328,7 +589038,7 @@ "18:00", "20:00", "SDQ BUSH-S100 - Sterling Divinity Quadrangle BUSH-S100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -273344,10 +589054,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86614\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86614/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -273385,7 +589123,7 @@ "15:30", "17:20", "SDQ S212 - Sterling Divinity Quadrangle S212", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -273399,10 +589137,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84618\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84618/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -273439,7 +589205,7 @@ "15:30", "16:50", "SDQ LIBR-104 - Sterling Divinity Quadrangle LIBR-104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ], "Thursday": [ @@ -273447,7 +589213,7 @@ "15:30", "16:50", "SDQ LIBR-104 - Sterling Divinity Quadrangle LIBR-104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -273462,10 +589228,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86615\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86615/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -273502,7 +589296,7 @@ "15:30", "17:20", "SDQ BUSH-S200 - Sterling Divinity Quadrangle BUSH-S200", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -273517,10 +589311,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86616\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86616/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -273574,15 +589396,43 @@ "DI: Area V", "DI: Non-Christian Religions" ], - "regnotes": "Assignment of seats will aim to ensure a range of voices, perspectives, and experience around the seminar table. As a tool to assist the process of selection, students are asked to send answers to the following questions to the professors:\n1. Why do you wish to take this course? 2. What background in related subjects do you bring to the course? 3. How does the course further your professional, intellectual, and\/or artistic aspirations?", + "regnotes": "Assignment of seats will aim to ensure a range of voices, perspectives, and experience around the seminar table. As a tool to assist the process of selection, students are asked to send answers to the following questions to the professors:\n1. Why do you wish to take this course? 2. What background in related subjects do you bring to the course? 3. How does the course further your professional, intellectual, and/or artistic aspirations?", "rp_attr": "", "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83321\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83321/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -273619,7 +589469,7 @@ "13:30", "15:20", "SDQ WOOD - Sterling Divinity Quadrangle WOOD", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -273634,10 +589484,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86617\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86617/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -273674,7 +589552,7 @@ "13:30", "15:20", "SDQ LIBR-104 - Sterling Divinity Quadrangle LIBR-104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -273688,10 +589566,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86618\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86618/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -273728,7 +589634,7 @@ "15:30", "17:20", "SDQ JE-DINING - Sterling Divinity Quadrangle JE-DINING", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -273744,10 +589650,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87013\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87013/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -273784,7 +589718,7 @@ "13:30", "15:20", "SDQ N54 - Sterling Divinity Quadrangle N54", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -273798,10 +589732,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86673\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86673/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -273839,7 +589801,7 @@ "13:30", "15:20", "GR109 ROSENFELD - 109 Grove Street ROSENFELD", - "https:\/\/map.yale.edu\/?id=1910#!m\/560109" + "https://map.yale.edu/?id=1910#!m/560109" ] ] }, @@ -273853,10 +589815,217 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84755\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84755/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983899593353271, + 0.9984965324401855, + 0.998703122138977, + 0.9989250302314758, + 0.9989160299301147, + 0.9988889098167419, + 0.9987325072288513, + 0.9987524747848511, + 0.9987205862998962, + 0.9988001585006714, + 0.998696506023407, + 0.9988192915916443, + 0.9989020824432373, + 0.9988872408866882, + 0.9961513876914978, + 0.9985758066177368, + 0.998898983001709, + 0.9927695393562317, + 0.9987823367118835, + 0.9986433386802673, + 0.9986565113067627, + 0.9988038539886475 + ], + "sentiment_counts": { + "POSITIVE": 22, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988535642623901, + 0.9994457364082336, + 0.9987860321998596, + 0.9988409876823425, + 0.9986973404884338, + 0.9989151954650879, + 0.9988289475440979, + 0.998881995677948, + 0.9989199638366699, + 0.9994451403617859, + 0.9995114803314209, + 0.997938334941864, + 0.9988489151000977, + 0.9986162185668945, + 0.9987528324127197, + 0.9988749623298645, + 0.9989398121833801, + 0.9984750151634216, + 0.9958586096763611, + 0.9989198446273804, + 0.998748779296875, + 0.9975737929344177, + 0.9987786412239075, + 0.9989253878593445, + 0.9989017248153687 + ], + "sentiment_counts": { + "POSITIVE": 21, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.84, + "NEGATIVE": 0.16 + }, + "sentiment_overall": [ + "POSITIVE", + 0.84 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988730549812317, + 0.9989215135574341, + 0.9989318251609802, + 0.9989271759986877, + 0.9988725781440735, + 0.9988741278648376, + 0.9989186525344849, + 0.9989161491394043, + 0.9986799359321594, + 0.9989089965820312, + 0.990453839302063, + 0.9988558292388916, + 0.9988371729850769, + 0.9989180564880371, + 0.9989109039306641, + 0.9478115439414978, + 0.9987517595291138, + 0.9989174604415894, + 0.997117280960083, + 0.9982916712760925, + 0.9988948702812195, + 0.9988188147544861, + 0.9988473653793335 + ], + "sentiment_counts": { + "POSITIVE": 23, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 66, + "final_proportion": 0.9428571428571428, + "final_counts": { + "POSITIVE": 66, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.9428571428571428, + "NEGATIVE": 0.05714285714285714 + } + } }, { "season_code": "202301", @@ -273895,7 +590064,7 @@ "13:30", "15:20", "WLH 207 - William L. Harkness Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -273909,10 +590078,181 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84761\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84761/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.99835205078125, + 0.9988001585006714, + 0.9989349246025085, + 0.9987414479255676, + 0.9988798499107361, + 0.9989163875579834, + 0.9989318251609802, + 0.9988632202148438, + 0.9988380074501038, + 0.9988921284675598, + 0.998813271522522, + 0.9989123344421387, + 0.9986730813980103, + 0.9988014698028564, + 0.9988816380500793 + ], + "sentiment_counts": { + "POSITIVE": 15, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988256096839905, + 0.9987586736679077, + 0.998908281326294, + 0.9988952875137329, + 0.9995114803314209, + 0.9989000558853149, + 0.9988831877708435, + 0.9989087581634521, + 0.9988040924072266, + 0.9987916350364685, + 0.9988792538642883, + 0.9988952279090881, + 0.9989318251609802, + 0.9989283680915833, + 0.9983285069465637, + 0.9989091157913208, + 0.9988425374031067, + 0.9984226226806641 + ], + "sentiment_counts": { + "POSITIVE": 16, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985880255699158, + 0.9988620281219482, + 0.9989193677902222, + 0.9989221096038818, + 0.9989000558853149, + 0.9995095729827881, + 0.9989199638366699, + 0.9989149570465088, + 0.9988943934440613, + 0.9985223412513733, + 0.9989340901374817, + 0.9988847374916077, + 0.9989343285560608, + 0.9989112615585327, + 0.998768150806427, + 0.9989312291145325, + 0.9989116191864014, + 0.9986080527305603, + 0.9987871050834656 + ], + "sentiment_counts": { + "POSITIVE": 18, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9473684210526315, + "NEGATIVE": 0.05263157894736842 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9473684210526315 + ] + }, + "final_label": "POSITIVE", + "final_count": 49, + "final_proportion": 0.9423076923076923, + "final_counts": { + "POSITIVE": 49, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.9423076923076923, + "NEGATIVE": 0.057692307692307696 + } + } }, { "season_code": "202301", @@ -273950,7 +590290,7 @@ "13:30", "15:20", "WLH 203 - William L. Harkness Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -273964,10 +590304,105 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84766\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84766/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987995624542236, + 0.998699426651001, + 0.9988580942153931, + 0.9987697005271912, + 0.998335063457489 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986452460289001, + 0.9989064931869507, + 0.9989122152328491, + 0.9988901019096375, + 0.9989016056060791 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988194108009338, + 0.9972782731056213, + 0.9988011121749878, + 0.9988522529602051, + 0.9988942742347717 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 15 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -274004,7 +590439,7 @@ "13:30", "15:20", "HQ 127 - Humanities Quadrangle 127", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -274018,10 +590453,101 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84770\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84770/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988976716995239, + 0.9989019632339478, + 0.998881995677948, + 0.9989306330680847 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989398121833801, + 0.9970267415046692, + 0.9989058971405029, + 0.9986704587936401 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982327222824097, + 0.9988939166069031, + 0.9988992214202881, + 0.9988915324211121 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 0.9166666666666666, + "final_counts": { + "POSITIVE": 11, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + } + } }, { "season_code": "202301", @@ -274058,7 +590584,7 @@ "11:35", "12:50", "HQ 113 - Humanities Quadrangle 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -274066,7 +590592,7 @@ "11:35", "12:50", "HQ 113 - Humanities Quadrangle 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -274080,10 +590606,97 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85663\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85663/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988864064216614, + 0.9984911680221558, + 0.9986394047737122 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9964300990104675, + 0.9962121248245239, + 0.99891197681427 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989166259765625, + 0.9989223480224609, + 0.9989150762557983, + 0.9988901019096375 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 0.9, + "final_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + } + } }, { "season_code": "202301", @@ -274121,7 +590734,7 @@ "9:25", "11:15", "LUCE 202 - Luce Hall 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ] }, @@ -274137,10 +590750,38 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87135\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/87135/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -274179,7 +590820,7 @@ "11:35", "12:50", "HQ L02 - Humanities Quadrangle L02", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -274187,7 +590828,7 @@ "11:35", "12:50", "HQ L02 - Humanities Quadrangle L02", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -274201,10 +590842,291 @@ "classnotes": "", "final_exam": "Monday, May 8, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84772\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84772/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988290667533875, + 0.9988075494766235, + 0.9966762065887451, + 0.998902440071106, + 0.9988210797309875, + 0.9975656270980835, + 0.9988633394241333, + 0.9986528158187866, + 0.998358428478241, + 0.9989237189292908, + 0.9987260699272156, + 0.9983518123626709, + 0.99811851978302, + 0.9988264441490173, + 0.9986715316772461, + 0.9989025592803955, + 0.9910557270050049, + 0.9988585710525513, + 0.9985525012016296, + 0.9977089166641235, + 0.9989070892333984, + 0.9979081153869629, + 0.9987916350364685, + 0.9988657236099243, + 0.9974964261054993, + 0.9989084005355835, + 0.9988693594932556, + 0.9989012479782104, + 0.9989035129547119, + 0.9968770742416382, + 0.9988401532173157, + 0.99765944480896, + 0.9987685084342957, + 0.9989281296730042, + 0.9948299527168274, + 0.9988118410110474, + 0.9988964796066284 + ], + "sentiment_counts": { + "POSITIVE": 36, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.972972972972973, + "NEGATIVE": 0.02702702702702703 + }, + "sentiment_overall": [ + "POSITIVE", + 0.972972972972973 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982505440711975, + 0.9988216757774353, + 0.9927753210067749, + 0.9984867572784424, + 0.997535228729248, + 0.9988909363746643, + 0.9994943141937256, + 0.998920202255249, + 0.9988312125205994, + 0.9994657635688782, + 0.9985942244529724, + 0.9994660019874573, + 0.9986879229545593, + 0.9985479712486267, + 0.9944854378700256, + 0.9984076619148254, + 0.9988272786140442, + 0.9988683462142944, + 0.9986459612846375, + 0.9988570213317871, + 0.998930037021637, + 0.9988259673118591, + 0.9988610744476318, + 0.9982654452323914, + 0.9989336133003235, + 0.9981223940849304, + 0.9988973140716553, + 0.9987978935241699, + 0.9983129501342773, + 0.9989041090011597, + 0.9989180564880371, + 0.9977905750274658, + 0.9988817572593689 + ], + "sentiment_counts": { + "POSITIVE": 29, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.8787878787878788, + "NEGATIVE": 0.12121212121212122 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8787878787878788 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9976546764373779, + 0.9989054203033447, + 0.9918733239173889, + 0.9986003041267395, + 0.9987607002258301, + 0.997117280960083, + 0.9989318251609802, + 0.9988375306129456, + 0.9983757734298706, + 0.9959028363227844, + 0.9963801503181458, + 0.9980168342590332, + 0.9991083741188049, + 0.9976826906204224, + 0.9988815188407898, + 0.9988943934440613, + 0.9767922759056091, + 0.9969416260719299, + 0.9988981485366821, + 0.9983124732971191, + 0.9988852143287659, + 0.9985693693161011, + 0.9983709454536438, + 0.9989199638366699, + 0.9983469247817993, + 0.9989011287689209, + 0.9988847374916077, + 0.9988110065460205, + 0.9982798099517822, + 0.9984978437423706, + 0.9988870024681091, + 0.998630940914154, + 0.9988604784011841, + 0.9989032745361328, + 0.997117280960083, + 0.9962310194969177, + 0.9989303946495056 + ], + "sentiment_counts": { + "NEGATIVE": 5, + "POSITIVE": 32 + }, + "sentiment_distribution": { + "NEGATIVE": 0.13513513513513514, + "POSITIVE": 0.8648648648648649 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8648648648648649 + ] + }, + "final_label": "POSITIVE", + "final_count": 97, + "final_proportion": 0.9065420560747663, + "final_counts": { + "POSITIVE": 97, + "NEGATIVE": 10 + }, + "final_distribution": { + "POSITIVE": 0.9065420560747663, + "NEGATIVE": 0.09345794392523364 + } + } }, { "season_code": "202301", @@ -274244,7 +591166,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -274277,7 +591227,7 @@ "16:00", "16:50", "HQ 123 - Humanities Quadrangle 123", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -274296,7 +591246,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -274329,7 +591307,7 @@ "15:30", "16:20", "HQ 401 - Humanities Quadrangle 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -274348,7 +591326,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -274387,7 +591393,7 @@ "14:30", "15:20", "HQ 133 - Humanities Quadrangle 133", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -274395,7 +591401,7 @@ "14:30", "15:20", "HQ 133 - Humanities Quadrangle 133", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -274416,10 +591422,111 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84184\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84184/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988340735435486, + 0.9988924860954285, + 0.9988946318626404, + 0.9986358284950256, + 0.9988049268722534, + 0.998917818069458 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985674619674683, + 0.9988283514976501, + 0.9988425970077515, + 0.9995055198669434, + 0.6169186234474182, + 0.9980123043060303 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9953234791755676, + 0.998761773109436, + 0.9988918900489807, + 0.998449444770813, + 0.9988927245140076 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 0.8823529411764706, + "final_counts": { + "POSITIVE": 15, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8823529411764706, + "NEGATIVE": 0.11764705882352941 + } + } }, { "season_code": "202301", @@ -274457,7 +591564,7 @@ "13:30", "15:20", "HQ 401 - Humanities Quadrangle 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -274471,10 +591578,123 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84231\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84231/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986843466758728, + 0.9989033937454224, + 0.9988962411880493, + 0.9988632202148438, + 0.9988607168197632, + 0.9987537860870361, + 0.9987080097198486, + 0.998898983001709 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986612796783447, + 0.9988328814506531, + 0.9989175796508789, + 0.9989209175109863, + 0.9989001750946045, + 0.9989172220230103, + 0.9989011287689209 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988289475440979, + 0.9989389777183533, + 0.9989303946495056, + 0.9988939166069031, + 0.9988409876823425, + 0.9989145994186401, + 0.999257504940033, + 0.9989157915115356 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "final_label": "POSITIVE", + "final_count": 22, + "final_proportion": 0.9565217391304348, + "final_counts": { + "POSITIVE": 22, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9565217391304348, + "NEGATIVE": 0.043478260869565216 + } + } }, { "season_code": "202301", @@ -274512,7 +591732,7 @@ "13:30", "15:20", "BASS L70 - Bass Center L70", - "https:\/\/map.yale.edu\/?id=1910#!m\/560102" + "https://map.yale.edu/?id=1910#!m/560102" ] ] }, @@ -274528,10 +591748,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87015\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87015/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -274570,7 +591818,7 @@ "13:00", "14:15", "HQ 113 - Humanities Quadrangle 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -274578,7 +591826,7 @@ "13:00", "14:15", "HQ 113 - Humanities Quadrangle 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -274592,10 +591840,93 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84972\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84972/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988493919372559, + 0.9988620281219482, + 0.998105525970459 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988897442817688, + 0.9989125728607178, + 0.9989339709281921 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984360337257385, + 0.9989093542098999, + 0.9989174604415894 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 9 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -274639,7 +591970,7 @@ "11:35", "12:50", "HQ 307 - Humanities Quadrangle 307", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -274647,7 +591978,7 @@ "11:35", "12:50", "HQ 307 - Humanities Quadrangle 307", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -274674,10 +592005,173 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84160\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84160/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984762072563171, + 0.9965823292732239, + 0.9987420439720154, + 0.998738706111908, + 0.9988890290260315, + 0.9987844824790955, + 0.9989080429077148, + 0.9968896508216858, + 0.99891197681427, + 0.9962582588195801, + 0.9987926483154297, + 0.9988880753517151, + 0.9988172650337219, + 0.9989134073257446 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9285714285714286, + "NEGATIVE": 0.07142857142857142 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9285714285714286 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994984865188599, + 0.9981104135513306, + 0.9988154172897339, + 0.9942962527275085, + 0.9994580149650574, + 0.9982935786247253, + 0.9988263249397278, + 0.9989131689071655, + 0.9988403916358948, + 0.9987169504165649, + 0.9989199638366699, + 0.9962582588195801, + 0.9988699555397034, + 0.9973528385162354, + 0.9985707998275757, + 0.99857497215271, + 0.979805052280426, + 0.9986971020698547 + ], + "sentiment_counts": { + "NEGATIVE": 4, + "POSITIVE": 14 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2222222222222222, + "POSITIVE": 0.7777777777777778 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7777777777777778 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988037347793579, + 0.9988871216773987, + 0.9984511137008667, + 0.9986259937286377, + 0.987037181854248, + 0.9987447261810303, + 0.998930037021637, + 0.9989023208618164, + 0.9988842606544495, + 0.9878063797950745, + 0.9989326596260071, + 0.9962582588195801, + 0.9988477230072021, + 0.9910148978233337, + 0.9989182949066162, + 0.9986000657081604 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.8125, + "NEGATIVE": 0.1875 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8125 + ] + }, + "final_label": "POSITIVE", + "final_count": 40, + "final_proportion": 0.8333333333333334, + "final_counts": { + "POSITIVE": 40, + "NEGATIVE": 8 + }, + "final_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + } + } }, { "season_code": "202301", @@ -274720,7 +592214,7 @@ "13:30", "15:20", "HQ C07 - Humanities Quadrangle C07", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -274743,10 +592237,38 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84194\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84194/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -274786,7 +592308,7 @@ "9:25", "11:15", "HQ C03 - Humanities Quadrangle C03", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -274800,15 +592322,43 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84329\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "", - "description": "This course presents a historical survey of sacred musical practice among a number of religious groups indigenous to the Middle East, including Muslims, Jews, Christians, Yarsanis, Yezidis, and Alevis. Students are introduced to various doctrinal positions on music\u2019s sacred origins, as well as ideas about its use (or misuse) among humankind. They grapple with questions that are not only timeless and theological but also contemporary and practical (political, even). The course draws on audio and video recordings of sacred music as well as liturgical, philosophical, and other texts stemming from a wide variety of sacred traditions. Rather than unfolding chronologically, the course progresses through three distinct modules (\"Music in the World,\" \"Music in\/as Sacred Text,\" and \"Music in Worship\"), beginning with an expansive sweep of sacred music ontologies and ending with specific case studies of music in sacred practice.", + "syllabus_url": "https://yale.instructure.com/courses/84329/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } + }, + { + "season_code": "202301", + "requirements": "", + "description": "This course presents a historical survey of sacred musical practice among a number of religious groups indigenous to the Middle East, including Muslims, Jews, Christians, Yarsanis, Yezidis, and Alevis. Students are introduced to various doctrinal positions on music\u2019s sacred origins, as well as ideas about its use (or misuse) among humankind. They grapple with questions that are not only timeless and theological but also contemporary and practical (political, even). The course draws on audio and video recordings of sacred music as well as liturgical, philosophical, and other texts stemming from a wide variety of sacred traditions. Rather than unfolding chronologically, the course progresses through three distinct modules (\"Music in the World,\" \"Music in/as Sacred Text,\" and \"Music in Worship\"), beginning with an expansive sweep of sacred music ontologies and ending with specific case studies of music in sacred practice.", "short_title": "Sacred Musics of the Middle East", "title": "Sacred Musics of the Middle East", "school": "YC", @@ -274841,7 +592391,7 @@ "13:30", "15:20", "STOECK 107 - Stoeckel Hall (renovated) 107", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ] }, @@ -274857,10 +592407,38 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85854\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/85854/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -274904,7 +592482,7 @@ "14:30", "15:45", "HQ C03 - Humanities Quadrangle C03", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -274912,7 +592490,7 @@ "14:30", "15:45", "HQ C03 - Humanities Quadrangle C03", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -274926,10 +592504,105 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83286\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83286/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988073110580444, + 0.998848557472229, + 0.9987161159515381, + 0.9988049268722534 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998894989490509, + 0.9967054724693298, + 0.9984285235404968, + 0.9988842606544495, + 0.9989232420921326, + 0.9984130859375 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987163543701172, + 0.9909997582435608, + 0.9967576861381531, + 0.9988337159156799 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 0.7857142857142857, + "final_counts": { + "POSITIVE": 11, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.7857142857142857, + "NEGATIVE": 0.21428571428571427 + } + } }, { "season_code": "202301", @@ -274967,7 +592640,7 @@ "13:30", "15:20", "YK212 004 - 212 York Street 004", - "https:\/\/map.yale.edu\/?id=1910#!m\/559604" + "https://map.yale.edu/?id=1910#!m/559604" ] ] }, @@ -274981,10 +592654,137 @@ "classnotes": "See Canvas page for course application", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84979\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84979/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998714804649353, + 0.9987809062004089, + 0.998930037021637, + 0.9989261031150818, + 0.998923122882843, + 0.9988994598388672, + 0.9987977743148804, + 0.9988512992858887 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987972974777222, + 0.9989018440246582, + 0.9989111423492432, + 0.9980452060699463, + 0.9986479878425598, + 0.9989045858383179, + 0.9989233613014221, + 0.9989327788352966, + 0.9989398121833801, + 0.9989346861839294, + 0.9988968372344971 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9090909090909091 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988808035850525, + 0.9989073276519775, + 0.9989286065101624, + 0.9960849285125732, + 0.998934805393219, + 0.9985396862030029, + 0.9989327788352966, + 0.9989383816719055, + 0.9987958669662476, + 0.9989232420921326, + 0.9989334940910339 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9090909090909091 + ] + }, + "final_label": "POSITIVE", + "final_count": 28, + "final_proportion": 0.9333333333333333, + "final_counts": { + "POSITIVE": 28, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9333333333333333, + "NEGATIVE": 0.06666666666666667 + } + } }, { "season_code": "202301", @@ -275022,7 +592822,7 @@ "14:30", "15:20", "WLH 116 - William L. Harkness Hall 116", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -275030,7 +592830,7 @@ "14:30", "15:20", "WLH 116 - William L. Harkness Hall 116", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -275046,10 +592846,143 @@ "classnotes": "", "final_exam": "Wednesday, May 10, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84781\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84781/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989004135131836, + 0.9988998174667358, + 0.9988511800765991, + 0.9987518787384033, + 0.9989045858383179, + 0.9987347722053528, + 0.9985275268554688, + 0.9988605976104736, + 0.9988945126533508, + 0.9987760186195374, + 0.9987919926643372 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988904595375061, + 0.9989282488822937, + 0.9989181756973267, + 0.998607337474823, + 0.998833954334259, + 0.995821475982666, + 0.9989325404167175, + 0.998908519744873, + 0.9987301230430603, + 0.9994900226593018, + 0.9988791346549988 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9090909090909091 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989081621170044, + 0.9989123344421387, + 0.9989293217658997, + 0.9988767504692078, + 0.99741530418396, + 0.9989008903503418, + 0.998925507068634, + 0.9986608028411865, + 0.9987756609916687, + 0.9978930354118347, + 0.9732471704483032 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9090909090909091 + ] + }, + "final_label": "POSITIVE", + "final_count": 31, + "final_proportion": 0.9393939393939394, + "final_counts": { + "POSITIVE": 31, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9393939393939394, + "NEGATIVE": 0.06060606060606061 + } + } }, { "season_code": "202301", @@ -275081,7 +593014,7 @@ "15:30", "16:20", "WLH 204 - William L. Harkness Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -275098,7 +593031,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -275130,7 +593091,7 @@ "10:30", "11:20", "HQ C01 - Humanities Quadrangle C01", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -275147,7 +593108,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -275184,7 +593173,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -275224,7 +593241,7 @@ "9:25", "11:15", "WLH 115 - William L. Harkness Hall 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -275238,10 +593255,113 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86161\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86161/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988582134246826, + 0.9988898634910583, + 0.9988890290260315, + 0.9989172220230103, + 0.9988777041435242, + 0.998764157295227 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989292025566101, + 0.9988477230072021, + 0.9989280104637146, + 0.9988915324211121, + 0.9989306330680847 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989340901374817, + 0.997117280960083, + 0.9988848567008972, + 0.9981436729431152, + 0.9989331364631653, + 0.9989149570465088, + 0.9988886713981628, + 0.9989142417907715 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 19 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -275281,7 +593401,7 @@ "14:30", "15:45", "HQ 113 - Humanities Quadrangle 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -275289,7 +593409,7 @@ "14:30", "15:45", "HQ 113 - Humanities Quadrangle 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -275307,10 +593427,93 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84789\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84789/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986647367477417, + 0.9986265897750854, + 0.9989118576049805 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989350438117981, + 0.9989033937454224, + 0.9989362359046936 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988598823547363, + 0.998909592628479, + 0.9988313317298889 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 9 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -275349,7 +593552,7 @@ "19:00", "20:50", "HQ 109 - Humanities Quadrangle 109", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -275367,10 +593570,117 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85960\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85960/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982345104217529, + 0.9988848567008972, + 0.9988833069801331, + 0.9986829161643982, + 0.9989036321640015, + 0.9987936019897461 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9951080679893494, + 0.9988616704940796, + 0.998932421207428, + 0.9971219897270203, + 0.9975426197052002, + 0.9988887906074524, + 0.998611330986023 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982397556304932, + 0.9988937973976135, + 0.9989098310470581, + 0.9988887906074524, + 0.9994695782661438, + 0.9982329607009888, + 0.998902440071106 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 0.9, + "final_counts": { + "POSITIVE": 18, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + } + } }, { "season_code": "202301", @@ -275410,7 +593720,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -275450,7 +593788,7 @@ "11:35", "12:50", "WLH 201 - William L. Harkness Hall 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -275458,7 +593796,7 @@ "11:35", "12:50", "WLH 201 - William L. Harkness Hall 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -275468,7 +593806,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -275476,10 +593814,287 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83362\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83362/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9944273233413696, + 0.9988986253738403, + 0.9989239573478699, + 0.998918890953064, + 0.9987027645111084, + 0.9981843829154968, + 0.998914361000061, + 0.9987805485725403, + 0.9987607002258301, + 0.9988158941268921, + 0.9989057779312134, + 0.998930037021637, + 0.9988939166069031, + 0.998790442943573, + 0.9987103939056396, + 0.9910886287689209, + 0.9987867474555969, + 0.9995083808898926, + 0.998880922794342, + 0.9995052814483643, + 0.9988871216773987, + 0.9986042380332947, + 0.9989161491394043, + 0.998835027217865, + 0.9988269209861755, + 0.9988269209861755, + 0.9986566305160522, + 0.9989162683486938, + 0.9985319375991821, + 0.9986377358436584 + ], + "sentiment_counts": { + "POSITIVE": 28, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.9333333333333333, + "NEGATIVE": 0.06666666666666667 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9333333333333333 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986831545829773, + 0.9986336827278137, + 0.9988625049591064, + 0.9989078044891357, + 0.9986060261726379, + 0.9988481998443604, + 0.9986518025398254, + 0.9994981288909912, + 0.9986425042152405, + 0.9995063543319702, + 0.9985685348510742, + 0.9988466501235962, + 0.9989294409751892, + 0.9938819408416748, + 0.9987922310829163, + 0.9988736510276794, + 0.9968108534812927, + 0.9988744854927063, + 0.999502420425415, + 0.9988064765930176, + 0.9988455772399902, + 0.9994230270385742, + 0.9811413884162903, + 0.9995037317276001, + 0.9988105297088623, + 0.9934137463569641, + 0.9987344145774841, + 0.937844455242157, + 0.9987655878067017, + 0.9974685907363892, + 0.9469312429428101, + 0.9989070892333984, + 0.9988446235656738, + 0.9988981485366821, + 0.999242901802063, + 0.9976551532745361 + ], + "sentiment_counts": { + "POSITIVE": 27, + "NEGATIVE": 9 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981409311294556, + 0.9966179728507996, + 0.9983184337615967, + 0.9982252717018127, + 0.9949954748153687, + 0.9988924860954285, + 0.9987180233001709, + 0.9975698590278625, + 0.9961349964141846, + 0.9983940720558167, + 0.9983274340629578, + 0.9968445301055908, + 0.998736560344696, + 0.9988449811935425, + 0.9989351630210876, + 0.998920202255249, + 0.9989142417907715, + 0.998741090297699, + 0.9987003803253174, + 0.9985774755477905, + 0.7381450533866882, + 0.9989122152328491, + 0.9989204406738281, + 0.9980016350746155, + 0.998401939868927, + 0.999508261680603, + 0.9989388585090637, + 0.9989350438117981, + 0.9994799494743347, + 0.9988722205162048, + 0.9925923943519592, + 0.9953004121780396, + 0.9989240765571594, + 0.9987947940826416, + 0.9989268183708191, + 0.9988850951194763, + 0.9988704323768616, + 0.9984244108200073, + 0.9988484382629395 + ], + "sentiment_counts": { + "POSITIVE": 32, + "NEGATIVE": 7 + }, + "sentiment_distribution": { + "POSITIVE": 0.8205128205128205, + "NEGATIVE": 0.1794871794871795 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8205128205128205 + ] + }, + "final_label": "POSITIVE", + "final_count": 87, + "final_proportion": 0.8285714285714286, + "final_counts": { + "POSITIVE": 87, + "NEGATIVE": 18 + }, + "final_distribution": { + "POSITIVE": 0.8285714285714286, + "NEGATIVE": 0.17142857142857143 + } + } }, { "season_code": "202301", @@ -275513,7 +594128,7 @@ "9:25", "10:15", "WLH 204 - William L. Harkness Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -275531,7 +594146,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -275565,7 +594208,7 @@ "11:35", "12:25", "HQ C03 - Humanities Quadrangle C03", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -275583,7 +594226,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -275617,7 +594288,7 @@ "11:35", "12:25", "HQ 225 - Humanities Quadrangle 225", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -275635,7 +594306,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -275669,7 +594368,7 @@ "13:30", "14:20", "HQ 225 - Humanities Quadrangle 225", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -275687,7 +594386,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -275721,7 +594448,7 @@ "15:30", "16:20", "HQ C03 - Humanities Quadrangle C03", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -275739,7 +594466,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -275773,7 +594528,7 @@ "16:30", "17:20", "HQ C03 - Humanities Quadrangle C03", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -275791,7 +594546,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -275830,7 +594613,7 @@ "12:00", "15:00", "WLH 112 - William L. Harkness Hall 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -275844,10 +594627,97 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84796\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84796/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987609386444092, + 0.9987653493881226, + 0.9989068508148193, + 0.9988013505935669 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988901019096375, + 0.9988046884536743, + 0.9989032745361328 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988446235656738, + 0.9939232468605042, + 0.998923122882843, + 0.9988622665405273 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 11 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -275886,7 +594756,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -275924,7 +594822,7 @@ "13:30", "15:20", "WLH 001 - William L. Harkness Hall 001", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -275938,10 +594836,109 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85447\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85447/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998392641544342, + 0.9987955093383789, + 0.9988980293273926, + 0.9988717436790466, + 0.9981828331947327, + 0.9983343482017517 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.985153317451477, + 0.9988774657249451, + 0.998660683631897, + 0.9989140033721924, + 0.9974068999290466 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982122182846069, + 0.9988759160041809, + 0.9989256262779236, + 0.997117280960083, + 0.9988897442817688 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 4 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2, + "POSITIVE": 0.8 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 0.875, + "final_counts": { + "POSITIVE": 14, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + } + } }, { "season_code": "202301", @@ -275985,7 +594982,7 @@ "15:30", "17:20", "HQ 129 - Humanities Quadrangle 129", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -276003,10 +595000,129 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84797\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84797/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989339709281921, + 0.9838201999664307, + 0.9989207983016968, + 0.9988794922828674, + 0.9987175464630127, + 0.9987875819206238, + 0.9988642930984497, + 0.9988080263137817, + 0.9988754391670227 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989261031150818, + 0.9988849759101868, + 0.9964867830276489, + 0.9989225268363953, + 0.997114896774292, + 0.9988021850585938, + 0.9988846182823181, + 0.9984984397888184, + 0.998715877532959 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989318251609802, + 0.997117280960083, + 0.9994094371795654, + 0.9989306330680847, + 0.9989271759986877, + 0.9971302151679993, + 0.9983568787574768, + 0.9989226460456848 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "final_label": "POSITIVE", + "final_count": 24, + "final_proportion": 0.9230769230769231, + "final_counts": { + "POSITIVE": 24, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9230769230769231, + "NEGATIVE": 0.07692307692307693 + } + } }, { "season_code": "202301", @@ -276045,7 +595161,7 @@ "13:30", "14:20", "LC 211 - Linsly-Chittenden Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -276053,7 +595169,7 @@ "13:30", "14:20", "LC 211 - Linsly-Chittenden Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -276070,10 +595186,153 @@ "classnotes": "", "final_exam": "Sunday, May 7, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84636\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84636/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985780715942383, + 0.9640228748321533, + 0.9987457990646362, + 0.9988892674446106, + 0.9986146688461304, + 0.9988150596618652, + 0.9989258646965027, + 0.9959883093833923, + 0.9988725781440735, + 0.9985626339912415, + 0.9988395571708679 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986341595649719, + 0.9988640546798706, + 0.9988362193107605, + 0.9955695271492004, + 0.9986347556114197, + 0.9988335967063904, + 0.9989283680915833, + 0.9697723984718323, + 0.9985276460647583, + 0.9986284971237183, + 0.9992590546607971, + 0.9988276362419128 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988283514976501, + 0.9976277947425842, + 0.997654139995575, + 0.9987801909446716, + 0.9986175298690796, + 0.9651569724082947, + 0.9989299178123474, + 0.9988906979560852, + 0.9988334774971008, + 0.9988875985145569, + 0.9989221096038818, + 0.9494630694389343, + 0.9988665580749512, + 0.9989383816719055, + 0.9989103078842163 + ], + "sentiment_counts": { + "POSITIVE": 14, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9333333333333333, + "NEGATIVE": 0.06666666666666667 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9333333333333333 + ] + }, + "final_label": "POSITIVE", + "final_count": 35, + "final_proportion": 0.9210526315789473, + "final_counts": { + "POSITIVE": 35, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.9210526315789473, + "NEGATIVE": 0.07894736842105263 + } + } }, { "season_code": "202301", @@ -276105,7 +595364,7 @@ "10:30", "11:20", "PH 407 - Phelps Hall 407", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -276122,7 +595381,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -276154,7 +595441,7 @@ "15:30", "16:20", "PH 407 - Phelps Hall 407", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -276171,7 +595458,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -276203,7 +595518,7 @@ "10:30", "11:20", "HQ C03 - Humanities Quadrangle C03", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -276220,7 +595535,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -276252,7 +595595,7 @@ "13:30", "14:20", "HQ C07 - Humanities Quadrangle C07", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -276269,7 +595612,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -276309,7 +595680,7 @@ "9:00", "10:15", "HQ 129 - Humanities Quadrangle 129", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -276317,7 +595688,7 @@ "9:00", "10:15", "HQ 129 - Humanities Quadrangle 129", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -276331,10 +595702,38 @@ "classnotes": "", "final_exam": "Tuesday, May 9, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84800\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84800/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -276372,7 +595771,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -276415,7 +595842,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -276452,7 +595907,7 @@ "13:30", "15:20", "HQ C15 - Humanities Quadrangle C15", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -276464,10 +595919,121 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84805\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84805/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987543821334839, + 0.9986624717712402, + 0.9989062547683716, + 0.9989124536514282, + 0.9986324906349182, + 0.998894989490509 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988058805465698, + 0.9988804459571838, + 0.998814582824707, + 0.9988939166069031, + 0.9988260865211487, + 0.9989185333251953, + 0.9988034963607788, + 0.9989045858383179 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9948304295539856, + 0.9987137317657471, + 0.9988813996315002, + 0.9988706707954407, + 0.9988601207733154, + 0.9988934397697449, + 0.9983235001564026, + 0.9983124732971191, + 0.9988503456115723 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 23, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 23 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -276507,7 +596073,7 @@ "9:25", "11:15", "LUCE 302 - Luce Hall 302", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ] }, @@ -276522,12 +596088,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "Close\u00a0readings\u00a0from a wide range of Persian and\/or Urdu texts produced\u00a0in\u00a0South Asia. The selection of texts accommodates the research\u00a0interests of enrolled students.", + "description": "Close\u00a0readings\u00a0from a wide range of Persian and/or Urdu texts produced\u00a0in\u00a0South Asia. The selection of texts accommodates the research\u00a0interests of enrolled students.", "short_title": "Readings in Indo-Islamic Texts", "title": "Readings in Indo-Islamic Texts", "school": "GS", @@ -276560,7 +596154,7 @@ "11:00", "12:50", "LUCE 302 - Luce Hall 302", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ] }, @@ -276574,10 +596168,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84810\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84810/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -276614,7 +596236,7 @@ "12:30", "14:30", "SML 218 - Sterling Memorial Library 218", - "https:\/\/map.yale.edu\/?id=1910#!m\/563698" + "https://map.yale.edu/?id=1910#!m/563698" ] ] }, @@ -276626,10 +596248,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84812\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84812/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -276665,10 +596315,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84814\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84814/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -276711,7 +596389,7 @@ "13:30", "15:20", "HQ C07 - Humanities Quadrangle C07", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -276723,10 +596401,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84194\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84194/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -276764,7 +596470,7 @@ "13:30", "15:20", "WLH 001 - William L. Harkness Hall 001", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -276776,10 +596482,109 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85447\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85447/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998392641544342, + 0.9987955093383789, + 0.9988980293273926, + 0.9988717436790466, + 0.9981828331947327, + 0.9983343482017517 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.985153317451477, + 0.9988774657249451, + 0.998660683631897, + 0.9989140033721924, + 0.9974068999290466 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982122182846069, + 0.9988759160041809, + 0.9989256262779236, + 0.997117280960083, + 0.9988897442817688 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 4 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2, + "POSITIVE": 0.8 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 0.875, + "final_counts": { + "POSITIVE": 14, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + } + } }, { "season_code": "202301", @@ -276818,7 +596623,7 @@ "12:00", "15:00", "WLH 112 - William L. Harkness Hall 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -276830,10 +596635,97 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84796\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84796/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987609386444092, + 0.9987653493881226, + 0.9989068508148193, + 0.9988013505935669 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988901019096375, + 0.9988046884536743, + 0.9989032745361328 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988446235656738, + 0.9939232468605042, + 0.998923122882843, + 0.9988622665405273 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 11 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -276873,7 +596765,7 @@ "9:00", "10:15", "HQ 129 - Humanities Quadrangle 129", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -276881,7 +596773,7 @@ "9:00", "10:15", "HQ 129 - Humanities Quadrangle 129", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -276893,10 +596785,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84800\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84800/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -276943,7 +596863,7 @@ "9:25", "11:15", "PH 401 - Phelps Hall 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -276955,10 +596875,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84198\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84198/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -276997,7 +596945,7 @@ "15:30", "17:20", "HQ 109 - Humanities Quadrangle 109", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -277009,15 +596957,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84200\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84200/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "In official and unofficial discourses in the United States, diagnoses of Islam\u2019s various \"crises\" are ubiquitous, and Muslim \"hearts and minds\" are viewed as the \"other\" front in the War on Terror. Since 9\/11, the U.S. State Department has made the reform of Islam an explicit national interest, pouring billions of dollars into USAID projects in Muslim-majority countries, initiating curriculum development programs for madrasas in South Asia, and establishing the Arabic Radio Sawa and the satellite TV station Al-Hurra to propagate the U.S. administration\u2019s political views as well as what it terms a \"liberal\" strain of Islam. Muslim Americans are also consumed by debates about the \"crisis\" of Islam, a crisis of religious authority in which the nature and rapidity of change in the measures of authority are felt to be too difficult to assimilate. This course maps out the various and deeply politically charged contemporary debates about the \"crisis of Islam\" and the question of Islamic reform through an examination of official U.S. policy, transnational pulp Islamic literature, fatwas and essays authored by internationally renowned Muslim jurists and scholars, and historical and ethnographic works that take up the category of crisis as an interpretive device.", + "description": "In official and unofficial discourses in the United States, diagnoses of Islam\u2019s various \"crises\" are ubiquitous, and Muslim \"hearts and minds\" are viewed as the \"other\" front in the War on Terror. Since 9/11, the U.S. State Department has made the reform of Islam an explicit national interest, pouring billions of dollars into USAID projects in Muslim-majority countries, initiating curriculum development programs for madrasas in South Asia, and establishing the Arabic Radio Sawa and the satellite TV station Al-Hurra to propagate the U.S. administration\u2019s political views as well as what it terms a \"liberal\" strain of Islam. Muslim Americans are also consumed by debates about the \"crisis\" of Islam, a crisis of religious authority in which the nature and rapidity of change in the measures of authority are felt to be too difficult to assimilate. This course maps out the various and deeply politically charged contemporary debates about the \"crisis of Islam\" and the question of Islamic reform through an examination of official U.S. policy, transnational pulp Islamic literature, fatwas and essays authored by internationally renowned Muslim jurists and scholars, and historical and ethnographic works that take up the category of crisis as an interpretive device.", "short_title": "Interrogating the Crisis of I...", "title": "Interrogating the Crisis of Islam", "school": "GS", @@ -277051,7 +597027,7 @@ "13:30", "15:20", "WLH 004 - William L. Harkness Hall 004", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -277066,10 +597042,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83331\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83331/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -277109,7 +597113,7 @@ "14:30", "15:45", "HQ 113 - Humanities Quadrangle 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -277117,7 +597121,7 @@ "14:30", "15:45", "HQ 113 - Humanities Quadrangle 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -277129,10 +597133,93 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84789\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84789/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986647367477417, + 0.9986265897750854, + 0.9989118576049805 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989350438117981, + 0.9989033937454224, + 0.9989362359046936 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988598823547363, + 0.998909592628479, + 0.9988313317298889 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 9 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -277172,7 +597259,7 @@ "9:25", "11:15", "HQ C03 - Humanities Quadrangle C03", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -277184,10 +597271,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84329\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84329/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -277231,7 +597346,7 @@ "11:35", "12:50", "HQ 307 - Humanities Quadrangle 307", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -277239,7 +597354,7 @@ "11:35", "12:50", "HQ 307 - Humanities Quadrangle 307", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -277251,10 +597366,173 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84160\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84160/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984762072563171, + 0.9965823292732239, + 0.9987420439720154, + 0.998738706111908, + 0.9988890290260315, + 0.9987844824790955, + 0.9989080429077148, + 0.9968896508216858, + 0.99891197681427, + 0.9962582588195801, + 0.9987926483154297, + 0.9988880753517151, + 0.9988172650337219, + 0.9989134073257446 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9285714285714286, + "NEGATIVE": 0.07142857142857142 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9285714285714286 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994984865188599, + 0.9981104135513306, + 0.9988154172897339, + 0.9942962527275085, + 0.9994580149650574, + 0.9982935786247253, + 0.9988263249397278, + 0.9989131689071655, + 0.9988403916358948, + 0.9987169504165649, + 0.9989199638366699, + 0.9962582588195801, + 0.9988699555397034, + 0.9973528385162354, + 0.9985707998275757, + 0.99857497215271, + 0.979805052280426, + 0.9986971020698547 + ], + "sentiment_counts": { + "NEGATIVE": 4, + "POSITIVE": 14 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2222222222222222, + "POSITIVE": 0.7777777777777778 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7777777777777778 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988037347793579, + 0.9988871216773987, + 0.9984511137008667, + 0.9986259937286377, + 0.987037181854248, + 0.9987447261810303, + 0.998930037021637, + 0.9989023208618164, + 0.9988842606544495, + 0.9878063797950745, + 0.9989326596260071, + 0.9962582588195801, + 0.9988477230072021, + 0.9910148978233337, + 0.9989182949066162, + 0.9986000657081604 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.8125, + "NEGATIVE": 0.1875 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8125 + ] + }, + "final_label": "POSITIVE", + "final_count": 40, + "final_proportion": 0.8333333333333334, + "final_counts": { + "POSITIVE": 40, + "NEGATIVE": 8 + }, + "final_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + } + } }, { "season_code": "202301", @@ -277310,14 +597588,42 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83321\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83321/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", - "requirements": "Prerequisite: RLST 838\/SMTC 513.", + "requirements": "Prerequisite: RLST 838/SMTC 513.", "description": "Syriac was an Aramaic dialect that developed its own written tradition in the northern Levantine city of Edessa in classical antiquity. This course provides students with a basic working knowledge of the language, namely, the three principal scripts (Estrangela, Ser\u1e6do, and \"Nestorian\"), verbal morphology, and the fundamental rules of syntax. The course completes the introduction to the Syriac language. Extracts of several Syriac texts are studied for purposes of application. At the end of the course, students are able to read, translate, and analyze simple texts.", "short_title": "Elementary Syriac II", "title": "Elementary Syriac II", @@ -277351,7 +597657,7 @@ "9:00", "10:15", "HQ 109 - Humanities Quadrangle 109", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -277359,7 +597665,7 @@ "9:00", "10:15", "HQ 109 - Humanities Quadrangle 109", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -277371,14 +597677,42 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84763\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84763/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", - "requirements": "Prerequisite: RLST 840\/SMTC 520.", + "requirements": "Prerequisite: RLST 840/SMTC 520.", "description": "The Ugaritic texts from the Bronze Age found at Ras Shamra-Ugarit on the Mediterranean coast of Syria provide the earliest well-attested example of the use of alphabet writing. The Ugaritic corpus comprises more than 2,000 texts of several genres (myths, rituals, incantations, \"scientific\" manuals, letters, administrative documents, and others), written in a \"cuneiform\" script. This course completes the introduction to Ugaritic language. Students have the opportunity to improve their knowledge of Ugaritic literature by reading and analyzing texts in the major genres of Ugaritic literature, with special emphasis on mythological texts.", "short_title": "Introductory Ugaritic II", "title": "Introductory Ugaritic II", @@ -277412,7 +597746,7 @@ "13:30", "15:20", "HQ C05 - Humanities Quadrangle C05", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -277424,10 +597758,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84768\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84768/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -277465,7 +597827,7 @@ "15:30", "17:20", "HQ C05 - Humanities Quadrangle C05", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -277477,14 +597839,42 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87100\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87100/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", - "requirements": "Prerequisites: some level of reading ability in Greek, Latin, or Arabic; some level of reading ability in German, French, or modern Greek; and previous course work in early Christianity, New Testament, or Classics\/Roman history. EMWAR area of concentration designations: NT, EarXty, LateXty, XtyJudEast.", + "requirements": "Prerequisites: some level of reading ability in Greek, Latin, or Arabic; some level of reading ability in German, French, or modern Greek; and previous course work in early Christianity, New Testament, or Classics/Roman history. EMWAR area of concentration designations: NT, EarXty, LateXty, XtyJudEast.", "description": "The first portion of the course introduces students to working with archaeological data from the Greco-Roman world (inscriptions, architecture, sculpture, coins). The second consists of seminars in Greece and Turkey during May, including some meetings with archaeologists and other scholars abroad. The course is designed for EMWAR students with a primary or secondary area of concentration in New Testament, Early Christianity, Late Ancient Christianity, and Christianity and Judaism in the Hellenistic East. The course also provides important historical context for students concentrating in Second Temple and Hellenistic Judaism and in Rabbinic Judaism. The course can also be applied to secondary areas of concentration focused on archaeology and material culture.", "short_title": "Archaeology of the Roman Empi...", "title": "Archaeology of the Roman Empire for the Study of New Testament and Early Christianity", @@ -277518,7 +597908,7 @@ "13:30", "15:20", "WLH 202 - William L. Harkness Hall 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -277529,11 +597919,39 @@ "rp_attr": "", "classnotes": "", "final_exam": "", - "course_home_url": "https:\/\/yale.instructure.com\/courses\/86570", + "course_home_url": "https://yale.instructure.com/courses/86570", "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -277573,7 +597991,7 @@ "13:30", "15:20", "HQ 109 - Humanities Quadrangle 109", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -277585,10 +598003,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84498\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84498/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -277625,7 +598071,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -277662,7 +598136,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -277699,7 +598201,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -277736,7 +598266,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -277773,7 +598331,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -277810,14 +598396,42 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", "description": "", "short_title": "Directed Readings: Old Testam...", - "title": "Directed Readings: Old Testament\/Hebrew Bible", + "title": "Directed Readings: Old Testament/Hebrew Bible", "school": "GS", "credits": 1.0, "extra_info": "ACTIVE", @@ -277847,7 +598461,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -277884,7 +598526,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -277921,7 +598591,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -277958,7 +598656,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -278009,7 +598735,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -278047,7 +598801,7 @@ "11:35", "12:25", "HQ 132 - Humanities Quadrangle 132", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -278055,7 +598809,7 @@ "11:35", "12:25", "HQ 132 - Humanities Quadrangle 132", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -278079,10 +598833,127 @@ "classnotes": "", "final_exam": "Saturday, May 6, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84139\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84139/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998819887638092, + 0.9902189373970032, + 0.9987629652023315, + 0.9988877177238464, + 0.9989012479782104, + 0.998920202255249, + 0.9987710118293762, + 0.998788058757782 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988393187522888, + 0.9989110231399536, + 0.9922208189964294, + 0.998894989490509, + 0.9988123178482056, + 0.9989198446273804, + 0.9988510608673096, + 0.9988394379615784, + 0.9965879917144775 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.7777777777777778, + "NEGATIVE": 0.2222222222222222 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7777777777777778 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998696506023407, + 0.998684823513031, + 0.9989104270935059, + 0.9989210367202759, + 0.9989101886749268, + 0.998932421207428, + 0.9938870072364807, + 0.9988594055175781 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 23, + "final_proportion": 0.92, + "final_counts": { + "POSITIVE": 23, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.92, + "NEGATIVE": 0.08 + } + } }, { "season_code": "202301", @@ -278114,7 +598985,7 @@ "19:00", "19:50", "HQ C07 - Humanities Quadrangle C07", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -278131,7 +599002,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -278163,7 +599062,7 @@ "16:00", "16:50", "HQ C07 - Humanities Quadrangle C07", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -278180,7 +599079,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -278221,7 +599148,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -278260,7 +599215,7 @@ "14:30", "15:20", "WLH 116 - William L. Harkness Hall 116", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -278268,7 +599223,7 @@ "14:30", "15:20", "WLH 116 - William L. Harkness Hall 116", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -278282,10 +599237,259 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84813\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84813/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988939166069031, + 0.9989135265350342, + 0.9988646507263184, + 0.9987958669662476, + 0.9941735863685608, + 0.9989174604415894, + 0.9988487958908081, + 0.9987892508506775, + 0.9988921284675598, + 0.9988158941268921, + 0.99891197681427, + 0.9988844990730286, + 0.9988431930541992, + 0.9988824725151062, + 0.9987741112709045, + 0.998921275138855, + 0.9989245533943176, + 0.9988381266593933, + 0.9989175796508789, + 0.998894989490509, + 0.998820960521698, + 0.9988018274307251, + 0.9989199638366699, + 0.9987668991088867, + 0.9979544878005981, + 0.9988967180252075, + 0.9989321827888489, + 0.9988452196121216, + 0.9985488057136536 + ], + "sentiment_counts": { + "POSITIVE": 29, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.998778760433197, + 0.9989179372787476, + 0.9986761212348938, + 0.998363196849823, + 0.9988664388656616, + 0.9989321827888489, + 0.9984431862831116, + 0.9988597631454468, + 0.9983048439025879, + 0.9989120960235596, + 0.9989282488822937, + 0.9987947940826416, + 0.9986715316772461, + 0.9988627433776855, + 0.9987239241600037, + 0.9987519979476929, + 0.99869304895401, + 0.9983493089675903, + 0.9987809062004089, + 0.9988409876823425, + 0.9989333748817444, + 0.9988266825675964, + 0.9989238381385803, + 0.9989036321640015, + 0.998572826385498, + 0.9744672775268555, + 0.9985036849975586, + 0.9975056052207947, + 0.998880922794342, + 0.9994947910308838 + ], + "sentiment_counts": { + "POSITIVE": 26, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.8666666666666667, + "NEGATIVE": 0.13333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8666666666666667 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.997117280960083, + 0.9982553124427795, + 0.9995111227035522, + 0.9989379048347473, + 0.9986973404884338, + 0.9984381794929504, + 0.9988941550254822, + 0.998881995677948, + 0.9988924860954285, + 0.998770534992218, + 0.9988324046134949, + 0.998887836933136, + 0.9966742992401123, + 0.9985789060592651, + 0.9989213943481445, + 0.9987286925315857, + 0.9982450008392334, + 0.9987034797668457, + 0.9989067316055298, + 0.9985982775688171, + 0.9989030361175537, + 0.9989047050476074, + 0.998904824256897, + 0.9989190101623535, + 0.9980897307395935, + 0.9989336133003235, + 0.9773299694061279, + 0.9989128112792969, + 0.9981497526168823, + 0.9988632202148438, + 0.9989275336265564, + 0.9908626079559326 + ], + "sentiment_counts": { + "POSITIVE": 28, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "final_label": "POSITIVE", + "final_count": 83, + "final_proportion": 0.9120879120879121, + "final_counts": { + "POSITIVE": 83, + "NEGATIVE": 8 + }, + "final_distribution": { + "POSITIVE": 0.9120879120879121, + "NEGATIVE": 0.08791208791208792 + } + } }, { "season_code": "202301", @@ -278318,7 +599522,7 @@ "10:30", "11:20", "HQ C01 - Humanities Quadrangle C01", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -278335,7 +599539,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -278368,7 +599600,7 @@ "17:00", "17:50", "HQ C01 - Humanities Quadrangle C01", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -278385,7 +599617,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -278418,7 +599678,7 @@ "19:00", "19:50", "HQ C07 - Humanities Quadrangle C07", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -278435,7 +599695,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -278468,7 +599756,7 @@ "17:00", "17:50", "HQ C07 - Humanities Quadrangle C07", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -278485,7 +599773,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -278524,7 +599840,7 @@ "14:30", "15:20", "WLH 201 - William L. Harkness Hall 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -278532,7 +599848,7 @@ "14:30", "15:20", "WLH 201 - William L. Harkness Hall 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -278555,10 +599871,353 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84131\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84131/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988821148872375, + 0.9988042116165161, + 0.9985100626945496, + 0.9987772107124329, + 0.9985538125038147, + 0.9988449811935425, + 0.9988535642623901, + 0.998914361000061, + 0.9988906979560852, + 0.9987525939941406, + 0.998920202255249, + 0.9986106157302856, + 0.9986710548400879, + 0.9989033937454224, + 0.9988641738891602, + 0.9987832903862, + 0.9988817572593689, + 0.9987995624542236, + 0.9989302754402161, + 0.9988273978233337, + 0.9987772107124329, + 0.9989225268363953, + 0.9982748031616211, + 0.9986695051193237, + 0.9986887574195862, + 0.9989207983016968, + 0.9979619979858398, + 0.9988006353378296, + 0.9948878884315491, + 0.9986237287521362, + 0.9985758066177368, + 0.9988853335380554, + 0.9989272952079773, + 0.9988340735435486, + 0.998928964138031, + 0.9986149072647095, + 0.9987910389900208, + 0.9987691044807434, + 0.998675525188446, + 0.998889148235321, + 0.9989140033721924, + 0.9985870122909546, + 0.9989171028137207, + 0.9912418127059937 + ], + "sentiment_counts": { + "POSITIVE": 44, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9986746311187744, + 0.9983491897583008, + 0.9976388216018677, + 0.9988123178482056, + 0.9988798499107361, + 0.9982489347457886, + 0.998677670955658, + 0.9989209175109863, + 0.9971734285354614, + 0.9988725781440735, + 0.9988899827003479, + 0.9983364939689636, + 0.9988560676574707, + 0.9988095760345459, + 0.9988422989845276, + 0.9988686442375183, + 0.9918957352638245, + 0.998039186000824, + 0.9988069534301758, + 0.9985533356666565, + 0.9988621473312378, + 0.9989292025566101, + 0.9989054203033447, + 0.9988310933113098, + 0.9982636570930481, + 0.9973795413970947, + 0.9984666109085083, + 0.9921112060546875, + 0.9984812140464783, + 0.9984152317047119, + 0.9987910389900208, + 0.9988184571266174, + 0.9983879327774048, + 0.9987698197364807, + 0.9950554370880127, + 0.9989379048347473, + 0.9987527132034302, + 0.998809814453125, + 0.9980660080909729, + 0.9982581734657288, + 0.998770534992218, + 0.995491087436676, + 0.9950394034385681, + 0.9994792342185974 + ], + "sentiment_counts": { + "POSITIVE": 40, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9090909090909091 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988759160041809, + 0.9988805651664734, + 0.9957616925239563, + 0.9988521337509155, + 0.9988981485366821, + 0.9986335635185242, + 0.9988784193992615, + 0.9989012479782104, + 0.998579740524292, + 0.998849630355835, + 0.9988645315170288, + 0.9989318251609802, + 0.9988646507263184, + 0.9989019632339478, + 0.9987772107124329, + 0.9984422326087952, + 0.9988294243812561, + 0.9988640546798706, + 0.996837854385376, + 0.9989098310470581, + 0.997117280960083, + 0.998920202255249, + 0.998837411403656, + 0.9988502264022827, + 0.9988784193992615, + 0.9988237023353577, + 0.9987549781799316, + 0.9988892674446106, + 0.998897910118103, + 0.998737633228302, + 0.9989272952079773, + 0.9989069700241089, + 0.997117280960083, + 0.9989228844642639, + 0.9978317618370056, + 0.9987198114395142, + 0.9980168342590332, + 0.9987407326698303, + 0.9989079236984253, + 0.9988685846328735, + 0.9941771030426025, + 0.9989144802093506, + 0.998900294303894, + 0.9985544085502625, + 0.9988909363746643, + 0.9989157915115356, + 0.9988598823547363, + 0.9913177490234375, + 0.9988487958908081, + 0.998727023601532 + ], + "sentiment_counts": { + "POSITIVE": 50, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 134, + "final_proportion": 0.9710144927536232, + "final_counts": { + "POSITIVE": 134, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.9710144927536232, + "NEGATIVE": 0.028985507246376812 + } + } }, { "season_code": "202301", @@ -278591,7 +600250,7 @@ "15:30", "16:20", "WLH 001 - William L. Harkness Hall 001", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -278608,7 +600267,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -278641,7 +600328,7 @@ "15:30", "16:20", "WALL81 401 - 81 Wall Street 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -278658,7 +600345,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -278691,7 +600406,7 @@ "10:30", "11:20", "HQ C64 - Humanities Quadrangle C64", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -278708,7 +600423,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -278741,7 +600484,7 @@ "11:35", "12:25", "HQ 401 - Humanities Quadrangle 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -278758,7 +600501,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -278791,7 +600562,7 @@ "20:00", "20:50", "HQ C07 - Humanities Quadrangle C07", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -278808,7 +600579,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -278841,7 +600640,7 @@ "16:30", "17:20", "HQ 213 - Humanities Quadrangle 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -278858,7 +600657,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -278896,7 +600723,7 @@ "14:30", "15:45", "HQ 207 - Humanities Quadrangle 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -278904,7 +600731,7 @@ "14:30", "15:45", "HQ 207 - Humanities Quadrangle 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -278921,10 +600748,145 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85986\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/85986/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987882971763611, + 0.9989101886749268, + 0.998711109161377, + 0.9987025260925293, + 0.9988691210746765, + 0.9982438087463379, + 0.9898550510406494, + 0.9989056587219238, + 0.9987238049507141, + 0.9989151954650879 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9932392835617065, + 0.9977485537528992, + 0.9989342093467712, + 0.9989206790924072, + 0.9989013671875, + 0.9988443851470947, + 0.9989092350006104, + 0.9988629817962646, + 0.998928964138031, + 0.9989180564880371, + 0.9989244341850281 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 10 + }, + "sentiment_distribution": { + "NEGATIVE": 0.09090909090909091, + "POSITIVE": 0.9090909090909091 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9090909090909091 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9899557828903198, + 0.998838484287262, + 0.9988899827003479, + 0.9988746047019958, + 0.9989116191864014, + 0.9918808341026306, + 0.9989124536514282, + 0.9989235997200012, + 0.998859167098999, + 0.9989007711410522, + 0.9988682270050049, + 0.998883068561554, + 0.9988605976104736 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 33, + "final_proportion": 0.9705882352941176, + "final_counts": { + "POSITIVE": 33, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9705882352941176, + "NEGATIVE": 0.029411764705882353 + } + } }, { "season_code": "202301", @@ -278968,7 +600930,7 @@ "10:30", "11:20", "WLH 113 - William L. Harkness Hall 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -278976,7 +600938,7 @@ "10:30", "11:20", "WLH 113 - William L. Harkness Hall 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -278990,10 +600952,155 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84819\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84819/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998536229133606, + 0.998810887336731, + 0.9985824823379517, + 0.9988592863082886, + 0.9959073066711426, + 0.99871826171875, + 0.9989239573478699, + 0.9989050626754761, + 0.9988049268722534, + 0.9962486624717712, + 0.9900902509689331, + 0.9985747337341309, + 0.9988892674446106, + 0.9986215829849243 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9285714285714286, + "NEGATIVE": 0.07142857142857142 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9285714285714286 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988436698913574, + 0.9989302754402161, + 0.9989068508148193, + 0.9980466365814209, + 0.9963915944099426, + 0.9974145889282227, + 0.9988678693771362, + 0.9989114999771118, + 0.999232292175293, + 0.9986825585365295, + 0.9987850785255432, + 0.9988842606544495, + 0.9989342093467712 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9230769230769231, + "NEGATIVE": 0.07692307692307693 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9230769230769231 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986013770103455, + 0.9988812804222107, + 0.9988468885421753, + 0.9989006519317627, + 0.9988101720809937, + 0.9989246726036072, + 0.9987888932228088, + 0.9985087513923645, + 0.9982649683952332, + 0.9905369877815247, + 0.9989036321640015, + 0.9989244341850281 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9166666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 36, + "final_proportion": 0.9230769230769231, + "final_counts": { + "POSITIVE": 36, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.9230769230769231, + "NEGATIVE": 0.07692307692307693 + } + } }, { "season_code": "202301", @@ -279028,7 +601135,7 @@ "17:00", "17:50", "HQ C07 - Humanities Quadrangle C07", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -279045,7 +601152,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -279080,7 +601215,7 @@ "10:30", "11:20", "HQ C07 - Humanities Quadrangle C07", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -279097,7 +601232,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -279137,7 +601300,7 @@ "13:00", "14:15", "WLH 003 - William L. Harkness Hall 003", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -279145,7 +601308,7 @@ "13:00", "14:15", "WLH 003 - William L. Harkness Hall 003", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -279163,10 +601326,133 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84822\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84822/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988582134246826, + 0.9989280104637146, + 0.998777449131012, + 0.9989126920700073, + 0.9989179372787476, + 0.998863697052002, + 0.9988943934440613, + 0.9987834095954895, + 0.9986822009086609, + 0.9988324046134949 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987791180610657, + 0.9989171028137207, + 0.9989173412322998, + 0.9988341927528381, + 0.9982849955558777, + 0.9989211559295654, + 0.9975069165229797, + 0.9946286082267761 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988653659820557, + 0.9989029169082642, + 0.998855471611023, + 0.9989078044891357, + 0.9986862540245056, + 0.9988903403282166, + 0.9987357258796692, + 0.9987905621528625, + 0.9989303946495056, + 0.9989020824432373, + 0.9988893866539001 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 29, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 29 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -279206,7 +601492,7 @@ "9:25", "11:15", "HQ C65 - Humanities Quadrangle C65", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -279220,10 +601506,93 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85987\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85987/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988740086555481, + 0.9988631010055542, + 0.9989228844642639 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998934805393219, + 0.9988665580749512, + 0.9988484382629395 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988332390785217, + 0.9987587928771973, + 0.998799204826355 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 9 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -279266,7 +601635,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -279306,7 +601703,7 @@ "9:25", "11:15", "HQ C65 - Humanities Quadrangle C65", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -279318,10 +601715,93 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85987\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85987/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988740086555481, + 0.9988631010055542, + 0.9989228844642639 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998934805393219, + 0.9988665580749512, + 0.9988484382629395 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988332390785217, + 0.9987587928771973, + 0.998799204826355 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 9 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -279358,7 +601838,7 @@ "9:25", "10:15", "BASSLB L71 - Bass Library L71", - "https:\/\/map.yale.edu\/?id=1910#!m\/564574" + "https://map.yale.edu/?id=1910#!m/564574" ] ], "Tuesday": [ @@ -279366,7 +601846,7 @@ "9:25", "10:15", "BASSLB L71 - Bass Library L71", - "https:\/\/map.yale.edu\/?id=1910#!m\/564574" + "https://map.yale.edu/?id=1910#!m/564574" ] ], "Wednesday": [ @@ -279374,7 +601854,7 @@ "9:25", "10:15", "BASSLB L71 - Bass Library L71", - "https:\/\/map.yale.edu\/?id=1910#!m\/564574" + "https://map.yale.edu/?id=1910#!m/564574" ] ], "Thursday": [ @@ -279382,7 +601862,7 @@ "9:25", "10:15", "BASSLB L71 - Bass Library L71", - "https:\/\/map.yale.edu\/?id=1910#!m\/564574" + "https://map.yale.edu/?id=1910#!m/564574" ] ], "Friday": [ @@ -279390,7 +601870,7 @@ "9:25", "10:15", "BASSLB L71 - Bass Library L71", - "https:\/\/map.yale.edu\/?id=1910#!m\/564574" + "https://map.yale.edu/?id=1910#!m/564574" ] ] }, @@ -279407,7 +601887,100 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987057447433472, + 0.957480788230896, + 0.9982569813728333, + 0.9986550807952881 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988295435905457, + 0.9989113807678223, + 0.9988899827003479, + 0.9988508224487305, + 0.9989326596260071 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982011318206787, + 0.9989147186279297, + 0.9976828098297119, + 0.9983742237091064, + 0.9987708926200867 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 14 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -279444,7 +602017,7 @@ "10:30", "11:20", "BASSLB L71 - Bass Library L71", - "https:\/\/map.yale.edu\/?id=1910#!m\/564574" + "https://map.yale.edu/?id=1910#!m/564574" ] ], "Tuesday": [ @@ -279452,7 +602025,7 @@ "10:30", "11:20", "BASSLB L71 - Bass Library L71", - "https:\/\/map.yale.edu\/?id=1910#!m\/564574" + "https://map.yale.edu/?id=1910#!m/564574" ] ], "Wednesday": [ @@ -279460,7 +602033,7 @@ "10:30", "11:20", "BASSLB L71 - Bass Library L71", - "https:\/\/map.yale.edu\/?id=1910#!m\/564574" + "https://map.yale.edu/?id=1910#!m/564574" ] ], "Thursday": [ @@ -279468,7 +602041,7 @@ "10:30", "11:20", "BASSLB L71 - Bass Library L71", - "https:\/\/map.yale.edu\/?id=1910#!m\/564574" + "https://map.yale.edu/?id=1910#!m/564574" ] ], "Friday": [ @@ -279476,7 +602049,7 @@ "10:30", "11:20", "BASSLB L71 - Bass Library L71", - "https:\/\/map.yale.edu\/?id=1910#!m\/564574" + "https://map.yale.edu/?id=1910#!m/564574" ] ] }, @@ -279493,7 +602066,112 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998799204826355, + 0.998920202255249, + 0.9984802603721619, + 0.9956654906272888, + 0.9982935786247253, + 0.9946027398109436, + 0.998731791973114 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989325404167175, + 0.9989390969276428, + 0.9989153146743774, + 0.998909592628479, + 0.9989317059516907, + 0.9988835453987122 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989282488822937, + 0.9985927939414978, + 0.9988182187080383, + 0.9989280104637146, + 0.9987850785255432, + 0.9988172054290771, + 0.9987412095069885 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 20 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -279573,7 +602251,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -279610,7 +602316,7 @@ "10:30", "11:20", "YK220 100 - 220 York Street 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ], "Tuesday": [ @@ -279618,7 +602324,7 @@ "10:30", "11:20", "YK220 100 - 220 York Street 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ], "Wednesday": [ @@ -279626,7 +602332,7 @@ "10:30", "11:20", "YK220 100 - 220 York Street 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ], "Thursday": [ @@ -279634,7 +602340,7 @@ "10:30", "11:20", "YK220 100 - 220 York Street 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ], "Friday": [ @@ -279642,7 +602348,7 @@ "10:30", "11:20", "YK220 100 - 220 York Street 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ] }, @@ -279656,10 +602362,38 @@ "classnotes": "", "final_exam": "Wednesday, May 10, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84821\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84821/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -279696,7 +602430,7 @@ "10:30", "11:20", "WALL53 B-04 - 53 Wall Street B-04", - "https:\/\/map.yale.edu\/?id=1910#!m\/559554" + "https://map.yale.edu/?id=1910#!m/559554" ] ], "Tuesday": [ @@ -279704,7 +602438,7 @@ "10:30", "11:20", "WALL53 B-04 - 53 Wall Street B-04", - "https:\/\/map.yale.edu\/?id=1910#!m\/559554" + "https://map.yale.edu/?id=1910#!m/559554" ] ], "Wednesday": [ @@ -279712,7 +602446,7 @@ "10:30", "11:20", "WALL53 B-04 - 53 Wall Street B-04", - "https:\/\/map.yale.edu\/?id=1910#!m\/559554" + "https://map.yale.edu/?id=1910#!m/559554" ] ], "Thursday": [ @@ -279720,7 +602454,7 @@ "10:30", "11:20", "WALL53 B-04 - 53 Wall Street B-04", - "https:\/\/map.yale.edu\/?id=1910#!m\/559554" + "https://map.yale.edu/?id=1910#!m/559554" ] ], "Friday": [ @@ -279728,7 +602462,7 @@ "10:30", "11:20", "WALL53 B-04 - 53 Wall Street B-04", - "https:\/\/map.yale.edu\/?id=1910#!m\/559554" + "https://map.yale.edu/?id=1910#!m/559554" ] ] }, @@ -279744,10 +602478,38 @@ "classnotes": "", "final_exam": "Wednesday, May 10, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84825\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84825/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -279784,7 +602546,7 @@ "11:35", "12:50", "BASSLB L72 - Bass Library L72", - "https:\/\/map.yale.edu\/?id=1910#!m\/564574" + "https://map.yale.edu/?id=1910#!m/564574" ] ], "Wednesday": [ @@ -279792,7 +602554,7 @@ "11:35", "12:50", "BASSLB L72 - Bass Library L72", - "https:\/\/map.yale.edu\/?id=1910#!m\/564574" + "https://map.yale.edu/?id=1910#!m/564574" ] ] }, @@ -279807,10 +602569,107 @@ "classnotes": "", "final_exam": "Saturday, May 6, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84830\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84830/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989010095596313, + 0.9988933205604553, + 0.9986664056777954, + 0.9987849593162537, + 0.9988375306129456 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987460374832153, + 0.9989036321640015, + 0.9989253878593445, + 0.9989011287689209, + 0.9988952279090881, + 0.9988723397254944 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998930037021637, + 0.9989093542098999, + 0.9987868666648865, + 0.9989161491394043, + 0.9989025592803955 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 16 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -279847,13 +602706,13 @@ "10:30", "11:20", "LC 206 - Linsly-Chittenden Hall 206", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ], [ "9:25", "10:15", "LC 206 - Linsly-Chittenden Hall 206", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Tuesday": [ @@ -279861,7 +602720,7 @@ "10:30", "11:20", "LC 206 - Linsly-Chittenden Hall 206", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -279869,13 +602728,13 @@ "10:30", "11:20", "LC 206 - Linsly-Chittenden Hall 206", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ], [ "9:25", "10:15", "LC 206 - Linsly-Chittenden Hall 206", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -279883,7 +602742,7 @@ "10:30", "11:20", "LC 206 - Linsly-Chittenden Hall 206", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Friday": [ @@ -279891,13 +602750,13 @@ "10:30", "11:20", "LC 206 - Linsly-Chittenden Hall 206", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ], [ "9:25", "10:15", "LC 206 - Linsly-Chittenden Hall 206", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -279912,10 +602771,89 @@ "classnotes": "", "final_exam": "Friday, May 5, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84836\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84836/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987285733222961, + 0.9988983869552612 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988574981689453, + 0.9975457787513733 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983261227607727, + 0.9989264607429504 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 5, + "final_proportion": 0.8333333333333334, + "final_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + } + } }, { "season_code": "202301", @@ -279952,7 +602890,7 @@ "11:35", "12:50", "LC 206 - Linsly-Chittenden Hall 206", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -279960,7 +602898,7 @@ "11:35", "12:50", "LC 206 - Linsly-Chittenden Hall 206", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Friday": [ @@ -279968,7 +602906,7 @@ "11:35", "12:50", "LC 206 - Linsly-Chittenden Hall 206", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -279982,10 +602920,111 @@ "classnotes": "", "final_exam": "Saturday, May 6, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84844\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84844/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9964423775672913, + 0.9987724423408508, + 0.998847484588623, + 0.9985663294792175, + 0.9988798499107361, + 0.9987189769744873 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987686276435852, + 0.9981539845466614, + 0.9988527297973633, + 0.9985620379447937, + 0.9988840222358704, + 0.9984530210494995 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984405636787415, + 0.9982469081878662, + 0.9989232420921326, + 0.9986244440078735, + 0.9988303780555725, + 0.9989287257194519 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 18 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -280022,7 +603061,7 @@ "14:30", "15:45", "HQ C07 - Humanities Quadrangle C07", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -280030,7 +603069,7 @@ "14:30", "15:45", "HQ C07 - Humanities Quadrangle C07", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -280044,10 +603083,107 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85963\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85963/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998744010925293, + 0.9988653659820557, + 0.9985805749893188, + 0.9988247752189636, + 0.9987472295761108 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987818598747253, + 0.998852014541626, + 0.9989148378372192, + 0.9989373087882996, + 0.9989187717437744 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985148310661316, + 0.9989120960235596, + 0.9988279938697815, + 0.9988856911659241, + 0.9988920092582703 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 4 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2, + "POSITIVE": 0.8 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 0.9333333333333333, + "final_counts": { + "POSITIVE": 14, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9333333333333333, + "NEGATIVE": 0.06666666666666667 + } + } }, { "season_code": "202301", @@ -280084,7 +603220,7 @@ "11:35", "12:25", "YK220 100 - 220 York Street 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ], "Wednesday": [ @@ -280092,7 +603228,7 @@ "11:35", "12:25", "YK220 100 - 220 York Street 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ], "Friday": [ @@ -280100,7 +603236,7 @@ "11:35", "12:25", "YK220 100 - 220 York Street 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ] }, @@ -280116,10 +603252,111 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84849\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84849/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998903751373291, + 0.9988861680030823, + 0.9984357953071594, + 0.9986365437507629, + 0.9988228678703308, + 0.9988080263137817 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989230036735535, + 0.998923122882843, + 0.9981632828712463, + 0.9988839030265808, + 0.9988781809806824, + 0.9989062547683716 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984959363937378, + 0.9981464147567749, + 0.9989045858383179, + 0.9980779886245728, + 0.9989153146743774, + 0.9989107847213745 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 18 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -280156,7 +603393,7 @@ "13:00", "14:15", "WLH 204 - William L. Harkness Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -280164,7 +603401,7 @@ "13:00", "14:15", "WLH 204 - William L. Harkness Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -280178,10 +603415,38 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85964\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/85964/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -280220,7 +603485,7 @@ "14:30", "15:20", "WLH 116 - William L. Harkness Hall 116", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -280228,7 +603493,7 @@ "14:30", "15:20", "WLH 116 - William L. Harkness Hall 116", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -280242,10 +603507,259 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84813\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84813/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988939166069031, + 0.9989135265350342, + 0.9988646507263184, + 0.9987958669662476, + 0.9941735863685608, + 0.9989174604415894, + 0.9988487958908081, + 0.9987892508506775, + 0.9988921284675598, + 0.9988158941268921, + 0.99891197681427, + 0.9988844990730286, + 0.9988431930541992, + 0.9988824725151062, + 0.9987741112709045, + 0.998921275138855, + 0.9989245533943176, + 0.9988381266593933, + 0.9989175796508789, + 0.998894989490509, + 0.998820960521698, + 0.9988018274307251, + 0.9989199638366699, + 0.9987668991088867, + 0.9979544878005981, + 0.9988967180252075, + 0.9989321827888489, + 0.9988452196121216, + 0.9985488057136536 + ], + "sentiment_counts": { + "POSITIVE": 29, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.998778760433197, + 0.9989179372787476, + 0.9986761212348938, + 0.998363196849823, + 0.9988664388656616, + 0.9989321827888489, + 0.9984431862831116, + 0.9988597631454468, + 0.9983048439025879, + 0.9989120960235596, + 0.9989282488822937, + 0.9987947940826416, + 0.9986715316772461, + 0.9988627433776855, + 0.9987239241600037, + 0.9987519979476929, + 0.99869304895401, + 0.9983493089675903, + 0.9987809062004089, + 0.9988409876823425, + 0.9989333748817444, + 0.9988266825675964, + 0.9989238381385803, + 0.9989036321640015, + 0.998572826385498, + 0.9744672775268555, + 0.9985036849975586, + 0.9975056052207947, + 0.998880922794342, + 0.9994947910308838 + ], + "sentiment_counts": { + "POSITIVE": 26, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.8666666666666667, + "NEGATIVE": 0.13333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8666666666666667 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.997117280960083, + 0.9982553124427795, + 0.9995111227035522, + 0.9989379048347473, + 0.9986973404884338, + 0.9984381794929504, + 0.9988941550254822, + 0.998881995677948, + 0.9988924860954285, + 0.998770534992218, + 0.9988324046134949, + 0.998887836933136, + 0.9966742992401123, + 0.9985789060592651, + 0.9989213943481445, + 0.9987286925315857, + 0.9982450008392334, + 0.9987034797668457, + 0.9989067316055298, + 0.9985982775688171, + 0.9989030361175537, + 0.9989047050476074, + 0.998904824256897, + 0.9989190101623535, + 0.9980897307395935, + 0.9989336133003235, + 0.9773299694061279, + 0.9989128112792969, + 0.9981497526168823, + 0.9988632202148438, + 0.9989275336265564, + 0.9908626079559326 + ], + "sentiment_counts": { + "POSITIVE": 28, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "final_label": "POSITIVE", + "final_count": 83, + "final_proportion": 0.9120879120879121, + "final_counts": { + "POSITIVE": 83, + "NEGATIVE": 8 + }, + "final_distribution": { + "POSITIVE": 0.9120879120879121, + "NEGATIVE": 0.08791208791208792 + } + } }, { "season_code": "202301", @@ -280278,7 +603792,7 @@ "10:30", "11:20", "HQ C01 - Humanities Quadrangle C01", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -280295,7 +603809,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -280328,7 +603870,7 @@ "17:00", "17:50", "HQ C01 - Humanities Quadrangle C01", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -280345,7 +603887,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -280378,7 +603948,7 @@ "19:00", "19:50", "HQ C07 - Humanities Quadrangle C07", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -280395,7 +603965,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -280428,7 +604026,7 @@ "17:00", "17:50", "HQ C07 - Humanities Quadrangle C07", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -280445,7 +604043,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -280482,7 +604108,7 @@ "13:00", "14:15", "HQ C03 - Humanities Quadrangle C03", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -280490,7 +604116,7 @@ "13:00", "14:15", "HQ C03 - Humanities Quadrangle C03", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -280504,10 +604130,38 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84816\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84816/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -280545,7 +604199,7 @@ "14:30", "15:45", "HQ 207 - Humanities Quadrangle 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -280553,7 +604207,7 @@ "14:30", "15:45", "HQ 207 - Humanities Quadrangle 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -280570,10 +604224,145 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85986\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/85986/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987882971763611, + 0.9989101886749268, + 0.998711109161377, + 0.9987025260925293, + 0.9988691210746765, + 0.9982438087463379, + 0.9898550510406494, + 0.9989056587219238, + 0.9987238049507141, + 0.9989151954650879 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9932392835617065, + 0.9977485537528992, + 0.9989342093467712, + 0.9989206790924072, + 0.9989013671875, + 0.9988443851470947, + 0.9989092350006104, + 0.9988629817962646, + 0.998928964138031, + 0.9989180564880371, + 0.9989244341850281 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 10 + }, + "sentiment_distribution": { + "NEGATIVE": 0.09090909090909091, + "POSITIVE": 0.9090909090909091 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9090909090909091 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9899557828903198, + 0.998838484287262, + 0.9988899827003479, + 0.9988746047019958, + 0.9989116191864014, + 0.9918808341026306, + 0.9989124536514282, + 0.9989235997200012, + 0.998859167098999, + 0.9989007711410522, + 0.9988682270050049, + 0.998883068561554, + 0.9988605976104736 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 33, + "final_proportion": 0.9705882352941176, + "final_counts": { + "POSITIVE": 33, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9705882352941176, + "NEGATIVE": 0.029411764705882353 + } + } }, { "season_code": "202301", @@ -280617,7 +604406,7 @@ "10:30", "11:20", "WLH 113 - William L. Harkness Hall 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -280625,7 +604414,7 @@ "10:30", "11:20", "WLH 113 - William L. Harkness Hall 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -280639,10 +604428,155 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84819\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84819/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998536229133606, + 0.998810887336731, + 0.9985824823379517, + 0.9988592863082886, + 0.9959073066711426, + 0.99871826171875, + 0.9989239573478699, + 0.9989050626754761, + 0.9988049268722534, + 0.9962486624717712, + 0.9900902509689331, + 0.9985747337341309, + 0.9988892674446106, + 0.9986215829849243 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9285714285714286, + "NEGATIVE": 0.07142857142857142 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9285714285714286 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988436698913574, + 0.9989302754402161, + 0.9989068508148193, + 0.9980466365814209, + 0.9963915944099426, + 0.9974145889282227, + 0.9988678693771362, + 0.9989114999771118, + 0.999232292175293, + 0.9986825585365295, + 0.9987850785255432, + 0.9988842606544495, + 0.9989342093467712 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9230769230769231, + "NEGATIVE": 0.07692307692307693 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9230769230769231 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986013770103455, + 0.9988812804222107, + 0.9988468885421753, + 0.9989006519317627, + 0.9988101720809937, + 0.9989246726036072, + 0.9987888932228088, + 0.9985087513923645, + 0.9982649683952332, + 0.9905369877815247, + 0.9989036321640015, + 0.9989244341850281 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9166666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 36, + "final_proportion": 0.9230769230769231, + "final_counts": { + "POSITIVE": 36, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.9230769230769231, + "NEGATIVE": 0.07692307692307693 + } + } }, { "season_code": "202301", @@ -280677,7 +604611,7 @@ "17:00", "17:50", "HQ C07 - Humanities Quadrangle C07", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -280694,7 +604628,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -280729,7 +604691,7 @@ "10:30", "11:20", "HQ C07 - Humanities Quadrangle C07", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -280746,7 +604708,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -280786,7 +604776,7 @@ "13:00", "14:15", "WLH 003 - William L. Harkness Hall 003", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -280794,7 +604784,7 @@ "13:00", "14:15", "WLH 003 - William L. Harkness Hall 003", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -280812,10 +604802,133 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84822\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84822/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988582134246826, + 0.9989280104637146, + 0.998777449131012, + 0.9989126920700073, + 0.9989179372787476, + 0.998863697052002, + 0.9988943934440613, + 0.9987834095954895, + 0.9986822009086609, + 0.9988324046134949 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987791180610657, + 0.9989171028137207, + 0.9989173412322998, + 0.9988341927528381, + 0.9982849955558777, + 0.9989211559295654, + 0.9975069165229797, + 0.9946286082267761 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988653659820557, + 0.9989029169082642, + 0.998855471611023, + 0.9989078044891357, + 0.9986862540245056, + 0.9988903403282166, + 0.9987357258796692, + 0.9987905621528625, + 0.9989303946495056, + 0.9989020824432373, + 0.9988893866539001 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 29, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 29 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -280855,7 +604968,7 @@ "9:25", "11:15", "HQ C65 - Humanities Quadrangle C65", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -280869,10 +604982,93 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85987\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85987/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988740086555481, + 0.9988631010055542, + 0.9989228844642639 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998934805393219, + 0.9988665580749512, + 0.9988484382629395 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988332390785217, + 0.9987587928771973, + 0.998799204826355 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 9 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -280915,7 +605111,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -280958,7 +605182,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -280993,10 +605245,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84831\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84831/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -281036,7 +605316,7 @@ "9:25", "11:15", "HQ C65 - Humanities Quadrangle C65", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -281048,10 +605328,93 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85987\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85987/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988740086555481, + 0.9988631010055542, + 0.9989228844642639 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998934805393219, + 0.9988665580749512, + 0.9988484382629395 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988332390785217, + 0.9987587928771973, + 0.998799204826355 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 9 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -281091,7 +605454,7 @@ "13:30", "15:20", "HQ 109 - Humanities Quadrangle 109", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -281103,10 +605466,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84834\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84834/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -281144,7 +605535,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -281181,7 +605600,7 @@ "15:30", "17:20", "HQ 109 - Humanities Quadrangle 109", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -281193,10 +605612,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84841\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84841/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -281234,7 +605681,7 @@ "9:00", "10:15", "DAVIES AUD - Davies Auditorium, Becton Ctr AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ], "Thursday": [ @@ -281242,7 +605689,7 @@ "9:00", "10:15", "DAVIES AUD - Davies Auditorium, Becton Ctr AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ] }, @@ -281258,10 +605705,459 @@ "classnotes": "", "final_exam": "Tuesday, May 9, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84843\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84843/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987346529960632, + 0.9981369972229004, + 0.9987015724182129, + 0.9985281229019165, + 0.9987096786499023, + 0.9988922476768494, + 0.998421311378479, + 0.9977315068244934, + 0.9988685846328735, + 0.9984543323516846, + 0.9987218976020813, + 0.9979469180107117, + 0.996439516544342, + 0.9987738728523254, + 0.998839795589447, + 0.9878355860710144, + 0.9985591769218445, + 0.9977102279663086, + 0.996173083782196, + 0.9988956451416016, + 0.9975608587265015, + 0.9988458156585693, + 0.9958729147911072, + 0.9980759620666504, + 0.9988898634910583, + 0.9981605410575867, + 0.9956766963005066, + 0.9984446167945862, + 0.9928118586540222, + 0.9956834316253662, + 0.9959914088249207, + 0.9892413020133972, + 0.9859601259231567, + 0.9987770915031433, + 0.9987586736679077, + 0.9737831354141235, + 0.9967265129089355, + 0.9988560676574707, + 0.9893341660499573, + 0.9983950257301331, + 0.9880862236022949, + 0.9985827207565308, + 0.9987130165100098, + 0.9988330006599426, + 0.9811796545982361, + 0.9982313513755798, + 0.9905316829681396, + 0.9914984107017517, + 0.9982101917266846, + 0.9985417127609253, + 0.9944804906845093, + 0.9977540373802185, + 0.9988530874252319, + 0.9980486631393433, + 0.9981619715690613, + 0.9983555674552917, + 0.9978352189064026, + 0.9986642599105835, + 0.9987103939056396, + 0.9921618103981018, + 0.9985709190368652, + 0.9966074228286743, + 0.9989113807678223, + 0.9986080527305603 + ], + "sentiment_counts": { + "POSITIVE": 60, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.9375, + "NEGATIVE": 0.0625 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9375 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989038705825806, + 0.999508261680603, + 0.9994884729385376, + 0.9934763312339783, + 0.9978858828544617, + 0.9989054203033447, + 0.9990965127944946, + 0.9985658526420593, + 0.9987271428108215, + 0.9986041188240051, + 0.99945467710495, + 0.9988275170326233, + 0.9987819790840149, + 0.994524359703064, + 0.9994931221008301, + 0.9988976716995239, + 0.9995054006576538, + 0.9979988932609558, + 0.9988729357719421, + 0.9992642998695374, + 0.9988709092140198, + 0.9962930083274841, + 0.9987598657608032, + 0.9969246983528137, + 0.9989169836044312, + 0.9988372921943665, + 0.9898726940155029, + 0.9981946349143982, + 0.9988558292388916, + 0.9983708262443542, + 0.99892657995224, + 0.9921728372573853, + 0.9994959831237793, + 0.9989116191864014, + 0.9859601259231567, + 0.9954739212989807, + 0.9938030242919922, + 0.9912041425704956, + 0.9988831877708435, + 0.9987753033638, + 0.9823001027107239, + 0.9986763596534729, + 0.9989018440246582, + 0.9994919300079346, + 0.9993705153465271, + 0.9972507357597351, + 0.9987794756889343, + 0.9988635778427124, + 0.9985874891281128, + 0.996692419052124, + 0.9994741082191467, + 0.9988251328468323, + 0.9981502294540405, + 0.9807484149932861, + 0.9988534450531006, + 0.9994459748268127, + 0.9988939166069031, + 0.9989137649536133, + 0.999479353427887, + 0.998689591884613, + 0.9982191920280457, + 0.9985164999961853, + 0.9797855019569397, + 0.9972833395004272, + 0.998776376247406, + 0.9989312291145325, + 0.9932211637496948 + ], + "sentiment_counts": { + "POSITIVE": 49, + "NEGATIVE": 18 + }, + "sentiment_distribution": { + "POSITIVE": 0.7313432835820896, + "NEGATIVE": 0.26865671641791045 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7313432835820896 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9799391031265259, + 0.99174964427948, + 0.9984941482543945, + 0.9984686970710754, + 0.998805046081543, + 0.9987962245941162, + 0.9982553124427795, + 0.9988722205162048, + 0.9906080961227417, + 0.9985861778259277, + 0.9987963438034058, + 0.9979409575462341, + 0.9995025396347046, + 0.9989093542098999, + 0.9987438321113586, + 0.9989035129547119, + 0.9988516569137573, + 0.9951173067092896, + 0.9986720085144043, + 0.9987157583236694, + 0.9989200830459595, + 0.9988548755645752, + 0.9990672469139099, + 0.9988829493522644, + 0.9987990856170654, + 0.9960801005363464, + 0.9960336089134216, + 0.9988904595375061, + 0.9988628625869751, + 0.9978128671646118, + 0.9987560510635376, + 0.9859601259231567, + 0.9978628754615784, + 0.9981966614723206, + 0.995908260345459, + 0.9988539218902588, + 0.9987481832504272, + 0.9988862872123718, + 0.9986334443092346, + 0.9988129138946533, + 0.9989168643951416, + 0.998927652835846, + 0.9987291693687439, + 0.9994972944259644, + 0.9976929426193237, + 0.9986701011657715, + 0.9973655343055725, + 0.9990406632423401, + 0.9984543323516846, + 0.9988968372344971, + 0.9977082014083862, + 0.998896598815918, + 0.999204695224762, + 0.997117280960083, + 0.9976240992546082, + 0.9469778537750244, + 0.9989199638366699, + 0.9985289573669434, + 0.9989259839057922, + 0.9994866847991943 + ], + "sentiment_counts": { + "POSITIVE": 46, + "NEGATIVE": 14 + }, + "sentiment_distribution": { + "POSITIVE": 0.7666666666666667, + "NEGATIVE": 0.23333333333333334 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7666666666666667 + ] + }, + "final_label": "POSITIVE", + "final_count": 155, + "final_proportion": 0.8115183246073299, + "final_counts": { + "POSITIVE": 155, + "NEGATIVE": 36 + }, + "final_distribution": { + "POSITIVE": 0.8115183246073299, + "NEGATIVE": 0.18848167539267016 + } + } }, { "season_code": "202301", @@ -281301,7 +606197,7 @@ "14:30", "15:45", "YSB MARSH - Yale Science Building MARSH", - "https:\/\/map.yale.edu\/?id=1910#!m\/563700" + "https://map.yale.edu/?id=1910#!m/563700" ] ], "Thursday": [ @@ -281309,7 +606205,7 @@ "14:30", "15:45", "YSB MARSH - Yale Science Building MARSH", - "https:\/\/map.yale.edu\/?id=1910#!m\/563700" + "https://map.yale.edu/?id=1910#!m/563700" ] ] }, @@ -281323,10 +606219,493 @@ "classnotes": "", "final_exam": "Wednesday, May 10, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84847\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84847/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988390803337097, + 0.9313662648200989, + 0.9985993504524231, + 0.9988899827003479, + 0.9993763566017151, + 0.9988467693328857, + 0.9923166036605835, + 0.9954389929771423, + 0.9987394213676453, + 0.9954096674919128, + 0.9973886609077454, + 0.9989051818847656, + 0.9696313738822937, + 0.9988816380500793, + 0.9979748129844666, + 0.9976974129676819, + 0.9988600015640259, + 0.9985936284065247, + 0.9943304061889648, + 0.6966997981071472, + 0.9909794330596924, + 0.9987766146659851, + 0.9962397813796997, + 0.9966402053833008, + 0.9941121935844421, + 0.9988204836845398, + 0.9974930286407471, + 0.9987313151359558, + 0.9986740350723267, + 0.9973850846290588, + 0.998791515827179, + 0.9988551139831543, + 0.998920202255249, + 0.9988157749176025, + 0.9925565123558044, + 0.6966997981071472, + 0.9986429810523987, + 0.9988308548927307, + 0.8254338502883911, + 0.9951391220092773, + 0.9988755583763123, + 0.9983452558517456, + 0.9624868631362915, + 0.995354413986206, + 0.998823344707489, + 0.9976018071174622, + 0.9898678064346313, + 0.9982247948646545, + 0.9956926703453064, + 0.9980265498161316, + 0.993362545967102, + 0.9988679885864258, + 0.998910665512085, + 0.9891722202301025, + 0.998763918876648, + 0.9982233643531799, + 0.9983764886856079, + 0.9987964630126953, + 0.9972135424613953, + 0.9825941920280457, + 0.9987201690673828, + 0.9988223910331726, + 0.9918251037597656, + 0.9988749623298645, + 0.9985941052436829, + 0.9975353479385376, + 0.9952988028526306, + 0.9982408285140991, + 0.9964553117752075 + ], + "sentiment_counts": { + "POSITIVE": 62, + "NEGATIVE": 7 + }, + "sentiment_distribution": { + "POSITIVE": 0.8985507246376812, + "NEGATIVE": 0.10144927536231885 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8985507246376812 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988120794296265, + 0.9906856417655945, + 0.998322069644928, + 0.9988588094711304, + 0.9994621872901917, + 0.9988473653793335, + 0.9988729357719421, + 0.9987753033638, + 0.9929297566413879, + 0.9988870024681091, + 0.9985925555229187, + 0.9989203214645386, + 0.99891197681427, + 0.9994958639144897, + 0.9988915324211121, + 0.9989176988601685, + 0.9949889779090881, + 0.9988176226615906, + 0.9988964796066284, + 0.9994756579399109, + 0.9951633214950562, + 0.99718177318573, + 0.998890221118927, + 0.9989140033721924, + 0.993835985660553, + 0.9903426170349121, + 0.9986850619316101, + 0.9989087581634521, + 0.9937487840652466, + 0.9981314539909363, + 0.9993155002593994, + 0.9988297820091248, + 0.998791515827179, + 0.996482253074646, + 0.998907208442688, + 0.9982265830039978, + 0.9988477230072021, + 0.9994760155677795, + 0.9987025260925293, + 0.9965721368789673, + 0.997686505317688, + 0.9994988441467285, + 0.9988040924072266, + 0.9985962510108948, + 0.9978637099266052, + 0.9987891316413879, + 0.998863697052002, + 0.9989153146743774, + 0.9955337047576904, + 0.9989022016525269, + 0.9994587302207947, + 0.9970155954360962, + 0.9989181756973267, + 0.9978260397911072, + 0.9916815161705017, + 0.9983128309249878, + 0.9994958639144897, + 0.9977091550827026, + 0.9994990825653076, + 0.9976643323898315, + 0.9989014863967896, + 0.9988013505935669, + 0.999484658241272, + 0.9989088773727417, + 0.996813952922821, + 0.9988449811935425, + 0.9986633062362671, + 0.9988850951194763, + 0.9987645149230957, + 0.9988723397254944, + 0.9971765279769897, + 0.9985021352767944, + 0.9983749389648438 + ], + "sentiment_counts": { + "POSITIVE": 54, + "NEGATIVE": 19 + }, + "sentiment_distribution": { + "POSITIVE": 0.7397260273972602, + "NEGATIVE": 0.2602739726027397 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7397260273972602 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987590312957764, + 0.9957950115203857, + 0.9987393021583557, + 0.9960975646972656, + 0.9995051622390747, + 0.9984720349311829, + 0.9988909363746643, + 0.9985710382461548, + 0.9988948702812195, + 0.9989385008811951, + 0.9988910555839539, + 0.9989251494407654, + 0.99919193983078, + 0.9814485907554626, + 0.997117280960083, + 0.9987396597862244, + 0.9974592328071594, + 0.9988322854042053, + 0.9995080232620239, + 0.9986888766288757, + 0.9974592328071594, + 0.9988011121749878, + 0.9988499879837036, + 0.9988592863082886, + 0.9988529682159424, + 0.9988456964492798, + 0.9982553124427795, + 0.9981569647789001, + 0.9981942772865295, + 0.997117280960083, + 0.9986503720283508, + 0.998791515827179, + 0.9985626339912415, + 0.9985793828964233, + 0.9986091256141663, + 0.998511016368866, + 0.9495463967323303, + 0.9928285479545593, + 0.9985781908035278, + 0.9981749057769775, + 0.997712254524231, + 0.9989008903503418, + 0.9987488985061646, + 0.9989131689071655, + 0.9638811945915222, + 0.9984458088874817, + 0.9964146614074707, + 0.9993763566017151, + 0.9977746605873108, + 0.9984636306762695, + 0.9988266825675964, + 0.9989233613014221, + 0.9988744854927063, + 0.9988036155700684, + 0.9962062835693359, + 0.9970763921737671, + 0.9914073348045349, + 0.9986932873725891, + 0.9988895058631897, + 0.9988924860954285, + 0.9989135265350342, + 0.9982553124427795, + 0.997117280960083, + 0.9989099502563477, + 0.9988345503807068, + 0.9985203146934509 + ], + "sentiment_counts": { + "POSITIVE": 55, + "NEGATIVE": 11 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 171, + "final_proportion": 0.8221153846153846, + "final_counts": { + "POSITIVE": 171, + "NEGATIVE": 37 + }, + "final_distribution": { + "POSITIVE": 0.8221153846153846, + "NEGATIVE": 0.1778846153846154 + } + } }, { "season_code": "202301", @@ -281365,7 +606744,7 @@ "11:35", "12:50", "WTS A53 - Watson Center 60 Sachem Street A53", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -281373,7 +606752,7 @@ "11:35", "12:50", "WTS A53 - Watson Center 60 Sachem Street A53", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -281389,10 +606768,179 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83377\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83377/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9948464632034302, + 0.9982507824897766, + 0.9963141083717346, + 0.9982019662857056, + 0.9983668923377991, + 0.9977389574050903, + 0.9987146854400635, + 0.998765230178833, + 0.9987815022468567, + 0.9913017153739929, + 0.998819887638092, + 0.9986207485198975, + 0.9988828301429749 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9230769230769231, + "NEGATIVE": 0.07692307692307693 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9230769230769231 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998881995677948, + 0.9989153146743774, + 0.9980708956718445, + 0.9988847374916077, + 0.9988052845001221, + 0.9994705319404602, + 0.9993419051170349, + 0.9969468712806702, + 0.998849630355835, + 0.9986109733581543, + 0.9987082481384277, + 0.9968881011009216, + 0.9988484382629395, + 0.9995112419128418, + 0.9995059967041016, + 0.9988731741905212 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 6 + }, + "sentiment_distribution": { + "POSITIVE": 0.625, + "NEGATIVE": 0.375 + }, + "sentiment_overall": [ + "POSITIVE", + 0.625 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988201260566711, + 0.9989193677902222, + 0.9988200068473816, + 0.9987913966178894, + 0.9984990358352661, + 0.9980016350746155, + 0.9989326596260071, + 0.9987144470214844, + 0.9986056685447693, + 0.9988431930541992, + 0.9980402588844299, + 0.997117280960083, + 0.9979859590530396, + 0.9988790154457092, + 0.997117280960083, + 0.9985122084617615, + 0.997117280960083, + 0.9908491373062134, + 0.9967213273048401, + 0.9984230995178223, + 0.9995108842849731, + 0.9985857009887695 + ], + "sentiment_counts": { + "POSITIVE": 18, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.8181818181818182, + "NEGATIVE": 0.18181818181818182 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8181818181818182 + ] + }, + "final_label": "POSITIVE", + "final_count": 40, + "final_proportion": 0.7843137254901961, + "final_counts": { + "POSITIVE": 40, + "NEGATIVE": 11 + }, + "final_distribution": { + "POSITIVE": 0.7843137254901961, + "NEGATIVE": 0.21568627450980393 + } + } }, { "season_code": "202301", @@ -281430,7 +606978,7 @@ "9:00", "10:15", "HLH17 05 - 17 Hillhouse Avenue 05", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Thursday": [ @@ -281438,7 +606986,7 @@ "9:00", "10:15", "HLH17 05 - 17 Hillhouse Avenue 05", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -281452,10 +607000,123 @@ "classnotes": "", "final_exam": "Tuesday, May 9, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84851\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84851/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988594055175781, + 0.9798864722251892, + 0.9986546039581299, + 0.9988101720809937, + 0.9989381432533264, + 0.9987616539001465, + 0.9985941052436829, + 0.9926915764808655 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9895058274269104, + 0.9986175298690796, + 0.998730480670929, + 0.9988805651664734, + 0.9983493089675903, + 0.9969614148139954, + 0.9982179999351501 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986384510993958, + 0.9988945126533508, + 0.9989105463027954, + 0.9988657236099243, + 0.9981922507286072, + 0.9988872408866882, + 0.9989227652549744, + 0.998103141784668 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 22, + "final_proportion": 0.9565217391304348, + "final_counts": { + "POSITIVE": 22, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9565217391304348, + "NEGATIVE": 0.043478260869565216 + } + } }, { "season_code": "202301", @@ -281495,7 +607156,7 @@ "9:00", "10:15", "YSB MARSH - Yale Science Building MARSH", - "https:\/\/map.yale.edu\/?id=1910#!m\/563700" + "https://map.yale.edu/?id=1910#!m/563700" ] ], "Thursday": [ @@ -281503,7 +607164,7 @@ "9:00", "10:15", "YSB MARSH - Yale Science Building MARSH", - "https:\/\/map.yale.edu\/?id=1910#!m\/563700" + "https://map.yale.edu/?id=1910#!m/563700" ] ] }, @@ -281520,10 +607181,685 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84854\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84854/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9957060217857361, + 0.9983963370323181, + 0.9987702965736389, + 0.9993384480476379, + 0.995563268661499, + 0.998848557472229, + 0.998505711555481, + 0.9986794590950012, + 0.9978664517402649, + 0.9987805485725403, + 0.8332710266113281, + 0.9985344409942627, + 0.9988658428192139, + 0.9980286955833435, + 0.9988411068916321, + 0.9979686141014099, + 0.9842320680618286, + 0.9987119436264038, + 0.9986373782157898, + 0.9965710639953613, + 0.9982958436012268, + 0.99853515625, + 0.9974263310432434, + 0.9988835453987122, + 0.9995074272155762, + 0.8332710266113281, + 0.9908440709114075, + 0.9957789182662964, + 0.9978261590003967, + 0.9984598159790039, + 0.9986514449119568, + 0.9542851448059082, + 0.998741090297699, + 0.995273768901825, + 0.9976206421852112, + 0.998802661895752, + 0.9986287355422974, + 0.9981252551078796, + 0.9988033771514893, + 0.998895525932312, + 0.9979217648506165, + 0.9986355900764465, + 0.9983229041099548, + 0.9986674785614014, + 0.9983331561088562, + 0.9981325268745422, + 0.9982004165649414, + 0.9987947940826416, + 0.9988102912902832, + 0.9988331198692322, + 0.998475968837738, + 0.9988492727279663, + 0.997967541217804, + 0.998588502407074, + 0.9985595345497131, + 0.9987999200820923, + 0.9987727999687195, + 0.9926827549934387, + 0.9985735416412354, + 0.998753547668457, + 0.9988164901733398, + 0.9854896068572998, + 0.9976977705955505, + 0.9984960556030273, + 0.998335063457489, + 0.9943777918815613, + 0.9986881613731384, + 0.9970759153366089, + 0.9982156753540039, + 0.9986394047737122, + 0.9938712120056152, + 0.9969344139099121, + 0.9983464479446411, + 0.998645007610321, + 0.9943760633468628, + 0.9982286095619202, + 0.9926155805587769, + 0.9981200098991394, + 0.9986714124679565, + 0.9985120892524719, + 0.9984087347984314, + 0.9988582134246826, + 0.9987971782684326, + 0.9859678745269775, + 0.9982370138168335, + 0.9975293278694153, + 0.9969696402549744, + 0.9981050491333008, + 0.9987435936927795, + 0.9988685846328735, + 0.9986504912376404, + 0.9986410737037659, + 0.8332710266113281, + 0.998822033405304, + 0.9979312419891357, + 0.9989093542098999, + 0.9981157779693604, + 0.9985456466674805, + 0.99813312292099, + 0.9975791573524475, + 0.9988284707069397, + 0.9988631010055542 + ], + "sentiment_counts": { + "POSITIVE": 94, + "NEGATIVE": 8 + }, + "sentiment_distribution": { + "POSITIVE": 0.9215686274509803, + "NEGATIVE": 0.0784313725490196 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9215686274509803 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.997785210609436, + 0.9988498687744141, + 0.9985697269439697, + 0.998359739780426, + 0.9928559064865112, + 0.9988481998443604, + 0.9916354417800903, + 0.9995044469833374, + 0.9987149238586426, + 0.9989234805107117, + 0.9989116191864014, + 0.9989184141159058, + 0.9987666606903076, + 0.9987647533416748, + 0.9988968372344971, + 0.9994920492172241, + 0.9989238381385803, + 0.9994913339614868, + 0.9994827508926392, + 0.9982263445854187, + 0.9995081424713135, + 0.994878888130188, + 0.9989320635795593, + 0.999496340751648, + 0.9900509715080261, + 0.9988180994987488, + 0.9984726309776306, + 0.9989206790924072, + 0.9987354874610901, + 0.9994760155677795, + 0.9988973140716553, + 0.9989012479782104, + 0.9988056421279907, + 0.998356282711029, + 0.9989137649536133, + 0.9986463189125061, + 0.9989293217658997, + 0.9973716735839844, + 0.9988036155700684, + 0.9986655712127686, + 0.9908451437950134, + 0.9982427358627319, + 0.9989362359046936, + 0.995399534702301, + 0.998257577419281, + 0.9987540245056152, + 0.9943718910217285, + 0.9832941293716431, + 0.9994181394577026, + 0.9939607381820679, + 0.9986636638641357, + 0.9986292123794556, + 0.9869707822799683, + 0.9953317046165466, + 0.9986482262611389, + 0.9954794645309448, + 0.9988459348678589, + 0.9851312041282654, + 0.9994962215423584, + 0.9980888962745667, + 0.9985330104827881, + 0.9980475902557373, + 0.9986332058906555, + 0.9986251592636108, + 0.9988232254981995, + 0.9956852197647095, + 0.9989041090011597, + 0.9987026453018188, + 0.9895289540290833, + 0.9982047080993652, + 0.9983447790145874, + 0.998909592628479, + 0.9987529516220093, + 0.998927652835846, + 0.9965546131134033, + 0.9988870024681091, + 0.998874843120575, + 0.9986299276351929, + 0.9986182451248169, + 0.9988904595375061, + 0.9982571005821228, + 0.9983726143836975, + 0.9987938404083252, + 0.9993858337402344, + 0.9985598921775818, + 0.994134247303009, + 0.9985162615776062, + 0.9984220266342163, + 0.9877961874008179, + 0.9989056587219238, + 0.9971858859062195, + 0.9894683957099915, + 0.9989056587219238, + 0.995390772819519, + 0.9988178610801697, + 0.9988706707954407, + 0.9987236857414246, + 0.9987381100654602, + 0.9989364743232727, + 0.9972062706947327, + 0.9988799691200256 + ], + "sentiment_counts": { + "NEGATIVE": 22, + "POSITIVE": 79 + }, + "sentiment_distribution": { + "NEGATIVE": 0.21782178217821782, + "POSITIVE": 0.7821782178217822 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7821782178217822 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988545179367065, + 0.9987943172454834, + 0.9994895458221436, + 0.9955366849899292, + 0.9937028288841248, + 0.9988535642623901, + 0.9994581341743469, + 0.9895998239517212, + 0.9974656105041504, + 0.700718104839325, + 0.9988890290260315, + 0.9995052814483643, + 0.998842179775238, + 0.9988429546356201, + 0.9988638162612915, + 0.9983245730400085, + 0.9989330172538757, + 0.9987275004386902, + 0.9987685084342957, + 0.9988576173782349, + 0.9953336119651794, + 0.9989141225814819, + 0.9989148378372192, + 0.9995099306106567, + 0.9960653185844421, + 0.9987586736679077, + 0.9983124732971191, + 0.9987994432449341, + 0.9989162683486938, + 0.995817244052887, + 0.9989250302314758, + 0.9974592328071594, + 0.997117280960083, + 0.9986811280250549, + 0.9988783001899719, + 0.99854576587677, + 0.9989367127418518, + 0.9994781613349915, + 0.9986039996147156, + 0.9987154006958008, + 0.999152421951294, + 0.9977813363075256, + 0.9988958835601807, + 0.9988234639167786, + 0.9978014826774597, + 0.9900681972503662, + 0.9983722567558289, + 0.9987381100654602, + 0.9994654059410095, + 0.9960653185844421, + 0.9782708287239075, + 0.9938364624977112, + 0.997117280960083, + 0.9987514019012451, + 0.9982553124427795, + 0.9983006119728088, + 0.9987483024597168, + 0.9960015416145325, + 0.9991791844367981, + 0.6829744577407837, + 0.9988372921943665, + 0.9994248151779175, + 0.9946631193161011, + 0.9955321550369263, + 0.9987132549285889, + 0.9977285265922546, + 0.9988968372344971, + 0.9963952898979187, + 0.9988008737564087, + 0.998875081539154, + 0.9979496598243713, + 0.9988853335380554, + 0.9989013671875, + 0.9984482526779175, + 0.9989057779312134, + 0.9915626645088196, + 0.9987432360649109, + 0.9988924860954285, + 0.9989084005355835, + 0.9988665580749512, + 0.9988929629325867, + 0.9988725781440735, + 0.9988448619842529, + 0.9910309314727783, + 0.996421217918396, + 0.9987500905990601, + 0.9975625276565552, + 0.9984638690948486, + 0.9962217807769775, + 0.9988784193992615, + 0.9987278580665588, + 0.9989045858383179, + 0.9989256262779236, + 0.9988155364990234, + 0.9988860487937927, + 0.9988576173782349, + 0.9986879229545593, + 0.9988355040550232, + 0.998835027217865, + 0.9988396763801575, + 0.9989180564880371 + ], + "sentiment_counts": { + "POSITIVE": 83, + "NEGATIVE": 18 + }, + "sentiment_distribution": { + "POSITIVE": 0.8217821782178217, + "NEGATIVE": 0.1782178217821782 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8217821782178217 + ] + }, + "final_label": "POSITIVE", + "final_count": 256, + "final_proportion": 0.8421052631578947, + "final_counts": { + "POSITIVE": 256, + "NEGATIVE": 48 + }, + "final_distribution": { + "POSITIVE": 0.8421052631578947, + "NEGATIVE": 0.15789473684210525 + } + } }, { "season_code": "202301", @@ -281587,10 +607923,563 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84854\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84854/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9931656718254089, + 0.9932988882064819, + 0.9987340569496155, + 0.9984560012817383, + 0.9351113438606262, + 0.9924337863922119, + 0.9969362020492554, + 0.9842998385429382, + 0.9890410304069519, + 0.9831171035766602, + 0.9985718727111816, + 0.998722493648529, + 0.9979192614555359, + 0.9895251989364624, + 0.9966191053390503, + 0.998703122138977, + 0.998903751373291, + 0.9987000226974487, + 0.9962873458862305, + 0.9985287189483643, + 0.9924337863922119, + 0.9988613128662109, + 0.9985890984535217, + 0.998857855796814, + 0.9987618923187256, + 0.9969792366027832, + 0.99813312292099, + 0.9994199275970459, + 0.9921742677688599, + 0.9949508905410767, + 0.998359739780426, + 0.9988909363746643, + 0.998680055141449, + 0.9994027614593506, + 0.9987855553627014, + 0.9611027836799622, + 0.9958505630493164, + 0.998809814453125, + 0.9889119863510132, + 0.9988960027694702, + 0.9987082481384277, + 0.9695665240287781, + 0.9985337257385254, + 0.9975053668022156, + 0.9919496774673462, + 0.9876385927200317, + 0.9784610867500305, + 0.9913018941879272, + 0.9983415603637695, + 0.958283007144928, + 0.952523410320282, + 0.998801589012146, + 0.9966922998428345, + 0.9957492351531982, + 0.9989093542098999, + 0.9984182119369507, + 0.9988719820976257, + 0.9831021428108215, + 0.9983275532722473, + 0.9988529682159424, + 0.996702253818512, + 0.9989303946495056, + 0.8332710266113281, + 0.9988238215446472, + 0.9988293051719666, + 0.8332710266113281, + 0.9989019632339478, + 0.9695665240287781, + 0.9987363219261169, + 0.9973793029785156, + 0.9878736138343811, + 0.9984530210494995, + 0.9984629154205322, + 0.9988566637039185, + 0.9984999895095825, + 0.9988388419151306, + 0.9983034133911133, + 0.9984729886054993, + 0.9956848621368408, + 0.9979689717292786 + ], + "sentiment_counts": { + "POSITIVE": 74, + "NEGATIVE": 6 + }, + "sentiment_distribution": { + "POSITIVE": 0.925, + "NEGATIVE": 0.075 + }, + "sentiment_overall": [ + "POSITIVE", + 0.925 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989067316055298, + 0.9855768084526062, + 0.9987120628356934, + 0.9994019269943237, + 0.9987305998802185, + 0.9985424280166626, + 0.998607337474823, + 0.9973548650741577, + 0.9986602067947388, + 0.9986363053321838, + 0.9985314607620239, + 0.9886743426322937, + 0.9911922812461853, + 0.9995009899139404, + 0.9966233968734741, + 0.9989211559295654, + 0.9989374279975891, + 0.9986310601234436, + 0.9976099729537964, + 0.9972994923591614, + 0.9965173006057739, + 0.9986079335212708, + 0.9989364743232727, + 0.998881995677948, + 0.9983853101730347, + 0.9950042366981506, + 0.998893678188324, + 0.9994729161262512, + 0.9863829612731934, + 0.949722170829773, + 0.9994982481002808, + 0.9983497858047485, + 0.9994617104530334, + 0.9363119602203369, + 0.9994139671325684, + 0.9994825124740601, + 0.9994945526123047, + 0.9987611770629883, + 0.9986667633056641, + 0.9988341927528381, + 0.999504804611206, + 0.9133415222167969, + 0.9808903932571411, + 0.9994889497756958, + 0.9988601207733154, + 0.998789370059967, + 0.9944722056388855, + 0.9977430105209351, + 0.9964725375175476, + 0.9986289739608765, + 0.9988250136375427, + 0.9980335831642151, + 0.9985361099243164, + 0.9982720613479614, + 0.9994823932647705, + 0.998890221118927, + 0.9988840222358704, + 0.9736230969429016, + 0.9867772459983826, + 0.9988879561424255, + 0.9988341927528381, + 0.9987818598747253, + 0.9980296492576599, + 0.997580885887146, + 0.9989101886749268, + 0.9977694749832153, + 0.9988433122634888, + 0.998656153678894, + 0.9975234866142273, + 0.9955281615257263, + 0.9946677684783936, + 0.9977739453315735, + 0.9987794756889343, + 0.9989192485809326, + 0.9988958835601807, + 0.9988642930984497, + 0.9988322854042053, + 0.9988855719566345 + ], + "sentiment_counts": { + "POSITIVE": 52, + "NEGATIVE": 26 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984531402587891, + 0.9982628226280212, + 0.9987484216690063, + 0.997117280960083, + 0.9974592328071594, + 0.9988393187522888, + 0.9981922507286072, + 0.9978984594345093, + 0.9982463121414185, + 0.9820570945739746, + 0.9987094402313232, + 0.998832643032074, + 0.9983409643173218, + 0.9987327456474304, + 0.9954245686531067, + 0.9980598092079163, + 0.9980734586715698, + 0.9981852173805237, + 0.9989193677902222, + 0.9988154172897339, + 0.9982572197914124, + 0.9988023042678833, + 0.9989001750946045, + 0.9988429546356201, + 0.9908897280693054, + 0.9988962411880493, + 0.9988018274307251, + 0.9989284873008728, + 0.9983810186386108, + 0.9988238215446472, + 0.9954760670661926, + 0.9922966361045837, + 0.9983787536621094, + 0.998870313167572, + 0.9988504648208618, + 0.9988682270050049, + 0.9987707734107971, + 0.9983308911323547, + 0.9992780089378357, + 0.9994940757751465, + 0.994709849357605, + 0.9936606287956238, + 0.997117280960083, + 0.9986667633056641, + 0.9964948296546936, + 0.9988594055175781, + 0.9982014894485474, + 0.9990482926368713, + 0.997892439365387, + 0.998875081539154, + 0.9985576272010803, + 0.9988738894462585, + 0.9988788962364197, + 0.9989386200904846, + 0.9974592328071594, + 0.9986168146133423, + 0.9988872408866882, + 0.9981604218482971, + 0.9863064289093018, + 0.9987984895706177, + 0.9987689852714539, + 0.9989162683486938, + 0.9987775683403015, + 0.9987125396728516, + 0.9988986253738403, + 0.998627781867981, + 0.9989244341850281, + 0.9964451193809509, + 0.9982346296310425, + 0.9988061189651489, + 0.9987509250640869, + 0.9946428537368774, + 0.9974592328071594, + 0.9974592328071594, + 0.9987552165985107, + 0.9987506866455078, + 0.9994992017745972, + 0.9909997582435608, + 0.9981922507286072, + 0.9988752007484436, + 0.9988277554512024, + 0.9960544109344482, + 0.998913049697876, + 0.9988613128662109, + 0.9988376498222351 + ], + "sentiment_counts": { + "POSITIVE": 75, + "NEGATIVE": 10 + }, + "sentiment_distribution": { + "POSITIVE": 0.8823529411764706, + "NEGATIVE": 0.11764705882352941 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8823529411764706 + ] + }, + "final_label": "POSITIVE", + "final_count": 201, + "final_proportion": 0.8271604938271605, + "final_counts": { + "POSITIVE": 201, + "NEGATIVE": 42 + }, + "final_distribution": { + "POSITIVE": 0.8271604938271605, + "NEGATIVE": 0.1728395061728395 + } + } }, { "season_code": "202301", @@ -281629,7 +608518,7 @@ "9:00", "10:15", "YSB MARSH - Yale Science Building MARSH", - "https:\/\/map.yale.edu\/?id=1910#!m\/563700" + "https://map.yale.edu/?id=1910#!m/563700" ] ], "Wednesday": [ @@ -281637,7 +608526,7 @@ "9:00", "10:15", "YSB MARSH - Yale Science Building MARSH", - "https:\/\/map.yale.edu\/?id=1910#!m\/563700" + "https://map.yale.edu/?id=1910#!m/563700" ] ] }, @@ -281646,17 +608535,536 @@ ], "areas": [], "flags": [ - "YC Math: Stat\/Applied Math" + "YC Math: Stat/Applied Math" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "Saturday, May 6, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84860\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84860/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9978906512260437, + 0.993720293045044, + 0.996006429195404, + 0.990267813205719, + 0.9955920577049255, + 0.9984702467918396, + 0.9983786344528198, + 0.9977797865867615, + 0.9901118874549866, + 0.998746395111084, + 0.9987926483154297, + 0.9895328283309937, + 0.9988399147987366, + 0.9762150645256042, + 0.9984114170074463, + 0.9843759536743164, + 0.9812357425689697, + 0.7275888919830322, + 0.676975667476654, + 0.9987758994102478, + 0.9891848564147949, + 0.9988133907318115, + 0.9982825517654419, + 0.9988001585006714, + 0.9981033802032471, + 0.9972225427627563, + 0.9843387007713318, + 0.9984257221221924, + 0.9986711740493774, + 0.9982296824455261, + 0.9903454184532166, + 0.9984523057937622, + 0.9987121820449829, + 0.9946350455284119, + 0.998056948184967, + 0.9988117218017578, + 0.5518556237220764, + 0.845335841178894, + 0.9968059062957764, + 0.9994698166847229, + 0.9986639022827148, + 0.9987917542457581, + 0.997908353805542, + 0.9902006983757019, + 0.9988859295845032, + 0.9980356097221375, + 0.9989044666290283, + 0.9968247413635254, + 0.9961389899253845, + 0.9987260699272156, + 0.9988598823547363, + 0.9987413287162781, + 0.9871426820755005, + 0.9940432906150818, + 0.9930135607719421, + 0.9981316924095154, + 0.9938886165618896, + 0.9984513521194458, + 0.9940329194068909, + 0.9265551567077637, + 0.9914608001708984, + 0.9969028830528259, + 0.7013508677482605, + 0.913546621799469, + 0.9982837438583374, + 0.9172576069831848, + 0.9987185001373291, + 0.9172576069831848, + 0.9970593452453613, + 0.998630702495575, + 0.997184693813324, + 0.998516857624054, + 0.9985306262969971, + 0.9861289858818054 + ], + "sentiment_counts": { + "POSITIVE": 66, + "NEGATIVE": 8 + }, + "sentiment_distribution": { + "POSITIVE": 0.8918918918918919, + "NEGATIVE": 0.10810810810810811 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8918918918918919 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989023208618164, + 0.9989226460456848, + 0.9986459612846375, + 0.9987868666648865, + 0.9945178627967834, + 0.9988812804222107, + 0.9989181756973267, + 0.998868465423584, + 0.9989344477653503, + 0.9989176988601685, + 0.9935043454170227, + 0.9986836314201355, + 0.9987336993217468, + 0.9984686970710754, + 0.9965289235115051, + 0.9990172386169434, + 0.9987967014312744, + 0.9977701902389526, + 0.9915995597839355, + 0.9987660646438599, + 0.9989004135131836, + 0.9989166259765625, + 0.9988707900047302, + 0.9989268183708191, + 0.9985841512680054, + 0.9987560510635376, + 0.9988716244697571, + 0.9988779425621033, + 0.9987711310386658, + 0.9947894811630249, + 0.9987176656723022, + 0.9937103986740112, + 0.9988434314727783, + 0.9989005327224731, + 0.9992116689682007, + 0.9989534616470337, + 0.998915433883667, + 0.9988735318183899, + 0.9988539218902588, + 0.9988810420036316, + 0.9989437460899353, + 0.998898983001709, + 0.9988405108451843, + 0.9931796789169312, + 0.9993836879730225, + 0.9972364902496338, + 0.9988930821418762, + 0.9988157749176025, + 0.9974785447120667, + 0.9987214207649231, + 0.9987448453903198, + 0.9988099336624146, + 0.9973133206367493, + 0.9981220364570618, + 0.9985979199409485, + 0.9977694749832153, + 0.9988324046134949, + 0.9989142417907715, + 0.9994866847991943, + 0.9945918917655945, + 0.998930037021637, + 0.9989319443702698, + 0.9989218711853027, + 0.995695948600769, + 0.9986485838890076, + 0.9949631690979004, + 0.9988127946853638, + 0.9993879795074463 + ], + "sentiment_counts": { + "POSITIVE": 55, + "NEGATIVE": 13 + }, + "sentiment_distribution": { + "POSITIVE": 0.8088235294117647, + "NEGATIVE": 0.19117647058823528 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8088235294117647 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9967457056045532, + 0.9989044666290283, + 0.9988259673118591, + 0.9984433054924011, + 0.9993942975997925, + 0.9947958588600159, + 0.9976309537887573, + 0.9988784193992615, + 0.9988665580749512, + 0.9972983002662659, + 0.9974538683891296, + 0.9981922507286072, + 0.9980927109718323, + 0.9988670349121094, + 0.9930300116539001, + 0.9942377805709839, + 0.9988327622413635, + 0.9986553192138672, + 0.9986830353736877, + 0.9993626475334167, + 0.9920988082885742, + 0.9981922507286072, + 0.9974592328071594, + 0.9986538887023926, + 0.997117280960083, + 0.9988905787467957, + 0.9989182949066162, + 0.9988864064216614, + 0.9987311959266663, + 0.998749852180481, + 0.9988592863082886, + 0.9847151041030884, + 0.9988253712654114, + 0.997117280960083, + 0.9989325404167175, + 0.8887097835540771, + 0.988207995891571, + 0.9962841868400574, + 0.9995079040527344, + 0.9989126920700073, + 0.9988980293273926, + 0.9976673722267151, + 0.9978917241096497, + 0.9994837045669556, + 0.9982553124427795, + 0.9620825052261353, + 0.9994875192642212, + 0.9986447691917419, + 0.9973655343055725, + 0.9988548755645752, + 0.9985309839248657, + 0.9943335056304932, + 0.9989094734191895, + 0.9853620529174805, + 0.9984176158905029, + 0.997117280960083, + 0.997117280960083, + 0.9989068508148193, + 0.9988252520561218, + 0.9987307190895081, + 0.9994990825653076, + 0.9987962245941162, + 0.997117280960083, + 0.9914271831512451, + 0.9968321919441223, + 0.997117280960083, + 0.997654139995575, + 0.9988364577293396, + 0.9831274747848511, + 0.9984330534934998, + 0.9990008473396301, + 0.9982553124427795, + 0.9988671541213989, + 0.9988991022109985, + 0.9988682270050049, + 0.9980016350746155, + 0.9960177540779114, + 0.998900294303894, + 0.9989257454872131, + 0.997366726398468, + 0.9987867474555969, + 0.9985904097557068, + 0.9984652996063232, + 0.9982323050498962 + ], + "sentiment_counts": { + "NEGATIVE": 20, + "POSITIVE": 64 + }, + "sentiment_distribution": { + "NEGATIVE": 0.23809523809523808, + "POSITIVE": 0.7619047619047619 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7619047619047619 + ] + }, + "final_label": "POSITIVE", + "final_count": 185, + "final_proportion": 0.8185840707964602, + "final_counts": { + "POSITIVE": 185, + "NEGATIVE": 41 + }, + "final_distribution": { + "POSITIVE": 0.8185840707964602, + "NEGATIVE": 0.18141592920353983 + } + } }, { "season_code": "202301", @@ -281696,7 +609104,7 @@ "13:00", "14:15", "HLH17 113 - 17 Hillhouse Avenue 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Wednesday": [ @@ -281704,7 +609112,7 @@ "13:00", "14:15", "HLH17 113 - 17 Hillhouse Avenue 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -281718,10 +609126,127 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84861\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84861/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9980587363243103, + 0.9984630346298218, + 0.9982831478118896, + 0.9987316727638245, + 0.9981970191001892, + 0.9985663294792175, + 0.9988743662834167, + 0.9988284707069397 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9995023012161255, + 0.98758465051651, + 0.9937825798988342, + 0.9938900470733643, + 0.9994920492172241, + 0.9892695546150208, + 0.9989323019981384, + 0.998658299446106 + ], + "sentiment_counts": { + "NEGATIVE": 5, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.625, + "POSITIVE": 0.375 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.625 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9995115995407104, + 0.9989097118377686, + 0.9964709281921387, + 0.9994955062866211, + 0.9989919066429138, + 0.9950960278511047, + 0.9872927665710449, + 0.9986440539360046, + 0.9989023208618164 + ], + "sentiment_counts": { + "NEGATIVE": 6, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.6666666666666666, + "POSITIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 0.56, + "final_counts": { + "POSITIVE": 14, + "NEGATIVE": 11 + }, + "final_distribution": { + "POSITIVE": 0.56, + "NEGATIVE": 0.44 + } + } }, { "season_code": "202301", @@ -281762,7 +609287,7 @@ "13:00", "14:15", "ML 211 - Mason Laboratory 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ], "Wednesday": [ @@ -281770,7 +609295,7 @@ "13:00", "14:15", "ML 211 - Mason Laboratory 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ] }, @@ -281784,10 +609309,279 @@ "classnotes": "", "final_exam": "Tuesday, May 9, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84865\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84865/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9992075562477112, + 0.998089611530304, + 0.9984363913536072, + 0.9986252784729004, + 0.9986042380332947, + 0.9949446320533752, + 0.9896267652511597, + 0.9654321670532227, + 0.9972080588340759, + 0.9913358688354492, + 0.9931228756904602, + 0.9943450689315796, + 0.9957340359687805, + 0.9970738887786865, + 0.7170528769493103, + 0.9987829327583313, + 0.9984796643257141, + 0.9987836480140686, + 0.9934607744216919, + 0.9939693212509155, + 0.9985232949256897, + 0.99818354845047, + 0.9987327456474304, + 0.9944283962249756, + 0.9985114932060242, + 0.9974126219749451, + 0.9965142607688904, + 0.9988309741020203, + 0.9944962859153748, + 0.9976000189781189 + ], + "sentiment_counts": { + "NEGATIVE": 4, + "POSITIVE": 26 + }, + "sentiment_distribution": { + "NEGATIVE": 0.13333333333333333, + "POSITIVE": 0.8666666666666667 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8666666666666667 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994750618934631, + 0.9986365437507629, + 0.9991826415061951, + 0.9988372921943665, + 0.9995030164718628, + 0.9989519119262695, + 0.9994860887527466, + 0.9994958639144897, + 0.9995119571685791, + 0.9980810880661011, + 0.9989181756973267, + 0.9990677237510681, + 0.9972221851348877, + 0.9987633228302002, + 0.9988532066345215, + 0.9987863898277283, + 0.9911655783653259, + 0.9995070695877075, + 0.9987841248512268, + 0.9979895353317261, + 0.9986498951911926, + 0.9986023306846619, + 0.9986366629600525, + 0.9988486766815186, + 0.9988999366760254, + 0.9970904588699341, + 0.9981324076652527, + 0.9987800717353821, + 0.9988125562667847, + 0.993904173374176, + 0.9988242983818054, + 0.9984933137893677, + 0.981683611869812, + 0.9965178966522217, + 0.9988514184951782, + 0.9981138706207275, + 0.998134434223175 + ], + "sentiment_counts": { + "NEGATIVE": 16, + "POSITIVE": 21 + }, + "sentiment_distribution": { + "NEGATIVE": 0.43243243243243246, + "POSITIVE": 0.5675675675675675 + }, + "sentiment_overall": [ + "POSITIVE", + 0.5675675675675675 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9995031356811523, + 0.9989062547683716, + 0.9984586238861084, + 0.9968724846839905, + 0.9597945213317871, + 0.9988682270050049, + 0.9995098114013672, + 0.9986429810523987, + 0.9983055591583252, + 0.9983306527137756, + 0.9978960752487183, + 0.999506950378418, + 0.9982553124427795, + 0.998826801776886, + 0.9946483969688416, + 0.9837275743484497, + 0.9995023012161255, + 0.9897374510765076, + 0.9972172975540161, + 0.9936019778251648, + 0.989325761795044, + 0.9988495111465454, + 0.9981392621994019, + 0.9992881417274475, + 0.9968299269676208, + 0.9993577599525452, + 0.9968120455741882, + 0.9887654781341553, + 0.997117280960083, + 0.9992204904556274, + 0.9698554873466492, + 0.9987173080444336, + 0.9995046854019165, + 0.999488115310669 + ], + "sentiment_counts": { + "NEGATIVE": 13, + "POSITIVE": 21 + }, + "sentiment_distribution": { + "NEGATIVE": 0.38235294117647056, + "POSITIVE": 0.6176470588235294 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6176470588235294 + ] + }, + "final_label": "POSITIVE", + "final_count": 68, + "final_proportion": 0.6732673267326733, + "final_counts": { + "NEGATIVE": 33, + "POSITIVE": 68 + }, + "final_distribution": { + "NEGATIVE": 0.32673267326732675, + "POSITIVE": 0.6732673267326733 + } + } }, { "season_code": "202301", @@ -281832,7 +609626,7 @@ "13:00", "14:15", "BASS 305 - Bass Center 305", - "https:\/\/map.yale.edu\/?id=1910#!m\/560102" + "https://map.yale.edu/?id=1910#!m/560102" ] ], "Wednesday": [ @@ -281840,7 +609634,7 @@ "13:00", "14:15", "BASS 305 - Bass Center 305", - "https:\/\/map.yale.edu\/?id=1910#!m\/560102" + "https://map.yale.edu/?id=1910#!m/560102" ] ] }, @@ -281849,7 +609643,7 @@ "Sc" ], "flags": [ - "YC CSEC: Electv intrsctn CS\/EC", + "YC CSEC: Electv intrsctn CS/EC", "YC GLHTH: Quantitative Data", "YC GLHTH: Bio & Env Influences", "YC S&DS: Data Analy Disc Area" @@ -281859,10 +609653,225 @@ "classnotes": "", "final_exam": "Tuesday, May 9, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84447\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84447/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9970090985298157, + 0.9988558292388916, + 0.998725950717926, + 0.9988222718238831, + 0.9770744442939758, + 0.9983933568000793, + 0.9988370537757874, + 0.9987943172454834, + 0.9988017082214355, + 0.9986467957496643, + 0.9897382855415344, + 0.9848324656486511, + 0.9954740405082703, + 0.9987924098968506, + 0.9988179802894592, + 0.9761744737625122, + 0.9987727999687195, + 0.9987554550170898, + 0.9943423271179199, + 0.9987911581993103, + 0.9987240433692932, + 0.9988112449645996 + ], + "sentiment_counts": { + "POSITIVE": 21, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9545454545454546, + "NEGATIVE": 0.045454545454545456 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9545454545454546 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988459348678589, + 0.9987896084785461, + 0.9988797307014465, + 0.9958059787750244, + 0.9894225001335144, + 0.9994359612464905, + 0.9979944229125977, + 0.998843789100647, + 0.9988779425621033, + 0.9994478821754456, + 0.9994989633560181, + 0.9789282083511353, + 0.9994825124740601, + 0.9988343119621277, + 0.9959596991539001, + 0.9974040389060974, + 0.9970256686210632, + 0.9994776844978333, + 0.976995587348938, + 0.9994934797286987, + 0.9966699481010437, + 0.9995031356811523, + 0.9995009899139404, + 0.9981524348258972, + 0.9974574446678162, + 0.9989149570465088 + ], + "sentiment_counts": { + "POSITIVE": 15, + "NEGATIVE": 11 + }, + "sentiment_distribution": { + "POSITIVE": 0.5769230769230769, + "NEGATIVE": 0.4230769230769231 + }, + "sentiment_overall": [ + "POSITIVE", + 0.5769230769230769 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998795747756958, + 0.9989169836044312, + 0.9988184571266174, + 0.998866081237793, + 0.999496340751648, + 0.9985204339027405, + 0.9988468885421753, + 0.9989088773727417, + 0.9988956451416016, + 0.9987001419067383, + 0.9988686442375183, + 0.998552143573761, + 0.9929360747337341, + 0.9988508224487305, + 0.9988837838172913, + 0.9963728189468384, + 0.9917622804641724, + 0.9985169768333435, + 0.9851395487785339, + 0.9989237189292908, + 0.9962260723114014, + 0.9862384796142578, + 0.9989376664161682, + 0.9995100498199463, + 0.9994924068450928, + 0.9989180564880371 + ], + "sentiment_counts": { + "POSITIVE": 20, + "NEGATIVE": 6 + }, + "sentiment_distribution": { + "POSITIVE": 0.7692307692307693, + "NEGATIVE": 0.23076923076923078 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7692307692307693 + ] + }, + "final_label": "POSITIVE", + "final_count": 56, + "final_proportion": 0.7567567567567568, + "final_counts": { + "POSITIVE": 56, + "NEGATIVE": 18 + }, + "final_distribution": { + "POSITIVE": 0.7567567567567568, + "NEGATIVE": 0.24324324324324326 + } + } }, { "season_code": "202301", @@ -281901,7 +609910,7 @@ "9:00", "10:15", "DL 220 - Dunham Laboratory 220", - "https:\/\/map.yale.edu\/?id=1910#!m\/560005" + "https://map.yale.edu/?id=1910#!m/560005" ] ], "Thursday": [ @@ -281909,7 +609918,7 @@ "9:00", "10:15", "DL 220 - Dunham Laboratory 220", - "https:\/\/map.yale.edu\/?id=1910#!m\/560005" + "https://map.yale.edu/?id=1910#!m/560005" ] ] }, @@ -281925,10 +609934,303 @@ "classnotes": "", "final_exam": "Tuesday, May 9, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84868\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84868/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9972146153450012, + 0.9986032843589783, + 0.9988893866539001, + 0.9988510608673096, + 0.9985225796699524, + 0.9983002543449402, + 0.9988652467727661, + 0.9898099899291992, + 0.9992445707321167, + 0.9920052886009216, + 0.9987414479255676, + 0.9760897159576416, + 0.9987826943397522, + 0.9984800219535828, + 0.9988573789596558, + 0.9983896017074585, + 0.998235821723938, + 0.9987473487854004, + 0.9982333183288574, + 0.9988610744476318, + 0.9989168643951416, + 0.9978594183921814, + 0.9931400418281555, + 0.9987677335739136, + 0.9986691474914551, + 0.9851320385932922, + 0.9988324046134949, + 0.9988439083099365, + 0.9966937303543091, + 0.9976420402526855, + 0.9988634586334229, + 0.9951695799827576, + 0.9932605624198914, + 0.9970062375068665, + 0.9936577677726746, + 0.9938263297080994, + 0.9859583973884583 + ], + "sentiment_counts": { + "POSITIVE": 33, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.8918918918918919, + "NEGATIVE": 0.10810810810810811 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8918918918918919 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987388253211975, + 0.9988862872123718, + 0.99892657995224, + 0.9915080070495605, + 0.9986177682876587, + 0.9987738728523254, + 0.9994997978210449, + 0.9974984526634216, + 0.9989005327224731, + 0.9958497285842896, + 0.9988101720809937, + 0.9994945526123047, + 0.9989196062088013, + 0.9989062547683716, + 0.9985552430152893, + 0.9995036125183105, + 0.9988731741905212, + 0.9988899827003479, + 0.9973130822181702, + 0.9988895058631897, + 0.9988656044006348, + 0.9974741339683533, + 0.9935489296913147, + 0.998909592628479, + 0.998802661895752, + 0.9989271759986877, + 0.9929023385047913, + 0.997677743434906, + 0.9985538125038147, + 0.9988089799880981, + 0.9987558126449585, + 0.9994994401931763, + 0.998582124710083, + 0.9989243149757385, + 0.9987986087799072, + 0.9760571718215942, + 0.9984179735183716, + 0.9987449645996094 + ], + "sentiment_counts": { + "POSITIVE": 29, + "NEGATIVE": 9 + }, + "sentiment_distribution": { + "POSITIVE": 0.7631578947368421, + "NEGATIVE": 0.23684210526315788 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7631578947368421 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.997117280960083, + 0.9989218711853027, + 0.9988334774971008, + 0.9986544847488403, + 0.9989162683486938, + 0.9985482096672058, + 0.9995025396347046, + 0.9979844093322754, + 0.9987157583236694, + 0.9988908171653748, + 0.998939573764801, + 0.9976805448532104, + 0.9989168643951416, + 0.9974602460861206, + 0.998548686504364, + 0.9994789958000183, + 0.9988813996315002, + 0.9988935589790344, + 0.9987651109695435, + 0.99853515625, + 0.997117280960083, + 0.999484658241272, + 0.9988988637924194, + 0.9989138841629028, + 0.9983429908752441, + 0.9984143972396851, + 0.9983841180801392, + 0.9988598823547363, + 0.9863346815109253, + 0.9986371397972107, + 0.9992784857749939, + 0.9994975328445435, + 0.9974592328071594, + 0.9988756775856018, + 0.994895875453949, + 0.9989218711853027, + 0.9965543746948242, + 0.9983201622962952 + ], + "sentiment_counts": { + "POSITIVE": 30, + "NEGATIVE": 8 + }, + "sentiment_distribution": { + "POSITIVE": 0.7894736842105263, + "NEGATIVE": 0.21052631578947367 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7894736842105263 + ] + }, + "final_label": "POSITIVE", + "final_count": 92, + "final_proportion": 0.8141592920353983, + "final_counts": { + "POSITIVE": 92, + "NEGATIVE": 21 + }, + "final_distribution": { + "POSITIVE": 0.8141592920353983, + "NEGATIVE": 0.18584070796460178 + } + } }, { "season_code": "202301", @@ -281991,10 +610293,515 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84872\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84872/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9974631071090698, + 0.998528003692627, + 0.9988002777099609, + 0.9970731735229492, + 0.9960675239562988, + 0.9659496545791626, + 0.997296154499054, + 0.9947056174278259, + 0.9981707334518433, + 0.9969160556793213, + 0.9977027773857117, + 0.997220516204834, + 0.9982934594154358, + 0.9980760812759399, + 0.9986336827278137, + 0.9994834661483765, + 0.9953943490982056, + 0.9984435439109802, + 0.9987187385559082, + 0.9982361793518066, + 0.9989237189292908, + 0.9988762736320496, + 0.9988179802894592, + 0.9986907839775085, + 0.998824417591095, + 0.9883784651756287, + 0.9988563060760498, + 0.9951117634773254, + 0.6081044673919678, + 0.9994456171989441, + 0.9958964586257935, + 0.9949340224266052, + 0.9985126852989197, + 0.9854406714439392, + 0.9988154172897339, + 0.9979081153869629, + 0.9988879561424255, + 0.9987120628356934, + 0.9988062381744385, + 0.9935043454170227, + 0.9932188391685486, + 0.9971977472305298, + 0.9979937076568604, + 0.9910203814506531, + 0.9984378218650818, + 0.9994788765907288, + 0.9947144389152527, + 0.9987976551055908, + 0.996218740940094, + 0.9987837672233582, + 0.995712399482727, + 0.9987578392028809, + 0.9967203736305237, + 0.9979610443115234, + 0.9961879849433899, + 0.9979415535926819, + 0.9972532391548157, + 0.9978043437004089, + 0.9960780739784241, + 0.9987622499465942, + 0.9986783862113953, + 0.9610385894775391, + 0.9982849955558777, + 0.9971428513526917, + 0.9915689826011658, + 0.9905773401260376, + 0.9972705245018005, + 0.9978042244911194, + 0.9986642599105835, + 0.9984989166259766, + 0.9982166886329651, + 0.9945003986358643, + 0.9987824559211731 + ], + "sentiment_counts": { + "POSITIVE": 68, + "NEGATIVE": 5 + }, + "sentiment_distribution": { + "POSITIVE": 0.9315068493150684, + "NEGATIVE": 0.0684931506849315 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9315068493150684 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9994578957557678, + 0.9988375306129456, + 0.9989497065544128, + 0.9987782835960388, + 0.9986897110939026, + 0.9988290667533875, + 0.9988730549812317, + 0.9988479614257812, + 0.9994533658027649, + 0.9987873435020447, + 0.9953585267066956, + 0.9992372989654541, + 0.9988511800765991, + 0.9986960291862488, + 0.9988130331039429, + 0.9988947510719299, + 0.9954173564910889, + 0.9989209175109863, + 0.9978182315826416, + 0.9922468662261963, + 0.9994290471076965, + 0.9988716244697571, + 0.9994946718215942, + 0.9994732737541199, + 0.9988227486610413, + 0.9989221096038818, + 0.9989126920700073, + 0.9988269209861755, + 0.9987199306488037, + 0.9972999691963196, + 0.998588502407074, + 0.9925130605697632, + 0.9990230798721313, + 0.9988324046134949, + 0.9986667633056641, + 0.9972211122512817, + 0.9983383417129517, + 0.995060384273529, + 0.9988479614257812, + 0.9989051818847656, + 0.9988699555397034, + 0.9994475245475769, + 0.9185613393783569, + 0.9986540079116821, + 0.9987469911575317, + 0.9981921315193176, + 0.9960364699363708, + 0.991152822971344, + 0.9988514184951782, + 0.9988914132118225, + 0.9989385008811951, + 0.9988906979560852, + 0.7822515368461609, + 0.998161256313324, + 0.9989172220230103, + 0.9994984865188599, + 0.9969452023506165, + 0.9939743876457214, + 0.9986761212348938, + 0.9989206790924072, + 0.9854721426963806, + 0.9988839030265808, + 0.9989269375801086, + 0.998724639415741, + 0.9988075494766235, + 0.998819887638092, + 0.9988993406295776, + 0.9988875985145569, + 0.9603727459907532, + 0.9988254904747009, + 0.9974647760391235, + 0.9962582588195801 + ], + "sentiment_counts": { + "NEGATIVE": 20, + "POSITIVE": 52 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2777777777777778, + "POSITIVE": 0.7222222222222222 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7222222222222222 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987584352493286, + 0.9986959099769592, + 0.9887033104896545, + 0.9984014630317688, + 0.9987432360649109, + 0.9987397789955139, + 0.9986951947212219, + 0.9978541731834412, + 0.9988546371459961, + 0.9985734224319458, + 0.9977577328681946, + 0.9988981485366821, + 0.9975903034210205, + 0.9985647797584534, + 0.9987255930900574, + 0.9968332648277283, + 0.9987712502479553, + 0.9987599849700928, + 0.9988337159156799, + 0.998817503452301, + 0.9990045428276062, + 0.997117280960083, + 0.9983184337615967, + 0.9989257454872131, + 0.9973255395889282, + 0.9793419241905212, + 0.9971292614936829, + 0.9988428354263306, + 0.9987934827804565, + 0.9974592328071594, + 0.9990301132202148, + 0.9982553124427795, + 0.999447762966156, + 0.9989218711853027, + 0.9954516291618347, + 0.9986667633056641, + 0.9982553124427795, + 0.9970216155052185, + 0.9987241625785828, + 0.9988901019096375, + 0.9988497495651245, + 0.9988411068916321, + 0.9985730648040771, + 0.9974592328071594, + 0.9979740977287292, + 0.9994804263114929, + 0.9988839030265808, + 0.9943140745162964, + 0.997117280960083, + 0.9988817572593689, + 0.9988898634910583, + 0.9988113641738892, + 0.9691007733345032, + 0.9939804077148438, + 0.9989174604415894, + 0.9995142221450806, + 0.9978918433189392, + 0.9982432126998901, + 0.9988896250724792, + 0.9989089965820312, + 0.9988692402839661, + 0.9987128973007202, + 0.9978887438774109, + 0.9988570213317871, + 0.9987962245941162, + 0.9958069324493408, + 0.9984657764434814, + 0.9989056587219238, + 0.9988873600959778, + 0.9987415671348572, + 0.9978981018066406, + 0.997117280960083, + 0.9974592328071594, + 0.9988345503807068 + ], + "sentiment_counts": { + "POSITIVE": 63, + "NEGATIVE": 11 + }, + "sentiment_distribution": { + "POSITIVE": 0.8513513513513513, + "NEGATIVE": 0.14864864864864866 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8513513513513513 + ] + }, + "final_label": "POSITIVE", + "final_count": 183, + "final_proportion": 0.8356164383561644, + "final_counts": { + "POSITIVE": 183, + "NEGATIVE": 36 + }, + "final_distribution": { + "POSITIVE": 0.8356164383561644, + "NEGATIVE": 0.1643835616438356 + } + } }, { "season_code": "202301", @@ -282034,7 +610841,7 @@ "11:35", "12:50", "HLH17 05 - 17 Hillhouse Avenue 05", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Thursday": [ @@ -282042,7 +610849,7 @@ "11:35", "12:50", "HLH17 05 - 17 Hillhouse Avenue 05", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -282051,21 +610858,172 @@ ], "areas": [], "flags": [ - "YC CSEC: Electv intrsctn CS\/EC" + "YC CSEC: Electv intrsctn CS/EC" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84876\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84876/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "Prerequisites: S&DS 361, and prior course work in probability, statistics, and data analysis (e.g. 363, 365, 220, 230, etc., equivalent courses, or equivalent research\/internship experience). \u00a0", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998568058013916, + 0.9988627433776855, + 0.9987685084342957, + 0.998754620552063, + 0.9946622252464294, + 0.9970614314079285, + 0.998843789100647, + 0.9987886548042297, + 0.9988092184066772, + 0.9988441467285156, + 0.9988687634468079, + 0.9985740184783936, + 0.9989031553268433 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998921275138855, + 0.9986627101898193, + 0.9940459728240967, + 0.9988405108451843, + 0.99858558177948, + 0.9988741278648376, + 0.9988069534301758, + 0.9988125562667847, + 0.9987701773643494, + 0.9989302754402161, + 0.99882572889328, + 0.9989101886749268, + 0.9927527904510498, + 0.9988667964935303, + 0.9988458156585693 + ], + "sentiment_counts": { + "POSITIVE": 14, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9333333333333333, + "NEGATIVE": 0.06666666666666667 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9333333333333333 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989182949066162, + 0.9980598092079163, + 0.9989286065101624, + 0.9814826846122742, + 0.9988265633583069, + 0.9986445307731628, + 0.9986481070518494, + 0.9787508249282837, + 0.9892027974128723, + 0.9988951086997986, + 0.9988790154457092, + 0.9989151954650879, + 0.9988663196563721, + 0.99888676404953 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9285714285714286, + "NEGATIVE": 0.07142857142857142 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9285714285714286 + ] + }, + "final_label": "POSITIVE", + "final_count": 40, + "final_proportion": 0.9523809523809523, + "final_counts": { + "POSITIVE": 40, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9523809523809523, + "NEGATIVE": 0.047619047619047616 + } + } + }, + { + "season_code": "202301", + "requirements": "Prerequisites: S&DS 361, and prior course work in probability, statistics, and data analysis (e.g. 363, 365, 220, 230, etc., equivalent courses, or equivalent research/internship experience). \u00a0", "description": "Statistical analysis of a variety of statistical problems using real data. Emphasis on methods of choosing data, acquiring data, assessing data quality, and the issues posed by extremely large data sets. Extensive computations using R statistical software.", "short_title": "Statistical Case Studies", "title": "Statistical Case Studies", @@ -282099,7 +611057,7 @@ "14:30", "15:45", "HLH17 101 - 17 Hillhouse Avenue 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Thursday": [ @@ -282107,7 +611065,7 @@ "14:30", "15:45", "HLH17 101 - 17 Hillhouse Avenue 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -282121,14 +611079,97 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84879\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84879/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "Prerequisites: Knowledge of linear algebra, such as MATH 222, 225; multivariate calculus, such as MATH 120;\u00a0 probability, such as S&DS 241\/541; optimization, such as S&DS 431\/631; and, comfort with proof-based exposition and problem sets.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985371828079224, + 0.9987940788269043, + 0.9988541603088379 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989295601844788, + 0.9989116191864014, + 0.9987514019012451 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988835453987122, + 0.9989364743232727, + 0.9987673759460449 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 9 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } + }, + { + "season_code": "202301", + "requirements": "Prerequisites: Knowledge of linear algebra, such as MATH 222, 225; multivariate calculus, such as MATH 120;\u00a0 probability, such as S&DS 241/541; optimization, such as S&DS 431/631; and, comfort with proof-based exposition and problem sets.", "description": "This course covers fundamental theory and algorithms in optimization, emphasizing convex optimization. Topics covered include convex analysis; duality and KKT conditions; subgradient methods; interior point methods; semidefinite programming; distributed methods; stochastic gradient methods; robust optimization; and an introduction to nonconvex optimization.\u00a0\u00a0 Applications accepted from statistics & data science, economics, engineering, and the sciences.", "short_title": "Advanced Optimization Techniques", "title": "Advanced Optimization Techniques", @@ -282162,7 +611203,7 @@ "13:00", "14:15", "HLH17 115 - 17 Hillhouse Avenue 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Thursday": [ @@ -282170,7 +611211,7 @@ "13:00", "14:15", "HLH17 115 - 17 Hillhouse Avenue 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -282182,10 +611223,107 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84882\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84882/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9955303072929382, + 0.997385561466217, + 0.9978353381156921, + 0.9985045194625854, + 0.9955816864967346 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.6, + "NEGATIVE": 0.4 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989050626754761, + 0.9988846182823181, + 0.9989317059516907, + 0.9988462924957275, + 0.9987528324127197 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9979623556137085, + 0.9989042282104492, + 0.9989215135574341, + 0.998822033405304, + 0.9969403743743896 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 0.7333333333333333, + "final_counts": { + "POSITIVE": 11, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.7333333333333333, + "NEGATIVE": 0.26666666666666666 + } + } }, { "season_code": "202301", @@ -282228,7 +611366,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -282268,10 +611434,129 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84889\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84889/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987643957138062, + 0.9985778331756592, + 0.9988828301429749, + 0.9925588369369507, + 0.9989350438117981, + 0.994193971157074, + 0.9984487295150757, + 0.9855872392654419 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989309906959534, + 0.9986926913261414, + 0.9988682270050049, + 0.9987891316413879, + 0.998936116695404, + 0.998907208442688, + 0.9988769888877869, + 0.9986261129379272, + 0.984565258026123 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985620379447937, + 0.9941062927246094, + 0.9988771080970764, + 0.9982553124427795, + 0.997588038444519, + 0.9988920092582703, + 0.9989019632339478, + 0.998927652835846, + 0.9980267882347107, + 0.9989375472068787 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 27, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 27 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -282309,7 +611594,7 @@ "9:00", "10:15", "DAVIES AUD - Davies Auditorium, Becton Ctr AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ], "Thursday": [ @@ -282317,7 +611602,7 @@ "9:00", "10:15", "DAVIES AUD - Davies Auditorium, Becton Ctr AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ] }, @@ -282331,10 +611616,459 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84843\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84843/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987346529960632, + 0.9981369972229004, + 0.9987015724182129, + 0.9985281229019165, + 0.9987096786499023, + 0.9988922476768494, + 0.998421311378479, + 0.9977315068244934, + 0.9988685846328735, + 0.9984543323516846, + 0.9987218976020813, + 0.9979469180107117, + 0.996439516544342, + 0.9987738728523254, + 0.998839795589447, + 0.9878355860710144, + 0.9985591769218445, + 0.9977102279663086, + 0.996173083782196, + 0.9988956451416016, + 0.9975608587265015, + 0.9988458156585693, + 0.9958729147911072, + 0.9980759620666504, + 0.9988898634910583, + 0.9981605410575867, + 0.9956766963005066, + 0.9984446167945862, + 0.9928118586540222, + 0.9956834316253662, + 0.9959914088249207, + 0.9892413020133972, + 0.9859601259231567, + 0.9987770915031433, + 0.9987586736679077, + 0.9737831354141235, + 0.9967265129089355, + 0.9988560676574707, + 0.9893341660499573, + 0.9983950257301331, + 0.9880862236022949, + 0.9985827207565308, + 0.9987130165100098, + 0.9988330006599426, + 0.9811796545982361, + 0.9982313513755798, + 0.9905316829681396, + 0.9914984107017517, + 0.9982101917266846, + 0.9985417127609253, + 0.9944804906845093, + 0.9977540373802185, + 0.9988530874252319, + 0.9980486631393433, + 0.9981619715690613, + 0.9983555674552917, + 0.9978352189064026, + 0.9986642599105835, + 0.9987103939056396, + 0.9921618103981018, + 0.9985709190368652, + 0.9966074228286743, + 0.9989113807678223, + 0.9986080527305603 + ], + "sentiment_counts": { + "POSITIVE": 60, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.9375, + "NEGATIVE": 0.0625 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9375 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989038705825806, + 0.999508261680603, + 0.9994884729385376, + 0.9934763312339783, + 0.9978858828544617, + 0.9989054203033447, + 0.9990965127944946, + 0.9985658526420593, + 0.9987271428108215, + 0.9986041188240051, + 0.99945467710495, + 0.9988275170326233, + 0.9987819790840149, + 0.994524359703064, + 0.9994931221008301, + 0.9988976716995239, + 0.9995054006576538, + 0.9979988932609558, + 0.9988729357719421, + 0.9992642998695374, + 0.9988709092140198, + 0.9962930083274841, + 0.9987598657608032, + 0.9969246983528137, + 0.9989169836044312, + 0.9988372921943665, + 0.9898726940155029, + 0.9981946349143982, + 0.9988558292388916, + 0.9983708262443542, + 0.99892657995224, + 0.9921728372573853, + 0.9994959831237793, + 0.9989116191864014, + 0.9859601259231567, + 0.9954739212989807, + 0.9938030242919922, + 0.9912041425704956, + 0.9988831877708435, + 0.9987753033638, + 0.9823001027107239, + 0.9986763596534729, + 0.9989018440246582, + 0.9994919300079346, + 0.9993705153465271, + 0.9972507357597351, + 0.9987794756889343, + 0.9988635778427124, + 0.9985874891281128, + 0.996692419052124, + 0.9994741082191467, + 0.9988251328468323, + 0.9981502294540405, + 0.9807484149932861, + 0.9988534450531006, + 0.9994459748268127, + 0.9988939166069031, + 0.9989137649536133, + 0.999479353427887, + 0.998689591884613, + 0.9982191920280457, + 0.9985164999961853, + 0.9797855019569397, + 0.9972833395004272, + 0.998776376247406, + 0.9989312291145325, + 0.9932211637496948 + ], + "sentiment_counts": { + "POSITIVE": 49, + "NEGATIVE": 18 + }, + "sentiment_distribution": { + "POSITIVE": 0.7313432835820896, + "NEGATIVE": 0.26865671641791045 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7313432835820896 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9799391031265259, + 0.99174964427948, + 0.9984941482543945, + 0.9984686970710754, + 0.998805046081543, + 0.9987962245941162, + 0.9982553124427795, + 0.9988722205162048, + 0.9906080961227417, + 0.9985861778259277, + 0.9987963438034058, + 0.9979409575462341, + 0.9995025396347046, + 0.9989093542098999, + 0.9987438321113586, + 0.9989035129547119, + 0.9988516569137573, + 0.9951173067092896, + 0.9986720085144043, + 0.9987157583236694, + 0.9989200830459595, + 0.9988548755645752, + 0.9990672469139099, + 0.9988829493522644, + 0.9987990856170654, + 0.9960801005363464, + 0.9960336089134216, + 0.9988904595375061, + 0.9988628625869751, + 0.9978128671646118, + 0.9987560510635376, + 0.9859601259231567, + 0.9978628754615784, + 0.9981966614723206, + 0.995908260345459, + 0.9988539218902588, + 0.9987481832504272, + 0.9988862872123718, + 0.9986334443092346, + 0.9988129138946533, + 0.9989168643951416, + 0.998927652835846, + 0.9987291693687439, + 0.9994972944259644, + 0.9976929426193237, + 0.9986701011657715, + 0.9973655343055725, + 0.9990406632423401, + 0.9984543323516846, + 0.9988968372344971, + 0.9977082014083862, + 0.998896598815918, + 0.999204695224762, + 0.997117280960083, + 0.9976240992546082, + 0.9469778537750244, + 0.9989199638366699, + 0.9985289573669434, + 0.9989259839057922, + 0.9994866847991943 + ], + "sentiment_counts": { + "POSITIVE": 46, + "NEGATIVE": 14 + }, + "sentiment_distribution": { + "POSITIVE": 0.7666666666666667, + "NEGATIVE": 0.23333333333333334 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7666666666666667 + ] + }, + "final_label": "POSITIVE", + "final_count": 155, + "final_proportion": 0.8115183246073299, + "final_counts": { + "POSITIVE": 155, + "NEGATIVE": 36 + }, + "final_distribution": { + "POSITIVE": 0.8115183246073299, + "NEGATIVE": 0.18848167539267016 + } + } }, { "season_code": "202301", @@ -282372,7 +612106,7 @@ "9:00", "10:15", "HLH17 05 - 17 Hillhouse Avenue 05", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Thursday": [ @@ -282380,7 +612114,7 @@ "9:00", "10:15", "HLH17 05 - 17 Hillhouse Avenue 05", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -282394,10 +612128,123 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84851\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84851/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988594055175781, + 0.9798864722251892, + 0.9986546039581299, + 0.9988101720809937, + 0.9989381432533264, + 0.9987616539001465, + 0.9985941052436829, + 0.9926915764808655 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9895058274269104, + 0.9986175298690796, + 0.998730480670929, + 0.9988805651664734, + 0.9983493089675903, + 0.9969614148139954, + 0.9982179999351501 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986384510993958, + 0.9988945126533508, + 0.9989105463027954, + 0.9988657236099243, + 0.9981922507286072, + 0.9988872408866882, + 0.9989227652549744, + 0.998103141784668 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 22, + "final_proportion": 0.9565217391304348, + "final_counts": { + "POSITIVE": 22, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9565217391304348, + "NEGATIVE": 0.043478260869565216 + } + } }, { "season_code": "202301", @@ -282437,7 +612284,7 @@ "14:30", "15:45", "YSB MARSH - Yale Science Building MARSH", - "https:\/\/map.yale.edu\/?id=1910#!m\/563700" + "https://map.yale.edu/?id=1910#!m/563700" ] ], "Thursday": [ @@ -282445,7 +612292,7 @@ "14:30", "15:45", "YSB MARSH - Yale Science Building MARSH", - "https:\/\/map.yale.edu\/?id=1910#!m\/563700" + "https://map.yale.edu/?id=1910#!m/563700" ] ] }, @@ -282459,10 +612306,493 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84847\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84847/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988390803337097, + 0.9313662648200989, + 0.9985993504524231, + 0.9988899827003479, + 0.9993763566017151, + 0.9988467693328857, + 0.9923166036605835, + 0.9954389929771423, + 0.9987394213676453, + 0.9954096674919128, + 0.9973886609077454, + 0.9989051818847656, + 0.9696313738822937, + 0.9988816380500793, + 0.9979748129844666, + 0.9976974129676819, + 0.9988600015640259, + 0.9985936284065247, + 0.9943304061889648, + 0.6966997981071472, + 0.9909794330596924, + 0.9987766146659851, + 0.9962397813796997, + 0.9966402053833008, + 0.9941121935844421, + 0.9988204836845398, + 0.9974930286407471, + 0.9987313151359558, + 0.9986740350723267, + 0.9973850846290588, + 0.998791515827179, + 0.9988551139831543, + 0.998920202255249, + 0.9988157749176025, + 0.9925565123558044, + 0.6966997981071472, + 0.9986429810523987, + 0.9988308548927307, + 0.8254338502883911, + 0.9951391220092773, + 0.9988755583763123, + 0.9983452558517456, + 0.9624868631362915, + 0.995354413986206, + 0.998823344707489, + 0.9976018071174622, + 0.9898678064346313, + 0.9982247948646545, + 0.9956926703453064, + 0.9980265498161316, + 0.993362545967102, + 0.9988679885864258, + 0.998910665512085, + 0.9891722202301025, + 0.998763918876648, + 0.9982233643531799, + 0.9983764886856079, + 0.9987964630126953, + 0.9972135424613953, + 0.9825941920280457, + 0.9987201690673828, + 0.9988223910331726, + 0.9918251037597656, + 0.9988749623298645, + 0.9985941052436829, + 0.9975353479385376, + 0.9952988028526306, + 0.9982408285140991, + 0.9964553117752075 + ], + "sentiment_counts": { + "POSITIVE": 62, + "NEGATIVE": 7 + }, + "sentiment_distribution": { + "POSITIVE": 0.8985507246376812, + "NEGATIVE": 0.10144927536231885 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8985507246376812 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988120794296265, + 0.9906856417655945, + 0.998322069644928, + 0.9988588094711304, + 0.9994621872901917, + 0.9988473653793335, + 0.9988729357719421, + 0.9987753033638, + 0.9929297566413879, + 0.9988870024681091, + 0.9985925555229187, + 0.9989203214645386, + 0.99891197681427, + 0.9994958639144897, + 0.9988915324211121, + 0.9989176988601685, + 0.9949889779090881, + 0.9988176226615906, + 0.9988964796066284, + 0.9994756579399109, + 0.9951633214950562, + 0.99718177318573, + 0.998890221118927, + 0.9989140033721924, + 0.993835985660553, + 0.9903426170349121, + 0.9986850619316101, + 0.9989087581634521, + 0.9937487840652466, + 0.9981314539909363, + 0.9993155002593994, + 0.9988297820091248, + 0.998791515827179, + 0.996482253074646, + 0.998907208442688, + 0.9982265830039978, + 0.9988477230072021, + 0.9994760155677795, + 0.9987025260925293, + 0.9965721368789673, + 0.997686505317688, + 0.9994988441467285, + 0.9988040924072266, + 0.9985962510108948, + 0.9978637099266052, + 0.9987891316413879, + 0.998863697052002, + 0.9989153146743774, + 0.9955337047576904, + 0.9989022016525269, + 0.9994587302207947, + 0.9970155954360962, + 0.9989181756973267, + 0.9978260397911072, + 0.9916815161705017, + 0.9983128309249878, + 0.9994958639144897, + 0.9977091550827026, + 0.9994990825653076, + 0.9976643323898315, + 0.9989014863967896, + 0.9988013505935669, + 0.999484658241272, + 0.9989088773727417, + 0.996813952922821, + 0.9988449811935425, + 0.9986633062362671, + 0.9988850951194763, + 0.9987645149230957, + 0.9988723397254944, + 0.9971765279769897, + 0.9985021352767944, + 0.9983749389648438 + ], + "sentiment_counts": { + "POSITIVE": 54, + "NEGATIVE": 19 + }, + "sentiment_distribution": { + "POSITIVE": 0.7397260273972602, + "NEGATIVE": 0.2602739726027397 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7397260273972602 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987590312957764, + 0.9957950115203857, + 0.9987393021583557, + 0.9960975646972656, + 0.9995051622390747, + 0.9984720349311829, + 0.9988909363746643, + 0.9985710382461548, + 0.9988948702812195, + 0.9989385008811951, + 0.9988910555839539, + 0.9989251494407654, + 0.99919193983078, + 0.9814485907554626, + 0.997117280960083, + 0.9987396597862244, + 0.9974592328071594, + 0.9988322854042053, + 0.9995080232620239, + 0.9986888766288757, + 0.9974592328071594, + 0.9988011121749878, + 0.9988499879837036, + 0.9988592863082886, + 0.9988529682159424, + 0.9988456964492798, + 0.9982553124427795, + 0.9981569647789001, + 0.9981942772865295, + 0.997117280960083, + 0.9986503720283508, + 0.998791515827179, + 0.9985626339912415, + 0.9985793828964233, + 0.9986091256141663, + 0.998511016368866, + 0.9495463967323303, + 0.9928285479545593, + 0.9985781908035278, + 0.9981749057769775, + 0.997712254524231, + 0.9989008903503418, + 0.9987488985061646, + 0.9989131689071655, + 0.9638811945915222, + 0.9984458088874817, + 0.9964146614074707, + 0.9993763566017151, + 0.9977746605873108, + 0.9984636306762695, + 0.9988266825675964, + 0.9989233613014221, + 0.9988744854927063, + 0.9988036155700684, + 0.9962062835693359, + 0.9970763921737671, + 0.9914073348045349, + 0.9986932873725891, + 0.9988895058631897, + 0.9988924860954285, + 0.9989135265350342, + 0.9982553124427795, + 0.997117280960083, + 0.9989099502563477, + 0.9988345503807068, + 0.9985203146934509 + ], + "sentiment_counts": { + "POSITIVE": 55, + "NEGATIVE": 11 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 171, + "final_proportion": 0.8221153846153846, + "final_counts": { + "POSITIVE": 171, + "NEGATIVE": 37 + }, + "final_distribution": { + "POSITIVE": 0.8221153846153846, + "NEGATIVE": 0.1778846153846154 + } + } }, { "season_code": "202301", @@ -282502,7 +612832,7 @@ "9:00", "10:15", "YSB MARSH - Yale Science Building MARSH", - "https:\/\/map.yale.edu\/?id=1910#!m\/563700" + "https://map.yale.edu/?id=1910#!m/563700" ] ], "Thursday": [ @@ -282510,7 +612840,7 @@ "9:00", "10:15", "YSB MARSH - Yale Science Building MARSH", - "https:\/\/map.yale.edu\/?id=1910#!m\/563700" + "https://map.yale.edu/?id=1910#!m/563700" ] ] }, @@ -282525,10 +612855,685 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84854\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84854/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9957060217857361, + 0.9983963370323181, + 0.9987702965736389, + 0.9993384480476379, + 0.995563268661499, + 0.998848557472229, + 0.998505711555481, + 0.9986794590950012, + 0.9978664517402649, + 0.9987805485725403, + 0.8332710266113281, + 0.9985344409942627, + 0.9988658428192139, + 0.9980286955833435, + 0.9988411068916321, + 0.9979686141014099, + 0.9842320680618286, + 0.9987119436264038, + 0.9986373782157898, + 0.9965710639953613, + 0.9982958436012268, + 0.99853515625, + 0.9974263310432434, + 0.9988835453987122, + 0.9995074272155762, + 0.8332710266113281, + 0.9908440709114075, + 0.9957789182662964, + 0.9978261590003967, + 0.9984598159790039, + 0.9986514449119568, + 0.9542851448059082, + 0.998741090297699, + 0.995273768901825, + 0.9976206421852112, + 0.998802661895752, + 0.9986287355422974, + 0.9981252551078796, + 0.9988033771514893, + 0.998895525932312, + 0.9979217648506165, + 0.9986355900764465, + 0.9983229041099548, + 0.9986674785614014, + 0.9983331561088562, + 0.9981325268745422, + 0.9982004165649414, + 0.9987947940826416, + 0.9988102912902832, + 0.9988331198692322, + 0.998475968837738, + 0.9988492727279663, + 0.997967541217804, + 0.998588502407074, + 0.9985595345497131, + 0.9987999200820923, + 0.9987727999687195, + 0.9926827549934387, + 0.9985735416412354, + 0.998753547668457, + 0.9988164901733398, + 0.9854896068572998, + 0.9976977705955505, + 0.9984960556030273, + 0.998335063457489, + 0.9943777918815613, + 0.9986881613731384, + 0.9970759153366089, + 0.9982156753540039, + 0.9986394047737122, + 0.9938712120056152, + 0.9969344139099121, + 0.9983464479446411, + 0.998645007610321, + 0.9943760633468628, + 0.9982286095619202, + 0.9926155805587769, + 0.9981200098991394, + 0.9986714124679565, + 0.9985120892524719, + 0.9984087347984314, + 0.9988582134246826, + 0.9987971782684326, + 0.9859678745269775, + 0.9982370138168335, + 0.9975293278694153, + 0.9969696402549744, + 0.9981050491333008, + 0.9987435936927795, + 0.9988685846328735, + 0.9986504912376404, + 0.9986410737037659, + 0.8332710266113281, + 0.998822033405304, + 0.9979312419891357, + 0.9989093542098999, + 0.9981157779693604, + 0.9985456466674805, + 0.99813312292099, + 0.9975791573524475, + 0.9988284707069397, + 0.9988631010055542 + ], + "sentiment_counts": { + "POSITIVE": 94, + "NEGATIVE": 8 + }, + "sentiment_distribution": { + "POSITIVE": 0.9215686274509803, + "NEGATIVE": 0.0784313725490196 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9215686274509803 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.997785210609436, + 0.9988498687744141, + 0.9985697269439697, + 0.998359739780426, + 0.9928559064865112, + 0.9988481998443604, + 0.9916354417800903, + 0.9995044469833374, + 0.9987149238586426, + 0.9989234805107117, + 0.9989116191864014, + 0.9989184141159058, + 0.9987666606903076, + 0.9987647533416748, + 0.9988968372344971, + 0.9994920492172241, + 0.9989238381385803, + 0.9994913339614868, + 0.9994827508926392, + 0.9982263445854187, + 0.9995081424713135, + 0.994878888130188, + 0.9989320635795593, + 0.999496340751648, + 0.9900509715080261, + 0.9988180994987488, + 0.9984726309776306, + 0.9989206790924072, + 0.9987354874610901, + 0.9994760155677795, + 0.9988973140716553, + 0.9989012479782104, + 0.9988056421279907, + 0.998356282711029, + 0.9989137649536133, + 0.9986463189125061, + 0.9989293217658997, + 0.9973716735839844, + 0.9988036155700684, + 0.9986655712127686, + 0.9908451437950134, + 0.9982427358627319, + 0.9989362359046936, + 0.995399534702301, + 0.998257577419281, + 0.9987540245056152, + 0.9943718910217285, + 0.9832941293716431, + 0.9994181394577026, + 0.9939607381820679, + 0.9986636638641357, + 0.9986292123794556, + 0.9869707822799683, + 0.9953317046165466, + 0.9986482262611389, + 0.9954794645309448, + 0.9988459348678589, + 0.9851312041282654, + 0.9994962215423584, + 0.9980888962745667, + 0.9985330104827881, + 0.9980475902557373, + 0.9986332058906555, + 0.9986251592636108, + 0.9988232254981995, + 0.9956852197647095, + 0.9989041090011597, + 0.9987026453018188, + 0.9895289540290833, + 0.9982047080993652, + 0.9983447790145874, + 0.998909592628479, + 0.9987529516220093, + 0.998927652835846, + 0.9965546131134033, + 0.9988870024681091, + 0.998874843120575, + 0.9986299276351929, + 0.9986182451248169, + 0.9988904595375061, + 0.9982571005821228, + 0.9983726143836975, + 0.9987938404083252, + 0.9993858337402344, + 0.9985598921775818, + 0.994134247303009, + 0.9985162615776062, + 0.9984220266342163, + 0.9877961874008179, + 0.9989056587219238, + 0.9971858859062195, + 0.9894683957099915, + 0.9989056587219238, + 0.995390772819519, + 0.9988178610801697, + 0.9988706707954407, + 0.9987236857414246, + 0.9987381100654602, + 0.9989364743232727, + 0.9972062706947327, + 0.9988799691200256 + ], + "sentiment_counts": { + "NEGATIVE": 22, + "POSITIVE": 79 + }, + "sentiment_distribution": { + "NEGATIVE": 0.21782178217821782, + "POSITIVE": 0.7821782178217822 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7821782178217822 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988545179367065, + 0.9987943172454834, + 0.9994895458221436, + 0.9955366849899292, + 0.9937028288841248, + 0.9988535642623901, + 0.9994581341743469, + 0.9895998239517212, + 0.9974656105041504, + 0.700718104839325, + 0.9988890290260315, + 0.9995052814483643, + 0.998842179775238, + 0.9988429546356201, + 0.9988638162612915, + 0.9983245730400085, + 0.9989330172538757, + 0.9987275004386902, + 0.9987685084342957, + 0.9988576173782349, + 0.9953336119651794, + 0.9989141225814819, + 0.9989148378372192, + 0.9995099306106567, + 0.9960653185844421, + 0.9987586736679077, + 0.9983124732971191, + 0.9987994432449341, + 0.9989162683486938, + 0.995817244052887, + 0.9989250302314758, + 0.9974592328071594, + 0.997117280960083, + 0.9986811280250549, + 0.9988783001899719, + 0.99854576587677, + 0.9989367127418518, + 0.9994781613349915, + 0.9986039996147156, + 0.9987154006958008, + 0.999152421951294, + 0.9977813363075256, + 0.9988958835601807, + 0.9988234639167786, + 0.9978014826774597, + 0.9900681972503662, + 0.9983722567558289, + 0.9987381100654602, + 0.9994654059410095, + 0.9960653185844421, + 0.9782708287239075, + 0.9938364624977112, + 0.997117280960083, + 0.9987514019012451, + 0.9982553124427795, + 0.9983006119728088, + 0.9987483024597168, + 0.9960015416145325, + 0.9991791844367981, + 0.6829744577407837, + 0.9988372921943665, + 0.9994248151779175, + 0.9946631193161011, + 0.9955321550369263, + 0.9987132549285889, + 0.9977285265922546, + 0.9988968372344971, + 0.9963952898979187, + 0.9988008737564087, + 0.998875081539154, + 0.9979496598243713, + 0.9988853335380554, + 0.9989013671875, + 0.9984482526779175, + 0.9989057779312134, + 0.9915626645088196, + 0.9987432360649109, + 0.9988924860954285, + 0.9989084005355835, + 0.9988665580749512, + 0.9988929629325867, + 0.9988725781440735, + 0.9988448619842529, + 0.9910309314727783, + 0.996421217918396, + 0.9987500905990601, + 0.9975625276565552, + 0.9984638690948486, + 0.9962217807769775, + 0.9988784193992615, + 0.9987278580665588, + 0.9989045858383179, + 0.9989256262779236, + 0.9988155364990234, + 0.9988860487937927, + 0.9988576173782349, + 0.9986879229545593, + 0.9988355040550232, + 0.998835027217865, + 0.9988396763801575, + 0.9989180564880371 + ], + "sentiment_counts": { + "POSITIVE": 83, + "NEGATIVE": 18 + }, + "sentiment_distribution": { + "POSITIVE": 0.8217821782178217, + "NEGATIVE": 0.1782178217821782 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8217821782178217 + ] + }, + "final_label": "POSITIVE", + "final_count": 256, + "final_proportion": 0.8421052631578947, + "final_counts": { + "POSITIVE": 256, + "NEGATIVE": 48 + }, + "final_distribution": { + "POSITIVE": 0.8421052631578947, + "NEGATIVE": 0.15789473684210525 + } + } }, { "season_code": "202301", @@ -282590,10 +613595,563 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84854\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84854/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9931656718254089, + 0.9932988882064819, + 0.9987340569496155, + 0.9984560012817383, + 0.9351113438606262, + 0.9924337863922119, + 0.9969362020492554, + 0.9842998385429382, + 0.9890410304069519, + 0.9831171035766602, + 0.9985718727111816, + 0.998722493648529, + 0.9979192614555359, + 0.9895251989364624, + 0.9966191053390503, + 0.998703122138977, + 0.998903751373291, + 0.9987000226974487, + 0.9962873458862305, + 0.9985287189483643, + 0.9924337863922119, + 0.9988613128662109, + 0.9985890984535217, + 0.998857855796814, + 0.9987618923187256, + 0.9969792366027832, + 0.99813312292099, + 0.9994199275970459, + 0.9921742677688599, + 0.9949508905410767, + 0.998359739780426, + 0.9988909363746643, + 0.998680055141449, + 0.9994027614593506, + 0.9987855553627014, + 0.9611027836799622, + 0.9958505630493164, + 0.998809814453125, + 0.9889119863510132, + 0.9988960027694702, + 0.9987082481384277, + 0.9695665240287781, + 0.9985337257385254, + 0.9975053668022156, + 0.9919496774673462, + 0.9876385927200317, + 0.9784610867500305, + 0.9913018941879272, + 0.9983415603637695, + 0.958283007144928, + 0.952523410320282, + 0.998801589012146, + 0.9966922998428345, + 0.9957492351531982, + 0.9989093542098999, + 0.9984182119369507, + 0.9988719820976257, + 0.9831021428108215, + 0.9983275532722473, + 0.9988529682159424, + 0.996702253818512, + 0.9989303946495056, + 0.8332710266113281, + 0.9988238215446472, + 0.9988293051719666, + 0.8332710266113281, + 0.9989019632339478, + 0.9695665240287781, + 0.9987363219261169, + 0.9973793029785156, + 0.9878736138343811, + 0.9984530210494995, + 0.9984629154205322, + 0.9988566637039185, + 0.9984999895095825, + 0.9988388419151306, + 0.9983034133911133, + 0.9984729886054993, + 0.9956848621368408, + 0.9979689717292786 + ], + "sentiment_counts": { + "POSITIVE": 74, + "NEGATIVE": 6 + }, + "sentiment_distribution": { + "POSITIVE": 0.925, + "NEGATIVE": 0.075 + }, + "sentiment_overall": [ + "POSITIVE", + 0.925 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989067316055298, + 0.9855768084526062, + 0.9987120628356934, + 0.9994019269943237, + 0.9987305998802185, + 0.9985424280166626, + 0.998607337474823, + 0.9973548650741577, + 0.9986602067947388, + 0.9986363053321838, + 0.9985314607620239, + 0.9886743426322937, + 0.9911922812461853, + 0.9995009899139404, + 0.9966233968734741, + 0.9989211559295654, + 0.9989374279975891, + 0.9986310601234436, + 0.9976099729537964, + 0.9972994923591614, + 0.9965173006057739, + 0.9986079335212708, + 0.9989364743232727, + 0.998881995677948, + 0.9983853101730347, + 0.9950042366981506, + 0.998893678188324, + 0.9994729161262512, + 0.9863829612731934, + 0.949722170829773, + 0.9994982481002808, + 0.9983497858047485, + 0.9994617104530334, + 0.9363119602203369, + 0.9994139671325684, + 0.9994825124740601, + 0.9994945526123047, + 0.9987611770629883, + 0.9986667633056641, + 0.9988341927528381, + 0.999504804611206, + 0.9133415222167969, + 0.9808903932571411, + 0.9994889497756958, + 0.9988601207733154, + 0.998789370059967, + 0.9944722056388855, + 0.9977430105209351, + 0.9964725375175476, + 0.9986289739608765, + 0.9988250136375427, + 0.9980335831642151, + 0.9985361099243164, + 0.9982720613479614, + 0.9994823932647705, + 0.998890221118927, + 0.9988840222358704, + 0.9736230969429016, + 0.9867772459983826, + 0.9988879561424255, + 0.9988341927528381, + 0.9987818598747253, + 0.9980296492576599, + 0.997580885887146, + 0.9989101886749268, + 0.9977694749832153, + 0.9988433122634888, + 0.998656153678894, + 0.9975234866142273, + 0.9955281615257263, + 0.9946677684783936, + 0.9977739453315735, + 0.9987794756889343, + 0.9989192485809326, + 0.9988958835601807, + 0.9988642930984497, + 0.9988322854042053, + 0.9988855719566345 + ], + "sentiment_counts": { + "POSITIVE": 52, + "NEGATIVE": 26 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984531402587891, + 0.9982628226280212, + 0.9987484216690063, + 0.997117280960083, + 0.9974592328071594, + 0.9988393187522888, + 0.9981922507286072, + 0.9978984594345093, + 0.9982463121414185, + 0.9820570945739746, + 0.9987094402313232, + 0.998832643032074, + 0.9983409643173218, + 0.9987327456474304, + 0.9954245686531067, + 0.9980598092079163, + 0.9980734586715698, + 0.9981852173805237, + 0.9989193677902222, + 0.9988154172897339, + 0.9982572197914124, + 0.9988023042678833, + 0.9989001750946045, + 0.9988429546356201, + 0.9908897280693054, + 0.9988962411880493, + 0.9988018274307251, + 0.9989284873008728, + 0.9983810186386108, + 0.9988238215446472, + 0.9954760670661926, + 0.9922966361045837, + 0.9983787536621094, + 0.998870313167572, + 0.9988504648208618, + 0.9988682270050049, + 0.9987707734107971, + 0.9983308911323547, + 0.9992780089378357, + 0.9994940757751465, + 0.994709849357605, + 0.9936606287956238, + 0.997117280960083, + 0.9986667633056641, + 0.9964948296546936, + 0.9988594055175781, + 0.9982014894485474, + 0.9990482926368713, + 0.997892439365387, + 0.998875081539154, + 0.9985576272010803, + 0.9988738894462585, + 0.9988788962364197, + 0.9989386200904846, + 0.9974592328071594, + 0.9986168146133423, + 0.9988872408866882, + 0.9981604218482971, + 0.9863064289093018, + 0.9987984895706177, + 0.9987689852714539, + 0.9989162683486938, + 0.9987775683403015, + 0.9987125396728516, + 0.9988986253738403, + 0.998627781867981, + 0.9989244341850281, + 0.9964451193809509, + 0.9982346296310425, + 0.9988061189651489, + 0.9987509250640869, + 0.9946428537368774, + 0.9974592328071594, + 0.9974592328071594, + 0.9987552165985107, + 0.9987506866455078, + 0.9994992017745972, + 0.9909997582435608, + 0.9981922507286072, + 0.9988752007484436, + 0.9988277554512024, + 0.9960544109344482, + 0.998913049697876, + 0.9988613128662109, + 0.9988376498222351 + ], + "sentiment_counts": { + "POSITIVE": 75, + "NEGATIVE": 10 + }, + "sentiment_distribution": { + "POSITIVE": 0.8823529411764706, + "NEGATIVE": 0.11764705882352941 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8823529411764706 + ] + }, + "final_label": "POSITIVE", + "final_count": 201, + "final_proportion": 0.8271604938271605, + "final_counts": { + "POSITIVE": 201, + "NEGATIVE": 42 + }, + "final_distribution": { + "POSITIVE": 0.8271604938271605, + "NEGATIVE": 0.1728395061728395 + } + } }, { "season_code": "202301", @@ -282632,7 +614190,7 @@ "9:00", "10:15", "YSB MARSH - Yale Science Building MARSH", - "https:\/\/map.yale.edu\/?id=1910#!m\/563700" + "https://map.yale.edu/?id=1910#!m/563700" ] ], "Wednesday": [ @@ -282640,24 +614198,543 @@ "9:00", "10:15", "YSB MARSH - Yale Science Building MARSH", - "https:\/\/map.yale.edu\/?id=1910#!m\/563700" - ] - ] - }, - "skills": [], - "areas": [], - "flags": [ - "YC Math: Stat\/Applied Math" - ], - "regnotes": "", - "rp_attr": "", - "classnotes": "", - "final_exam": "", - "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84860\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "https://map.yale.edu/?id=1910#!m/563700" + ] + ] + }, + "skills": [], + "areas": [], + "flags": [ + "YC Math: Stat/Applied Math" + ], + "regnotes": "", + "rp_attr": "", + "classnotes": "", + "final_exam": "", + "course_home_url": "", + "syllabus_url": "https://yale.instructure.com/courses/84860/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9978906512260437, + 0.993720293045044, + 0.996006429195404, + 0.990267813205719, + 0.9955920577049255, + 0.9984702467918396, + 0.9983786344528198, + 0.9977797865867615, + 0.9901118874549866, + 0.998746395111084, + 0.9987926483154297, + 0.9895328283309937, + 0.9988399147987366, + 0.9762150645256042, + 0.9984114170074463, + 0.9843759536743164, + 0.9812357425689697, + 0.7275888919830322, + 0.676975667476654, + 0.9987758994102478, + 0.9891848564147949, + 0.9988133907318115, + 0.9982825517654419, + 0.9988001585006714, + 0.9981033802032471, + 0.9972225427627563, + 0.9843387007713318, + 0.9984257221221924, + 0.9986711740493774, + 0.9982296824455261, + 0.9903454184532166, + 0.9984523057937622, + 0.9987121820449829, + 0.9946350455284119, + 0.998056948184967, + 0.9988117218017578, + 0.5518556237220764, + 0.845335841178894, + 0.9968059062957764, + 0.9994698166847229, + 0.9986639022827148, + 0.9987917542457581, + 0.997908353805542, + 0.9902006983757019, + 0.9988859295845032, + 0.9980356097221375, + 0.9989044666290283, + 0.9968247413635254, + 0.9961389899253845, + 0.9987260699272156, + 0.9988598823547363, + 0.9987413287162781, + 0.9871426820755005, + 0.9940432906150818, + 0.9930135607719421, + 0.9981316924095154, + 0.9938886165618896, + 0.9984513521194458, + 0.9940329194068909, + 0.9265551567077637, + 0.9914608001708984, + 0.9969028830528259, + 0.7013508677482605, + 0.913546621799469, + 0.9982837438583374, + 0.9172576069831848, + 0.9987185001373291, + 0.9172576069831848, + 0.9970593452453613, + 0.998630702495575, + 0.997184693813324, + 0.998516857624054, + 0.9985306262969971, + 0.9861289858818054 + ], + "sentiment_counts": { + "POSITIVE": 66, + "NEGATIVE": 8 + }, + "sentiment_distribution": { + "POSITIVE": 0.8918918918918919, + "NEGATIVE": 0.10810810810810811 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8918918918918919 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989023208618164, + 0.9989226460456848, + 0.9986459612846375, + 0.9987868666648865, + 0.9945178627967834, + 0.9988812804222107, + 0.9989181756973267, + 0.998868465423584, + 0.9989344477653503, + 0.9989176988601685, + 0.9935043454170227, + 0.9986836314201355, + 0.9987336993217468, + 0.9984686970710754, + 0.9965289235115051, + 0.9990172386169434, + 0.9987967014312744, + 0.9977701902389526, + 0.9915995597839355, + 0.9987660646438599, + 0.9989004135131836, + 0.9989166259765625, + 0.9988707900047302, + 0.9989268183708191, + 0.9985841512680054, + 0.9987560510635376, + 0.9988716244697571, + 0.9988779425621033, + 0.9987711310386658, + 0.9947894811630249, + 0.9987176656723022, + 0.9937103986740112, + 0.9988434314727783, + 0.9989005327224731, + 0.9992116689682007, + 0.9989534616470337, + 0.998915433883667, + 0.9988735318183899, + 0.9988539218902588, + 0.9988810420036316, + 0.9989437460899353, + 0.998898983001709, + 0.9988405108451843, + 0.9931796789169312, + 0.9993836879730225, + 0.9972364902496338, + 0.9988930821418762, + 0.9988157749176025, + 0.9974785447120667, + 0.9987214207649231, + 0.9987448453903198, + 0.9988099336624146, + 0.9973133206367493, + 0.9981220364570618, + 0.9985979199409485, + 0.9977694749832153, + 0.9988324046134949, + 0.9989142417907715, + 0.9994866847991943, + 0.9945918917655945, + 0.998930037021637, + 0.9989319443702698, + 0.9989218711853027, + 0.995695948600769, + 0.9986485838890076, + 0.9949631690979004, + 0.9988127946853638, + 0.9993879795074463 + ], + "sentiment_counts": { + "POSITIVE": 55, + "NEGATIVE": 13 + }, + "sentiment_distribution": { + "POSITIVE": 0.8088235294117647, + "NEGATIVE": 0.19117647058823528 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8088235294117647 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9967457056045532, + 0.9989044666290283, + 0.9988259673118591, + 0.9984433054924011, + 0.9993942975997925, + 0.9947958588600159, + 0.9976309537887573, + 0.9988784193992615, + 0.9988665580749512, + 0.9972983002662659, + 0.9974538683891296, + 0.9981922507286072, + 0.9980927109718323, + 0.9988670349121094, + 0.9930300116539001, + 0.9942377805709839, + 0.9988327622413635, + 0.9986553192138672, + 0.9986830353736877, + 0.9993626475334167, + 0.9920988082885742, + 0.9981922507286072, + 0.9974592328071594, + 0.9986538887023926, + 0.997117280960083, + 0.9988905787467957, + 0.9989182949066162, + 0.9988864064216614, + 0.9987311959266663, + 0.998749852180481, + 0.9988592863082886, + 0.9847151041030884, + 0.9988253712654114, + 0.997117280960083, + 0.9989325404167175, + 0.8887097835540771, + 0.988207995891571, + 0.9962841868400574, + 0.9995079040527344, + 0.9989126920700073, + 0.9988980293273926, + 0.9976673722267151, + 0.9978917241096497, + 0.9994837045669556, + 0.9982553124427795, + 0.9620825052261353, + 0.9994875192642212, + 0.9986447691917419, + 0.9973655343055725, + 0.9988548755645752, + 0.9985309839248657, + 0.9943335056304932, + 0.9989094734191895, + 0.9853620529174805, + 0.9984176158905029, + 0.997117280960083, + 0.997117280960083, + 0.9989068508148193, + 0.9988252520561218, + 0.9987307190895081, + 0.9994990825653076, + 0.9987962245941162, + 0.997117280960083, + 0.9914271831512451, + 0.9968321919441223, + 0.997117280960083, + 0.997654139995575, + 0.9988364577293396, + 0.9831274747848511, + 0.9984330534934998, + 0.9990008473396301, + 0.9982553124427795, + 0.9988671541213989, + 0.9988991022109985, + 0.9988682270050049, + 0.9980016350746155, + 0.9960177540779114, + 0.998900294303894, + 0.9989257454872131, + 0.997366726398468, + 0.9987867474555969, + 0.9985904097557068, + 0.9984652996063232, + 0.9982323050498962 + ], + "sentiment_counts": { + "NEGATIVE": 20, + "POSITIVE": 64 + }, + "sentiment_distribution": { + "NEGATIVE": 0.23809523809523808, + "POSITIVE": 0.7619047619047619 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7619047619047619 + ] + }, + "final_label": "POSITIVE", + "final_count": 185, + "final_proportion": 0.8185840707964602, + "final_counts": { + "POSITIVE": 185, + "NEGATIVE": 41 + }, + "final_distribution": { + "POSITIVE": 0.8185840707964602, + "NEGATIVE": 0.18141592920353983 + } + } }, { "season_code": "202301", @@ -282698,7 +614775,7 @@ "13:00", "14:15", "ML 211 - Mason Laboratory 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ], "Wednesday": [ @@ -282706,7 +614783,7 @@ "13:00", "14:15", "ML 211 - Mason Laboratory 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ] }, @@ -282718,10 +614795,279 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84865\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84865/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9992075562477112, + 0.998089611530304, + 0.9984363913536072, + 0.9986252784729004, + 0.9986042380332947, + 0.9949446320533752, + 0.9896267652511597, + 0.9654321670532227, + 0.9972080588340759, + 0.9913358688354492, + 0.9931228756904602, + 0.9943450689315796, + 0.9957340359687805, + 0.9970738887786865, + 0.7170528769493103, + 0.9987829327583313, + 0.9984796643257141, + 0.9987836480140686, + 0.9934607744216919, + 0.9939693212509155, + 0.9985232949256897, + 0.99818354845047, + 0.9987327456474304, + 0.9944283962249756, + 0.9985114932060242, + 0.9974126219749451, + 0.9965142607688904, + 0.9988309741020203, + 0.9944962859153748, + 0.9976000189781189 + ], + "sentiment_counts": { + "NEGATIVE": 4, + "POSITIVE": 26 + }, + "sentiment_distribution": { + "NEGATIVE": 0.13333333333333333, + "POSITIVE": 0.8666666666666667 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8666666666666667 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994750618934631, + 0.9986365437507629, + 0.9991826415061951, + 0.9988372921943665, + 0.9995030164718628, + 0.9989519119262695, + 0.9994860887527466, + 0.9994958639144897, + 0.9995119571685791, + 0.9980810880661011, + 0.9989181756973267, + 0.9990677237510681, + 0.9972221851348877, + 0.9987633228302002, + 0.9988532066345215, + 0.9987863898277283, + 0.9911655783653259, + 0.9995070695877075, + 0.9987841248512268, + 0.9979895353317261, + 0.9986498951911926, + 0.9986023306846619, + 0.9986366629600525, + 0.9988486766815186, + 0.9988999366760254, + 0.9970904588699341, + 0.9981324076652527, + 0.9987800717353821, + 0.9988125562667847, + 0.993904173374176, + 0.9988242983818054, + 0.9984933137893677, + 0.981683611869812, + 0.9965178966522217, + 0.9988514184951782, + 0.9981138706207275, + 0.998134434223175 + ], + "sentiment_counts": { + "NEGATIVE": 16, + "POSITIVE": 21 + }, + "sentiment_distribution": { + "NEGATIVE": 0.43243243243243246, + "POSITIVE": 0.5675675675675675 + }, + "sentiment_overall": [ + "POSITIVE", + 0.5675675675675675 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9995031356811523, + 0.9989062547683716, + 0.9984586238861084, + 0.9968724846839905, + 0.9597945213317871, + 0.9988682270050049, + 0.9995098114013672, + 0.9986429810523987, + 0.9983055591583252, + 0.9983306527137756, + 0.9978960752487183, + 0.999506950378418, + 0.9982553124427795, + 0.998826801776886, + 0.9946483969688416, + 0.9837275743484497, + 0.9995023012161255, + 0.9897374510765076, + 0.9972172975540161, + 0.9936019778251648, + 0.989325761795044, + 0.9988495111465454, + 0.9981392621994019, + 0.9992881417274475, + 0.9968299269676208, + 0.9993577599525452, + 0.9968120455741882, + 0.9887654781341553, + 0.997117280960083, + 0.9992204904556274, + 0.9698554873466492, + 0.9987173080444336, + 0.9995046854019165, + 0.999488115310669 + ], + "sentiment_counts": { + "NEGATIVE": 13, + "POSITIVE": 21 + }, + "sentiment_distribution": { + "NEGATIVE": 0.38235294117647056, + "POSITIVE": 0.6176470588235294 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6176470588235294 + ] + }, + "final_label": "POSITIVE", + "final_count": 68, + "final_proportion": 0.6732673267326733, + "final_counts": { + "NEGATIVE": 33, + "POSITIVE": 68 + }, + "final_distribution": { + "NEGATIVE": 0.32673267326732675, + "POSITIVE": 0.6732673267326733 + } + } }, { "season_code": "202301", @@ -282761,7 +615107,7 @@ "13:00", "14:15", "HLH17 113 - 17 Hillhouse Avenue 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Wednesday": [ @@ -282769,7 +615115,7 @@ "13:00", "14:15", "HLH17 113 - 17 Hillhouse Avenue 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -282783,15 +615129,132 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84861\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84861/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "", - "description": "An introduction to the analysis of multivariate data. Topics include principal components analysis, factor analysis, cluster analysis (hierarchical clustering, k-means), discriminant analysis, multidimensional scaling, and structural equations modeling. Emphasis on practical application of multivariate techniques to a variety of examples in the social sciences. Students complete extensive computer work using either SAS or SPSS. Prerequisites: knowledge of basic inferential procedures, experience with linear models (regression and ANOVA). Experience with some statistical package and\/or familiarity with matrix notation is helpful but not required.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9980587363243103, + 0.9984630346298218, + 0.9982831478118896, + 0.9987316727638245, + 0.9981970191001892, + 0.9985663294792175, + 0.9988743662834167, + 0.9988284707069397 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9995023012161255, + 0.98758465051651, + 0.9937825798988342, + 0.9938900470733643, + 0.9994920492172241, + 0.9892695546150208, + 0.9989323019981384, + 0.998658299446106 + ], + "sentiment_counts": { + "NEGATIVE": 5, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.625, + "POSITIVE": 0.375 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.625 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9995115995407104, + 0.9989097118377686, + 0.9964709281921387, + 0.9994955062866211, + 0.9989919066429138, + 0.9950960278511047, + 0.9872927665710449, + 0.9986440539360046, + 0.9989023208618164 + ], + "sentiment_counts": { + "NEGATIVE": 6, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.6666666666666666, + "POSITIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 0.56, + "final_counts": { + "POSITIVE": 14, + "NEGATIVE": 11 + }, + "final_distribution": { + "POSITIVE": 0.56, + "NEGATIVE": 0.44 + } + } + }, + { + "season_code": "202301", + "requirements": "", + "description": "An introduction to the analysis of multivariate data. Topics include principal components analysis, factor analysis, cluster analysis (hierarchical clustering, k-means), discriminant analysis, multidimensional scaling, and structural equations modeling. Emphasis on practical application of multivariate techniques to a variety of examples in the social sciences. Students complete extensive computer work using either SAS or SPSS. Prerequisites: knowledge of basic inferential procedures, experience with linear models (regression and ANOVA). Experience with some statistical package and/or familiarity with matrix notation is helpful but not required.", "short_title": "Multivariate Statistical Meth...", "title": "Multivariate Statistical Methods for the Social Sciences", "school": "GS", @@ -282848,10 +615311,515 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84872\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84872/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9974631071090698, + 0.998528003692627, + 0.9988002777099609, + 0.9970731735229492, + 0.9960675239562988, + 0.9659496545791626, + 0.997296154499054, + 0.9947056174278259, + 0.9981707334518433, + 0.9969160556793213, + 0.9977027773857117, + 0.997220516204834, + 0.9982934594154358, + 0.9980760812759399, + 0.9986336827278137, + 0.9994834661483765, + 0.9953943490982056, + 0.9984435439109802, + 0.9987187385559082, + 0.9982361793518066, + 0.9989237189292908, + 0.9988762736320496, + 0.9988179802894592, + 0.9986907839775085, + 0.998824417591095, + 0.9883784651756287, + 0.9988563060760498, + 0.9951117634773254, + 0.6081044673919678, + 0.9994456171989441, + 0.9958964586257935, + 0.9949340224266052, + 0.9985126852989197, + 0.9854406714439392, + 0.9988154172897339, + 0.9979081153869629, + 0.9988879561424255, + 0.9987120628356934, + 0.9988062381744385, + 0.9935043454170227, + 0.9932188391685486, + 0.9971977472305298, + 0.9979937076568604, + 0.9910203814506531, + 0.9984378218650818, + 0.9994788765907288, + 0.9947144389152527, + 0.9987976551055908, + 0.996218740940094, + 0.9987837672233582, + 0.995712399482727, + 0.9987578392028809, + 0.9967203736305237, + 0.9979610443115234, + 0.9961879849433899, + 0.9979415535926819, + 0.9972532391548157, + 0.9978043437004089, + 0.9960780739784241, + 0.9987622499465942, + 0.9986783862113953, + 0.9610385894775391, + 0.9982849955558777, + 0.9971428513526917, + 0.9915689826011658, + 0.9905773401260376, + 0.9972705245018005, + 0.9978042244911194, + 0.9986642599105835, + 0.9984989166259766, + 0.9982166886329651, + 0.9945003986358643, + 0.9987824559211731 + ], + "sentiment_counts": { + "POSITIVE": 68, + "NEGATIVE": 5 + }, + "sentiment_distribution": { + "POSITIVE": 0.9315068493150684, + "NEGATIVE": 0.0684931506849315 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9315068493150684 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9994578957557678, + 0.9988375306129456, + 0.9989497065544128, + 0.9987782835960388, + 0.9986897110939026, + 0.9988290667533875, + 0.9988730549812317, + 0.9988479614257812, + 0.9994533658027649, + 0.9987873435020447, + 0.9953585267066956, + 0.9992372989654541, + 0.9988511800765991, + 0.9986960291862488, + 0.9988130331039429, + 0.9988947510719299, + 0.9954173564910889, + 0.9989209175109863, + 0.9978182315826416, + 0.9922468662261963, + 0.9994290471076965, + 0.9988716244697571, + 0.9994946718215942, + 0.9994732737541199, + 0.9988227486610413, + 0.9989221096038818, + 0.9989126920700073, + 0.9988269209861755, + 0.9987199306488037, + 0.9972999691963196, + 0.998588502407074, + 0.9925130605697632, + 0.9990230798721313, + 0.9988324046134949, + 0.9986667633056641, + 0.9972211122512817, + 0.9983383417129517, + 0.995060384273529, + 0.9988479614257812, + 0.9989051818847656, + 0.9988699555397034, + 0.9994475245475769, + 0.9185613393783569, + 0.9986540079116821, + 0.9987469911575317, + 0.9981921315193176, + 0.9960364699363708, + 0.991152822971344, + 0.9988514184951782, + 0.9988914132118225, + 0.9989385008811951, + 0.9988906979560852, + 0.7822515368461609, + 0.998161256313324, + 0.9989172220230103, + 0.9994984865188599, + 0.9969452023506165, + 0.9939743876457214, + 0.9986761212348938, + 0.9989206790924072, + 0.9854721426963806, + 0.9988839030265808, + 0.9989269375801086, + 0.998724639415741, + 0.9988075494766235, + 0.998819887638092, + 0.9988993406295776, + 0.9988875985145569, + 0.9603727459907532, + 0.9988254904747009, + 0.9974647760391235, + 0.9962582588195801 + ], + "sentiment_counts": { + "NEGATIVE": 20, + "POSITIVE": 52 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2777777777777778, + "POSITIVE": 0.7222222222222222 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7222222222222222 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987584352493286, + 0.9986959099769592, + 0.9887033104896545, + 0.9984014630317688, + 0.9987432360649109, + 0.9987397789955139, + 0.9986951947212219, + 0.9978541731834412, + 0.9988546371459961, + 0.9985734224319458, + 0.9977577328681946, + 0.9988981485366821, + 0.9975903034210205, + 0.9985647797584534, + 0.9987255930900574, + 0.9968332648277283, + 0.9987712502479553, + 0.9987599849700928, + 0.9988337159156799, + 0.998817503452301, + 0.9990045428276062, + 0.997117280960083, + 0.9983184337615967, + 0.9989257454872131, + 0.9973255395889282, + 0.9793419241905212, + 0.9971292614936829, + 0.9988428354263306, + 0.9987934827804565, + 0.9974592328071594, + 0.9990301132202148, + 0.9982553124427795, + 0.999447762966156, + 0.9989218711853027, + 0.9954516291618347, + 0.9986667633056641, + 0.9982553124427795, + 0.9970216155052185, + 0.9987241625785828, + 0.9988901019096375, + 0.9988497495651245, + 0.9988411068916321, + 0.9985730648040771, + 0.9974592328071594, + 0.9979740977287292, + 0.9994804263114929, + 0.9988839030265808, + 0.9943140745162964, + 0.997117280960083, + 0.9988817572593689, + 0.9988898634910583, + 0.9988113641738892, + 0.9691007733345032, + 0.9939804077148438, + 0.9989174604415894, + 0.9995142221450806, + 0.9978918433189392, + 0.9982432126998901, + 0.9988896250724792, + 0.9989089965820312, + 0.9988692402839661, + 0.9987128973007202, + 0.9978887438774109, + 0.9988570213317871, + 0.9987962245941162, + 0.9958069324493408, + 0.9984657764434814, + 0.9989056587219238, + 0.9988873600959778, + 0.9987415671348572, + 0.9978981018066406, + 0.997117280960083, + 0.9974592328071594, + 0.9988345503807068 + ], + "sentiment_counts": { + "POSITIVE": 63, + "NEGATIVE": 11 + }, + "sentiment_distribution": { + "POSITIVE": 0.8513513513513513, + "NEGATIVE": 0.14864864864864866 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8513513513513513 + ] + }, + "final_label": "POSITIVE", + "final_count": 183, + "final_proportion": 0.8356164383561644, + "final_counts": { + "POSITIVE": 183, + "NEGATIVE": 36 + }, + "final_distribution": { + "POSITIVE": 0.8356164383561644, + "NEGATIVE": 0.1643835616438356 + } + } }, { "season_code": "202301", @@ -282889,7 +615857,7 @@ "13:30", "15:20", "WLH 003 - William L. Harkness Hall 003", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -282901,10 +615869,38 @@ "classnotes": "This is a graduate course. Undergraduates need explicit permission to take the course. Please see syllabus with instructions to submit an application for the course.", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84817\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84817/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -282942,7 +615938,7 @@ "14:30", "15:45", "HLH17 101 - 17 Hillhouse Avenue 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Thursday": [ @@ -282950,7 +615946,7 @@ "14:30", "15:45", "HLH17 101 - 17 Hillhouse Avenue 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -282962,10 +615958,93 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84879\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84879/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985371828079224, + 0.9987940788269043, + 0.9988541603088379 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989295601844788, + 0.9989116191864014, + 0.9987514019012451 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988835453987122, + 0.9989364743232727, + 0.9987673759460449 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 9 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -283005,10 +616084,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86164\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86164/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -283048,7 +616155,7 @@ "14:30", "16:30", "HLH24 107 - 24 Hillhouse Avenue 107", - "https:\/\/map.yale.edu\/?id=1910#!m\/560128" + "https://map.yale.edu/?id=1910#!m/560128" ] ] }, @@ -283062,10 +616169,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84820\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84820/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -283103,7 +616238,7 @@ "13:00", "14:15", "HLH17 115 - 17 Hillhouse Avenue 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Thursday": [ @@ -283111,7 +616246,7 @@ "13:00", "14:15", "HLH17 115 - 17 Hillhouse Avenue 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -283123,10 +616258,107 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84882\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84882/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9955303072929382, + 0.997385561466217, + 0.9978353381156921, + 0.9985045194625854, + 0.9955816864967346 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.6, + "NEGATIVE": 0.4 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989050626754761, + 0.9988846182823181, + 0.9989317059516907, + 0.9988462924957275, + 0.9987528324127197 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9979623556137085, + 0.9989042282104492, + 0.9989215135574341, + 0.998822033405304, + 0.9969403743743896 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 0.7333333333333333, + "final_counts": { + "POSITIVE": 11, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.7333333333333333, + "NEGATIVE": 0.26666666666666666 + } + } }, { "season_code": "202301", @@ -283165,7 +616397,7 @@ "9:00", "10:15", "DL 220 - Dunham Laboratory 220", - "https:\/\/map.yale.edu\/?id=1910#!m\/560005" + "https://map.yale.edu/?id=1910#!m/560005" ] ], "Thursday": [ @@ -283173,7 +616405,7 @@ "9:00", "10:15", "DL 220 - Dunham Laboratory 220", - "https:\/\/map.yale.edu\/?id=1910#!m\/560005" + "https://map.yale.edu/?id=1910#!m/560005" ] ] }, @@ -283187,10 +616419,303 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84868\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84868/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9972146153450012, + 0.9986032843589783, + 0.9988893866539001, + 0.9988510608673096, + 0.9985225796699524, + 0.9983002543449402, + 0.9988652467727661, + 0.9898099899291992, + 0.9992445707321167, + 0.9920052886009216, + 0.9987414479255676, + 0.9760897159576416, + 0.9987826943397522, + 0.9984800219535828, + 0.9988573789596558, + 0.9983896017074585, + 0.998235821723938, + 0.9987473487854004, + 0.9982333183288574, + 0.9988610744476318, + 0.9989168643951416, + 0.9978594183921814, + 0.9931400418281555, + 0.9987677335739136, + 0.9986691474914551, + 0.9851320385932922, + 0.9988324046134949, + 0.9988439083099365, + 0.9966937303543091, + 0.9976420402526855, + 0.9988634586334229, + 0.9951695799827576, + 0.9932605624198914, + 0.9970062375068665, + 0.9936577677726746, + 0.9938263297080994, + 0.9859583973884583 + ], + "sentiment_counts": { + "POSITIVE": 33, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.8918918918918919, + "NEGATIVE": 0.10810810810810811 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8918918918918919 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987388253211975, + 0.9988862872123718, + 0.99892657995224, + 0.9915080070495605, + 0.9986177682876587, + 0.9987738728523254, + 0.9994997978210449, + 0.9974984526634216, + 0.9989005327224731, + 0.9958497285842896, + 0.9988101720809937, + 0.9994945526123047, + 0.9989196062088013, + 0.9989062547683716, + 0.9985552430152893, + 0.9995036125183105, + 0.9988731741905212, + 0.9988899827003479, + 0.9973130822181702, + 0.9988895058631897, + 0.9988656044006348, + 0.9974741339683533, + 0.9935489296913147, + 0.998909592628479, + 0.998802661895752, + 0.9989271759986877, + 0.9929023385047913, + 0.997677743434906, + 0.9985538125038147, + 0.9988089799880981, + 0.9987558126449585, + 0.9994994401931763, + 0.998582124710083, + 0.9989243149757385, + 0.9987986087799072, + 0.9760571718215942, + 0.9984179735183716, + 0.9987449645996094 + ], + "sentiment_counts": { + "POSITIVE": 29, + "NEGATIVE": 9 + }, + "sentiment_distribution": { + "POSITIVE": 0.7631578947368421, + "NEGATIVE": 0.23684210526315788 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7631578947368421 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.997117280960083, + 0.9989218711853027, + 0.9988334774971008, + 0.9986544847488403, + 0.9989162683486938, + 0.9985482096672058, + 0.9995025396347046, + 0.9979844093322754, + 0.9987157583236694, + 0.9988908171653748, + 0.998939573764801, + 0.9976805448532104, + 0.9989168643951416, + 0.9974602460861206, + 0.998548686504364, + 0.9994789958000183, + 0.9988813996315002, + 0.9988935589790344, + 0.9987651109695435, + 0.99853515625, + 0.997117280960083, + 0.999484658241272, + 0.9988988637924194, + 0.9989138841629028, + 0.9983429908752441, + 0.9984143972396851, + 0.9983841180801392, + 0.9988598823547363, + 0.9863346815109253, + 0.9986371397972107, + 0.9992784857749939, + 0.9994975328445435, + 0.9974592328071594, + 0.9988756775856018, + 0.994895875453949, + 0.9989218711853027, + 0.9965543746948242, + 0.9983201622962952 + ], + "sentiment_counts": { + "POSITIVE": 30, + "NEGATIVE": 8 + }, + "sentiment_distribution": { + "POSITIVE": 0.7894736842105263, + "NEGATIVE": 0.21052631578947367 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7894736842105263 + ] + }, + "final_label": "POSITIVE", + "final_count": 92, + "final_proportion": 0.8141592920353983, + "final_counts": { + "POSITIVE": 92, + "NEGATIVE": 21 + }, + "final_distribution": { + "POSITIVE": 0.8141592920353983, + "NEGATIVE": 0.18584070796460178 + } + } }, { "season_code": "202301", @@ -283230,7 +616755,7 @@ "11:35", "12:50", "HLH17 05 - 17 Hillhouse Avenue 05", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Thursday": [ @@ -283238,7 +616763,7 @@ "11:35", "12:50", "HLH17 05 - 17 Hillhouse Avenue 05", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -283250,15 +616775,166 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84876\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84876/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "", - "description": "An introduction to spatial statistical techniques with computer applications. Topics include modeling spatially correlated data, quantifying spatial association and autocorrelation, interpolation methods, variograms, kriging, and spatial point patterns. Examples are drawn from ecology, sociology, public health, and subjects proposed by students. Four to five lab\/homework assignments and a final project. The class makes extensive use of the R programming language as well as ArcGIS.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998568058013916, + 0.9988627433776855, + 0.9987685084342957, + 0.998754620552063, + 0.9946622252464294, + 0.9970614314079285, + 0.998843789100647, + 0.9987886548042297, + 0.9988092184066772, + 0.9988441467285156, + 0.9988687634468079, + 0.9985740184783936, + 0.9989031553268433 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998921275138855, + 0.9986627101898193, + 0.9940459728240967, + 0.9988405108451843, + 0.99858558177948, + 0.9988741278648376, + 0.9988069534301758, + 0.9988125562667847, + 0.9987701773643494, + 0.9989302754402161, + 0.99882572889328, + 0.9989101886749268, + 0.9927527904510498, + 0.9988667964935303, + 0.9988458156585693 + ], + "sentiment_counts": { + "POSITIVE": 14, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9333333333333333, + "NEGATIVE": 0.06666666666666667 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9333333333333333 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989182949066162, + 0.9980598092079163, + 0.9989286065101624, + 0.9814826846122742, + 0.9988265633583069, + 0.9986445307731628, + 0.9986481070518494, + 0.9787508249282837, + 0.9892027974128723, + 0.9988951086997986, + 0.9988790154457092, + 0.9989151954650879, + 0.9988663196563721, + 0.99888676404953 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9285714285714286, + "NEGATIVE": 0.07142857142857142 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9285714285714286 + ] + }, + "final_label": "POSITIVE", + "final_count": 40, + "final_proportion": 0.9523809523809523, + "final_counts": { + "POSITIVE": 40, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9523809523809523, + "NEGATIVE": 0.047619047619047616 + } + } + }, + { + "season_code": "202301", + "requirements": "", + "description": "An introduction to spatial statistical techniques with computer applications. Topics include modeling spatially correlated data, quantifying spatial association and autocorrelation, interpolation methods, variograms, kriging, and spatial point patterns. Examples are drawn from ecology, sociology, public health, and subjects proposed by students. Four to five lab/homework assignments and a final project. The class makes extensive use of the R programming language as well as ArcGIS.", "short_title": "Applied Spatial Statistics", "title": "Applied Spatial Statistics", "school": "GS", @@ -283291,7 +616967,7 @@ "10:30", "11:50", "MARSH R - Marsh Hall R", - "https:\/\/map.yale.edu\/?id=1910#!m\/559984" + "https://map.yale.edu/?id=1910#!m/559984" ] ], "Thursday": [ @@ -283299,7 +616975,7 @@ "10:30", "11:50", "MARSH R - Marsh Hall R", - "https:\/\/map.yale.edu\/?id=1910#!m\/559984" + "https://map.yale.edu/?id=1910#!m/559984" ] ] }, @@ -283311,10 +616987,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85025\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85025/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -283351,7 +617055,7 @@ "16:00", "17:50", "HLH17 03 - 17 Hillhouse Avenue 03", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -283363,14 +617067,42 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85988\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85988/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", - "requirements": "Prerequisites: knowledge of linear algebra (MATH 225\/226\/240), multivariate calculus (MATH 255\/256), probability (S&DS 241), and statistics (S&DS 242). Comfort with proof-based exposition and problem sets is also required.", + "requirements": "Prerequisites: knowledge of linear algebra (MATH 225/226/240), multivariate calculus (MATH 255/256), probability (S&DS 241), and statistics (S&DS 242). Comfort with proof-based exposition and problem sets is also required.", "description": "There has been a surge of research interest in reinforcement learning recently, fueled by exciting applications of reinforcement learning techniques to various challenging decision-making problems in artificial intelligence, robotics, and natural sciences. Many of these advances were made possible by a combination of innovative use of flexible neural network architectures, modern optimization techniques, and new and classical RL algorithms. However, a systematic understanding of when, why, and to what extent these algorithms work remains active ongoing research. This course aims to introduce the theoretical foundations of reinforcement learning, with the goal of equipping students with necessary tools for conducting research.\u00a0This graduate level course focuses on theoretical and algorithmic foundations of reinforcement learning. Specifically, there are four main themes of the course:(a) fundamentals of RL (Markov decision process, planning algorithms, Q-learning and temporal difference learning, policy gradient), (b) online RL (bandit algorithms, online learning, exploration), (c) offline RL (off-policy evaluation, offline policy learning), and (d) further topics (multi-agent RL, partial observability).", "short_title": "Theory of Reinforcement Learning", "title": "Theory of Reinforcement Learning", @@ -283403,7 +617135,7 @@ "9:25", "11:15", "HLH24 107 - 24 Hillhouse Avenue 107", - "https:\/\/map.yale.edu\/?id=1910#!m\/560128" + "https://map.yale.edu/?id=1910#!m/560128" ] ] }, @@ -283415,10 +617147,38 @@ "classnotes": "This is a graduate course. Undergraduates need explicit permission to take the course. Please see syllabus with instructions to submit an application for the course.", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85848\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/85848/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -283455,7 +617215,7 @@ "16:00", "18:30", "WTS A30 - Watson Center 60 Sachem Street A30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -283467,15 +617227,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85989\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85989/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "Students may approach this class from\u00a0one of the following perspectives: (a)\u00a0A background in computer or data science methods including machine learning, e.g., one (or more) courses such as SDS 565, SDS 617,\u00a0AMTH 553, CPSC 552, CPSC 564,\u00a0CPSC 570,\u00a0CPSC 680,\u00a0ECON 551 or (b)\u00a0A background in the legal, sociological or philosophical theory of discrimination, e.g., one (or more) courses such as PHIL 663, PHIL 715, EPH 507,\u00a0PLSC 553,\u00a0AMST 707,\u00a0PSYC 728,\u00a0SOCY 545,\u00a0AFAM 505.\u00a0Both backgrounds are valued and essential to the works we discuss, and the class is structured so that all students have a path to success that leverages their strengths and background. Please reach out to the instructor with questions.", - "description": "This class analyses the occurrence of discrimination via data science practices and approaches to mitigate harm. We consider different conceptual, legal, and ethical notions of bias, harm, and discrimination, and study how these definitions affect the solutions considered, developed, and implemented. We read a variety of state-of-the-art research papers from the computer science and data science communities, alongside texts that help ground our perspectives from legal, sociological, and\/or ethical perspectives.", + "description": "This class analyses the occurrence of discrimination via data science practices and approaches to mitigate harm. We consider different conceptual, legal, and ethical notions of bias, harm, and discrimination, and study how these definitions affect the solutions considered, developed, and implemented. We read a variety of state-of-the-art research papers from the computer science and data science communities, alongside texts that help ground our perspectives from legal, sociological, and/or ethical perspectives.", "short_title": "Discrimination in Data Science", "title": "Discrimination in Data Science", "school": "GS", @@ -283507,7 +617295,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -283547,10 +617363,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84823\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84823/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -283590,10 +617434,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84826\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84826/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -283624,7 +617496,7 @@ "16:00", "17:30", "DAVIES AUD - Davies Auditorium, Becton Ctr AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ] }, @@ -283639,7 +617511,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -283676,7 +617576,7 @@ "10:00", "12:00", "WTS A30 - Watson Center 60 Sachem Street A30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -283688,10 +617588,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85892\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85892/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -283729,7 +617657,7 @@ "14:30", "15:45", "STOECK 312 - Stoeckel Hall (renovated) 312", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ], "Thursday": [ @@ -283737,7 +617665,7 @@ "14:30", "15:45", "STOECK 312 - Stoeckel Hall (renovated) 312", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ] }, @@ -283753,10 +617681,113 @@ "classnotes": "", "final_exam": "Wednesday, May 10, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85714\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85714/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989186525344849, + 0.9988958835601807, + 0.9988409876823425, + 0.9984020590782166, + 0.9988777041435242 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988277554512024, + 0.9989340901374817, + 0.9988596439361572, + 0.9962298274040222, + 0.9988766312599182, + 0.9988227486610413, + 0.998651921749115 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.99866783618927, + 0.9988756775856018, + 0.9988064765930176, + 0.9988277554512024, + 0.9989259839057922, + 0.9987037181854248 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 0.8888888888888888, + "final_counts": { + "POSITIVE": 16, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + } + } }, { "season_code": "202301", @@ -283795,7 +617826,7 @@ "13:30", "15:20", "HQ C01 - Humanities Quadrangle C01", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -283810,10 +617841,103 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85291\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85291/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989148378372192, + 0.9989301562309265, + 0.9988470077514648 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989328980445862, + 0.9989349246025085, + 0.9988600015640259, + 0.9985889792442322, + 0.9986955523490906 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987051486968994, + 0.9989172220230103, + 0.9988988637924194, + 0.9994789958000183, + 0.9984238147735596 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 0.9230769230769231, + "final_counts": { + "POSITIVE": 12, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9230769230769231, + "NEGATIVE": 0.07692307692307693 + } + } }, { "season_code": "202301", @@ -283853,7 +617977,7 @@ "9:25", "11:15", "WLH 115 - William L. Harkness Hall 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -283867,10 +617991,113 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86161\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86161/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988582134246826, + 0.9988898634910583, + 0.9988890290260315, + 0.9989172220230103, + 0.9988777041435242, + 0.998764157295227 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989292025566101, + 0.9988477230072021, + 0.9989280104637146, + 0.9988915324211121, + 0.9989306330680847 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989340901374817, + 0.997117280960083, + 0.9988848567008972, + 0.9981436729431152, + 0.9989331364631653, + 0.9989149570465088, + 0.9988886713981628, + 0.9989142417907715 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 19 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -283909,7 +618136,7 @@ "15:30", "17:20", "SA10 105 - 10 Sachem Street 105", - "https:\/\/map.yale.edu\/?id=1910#!m\/559538" + "https://map.yale.edu/?id=1910#!m/559538" ] ] }, @@ -283918,7 +618145,7 @@ "So" ], "flags": [ - "YC EVST: Core Human\/Social Sci", + "YC EVST: Core Human/Social Sci", "YC EVST: Advanced Seminar", "YC GLBL: Elective" ], @@ -283927,10 +618154,157 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83325\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83325/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.99860018491745, + 0.9989238381385803, + 0.9988252520561218, + 0.9988376498222351, + 0.9989175796508789, + 0.9989101886749268, + 0.9988933205604553, + 0.9988798499107361, + 0.9986162185668945, + 0.998915433883667, + 0.9987706542015076, + 0.9988420605659485, + 0.9988958835601807 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998677670955658, + 0.9987567663192749, + 0.9986740350723267, + 0.9988020658493042, + 0.9989363551139832, + 0.9989389777183533, + 0.9988321661949158, + 0.9988962411880493, + 0.9948179125785828, + 0.7278205752372742, + 0.9979246854782104, + 0.9989235997200012, + 0.9985648989677429 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981452226638794, + 0.9989356398582458, + 0.9988096952438354, + 0.9987229704856873, + 0.9989365935325623, + 0.9983274340629578, + 0.9982132911682129, + 0.9988000392913818, + 0.9988648891448975, + 0.9839995503425598, + 0.998340368270874, + 0.9988783001899719, + 0.998056173324585, + 0.9989100694656372, + 0.9989136457443237 + ], + "sentiment_counts": { + "POSITIVE": 15, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 41, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 41 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -283968,7 +618342,7 @@ "9:25", "11:15", "LC 204 - Linsly-Chittenden Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -283982,10 +618356,113 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87465\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87465/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987485408782959, + 0.9989070892333984, + 0.9989240765571594, + 0.9988183379173279, + 0.9989124536514282, + 0.9988000392913818, + 0.9988564252853394 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989354014396667, + 0.9983715415000916, + 0.9917507767677307, + 0.9988986253738403, + 0.9955440163612366 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.99891197681427, + 0.9989180564880371, + 0.9988638162612915, + 0.9981265664100647, + 0.9985613226890564, + 0.9955592155456543 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 0.9444444444444444, + "final_counts": { + "POSITIVE": 17, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9444444444444444, + "NEGATIVE": 0.05555555555555555 + } + } }, { "season_code": "202301", @@ -284031,10 +618508,38 @@ "classnotes": "This course is only open to students participating in the Yale in London program.", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86672\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/86672/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -284072,7 +618577,7 @@ "13:30", "15:20", "WLH 007 - William L. Harkness Hall 007", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -284088,10 +618593,147 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84165\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84165/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989144802093506, + 0.9988609552383423, + 0.9988040924072266, + 0.9985374212265015, + 0.9988196492195129, + 0.9985608458518982, + 0.9981890320777893, + 0.9986839890480042, + 0.9989104270935059, + 0.9989111423492432, + 0.9988411068916321 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988855719566345, + 0.9989269375801086, + 0.9989321827888489, + 0.9989232420921326, + 0.9986838698387146, + 0.9989163875579834, + 0.9989087581634521, + 0.9988995790481567, + 0.9989269375801086, + 0.9989111423492432, + 0.9989104270935059, + 0.9988400340080261 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988231062889099, + 0.9989247918128967, + 0.99891197681427, + 0.998893678188324, + 0.9988717436790466, + 0.9987547397613525, + 0.9987553358078003, + 0.9989136457443237, + 0.9983460903167725, + 0.9989250302314758, + 0.9988133907318115, + 0.9987767338752747, + 0.9988046884536743 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 36, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 36 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -284131,7 +618773,7 @@ "13:30", "15:20", "RKZ 202 - Rosenkranz Hall 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -284146,13 +618788,102 @@ ], "regnotes": "", "rp_attr": "", - "classnotes": "This course requires instructor permission. Please submit the following information with your registration request: year, major, related courses taken (if any), 2-3 sentences why you are interested in the course, plan to write senior essay in this seminar (Yes\/No\/Undecided).", + "classnotes": "This course requires instructor permission. Please submit the following information with your registration request: year, major, related courses taken (if any), 2-3 sentences why you are interested in the course, plan to write senior essay in this seminar (Yes/No/Undecided).", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85148\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85148/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988574981689453, + 0.9989180564880371, + 0.9986271858215332, + 0.9987420439720154 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998923122882843, + 0.99891197681427, + 0.9989261031150818, + 0.9988885521888733 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989087581634521, + 0.9989331364631653, + 0.9988707900047302, + 0.9989271759986877 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 12 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -284190,7 +618921,7 @@ "14:30", "15:45", "WTS A35 - Watson Center 60 Sachem Street A35", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -284198,7 +618929,7 @@ "14:30", "15:45", "WTS A35 - Watson Center 60 Sachem Street A35", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -284214,10 +618945,107 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85746\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85746/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988701939582825, + 0.9986695051193237, + 0.9983069896697998, + 0.9988948702812195 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989067316055298, + 0.9988743662834167, + 0.9989314675331116, + 0.9988400340080261, + 0.9989380240440369 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988173842430115, + 0.998931348323822, + 0.9866195917129517, + 0.9989398121833801, + 0.9988158941268921, + 0.9989069700241089, + 0.9989197254180908 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 16 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -284258,7 +619086,7 @@ "16:00", "17:15", "LUCE 302 - Luce Hall 302", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ], "Wednesday": [ @@ -284266,7 +619094,7 @@ "16:00", "17:15", "LUCE 302 - Luce Hall 302", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ] }, @@ -284280,10 +619108,83 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85462\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85462/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.998855471611023 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988786578178406 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986762404441833, + 0.9988349080085754 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 4, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 4 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -284323,12 +619224,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "In this course we plunge into the vibrant history of modernity and tradition in India and South Asia using healthcare as a broad case study. Scholars have shown that modernity, as a historical process and experience, was not uniform everywhere and was radically influenced by specific histories and cultures of different communities. Thus, while biomedicine began to dominate healthcare policy in the South Asian region in the nineteenth century, the diverse forms of healthcare beliefs, services, and practices which had historically defined the region\u2019s landscape also continued to thrive. How did the existing forms of traditions, especially those based on caste and religion, influence the nineteenth and twentieth century ideas and practices of modernity which emerged in the region? We also\u00a0discuss how a historical perspective can thus help us think productively about dichotomized entities commonly referred to as modern, traditional, indigenous, foreign, Western, and Eastern. We especially focus on the idea of \"pure\" traditions seen alongside the reality of exchange and \"circulation\", and learn how traditions can also be \"invented\". Apart from relevant primary sources (including images and videos), the readings for this course cover several disciplines including South Asian history, history of science\/medicine, medical anthropology, and STS.", + "description": "In this course we plunge into the vibrant history of modernity and tradition in India and South Asia using healthcare as a broad case study. Scholars have shown that modernity, as a historical process and experience, was not uniform everywhere and was radically influenced by specific histories and cultures of different communities. Thus, while biomedicine began to dominate healthcare policy in the South Asian region in the nineteenth century, the diverse forms of healthcare beliefs, services, and practices which had historically defined the region\u2019s landscape also continued to thrive. How did the existing forms of traditions, especially those based on caste and religion, influence the nineteenth and twentieth century ideas and practices of modernity which emerged in the region? We also\u00a0discuss how a historical perspective can thus help us think productively about dichotomized entities commonly referred to as modern, traditional, indigenous, foreign, Western, and Eastern. We especially focus on the idea of \"pure\" traditions seen alongside the reality of exchange and \"circulation\", and learn how traditions can also be \"invented\". Apart from relevant primary sources (including images and videos), the readings for this course cover several disciplines including South Asian history, history of science/medicine, medical anthropology, and STS.", "short_title": "Tradition, Modernity, Medicin...", "title": "Tradition, Modernity, Medicine in South Asia", "school": "YC", @@ -284362,7 +619291,7 @@ "13:30", "15:20", "WALL81 401 - 81 Wall Street 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -284381,11 +619310,152 @@ "rp_attr": "", "classnotes": "", "final_exam": "HTBA", - "course_home_url": "https:\/\/yale.instructure.com\/courses\/85863", - "syllabus_url": "", - "fysem": false, - "sysem": false, - "colsem": false + "course_home_url": "https://yale.instructure.com/courses/85863", + "syllabus_url": "", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989230036735535, + 0.9987348914146423, + 0.9988467693328857, + 0.9981142282485962, + 0.9989023208618164, + 0.9988031387329102, + 0.9987388253211975, + 0.9988933205604553, + 0.998741090297699, + 0.9985155463218689, + 0.9982210993766785, + 0.9987156391143799 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988930821418762, + 0.9989266991615295, + 0.9989331364631653, + 0.998788058757782, + 0.9987188577651978, + 0.9989352822303772, + 0.9989175796508789, + 0.9989297986030579, + 0.9989151954650879, + 0.9977465271949768, + 0.99885094165802 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988681077957153, + 0.9989049434661865, + 0.9989114999771118, + 0.9988995790481567, + 0.998913049697876, + 0.9989171028137207, + 0.9945160746574402, + 0.9989035129547119, + 0.9989045858383179, + 0.998762845993042, + 0.9987779259681702, + 0.9988565444946289, + 0.9985139966011047, + 0.9989350438117981, + 0.99886155128479 + ], + "sentiment_counts": { + "POSITIVE": 15, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 38, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 38 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -284423,7 +619493,7 @@ "13:30", "15:20", "HQ C65 - Humanities Quadrangle C65", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -284442,10 +619512,121 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84182\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84182/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989253878593445, + 0.9987775683403015, + 0.9989041090011597, + 0.998801589012146, + 0.9989151954650879, + 0.9949454665184021, + 0.9989283680915833 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989345669746399, + 0.998904824256897, + 0.9989354014396667, + 0.9989365935325623, + 0.9989394545555115, + 0.9987803101539612, + 0.9989138841629028, + 0.9988675117492676 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998934805393219, + 0.9985302686691284, + 0.9988322854042053, + 0.9989138841629028, + 0.9988975524902344, + 0.997117280960083, + 0.9988204836845398, + 0.9989203214645386 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 23, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 23 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -284483,7 +619664,7 @@ "12:00", "15:00", "STOECK 312 - Stoeckel Hall (renovated) 312", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ] }, @@ -284497,10 +619678,93 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85402\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85402/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989253878593445, + 0.9989054203033447, + 0.9984942674636841 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989161491394043, + 0.9988988637924194, + 0.9988517761230469 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989344477653503, + 0.9989187717437744, + 0.9988610744476318 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 9 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -284537,7 +619801,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -284574,12 +619866,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "Close\u00a0readings\u00a0from a wide range of Persian and\/or Urdu texts produced\u00a0in\u00a0South Asia. The selection of texts accommodates the research\u00a0interests of enrolled students.", + "description": "Close\u00a0readings\u00a0from a wide range of Persian and/or Urdu texts produced\u00a0in\u00a0South Asia. The selection of texts accommodates the research\u00a0interests of enrolled students.", "short_title": "Readings in Indo-Islamic Texts", "title": "Readings in Indo-Islamic Texts", "school": "GS", @@ -284612,7 +619932,7 @@ "11:00", "12:50", "LUCE 302 - Luce Hall 302", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ] }, @@ -284624,10 +619944,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84810\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84810/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -284658,7 +620006,7 @@ "10:10", "11:25", "DOW B-13 - Dow Hall B-13", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ], "Wednesday": [ @@ -284666,7 +620014,7 @@ "10:10", "11:25", "DOW B-13 - Dow Hall B-13", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ], "Friday": [ @@ -284674,7 +620022,7 @@ "10:10", "11:25", "DOW B-13 - Dow Hall B-13", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ] }, @@ -284691,12 +620039,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "Prerequisite: SBCR 130 or equivalent. Course taught through distance learning using videoconferencing technology from Columbia University. Enrollment limited; interested students should e-mail minjin.hashbat@yale.edu for more information.", - "description": "The intermediate course in BCS is a continuation of the elementary course and is intended to enhance overall communicative competence in the language. This course moves forward from the study of the fundamental systems and vocabulary of the Bosnian\/Croatian\/Serbian to rich exposure to the spoken and written language with the wide range of speakers and situations.", + "description": "The intermediate course in BCS is a continuation of the elementary course and is intended to enhance overall communicative competence in the language. This course moves forward from the study of the fundamental systems and vocabulary of the Bosnian/Croatian/Serbian to rich exposure to the spoken and written language with the wide range of speakers and situations.", "short_title": "Intermediate Bosnian Croatian...", "title": "Intermediate Bosnian Croatian Serbian II", "school": "YC", @@ -284722,7 +620098,7 @@ "11:40", "12:55", "DOW B-13 - Dow Hall B-13", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ], "Wednesday": [ @@ -284730,7 +620106,7 @@ "11:40", "12:55", "DOW B-13 - Dow Hall B-13", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ], "Friday": [ @@ -284738,7 +620114,7 @@ "11:40", "12:55", "DOW B-13 - Dow Hall B-13", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ] }, @@ -284755,7 +620131,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -284798,7 +620202,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -284835,7 +620267,7 @@ "10:00", "11:50", "LEPH 101 - Laboratory of EPH 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ] }, @@ -284847,10 +620279,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86128\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86128/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -284890,10 +620350,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86129\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86129/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -284930,14 +620418,14 @@ "13:00", "14:50", "CO47 106A - 47 College Street (CLP) 106A", - "https:\/\/map.yale.edu\/?id=1910#!m\/559997" + "https://map.yale.edu/?id=1910#!m/559997" ] ] }, "skills": [], "areas": [], "flags": [ - "PH: Global Health, Psychosocial\/Social and behavioral\/Anthropology" + "PH: Global Health, Psychosocial/Social and behavioral/Anthropology" ], "regnotes": "", "rp_attr": "", @@ -284947,7 +620435,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -284984,7 +620500,7 @@ "15:00", "16:20", "CO47 106B - 47 College Street (CLP) 106B", - "https:\/\/map.yale.edu\/?id=1910#!m\/559997" + "https://map.yale.edu/?id=1910#!m/559997" ] ], "Thursday": [ @@ -284992,7 +620508,7 @@ "15:00", "16:20", "CO47 106B - 47 College Street (CLP) 106B", - "https:\/\/map.yale.edu\/?id=1910#!m\/559997" + "https://map.yale.edu/?id=1910#!m/559997" ] ] }, @@ -285004,10 +620520,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86131\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86131/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -285045,7 +620589,7 @@ "10:00", "11:50", "LEPH 101 - Laboratory of EPH 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ], "Friday": [ @@ -285053,7 +620597,7 @@ "13:00", "13:50", "CO47 106A - 47 College Street (CLP) 106A", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ] }, @@ -285069,10 +620613,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84842\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84842/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -285109,7 +620681,7 @@ "13:00", "14:50", "LEPH WINSL - Laboratory of EPH WINSL", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ] }, @@ -285121,10 +620693,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86132\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86132/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -285161,7 +620761,7 @@ "17:00", "18:50", "CO47 106A - 47 College Street (CLP) 106A", - "https:\/\/map.yale.edu\/?id=1910#!m\/559997" + "https://map.yale.edu/?id=1910#!m/559997" ] ] }, @@ -285175,10 +620775,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86133\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86133/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -285215,7 +620843,7 @@ "13:00", "14:50", "LEPH 102 - Laboratory of EPH 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ] }, @@ -285227,10 +620855,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86134\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86134/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -285267,7 +620923,7 @@ "17:00", "18:50", "LEPH WINSL - Laboratory of EPH WINSL", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ] }, @@ -285279,10 +620935,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86135\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86135/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -285319,7 +621003,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -285356,11 +621068,39 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", - "requirements": "Prerequisite: BIS 560\/CB&B 740, SBS 574, or\u00a0permission of the instructor.", + "requirements": "Prerequisite: BIS 560/CB&B 740, SBS 574, or\u00a0permission of the instructor.", "description": "This course combines needs assessment methods, user-centered design principles, and an agile approach to designing digital health tools for consumers. The class environment is designed to model that of a health tech start-up. Students are expected to apply what they learn from the lectures and readings to identify a pain point (i.e., a problem or need faced by a prospective user) and solicit input from intended users to design a prototype of the digital health tool. Solutions are presented in class to receive feedback on the design and to iteratively refine a prototype in order to create a minimum viable product.", "short_title": "User-Centered Design of Digit...", "title": "User-Centered Design of Digital Health Tools", @@ -285395,7 +621135,7 @@ "10:00", "11:50", "CO47 106B - 47 College Street (CLP) 106B", - "https:\/\/map.yale.edu\/?id=1910#!m\/559997" + "https://map.yale.edu/?id=1910#!m/559997" ] ] }, @@ -285407,10 +621147,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85465\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85465/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -285453,7 +621221,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -285512,10 +621308,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86139\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86139/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -285552,7 +621376,7 @@ "13:30", "15:20", "WLH 204 - William L. Harkness Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -285568,10 +621392,143 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84846\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84846/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988734126091003, + 0.9989222288131714, + 0.9989184141159058, + 0.9988790154457092, + 0.9988706707954407, + 0.9987708926200867, + 0.9963807463645935, + 0.9987999200820923, + 0.9989379048347473, + 0.9987781643867493, + 0.9989026784896851 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988762736320496, + 0.9989352822303772, + 0.9988711476325989, + 0.8917935490608215, + 0.9988986253738403, + 0.9988757967948914, + 0.9987939596176147, + 0.9970160722732544, + 0.9989033937454224, + 0.9989284873008728, + 0.9988420605659485 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982553124427795, + 0.9989306330680847, + 0.9989179372787476, + 0.9561426043510437, + 0.9989232420921326, + 0.998923122882843, + 0.9371005892753601, + 0.9989075660705566, + 0.998927891254425, + 0.9989079236984253, + 0.9989250302314758, + 0.9989319443702698 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 34, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 34 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -285608,7 +621565,7 @@ "13:30", "15:20", "WTS A35 - Watson Center 60 Sachem Street A35", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -285624,10 +621581,123 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84850\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84850/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987096786499023, + 0.998250424861908, + 0.9979142546653748, + 0.9989042282104492, + 0.9988920092582703, + 0.9888267517089844, + 0.9975064396858215 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989010095596313, + 0.998831570148468, + 0.9988614320755005, + 0.9988724589347839, + 0.9994946718215942, + 0.9981970191001892 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9993816614151001, + 0.9988497495651245, + 0.9988859295845032, + 0.9989126920700073, + 0.9988792538642883, + 0.9987854361534119, + 0.997500479221344, + 0.9985106587409973, + 0.9988242983818054, + 0.9994833469390869 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 8 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2, + "POSITIVE": 0.8 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 0.8695652173913043, + "final_counts": { + "POSITIVE": 20, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.8695652173913043, + "NEGATIVE": 0.13043478260869565 + } + } }, { "season_code": "202301", @@ -285666,7 +621736,35 @@ "syllabus_url": "", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -285707,7 +621805,7 @@ "13:30", "15:20", "WTS A42 - Watson Center 60 Sachem Street A42", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -285719,10 +621817,107 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84633\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84633/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9978175163269043, + 0.9988942742347717, + 0.9983519315719604, + 0.992295503616333, + 0.9988190531730652 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984105825424194, + 0.9988803267478943, + 0.9967917799949646, + 0.9969640374183655, + 0.9939751029014587, + 0.9989259839057922 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.999470055103302, + 0.9989041090011597, + 0.9995087385177612, + 0.9987061023712158 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 0.7333333333333333, + "final_counts": { + "POSITIVE": 11, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.7333333333333333, + "NEGATIVE": 0.26666666666666666 + } + } }, { "season_code": "202301", @@ -285762,7 +621957,7 @@ "11:35", "12:25", "WTS B36 - Watson Center 60 Sachem Street B36", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Tuesday": [ @@ -285770,7 +621965,7 @@ "11:35", "12:25", "WTS B36 - Watson Center 60 Sachem Street B36", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -285778,7 +621973,7 @@ "11:35", "12:25", "WTS B36 - Watson Center 60 Sachem Street B36", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -285786,7 +621981,7 @@ "11:35", "12:25", "WTS B36 - Watson Center 60 Sachem Street B36", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Friday": [ @@ -285794,7 +621989,7 @@ "11:35", "12:25", "WTS B36 - Watson Center 60 Sachem Street B36", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -285808,10 +622003,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85463\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85463/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -285852,7 +622075,7 @@ "16:00", "17:15", "LUCE 302 - Luce Hall 302", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ], "Wednesday": [ @@ -285860,7 +622083,7 @@ "16:00", "17:15", "LUCE 302 - Luce Hall 302", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ] }, @@ -285874,15 +622097,88 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85462\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85462/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "Prerequisite: SKRT 510\/LING 515.", - "description": "Continuation of SKRT 510\/LING 515. Focus on the basics of Sanskrit grammar; readings from classical Sanskrit texts written in the Indian Devanagari script.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.998855471611023 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988786578178406 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986762404441833, + 0.9988349080085754 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 4, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 4 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } + }, + { + "season_code": "202301", + "requirements": "Prerequisite: SKRT 510/LING 515.", + "description": "Continuation of SKRT 510/LING 515. Focus on the basics of Sanskrit grammar; readings from classical Sanskrit texts written in the Indian Devanagari script.", "short_title": "Introductory Sanskrit II", "title": "Introductory Sanskrit II", "school": "GS", @@ -285917,7 +622213,7 @@ "11:35", "12:25", "WTS B36 - Watson Center 60 Sachem Street B36", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Tuesday": [ @@ -285925,7 +622221,7 @@ "11:35", "12:25", "WTS B36 - Watson Center 60 Sachem Street B36", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -285933,7 +622229,7 @@ "11:35", "12:25", "WTS B36 - Watson Center 60 Sachem Street B36", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -285941,7 +622237,7 @@ "11:35", "12:25", "WTS B36 - Watson Center 60 Sachem Street B36", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Friday": [ @@ -285949,7 +622245,7 @@ "11:35", "12:25", "WTS B36 - Watson Center 60 Sachem Street B36", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -285961,14 +622257,42 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85463\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85463/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", - "requirements": "For the purpose of distributional requirements, this is an L4 language course. College students who intend to take it in order to satisfy such distributional requirements should enroll under the SKRT 14x number; additionally, they must have previously taken SKRT 130\/530 (or equivalent).\u00a0For all other students, the prerequisite is one year of Classical Sanskrit (SKRT 120\/520 or equivalent). They may enroll under any number.", + "requirements": "For the purpose of distributional requirements, this is an L4 language course. College students who intend to take it in order to satisfy such distributional requirements should enroll under the SKRT 14x number; additionally, they must have previously taken SKRT 130/530 (or equivalent).\u00a0For all other students, the prerequisite is one year of Classical Sanskrit (SKRT 120/520 or equivalent). They may enroll under any number.", "description": "The purpose of this course is to introduce the specifics of Vedic Sanskrit, with some attention to its diachronic development and genre distinctions. Special attention is given to differences from Classical Sanskrit in terms of morphology and syntax. With respect to content, the course looks at the phenomenon of interpretation of Vedic hymns in the Br\u0101hma\u1e47as and their future career in Classical Sanskrit, as well as at elements of pre-systematic Indian Philosophy in the Vedas and the Upani\u1e63ads.\u00a0The course is divided into three modules, on the principle of \"from more to less familiar\" progression: (1) reading from the Upani\u1e63ads, which are closest to the Sanskrit described by P\u0101\u1e47ini; (2) reading stories from the Br\u0101hma\u1e47as; (3) reading hymns from the Rig Veda, taken mostly from its latest linguistic stratum.", "short_title": "Introduction to Vedic Sanskrit", "title": "Introduction to Vedic Sanskrit", @@ -286005,7 +622329,7 @@ "16:00", "17:15", "LUCE 302 - Luce Hall 302", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ], "Wednesday": [ @@ -286013,7 +622337,7 @@ "16:00", "17:15", "LUCE 302 - Luce Hall 302", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ] }, @@ -286025,10 +622349,83 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85462\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85462/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.998855471611023 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988786578178406 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986762404441833, + 0.9988349080085754 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 4, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 4 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -286071,7 +622468,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -286108,7 +622533,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -286151,11 +622604,39 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", - "requirements": "Prerequisite: RLST 838\/SMTC 513.", + "requirements": "Prerequisite: RLST 838/SMTC 513.", "description": "Syriac was an Aramaic dialect that developed its own written tradition in the northern Levantine city of Edessa in classical antiquity. This course provides students with a basic working knowledge of the language, namely, the three principal scripts (Estrangela, Ser\u1e6do, and \"Nestorian\"), verbal morphology, and the fundamental rules of syntax. The course completes the introduction to the Syriac language. Extracts of several Syriac texts are studied for purposes of application. At the end of the course, students are able to read, translate, and analyze simple texts.", "short_title": "Elementary Syriac II", "title": "Elementary Syriac II", @@ -286189,7 +622670,7 @@ "9:00", "10:15", "HQ 109 - Humanities Quadrangle 109", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -286197,7 +622678,7 @@ "9:00", "10:15", "HQ 109 - Humanities Quadrangle 109", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -286209,14 +622690,42 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84763\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84763/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", - "requirements": "Prerequisite: RLST 840\/SMTC 520.", + "requirements": "Prerequisite: RLST 840/SMTC 520.", "description": "The Ugaritic texts from the Bronze Age found at Ras Shamra-Ugarit on the Mediterranean coast of Syria provide the earliest well-attested example of the use of alphabet writing. The Ugaritic corpus comprises more than 2,000 texts of several genres (myths, rituals, incantations, \"scientific\" manuals, letters, administrative documents, and others), written in a \"cuneiform\" script. This course completes the introduction to Ugaritic language. Students have the opportunity to improve their knowledge of Ugaritic literature by reading and analyzing texts in the major genres of Ugaritic literature, with special emphasis on mythological texts.", "short_title": "Introductory Ugaritic II", "title": "Introductory Ugaritic II", @@ -286250,7 +622759,7 @@ "13:30", "15:20", "HQ C05 - Humanities Quadrangle C05", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -286262,10 +622771,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84768\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84768/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -286303,7 +622840,7 @@ "9:25", "11:15", "HQ C05 - Humanities Quadrangle C05", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -286315,10 +622852,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84335\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84335/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -286357,7 +622922,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -286396,7 +622989,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -286433,7 +623054,7 @@ "16:30", "17:20", "WLH 207 - William L. Harkness Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -286441,7 +623062,7 @@ "16:30", "17:20", "WLH 207 - William L. Harkness Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -286455,10 +623076,149 @@ "classnotes": "", "final_exam": "Wednesday, May 10, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84859\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84859/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988858103752136, + 0.9989136457443237, + 0.997605562210083, + 0.9983487129211426, + 0.9989362359046936, + 0.9988813996315002, + 0.9982903599739075, + 0.998830258846283, + 0.9987137317657471, + 0.9988940358161926, + 0.9989270567893982 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989238381385803, + 0.9989159107208252, + 0.9988407492637634, + 0.9965401887893677, + 0.9983038902282715, + 0.9987471103668213, + 0.9994617104530334, + 0.9989147186279297, + 0.9988489151000977, + 0.9988964796066284, + 0.9989184141159058, + 0.9988968372344971 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9968942403793335, + 0.9981922507286072, + 0.9975167512893677, + 0.9989269375801086, + 0.9989184141159058, + 0.9972802400588989, + 0.9987245202064514, + 0.9987926483154297, + 0.9926562309265137, + 0.9989331364631653, + 0.9989314675331116, + 0.9989288449287415, + 0.9988563060760498 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 34, + "final_proportion": 0.9444444444444444, + "final_counts": { + "POSITIVE": 34, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9444444444444444, + "NEGATIVE": 0.05555555555555555 + } + } }, { "season_code": "202301", @@ -286489,7 +623249,7 @@ "15:30", "16:20", "CO493 208 - 493 College Street 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560001" + "https://map.yale.edu/?id=1910#!m/560001" ] ] }, @@ -286506,7 +623266,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -286537,7 +623325,7 @@ "15:30", "16:20", "HLH17 113 - 17 Hillhouse Avenue 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -286554,7 +623342,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -286585,7 +623401,7 @@ "13:30", "14:20", "WLH 009 - William L. Harkness Hall 009", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -286602,7 +623418,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -286633,7 +623477,7 @@ "19:00", "19:50", "WTS A68 - Watson Center 60 Sachem Street A68", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -286650,7 +623494,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -286681,7 +623553,7 @@ "14:30", "15:20", "WLH 009 - William L. Harkness Hall 009", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -286698,7 +623570,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -286729,7 +623629,7 @@ "9:25", "10:15", "BM 013 - Bingham Hall 013", - "https:\/\/map.yale.edu\/?id=1910#!m\/559569" + "https://map.yale.edu/?id=1910#!m/559569" ] ] }, @@ -286746,7 +623646,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -286784,7 +623712,7 @@ "13:00", "14:15", "WTS B60 - Watson Center 60 Sachem Street B60", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -286792,7 +623720,7 @@ "13:00", "14:15", "WTS B60 - Watson Center 60 Sachem Street B60", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -286809,10 +623737,129 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85741\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85741/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988452196121216, + 0.9988781809806824, + 0.9987875819206238, + 0.9973088502883911, + 0.9987602233886719, + 0.9988971948623657, + 0.9988038539886475, + 0.998907208442688 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988721013069153, + 0.9989045858383179, + 0.9987855553627014, + 0.9989217519760132, + 0.9989033937454224, + 0.9988917708396912, + 0.9988158941268921, + 0.9988967180252075 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989194869995117, + 0.9989134073257446, + 0.9983333945274353, + 0.9989089965820312, + 0.9988763928413391, + 0.9982553124427795, + 0.9989336133003235, + 0.9979352951049805, + 0.9988394379615784, + 0.9982553124427795, + 0.9989087581634521 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 27, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 27 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -286849,7 +623896,7 @@ "9:00", "10:15", "WLH 208 - William L. Harkness Hall 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -286857,7 +623904,7 @@ "9:00", "10:15", "WLH 208 - William L. Harkness Hall 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -286871,10 +623918,115 @@ "classnotes": "", "final_exam": "Tuesday, May 9, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84863\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84863/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989045858383179, + 0.9986465573310852, + 0.9989354014396667, + 0.9988604784011841, + 0.9989134073257446, + 0.998893678188324 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989149570465088, + 0.9989138841629028, + 0.9987095594406128, + 0.9989264607429504, + 0.9985681772232056, + 0.9994246959686279, + 0.9989163875579834 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9916894435882568, + 0.998931348323822, + 0.998866081237793, + 0.9971089959144592, + 0.9988303780555725, + 0.9989351630210876 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 0.9473684210526315, + "final_counts": { + "POSITIVE": 18, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9473684210526315, + "NEGATIVE": 0.05263157894736842 + } + } }, { "season_code": "202301", @@ -286905,7 +624057,7 @@ "10:30", "11:20", "WLH 115 - William L. Harkness Hall 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -286922,7 +624074,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -286953,7 +624133,7 @@ "19:00", "19:50", "WTS B30 - Watson Center 60 Sachem Street B30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -286970,7 +624150,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -287026,7 +624234,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -287082,7 +624318,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -287138,7 +624402,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -287194,7 +624486,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -287232,7 +624552,7 @@ "14:30", "15:45", "WLH 207 - William L. Harkness Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -287240,7 +624560,7 @@ "14:30", "15:45", "WLH 207 - William L. Harkness Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -287254,10 +624574,113 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85869\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85869/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987719655036926, + 0.9989142417907715, + 0.9988862872123718, + 0.9988529682159424, + 0.9988275170326233, + 0.9987378716468811 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9993509650230408, + 0.9989339709281921, + 0.9989294409751892, + 0.9989132881164551, + 0.99660325050354, + 0.9987853169441223 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 4 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984641075134277, + 0.9988951086997986, + 0.9986728429794312, + 0.9988771080970764, + 0.9988515377044678, + 0.9978795051574707 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 0.8888888888888888, + "final_counts": { + "POSITIVE": 16, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + } + } }, { "season_code": "202301", @@ -287296,7 +624719,7 @@ "16:00", "17:15", "WLH 114 - William L. Harkness Hall 114", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -287304,7 +624727,7 @@ "16:00", "17:15", "WLH 114 - William L. Harkness Hall 114", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -287320,10 +624743,143 @@ "classnotes": "", "final_exam": "Thursday, May 4, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84867\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84867/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987815022468567, + 0.998894989490509, + 0.9988275170326233, + 0.9988464117050171, + 0.9989252686500549, + 0.9989128112792969, + 0.9989368319511414, + 0.998456597328186, + 0.9988987445831299, + 0.9989182949066162 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989011287689209, + 0.9976363182067871, + 0.9989342093467712, + 0.9989225268363953, + 0.9822700619697571, + 0.998871386051178, + 0.9988910555839539, + 0.9988943934440613, + 0.998921275138855, + 0.9972112774848938, + 0.9988940358161926, + 0.9989288449287415 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985517859458923, + 0.9988458156585693, + 0.9989181756973267, + 0.9989210367202759, + 0.998481810092926, + 0.998938262462616, + 0.9979693293571472, + 0.9988540410995483, + 0.9994710087776184, + 0.9989180564880371, + 0.9989054203033447 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9090909090909091 + ] + }, + "final_label": "POSITIVE", + "final_count": 32, + "final_proportion": 0.9696969696969697, + "final_counts": { + "POSITIVE": 32, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9696969696969697, + "NEGATIVE": 0.030303030303030304 + } + } }, { "season_code": "202301", @@ -287356,7 +624912,7 @@ "16:00", "16:50", "WLH 210 - William L. Harkness Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -287375,7 +624931,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -287408,7 +624992,7 @@ "17:00", "17:50", "WLH 001 - William L. Harkness Hall 001", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -287427,7 +625011,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -287487,7 +625099,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -287547,7 +625187,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -287607,7 +625275,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -287667,7 +625363,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -287705,7 +625429,7 @@ "14:30", "15:45", "WLH 003 - William L. Harkness Hall 003", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -287713,7 +625437,7 @@ "14:30", "15:45", "WLH 003 - William L. Harkness Hall 003", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -287730,10 +625454,123 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84870\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84870/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9963160157203674, + 0.9986238479614258, + 0.9888725876808167, + 0.9987906813621521, + 0.9988479614257812, + 0.9988968372344971, + 0.9985563158988953, + 0.9986685514450073, + 0.9987340569496155, + 0.9989026784896851 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988705515861511, + 0.9953646659851074, + 0.9987350106239319, + 0.9987789988517761, + 0.9989045858383179, + 0.9989301562309265 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985018968582153, + 0.8180356025695801, + 0.9989159107208252, + 0.998830258846283, + 0.9989354014396667, + 0.9865156412124634, + 0.9989064931869507, + 0.9988784193992615 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 24, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 24 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -287771,7 +625608,7 @@ "16:00", "17:15", "WTS A51 - Watson Center 60 Sachem Street A51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -287779,7 +625616,7 @@ "16:00", "17:15", "WTS A51 - Watson Center 60 Sachem Street A51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -287793,10 +625630,81 @@ "classnotes": "", "final_exam": "Wednesday, May 10, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84874\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84874/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984931945800781 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988687634468079 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987494945526123 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 3, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 3 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -287827,7 +625735,7 @@ "15:30", "16:20", "CO493 106 - 493 College Street 106", - "https:\/\/map.yale.edu\/?id=1910#!m\/560001" + "https://map.yale.edu/?id=1910#!m/560001" ] ] }, @@ -287844,7 +625752,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -287875,7 +625811,7 @@ "13:30", "14:20", "WTS A42 - Watson Center 60 Sachem Street A42", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -287892,7 +625828,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -287923,7 +625887,7 @@ "14:30", "15:20", "WTS B31 - Watson Center 60 Sachem Street B31", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -287940,7 +625904,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -287971,7 +625963,7 @@ "14:30", "15:20", "WLH 203 - William L. Harkness Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -287988,7 +625980,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -288044,7 +626064,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -288081,7 +626129,7 @@ "9:00", "10:15", "GH - GH", - "https:\/\/map.yale.edu\/?id=1910#!m\/560103" + "https://map.yale.edu/?id=1910#!m/560103" ] ], "Thursday": [ @@ -288089,7 +626137,7 @@ "9:00", "10:15", "GH - GH", - "https:\/\/map.yale.edu\/?id=1910#!m\/560103" + "https://map.yale.edu/?id=1910#!m/560103" ] ] }, @@ -288103,10 +626151,137 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84877\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84877/assignments/syllabus", "fysem": false, "sysem": true, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986727237701416, + 0.975426435470581, + 0.9988672733306885, + 0.9988884329795837, + 0.9989292025566101, + 0.9962510466575623, + 0.9989314675331116, + 0.9989311099052429, + 0.9988232254981995, + 0.9987002611160278 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9979648590087891, + 0.9988918900489807, + 0.9989039897918701, + 0.9988880753517151, + 0.9988372921943665, + 0.9989263415336609, + 0.9987645149230957, + 0.998897910118103, + 0.9983131885528564 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988619089126587, + 0.998879611492157, + 0.9989190101623535, + 0.9987832903862, + 0.9983124732971191, + 0.9988910555839539, + 0.9982553124427795, + 0.9989079236984253, + 0.99892657995224, + 0.9989217519760132, + 0.9954825639724731 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9090909090909091 + ] + }, + "final_label": "POSITIVE", + "final_count": 27, + "final_proportion": 0.9, + "final_counts": { + "POSITIVE": 27, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + } + } }, { "season_code": "202301", @@ -288144,7 +626319,7 @@ "13:00", "14:15", "WTS A30 - Watson Center 60 Sachem Street A30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -288152,7 +626327,7 @@ "13:00", "14:15", "WTS A30 - Watson Center 60 Sachem Street A30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -288168,10 +626343,137 @@ "classnotes": "", "final_exam": "Tuesday, May 9, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85405\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/85405/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989307522773743, + 0.9985218644142151, + 0.9981077909469604, + 0.9989013671875, + 0.9987926483154297, + 0.9989026784896851, + 0.9922052025794983, + 0.9982354640960693, + 0.9988791346549988 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988956451416016, + 0.9988982677459717, + 0.9988137483596802, + 0.9989251494407654, + 0.9986579418182373, + 0.9988245368003845, + 0.9986342787742615, + 0.9988730549812317, + 0.9988252520561218, + 0.997819185256958 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988942742347717, + 0.9981257319450378, + 0.9987626075744629, + 0.9989315867424011, + 0.998897910118103, + 0.9922612309455872, + 0.9973117113113403, + 0.9988334774971008, + 0.9971088767051697, + 0.9984989166259766, + 0.9989156723022461 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8181818181818182, + "NEGATIVE": 0.18181818181818182 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8181818181818182 + ] + }, + "final_label": "POSITIVE", + "final_count": 28, + "final_proportion": 0.9333333333333333, + "final_counts": { + "POSITIVE": 28, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9333333333333333, + "NEGATIVE": 0.06666666666666667 + } + } }, { "season_code": "202301", @@ -288208,10 +626510,38 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85965\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/85965/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -288250,7 +626580,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -288290,7 +626648,7 @@ "9:25", "10:15", "WLH 119 - William L. Harkness Hall 119", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -288298,7 +626656,7 @@ "9:25", "10:15", "WLH 119 - William L. Harkness Hall 119", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -288312,10 +626670,239 @@ "classnotes": "During the period between November 14 and November 24, enrollment will be limited to majors. After November 24, registration will be opened to all Yale College students. Please register your interest via the Yale Course Search website. ", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84684\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84684/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985846281051636, + 0.9988105297088623, + 0.9985256791114807, + 0.9985295534133911, + 0.9988969564437866, + 0.9988834261894226, + 0.9977514147758484, + 0.9988563060760498, + 0.9987576007843018, + 0.9975693821907043, + 0.9987862706184387, + 0.9986097812652588, + 0.9974665641784668, + 0.9988927245140076, + 0.9987136125564575, + 0.9987572431564331, + 0.998791515827179, + 0.9944117665290833, + 0.9888995885848999, + 0.9989033937454224, + 0.9988823533058167, + 0.9987388253211975, + 0.9987381100654602, + 0.9591807126998901, + 0.9987437129020691, + 0.9984278678894043 + ], + "sentiment_counts": { + "POSITIVE": 26, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987310767173767, + 0.9988885521888733, + 0.9971687197685242, + 0.998896598815918, + 0.998936116695404, + 0.9794125556945801, + 0.9989044666290283, + 0.9988607168197632, + 0.9988886713981628, + 0.9987872242927551, + 0.9959118366241455, + 0.9987677335739136, + 0.9988596439361572, + 0.9987506866455078, + 0.9949052333831787, + 0.9988143444061279, + 0.9985610842704773, + 0.9994980096817017, + 0.998879611492157, + 0.9988208413124084, + 0.9972012042999268, + 0.999474823474884, + 0.998870313167572, + 0.9988526105880737, + 0.9982838034629822, + 0.9988747239112854 + ], + "sentiment_counts": { + "POSITIVE": 22, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.8461538461538461, + "NEGATIVE": 0.15384615384615385 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8461538461538461 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989081621170044, + 0.9988532066345215, + 0.9982553124427795, + 0.9989147186279297, + 0.9988744854927063, + 0.9988996982574463, + 0.9988558292388916, + 0.9849560856819153, + 0.9989055395126343, + 0.9986552000045776, + 0.9984148740768433, + 0.998860239982605, + 0.9986028075218201, + 0.9982799291610718, + 0.9989160299301147, + 0.9988149404525757, + 0.9987614154815674, + 0.9980523586273193, + 0.9988523721694946, + 0.974129855632782, + 0.9989210367202759, + 0.9982553124427795, + 0.9989327788352966, + 0.9989131689071655, + 0.9989345669746399, + 0.9452022910118103, + 0.9987466335296631, + 0.9989161491394043, + 0.998930037021637 + ], + "sentiment_counts": { + "POSITIVE": 25, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.8620689655172413, + "NEGATIVE": 0.13793103448275862 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8620689655172413 + ] + }, + "final_label": "POSITIVE", + "final_count": 73, + "final_proportion": 0.9012345679012346, + "final_counts": { + "POSITIVE": 73, + "NEGATIVE": 8 + }, + "final_distribution": { + "POSITIVE": 0.9012345679012346, + "NEGATIVE": 0.09876543209876543 + } + } }, { "season_code": "202301", @@ -288349,7 +626936,7 @@ "9:25", "10:15", "BASSLB L70 - Bass Library L70", - "https:\/\/map.yale.edu\/?id=1910#!m\/564574" + "https://map.yale.edu/?id=1910#!m/564574" ] ] }, @@ -288366,7 +626953,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -288400,7 +627015,7 @@ "10:30", "11:20", "BASSLB L70 - Bass Library L70", - "https:\/\/map.yale.edu\/?id=1910#!m\/564574" + "https://map.yale.edu/?id=1910#!m/564574" ] ] }, @@ -288417,7 +627032,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -288451,7 +627094,7 @@ "16:00", "16:50", "WTS A38 - Watson Center 60 Sachem Street A38", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -288468,7 +627111,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -288502,7 +627173,7 @@ "17:00", "17:50", "WTS A38 - Watson Center 60 Sachem Street A38", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -288519,7 +627190,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -288556,7 +627255,7 @@ "10:30", "11:20", "WTS A30 - Watson Center 60 Sachem Street A30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -288564,7 +627263,7 @@ "10:30", "11:20", "WTS A30 - Watson Center 60 Sachem Street A30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -288578,10 +627277,291 @@ "classnotes": "", "final_exam": "Friday, May 5, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84887\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84887/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989088773727417, + 0.998928964138031, + 0.9982983469963074, + 0.9982130527496338, + 0.9988806843757629, + 0.9988711476325989, + 0.9987977743148804, + 0.9988319277763367, + 0.9988841414451599, + 0.9989060163497925, + 0.9987390637397766, + 0.9985761642456055, + 0.998598039150238, + 0.9987272620201111, + 0.9989068508148193, + 0.997782289981842, + 0.9989262223243713, + 0.9968312382698059, + 0.9986774325370789, + 0.9988808035850525, + 0.9976882934570312, + 0.9986332058906555, + 0.9988431930541992, + 0.9693776965141296, + 0.9988962411880493, + 0.9988362193107605, + 0.9987823367118835, + 0.9988521337509155, + 0.9988942742347717, + 0.9988721013069153, + 0.9988780617713928, + 0.998792290687561, + 0.9988634586334229, + 0.9988262057304382 + ], + "sentiment_counts": { + "POSITIVE": 33, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9705882352941176, + "NEGATIVE": 0.029411764705882353 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9705882352941176 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989357590675354, + 0.9989271759986877, + 0.9989287257194519, + 0.9989187717437744, + 0.9982514977455139, + 0.9989216327667236, + 0.9989198446273804, + 0.9989017248153687, + 0.9988771080970764, + 0.998651921749115, + 0.9988085031509399, + 0.9989315867424011, + 0.9989134073257446, + 0.9989207983016968, + 0.9988920092582703, + 0.9988403916358948, + 0.9980908036231995, + 0.9988651275634766, + 0.9988895058631897, + 0.9988847374916077, + 0.9988985061645508, + 0.9987902045249939, + 0.9988547563552856, + 0.9989264607429504, + 0.9988963603973389, + 0.9983175992965698, + 0.9988893866539001, + 0.9989224672317505, + 0.9989284873008728, + 0.998461127281189, + 0.9989318251609802, + 0.9989194869995117, + 0.9985004663467407, + 0.9988497495651245 + ], + "sentiment_counts": { + "POSITIVE": 34, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988975524902344, + 0.9985063672065735, + 0.9989377856254578, + 0.9988923668861389, + 0.9989393353462219, + 0.9986383318901062, + 0.9988839030265808, + 0.9989312291145325, + 0.9981933236122131, + 0.9988577365875244, + 0.9988368153572083, + 0.9989187717437744, + 0.9988149404525757, + 0.9988666772842407, + 0.9988372921943665, + 0.9985116124153137, + 0.998916745185852, + 0.9987770915031433, + 0.9989359974861145, + 0.9988032579421997, + 0.9976268410682678, + 0.9969602227210999, + 0.9988693594932556, + 0.9987545013427734, + 0.9989332556724548, + 0.9989230036735535, + 0.9989244341850281, + 0.9989328980445862, + 0.998927891254425, + 0.9987441301345825, + 0.9988905787467957, + 0.9988144636154175, + 0.998855471611023, + 0.9989209175109863, + 0.9989331364631653, + 0.9989251494407654, + 0.9989237189292908, + 0.9989381432533264, + 0.9989004135131836 + ], + "sentiment_counts": { + "POSITIVE": 38, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9743589743589743, + "NEGATIVE": 0.02564102564102564 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9743589743589743 + ] + }, + "final_label": "POSITIVE", + "final_count": 105, + "final_proportion": 0.9813084112149533, + "final_counts": { + "POSITIVE": 105, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9813084112149533, + "NEGATIVE": 0.018691588785046728 + } + } }, { "season_code": "202301", @@ -288612,7 +627592,7 @@ "10:30", "11:20", "WLH 006 - William L. Harkness Hall 006", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -288629,7 +627609,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -288660,7 +627668,7 @@ "15:30", "16:20", "CO493 208 - 493 College Street 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560001" + "https://map.yale.edu/?id=1910#!m/560001" ] ] }, @@ -288677,7 +627685,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -288708,7 +627744,7 @@ "17:00", "17:50", "WTS A68 - Watson Center 60 Sachem Street A68", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -288725,7 +627761,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -288756,7 +627820,7 @@ "11:35", "12:25", "WTS B51 - Watson Center 60 Sachem Street B51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -288773,7 +627837,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -288804,7 +627896,7 @@ "14:30", "15:20", "WTS A38 - Watson Center 60 Sachem Street A38", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -288821,7 +627913,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -288852,7 +627972,7 @@ "16:00", "16:50", "CO493 208 - 493 College Street 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560001" + "https://map.yale.edu/?id=1910#!m/560001" ] ] }, @@ -288869,7 +627989,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -288909,7 +628057,7 @@ "13:30", "15:20", "WTS B39 - Watson Center 60 Sachem Street B39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -288925,10 +628073,117 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84500\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84500/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998842179775238, + 0.998589813709259, + 0.9985631108283997, + 0.9984286427497864, + 0.9988778233528137, + 0.9980494976043701 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989332556724548, + 0.9989296793937683, + 0.9989269375801086, + 0.9987540245056152, + 0.997100293636322, + 0.998879611492157 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989259839057922, + 0.9989350438117981, + 0.9986311793327332, + 0.9988939166069031, + 0.9988688826560974, + 0.9988760352134705, + 0.9957029223442078, + 0.9989074468612671, + 0.9988679885864258 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 21, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 21 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -288966,7 +628221,7 @@ "9:25", "11:15", "RKZ 05 - Rosenkranz Hall 05", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -288985,10 +628240,105 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84891\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84891/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989256262779236, + 0.9986146688461304, + 0.9988413453102112, + 0.9989076852798462 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989017248153687, + 0.9994670748710632, + 0.9989145994186401, + 0.9989283680915833 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989312291145325, + 0.9988490343093872, + 0.9987541437149048, + 0.9989312291145325, + 0.9989271759986877, + 0.9989109039306641 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 0.9285714285714286, + "final_counts": { + "POSITIVE": 13, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9285714285714286, + "NEGATIVE": 0.07142857142857142 + } + } }, { "season_code": "202301", @@ -289027,7 +628377,7 @@ "15:30", "17:20", "PR210 203 - 210 Prospect Street 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/559971" + "https://map.yale.edu/?id=1910#!m/559971" ] ] }, @@ -289042,10 +628392,119 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84894\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84894/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988918900489807, + 0.9987791180610657, + 0.9988778233528137, + 0.9987720847129822, + 0.9989249110221863, + 0.9993465542793274 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989144802093506, + 0.9986851811408997, + 0.9990808963775635, + 0.9987857937812805, + 0.998875081539154, + 0.9995096921920776, + 0.9985098242759705 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.7142857142857143, + "NEGATIVE": 0.2857142857142857 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7142857142857143 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.999498724937439, + 0.998877227306366, + 0.9981572031974792, + 0.9964326620101929, + 0.9988914132118225, + 0.998897910118103, + 0.9975636005401611, + 0.997117280960083 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 5 + }, + "sentiment_distribution": { + "NEGATIVE": 0.375, + "POSITIVE": 0.625 + }, + "sentiment_overall": [ + "POSITIVE", + 0.625 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 0.7142857142857143, + "final_counts": { + "POSITIVE": 15, + "NEGATIVE": 6 + }, + "final_distribution": { + "POSITIVE": 0.7142857142857143, + "NEGATIVE": 0.2857142857142857 + } + } }, { "season_code": "202301", @@ -289084,7 +628543,7 @@ "13:30", "15:20", "WLH 202 - William L. Harkness Hall 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -289101,10 +628560,145 @@ "classnotes": "Priority is given to students in Education Studies (certificate & scholars program) and then by course year. Priority is also given to students who have taken EDST110. Please indicate your interest in the course as well as major, EDST program and whether you've taken EDST 110 when you request permission.\n", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83848\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83848/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985525012016296, + 0.9987898468971252, + 0.9988873600959778, + 0.9988933205604553, + 0.9987541437149048, + 0.9989078044891357, + 0.9986770749092102, + 0.9988848567008972, + 0.9986936450004578, + 0.9989162683486938, + 0.9988781809806824 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988829493522644, + 0.998867392539978, + 0.998928964138031, + 0.998795747756958, + 0.9987998008728027, + 0.9988973140716553, + 0.9988933205604553, + 0.9989362359046936, + 0.9988799691200256, + 0.9989381432533264, + 0.9989084005355835, + 0.9989307522773743 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985396862030029, + 0.9989180564880371, + 0.9989120960235596, + 0.998842716217041, + 0.9989150762557983, + 0.9988678693771362, + 0.998921275138855, + 0.9989272952079773, + 0.9989367127418518, + 0.9989281296730042, + 0.9988818764686584, + 0.9977533221244812 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 35, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 35 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -289143,7 +628737,7 @@ "15:30", "17:20", "SML 207 - Sterling Memorial Library 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/563698" + "https://map.yale.edu/?id=1910#!m/563698" ] ] }, @@ -289157,10 +628751,109 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83789\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83789/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989134073257446, + 0.9988141059875488, + 0.9989134073257446, + 0.9987566471099854, + 0.9966346621513367 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9898389577865601, + 0.9988338351249695, + 0.9989342093467712, + 0.9988613128662109, + 0.99883633852005, + 0.9988731741905212 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998785674571991, + 0.9989246726036072, + 0.9989206790924072, + 0.9989014863967896, + 0.9988817572593689, + 0.9989301562309265 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 17 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -289197,7 +628890,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -289240,7 +628961,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -289283,7 +629032,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -289326,7 +629103,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -289363,7 +629168,7 @@ "13:30", "15:20", "CO493 208 - 493 College Street 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560001" + "https://map.yale.edu/?id=1910#!m/560001" ] ] }, @@ -289375,10 +629180,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84897\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84897/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -289415,7 +629248,7 @@ "13:30", "15:20", "CO493 208 - 493 College Street 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560001" + "https://map.yale.edu/?id=1910#!m/560001" ] ] }, @@ -289427,10 +629260,105 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84900\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84900/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994696974754333, + 0.9987574815750122, + 0.9987164735794067, + 0.9987614154815674 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.25, + "POSITIVE": 0.75 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.995661199092865, + 0.9982748031616211, + 0.9987475872039795, + 0.9989215135574341, + 0.9888995885848999 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9975557327270508, + 0.9976629018783569, + 0.9952144622802734, + 0.9976215958595276, + 0.9988358616828918 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 0.8571428571428571, + "final_counts": { + "NEGATIVE": 2, + "POSITIVE": 12 + }, + "final_distribution": { + "NEGATIVE": 0.14285714285714285, + "POSITIVE": 0.8571428571428571 + } + } }, { "season_code": "202301", @@ -289468,7 +629396,7 @@ "13:30", "15:20", "RKZ 102 - Rosenkranz Hall 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -289480,10 +629408,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84692\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84692/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -289521,7 +629477,7 @@ "16:00", "17:15", "WTS A51 - Watson Center 60 Sachem Street A51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -289529,7 +629485,7 @@ "16:00", "17:15", "WTS A51 - Watson Center 60 Sachem Street A51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -289541,10 +629497,81 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84874\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84874/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984931945800781 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988687634468079 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987494945526123 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 3, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 3 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -289582,7 +629609,7 @@ "9:25", "11:15", "RKZ 05 - Rosenkranz Hall 05", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -289597,10 +629624,105 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84891\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84891/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989256262779236, + 0.9986146688461304, + 0.9988413453102112, + 0.9989076852798462 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989017248153687, + 0.9994670748710632, + 0.9989145994186401, + 0.9989283680915833 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989312291145325, + 0.9988490343093872, + 0.9987541437149048, + 0.9989312291145325, + 0.9989271759986877, + 0.9989109039306641 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 0.9285714285714286, + "final_counts": { + "POSITIVE": 13, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9285714285714286, + "NEGATIVE": 0.07142857142857142 + } + } }, { "season_code": "202301", @@ -289652,12 +629774,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This weekly workshop is dedicated to group discussion of work-in-progress by visiting scholars, Yale graduate students, and in-house faculty from Sociology and affiliated disciplines. Papers are distributed a week ahead of time and also posted on the website of the Center for Comparative Research (http:\/\/ccr.yale.edu). Students who are enrolled for credit are expected to present a paper-in-progress.", + "description": "This weekly workshop is dedicated to group discussion of work-in-progress by visiting scholars, Yale graduate students, and in-house faculty from Sociology and affiliated disciplines. Papers are distributed a week ahead of time and also posted on the website of the Center for Comparative Research (http://ccr.yale.edu). Students who are enrolled for credit are expected to present a paper-in-progress.", "short_title": "Comparative Research Workshop", "title": "Comparative Research Workshop", "school": "GS", @@ -289690,7 +629840,7 @@ "12:00", "13:30", "WTS A32 - Watson Center 60 Sachem Street A32", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -289705,7 +629855,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -289742,7 +629920,7 @@ "9:25", "11:15", "WTS A35 - Watson Center 60 Sachem Street A35", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -289756,10 +629934,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84827\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84827/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -289797,7 +630003,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -289835,7 +630069,7 @@ "9:25", "11:15", "HQ C01 - Humanities Quadrangle C01", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -289849,10 +630083,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84835\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84835/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -289904,10 +630166,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84839\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84839/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -289944,7 +630234,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -289987,7 +630305,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -290030,7 +630376,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -290069,7 +630443,7 @@ "15:30", "17:20", "PR210 203 - 210 Prospect Street 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/559971" + "https://map.yale.edu/?id=1910#!m/559971" ] ] }, @@ -290081,10 +630455,119 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84894\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84894/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988918900489807, + 0.9987791180610657, + 0.9988778233528137, + 0.9987720847129822, + 0.9989249110221863, + 0.9993465542793274 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989144802093506, + 0.9986851811408997, + 0.9990808963775635, + 0.9987857937812805, + 0.998875081539154, + 0.9995096921920776, + 0.9985098242759705 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.7142857142857143, + "NEGATIVE": 0.2857142857142857 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7142857142857143 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.999498724937439, + 0.998877227306366, + 0.9981572031974792, + 0.9964326620101929, + 0.9988914132118225, + 0.998897910118103, + 0.9975636005401611, + 0.997117280960083 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 5 + }, + "sentiment_distribution": { + "NEGATIVE": 0.375, + "POSITIVE": 0.625 + }, + "sentiment_overall": [ + "POSITIVE", + 0.625 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 0.7142857142857143, + "final_counts": { + "POSITIVE": 15, + "NEGATIVE": 6 + }, + "final_distribution": { + "POSITIVE": 0.7142857142857143, + "NEGATIVE": 0.2857142857142857 + } + } }, { "season_code": "202301", @@ -290121,7 +630604,7 @@ "11:00", "13:00", "PR210 203 - 210 Prospect Street 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/559971" + "https://map.yale.edu/?id=1910#!m/559971" ] ] }, @@ -290136,7 +630619,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -290173,7 +630684,7 @@ "9:25", "10:15", "WTS A38 - Watson Center 60 Sachem Street A38", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Tuesday": [ @@ -290181,7 +630692,7 @@ "9:25", "10:15", "WTS A38 - Watson Center 60 Sachem Street A38", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -290189,7 +630700,7 @@ "9:25", "10:15", "WTS A38 - Watson Center 60 Sachem Street A38", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -290197,7 +630708,7 @@ "9:25", "10:15", "WTS A38 - Watson Center 60 Sachem Street A38", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Friday": [ @@ -290205,7 +630716,7 @@ "9:25", "10:15", "WTS A38 - Watson Center 60 Sachem Street A38", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -290219,10 +630730,121 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84848\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84848/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9966261386871338, + 0.9989185333251953, + 0.9987757802009583, + 0.9987064599990845, + 0.9988592863082886, + 0.9975770115852356, + 0.9989172220230103 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994862079620361, + 0.9976649284362793, + 0.9986889958381653, + 0.9985861778259277, + 0.9981903433799744, + 0.9987939596176147, + 0.9988601207733154, + 0.998782217502594 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 7 + }, + "sentiment_distribution": { + "NEGATIVE": 0.125, + "POSITIVE": 0.875 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989111423492432, + 0.9988569021224976, + 0.998857855796814, + 0.9966461062431335, + 0.9965041875839233, + 0.998803973197937, + 0.9989261031150818 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 0.9090909090909091, + "final_counts": { + "POSITIVE": 20, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + } + } }, { "season_code": "202301", @@ -290259,7 +630881,7 @@ "10:30", "11:20", "HQ 229 - Humanities Quadrangle 229", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Tuesday": [ @@ -290267,7 +630889,7 @@ "10:30", "11:20", "HQ 229 - Humanities Quadrangle 229", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -290275,7 +630897,7 @@ "10:30", "11:20", "HQ 229 - Humanities Quadrangle 229", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -290283,7 +630905,7 @@ "10:30", "11:20", "HQ 229 - Humanities Quadrangle 229", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Friday": [ @@ -290291,7 +630913,7 @@ "10:30", "11:20", "HQ 229 - Humanities Quadrangle 229", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -290305,10 +630927,89 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84852\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84852/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9902925491333008, + 0.9988331198692322, + 0.9987608194351196 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985017776489258, + 0.9988685846328735 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988849759101868, + 0.998890221118927 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 7 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -290345,7 +631046,7 @@ "10:30", "11:20", "WTS A38 - Watson Center 60 Sachem Street A38", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Tuesday": [ @@ -290353,7 +631054,7 @@ "10:30", "11:20", "WTS A38 - Watson Center 60 Sachem Street A38", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -290361,7 +631062,7 @@ "10:30", "11:20", "WTS A38 - Watson Center 60 Sachem Street A38", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -290369,7 +631070,7 @@ "10:30", "11:20", "WTS A38 - Watson Center 60 Sachem Street A38", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Friday": [ @@ -290377,7 +631078,7 @@ "10:30", "11:20", "WTS A38 - Watson Center 60 Sachem Street A38", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -290391,10 +631092,101 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84855\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84855/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988138675689697, + 0.9989147186279297, + 0.9923354983329773, + 0.9988937973976135, + 0.9979830980300903 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989053010940552, + 0.9987438321113586, + 0.998712420463562, + 0.9989008903503418 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989221096038818, + 0.9978330731391907, + 0.9989239573478699, + 0.9988939166069031 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 13 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -290431,7 +631223,7 @@ "11:35", "12:25", "WTS A38 - Watson Center 60 Sachem Street A38", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Tuesday": [ @@ -290439,7 +631231,7 @@ "11:35", "12:25", "WTS A38 - Watson Center 60 Sachem Street A38", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -290447,7 +631239,7 @@ "11:35", "12:25", "WTS A38 - Watson Center 60 Sachem Street A38", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -290455,7 +631247,7 @@ "11:35", "12:25", "WTS A38 - Watson Center 60 Sachem Street A38", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Friday": [ @@ -290463,7 +631255,7 @@ "11:35", "12:25", "WTS A38 - Watson Center 60 Sachem Street A38", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -290477,10 +631269,99 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84858\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84858/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983704686164856, + 0.9988143444061279, + 0.9968859553337097, + 0.9953376054763794 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.99285489320755, + 0.9995067119598389, + 0.989304780960083, + 0.9988853335380554 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988939166069031, + 0.9981922507286072, + 0.997117280960083 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 0.8181818181818182, + "final_counts": { + "POSITIVE": 9, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8181818181818182, + "NEGATIVE": 0.18181818181818182 + } + } }, { "season_code": "202301", @@ -290517,7 +631398,7 @@ "9:25", "10:15", "WLH 013 - William L. Harkness Hall 013", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Tuesday": [ @@ -290525,7 +631406,7 @@ "9:25", "10:15", "WLH 013 - William L. Harkness Hall 013", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -290533,7 +631414,7 @@ "9:25", "10:15", "WLH 013 - William L. Harkness Hall 013", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -290541,7 +631422,7 @@ "9:25", "10:15", "WLH 013 - William L. Harkness Hall 013", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Friday": [ @@ -290549,7 +631430,7 @@ "9:25", "10:15", "WLH 013 - William L. Harkness Hall 013", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -290563,10 +631444,111 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84862\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84862/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9976851940155029, + 0.9988200068473816, + 0.9953305721282959, + 0.998807430267334, + 0.9989244341850281, + 0.9988937973976135 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994422793388367, + 0.9988657236099243, + 0.9988836646080017, + 0.9987553358078003, + 0.9987988471984863 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 4 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2, + "POSITIVE": 0.8 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9670972228050232, + 0.9987882971763611, + 0.998773992061615, + 0.9969670176506042, + 0.9984753727912903, + 0.9989148378372192 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 4 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 0.8235294117647058, + "final_counts": { + "POSITIVE": 14, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.8235294117647058, + "NEGATIVE": 0.17647058823529413 + } + } }, { "season_code": "202301", @@ -290603,7 +631585,7 @@ "9:25", "10:15", "WLH 002 - William L. Harkness Hall 002", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Tuesday": [ @@ -290611,7 +631593,7 @@ "9:25", "10:15", "WLH 002 - William L. Harkness Hall 002", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -290619,7 +631601,7 @@ "9:25", "10:15", "WLH 002 - William L. Harkness Hall 002", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -290627,7 +631609,7 @@ "9:25", "10:15", "WLH 002 - William L. Harkness Hall 002", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Friday": [ @@ -290635,7 +631617,7 @@ "9:25", "10:15", "WLH 002 - William L. Harkness Hall 002", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -290649,10 +631631,125 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84866\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84866/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988068342208862, + 0.9988425970077515, + 0.9989327788352966, + 0.998799204826355, + 0.9984172582626343, + 0.9988642930984497, + 0.9988969564437866, + 0.9827834367752075 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988652467727661, + 0.9971665740013123, + 0.9985059499740601, + 0.9984316229820251, + 0.9928447604179382, + 0.9988969564437866, + 0.9946907162666321, + 0.9994717240333557 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9948405623435974, + 0.9961423277854919, + 0.9983184337615967, + 0.998932421207428, + 0.9988957643508911, + 0.9988671541213989, + 0.9985723495483398, + 0.9910575151443481 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 5 + }, + "sentiment_distribution": { + "NEGATIVE": 0.375, + "POSITIVE": 0.625 + }, + "sentiment_overall": [ + "POSITIVE", + 0.625 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 0.7916666666666666, + "final_counts": { + "POSITIVE": 19, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.7916666666666666, + "NEGATIVE": 0.20833333333333334 + } + } }, { "season_code": "202301", @@ -290689,7 +631786,7 @@ "9:25", "10:15", "WLH 001 - William L. Harkness Hall 001", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Tuesday": [ @@ -290697,7 +631794,7 @@ "9:25", "10:15", "WLH 001 - William L. Harkness Hall 001", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -290705,7 +631802,7 @@ "9:25", "10:15", "WLH 001 - William L. Harkness Hall 001", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -290713,7 +631810,7 @@ "9:25", "10:15", "WLH 001 - William L. Harkness Hall 001", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Friday": [ @@ -290721,7 +631818,7 @@ "9:25", "10:15", "WLH 001 - William L. Harkness Hall 001", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -290735,10 +631832,115 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84871\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84871/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986177682876587, + 0.9988793730735779, + 0.9988753199577332, + 0.9985561966896057, + 0.9988852143287659, + 0.9968705773353577, + 0.9987843632698059 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988665580749512, + 0.9986201524734497, + 0.9987596273422241, + 0.9993157386779785, + 0.9989080429077148, + 0.9983094930648804 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988573789596558, + 0.9979637861251831, + 0.9986608028411865, + 0.9986482262611389, + 0.9995015859603882, + 0.9988359808921814 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 0.8421052631578947, + "final_counts": { + "POSITIVE": 16, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.8421052631578947, + "NEGATIVE": 0.15789473684210525 + } + } }, { "season_code": "202301", @@ -290775,7 +631977,7 @@ "10:30", "11:20", "WLH 013 - William L. Harkness Hall 013", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Tuesday": [ @@ -290783,7 +631985,7 @@ "10:30", "11:20", "WLH 013 - William L. Harkness Hall 013", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -290791,7 +631993,7 @@ "10:30", "11:20", "WLH 013 - William L. Harkness Hall 013", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -290799,7 +632001,7 @@ "10:30", "11:20", "WLH 013 - William L. Harkness Hall 013", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Friday": [ @@ -290807,7 +632009,7 @@ "10:30", "11:20", "WLH 013 - William L. Harkness Hall 013", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -290821,10 +632023,119 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84875\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84875/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988705515861511, + 0.9987486600875854, + 0.998915433883667, + 0.9986963868141174, + 0.9988518953323364, + 0.9987937211990356, + 0.9988934397697449 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998878538608551, + 0.9988991022109985, + 0.9988558292388916, + 0.9988783001899719, + 0.9984596967697144, + 0.998863935470581, + 0.9930194020271301 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989105463027954, + 0.9987521171569824, + 0.9988467693328857, + 0.9989389777183533, + 0.9984745383262634, + 0.9989292025566101, + 0.9988887906074524, + 0.9988459348678589 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 22, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 22 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -290861,7 +632172,7 @@ "10:30", "11:20", "WTS A48 - Watson Center 60 Sachem Street A48", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Tuesday": [ @@ -290869,7 +632180,7 @@ "10:30", "11:20", "WTS A48 - Watson Center 60 Sachem Street A48", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -290877,7 +632188,7 @@ "10:30", "11:20", "WTS A48 - Watson Center 60 Sachem Street A48", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -290885,7 +632196,7 @@ "10:30", "11:20", "WTS A48 - Watson Center 60 Sachem Street A48", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Friday": [ @@ -290893,7 +632204,7 @@ "10:30", "11:20", "WTS A48 - Watson Center 60 Sachem Street A48", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -290909,10 +632220,113 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84880\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84880/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998301088809967, + 0.9988490343093872, + 0.9984225034713745, + 0.9988611936569214, + 0.9988320469856262, + 0.9988939166069031, + 0.9983716607093811 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9975511431694031, + 0.9983066320419312, + 0.9988995790481567, + 0.9988214373588562, + 0.998921275138855 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 4 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2, + "POSITIVE": 0.8 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989010095596313, + 0.9987180233001709, + 0.998847246170044, + 0.9988275170326233, + 0.9989308714866638, + 0.997117280960083 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 0.9444444444444444, + "final_counts": { + "POSITIVE": 17, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9444444444444444, + "NEGATIVE": 0.05555555555555555 + } + } }, { "season_code": "202301", @@ -290949,7 +632363,7 @@ "10:30", "11:20", "WLH 001 - William L. Harkness Hall 001", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Tuesday": [ @@ -290957,7 +632371,7 @@ "10:30", "11:20", "WLH 001 - William L. Harkness Hall 001", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -290965,7 +632379,7 @@ "10:30", "11:20", "WLH 001 - William L. Harkness Hall 001", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -290973,7 +632387,7 @@ "10:30", "11:20", "WLH 001 - William L. Harkness Hall 001", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Friday": [ @@ -290981,7 +632395,7 @@ "10:30", "11:20", "WLH 001 - William L. Harkness Hall 001", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -290995,10 +632409,117 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84871\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84871/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998792290687561, + 0.9988628625869751, + 0.9989179372787476, + 0.99875807762146, + 0.9985169768333435, + 0.9420201182365417 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987795948982239, + 0.9994727969169617, + 0.9953873753547668, + 0.9989005327224731, + 0.9988721013069153, + 0.9982838034629822, + 0.9988946318626404 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9986024498939514, + 0.9979027509689331, + 0.9988853335380554, + 0.9989314675331116, + 0.9984801411628723, + 0.9989157915115356, + 0.9911720156669617 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 0.9, + "final_counts": { + "POSITIVE": 18, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + } + } }, { "season_code": "202301", @@ -291075,10 +632596,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84888\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84888/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -291115,7 +632664,7 @@ "11:35", "12:25", "WTS A48 - Watson Center 60 Sachem Street A48", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Tuesday": [ @@ -291123,7 +632672,7 @@ "11:35", "12:25", "WTS A48 - Watson Center 60 Sachem Street A48", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -291131,7 +632680,7 @@ "11:35", "12:25", "WTS A48 - Watson Center 60 Sachem Street A48", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -291139,7 +632688,7 @@ "11:35", "12:25", "WTS A48 - Watson Center 60 Sachem Street A48", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Friday": [ @@ -291147,7 +632696,7 @@ "11:35", "12:25", "WTS A48 - Watson Center 60 Sachem Street A48", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -291161,10 +632710,117 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84880\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84880/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988573789596558, + 0.998665452003479, + 0.9922367930412292, + 0.997897744178772, + 0.9986988306045532, + 0.9988376498222351, + 0.9988092184066772, + 0.9980630278587341 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987370371818542, + 0.9989174604415894, + 0.998855710029602, + 0.9988221526145935, + 0.998894989490509, + 0.9989277720451355 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9987421631813049, + 0.9984678626060486, + 0.9987592697143555, + 0.9882733225822449, + 0.9988669157028198, + 0.9993513226509094 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 0.8, + "final_counts": { + "POSITIVE": 16, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + } + } }, { "season_code": "202301", @@ -291201,7 +632857,7 @@ "11:35", "12:25", "WLH 002 - William L. Harkness Hall 002", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Tuesday": [ @@ -291209,7 +632865,7 @@ "11:35", "12:25", "WLH 002 - William L. Harkness Hall 002", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -291217,7 +632873,7 @@ "11:35", "12:25", "WLH 002 - William L. Harkness Hall 002", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -291225,7 +632881,7 @@ "11:35", "12:25", "WLH 002 - William L. Harkness Hall 002", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Friday": [ @@ -291233,7 +632889,7 @@ "11:35", "12:25", "WLH 002 - William L. Harkness Hall 002", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -291247,10 +632903,133 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84895\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84895/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988090991973877, + 0.9882935285568237, + 0.9988300204277039, + 0.9969505071640015, + 0.9987719655036926, + 0.9980450868606567, + 0.9988435506820679, + 0.9987391829490662, + 0.9988641738891602 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9946897029876709, + 0.9979988932609558, + 0.9987107515335083, + 0.9914371371269226, + 0.9987874627113342, + 0.9987046718597412, + 0.9988597631454468, + 0.9988491535186768, + 0.9987727999687195, + 0.9992914199829102 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988270401954651, + 0.9985595345497131, + 0.998375654220581, + 0.997117280960083, + 0.9978901743888855, + 0.9987024068832397, + 0.9980792999267578, + 0.9994964599609375, + 0.9986625909805298 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "final_label": "POSITIVE", + "final_count": 26, + "final_proportion": 0.9285714285714286, + "final_counts": { + "POSITIVE": 26, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9285714285714286, + "NEGATIVE": 0.07142857142857142 + } + } }, { "season_code": "202301", @@ -291286,10 +633065,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84898\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84898/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -291326,7 +633133,7 @@ "9:25", "10:15", "WALL81 401 - 81 Wall Street 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ], "Tuesday": [ @@ -291334,7 +633141,7 @@ "9:25", "10:15", "WALL81 401 - 81 Wall Street 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ], "Wednesday": [ @@ -291342,7 +633149,7 @@ "9:25", "10:15", "WALL81 401 - 81 Wall Street 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ], "Thursday": [ @@ -291350,7 +633157,7 @@ "9:25", "10:15", "WALL81 401 - 81 Wall Street 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ], "Friday": [ @@ -291358,7 +633165,7 @@ "9:25", "10:15", "WALL81 401 - 81 Wall Street 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -291372,10 +633179,119 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84901\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84901/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985849857330322, + 0.9979222416877747, + 0.9989007711410522, + 0.9989018440246582, + 0.998494029045105, + 0.9987541437149048, + 0.9672147631645203, + 0.9989338517189026 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988381266593933, + 0.9978579878807068, + 0.9988697171211243, + 0.9971119165420532, + 0.9988942742347717, + 0.9981219172477722, + 0.9988813996315002 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988375306129456, + 0.9987379908561707, + 0.9988172054290771, + 0.9989054203033447, + 0.9912803769111633, + 0.998933732509613 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 0.9523809523809523, + "final_counts": { + "POSITIVE": 20, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9523809523809523, + "NEGATIVE": 0.047619047619047616 + } + } }, { "season_code": "202301", @@ -291412,7 +633328,7 @@ "9:25", "10:15", "WLH 209 - William L. Harkness Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Tuesday": [ @@ -291420,7 +633336,7 @@ "9:25", "10:15", "WLH 209 - William L. Harkness Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -291428,7 +633344,7 @@ "9:25", "10:15", "WLH 209 - William L. Harkness Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -291436,7 +633352,7 @@ "9:25", "10:15", "WLH 209 - William L. Harkness Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Friday": [ @@ -291444,7 +633360,7 @@ "9:25", "10:15", "WLH 209 - William L. Harkness Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -291458,10 +633374,107 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84903\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84903/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989092350006104, + 0.9989062547683716, + 0.9988422989845276, + 0.9983376264572144, + 0.9988837838172913 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998906135559082, + 0.9987510442733765, + 0.998673677444458, + 0.9988875985145569, + 0.9987189769744873 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989323019981384, + 0.9988433122634888, + 0.998902440071106, + 0.9987013339996338, + 0.9988837838172913, + 0.997117280960083 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 16 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -291498,7 +633511,7 @@ "10:30", "11:20", "WLH 209 - William L. Harkness Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Tuesday": [ @@ -291506,7 +633519,7 @@ "10:30", "11:20", "WLH 209 - William L. Harkness Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -291514,7 +633527,7 @@ "10:30", "11:20", "WLH 209 - William L. Harkness Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -291522,7 +633535,7 @@ "10:30", "11:20", "WLH 209 - William L. Harkness Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Friday": [ @@ -291530,7 +633543,7 @@ "10:30", "11:20", "WLH 209 - William L. Harkness Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -291544,10 +633557,127 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84903\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84903/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988248944282532, + 0.997083842754364, + 0.9984655380249023, + 0.9988627433776855, + 0.9976903200149536, + 0.9988607168197632, + 0.9988883137702942, + 0.9988672733306885, + 0.9862064719200134 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985920786857605, + 0.9987945556640625, + 0.995320737361908, + 0.9988935589790344, + 0.9976440072059631, + 0.9985690116882324, + 0.9988871216773987, + 0.9988827109336853 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 6 + }, + "sentiment_distribution": { + "NEGATIVE": 0.25, + "POSITIVE": 0.75 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994577765464783, + 0.9988964796066284, + 0.9994027614593506, + 0.9989160299301147, + 0.9814485907554626, + 0.9986410737037659, + 0.9988683462142944, + 0.9988756775856018 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 5 + }, + "sentiment_distribution": { + "NEGATIVE": 0.375, + "POSITIVE": 0.625 + }, + "sentiment_overall": [ + "POSITIVE", + 0.625 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 0.8, + "final_counts": { + "POSITIVE": 20, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + } + } }, { "season_code": "202301", @@ -291584,7 +633714,7 @@ "10:30", "11:20", "WLH 011 - William L. Harkness Hall 011", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Tuesday": [ @@ -291592,7 +633722,7 @@ "10:30", "11:20", "WLH 011 - William L. Harkness Hall 011", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -291600,7 +633730,7 @@ "10:30", "11:20", "WLH 011 - William L. Harkness Hall 011", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -291608,7 +633738,7 @@ "10:30", "11:20", "WLH 011 - William L. Harkness Hall 011", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Friday": [ @@ -291616,7 +633746,7 @@ "10:30", "11:20", "WLH 011 - William L. Harkness Hall 011", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -291630,10 +633760,113 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84908\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84908/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998643696308136, + 0.9988970756530762, + 0.9987672567367554, + 0.9987540245056152, + 0.9958386421203613, + 0.9988371729850769 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998839795589447, + 0.9989190101623535, + 0.998371422290802, + 0.9988307356834412, + 0.9823306798934937, + 0.9988773465156555 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988172650337219, + 0.9988920092582703, + 0.99869304895401, + 0.9988810420036316, + 0.9988815188407898, + 0.9995094537734985 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 0.9444444444444444, + "final_counts": { + "POSITIVE": 17, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9444444444444444, + "NEGATIVE": 0.05555555555555555 + } + } }, { "season_code": "202301", @@ -291670,7 +633903,7 @@ "10:30", "11:20", "WALL81 401 - 81 Wall Street 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ], "Tuesday": [ @@ -291678,7 +633911,7 @@ "10:30", "11:20", "WALL81 401 - 81 Wall Street 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ], "Wednesday": [ @@ -291686,7 +633919,7 @@ "10:30", "11:20", "WALL81 401 - 81 Wall Street 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ], "Thursday": [ @@ -291694,7 +633927,7 @@ "10:30", "11:20", "WALL81 401 - 81 Wall Street 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ], "Friday": [ @@ -291702,7 +633935,7 @@ "10:30", "11:20", "WALL81 401 - 81 Wall Street 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -291716,10 +633949,125 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84910\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84910/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985880255699158, + 0.9987891316413879, + 0.9987562894821167, + 0.9988343119621277, + 0.9988352656364441, + 0.9989105463027954, + 0.9988987445831299, + 0.9988431930541992 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985392093658447, + 0.9989251494407654, + 0.9988881945610046, + 0.9989168643951416, + 0.998572826385498, + 0.9984367489814758, + 0.9935769438743591, + 0.9988774657249451, + 0.9987912774085999 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 7 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2222222222222222, + "POSITIVE": 0.7777777777777778 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7777777777777778 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998933732509613, + 0.9988920092582703, + 0.9971837401390076, + 0.9983243346214294, + 0.9989230036735535, + 0.998936116695404, + 0.9989088773727417 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 22, + "final_proportion": 0.9166666666666666, + "final_counts": { + "POSITIVE": 22, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + } + } }, { "season_code": "202301", @@ -291756,7 +634104,7 @@ "11:35", "12:25", "WLH 011 - William L. Harkness Hall 011", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Tuesday": [ @@ -291764,7 +634112,7 @@ "11:35", "12:25", "WLH 011 - William L. Harkness Hall 011", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -291772,7 +634120,7 @@ "11:35", "12:25", "WLH 011 - William L. Harkness Hall 011", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -291780,7 +634128,7 @@ "11:35", "12:25", "WLH 011 - William L. Harkness Hall 011", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Friday": [ @@ -291788,7 +634136,7 @@ "11:35", "12:25", "WLH 011 - William L. Harkness Hall 011", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -291802,10 +634150,129 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84912\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84912/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987351298332214, + 0.998745322227478, + 0.9987754225730896, + 0.9987105131149292, + 0.99732506275177, + 0.9850943088531494, + 0.9994993209838867, + 0.998394787311554, + 0.9963909983634949 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.999503493309021, + 0.998722493648529, + 0.9977705478668213, + 0.9988980293273926, + 0.9951232075691223, + 0.9988663196563721, + 0.9995075464248657, + 0.9894123673439026, + 0.9975556135177612 + ], + "sentiment_counts": { + "NEGATIVE": 4, + "POSITIVE": 5 + }, + "sentiment_distribution": { + "NEGATIVE": 0.4444444444444444, + "POSITIVE": 0.5555555555555556 + }, + "sentiment_overall": [ + "POSITIVE", + 0.5555555555555556 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9991899132728577, + 0.9971635937690735, + 0.9987902045249939, + 0.9986612796783447, + 0.9989194869995117, + 0.9995133876800537, + 0.9994763731956482, + 0.9927219748497009 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 5 + }, + "sentiment_distribution": { + "NEGATIVE": 0.375, + "POSITIVE": 0.625 + }, + "sentiment_overall": [ + "POSITIVE", + 0.625 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 0.6923076923076923, + "final_counts": { + "POSITIVE": 18, + "NEGATIVE": 8 + }, + "final_distribution": { + "POSITIVE": 0.6923076923076923, + "NEGATIVE": 0.3076923076923077 + } + } }, { "season_code": "202301", @@ -291842,7 +634309,7 @@ "10:30", "11:20", "WLH 204 - William L. Harkness Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Tuesday": [ @@ -291850,7 +634317,7 @@ "10:30", "11:20", "WLH 204 - William L. Harkness Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -291858,7 +634325,7 @@ "10:30", "11:20", "WLH 204 - William L. Harkness Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -291866,7 +634333,7 @@ "10:30", "11:20", "WLH 204 - William L. Harkness Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Friday": [ @@ -291874,7 +634341,7 @@ "10:30", "11:20", "WLH 204 - William L. Harkness Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -291888,10 +634355,115 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84864\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84864/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984524250030518, + 0.9988645315170288, + 0.9984281063079834, + 0.998636782169342, + 0.9896095991134644, + 0.9987431168556213 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994361996650696, + 0.998754620552063, + 0.9987518787384033, + 0.9985923171043396, + 0.9988642930984497, + 0.9987603425979614 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 5 + }, + "sentiment_distribution": { + "NEGATIVE": 0.16666666666666666, + "POSITIVE": 0.8333333333333334 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9977497458457947, + 0.9989055395126343, + 0.9887093901634216, + 0.9988840222358704, + 0.997117280960083, + 0.997117280960083, + 0.9988808035850525 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 0.9473684210526315, + "final_counts": { + "POSITIVE": 18, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9473684210526315, + "NEGATIVE": 0.05263157894736842 + } + } }, { "season_code": "202301", @@ -291928,7 +634500,7 @@ "9:25", "10:15", "WLH 003 - William L. Harkness Hall 003", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Tuesday": [ @@ -291936,7 +634508,7 @@ "9:25", "10:15", "WLH 003 - William L. Harkness Hall 003", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -291944,7 +634516,7 @@ "9:25", "10:15", "WLH 003 - William L. Harkness Hall 003", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -291952,7 +634524,7 @@ "9:25", "10:15", "WLH 003 - William L. Harkness Hall 003", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Friday": [ @@ -291960,7 +634532,7 @@ "9:25", "10:15", "WLH 003 - William L. Harkness Hall 003", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -291974,10 +634546,151 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84869\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84869/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998551070690155, + 0.9987809062004089, + 0.9988747239112854, + 0.9988079071044922, + 0.9988827109336853, + 0.9988278746604919, + 0.9987677335739136, + 0.9985822439193726, + 0.9987377524375916, + 0.9989288449287415, + 0.9989259839057922, + 0.998391330242157, + 0.9986448884010315 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9950956106185913, + 0.9984567165374756, + 0.9986897110939026, + 0.9988671541213989, + 0.9986363053321838, + 0.9988446235656738, + 0.9988732933998108, + 0.9968401193618774, + 0.99151611328125, + 0.9985824823379517, + 0.9955053329467773, + 0.9988829493522644 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998868465423584, + 0.9982419013977051, + 0.9985647797584534, + 0.9988465309143066, + 0.9966639876365662, + 0.9983460903167725, + 0.9987034797668457, + 0.9942978024482727, + 0.9989283680915833, + 0.9981876015663147, + 0.9931948184967041, + 0.9988952279090881 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9166666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 34, + "final_proportion": 0.918918918918919, + "final_counts": { + "POSITIVE": 34, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.918918918918919, + "NEGATIVE": 0.08108108108108109 + } + } }, { "season_code": "202301", @@ -292014,7 +634727,7 @@ "9:25", "10:15", "WLH 011 - William L. Harkness Hall 011", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Tuesday": [ @@ -292022,7 +634735,7 @@ "9:25", "10:15", "WLH 011 - William L. Harkness Hall 011", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -292030,7 +634743,7 @@ "9:25", "10:15", "WLH 011 - William L. Harkness Hall 011", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -292038,7 +634751,7 @@ "9:25", "10:15", "WLH 011 - William L. Harkness Hall 011", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Friday": [ @@ -292046,7 +634759,7 @@ "9:25", "10:15", "WLH 011 - William L. Harkness Hall 011", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -292060,10 +634773,97 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84873\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84873/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988081455230713, + 0.9988186955451965, + 0.9989011287689209 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988935589790344, + 0.9987868666648865, + 0.9989222288131714, + 0.9988899827003479 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988752007484436, + 0.9988704323768616, + 0.9989251494407654, + 0.9988874793052673 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 11 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -292140,10 +634940,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84878\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84878/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -292180,7 +635008,7 @@ "10:30", "11:20", "WLH 002 - William L. Harkness Hall 002", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Tuesday": [ @@ -292188,7 +635016,7 @@ "10:30", "11:20", "WLH 002 - William L. Harkness Hall 002", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -292196,7 +635024,7 @@ "10:30", "11:20", "WLH 002 - William L. Harkness Hall 002", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -292204,7 +635032,7 @@ "10:30", "11:20", "WLH 002 - William L. Harkness Hall 002", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Friday": [ @@ -292212,7 +635040,7 @@ "10:30", "11:20", "WLH 002 - William L. Harkness Hall 002", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -292226,10 +635054,109 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84881\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84881/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986982345581055, + 0.9989198446273804, + 0.9987214207649231, + 0.9988941550254822, + 0.9986560344696045 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9977042078971863, + 0.9988732933998108, + 0.9974967837333679, + 0.9987770915031433, + 0.9984661340713501 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988405108451843, + 0.9947145581245422, + 0.9988521337509155, + 0.9988234639167786, + 0.997117280960083, + 0.9980975985527039 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 0.9375, + "final_counts": { + "POSITIVE": 15, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9375, + "NEGATIVE": 0.0625 + } + } }, { "season_code": "202301", @@ -292266,7 +635193,7 @@ "10:30", "11:20", "WLH 007 - William L. Harkness Hall 007", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Tuesday": [ @@ -292274,7 +635201,7 @@ "10:30", "11:20", "WLH 007 - William L. Harkness Hall 007", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -292282,7 +635209,7 @@ "10:30", "11:20", "WLH 007 - William L. Harkness Hall 007", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -292290,7 +635217,7 @@ "10:30", "11:20", "WLH 007 - William L. Harkness Hall 007", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Friday": [ @@ -292298,7 +635225,7 @@ "10:30", "11:20", "WLH 007 - William L. Harkness Hall 007", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -292312,10 +635239,145 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84886\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84886/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986741542816162, + 0.99885094165802, + 0.998725950717926, + 0.9988848567008972, + 0.9979470372200012, + 0.9988924860954285, + 0.9987820982933044, + 0.9988105297088623, + 0.9987967014312744, + 0.9975379705429077, + 0.9988825917243958, + 0.9986030459403992, + 0.9985873699188232 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.994218111038208, + 0.9980167150497437, + 0.9975737929344177, + 0.9986305236816406, + 0.9995025396347046, + 0.9994543194770813, + 0.9987354874610901, + 0.9988768696784973, + 0.9989174604415894, + 0.998843789100647, + 0.9988284707069397, + 0.9994774460792542 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9949769377708435, + 0.9988995790481567, + 0.9986816048622131, + 0.9987632036209106, + 0.9989016056060791, + 0.9986408352851868, + 0.9986604452133179, + 0.9988961219787598, + 0.9925323128700256 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 7 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2222222222222222, + "POSITIVE": 0.7777777777777778 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7777777777777778 + ] + }, + "final_label": "POSITIVE", + "final_count": 28, + "final_proportion": 0.8235294117647058, + "final_counts": { + "POSITIVE": 28, + "NEGATIVE": 6 + }, + "final_distribution": { + "POSITIVE": 0.8235294117647058, + "NEGATIVE": 0.17647058823529413 + } + } }, { "season_code": "202301", @@ -292352,7 +635414,7 @@ "10:30", "11:20", "WLH 003 - William L. Harkness Hall 003", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Tuesday": [ @@ -292360,7 +635422,7 @@ "10:30", "11:20", "WLH 003 - William L. Harkness Hall 003", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -292368,7 +635430,7 @@ "10:30", "11:20", "WLH 003 - William L. Harkness Hall 003", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -292376,7 +635438,7 @@ "10:30", "11:20", "WLH 003 - William L. Harkness Hall 003", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Friday": [ @@ -292384,7 +635446,7 @@ "10:30", "11:20", "WLH 003 - William L. Harkness Hall 003", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -292398,10 +635460,117 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84890\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84890/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989100694656372, + 0.998759388923645, + 0.9989035129547119, + 0.9952225089073181, + 0.9420201182365417, + 0.9989318251609802, + 0.9987868666648865 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989186525344849, + 0.9987208247184753, + 0.9985347986221313, + 0.998845100402832, + 0.985842764377594, + 0.9989302754402161, + 0.9988538026809692 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989258646965027, + 0.998906135559082, + 0.9988601207733154, + 0.9946722388267517, + 0.9989116191864014, + 0.9987475872039795 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 0.9, + "final_counts": { + "POSITIVE": 18, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + } + } }, { "season_code": "202301", @@ -292438,7 +635607,7 @@ "11:35", "12:25", "WLH 007 - William L. Harkness Hall 007", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Tuesday": [ @@ -292446,7 +635615,7 @@ "11:35", "12:25", "WLH 007 - William L. Harkness Hall 007", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -292454,7 +635623,7 @@ "11:35", "12:25", "WLH 007 - William L. Harkness Hall 007", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -292462,7 +635631,7 @@ "11:35", "12:25", "WLH 007 - William L. Harkness Hall 007", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Friday": [ @@ -292470,7 +635639,7 @@ "11:35", "12:25", "WLH 007 - William L. Harkness Hall 007", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -292484,10 +635653,155 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85702\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85702/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988318085670471, + 0.9987810254096985, + 0.9988395571708679, + 0.9985009431838989, + 0.9987340569496155, + 0.9955679774284363, + 0.9988608360290527, + 0.9986264705657959, + 0.9989076852798462, + 0.9984408020973206, + 0.9987919926643372, + 0.9987778067588806, + 0.9988150596618652 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982547163963318, + 0.9988898634910583, + 0.9977133274078369, + 0.99888676404953, + 0.9983081817626953, + 0.9989763498306274, + 0.9988935589790344, + 0.9988604784011841, + 0.9988831877708435, + 0.998832643032074, + 0.9987082481384277, + 0.9976708292961121, + 0.9989215135574341 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8461538461538461, + "NEGATIVE": 0.15384615384615385 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8461538461538461 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998273491859436, + 0.9975271821022034, + 0.9844999313354492, + 0.9988540410995483, + 0.9989153146743774, + 0.9988760352134705, + 0.9988046884536743, + 0.9988402724266052, + 0.9989032745361328, + 0.9987117052078247, + 0.9988915324211121, + 0.9987794756889343, + 0.9989000558853149 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9230769230769231, + "NEGATIVE": 0.07692307692307693 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9230769230769231 + ] + }, + "final_label": "POSITIVE", + "final_count": 36, + "final_proportion": 0.9230769230769231, + "final_counts": { + "POSITIVE": 36, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.9230769230769231, + "NEGATIVE": 0.07692307692307693 + } + } }, { "season_code": "202301", @@ -292524,7 +635838,7 @@ "10:30", "11:20", "WLH 112 - William L. Harkness Hall 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Tuesday": [ @@ -292532,7 +635846,7 @@ "10:30", "11:20", "WLH 112 - William L. Harkness Hall 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -292540,7 +635854,7 @@ "10:30", "11:20", "WLH 112 - William L. Harkness Hall 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -292548,7 +635862,7 @@ "10:30", "11:20", "WLH 112 - William L. Harkness Hall 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Friday": [ @@ -292556,7 +635870,7 @@ "10:30", "11:20", "WLH 112 - William L. Harkness Hall 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -292570,10 +635884,121 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85703\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85703/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9985550045967102, + 0.9989294409751892, + 0.9973883032798767, + 0.9987595081329346, + 0.998620867729187, + 0.9987733960151672, + 0.9988914132118225, + 0.9962448477745056 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988051652908325, + 0.9963244795799255, + 0.9988314509391785, + 0.9989331364631653, + 0.9989224672317505, + 0.998685896396637, + 0.9988365769386292, + 0.998887836933136 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984667897224426, + 0.9988850951194763, + 0.997117280960083, + 0.9982553124427795, + 0.9989107847213745, + 0.9988623857498169 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 21, + "final_proportion": 0.9545454545454546, + "final_counts": { + "POSITIVE": 21, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9545454545454546, + "NEGATIVE": 0.045454545454545456 + } + } }, { "season_code": "202301", @@ -292610,7 +636035,7 @@ "11:35", "12:25", "WALL81 401 - 81 Wall Street 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ], "Tuesday": [ @@ -292618,7 +636043,7 @@ "11:35", "12:25", "WALL81 401 - 81 Wall Street 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ], "Wednesday": [ @@ -292626,7 +636051,7 @@ "11:35", "12:25", "WALL81 401 - 81 Wall Street 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ], "Thursday": [ @@ -292634,7 +636059,7 @@ "11:35", "12:25", "WALL81 401 - 81 Wall Street 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ], "Friday": [ @@ -292642,7 +636067,7 @@ "11:35", "12:25", "WALL81 401 - 81 Wall Street 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -292656,10 +636081,119 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85704\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85704/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988288283348083, + 0.9987698197364807, + 0.998498797416687, + 0.9988436698913574, + 0.9994484782218933, + 0.9989026784896851, + 0.9989356398582458 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987207055091858, + 0.9987416863441467, + 0.9985729455947876, + 0.9987574815750122, + 0.9993991851806641, + 0.998871386051178, + 0.9989373087882996 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.997117280960083, + 0.9988524913787842, + 0.9988895058631897, + 0.9989235997200012, + 0.9981675148010254, + 0.99892657995224, + 0.9989334940910339 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 0.8571428571428571, + "final_counts": { + "POSITIVE": 18, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + } + } }, { "season_code": "202301", @@ -292696,7 +636230,7 @@ "10:30", "11:20", "HQ 132 - Humanities Quadrangle 132", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Tuesday": [ @@ -292704,7 +636238,7 @@ "10:30", "11:20", "HQ 132 - Humanities Quadrangle 132", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -292712,7 +636246,7 @@ "10:30", "11:20", "HQ 132 - Humanities Quadrangle 132", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -292720,7 +636254,7 @@ "10:30", "11:20", "HQ 132 - Humanities Quadrangle 132", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Friday": [ @@ -292728,7 +636262,7 @@ "10:30", "11:20", "HQ 132 - Humanities Quadrangle 132", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -292742,10 +636276,129 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86273\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/86273/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987747073173523, + 0.9986783862113953, + 0.9986581802368164, + 0.998884379863739, + 0.9989105463027954, + 0.9988442659378052, + 0.9988579750061035, + 0.9987276196479797, + 0.99891197681427 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9818369746208191, + 0.9990251064300537, + 0.994371235370636, + 0.9988734126091003, + 0.9988207221031189, + 0.9989292025566101, + 0.9985949397087097, + 0.9937730431556702 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 6 + }, + "sentiment_distribution": { + "NEGATIVE": 0.25, + "POSITIVE": 0.75 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988044500350952, + 0.9987516403198242, + 0.9983184337615967, + 0.9989836812019348, + 0.9988120794296265, + 0.9984176158905029, + 0.9989100694656372, + 0.9994766116142273, + 0.985921323299408 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.5555555555555556, + "NEGATIVE": 0.4444444444444444 + }, + "sentiment_overall": [ + "POSITIVE", + 0.5555555555555556 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 0.7692307692307693, + "final_counts": { + "POSITIVE": 20, + "NEGATIVE": 6 + }, + "final_distribution": { + "POSITIVE": 0.7692307692307693, + "NEGATIVE": 0.23076923076923078 + } + } }, { "season_code": "202301", @@ -292782,7 +636435,7 @@ "10:30", "11:20", "WLH 210 - William L. Harkness Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -292790,7 +636443,7 @@ "10:30", "11:20", "WLH 210 - William L. Harkness Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Friday": [ @@ -292798,7 +636451,7 @@ "10:30", "11:20", "WLH 210 - William L. Harkness Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -292812,10 +636465,101 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84893\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84893/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986296892166138, + 0.9987360835075378, + 0.9988478422164917, + 0.9977532029151917 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9964334964752197, + 0.9989184141159058, + 0.9994798302650452 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 1 + }, + "sentiment_distribution": { + "NEGATIVE": 0.6666666666666666, + "POSITIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9985857009887695, + 0.998918890953064, + 0.9988659620285034, + 0.9989262223243713, + 0.9950344562530518 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 0.75, + "final_counts": { + "POSITIVE": 9, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + } + } }, { "season_code": "202301", @@ -292852,7 +636596,7 @@ "11:35", "12:25", "WLH 210 - William L. Harkness Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -292860,7 +636604,7 @@ "11:35", "12:25", "WLH 210 - William L. Harkness Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Friday": [ @@ -292868,7 +636612,7 @@ "11:35", "12:25", "WLH 210 - William L. Harkness Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -292882,10 +636626,133 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84893\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84893/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989070892333984, + 0.9989286065101624, + 0.9962582588195801, + 0.9978399276733398, + 0.9967688322067261, + 0.9989014863967896, + 0.9988213181495667, + 0.9987531900405884, + 0.9987080097198486 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985337257385254, + 0.9989268183708191, + 0.9962582588195801, + 0.9987486600875854, + 0.9989351630210876, + 0.9983336329460144, + 0.998849630355835, + 0.9988232254981995, + 0.9985117316246033 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 7 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2222222222222222, + "POSITIVE": 0.7777777777777778 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7777777777777778 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.997117280960083, + 0.9987993240356445, + 0.9962582588195801, + 0.9988995790481567, + 0.9988980293273926, + 0.996849000453949, + 0.998933732509613, + 0.9989088773727417, + 0.9989180564880371, + 0.9982383251190186 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "final_label": "POSITIVE", + "final_count": 24, + "final_proportion": 0.8571428571428571, + "final_counts": { + "POSITIVE": 24, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + } + } }, { "season_code": "202301", @@ -292922,7 +636789,7 @@ "10:30", "12:25", "LC 317 - Linsly-Chittenden Hall 317", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Tuesday": [ @@ -292930,7 +636797,7 @@ "10:30", "12:25", "LC 317 - Linsly-Chittenden Hall 317", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -292938,7 +636805,7 @@ "10:30", "12:25", "LC 317 - Linsly-Chittenden Hall 317", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -292946,7 +636813,7 @@ "10:30", "12:25", "LC 317 - Linsly-Chittenden Hall 317", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Friday": [ @@ -292954,7 +636821,7 @@ "10:30", "12:25", "LC 317 - Linsly-Chittenden Hall 317", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -292969,10 +636836,103 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84899\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84899/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989044666290283, + 0.9987760186195374, + 0.9977403879165649, + 0.9952318072319031 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989338517189026, + 0.998746395111084, + 0.9988627433776855, + 0.9928538203239441 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989323019981384, + 0.9989387392997742, + 0.9989364743232727, + 0.9986782670021057, + 0.9985367059707642 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 0.8461538461538461, + "final_counts": { + "POSITIVE": 11, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8461538461538461, + "NEGATIVE": 0.15384615384615385 + } + } }, { "season_code": "202301", @@ -293009,7 +636969,7 @@ "11:35", "12:25", "HQ 213 - Humanities Quadrangle 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -293017,7 +636977,7 @@ "11:35", "12:25", "HQ 213 - Humanities Quadrangle 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Friday": [ @@ -293025,7 +636985,7 @@ "11:35", "12:25", "HQ 213 - Humanities Quadrangle 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -293039,14 +636999,127 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85718\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85718/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "Prerequisite: AP with score of 5\/ IB score of 7, Placement in L5 through Spanish Department placement exam or by having completed L4.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989110231399536, + 0.9987756609916687, + 0.9989019632339478, + 0.9988447427749634, + 0.9986239671707153, + 0.9988048076629639, + 0.9988073110580444 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989269375801086, + 0.998923122882843, + 0.9987081289291382, + 0.9989359974861145, + 0.9989237189292908, + 0.9989012479782104, + 0.9988719820976257, + 0.9988834261894226 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989008903503418, + 0.9988536834716797, + 0.9988715052604675, + 0.9988704323768616, + 0.9988971948623657, + 0.9988831877708435, + 0.9988088607788086, + 0.9989317059516907, + 0.9989369511604309 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 24, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 24 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } + }, + { + "season_code": "202301", + "requirements": "Prerequisite: AP with score of 5/ IB score of 7, Placement in L5 through Spanish Department placement exam or by having completed L4.", "description": "An advanced course designed to increase student\u2019s fluency in oral and written skills. Through the exploration of five art themes relevant to Spanish speaking countries, students review advanced points of Spanish grammar, focus on vocabulary enrichment, and learn the basic principles of academic composition. The course approach for learning is a project-based model which introduces a wide variety of texts: readings, visual art, podcast, music, videos. Students are required to register for a recitacion practice that consists of a weekly 40-minute conversation with students from Pontificia Universidad Cat\u00f3lica del Per\u00fa.", "short_title": "Spanish Language and Culture ...", "title": "Spanish Language and Culture through Art", @@ -293079,7 +637152,7 @@ "11:35", "12:50", "HQ C65 - Humanities Quadrangle C65", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -293087,7 +637160,7 @@ "11:35", "12:50", "HQ C65 - Humanities Quadrangle C65", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -293103,10 +637176,137 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85719\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/85719/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988678693771362, + 0.9988240599632263, + 0.998630940914154, + 0.9988747239112854, + 0.9989284873008728, + 0.9988449811935425, + 0.9989097118377686, + 0.9989173412322998, + 0.9979250431060791, + 0.998725950717926 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987286925315857, + 0.9906339645385742, + 0.998399555683136, + 0.9988411068916321, + 0.9983978867530823, + 0.9989259839057922, + 0.9989362359046936, + 0.9989149570465088, + 0.9956499934196472, + 0.9988318085670471 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 8 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2, + "POSITIVE": 0.8 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9975837469100952, + 0.9995007514953613, + 0.9982726573944092, + 0.9989149570465088, + 0.9986541271209717, + 0.9988954067230225, + 0.9989245533943176, + 0.9988778233528137, + 0.9986321330070496, + 0.9956148862838745 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 26, + "final_proportion": 0.8666666666666667, + "final_counts": { + "POSITIVE": 26, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.8666666666666667, + "NEGATIVE": 0.13333333333333333 + } + } }, { "season_code": "202301", @@ -293146,7 +637346,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -293184,7 +637412,7 @@ "11:35", "12:50", "WLH 120 - William L. Harkness Hall 120", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -293192,7 +637420,7 @@ "11:35", "12:50", "WLH 120 - William L. Harkness Hall 120", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -293206,10 +637434,119 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84905\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84905/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988594055175781, + 0.9986464381217957, + 0.9988278746604919, + 0.9986923336982727, + 0.9988821148872375, + 0.9986314177513123, + 0.9987479448318481 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987654685974121, + 0.9995124340057373, + 0.9989157915115356, + 0.9985669255256653, + 0.9994897842407227, + 0.9989249110221863 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988890290260315, + 0.9994932413101196, + 0.9989089965820312, + 0.9977553486824036, + 0.9989192485809326, + 0.99883633852005, + 0.9994707703590393, + 0.9987685084342957 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 0.8095238095238095, + "final_counts": { + "POSITIVE": 17, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.8095238095238095, + "NEGATIVE": 0.19047619047619047 + } + } }, { "season_code": "202301", @@ -293247,7 +637584,7 @@ "11:35", "12:50", "WLH 120 - William L. Harkness Hall 120", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -293255,7 +637592,7 @@ "11:35", "12:50", "WLH 120 - William L. Harkness Hall 120", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -293269,10 +637606,121 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84907\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84907/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986420273780823, + 0.9986544847488403, + 0.9983787536621094, + 0.9987389445304871, + 0.9985224604606628, + 0.9981503486633301, + 0.998755693435669, + 0.9971145391464233 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986974596977234, + 0.9988633394241333, + 0.9987218976020813, + 0.9987819790840149, + 0.9986213445663452, + 0.9988481998443604 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988582134246826, + 0.9989282488822937, + 0.9986485838890076, + 0.9989240765571594, + 0.9975499510765076, + 0.9988908171653748, + 0.9989209175109863, + 0.9989303946495056, + 0.9945465326309204 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 23, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 23 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -293311,7 +637759,7 @@ "13:00", "14:15", "HQ 133 - Humanities Quadrangle 133", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -293319,7 +637767,7 @@ "13:00", "14:15", "HQ 133 - Humanities Quadrangle 133", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -293333,10 +637781,121 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84909\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84909/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987851977348328, + 0.998835027217865, + 0.998849630355835, + 0.9987677335739136, + 0.9988548755645752, + 0.9987525939941406, + 0.9988691210746765 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988992214202881, + 0.998865008354187, + 0.9985793828964233, + 0.9982191920280457, + 0.9995031356811523, + 0.9988693594932556, + 0.9900122880935669, + 0.998909592628479 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988564252853394, + 0.9988006353378296, + 0.9989051818847656, + 0.998049259185791, + 0.9989219903945923, + 0.9994945526123047, + 0.9989356398582458 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 0.9090909090909091, + "final_counts": { + "POSITIVE": 20, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + } + } }, { "season_code": "202301", @@ -293374,7 +637933,7 @@ "10:30", "11:20", "HQ 207 - Humanities Quadrangle 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -293382,7 +637941,7 @@ "10:30", "11:20", "HQ 207 - Humanities Quadrangle 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Friday": [ @@ -293390,7 +637949,7 @@ "10:30", "11:20", "HQ 207 - Humanities Quadrangle 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -293404,10 +637963,141 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84911\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84911/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988555908203125, + 0.998663067817688, + 0.997580885887146, + 0.998735249042511, + 0.9986003041267395, + 0.9987898468971252, + 0.9986897110939026, + 0.9987849593162537, + 0.9986810088157654, + 0.9988695979118347 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988930821418762, + 0.9988775849342346, + 0.9977013468742371, + 0.9987630844116211, + 0.9989079236984253, + 0.99882572889328, + 0.9984084963798523, + 0.9987505674362183, + 0.9988946318626404, + 0.9989194869995117 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9946868419647217, + 0.9988242983818054, + 0.9990437626838684, + 0.9985669255256653, + 0.9993547797203064, + 0.9988497495651245, + 0.9982597231864929, + 0.961677074432373, + 0.9984470009803772, + 0.9965528249740601, + 0.9989323019981384, + 0.9987820982933044 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 27, + "final_proportion": 0.84375, + "final_counts": { + "POSITIVE": 27, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.84375, + "NEGATIVE": 0.15625 + } + } }, { "season_code": "202301", @@ -293445,7 +638135,7 @@ "11:35", "12:50", "YK212 106 - 212 York Street 106", - "https:\/\/map.yale.edu\/?id=1910#!m\/559604" + "https://map.yale.edu/?id=1910#!m/559604" ] ], "Wednesday": [ @@ -293453,7 +638143,7 @@ "11:35", "12:50", "YK212 106 - 212 York Street 106", - "https:\/\/map.yale.edu\/?id=1910#!m\/559604" + "https://map.yale.edu/?id=1910#!m/559604" ] ] }, @@ -293467,10 +638157,123 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84914\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84914/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989026784896851, + 0.9986403584480286, + 0.9986600875854492, + 0.9973614811897278, + 0.9986586570739746, + 0.9970249533653259, + 0.9989019632339478, + 0.9986019730567932 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989088773727417, + 0.9953482747077942, + 0.9988576173782349, + 0.9914956092834473, + 0.9966813921928406, + 0.9989064931869507, + 0.9989207983016968, + 0.998931348323822 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.625, + "NEGATIVE": 0.375 + }, + "sentiment_overall": [ + "POSITIVE", + 0.625 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988793730735779, + 0.9988470077514648, + 0.9988036155700684, + 0.9988420605659485, + 0.9989128112792969, + 0.9989321827888489, + 0.9989352822303772 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 0.8695652173913043, + "final_counts": { + "POSITIVE": 20, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.8695652173913043, + "NEGATIVE": 0.13043478260869565 + } + } }, { "season_code": "202301", @@ -293507,7 +638310,7 @@ "13:00", "14:15", "WLH 204 - William L. Harkness Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -293515,7 +638318,7 @@ "13:00", "14:15", "WLH 204 - William L. Harkness Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -293531,10 +638334,141 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85870\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/85870/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9978651404380798, + 0.9976257681846619, + 0.9988100528717041, + 0.9986249208450317, + 0.9995017051696777, + 0.9988565444946289, + 0.9988055229187012, + 0.9779687523841858, + 0.9986874461174011, + 0.9984801411628723, + 0.9985532164573669 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9090909090909091 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988657236099243, + 0.9990108013153076, + 0.998794436454773, + 0.9988969564437866, + 0.9994514584541321, + 0.9988705515861511, + 0.9986403584480286, + 0.9991127848625183, + 0.9988669157028198, + 0.9985532164573669 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.7, + "NEGATIVE": 0.3 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985887408256531, + 0.975662887096405, + 0.9988862872123718, + 0.9987393021583557, + 0.9994215965270996, + 0.9988730549812317, + 0.998822033405304, + 0.9995059967041016, + 0.9989306330680847, + 0.986063539981842, + 0.9890128374099731 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.6363636363636364, + "NEGATIVE": 0.36363636363636365 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6363636363636364 + ] + }, + "final_label": "POSITIVE", + "final_count": 24, + "final_proportion": 0.75, + "final_counts": { + "POSITIVE": 24, + "NEGATIVE": 8 + }, + "final_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + } + } }, { "season_code": "202301", @@ -293575,7 +638509,7 @@ "11:35", "12:50", "WLH 116 - William L. Harkness Hall 116", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -293583,7 +638517,7 @@ "11:35", "12:50", "WLH 116 - William L. Harkness Hall 116", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -293599,10 +638533,225 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84918\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84918/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989197254180908, + 0.9987603425979614, + 0.9986374974250793, + 0.9986612796783447, + 0.9989274144172668, + 0.9988151788711548, + 0.9987818598747253, + 0.998933732509613, + 0.9988162517547607, + 0.9987201690673828, + 0.998772919178009, + 0.9984657764434814, + 0.9988976716995239, + 0.9987512826919556, + 0.9987969398498535, + 0.998855471611023, + 0.9982750415802002, + 0.998762845993042, + 0.9988588094711304 + ], + "sentiment_counts": { + "POSITIVE": 19, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988947510719299, + 0.9989288449287415, + 0.999372661113739, + 0.9987840056419373, + 0.9970316886901855, + 0.9988811612129211, + 0.9981605410575867, + 0.9989251494407654, + 0.9873360991477966, + 0.9984754920005798, + 0.9992961883544922, + 0.9987847208976746, + 0.9989161491394043, + 0.9666587710380554, + 0.9987657070159912, + 0.9986672401428223, + 0.9988032579421997, + 0.9994205236434937, + 0.9988540410995483, + 0.9981870055198669, + 0.9988904595375061, + 0.9988420605659485, + 0.9994944334030151, + 0.9938912391662598, + 0.9987677335739136, + 0.9988682270050049, + 0.998918890953064 + ], + "sentiment_counts": { + "POSITIVE": 20, + "NEGATIVE": 7 + }, + "sentiment_distribution": { + "POSITIVE": 0.7407407407407407, + "NEGATIVE": 0.25925925925925924 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7407407407407407 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988653659820557, + 0.9989262223243713, + 0.9988555908203125, + 0.9988603591918945, + 0.9988768696784973, + 0.9987687468528748, + 0.9988629817962646, + 0.9989227652549744, + 0.9991430044174194, + 0.9988613128662109, + 0.9988293051719666, + 0.9982553124427795, + 0.998917818069458, + 0.9981935620307922, + 0.9988791346549988, + 0.9986649751663208, + 0.9987620115280151, + 0.998808741569519, + 0.9987805485725403, + 0.997412383556366, + 0.9989323019981384, + 0.9988679885864258, + 0.997117280960083, + 0.9980511665344238, + 0.9994840621948242, + 0.9984065890312195, + 0.9988584518432617, + 0.9987711310386658 + ], + "sentiment_counts": { + "POSITIVE": 25, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.8928571428571429, + "NEGATIVE": 0.10714285714285714 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8928571428571429 + ] + }, + "final_label": "POSITIVE", + "final_count": 64, + "final_proportion": 0.8648648648648649, + "final_counts": { + "POSITIVE": 64, + "NEGATIVE": 10 + }, + "final_distribution": { + "POSITIVE": 0.8648648648648649, + "NEGATIVE": 0.13513513513513514 + } + } }, { "season_code": "202301", @@ -293643,7 +638792,7 @@ "9:00", "10:15", "WLH 204 - William L. Harkness Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -293651,7 +638800,7 @@ "9:00", "10:15", "WLH 204 - William L. Harkness Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -293667,10 +638816,137 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85871\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/85871/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9978925585746765, + 0.9988378882408142, + 0.9985920786857605, + 0.9988939166069031, + 0.9987210631370544, + 0.9984429478645325, + 0.9987871050834656, + 0.9976330995559692, + 0.9988744854927063, + 0.994478702545166 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9944429993629456, + 0.99294114112854, + 0.9989262223243713, + 0.99542635679245, + 0.9989266991615295, + 0.9988217949867249, + 0.9982560276985168, + 0.9989297986030579, + 0.9988956451416016, + 0.9878081679344177, + 0.9949482679367065 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8181818181818182, + "NEGATIVE": 0.18181818181818182 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8181818181818182 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.998847246170044, + 0.9886991381645203, + 0.998894989490509, + 0.9986215829849243, + 0.9987128973007202, + 0.9988466501235962, + 0.9988441467285156, + 0.9876899719238281, + 0.9980016350746155 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.7777777777777778, + "NEGATIVE": 0.2222222222222222 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7777777777777778 + ] + }, + "final_label": "POSITIVE", + "final_count": 26, + "final_proportion": 0.8666666666666667, + "final_counts": { + "POSITIVE": 26, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.8666666666666667, + "NEGATIVE": 0.13333333333333333 + } + } }, { "season_code": "202301", @@ -293709,7 +638985,7 @@ "13:00", "14:15", "WTS A30 - Watson Center 60 Sachem Street A30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -293717,7 +638993,7 @@ "13:00", "14:15", "WTS A30 - Watson Center 60 Sachem Street A30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -293731,17 +639007,126 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83343\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83343/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9872118830680847, + 0.9992852807044983, + 0.9988271594047546, + 0.9988572597503662, + 0.9988453388214111, + 0.9989243149757385, + 0.998908281326294 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986711740493774, + 0.99748295545578, + 0.9988803267478943, + 0.9942684173583984, + 0.9988736510276794, + 0.9986440539360046 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985231757164001, + 0.9983184337615967, + 0.9995049238204956, + 0.9977774024009705, + 0.9989275336265564, + 0.9988977909088135, + 0.9987228512763977, + 0.9989044666290283 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 0.8095238095238095, + "final_counts": { + "POSITIVE": 17, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.8095238095238095, + "NEGATIVE": 0.19047619047619047 + } + } }, { "season_code": "202301", "requirements": "", "description": "Individual study under faculty supervision. The student must submit a bibliography and a written plan of study approved by the faculty adviser to the director of undergraduate studies. No reading or research course credit is granted without prior approval from the director of undergraduate studies. The student must meet with the instructor at least one hour a week. A final examination or essay is required.", - "short_title": "Directed Readings and\/or Indi...", - "title": "Directed Readings and\/or Individual Research", + "short_title": "Directed Readings and/or Indi...", + "title": "Directed Readings and/or Individual Research", "school": "YC", "credits": 1.0, "extra_info": "ACTIVE", @@ -293777,7 +639162,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -293820,7 +639233,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -293861,7 +639302,7 @@ "11:35", "12:50", "WLH 116 - William L. Harkness Hall 116", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -293869,7 +639310,7 @@ "11:35", "12:50", "WLH 116 - William L. Harkness Hall 116", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -293881,15 +639322,230 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84918\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84918/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989197254180908, + 0.9987603425979614, + 0.9986374974250793, + 0.9986612796783447, + 0.9989274144172668, + 0.9988151788711548, + 0.9987818598747253, + 0.998933732509613, + 0.9988162517547607, + 0.9987201690673828, + 0.998772919178009, + 0.9984657764434814, + 0.9988976716995239, + 0.9987512826919556, + 0.9987969398498535, + 0.998855471611023, + 0.9982750415802002, + 0.998762845993042, + 0.9988588094711304 + ], + "sentiment_counts": { + "POSITIVE": 19, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988947510719299, + 0.9989288449287415, + 0.999372661113739, + 0.9987840056419373, + 0.9970316886901855, + 0.9988811612129211, + 0.9981605410575867, + 0.9989251494407654, + 0.9873360991477966, + 0.9984754920005798, + 0.9992961883544922, + 0.9987847208976746, + 0.9989161491394043, + 0.9666587710380554, + 0.9987657070159912, + 0.9986672401428223, + 0.9988032579421997, + 0.9994205236434937, + 0.9988540410995483, + 0.9981870055198669, + 0.9988904595375061, + 0.9988420605659485, + 0.9994944334030151, + 0.9938912391662598, + 0.9987677335739136, + 0.9988682270050049, + 0.998918890953064 + ], + "sentiment_counts": { + "POSITIVE": 20, + "NEGATIVE": 7 + }, + "sentiment_distribution": { + "POSITIVE": 0.7407407407407407, + "NEGATIVE": 0.25925925925925924 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7407407407407407 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988653659820557, + 0.9989262223243713, + 0.9988555908203125, + 0.9988603591918945, + 0.9988768696784973, + 0.9987687468528748, + 0.9988629817962646, + 0.9989227652549744, + 0.9991430044174194, + 0.9988613128662109, + 0.9988293051719666, + 0.9982553124427795, + 0.998917818069458, + 0.9981935620307922, + 0.9988791346549988, + 0.9986649751663208, + 0.9987620115280151, + 0.998808741569519, + 0.9987805485725403, + 0.997412383556366, + 0.9989323019981384, + 0.9988679885864258, + 0.997117280960083, + 0.9980511665344238, + 0.9994840621948242, + 0.9984065890312195, + 0.9988584518432617, + 0.9987711310386658 + ], + "sentiment_counts": { + "POSITIVE": 25, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.8928571428571429, + "NEGATIVE": 0.10714285714285714 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8928571428571429 + ] + }, + "final_label": "POSITIVE", + "final_count": 64, + "final_proportion": 0.8648648648648649, + "final_counts": { + "POSITIVE": 64, + "NEGATIVE": 10 + }, + "final_distribution": { + "POSITIVE": 0.8648648648648649, + "NEGATIVE": 0.13513513513513514 + } + } }, { "season_code": "202301", "requirements": "In Spanish.", - "description": "Preparation for a teaching career through readings, lectures, classroom discussions, and presentations on current issues in foreign\/second language acquisition theory and teaching methodology. Classroom techniques at all levels.", + "description": "Preparation for a teaching career through readings, lectures, classroom discussions, and presentations on current issues in foreign/second language acquisition theory and teaching methodology. Classroom techniques at all levels.", "short_title": "Methodologies of Modern Langu...", "title": "Methodologies of Modern Language Teaching", "school": "GS", @@ -293921,7 +639577,7 @@ "9:30", "11:20", "HQ C05 - Humanities Quadrangle C05", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -293933,10 +639589,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84922\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84922/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -293973,7 +639657,7 @@ "13:30", "15:20", "WLH 002 - William L. Harkness Hall 002", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -293985,10 +639669,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86151\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86151/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -294029,7 +639741,7 @@ "9:00", "10:15", "WLH 204 - William L. Harkness Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -294037,7 +639749,7 @@ "9:00", "10:15", "WLH 204 - William L. Harkness Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -294049,10 +639761,137 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85871\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85871/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9978925585746765, + 0.9988378882408142, + 0.9985920786857605, + 0.9988939166069031, + 0.9987210631370544, + 0.9984429478645325, + 0.9987871050834656, + 0.9976330995559692, + 0.9988744854927063, + 0.994478702545166 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9944429993629456, + 0.99294114112854, + 0.9989262223243713, + 0.99542635679245, + 0.9989266991615295, + 0.9988217949867249, + 0.9982560276985168, + 0.9989297986030579, + 0.9988956451416016, + 0.9878081679344177, + 0.9949482679367065 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8181818181818182, + "NEGATIVE": 0.18181818181818182 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8181818181818182 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.998847246170044, + 0.9886991381645203, + 0.998894989490509, + 0.9986215829849243, + 0.9987128973007202, + 0.9988466501235962, + 0.9988441467285156, + 0.9876899719238281, + 0.9980016350746155 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.7777777777777778, + "NEGATIVE": 0.2222222222222222 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7777777777777778 + ] + }, + "final_label": "POSITIVE", + "final_count": 26, + "final_proportion": 0.8666666666666667, + "final_counts": { + "POSITIVE": 26, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.8666666666666667, + "NEGATIVE": 0.13333333333333333 + } + } }, { "season_code": "202301", @@ -294095,7 +639934,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -294138,7 +640005,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -294181,7 +640076,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -294219,7 +640142,7 @@ "9:25", "10:15", "WTS B31 - Watson Center 60 Sachem Street B31", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Tuesday": [ @@ -294227,7 +640150,7 @@ "9:25", "10:15", "WTS B31 - Watson Center 60 Sachem Street B31", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -294235,7 +640158,7 @@ "9:25", "10:15", "WTS B31 - Watson Center 60 Sachem Street B31", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -294243,7 +640166,7 @@ "9:25", "10:15", "WTS B31 - Watson Center 60 Sachem Street B31", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Friday": [ @@ -294251,7 +640174,7 @@ "9:25", "10:15", "WTS B31 - Watson Center 60 Sachem Street B31", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -294265,10 +640188,95 @@ "classnotes": "", "final_exam": "Friday, May 5, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84925\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84925/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988665580749512, + 0.9971275925636292, + 0.9988112449645996, + 0.9988924860954285 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987433552742004, + 0.9975526928901672, + 0.9988881945610046, + 0.9989332556724548 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988952875137329, + 0.9989199638366699 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 10 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -294306,7 +640314,7 @@ "11:35", "12:25", "WTS B41 - Watson Center 60 Sachem Street B41", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Tuesday": [ @@ -294314,7 +640322,7 @@ "11:35", "12:25", "WTS B41 - Watson Center 60 Sachem Street B41", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -294322,7 +640330,7 @@ "11:35", "12:25", "WTS B41 - Watson Center 60 Sachem Street B41", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -294330,7 +640338,7 @@ "11:35", "12:25", "WTS B41 - Watson Center 60 Sachem Street B41", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Friday": [ @@ -294338,7 +640346,7 @@ "11:35", "12:25", "WTS B41 - Watson Center 60 Sachem Street B41", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -294352,10 +640360,38 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84927\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84927/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -294393,7 +640429,7 @@ "11:35", "12:50", "WTS A39 - Watson Center 60 Sachem Street A39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -294401,7 +640437,7 @@ "11:35", "12:50", "WTS A39 - Watson Center 60 Sachem Street A39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -294415,10 +640451,38 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84929\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84929/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -294455,7 +640519,7 @@ "11:35", "12:50", "WTS A39 - Watson Center 60 Sachem Street A39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -294463,7 +640527,7 @@ "11:35", "12:50", "WTS A39 - Watson Center 60 Sachem Street A39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -294479,10 +640543,95 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85686\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85686/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987286925315857, + 0.9987142086029053, + 0.998791515827179, + 0.9988945126533508 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987164735794067, + 0.9988343119621277, + 0.9989219903945923 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988448619842529, + 0.9983251690864563, + 0.9988939166069031 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 10 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -294520,7 +640669,7 @@ "9:25", "10:15", "WTS B31 - Watson Center 60 Sachem Street B31", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Tuesday": [ @@ -294528,7 +640677,7 @@ "9:25", "10:15", "WTS B31 - Watson Center 60 Sachem Street B31", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -294536,7 +640685,7 @@ "9:25", "10:15", "WTS B31 - Watson Center 60 Sachem Street B31", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -294544,7 +640693,7 @@ "9:25", "10:15", "WTS B31 - Watson Center 60 Sachem Street B31", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Friday": [ @@ -294552,7 +640701,7 @@ "9:25", "10:15", "WTS B31 - Watson Center 60 Sachem Street B31", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -294564,10 +640713,95 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84925\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84925/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988665580749512, + 0.9971275925636292, + 0.9988112449645996, + 0.9988924860954285 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987433552742004, + 0.9975526928901672, + 0.9988881945610046, + 0.9989332556724548 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988952875137329, + 0.9989199638366699 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 10 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -294605,7 +640839,7 @@ "11:35", "12:25", "WTS B41 - Watson Center 60 Sachem Street B41", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Tuesday": [ @@ -294613,7 +640847,7 @@ "11:35", "12:25", "WTS B41 - Watson Center 60 Sachem Street B41", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -294621,7 +640855,7 @@ "11:35", "12:25", "WTS B41 - Watson Center 60 Sachem Street B41", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -294629,7 +640863,7 @@ "11:35", "12:25", "WTS B41 - Watson Center 60 Sachem Street B41", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Friday": [ @@ -294637,7 +640871,7 @@ "11:35", "12:25", "WTS B41 - Watson Center 60 Sachem Street B41", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -294649,10 +640883,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84927\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84927/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -294690,7 +640952,7 @@ "11:35", "12:50", "WTS A39 - Watson Center 60 Sachem Street A39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -294698,7 +640960,7 @@ "11:35", "12:50", "WTS A39 - Watson Center 60 Sachem Street A39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -294710,10 +640972,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84929\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84929/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -294769,7 +641059,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -294800,7 +641118,7 @@ "13:10", "14:00", "DOW 420 - Dow Hall 420", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ], "Tuesday": [ @@ -294808,7 +641126,7 @@ "13:10", "14:00", "DOW 420 - Dow Hall 420", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ], "Wednesday": [ @@ -294816,7 +641134,7 @@ "13:10", "14:00", "DOW 420 - Dow Hall 420", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ], "Thursday": [ @@ -294824,7 +641142,7 @@ "13:10", "14:00", "DOW 420 - Dow Hall 420", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ] }, @@ -294841,7 +641159,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -294880,7 +641226,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -294919,7 +641293,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -294958,7 +641360,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -294996,7 +641426,7 @@ "13:00", "14:15", "PWG - PWG", - "https:\/\/map.yale.edu\/?id=1910#!m\/559944" + "https://map.yale.edu/?id=1910#!m/559944" ] ], "Thursday": [ @@ -295004,7 +641434,7 @@ "13:00", "14:15", "PWG - PWG", - "https:\/\/map.yale.edu\/?id=1910#!m\/559944" + "https://map.yale.edu/?id=1910#!m/559944" ] ] }, @@ -295018,10 +641448,131 @@ "classnotes": ": TTh 10:30am-12:20pm in PWG 5TH-FL - Payne Whitney Gymnasium 5TH-FL", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84935\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84935/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989225268363953, + 0.9989136457443237, + 0.9979599714279175, + 0.9988886713981628, + 0.998854398727417, + 0.9984899759292603, + 0.9987700581550598, + 0.9988594055175781, + 0.9988656044006348 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988768696784973, + 0.998763918876648, + 0.9989286065101624, + 0.9988524913787842, + 0.998884379863739, + 0.9989307522773743, + 0.9984837174415588 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989197254180908, + 0.9980745315551758, + 0.9987118244171143, + 0.9988671541213989, + 0.9988582134246826, + 0.9988917708396912, + 0.9991201758384705, + 0.9988930821418762, + 0.9989111423492432, + 0.9989073276519775, + 0.9989145994186401 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9090909090909091 + ] + }, + "final_label": "POSITIVE", + "final_count": 26, + "final_proportion": 0.9629629629629629, + "final_counts": { + "POSITIVE": 26, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9629629629629629, + "NEGATIVE": 0.037037037037037035 + } + } }, { "season_code": "202301", @@ -295058,7 +641609,7 @@ "15:30", "17:20", "YK220 001 - 220 York Street 001", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ] }, @@ -295070,10 +641621,135 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84938\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84938/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9995033740997314, + 0.9986485838890076, + 0.9989168643951416, + 0.9989055395126343, + 0.9989330172538757, + 0.9987770915031433, + 0.9988219141960144, + 0.9988364577293396, + 0.9989051818847656 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 8 + }, + "sentiment_distribution": { + "NEGATIVE": 0.1111111111111111, + "POSITIVE": 0.8888888888888888 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988792538642883, + 0.9990590214729309, + 0.9989200830459595, + 0.998862624168396, + 0.9989068508148193, + 0.9989210367202759, + 0.9989343285560608, + 0.9988870024681091, + 0.9983291029930115, + 0.9989357590675354 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998829185962677, + 0.9982851147651672, + 0.9988777041435242, + 0.9989344477653503, + 0.998803973197937, + 0.9989168643951416, + 0.99892657995224, + 0.9988742470741272, + 0.9987843632698059, + 0.9989342093467712 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "final_label": "POSITIVE", + "final_count": 25, + "final_proportion": 0.8620689655172413, + "final_counts": { + "NEGATIVE": 4, + "POSITIVE": 25 + }, + "final_distribution": { + "NEGATIVE": 0.13793103448275862, + "POSITIVE": 0.8620689655172413 + } + } }, { "season_code": "202301", @@ -295110,7 +641786,7 @@ "13:30", "15:20", "YK220 001 - 220 York Street 001", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ] }, @@ -295124,10 +641800,145 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84913\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84913/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988686442375183, + 0.998900294303894, + 0.9989174604415894, + 0.9988700747489929, + 0.9975553154945374, + 0.9987173080444336, + 0.9988870024681091, + 0.9988093376159668, + 0.998508870601654, + 0.9988467693328857, + 0.9988700747489929 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987484216690063, + 0.9938234090805054, + 0.998879611492157, + 0.9988119602203369, + 0.9975056052207947, + 0.9988775849342346, + 0.9910755157470703, + 0.9992173910140991, + 0.9988970756530762, + 0.9987413287162781 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9954656958580017, + 0.9988837838172913, + 0.9897871017456055, + 0.9988152980804443, + 0.9978575110435486, + 0.9985609650611877, + 0.9987679123878479, + 0.998913049697876, + 0.9989264607429504, + 0.9988327622413635, + 0.993990421295166, + 0.9988069534301758, + 0.995227575302124 + ], + "sentiment_counts": { + "NEGATIVE": 4, + "POSITIVE": 9 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3076923076923077, + "POSITIVE": 0.6923076923076923 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6923076923076923 + ] + }, + "final_label": "POSITIVE", + "final_count": 28, + "final_proportion": 0.8235294117647058, + "final_counts": { + "POSITIVE": 28, + "NEGATIVE": 6 + }, + "final_distribution": { + "POSITIVE": 0.8235294117647058, + "NEGATIVE": 0.17647058823529413 + } + } }, { "season_code": "202301", @@ -295167,7 +641978,7 @@ "9:00", "10:15", "LC 209 - Linsly-Chittenden Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -295175,7 +641986,7 @@ "9:00", "10:15", "LC 209 - Linsly-Chittenden Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -295191,10 +642002,107 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83959\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83959/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988923668861389, + 0.9988337159156799, + 0.9986839890480042, + 0.9986152648925781, + 0.9989172220230103 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989262223243713, + 0.9981769323348999, + 0.998703122138977, + 0.99893718957901 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984195232391357, + 0.9989144802093506, + 0.9989256262779236, + 0.9971181154251099, + 0.9988946318626404, + 0.9989257454872131 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 0.9333333333333333, + "final_counts": { + "POSITIVE": 14, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9333333333333333, + "NEGATIVE": 0.06666666666666667 + } + } }, { "season_code": "202301", @@ -295234,7 +642142,7 @@ "13:30", "15:20", "YK220 101 - 220 York Street 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ], "Thursday": [ @@ -295242,7 +642150,7 @@ "13:30", "15:20", "WALL53 AUD - 53 Wall Street AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ] }, @@ -295259,10 +642167,93 @@ "classnotes": "This course will meet 1:30-3:20pm TTH TUESDAY in the BALLROOM (220 York) THURSDAY (location tbd)", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85975\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85975/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989333748817444, + 0.9987316727638245, + 0.9988848567008972 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986112117767334, + 0.9961422085762024, + 0.9989151954650879 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989269375801086, + 0.9988468885421753, + 0.9989033937454224 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 9 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -295311,10 +642302,89 @@ "classnotes": "This course will meet in the BDL 294 Elm, Room 303", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84920\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84920/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987672567367554, + 0.9988265633583069 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981517195701599, + 0.9988056421279907 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 1 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985734224319458, + 0.9971265196800232 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 5, + "final_proportion": 0.8333333333333334, + "final_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + } + } }, { "season_code": "202301", @@ -295351,7 +642421,7 @@ "10:30", "12:20", "YK220 101 - 220 York Street 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ], "Wednesday": [ @@ -295359,7 +642429,7 @@ "10:30", "12:20", "YK220 101 - 220 York Street 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ] }, @@ -295374,10 +642444,107 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84924\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84924/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9979009628295898, + 0.9988983869552612, + 0.7981887459754944, + 0.9989340901374817 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987804293632507, + 0.9943193197250366, + 0.9995007514953613, + 0.9989243149757385, + 0.9989156723022461 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.6, + "NEGATIVE": 0.4 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988852143287659, + 0.9988344311714172, + 0.9980016350746155, + 0.9989271759986877, + 0.9994747042655945, + 0.9988970756530762 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 0.6666666666666666, + "final_counts": { + "POSITIVE": 10, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + } + } }, { "season_code": "202301", @@ -295414,7 +642581,7 @@ "13:30", "15:20", "YK220 202 - 220 York Street 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ] }, @@ -295428,10 +642595,91 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84933\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84933/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988897442817688, + 0.9994959831237793 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.8519492149353027, + 0.9994884729385376, + 0.9995046854019165 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.3333333333333333, + "NEGATIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988716244697571, + 0.9994872808456421 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "final_label": "NEGATIVE", + "final_count": 4, + "final_proportion": 0.5714285714285714, + "final_counts": { + "POSITIVE": 3, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.42857142857142855, + "NEGATIVE": 0.5714285714285714 + } + } }, { "season_code": "202301", @@ -295469,7 +642717,7 @@ "11:35", "12:50", "LC 319 - Linsly-Chittenden Hall 319", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -295477,7 +642725,7 @@ "11:35", "12:50", "LC 319 - Linsly-Chittenden Hall 319", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -295488,7 +642736,7 @@ "Hu" ], "flags": [ - "YC English: 18th\/19th Century ", + "YC English: 18th/19th Century ", "YC English: Junior Seminar", "YC: THST Histories" ], @@ -295497,10 +642745,91 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83995\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83995/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988269209861755, + 0.9988962411880493 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989076852798462, + 0.998930037021637 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989330172538757, + 0.9989209175109863, + 0.9989223480224609, + 0.998340368270874 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 8, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 8 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -295541,7 +642870,7 @@ "13:30", "16:30", "YK220 101 - 220 York Street 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ] }, @@ -295557,10 +642886,109 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84563\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84563/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988542795181274, + 0.9988783001899719, + 0.998826801776886, + 0.9989264607429504, + 0.9988701939582825, + 0.9989303946495056 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989207983016968, + 0.9989056587219238, + 0.9989057779312134, + 0.9989126920700073 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981436729431152, + 0.9988929629325867, + 0.9987737536430359, + 0.9988142251968384, + 0.9989179372787476, + 0.9989393353462219, + 0.9989138841629028 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 17 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -295599,7 +643027,7 @@ "11:35", "12:50", "LC 213 - Linsly-Chittenden Hall 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -295607,7 +643035,7 @@ "11:35", "12:50", "LC 213 - Linsly-Chittenden Hall 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -295627,10 +643055,109 @@ "classnotes": "Students interested in taking this course should submit a request for instructor permission through YCS.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83963\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83963/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988842606544495, + 0.9886834025382996, + 0.9987492561340332, + 0.9988490343093872, + 0.9987173080444336, + 0.9985437393188477 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994897842407227, + 0.9972557425498962, + 0.9977363348007202, + 0.9988241791725159, + 0.9983092546463013 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 4 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2, + "POSITIVE": 0.8 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989006519317627, + 0.9988248944282532, + 0.9989137649536133, + 0.9987574815750122, + 0.998843789100647 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 0.9375, + "final_counts": { + "POSITIVE": 15, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9375, + "NEGATIVE": 0.0625 + } + } }, { "season_code": "202301", @@ -295667,7 +643194,7 @@ "13:30", "15:20", "YK220 101 - 220 York Street 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ], "Wednesday": [ @@ -295675,7 +643202,7 @@ "13:30", "15:20", "YK220 101 - 220 York Street 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ] }, @@ -295689,10 +643216,38 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85733\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/85733/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -295730,13 +643285,13 @@ "14:30", "15:20", "HQ L01 - Humanities Quadrangle L01", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ], [ "19:00", "22:00", "HQ L02 - Humanities Quadrangle L02", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -295744,7 +643299,7 @@ "14:30", "15:20", "HQ L01 - Humanities Quadrangle L01", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -295762,10 +643317,225 @@ "classnotes": "Instructor Permission Required. \nWhen submitting your request, please indicate the section (A,B,C,D) you intend to join.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84008\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84008/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988629817962646, + 0.9988934397697449, + 0.9987406134605408, + 0.9987249970436096, + 0.9989017248153687, + 0.9989293217658997, + 0.9987717270851135, + 0.9988516569137573, + 0.998388409614563, + 0.9988344311714172, + 0.9989293217658997, + 0.998916506767273, + 0.9988371729850769, + 0.9988880753517151, + 0.9915394186973572, + 0.9988665580749512, + 0.9987614154815674, + 0.9987265467643738, + 0.9983407258987427, + 0.9989340901374817, + 0.996711015701294, + 0.9980133771896362, + 0.9987173080444336 + ], + "sentiment_counts": { + "POSITIVE": 23, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989257454872131, + 0.9988918900489807, + 0.9989373087882996, + 0.998927652835846, + 0.9989249110221863, + 0.9989311099052429, + 0.9989256262779236, + 0.9988069534301758, + 0.998902440071106, + 0.9989141225814819, + 0.9989114999771118, + 0.9989393353462219, + 0.9988598823547363, + 0.9988732933998108, + 0.9988572597503662, + 0.9989303946495056, + 0.9989008903503418, + 0.9989148378372192, + 0.998934805393219, + 0.9985055923461914, + 0.9989272952079773, + 0.9989266991615295, + 0.9988861680030823 + ], + "sentiment_counts": { + "POSITIVE": 23, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989150762557983, + 0.9982694387435913, + 0.9987974166870117, + 0.9989162683486938, + 0.998932421207428, + 0.9986732006072998, + 0.9989184141159058, + 0.9989326596260071, + 0.9988934397697449, + 0.9988780617713928, + 0.9986988306045532, + 0.9988755583763123, + 0.9980168342590332, + 0.9989332556724548, + 0.9989142417907715, + 0.9986925721168518, + 0.9989237189292908, + 0.9987543821334839, + 0.9989137649536133, + 0.9989027976989746, + 0.9989294409751892, + 0.998894989490509, + 0.9989317059516907, + 0.9989257454872131, + 0.9989168643951416, + 0.9989018440246582, + 0.998924195766449, + 0.9989320635795593, + 0.9981426000595093 + ], + "sentiment_counts": { + "POSITIVE": 29, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 75, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 75 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -295808,7 +643578,7 @@ "13:30", "15:20", "WLH 210 - William L. Harkness Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -295824,10 +643594,111 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84129\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84129/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988349080085754, + 0.9989114999771118, + 0.9988352656364441, + 0.9988980293273926, + 0.9981107711791992, + 0.9989091157913208 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998519241809845, + 0.9988806843757629, + 0.9989018440246582, + 0.9989277720451355, + 0.9988627433776855, + 0.998831570148468 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988400340080261, + 0.9989107847213745, + 0.9988746047019958, + 0.9989101886749268, + 0.9985346794128418, + 0.9982048273086548 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 18 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -295881,10 +643752,95 @@ "classnotes": "This course will meet Friday's 1:30-5:20pm, Location TBD", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84937\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84937/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988860487937927, + 0.9989308714866638, + 0.9987865090370178, + 0.9987726807594299 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994779229164124, + 0.9989150762557983, + 0.9978777170181274 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9949069619178772, + 0.9988915324211121 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 8, + "final_proportion": 0.8888888888888888, + "final_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + } + } }, { "season_code": "202301", @@ -295925,7 +643881,7 @@ "16:00", "18:00", "STOECK 107 - Stoeckel Hall (renovated) 107", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ] }, @@ -295944,10 +643900,105 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84568\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84568/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9980530738830566, + 0.9984623193740845, + 0.9988279938697815, + 0.9986476302146912, + 0.9985169768333435 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989118576049805, + 0.9983910918235779, + 0.9976778626441956, + 0.9988935589790344 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989346861839294, + 0.9989386200904846, + 0.998892605304718, + 0.998719334602356, + 0.9988817572593689 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 0.9285714285714286, + "final_counts": { + "POSITIVE": 13, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9285714285714286, + "NEGATIVE": 0.07142857142857142 + } + } }, { "season_code": "202301", @@ -295985,7 +644036,7 @@ "13:30", "15:20", "YK220 100 - 220 York Street 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ] }, @@ -295997,10 +644048,131 @@ "classnotes": "Students should email branden.jacobs-jenkis@yale.edu with a 10-15 page writing sample as well as a couple paragraphs explaining why they want to take the course in the body of the email. ", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85207\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/85207/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9966591596603394, + 0.998246431350708, + 0.9983574748039246, + 0.9987047910690308, + 0.9984456896781921, + 0.793096661567688, + 0.9988515377044678, + 0.9987241625785828 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 6 + }, + "sentiment_distribution": { + "NEGATIVE": 0.25, + "POSITIVE": 0.75 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989218711853027, + 0.9981390237808228, + 0.9988669157028198, + 0.9989092350006104, + 0.9987350106239319, + 0.9989221096038818, + 0.995894193649292, + 0.9988686442375183, + 0.9985643029212952 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988633394241333, + 0.9988331198692322, + 0.9988909363746643, + 0.9989056587219238, + 0.9988158941268921, + 0.998875081539154, + 0.9988942742347717, + 0.9524402618408203, + 0.9988957643508911, + 0.9989230036735535 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "final_label": "POSITIVE", + "final_count": 23, + "final_proportion": 0.8518518518518519, + "final_counts": { + "NEGATIVE": 4, + "POSITIVE": 23 + }, + "final_distribution": { + "NEGATIVE": 0.14814814814814814, + "POSITIVE": 0.8518518518518519 + } + } }, { "season_code": "202301", @@ -296038,7 +644210,7 @@ "15:30", "17:20", "YK220 100 - 220 York Street 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ] }, @@ -296052,10 +644224,93 @@ "classnotes": "Students should email branden.jacobs-jenkis@yale.edu with a 10-15 page writing sample as well as a couple paragraphs explaining why they want to take the course in the body of the email. ", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85413\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85413/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998723566532135, + 0.9988922476768494 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9936140179634094, + 0.9979832172393799, + 0.9989008903503418 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988853335380554, + 0.9982172846794128, + 0.9988401532173157 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 0.875, + "final_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + } + } }, { "season_code": "202301", @@ -296092,7 +644347,7 @@ "11:35", "12:50", "YK220 101 - 220 York Street 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ], "Thursday": [ @@ -296100,7 +644355,7 @@ "11:35", "12:50", "YK220 101 - 220 York Street 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ] }, @@ -296115,10 +644370,97 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84940\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84940/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988834261894226, + 0.9984145164489746, + 0.99875807762146 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989142417907715, + 0.9988847374916077, + 0.9988428354263306 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989332556724548, + 0.9989261031150818, + 0.9988967180252075, + 0.9985634684562683, + 0.9989176988601685 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 11 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -296156,7 +644498,7 @@ "13:30", "15:20", "LC 205 - Linsly-Chittenden Hall 205", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -296165,7 +644507,7 @@ "Hu" ], "flags": [ - "YC English: 20th\/21st Century", + "YC English: 20th/21st Century", "YC English: Senior Seminar", "YC: THST Histories" ], @@ -296174,10 +644516,111 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84942\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84942/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989136457443237, + 0.9988505840301514, + 0.9986504912376404, + 0.9988893866539001, + 0.9988561868667603 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988980293273926, + 0.9987878203392029, + 0.9929071664810181, + 0.9985846281051636, + 0.9989281296730042, + 0.9987493753433228 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988020658493042, + 0.9989330172538757, + 0.9980520009994507, + 0.9961864352226257, + 0.9989280104637146, + 0.9989174604415894 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 0.9411764705882353, + "final_counts": { + "POSITIVE": 16, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9411764705882353, + "NEGATIVE": 0.058823529411764705 + } + } }, { "season_code": "202301", @@ -296215,7 +644658,7 @@ "13:30", "15:20", "STOECK 312 - Stoeckel Hall (renovated) 312", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ] }, @@ -296232,10 +644675,149 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84591\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84591/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988574981689453, + 0.9987035989761353, + 0.9989150762557983, + 0.9988895058631897, + 0.9989035129547119, + 0.9988553524017334, + 0.9988290667533875, + 0.9921743869781494, + 0.9988827109336853, + 0.5801650881767273, + 0.9987635612487793 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8181818181818182, + "NEGATIVE": 0.18181818181818182 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8181818181818182 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989232420921326, + 0.9989007711410522, + 0.9988962411880493, + 0.9984253644943237, + 0.9988401532173157, + 0.9989375472068787, + 0.9987459182739258, + 0.998751163482666, + 0.9987288117408752, + 0.9989311099052429, + 0.9906741976737976, + 0.9987627267837524 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989215135574341, + 0.9986604452133179, + 0.9989332556724548, + 0.9987731575965881, + 0.9989274144172668, + 0.998930037021637, + 0.9989120960235596, + 0.9989049434661865, + 0.9985727071762085, + 0.9989282488822937, + 0.998340368270874, + 0.9988975524902344, + 0.998930037021637 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 34, + "final_proportion": 0.9444444444444444, + "final_counts": { + "POSITIVE": 34, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9444444444444444, + "NEGATIVE": 0.05555555555555555 + } + } }, { "season_code": "202301", @@ -296273,7 +644855,7 @@ "10:30", "12:20", "PWG 5TH-FL - Payne Whitney Gymnasium 5TH-FL", - "https:\/\/map.yale.edu\/?id=1910#!m\/559944" + "https://map.yale.edu/?id=1910#!m/559944" ] ], "Thursday": [ @@ -296281,7 +644863,7 @@ "10:30", "12:20", "PWG 5TH-FL - Payne Whitney Gymnasium 5TH-FL", - "https:\/\/map.yale.edu\/?id=1910#!m\/559944" + "https://map.yale.edu/?id=1910#!m/559944" ] ] }, @@ -296298,15 +644880,128 @@ "classnotes": "PWG 5th floor ", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84945\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "", - "description": "An exploration of contemporary dance and movement practices in Southeast Asia, focusing on performances that incorporate arts activism and address social and environmental justice issues. Combining scholarship, theoretical engagement, performance analysis, and praxis, we examine how artists\/activists use creative practice and performance to respond to critical issues such as climate change, social upheavals, political crisis, and economic insecurity. Students have the opportunity to develop a performance around a relevant topic of their choice.", + "syllabus_url": "https://yale.instructure.com/courses/84945/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988532066345215, + 0.9988420605659485, + 0.998838484287262, + 0.9988746047019958, + 0.9987643957138062, + 0.9988104104995728, + 0.99892657995224, + 0.9988783001899719 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989262223243713, + 0.998810887336731, + 0.9989323019981384, + 0.9987967014312744, + 0.998883068561554, + 0.9989137649536133, + 0.9989010095596313, + 0.998229444026947 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989114999771118, + 0.9989271759986877, + 0.9987034797668457, + 0.9988638162612915, + 0.9988788962364197, + 0.9989137649536133, + 0.9989031553268433, + 0.9989035129547119 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 24, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 24 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } + }, + { + "season_code": "202301", + "requirements": "", + "description": "An exploration of contemporary dance and movement practices in Southeast Asia, focusing on performances that incorporate arts activism and address social and environmental justice issues. Combining scholarship, theoretical engagement, performance analysis, and praxis, we examine how artists/activists use creative practice and performance to respond to critical issues such as climate change, social upheavals, political crisis, and economic insecurity. Students have the opportunity to develop a performance around a relevant topic of their choice.", "short_title": "Dance and Arts Activism in So...", "title": "Dance and Arts Activism in Southeast Asia", "school": "YC", @@ -296346,10 +645041,83 @@ "classnotes": "The course will run in the BRL, 294 Elm Street, Room 303. W 1:30-3:20. .", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85458\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85458/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986281394958496 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE" + ], + "sentiment_scores": [ + 0.998874843120575 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 0 + }, + "sentiment_distribution": { + "NEGATIVE": 1.0, + "POSITIVE": 0.0 + }, + "sentiment_overall": [ + "NEGATIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.998472273349762 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 2, + "final_proportion": 0.6666666666666666, + "final_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + } + } }, { "season_code": "202301", @@ -296386,7 +645154,7 @@ "13:30", "17:20", "YK220 101 - 220 York Street 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ] }, @@ -296401,10 +645169,103 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85436\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85436/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988497495651245, + 0.9988597631454468, + 0.9987671375274658, + 0.9988077878952026 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987418055534363, + 0.9989207983016968, + 0.998855471611023, + 0.9989168643951416 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.25, + "POSITIVE": 0.75 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987119436264038, + 0.9989389777183533, + 0.9988306164741516, + 0.9988089799880981, + 0.9989379048347473 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 0.9230769230769231, + "final_counts": { + "POSITIVE": 12, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9230769230769231, + "NEGATIVE": 0.07692307692307693 + } + } }, { "season_code": "202301", @@ -296444,7 +645305,7 @@ "11:00", "12:50", "PWG 5TH-H - Payne Whitney Gymnasium 5TH-H", - "https:\/\/map.yale.edu\/?id=1910#!m\/559944" + "https://map.yale.edu/?id=1910#!m/559944" ] ], "Thursday": [ @@ -296452,7 +645313,7 @@ "11:00", "12:50", "PWG 5TH-H - Payne Whitney Gymnasium 5TH-H", - "https:\/\/map.yale.edu\/?id=1910#!m\/559944" + "https://map.yale.edu/?id=1910#!m/559944" ] ] }, @@ -296466,10 +645327,103 @@ "classnotes": "This course will meet TTH 11am-12:50pm in the PWG 8th Floor", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85966\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85966/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987959861755371, + 0.9989007711410522, + 0.9989184141159058, + 0.9946205615997314, + 0.9960857629776001 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988977909088135, + 0.9988067150115967, + 0.9989007711410522, + 0.9863450527191162 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989258646965027, + 0.9989295601844788, + 0.9988945126533508, + 0.9989050626754761, + 0.9988800883293152 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 14 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -296507,7 +645461,7 @@ "15:30", "17:20", "ELM294 303 - Broadway Rehearsal Lofts 303", - "https:\/\/map.yale.edu\/?id=1910#!m\/559982" + "https://map.yale.edu/?id=1910#!m/559982" ] ] }, @@ -296525,10 +645479,97 @@ "classnotes": " 294 Elm Street Room 303", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84947\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84947/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988250136375427, + 0.9988709092140198, + 0.99873286485672, + 0.998930037021637 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9987097978591919, + 0.9989081621170044, + 0.9988627433776855, + 0.9994937181472778 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989074468612671, + 0.997117280960083 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 0.9, + "final_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + } + } }, { "season_code": "202301", @@ -296573,10 +645614,97 @@ "classnotes": "This course will meet W 3:30-6:20pm at 294 Elm Street, BRL 303", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85976\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85976/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988892674446106, + 0.9989288449287415, + 0.9986351132392883, + 0.9989264607429504 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989216327667236, + 0.998930037021637, + 0.9989280104637146 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988983869552612, + 0.9989297986030579, + 0.9988829493522644, + 0.9988683462142944 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 11 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -296613,7 +645741,7 @@ "11:30", "13:20", "STOECK 107 - Stoeckel Hall (renovated) 107", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ] }, @@ -296628,10 +645756,91 @@ "classnotes": "This course will be taught by Professor Kirsten Childs. F 11:30am-1:20pm in TBD\n\nContact Prof. Dan Egan (dan.egan@yale.edu) with inquiries.\n\n", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86189\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86189/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994974136352539, + 0.9988553524017334 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 1 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9868651032447815, + 0.9798579216003418, + 0.9808210134506226 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989961981773376, + 0.9988943934440613 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 1 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "final_label": "POSITIVE", + "final_count": 5, + "final_proportion": 0.7142857142857143, + "final_counts": { + "NEGATIVE": 2, + "POSITIVE": 5 + }, + "final_distribution": { + "NEGATIVE": 0.2857142857142857, + "POSITIVE": 0.7142857142857143 + } + } }, { "season_code": "202301", @@ -296669,7 +645878,7 @@ "10:30", "12:20", "PWG 8TH-FL - Payne Whitney Gymnasium 8TH-FL", - "https:\/\/map.yale.edu\/?id=1910#!m\/559944" + "https://map.yale.edu/?id=1910#!m/559944" ] ] }, @@ -296683,10 +645892,105 @@ "classnotes": "Payne Whitney Gym 8th floor, room 802? ", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84949\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84949/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988483190536499, + 0.998846173286438, + 0.9988086223602295, + 0.9988640546798706, + 0.9989047050476074 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989377856254578, + 0.9977728724479675, + 0.998801589012146, + 0.9986128807067871, + 0.9989328980445862 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985913634300232, + 0.9988846182823181, + 0.9988859295845032, + 0.9984466433525085, + 0.9989134073257446 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 15 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -296725,7 +646029,7 @@ "13:30", "16:30", "LC 105 - Linsly-Chittenden Hall 105", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -296740,13 +646044,96 @@ ], "regnotes": "", "rp_attr": "", - "classnotes": "See the English department website for a list of creative writing and journalism courses that require the submission of an application by noon on November 4. https:\/\/english.yale.edu\/undergraduate\/courses\/creative-writing-journalism-courses", + "classnotes": "See the English department website for a list of creative writing and journalism courses that require the submission of an application by noon on November 4. https://english.yale.edu/undergraduate/courses/creative-writing-journalism-courses", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84011\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84011/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9968457818031311, + 0.9986718893051147, + 0.9981603026390076 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9986366629600525, + 0.9994993209838867 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9985764026641846, + 0.9962878227233887, + 0.9990259408950806 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 0.75, + "final_counts": { + "POSITIVE": 6, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + } + } }, { "season_code": "202301", @@ -296786,7 +646173,7 @@ "19:00", "22:00", "HQ 127 - Humanities Quadrangle 127", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -296794,7 +646181,7 @@ "10:30", "13:20", "CCAM 110 - Center for Collab Arts & Media 110", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -296810,10 +646197,38 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85399\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/85399/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -296856,7 +646271,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -296896,7 +646339,7 @@ "9:25", "11:15", "YK220 202 - 220 York Street 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ] }, @@ -296908,10 +646351,101 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85720\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85720/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985712766647339, + 0.9984682202339172 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984126091003418, + 0.9988617897033691, + 0.9988881945610046, + 0.9987150430679321 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985111355781555, + 0.9992467164993286, + 0.9989194869995117, + 0.9981626868247986, + 0.9986761212348938, + 0.9984447360038757 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 0.8333333333333334, + "final_counts": { + "POSITIVE": 10, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + } + } }, { "season_code": "202301", @@ -296949,7 +646483,7 @@ "9:25", "10:15", "CO493 106 - 493 College Street 106", - "https:\/\/map.yale.edu\/?id=1910#!m\/560001" + "https://map.yale.edu/?id=1910#!m/560001" ] ], "Tuesday": [ @@ -296957,7 +646491,7 @@ "9:25", "10:15", "CO493 106 - 493 College Street 106", - "https:\/\/map.yale.edu\/?id=1910#!m\/560001" + "https://map.yale.edu/?id=1910#!m/560001" ] ], "Wednesday": [ @@ -296965,7 +646499,7 @@ "9:25", "10:15", "CO493 106 - 493 College Street 106", - "https:\/\/map.yale.edu\/?id=1910#!m\/560001" + "https://map.yale.edu/?id=1910#!m/560001" ] ], "Thursday": [ @@ -296973,7 +646507,7 @@ "9:25", "10:15", "CO493 106 - 493 College Street 106", - "https:\/\/map.yale.edu\/?id=1910#!m\/560001" + "https://map.yale.edu/?id=1910#!m/560001" ] ], "Friday": [ @@ -296981,7 +646515,7 @@ "9:25", "10:15", "CO493 106 - 493 College Street 106", - "https:\/\/map.yale.edu\/?id=1910#!m\/560001" + "https://map.yale.edu/?id=1910#!m/560001" ] ] }, @@ -296995,10 +646529,38 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84952\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84952/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -297036,7 +646598,7 @@ "10:30", "11:20", "CO493 106 - 493 College Street 106", - "https:\/\/map.yale.edu\/?id=1910#!m\/560001" + "https://map.yale.edu/?id=1910#!m/560001" ] ], "Tuesday": [ @@ -297044,7 +646606,7 @@ "10:30", "11:20", "CO493 106 - 493 College Street 106", - "https:\/\/map.yale.edu\/?id=1910#!m\/560001" + "https://map.yale.edu/?id=1910#!m/560001" ] ], "Wednesday": [ @@ -297052,7 +646614,7 @@ "10:30", "11:20", "CO493 106 - 493 College Street 106", - "https:\/\/map.yale.edu\/?id=1910#!m\/560001" + "https://map.yale.edu/?id=1910#!m/560001" ] ], "Thursday": [ @@ -297060,7 +646622,7 @@ "10:30", "11:20", "CO493 106 - 493 College Street 106", - "https:\/\/map.yale.edu\/?id=1910#!m\/560001" + "https://map.yale.edu/?id=1910#!m/560001" ] ], "Friday": [ @@ -297068,7 +646630,7 @@ "10:30", "11:20", "CO493 106 - 493 College Street 106", - "https:\/\/map.yale.edu\/?id=1910#!m\/560001" + "https://map.yale.edu/?id=1910#!m/560001" ] ] }, @@ -297082,10 +646644,38 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84953\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84953/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -297123,7 +646713,7 @@ "9:25", "10:15", "CO493 106 - 493 College Street 106", - "https:\/\/map.yale.edu\/?id=1910#!m\/560001" + "https://map.yale.edu/?id=1910#!m/560001" ] ], "Tuesday": [ @@ -297131,7 +646721,7 @@ "9:25", "10:15", "CO493 106 - 493 College Street 106", - "https:\/\/map.yale.edu\/?id=1910#!m\/560001" + "https://map.yale.edu/?id=1910#!m/560001" ] ], "Wednesday": [ @@ -297139,7 +646729,7 @@ "9:25", "10:15", "CO493 106 - 493 College Street 106", - "https:\/\/map.yale.edu\/?id=1910#!m\/560001" + "https://map.yale.edu/?id=1910#!m/560001" ] ], "Thursday": [ @@ -297147,7 +646737,7 @@ "9:25", "10:15", "CO493 106 - 493 College Street 106", - "https:\/\/map.yale.edu\/?id=1910#!m\/560001" + "https://map.yale.edu/?id=1910#!m/560001" ] ], "Friday": [ @@ -297155,7 +646745,7 @@ "9:25", "10:15", "CO493 106 - 493 College Street 106", - "https:\/\/map.yale.edu\/?id=1910#!m\/560001" + "https://map.yale.edu/?id=1910#!m/560001" ] ] }, @@ -297167,10 +646757,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84952\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84952/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -297208,7 +646826,7 @@ "10:30", "11:20", "CO493 106 - 493 College Street 106", - "https:\/\/map.yale.edu\/?id=1910#!m\/560001" + "https://map.yale.edu/?id=1910#!m/560001" ] ], "Tuesday": [ @@ -297216,7 +646834,7 @@ "10:30", "11:20", "CO493 106 - 493 College Street 106", - "https:\/\/map.yale.edu\/?id=1910#!m\/560001" + "https://map.yale.edu/?id=1910#!m/560001" ] ], "Wednesday": [ @@ -297224,7 +646842,7 @@ "10:30", "11:20", "CO493 106 - 493 College Street 106", - "https:\/\/map.yale.edu\/?id=1910#!m\/560001" + "https://map.yale.edu/?id=1910#!m/560001" ] ], "Thursday": [ @@ -297232,7 +646850,7 @@ "10:30", "11:20", "CO493 106 - 493 College Street 106", - "https:\/\/map.yale.edu\/?id=1910#!m\/560001" + "https://map.yale.edu/?id=1910#!m/560001" ] ], "Friday": [ @@ -297240,7 +646858,7 @@ "10:30", "11:20", "CO493 106 - 493 College Street 106", - "https:\/\/map.yale.edu\/?id=1910#!m\/560001" + "https://map.yale.edu/?id=1910#!m/560001" ] ] }, @@ -297252,10 +646870,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84953\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84953/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -297286,7 +646932,7 @@ "10:00", "10:50", "DOW B-07 - Dow Hall B-07", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ], "Tuesday": [ @@ -297294,7 +646940,7 @@ "10:00", "10:50", "DOW B-07 - Dow Hall B-07", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ], "Wednesday": [ @@ -297302,7 +646948,7 @@ "10:00", "10:50", "DOW B-07 - Dow Hall B-07", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ], "Thursday": [ @@ -297310,7 +646956,7 @@ "10:00", "10:50", "DOW B-07 - Dow Hall B-07", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ] }, @@ -297327,7 +646973,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -297358,7 +647032,7 @@ "11:40", "12:55", "DOW B-11 - Dow Hall B-11", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ], "Wednesday": [ @@ -297366,7 +647040,7 @@ "11:40", "12:55", "DOW B-11 - Dow Hall B-11", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ], "Friday": [ @@ -297374,7 +647048,7 @@ "11:40", "12:55", "DOW B-11 - Dow Hall B-11", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ] }, @@ -297391,7 +647065,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -297455,7 +647157,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -297509,7 +647239,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -297547,7 +647305,7 @@ "11:35", "13:25", "RDH HASTINGS - Rudolph Hall HASTINGS", - "https:\/\/map.yale.edu\/?id=1910#!m\/559534" + "https://map.yale.edu/?id=1910#!m/559534" ] ] }, @@ -297563,10 +647321,207 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83370\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83370/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.999494194984436, + 0.9988981485366821, + 0.9988541603088379, + 0.9988018274307251, + 0.9988952875137329, + 0.9989190101623535, + 0.9967448711395264, + 0.9986553192138672, + 0.9989230036735535, + 0.9982903599739075, + 0.9986934065818787, + 0.998892605304718, + 0.9989097118377686, + 0.9988113641738892, + 0.9989091157913208, + 0.9989272952079773, + 0.9988783001899719, + 0.9988648891448975, + 0.9988711476325989, + 0.9989062547683716 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 19 + }, + "sentiment_distribution": { + "NEGATIVE": 0.05, + "POSITIVE": 0.95 + }, + "sentiment_overall": [ + "POSITIVE", + 0.95 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984197616577148, + 0.9988722205162048, + 0.998916506767273, + 0.9989005327224731, + 0.9988994598388672, + 0.991051435470581, + 0.9970266222953796, + 0.998816728591919, + 0.9988901019096375, + 0.998917818069458, + 0.9989271759986877, + 0.9988825917243958, + 0.9989859461784363, + 0.9984124898910522, + 0.9988498687744141, + 0.9989364743232727, + 0.9988985061645508, + 0.9989193677902222, + 0.998863697052002, + 0.9971926808357239, + 0.9989312291145325 + ], + "sentiment_counts": { + "NEGATIVE": 4, + "POSITIVE": 17 + }, + "sentiment_distribution": { + "NEGATIVE": 0.19047619047619047, + "POSITIVE": 0.8095238095238095 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8095238095238095 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9990018010139465, + 0.9989074468612671, + 0.9989023208618164, + 0.9989332556724548, + 0.9989091157913208, + 0.998855471611023, + 0.9957283139228821, + 0.9211229681968689, + 0.9988908171653748, + 0.9988118410110474, + 0.9988355040550232, + 0.9988871216773987, + 0.9989400506019592, + 0.9989179372787476, + 0.9989323019981384, + 0.995484471321106, + 0.998924195766449, + 0.998916506767273, + 0.9981960654258728, + 0.9987370371818542, + 0.9955852031707764, + 0.9989122152328491, + 0.9988355040550232, + 0.9989246726036072 + ], + "sentiment_counts": { + "NEGATIVE": 4, + "POSITIVE": 20 + }, + "sentiment_distribution": { + "NEGATIVE": 0.16666666666666666, + "POSITIVE": 0.8333333333333334 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 56, + "final_proportion": 0.8615384615384616, + "final_counts": { + "NEGATIVE": 9, + "POSITIVE": 56 + }, + "final_distribution": { + "NEGATIVE": 0.13846153846153847, + "POSITIVE": 0.8615384615384616 + } + } }, { "season_code": "202301", @@ -297605,7 +647560,7 @@ "13:30", "14:20", "OML 202 - Osborn Memorial Laboratories 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/559958" + "https://map.yale.edu/?id=1910#!m/559958" ] ], "Wednesday": [ @@ -297613,7 +647568,7 @@ "13:30", "14:20", "OML 202 - Osborn Memorial Laboratories 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/559958" + "https://map.yale.edu/?id=1910#!m/559958" ] ] }, @@ -297630,10 +647585,275 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84670\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84670/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982264637947083, + 0.9985517859458923, + 0.9993465542793274, + 0.9975343942642212, + 0.9988056421279907, + 0.998863935470581, + 0.9976440072059631, + 0.9988914132118225, + 0.9974128603935242, + 0.998838484287262, + 0.998860239982605, + 0.9409608840942383, + 0.9987435936927795, + 0.9988237023353577, + 0.998591959476471, + 0.9988712668418884, + 0.9988905787467957, + 0.998802661895752, + 0.9988399147987366, + 0.9968575239181519, + 0.9988548755645752, + 0.9988563060760498, + 0.9989118576049805, + 0.9988085031509399, + 0.9988617897033691, + 0.9986061453819275, + 0.9987288117408752, + 0.9988276362419128, + 0.9978190660476685, + 0.9989109039306641 + ], + "sentiment_counts": { + "POSITIVE": 28, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.9333333333333333, + "NEGATIVE": 0.06666666666666667 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9333333333333333 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.5999741554260254, + 0.9986794590950012, + 0.9984666109085083, + 0.9785497784614563, + 0.9988765120506287, + 0.9925668239593506, + 0.9976440072059631, + 0.9985331296920776, + 0.9962865114212036, + 0.9994906187057495, + 0.9980740547180176, + 0.9988952279090881, + 0.9995101690292358, + 0.9994722008705139, + 0.9988584518432617, + 0.998932421207428, + 0.9989016056060791, + 0.998593270778656, + 0.9974863529205322, + 0.9994951486587524, + 0.9978663325309753, + 0.998913049697876, + 0.998992383480072, + 0.9985253214836121, + 0.9988422989845276, + 0.9988816380500793, + 0.9987220168113708, + 0.9988982677459717, + 0.996577799320221, + 0.9988672733306885, + 0.9983401298522949, + 0.9988977909088135 + ], + "sentiment_counts": { + "NEGATIVE": 13, + "POSITIVE": 19 + }, + "sentiment_distribution": { + "NEGATIVE": 0.40625, + "POSITIVE": 0.59375 + }, + "sentiment_overall": [ + "POSITIVE", + 0.59375 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9994028806686401, + 0.9987646341323853, + 0.9970054030418396, + 0.9980652928352356, + 0.9987955093383789, + 0.9976440072059631, + 0.997117280960083, + 0.9989199638366699, + 0.998845100402832, + 0.998903751373291, + 0.9989113807678223, + 0.9995028972625732, + 0.9968119263648987, + 0.9983124732971191, + 0.9919800758361816, + 0.9994557499885559, + 0.997620165348053, + 0.9980016350746155, + 0.9988995790481567, + 0.9987837672233582, + 0.9994828701019287, + 0.9994860887527466, + 0.999517560005188, + 0.9989118576049805, + 0.9957135915756226, + 0.9989168643951416, + 0.9988975524902344, + 0.9989035129547119, + 0.9849973917007446, + 0.9975152015686035, + 0.998855710029602, + 0.9988061189651489, + 0.9993597865104675, + 0.9984826445579529, + 0.9988068342208862, + 0.9988791346549988, + 0.9904679656028748 + ], + "sentiment_counts": { + "NEGATIVE": 13, + "POSITIVE": 24 + }, + "sentiment_distribution": { + "NEGATIVE": 0.35135135135135137, + "POSITIVE": 0.6486486486486487 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6486486486486487 + ] + }, + "final_label": "POSITIVE", + "final_count": 71, + "final_proportion": 0.7171717171717171, + "final_counts": { + "POSITIVE": 71, + "NEGATIVE": 28 + }, + "final_distribution": { + "POSITIVE": 0.7171717171717171, + "NEGATIVE": 0.2828282828282828 + } + } }, { "season_code": "202301", @@ -297666,7 +647886,7 @@ "9:25", "10:15", "RKZ 102 - Rosenkranz Hall 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -297683,7 +647903,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -297716,7 +647964,7 @@ "10:30", "11:20", "RKZ 102 - Rosenkranz Hall 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -297733,7 +647981,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -297766,7 +648042,7 @@ "14:30", "15:20", "WLH 011 - William L. Harkness Hall 011", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -297783,7 +648059,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -297816,7 +648120,7 @@ "17:00", "17:50", "WLH 013 - William L. Harkness Hall 013", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -297833,7 +648137,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -297866,7 +648198,7 @@ "9:25", "10:15", "RKZ 05 - Rosenkranz Hall 05", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -297883,7 +648215,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -297916,7 +648276,7 @@ "10:30", "11:20", "RKZ 05 - Rosenkranz Hall 05", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -297933,7 +648293,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -297966,7 +648354,7 @@ "13:30", "14:20", "RKZ 02 - Rosenkranz Hall 02", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -297983,7 +648371,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -298016,7 +648432,7 @@ "14:30", "15:20", "RKZ 02 - Rosenkranz Hall 02", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -298033,7 +648449,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -298066,7 +648510,7 @@ "14:30", "15:20", "LC 103 - Linsly-Chittenden Hall 103", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -298083,7 +648527,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -298116,7 +648588,7 @@ "16:00", "16:50", "RKZ 05 - Rosenkranz Hall 05", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -298133,7 +648605,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -298166,7 +648666,7 @@ "19:00", "19:50", "WLH 009 - William L. Harkness Hall 009", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -298183,7 +648683,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -298221,7 +648749,7 @@ "15:30", "17:20", "HQ 123 - Humanities Quadrangle 123", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -298230,7 +648758,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC Urban Studies: Elective" ], @@ -298239,10 +648767,113 @@ "classnotes": "Please send a brief email describing your interest in the course to kristin.hankins@yale.edu.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85924\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85924/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988977909088135, + 0.9987658262252808, + 0.9989099502563477, + 0.9988794922828674, + 0.9989153146743774 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988860487937927, + 0.9989259839057922, + 0.9945061802864075, + 0.9989246726036072, + 0.9988216757774353 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981784820556641, + 0.9981922507286072, + 0.998907208442688, + 0.9973631501197815, + 0.9523453116416931, + 0.998935878276825, + 0.998817503452301, + 0.9989043474197388 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 6 + }, + "sentiment_distribution": { + "NEGATIVE": 0.25, + "POSITIVE": 0.75 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 0.8888888888888888, + "final_counts": { + "POSITIVE": 16, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + } + } }, { "season_code": "202301", @@ -298280,7 +648911,7 @@ "9:25", "11:15", "AKW 100 - Arthur K. Watson Hall 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560119" + "https://map.yale.edu/?id=1910#!m/560119" ] ] }, @@ -298288,7 +648919,7 @@ "areas": [], "flags": [ "YC EVST: Core BA Natural Scie", - "YC EVST: B.S. NatSci\/Field Lab", + "YC EVST: B.S. NatSci/Field Lab", "YC S&DS: Data Analy Disc Area", "YC Urban Studies: Methods Crse" ], @@ -298297,10 +648928,143 @@ "classnotes": "EVST majors have priority for enrollment.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84070\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84070/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988048076629639, + 0.9988976716995239, + 0.998769223690033, + 0.9987961053848267, + 0.9988454580307007, + 0.9987629652023315, + 0.9988638162612915, + 0.9963585734367371, + 0.9988102912902832, + 0.9988677501678467, + 0.9986504912376404 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989047050476074, + 0.9989125728607178, + 0.9989350438117981, + 0.9985013008117676, + 0.9988527297973633, + 0.9987770915031433, + 0.9963381290435791, + 0.998822033405304, + 0.985805332660675, + 0.9989364743232727, + 0.9994871616363525 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8181818181818182, + "NEGATIVE": 0.18181818181818182 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8181818181818182 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988886713981628, + 0.9989001750946045, + 0.9988909363746643, + 0.9982799291610718, + 0.9988709092140198, + 0.9973155856132507, + 0.9979391694068909, + 0.9988276362419128, + 0.997802197933197, + 0.9974029660224915, + 0.9990214109420776 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8181818181818182, + "NEGATIVE": 0.18181818181818182 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8181818181818182 + ] + }, + "final_label": "POSITIVE", + "final_count": 29, + "final_proportion": 0.8787878787878788, + "final_counts": { + "POSITIVE": 29, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.8787878787878788, + "NEGATIVE": 0.12121212121212122 + } + } }, { "season_code": "202301", @@ -298341,7 +649105,7 @@ "10:30", "11:20", "LORIA 351 - Loria Center 351", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ], "Thursday": [ @@ -298349,7 +649113,7 @@ "10:30", "11:20", "LORIA 351 - Loria Center 351", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -298370,10 +649134,193 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83387\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83387/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985113739967346, + 0.9993385672569275, + 0.9989054203033447, + 0.9987413287162781, + 0.9988246560096741, + 0.9989179372787476, + 0.9987403750419617, + 0.9988346695899963, + 0.998862624168396, + 0.9988658428192139, + 0.9988833069801331, + 0.9987567663192749, + 0.9987362027168274, + 0.9983325600624084, + 0.991707980632782, + 0.9995017051696777, + 0.9976261258125305 + ], + "sentiment_counts": { + "POSITIVE": 15, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8823529411764706, + "NEGATIVE": 0.11764705882352941 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8823529411764706 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981862902641296, + 0.9988204836845398, + 0.9995107650756836, + 0.9989113807678223, + 0.9987157583236694, + 0.9995076656341553, + 0.9887896776199341, + 0.9989262223243713, + 0.9988092184066772, + 0.9994956254959106, + 0.9995019435882568, + 0.9973430037498474, + 0.9980487823486328, + 0.9912784695625305, + 0.9981743097305298, + 0.9986567497253418, + 0.9995007514953613, + 0.9941630959510803 + ], + "sentiment_counts": { + "NEGATIVE": 8, + "POSITIVE": 10 + }, + "sentiment_distribution": { + "NEGATIVE": 0.4444444444444444, + "POSITIVE": 0.5555555555555556 + }, + "sentiment_overall": [ + "POSITIVE", + 0.5555555555555556 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.986362636089325, + 0.9980016350746155, + 0.9976667165756226, + 0.9995057582855225, + 0.9995101690292358, + 0.998887836933136, + 0.998101532459259, + 0.9941808581352234, + 0.9926744103431702, + 0.9988856911659241, + 0.9986157417297363, + 0.9989258646965027, + 0.9995089769363403, + 0.9994294047355652, + 0.9989312291145325, + 0.9978559613227844, + 0.9989157915115356, + 0.9986143112182617, + 0.998832643032074, + 0.9982798099517822, + 0.9995107650756836, + 0.9995071887969971, + 0.999388575553894 + ], + "sentiment_counts": { + "POSITIVE": 14, + "NEGATIVE": 9 + }, + "sentiment_distribution": { + "POSITIVE": 0.6086956521739131, + "NEGATIVE": 0.391304347826087 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6086956521739131 + ] + }, + "final_label": "POSITIVE", + "final_count": 39, + "final_proportion": 0.6724137931034483, + "final_counts": { + "POSITIVE": 39, + "NEGATIVE": 19 + }, + "final_distribution": { + "POSITIVE": 0.6724137931034483, + "NEGATIVE": 0.3275862068965517 + } + } }, { "season_code": "202301", @@ -298407,7 +649354,7 @@ "13:30", "14:20", "RDH 211 - Rudolph Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/559534" + "https://map.yale.edu/?id=1910#!m/559534" ] ] }, @@ -298424,7 +649371,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -298458,7 +649433,7 @@ "17:00", "17:50", "WLH 114 - William L. Harkness Hall 114", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -298475,7 +649450,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -298509,7 +649512,7 @@ "16:00", "16:50", "RDH 211 - Rudolph Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/559534" + "https://map.yale.edu/?id=1910#!m/559534" ] ] }, @@ -298526,7 +649529,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -298560,7 +649591,7 @@ "14:30", "15:20", "RDH 211 - Rudolph Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/559534" + "https://map.yale.edu/?id=1910#!m/559534" ] ] }, @@ -298577,7 +649608,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -298634,7 +649693,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -298671,7 +649758,7 @@ "13:00", "16:00", "RDH 211 - Rudolph Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/559534" + "https://map.yale.edu/?id=1910#!m/559534" ] ] }, @@ -298687,10 +649774,163 @@ "classnotes": "Instructor Jacob Koch is asking interested students to submit a short (1 page or less) statement on why you are interested in the course and how it fits into your overall course of study, please email this to him at: jacob.l.koch@yale.edu", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85979\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/85979/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988042116165161, + 0.9988917708396912, + 0.9988048076629639, + 0.9988428354263306, + 0.9987951517105103, + 0.9988253712654114, + 0.9943580031394958, + 0.9987554550170898, + 0.998874843120575, + 0.9988700747489929, + 0.9987359642982483, + 0.9988890290260315, + 0.9988797307014465, + 0.9988793730735779 + ], + "sentiment_counts": { + "POSITIVE": 14, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989234805107117, + 0.9988804459571838, + 0.9988885521888733, + 0.9989153146743774, + 0.9989349246025085, + 0.9986733198165894, + 0.998601496219635, + 0.9988481998443604, + 0.9985320568084717, + 0.9967398047447205, + 0.998927891254425, + 0.9980440139770508, + 0.9989239573478699, + 0.9988538026809692, + 0.9933714866638184 + ], + "sentiment_counts": { + "POSITIVE": 14, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9333333333333333, + "NEGATIVE": 0.06666666666666667 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9333333333333333 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989350438117981, + 0.9989097118377686, + 0.9989320635795593, + 0.9989393353462219, + 0.9988464117050171, + 0.9989218711853027, + 0.9984278678894043, + 0.9988685846328735, + 0.9989134073257446, + 0.9989041090011597, + 0.9983407258987427, + 0.9987651109695435, + 0.998927891254425, + 0.9987486600875854 + ], + "sentiment_counts": { + "POSITIVE": 14, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 42, + "final_proportion": 0.9767441860465116, + "final_counts": { + "POSITIVE": 42, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9767441860465116, + "NEGATIVE": 0.023255813953488372 + } + } }, { "season_code": "202301", @@ -298728,7 +649968,7 @@ "14:30", "15:45", "WLH 003 - William L. Harkness Hall 003", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -298736,7 +649976,7 @@ "14:30", "15:45", "WLH 003 - William L. Harkness Hall 003", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -298753,10 +649993,123 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84870\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84870/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9963160157203674, + 0.9986238479614258, + 0.9888725876808167, + 0.9987906813621521, + 0.9988479614257812, + 0.9988968372344971, + 0.9985563158988953, + 0.9986685514450073, + 0.9987340569496155, + 0.9989026784896851 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988705515861511, + 0.9953646659851074, + 0.9987350106239319, + 0.9987789988517761, + 0.9989045858383179, + 0.9989301562309265 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985018968582153, + 0.8180356025695801, + 0.9989159107208252, + 0.998830258846283, + 0.9989354014396667, + 0.9865156412124634, + 0.9989064931869507, + 0.9988784193992615 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 24, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 24 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -298795,7 +650148,7 @@ "13:30", "15:20", "WLH 202 - William L. Harkness Hall 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -298812,10 +650165,145 @@ "classnotes": "Priority is given to students in Education Studies (certificate & scholars program) and then by course year. Priority is also given to students who have taken EDST110. Please indicate your interest in the course as well as major, EDST program and whether you've taken EDST 110 when you request permission.\n", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83848\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83848/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985525012016296, + 0.9987898468971252, + 0.9988873600959778, + 0.9988933205604553, + 0.9987541437149048, + 0.9989078044891357, + 0.9986770749092102, + 0.9988848567008972, + 0.9986936450004578, + 0.9989162683486938, + 0.9988781809806824 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988829493522644, + 0.998867392539978, + 0.998928964138031, + 0.998795747756958, + 0.9987998008728027, + 0.9988973140716553, + 0.9988933205604553, + 0.9989362359046936, + 0.9988799691200256, + 0.9989381432533264, + 0.9989084005355835, + 0.9989307522773743 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985396862030029, + 0.9989180564880371, + 0.9989120960235596, + 0.998842716217041, + 0.9989150762557983, + 0.9988678693771362, + 0.998921275138855, + 0.9989272952079773, + 0.9989367127418518, + 0.9989281296730042, + 0.9988818764686584, + 0.9977533221244812 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 35, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 35 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -298855,7 +650343,7 @@ "13:30", "15:20", "HQ C64 - Humanities Quadrangle C64", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -298877,10 +650365,151 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84217\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84217/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988019466400146, + 0.998892605304718, + 0.9986458420753479, + 0.9984921216964722, + 0.9987829327583313, + 0.9988552331924438, + 0.9987409710884094, + 0.998660683631897, + 0.9986459612846375, + 0.9989140033721924, + 0.998863935470581 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988906979560852, + 0.9989392161369324, + 0.998782217502594, + 0.9989249110221863, + 0.9984185695648193, + 0.9952402114868164, + 0.999497652053833, + 0.998212456703186, + 0.9994988441467285, + 0.9988641738891602, + 0.9987277388572693, + 0.9987916350364685, + 0.998910665512085 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.7692307692307693, + "NEGATIVE": 0.23076923076923078 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7692307692307693 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9962408542633057, + 0.9989253878593445, + 0.9891315698623657, + 0.9986081719398499, + 0.9953621029853821, + 0.9924246072769165, + 0.9994633793830872, + 0.9989211559295654, + 0.9994999170303345, + 0.998910665512085, + 0.999414324760437, + 0.9988836646080017, + 0.9989055395126343 + ], + "sentiment_counts": { + "NEGATIVE": 5, + "POSITIVE": 8 + }, + "sentiment_distribution": { + "NEGATIVE": 0.38461538461538464, + "POSITIVE": 0.6153846153846154 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6153846153846154 + ] + }, + "final_label": "POSITIVE", + "final_count": 29, + "final_proportion": 0.7837837837837838, + "final_counts": { + "POSITIVE": 29, + "NEGATIVE": 8 + }, + "final_distribution": { + "POSITIVE": 0.7837837837837838, + "NEGATIVE": 0.21621621621621623 + } + } }, { "season_code": "202301", @@ -298920,7 +650549,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -298961,10 +650618,83 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83393\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83393/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987967014312744 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988664388656616 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998542070388794, + 0.9987367987632751 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 4, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 4 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -299001,7 +650731,7 @@ "7:40", "8:30", "WLH 112 - William L. Harkness Hall 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -299013,10 +650743,81 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85855\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85855/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985311031341553 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989056587219238 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989122152328491 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 3, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 3 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -299053,7 +650854,7 @@ "8:50", "10:00", "WALL53 208 - 53 Wall Street 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/559554" + "https://map.yale.edu/?id=1910#!m/559554" ] ] }, @@ -299065,10 +650866,89 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85876\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85876/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988541603088379, + 0.9965884685516357, + 0.9984690546989441 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988539218902588, + 0.9933391213417053 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998884379863739, + 0.9979902505874634 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 7 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -299105,7 +650985,7 @@ "15:00", "16:10", "WH55 453 - 55 Whitney Avenue 453", - "https:\/\/map.yale.edu\/?id=1910#!m\/560121" + "https://map.yale.edu/?id=1910#!m/560121" ] ] }, @@ -299119,10 +650999,38 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85876\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/85876/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -299159,7 +651067,7 @@ "8:00", "10:15", "WLH 115 - William L. Harkness Hall 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -299171,10 +651079,81 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86002\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86002/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988214373588562 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989162683486938 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9968384504318237 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 3, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 3 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -299215,7 +651194,7 @@ "9:25", "11:15", "PH 310 - Phelps Hall 310", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -299229,10 +651208,91 @@ "classnotes": "", "final_exam": "Tuesday, May 9, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85893\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85893/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987851977348328 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998782217502594, + 0.9982998967170715 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9980016350746155, + 0.998710036277771, + 0.9981922507286072, + 0.9994983673095703 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "final_label": "POSITIVE", + "final_count": 5, + "final_proportion": 0.7142857142857143, + "final_counts": { + "POSITIVE": 5, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.7142857142857143, + "NEGATIVE": 0.2857142857142857 + } + } }, { "season_code": "202301", @@ -299281,7 +651341,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -299318,7 +651406,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -299355,7 +651471,7 @@ "9:25", "10:15", "YK220 002 - 220 York Street 002", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ], "Tuesday": [ @@ -299363,7 +651479,7 @@ "9:25", "10:15", "YK220 002 - 220 York Street 002", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ], "Wednesday": [ @@ -299371,7 +651487,7 @@ "9:25", "10:15", "YK220 002 - 220 York Street 002", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ], "Thursday": [ @@ -299379,7 +651495,7 @@ "9:25", "10:15", "YK220 002 - 220 York Street 002", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ], "Friday": [ @@ -299387,7 +651503,7 @@ "9:25", "10:15", "YK220 002 - 220 York Street 002", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ] }, @@ -299401,10 +651517,107 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84959\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84959/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986618757247925, + 0.998708963394165, + 0.9914010167121887, + 0.9988299012184143, + 0.9983578324317932 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989185333251953, + 0.9982490539550781, + 0.9977859258651733, + 0.9988235831260681, + 0.9988877177238464 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.997117280960083, + 0.9988995790481567, + 0.9928653240203857, + 0.9989012479782104, + 0.9989401698112488 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 0.9333333333333333, + "final_counts": { + "POSITIVE": 14, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9333333333333333, + "NEGATIVE": 0.06666666666666667 + } + } }, { "season_code": "202301", @@ -299441,7 +651654,7 @@ "10:30", "11:20", "YK220 002 - 220 York Street 002", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ], "Wednesday": [ @@ -299449,7 +651662,7 @@ "10:30", "11:20", "YK220 002 - 220 York Street 002", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ], "Friday": [ @@ -299457,7 +651670,7 @@ "10:30", "11:20", "YK220 002 - 220 York Street 002", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ] }, @@ -299471,10 +651684,99 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84960\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84960/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9931193590164185, + 0.9965787529945374, + 0.9989020824432373, + 0.9988313317298889, + 0.9987125396728516 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988609552383423, + 0.9988735318183899, + 0.9967203736305237 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988324046134949, + 0.9989312291145325, + 0.9988798499107361, + 0.9988563060760498 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 12 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -299513,7 +651815,7 @@ "16:00", "17:15", "WTS A30 - Watson Center 60 Sachem Street A30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -299521,7 +651823,7 @@ "16:00", "17:15", "WTS A30 - Watson Center 60 Sachem Street A30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -299535,10 +651837,133 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84961\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84961/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988954067230225, + 0.9989269375801086, + 0.997858464717865, + 0.9989088773727417, + 0.9988744854927063, + 0.9988141059875488, + 0.9989349246025085, + 0.9987757802009583 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988096952438354, + 0.9989193677902222, + 0.9957420229911804, + 0.9985496401786804, + 0.9989087581634521, + 0.9989333748817444, + 0.9989045858383179, + 0.9984965324401855, + 0.9988749623298645, + 0.9988137483596802 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9976966977119446, + 0.998934805393219, + 0.9988683462142944, + 0.9967030882835388, + 0.9989286065101624, + 0.9989368319511414, + 0.9989171028137207, + 0.9987916350364685, + 0.9989103078842163, + 0.9987819790840149 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 27, + "final_proportion": 0.9642857142857143, + "final_counts": { + "POSITIVE": 27, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9642857142857143, + "NEGATIVE": 0.03571428571428571 + } + } }, { "season_code": "202301", @@ -299578,10 +652003,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84962\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84962/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -299618,7 +652071,7 @@ "11:35", "12:50", "WLH 210 - William L. Harkness Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -299626,7 +652079,7 @@ "11:35", "12:50", "WLH 210 - William L. Harkness Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -299640,10 +652093,151 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84963\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84963/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989264607429504, + 0.9987877011299133, + 0.9984027743339539, + 0.9989179372787476, + 0.9989272952079773, + 0.9988856911659241, + 0.9988540410995483, + 0.9921663999557495, + 0.9931807518005371, + 0.9988293051719666, + 0.9987388253211975, + 0.9988968372344971, + 0.998930037021637 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9230769230769231, + "NEGATIVE": 0.07692307692307693 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9230769230769231 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988793730735779, + 0.9988757967948914, + 0.9986404776573181, + 0.998920202255249, + 0.9988996982574463, + 0.9982321858406067, + 0.9989235997200012, + 0.9988085031509399, + 0.998543381690979, + 0.9989390969276428, + 0.9989330172538757, + 0.9989099502563477 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984861016273499, + 0.9989005327224731, + 0.9989209175109863, + 0.9989292025566101, + 0.9925750494003296, + 0.9987812638282776, + 0.9989281296730042, + 0.9989043474197388, + 0.9988002777099609, + 0.9989367127418518, + 0.9989196062088013, + 0.9989356398582458 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9166666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 35, + "final_proportion": 0.9459459459459459, + "final_counts": { + "POSITIVE": 35, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9459459459459459, + "NEGATIVE": 0.05405405405405406 + } + } }, { "season_code": "202301", @@ -299680,7 +652274,7 @@ "14:30", "15:45", "PR135 A83 - 135 Prospect Street A83", - "https:\/\/map.yale.edu\/?id=1910#!m\/560122" + "https://map.yale.edu/?id=1910#!m/560122" ] ], "Thursday": [ @@ -299688,7 +652282,7 @@ "14:30", "15:45", "PR135 A83 - 135 Prospect Street A83", - "https:\/\/map.yale.edu\/?id=1910#!m\/560122" + "https://map.yale.edu/?id=1910#!m/560122" ] ] }, @@ -299704,10 +652298,127 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84964\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84964/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998843789100647, + 0.9987987279891968, + 0.9989224672317505, + 0.9988675117492676, + 0.9989117383956909, + 0.9988865256309509, + 0.9989087581634521, + 0.9987565279006958, + 0.9987912774085999 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989386200904846, + 0.9989010095596313, + 0.9988889098167419, + 0.9988656044006348, + 0.99883633852005, + 0.9988178610801697, + 0.9988786578178406, + 0.9989250302314758 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988608360290527, + 0.9988697171211243, + 0.9989070892333984, + 0.9989247918128967, + 0.9988270401954651, + 0.9989330172538757, + 0.9989376664161682, + 0.9988441467285156, + 0.9989094734191895 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 26, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 26 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -299739,7 +652450,7 @@ "Hu" ], "flags": [ - "YC English: 20th\/21st Century" + "YC English: 20th/21st Century" ], "regnotes": "", "rp_attr": "", @@ -299749,7 +652460,35 @@ "syllabus_url": "", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -299787,7 +652526,7 @@ "13:00", "14:15", "WTS B60 - Watson Center 60 Sachem Street B60", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -299795,7 +652534,7 @@ "13:00", "14:15", "WTS B60 - Watson Center 60 Sachem Street B60", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -299812,10 +652551,129 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85741\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85741/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988452196121216, + 0.9988781809806824, + 0.9987875819206238, + 0.9973088502883911, + 0.9987602233886719, + 0.9988971948623657, + 0.9988038539886475, + 0.998907208442688 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988721013069153, + 0.9989045858383179, + 0.9987855553627014, + 0.9989217519760132, + 0.9989033937454224, + 0.9988917708396912, + 0.9988158941268921, + 0.9988967180252075 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989194869995117, + 0.9989134073257446, + 0.9983333945274353, + 0.9989089965820312, + 0.9988763928413391, + 0.9982553124427795, + 0.9989336133003235, + 0.9979352951049805, + 0.9988394379615784, + 0.9982553124427795, + 0.9989087581634521 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 27, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 27 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -299847,7 +652705,7 @@ "16:00", "16:50", "WLH 004 - William L. Harkness Hall 004", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -299866,7 +652724,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -299898,7 +652784,7 @@ "9:25", "10:15", "WLH 004 - William L. Harkness Hall 004", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -299917,7 +652803,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -299949,7 +652863,7 @@ "14:30", "15:20", "WLH 013 - William L. Harkness Hall 013", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -299968,7 +652882,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -300000,7 +652942,7 @@ "10:30", "11:20", "LC 204 - Linsly-Chittenden Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -300019,7 +652961,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -300051,7 +653021,7 @@ "13:30", "14:20", "WTS A39 - Watson Center 60 Sachem Street A39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -300070,7 +653040,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -300102,7 +653100,7 @@ "16:00", "16:50", "BASSLB L70 - Bass Library L70", - "https:\/\/map.yale.edu\/?id=1910#!m\/564574" + "https://map.yale.edu/?id=1910#!m/564574" ] ] }, @@ -300121,7 +653119,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -300153,7 +653179,7 @@ "16:00", "16:50", "WLH 004 - William L. Harkness Hall 004", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -300172,7 +653198,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -300210,7 +653264,7 @@ "10:30", "11:20", "YUAG AUD - Yale University Art Gallery AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/559918" + "https://map.yale.edu/?id=1910#!m/559918" ] ], "Thursday": [ @@ -300218,7 +653272,7 @@ "10:30", "11:20", "YUAG AUD - Yale University Art Gallery AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/559918" + "https://map.yale.edu/?id=1910#!m/559918" ] ] }, @@ -300229,17 +653283,272 @@ "Hu" ], "flags": [ - "YC English: 18th\/19th Century " + "YC English: 18th/19th Century " ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "Wednesday, May 10, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83973\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/83973/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988645315170288, + 0.9995013475418091, + 0.9994977712631226, + 0.9989238381385803, + 0.9988598823547363, + 0.9986265897750854, + 0.9985405206680298, + 0.9985699653625488, + 0.9984795451164246, + 0.9988988637924194, + 0.9984782338142395, + 0.9981585144996643, + 0.9989047050476074, + 0.9984954595565796, + 0.9988179802894592, + 0.9986463189125061, + 0.9995079040527344, + 0.998422384262085, + 0.998690664768219, + 0.9989264607429504, + 0.9928857684135437, + 0.9980339407920837, + 0.9987726807594299, + 0.9987905621528625, + 0.9988983869552612, + 0.9987647533416748, + 0.9981508851051331, + 0.9987510442733765 + ], + "sentiment_counts": { + "POSITIVE": 24, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994978904724121, + 0.9995114803314209, + 0.9988923668861389, + 0.9951263666152954, + 0.999504804611206, + 0.9995065927505493, + 0.9989343285560608, + 0.9988994598388672, + 0.9989271759986877, + 0.9989057779312134, + 0.9987217783927917, + 0.9980921149253845, + 0.9972932934761047, + 0.9943355917930603, + 0.9987760186195374, + 0.9988168478012085, + 0.9988514184951782, + 0.9984951019287109, + 0.9809538125991821, + 0.9987886548042297, + 0.9994924068450928, + 0.997000515460968, + 0.96026211977005, + 0.9547531008720398, + 0.9995081424713135, + 0.9989193677902222, + 0.9987461566925049, + 0.9983938336372375, + 0.9989238381385803, + 0.9987725615501404, + 0.9988067150115967, + 0.9989264607429504, + 0.9989393353462219, + 0.992837131023407, + 0.9979708790779114 + ], + "sentiment_counts": { + "NEGATIVE": 12, + "POSITIVE": 23 + }, + "sentiment_distribution": { + "NEGATIVE": 0.34285714285714286, + "POSITIVE": 0.6571428571428571 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6571428571428571 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9995050430297852, + 0.9995149374008179, + 0.9965571165084839, + 0.9994890689849854, + 0.9995021820068359, + 0.9989191293716431, + 0.9974592328071594, + 0.9989193677902222, + 0.9988679885864258, + 0.9985646605491638, + 0.9968486428260803, + 0.9986795783042908, + 0.9987590312957764, + 0.9989320635795593, + 0.997117280960083, + 0.9994879961013794, + 0.9988529682159424, + 0.9995083808898926, + 0.9995042085647583, + 0.9988846182823181, + 0.9988957643508911, + 0.9987456798553467, + 0.9994978904724121, + 0.9989206790924072, + 0.9988595247268677, + 0.9988648891448975, + 0.9987157583236694, + 0.9989356398582458, + 0.9988073110580444, + 0.9989207983016968, + 0.9988800883293152 + ], + "sentiment_counts": { + "NEGATIVE": 9, + "POSITIVE": 22 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2903225806451613, + "POSITIVE": 0.7096774193548387 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7096774193548387 + ] + }, + "final_label": "POSITIVE", + "final_count": 69, + "final_proportion": 0.7340425531914894, + "final_counts": { + "POSITIVE": 69, + "NEGATIVE": 25 + }, + "final_distribution": { + "POSITIVE": 0.7340425531914894, + "NEGATIVE": 0.26595744680851063 + } + } }, { "season_code": "202301", @@ -300280,7 +653589,7 @@ "13:00", "14:15", "LC 203 - Linsly-Chittenden Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -300288,7 +653597,7 @@ "13:00", "14:15", "LC 203 - Linsly-Chittenden Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -300299,7 +653608,7 @@ "Hu" ], "flags": [ - "YC English: 18th\/19th Century ", + "YC English: 18th/19th Century ", "YC English: Junior Seminar" ], "regnotes": "", @@ -300307,10 +653616,151 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83978\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83978/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987886548042297, + 0.9989235997200012, + 0.9988014698028564, + 0.9988394379615784, + 0.9986526966094971, + 0.9989210367202759, + 0.9986774325370789, + 0.9989051818847656, + 0.9989080429077148, + 0.9922418594360352, + 0.9989215135574341, + 0.9976261258125305 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989221096038818, + 0.9989117383956909, + 0.9989357590675354, + 0.9986698627471924, + 0.9988628625869751, + 0.998884379863739, + 0.9989380240440369, + 0.9986473917961121, + 0.9988166093826294, + 0.996723473072052, + 0.9989194869995117, + 0.9988259673118591 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989031553268433, + 0.9988774657249451, + 0.9988613128662109, + 0.9989162683486938, + 0.9994534850120544, + 0.9989126920700073, + 0.9989141225814819, + 0.9987918734550476, + 0.9962354302406311, + 0.9986783862113953, + 0.9984385371208191, + 0.9956462979316711, + 0.9973617196083069 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9230769230769231, + "NEGATIVE": 0.07692307692307693 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9230769230769231 + ] + }, + "final_label": "POSITIVE", + "final_count": 36, + "final_proportion": 0.972972972972973, + "final_counts": { + "POSITIVE": 36, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.972972972972973, + "NEGATIVE": 0.02702702702702703 + } + } }, { "season_code": "202301", @@ -300347,7 +653797,7 @@ "13:30", "15:20", "HQ 401 - Humanities Quadrangle 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -300361,10 +653811,117 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84965\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84965/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988981485366821, + 0.9989277720451355, + 0.9988895058631897, + 0.9989359974861145, + 0.9987016916275024, + 0.9987988471984863 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989081621170044, + 0.9989350438117981, + 0.9989274144172668, + 0.99885094165802, + 0.9988227486610413, + 0.9988310933113098, + 0.9989192485809326, + 0.9989092350006104 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986782670021057, + 0.9989305138587952, + 0.998927891254425, + 0.9989351630210876, + 0.9989302754402161, + 0.9988271594047546, + 0.9915522336959839 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 21, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 21 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -300406,7 +653963,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -300445,7 +654030,7 @@ "9:25", "11:15", "HQ C64 - Humanities Quadrangle C64", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -300454,7 +654039,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -300462,10 +654047,127 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84023\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84023/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989288449287415, + 0.9987844824790955, + 0.9989166259765625, + 0.9989097118377686, + 0.99863201379776, + 0.998916506767273, + 0.9987566471099854, + 0.9988452196121216 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998921275138855, + 0.9989266991615295, + 0.9986843466758728, + 0.9988682270050049, + 0.9988901019096375, + 0.9964128136634827, + 0.9989172220230103 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989333748817444, + 0.997117280960083, + 0.9989145994186401, + 0.998802900314331, + 0.9988590478897095, + 0.9989140033721924, + 0.9988597631454468, + 0.99883633852005, + 0.9988880753517151, + 0.9989270567893982, + 0.9989181756973267 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 26, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 26 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -300503,7 +654205,7 @@ "15:30", "17:20", "HQ 401 - Humanities Quadrangle 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -300515,10 +654217,111 @@ "classnotes": "Priority is given to students in Education Studies (certificate & scholars program), and then by course year. Priority is also given to students who have taken EDST110. As you request permission on courses.yale.edu, please indicate why you hope to take the course, your major, EDST program and whether you've taken EDST 110.\n", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83845\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83845/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988695979118347, + 0.9988982677459717, + 0.9989128112792969, + 0.9989330172538757, + 0.9989197254180908 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989307522773743, + 0.9989302754402161, + 0.9989393353462219, + 0.998935878276825, + 0.9989362359046936 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988752007484436, + 0.9988152980804443, + 0.9988157749176025, + 0.998887836933136, + 0.9989049434661865, + 0.9989159107208252, + 0.9988530874252319, + 0.9989256262779236 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 18 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -300557,7 +654360,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -300596,7 +654427,7 @@ "13:30", "15:20", "RKZ 241 - Rosenkranz Hall 241", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -300612,10 +654443,95 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85110\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85110/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998704195022583, + 0.9987578392028809, + 0.9987120628356934 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989099502563477, + 0.9987390637397766, + 0.9987488985061646, + 0.9985461235046387 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987868666648865, + 0.9988558292388916, + 0.9988013505935669 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 10 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -300656,7 +654572,7 @@ "13:00", "14:15", "WLH 113 - William L. Harkness Hall 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -300664,7 +654580,7 @@ "13:00", "14:15", "WLH 113 - William L. Harkness Hall 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -300678,15 +654594,148 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86173\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "", - "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse\/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", + "syllabus_url": "https://yale.instructure.com/courses/86173/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987286925315857, + 0.9987770915031433, + 0.9988585710525513, + 0.9987416863441467, + 0.9989053010940552, + 0.9986703395843506, + 0.9985929131507874, + 0.9988076686859131, + 0.9987892508506775, + 0.9989145994186401, + 0.997857391834259 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989179372787476, + 0.9988939166069031, + 0.9982935786247253, + 0.9988971948623657, + 0.9989332556724548, + 0.9989209175109863, + 0.9988062381744385, + 0.9750773310661316, + 0.9988754391670227, + 0.9989145994186401, + 0.9987932443618774, + 0.9983556866645813 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9166666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988995790481567, + 0.9981922507286072, + 0.9989373087882996, + 0.9988808035850525, + 0.9989155530929565, + 0.998898983001709, + 0.9988975524902344, + 0.9989354014396667, + 0.9902792572975159, + 0.999200165271759 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "final_label": "POSITIVE", + "final_count": 31, + "final_proportion": 0.9393939393939394, + "final_counts": { + "POSITIVE": 31, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9393939393939394, + "NEGATIVE": 0.06060606060606061 + } + } + }, + { + "season_code": "202301", + "requirements": "", + "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", "short_title": "Sickness and Health in Africa...", "title": "Sickness and Health in African American History", "school": "YC", @@ -300721,7 +654770,7 @@ "13:30", "14:20", "YSB MARSH - Yale Science Building MARSH", - "https:\/\/map.yale.edu\/?id=1910#!m\/563700" + "https://map.yale.edu/?id=1910#!m/563700" ] ], "Thursday": [ @@ -300729,7 +654778,7 @@ "13:30", "14:20", "YSB MARSH - Yale Science Building MARSH", - "https:\/\/map.yale.edu\/?id=1910#!m\/563700" + "https://map.yale.edu/?id=1910#!m/563700" ] ] }, @@ -300749,15 +654798,1032 @@ "classnotes": "This course is full and we are no longer accepting instructor permission requests. Thank you!", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83282\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "", - "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse\/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", + "syllabus_url": "https://yale.instructure.com/courses/83282/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988340735435486, + 0.9986395239830017, + 0.9986968636512756, + 0.9989031553268433, + 0.9988620281219482, + 0.9988137483596802, + 0.9969080090522766, + 0.9983807802200317, + 0.9987789988517761, + 0.9987564086914062, + 0.9984493255615234, + 0.9986536502838135, + 0.9982695579528809, + 0.9982789754867554, + 0.9989293217658997, + 0.9946243166923523, + 0.9987239241600037, + 0.9980498552322388, + 0.998616099357605, + 0.9987815022468567, + 0.9968481659889221, + 0.9988880753517151, + 0.9988828301429749, + 0.9989162683486938, + 0.9989081621170044, + 0.9987485408782959, + 0.9989271759986877, + 0.9989168643951416, + 0.9984915256500244, + 0.9989184141159058, + 0.9989076852798462, + 0.9988468885421753, + 0.9985731840133667, + 0.9989288449287415, + 0.9986717700958252, + 0.9950319528579712, + 0.9988815188407898, + 0.9988020658493042, + 0.994141161441803, + 0.9968734383583069, + 0.9988811612129211, + 0.9978400468826294, + 0.9986481070518494, + 0.9988192915916443, + 0.9986947178840637, + 0.9989357590675354, + 0.9987982511520386, + 0.9985961318016052, + 0.9988431930541992, + 0.9987500905990601, + 0.9988921284675598, + 0.9988847374916077, + 0.9986405968666077, + 0.9964800477027893, + 0.9986070990562439, + 0.9984385371208191, + 0.9980556964874268, + 0.9986239671707153, + 0.9987909197807312, + 0.9988508224487305, + 0.9979257583618164, + 0.9989352822303772, + 0.9989070892333984, + 0.998741090297699, + 0.998672366142273, + 0.9984409213066101, + 0.9989080429077148, + 0.9989086389541626, + 0.9988235831260681, + 0.9985793828964233, + 0.9988088607788086, + 0.9986900687217712, + 0.9745175242424011, + 0.9828008413314819, + 0.9988285899162292, + 0.9988735318183899, + 0.998863935470581, + 0.9988976716995239, + 0.9986427426338196, + 0.9988811612129211, + 0.9984429478645325, + 0.9986421465873718, + 0.9986189603805542, + 0.9988147020339966, + 0.9950065612792969, + 0.9988425970077515, + 0.9986833930015564, + 0.9989243149757385, + 0.9989123344421387, + 0.9988893866539001, + 0.9988316893577576, + 0.9983320832252502, + 0.9987965822219849, + 0.9985906481742859, + 0.9987419247627258, + 0.9986976385116577, + 0.9986771941184998, + 0.9988052845001221, + 0.9988552331924438, + 0.998722493648529, + 0.9986487030982971, + 0.998903751373291, + 0.9989225268363953, + 0.9988188147544861, + 0.9827929735183716, + 0.9989330172538757, + 0.9986029267311096, + 0.9986230134963989, + 0.9988352656364441, + 0.9988930821418762, + 0.9988430738449097, + 0.9985798597335815, + 0.9985494017601013, + 0.9988065958023071, + 0.9989227652549744, + 0.9986359477043152, + 0.998755693435669, + 0.9989282488822937, + 0.9988858103752136, + 0.9986497759819031, + 0.9989180564880371, + 0.9986276626586914, + 0.9987366795539856, + 0.9988987445831299, + 0.9989117383956909, + 0.9984443783760071, + 0.9987707734107971, + 0.9986522793769836, + 0.9987888932228088, + 0.998904824256897, + 0.9988356232643127, + 0.9987788796424866, + 0.9989029169082642, + 0.9988052845001221 + ], + "sentiment_counts": { + "POSITIVE": 132, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.9850746268656716, + "NEGATIVE": 0.014925373134328358 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9850746268656716 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989101886749268, + 0.9985139966011047, + 0.9989320635795593, + 0.9986590147018433, + 0.998939573764801, + 0.9988256096839905, + 0.9988693594932556, + 0.9989269375801086, + 0.9988569021224976, + 0.9989309906959534, + 0.9988852143287659, + 0.9989275336265564, + 0.998847484588623, + 0.9986892342567444, + 0.9986897110939026, + 0.9985847473144531, + 0.9989288449287415, + 0.9988588094711304, + 0.9989238381385803, + 0.9989116191864014, + 0.9989094734191895, + 0.9989234805107117, + 0.9989333748817444, + 0.9989383816719055, + 0.9989296793937683, + 0.9989339709281921, + 0.9988177418708801, + 0.998874843120575, + 0.9989140033721924, + 0.9988942742347717, + 0.9989244341850281, + 0.9988756775856018, + 0.9989215135574341, + 0.9988221526145935, + 0.9985874891281128, + 0.9989200830459595, + 0.9989151954650879, + 0.9989259839057922, + 0.9988903403282166, + 0.9988194108009338, + 0.9988852143287659, + 0.9989200830459595, + 0.9988514184951782, + 0.9988941550254822, + 0.9989367127418518, + 0.9989240765571594, + 0.9989283680915833, + 0.998916506767273, + 0.9987910389900208, + 0.9989217519760132, + 0.9989098310470581, + 0.9989373087882996, + 0.9988885521888733, + 0.9989268183708191, + 0.9989142417907715, + 0.9989210367202759, + 0.9987784028053284, + 0.9988576173782349, + 0.9986928105354309, + 0.9988359808921814, + 0.9989284873008728, + 0.9988395571708679, + 0.9989044666290283, + 0.998880922794342, + 0.9988688826560974, + 0.9989117383956909, + 0.9988538026809692, + 0.9989325404167175, + 0.9989030361175537, + 0.9989042282104492, + 0.9988289475440979, + 0.9988977909088135, + 0.9988352656364441, + 0.9987223744392395, + 0.9989356398582458, + 0.9987284541130066, + 0.9989343285560608, + 0.9989288449287415, + 0.9989168643951416, + 0.998934805393219, + 0.9986547231674194, + 0.9989112615585327, + 0.9989155530929565, + 0.9989089965820312, + 0.9989166259765625, + 0.9989354014396667, + 0.9989245533943176, + 0.9988939166069031, + 0.9989140033721924, + 0.9989355206489563, + 0.9987800717353821, + 0.9989000558853149, + 0.9989272952079773, + 0.998875081539154, + 0.9986833930015564, + 0.9989184141159058, + 0.9986955523490906, + 0.9988547563552856, + 0.9989318251609802, + 0.9989166259765625, + 0.9989308714866638, + 0.9981245398521423, + 0.9984752535820007, + 0.9986801743507385, + 0.9986653327941895, + 0.9989244341850281, + 0.9971017241477966, + 0.998755931854248, + 0.9986880421638489, + 0.998789370059967, + 0.9989027976989746, + 0.9989237189292908, + 0.9989036321640015, + 0.9968572854995728, + 0.9989172220230103, + 0.9988908171653748, + 0.9987608194351196, + 0.9994779229164124, + 0.9989295601844788, + 0.998917818069458, + 0.9989301562309265, + 0.9988760352134705, + 0.9989249110221863, + 0.9967356324195862, + 0.9989045858383179, + 0.998923122882843, + 0.99893718957901, + 0.9984885454177856, + 0.9989292025566101, + 0.9989392161369324, + 0.9974145889282227, + 0.9989198446273804, + 0.9988732933998108, + 0.998925507068634, + 0.9987367987632751, + 0.9988483190536499, + 0.9985429048538208, + 0.9988239407539368, + 0.998930037021637, + 0.9989349246025085, + 0.9989305138587952, + 0.9989393353462219, + 0.9989190101623535, + 0.9988657236099243, + 0.9988666772842407, + 0.9988998174667358, + 0.9989162683486938 + ], + "sentiment_counts": { + "POSITIVE": 144, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.9795918367346939, + "NEGATIVE": 0.02040816326530612 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9795918367346939 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983974099159241, + 0.9888043999671936, + 0.998786985874176, + 0.9986128807067871, + 0.9989315867424011, + 0.9988334774971008, + 0.9987927675247192, + 0.9989320635795593, + 0.9963850975036621, + 0.997117280960083, + 0.9988308548927307, + 0.9980233907699585, + 0.9974019527435303, + 0.9983333945274353, + 0.9989299178123474, + 0.9984614849090576, + 0.9988381266593933, + 0.9987615346908569, + 0.9982694387435913, + 0.9989383816719055, + 0.9986180067062378, + 0.9989035129547119, + 0.9988532066345215, + 0.9987928867340088, + 0.998872697353363, + 0.9902652502059937, + 0.9988453388214111, + 0.9987645149230957, + 0.9989226460456848, + 0.9989016056060791, + 0.9989362359046936, + 0.9985417127609253, + 0.9988675117492676, + 0.9988947510719299, + 0.9989292025566101, + 0.9988635778427124, + 0.9988839030265808, + 0.9989066123962402, + 0.9988988637924194, + 0.9988574981689453, + 0.9989055395126343, + 0.9989317059516907, + 0.9984641075134277, + 0.9987357258796692, + 0.9988387227058411, + 0.9989053010940552, + 0.9988917708396912, + 0.9987099170684814, + 0.9989288449287415, + 0.998921275138855, + 0.9989187717437744, + 0.9988780617713928, + 0.9986422657966614, + 0.9988622665405273, + 0.9988786578178406, + 0.998932421207428, + 0.9989190101623535, + 0.9982553124427795, + 0.9982553124427795, + 0.9985672235488892, + 0.9986905455589294, + 0.9988991022109985, + 0.9987295269966125, + 0.998909592628479, + 0.9988479614257812, + 0.9988248944282532, + 0.9989368319511414, + 0.9989263415336609, + 0.9989081621170044, + 0.9988775849342346, + 0.9989221096038818, + 0.9989272952079773, + 0.9989270567893982, + 0.9988561868667603, + 0.9988903403282166, + 0.9988571405410767, + 0.9963590502738953, + 0.9982553124427795, + 0.9981878399848938, + 0.9983333945274353, + 0.9988864064216614, + 0.9980168342590332, + 0.9987473487854004, + 0.9988362193107605, + 0.9987902045249939, + 0.9984739422798157, + 0.9989058971405029, + 0.9986993074417114, + 0.9989184141159058, + 0.9989271759986877, + 0.9986972212791443, + 0.9989074468612671, + 0.998891294002533, + 0.9982694387435913, + 0.9989138841629028, + 0.9994202852249146, + 0.9989217519760132, + 0.9989379048347473, + 0.9984965324401855, + 0.9984285235404968, + 0.9985841512680054, + 0.9988813996315002, + 0.9989080429077148, + 0.9987743496894836, + 0.9989148378372192, + 0.9989377856254578, + 0.9988741278648376, + 0.9989117383956909, + 0.998400866985321, + 0.997117280960083, + 0.9987142086029053, + 0.9988915324211121, + 0.99891197681427, + 0.998900294303894, + 0.9988792538642883, + 0.998932421207428, + 0.9987950325012207, + 0.9989086389541626, + 0.9989376664161682, + 0.9989032745361328, + 0.9989134073257446, + 0.9989307522773743, + 0.9989053010940552, + 0.998904824256897, + 0.998918890953064, + 0.9988715052604675, + 0.9989161491394043, + 0.9988309741020203, + 0.9988928437232971, + 0.9969774484634399, + 0.9987527132034302, + 0.9989199638366699, + 0.9988387227058411, + 0.9989400506019592, + 0.998762845993042, + 0.9978189468383789, + 0.9989193677902222, + 0.9989359974861145, + 0.9988927245140076, + 0.9989250302314758, + 0.9989191293716431, + 0.9987592697143555, + 0.9987151622772217, + 0.998938262462616, + 0.9988916516304016, + 0.9987849593162537, + 0.9986801743507385, + 0.9989303946495056, + 0.9988600015640259, + 0.9988922476768494, + 0.9989261031150818, + 0.9989068508148193, + 0.9989346861839294, + 0.9984594583511353, + 0.9986693859100342, + 0.9989142417907715, + 0.9988985061645508, + 0.9988681077957153, + 0.9989017248153687, + 0.9942962527275085, + 0.9989299178123474, + 0.998896598815918, + 0.9988757967948914, + 0.998881995677948, + 0.9989005327224731, + 0.9939151406288147, + 0.9989147186279297, + 0.9989296793937683, + 0.9983274340629578, + 0.9989288449287415, + 0.9989246726036072, + 0.9985185265541077, + 0.9988113641738892, + 0.998828113079071, + 0.9988791346549988, + 0.9989120960235596, + 0.9989370703697205, + 0.993130624294281, + 0.997875452041626, + 0.9989209175109863, + 0.9989101886749268, + 0.9988956451416016, + 0.9987995624542236, + 0.9988664388656616, + 0.9986214637756348, + 0.9988986253738403, + 0.9988881945610046, + 0.9987167119979858, + 0.9979366064071655, + 0.9989270567893982, + 0.9988871216773987, + 0.9988478422164917, + 0.9988928437232971, + 0.9989187717437744 + ], + "sentiment_counts": { + "POSITIVE": 192, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.9896907216494846, + "NEGATIVE": 0.010309278350515464 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9896907216494846 + ] + }, + "final_label": "POSITIVE", + "final_count": 468, + "final_proportion": 0.9852631578947368, + "final_counts": { + "POSITIVE": 468, + "NEGATIVE": 7 + }, + "final_distribution": { + "POSITIVE": 0.9852631578947368, + "NEGATIVE": 0.014736842105263158 + } + } + }, + { + "season_code": "202301", + "requirements": "", + "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", "short_title": "Sickness and Health in Africa...", "title": "Sickness and Health in African American History", "school": "YC", @@ -300786,7 +655852,7 @@ "15:30", "16:20", "WLH 013 - William L. Harkness Hall 013", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -300803,12 +655869,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse\/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", + "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", "short_title": "Sickness and Health in Africa...", "title": "Sickness and Health in African American History", "school": "YC", @@ -300837,7 +655931,7 @@ "19:00", "19:50", "WLH 003 - William L. Harkness Hall 003", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -300854,12 +655948,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse\/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", + "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", "short_title": "Sickness and Health in Africa...", "title": "Sickness and Health in African American History", "school": "YC", @@ -300888,7 +656010,7 @@ "14:30", "15:20", "WTS A42 - Watson Center 60 Sachem Street A42", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -300905,12 +656027,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse\/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", + "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", "short_title": "Sickness and Health in Africa...", "title": "Sickness and Health in African American History", "school": "YC", @@ -300939,7 +656089,7 @@ "9:25", "10:15", "WALL81 101 - 81 Wall Street 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -300956,12 +656106,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse\/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", + "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", "short_title": "Sickness and Health in Africa...", "title": "Sickness and Health in African American History", "school": "YC", @@ -300990,7 +656168,7 @@ "16:30", "17:20", "WLH 013 - William L. Harkness Hall 013", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -301007,12 +656185,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse\/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", + "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", "short_title": "Sickness and Health in Africa...", "title": "Sickness and Health in African American History", "school": "YC", @@ -301041,7 +656247,7 @@ "20:00", "20:50", "WLH 003 - William L. Harkness Hall 003", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -301058,12 +656264,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse\/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", + "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", "short_title": "Sickness and Health in Africa...", "title": "Sickness and Health in African American History", "school": "YC", @@ -301092,7 +656326,7 @@ "15:30", "16:20", "WLH 006 - William L. Harkness Hall 006", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -301109,12 +656343,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse\/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", + "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", "short_title": "Sickness and Health in Africa...", "title": "Sickness and Health in African American History", "school": "YC", @@ -301143,7 +656405,7 @@ "16:30", "17:20", "WLH 006 - William L. Harkness Hall 006", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -301160,12 +656422,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse\/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", + "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", "short_title": "Sickness and Health in Africa...", "title": "Sickness and Health in African American History", "school": "YC", @@ -301194,7 +656484,7 @@ "19:00", "19:50", "BM 013 - Bingham Hall 013", - "https:\/\/map.yale.edu\/?id=1910#!m\/559569" + "https://map.yale.edu/?id=1910#!m/559569" ] ] }, @@ -301211,12 +656501,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse\/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", + "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", "short_title": "Sickness and Health in Africa...", "title": "Sickness and Health in African American History", "school": "YC", @@ -301245,7 +656563,7 @@ "14:30", "15:20", "WTS B39 - Watson Center 60 Sachem Street B39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -301262,12 +656580,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse\/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", + "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", "short_title": "Sickness and Health in Africa...", "title": "Sickness and Health in African American History", "school": "YC", @@ -301296,7 +656642,7 @@ "15:30", "16:20", "WLH 006 - William L. Harkness Hall 006", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -301313,12 +656659,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse\/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", + "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", "short_title": "Sickness and Health in Africa...", "title": "Sickness and Health in African American History", "school": "YC", @@ -301347,7 +656721,7 @@ "19:00", "19:50", "WLH 002 - William L. Harkness Hall 002", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -301364,12 +656738,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse\/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", + "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", "short_title": "Sickness and Health in Africa...", "title": "Sickness and Health in African American History", "school": "YC", @@ -301398,7 +656800,7 @@ "16:30", "17:20", "WLH 006 - William L. Harkness Hall 006", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -301415,12 +656817,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse\/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", + "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", "short_title": "Sickness and Health in Africa...", "title": "Sickness and Health in African American History", "school": "YC", @@ -301449,7 +656879,7 @@ "20:00", "20:50", "WLH 002 - William L. Harkness Hall 002", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -301466,12 +656896,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse\/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", + "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", "short_title": "Sickness and Health in Africa...", "title": "Sickness and Health in African American History", "school": "YC", @@ -301500,7 +656958,7 @@ "15:30", "16:20", "WLH 009 - William L. Harkness Hall 009", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -301517,12 +656975,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse\/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", + "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", "short_title": "Sickness and Health in Africa...", "title": "Sickness and Health in African American History", "school": "YC", @@ -301551,7 +657037,7 @@ "9:25", "10:15", "BM 013 - Bingham Hall 013", - "https:\/\/map.yale.edu\/?id=1910#!m\/559569" + "https://map.yale.edu/?id=1910#!m/559569" ] ] }, @@ -301568,12 +657054,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse\/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", + "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", "short_title": "Sickness and Health in Africa...", "title": "Sickness and Health in African American History", "school": "YC", @@ -301602,7 +657116,7 @@ "19:00", "19:50", "WLH 006 - William L. Harkness Hall 006", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -301619,12 +657133,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse\/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", + "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", "short_title": "Sickness and Health in Africa...", "title": "Sickness and Health in African American History", "school": "YC", @@ -301653,7 +657195,7 @@ "15:30", "16:20", "WLH 203 - William L. Harkness Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -301670,12 +657212,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse\/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", + "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", "short_title": "Sickness and Health in Africa...", "title": "Sickness and Health in African American History", "school": "YC", @@ -301704,7 +657274,7 @@ "19:00", "19:50", "WLH 011 - William L. Harkness Hall 011", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -301721,12 +657291,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse\/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", + "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", "short_title": "Sickness and Health in Africa...", "title": "Sickness and Health in African American History", "school": "YC", @@ -301755,7 +657353,7 @@ "14:30", "15:20", "ESC 110 - Environmental Sciences Center 110", - "https:\/\/map.yale.edu\/?id=1910#!m\/560020" + "https://map.yale.edu/?id=1910#!m/560020" ] ] }, @@ -301772,12 +657370,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse\/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", + "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", "short_title": "Sickness and Health in Africa...", "title": "Sickness and Health in African American History", "school": "YC", @@ -301806,7 +657432,7 @@ "15:30", "16:20", "WLH 007 - William L. Harkness Hall 007", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -301823,12 +657449,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse\/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", + "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", "short_title": "Sickness and Health in Africa...", "title": "Sickness and Health in African American History", "school": "YC", @@ -301882,12 +657536,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse\/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", + "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", "short_title": "Sickness and Health in Africa...", "title": "Sickness and Health in African American History", "school": "YC", @@ -301916,7 +657598,7 @@ "20:00", "20:50", "WLH 011 - William L. Harkness Hall 011", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -301933,12 +657615,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse\/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", + "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", "short_title": "Sickness and Health in Africa...", "title": "Sickness and Health in African American History", "school": "YC", @@ -301967,7 +657677,7 @@ "16:30", "17:20", "WLH 009 - William L. Harkness Hall 009", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -301984,12 +657694,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse\/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", + "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", "short_title": "Sickness and Health in Africa...", "title": "Sickness and Health in African American History", "school": "YC", @@ -302018,7 +657756,7 @@ "19:00", "19:50", "WLH 210 - William L. Harkness Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -302035,12 +657773,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse\/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", + "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", "short_title": "Sickness and Health in Africa...", "title": "Sickness and Health in African American History", "school": "YC", @@ -302069,7 +657835,7 @@ "10:30", "11:20", "WALL81 101 - 81 Wall Street 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -302086,12 +657852,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse\/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", + "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", "short_title": "Sickness and Health in Africa...", "title": "Sickness and Health in African American History", "school": "YC", @@ -302120,7 +657914,7 @@ "16:30", "17:20", "WLH 203 - William L. Harkness Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -302137,12 +657931,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse\/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", + "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", "short_title": "Sickness and Health in Africa...", "title": "Sickness and Health in African American History", "school": "YC", @@ -302196,12 +658018,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse\/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", + "description": "This course is a history of American medicine viewed through the lens of the African American experience. We cover the period of slavery through the present COVID era.\u00a0 We amplify two key dynamics that have shaped sickness and health in the Black experience\u2014medical abuse/neglect and health activism. Key themes include medicine and slavery; gender and sexuality; medical exploitation and bioethics; racial science; racism in medicine and public health, including health disparities, policing, clinical algorithms, reproductive justice, and Black health activism.", "short_title": "Sickness and Health in Africa...", "title": "Sickness and Health in African American History", "school": "YC", @@ -302230,7 +658080,7 @@ "16:30", "17:20", "WLH 007 - William L. Harkness Hall 007", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -302247,7 +658097,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -302287,7 +658165,7 @@ "9:25", "11:15", "LUCE 202 - Luce Hall 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ] }, @@ -302303,15 +658181,108 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84495\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84495/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "No prior background is required. However, it will be helpful to have taken either WGSS 291\/HIST 287J or WGSS 306 before or in concurrence with this course.", - "description": "What are the historical forms of gender non-conformity? This course investigates expressions of gender that were considered non-conforming within their historical contexts. Our point of departure is the idea that gender constitutes a \"useful category of historical analysis\" (Joan Scott). In this course we ask how deviant gender expression can be a category of historical analysis. How do we write history from the perspective of gender fluidity, non-binarism, and gender transgression? How can this history give us the tools to critique regnant norms of gender expression, then and now? How does this historical approach relate to trans* and non-binary people & movements today? The course is historically wide-ranging, from Antiquity to the Early Modern period, and geographically diverse, including Europe, the Middle East, and the colonial Americas. The breath of contexts enable us to consider broad patterns, continuities, and discontinuities. At the same time, we discuss the specificities of particular contexts, emphasizing the connection between gender fluidity\/non-conformity, on the one hand, and local cultural norms around gender and sex, on the other.\u00a0We investigate intellectual and cultural trends, as well as the lives of gender fluid\/non-conforming individuals. We analyze sources drawn from law, medicine, religion, philosophy, visual arts & literature, biographies, and memoirs. All readings are in English translation.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989238381385803, + 0.9988835453987122, + 0.9988100528717041, + 0.9986996650695801, + 0.9987648725509644 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986563920974731, + 0.9988893866539001, + 0.9988890290260315, + 0.9989286065101624 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989092350006104, + 0.9988270401954651, + 0.9988270401954651, + 0.9988808035850525, + 0.9938933253288269 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 14 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } + }, + { + "season_code": "202301", + "requirements": "No prior background is required. However, it will be helpful to have taken either WGSS 291/HIST 287J or WGSS 306 before or in concurrence with this course.", + "description": "What are the historical forms of gender non-conformity? This course investigates expressions of gender that were considered non-conforming within their historical contexts. Our point of departure is the idea that gender constitutes a \"useful category of historical analysis\" (Joan Scott). In this course we ask how deviant gender expression can be a category of historical analysis. How do we write history from the perspective of gender fluidity, non-binarism, and gender transgression? How can this history give us the tools to critique regnant norms of gender expression, then and now? How does this historical approach relate to trans* and non-binary people & movements today? The course is historically wide-ranging, from Antiquity to the Early Modern period, and geographically diverse, including Europe, the Middle East, and the colonial Americas. The breath of contexts enable us to consider broad patterns, continuities, and discontinuities. At the same time, we discuss the specificities of particular contexts, emphasizing the connection between gender fluidity/non-conformity, on the one hand, and local cultural norms around gender and sex, on the other.\u00a0We investigate intellectual and cultural trends, as well as the lives of gender fluid/non-conforming individuals. We analyze sources drawn from law, medicine, religion, philosophy, visual arts & literature, biographies, and memoirs. All readings are in English translation.", "short_title": "Gender Expression Before Mode...", "title": "Gender Expression Before Modernity", "school": "YC", @@ -302344,7 +658315,7 @@ "15:30", "17:20", "WLH 112 - William L. Harkness Hall 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -302361,10 +658332,125 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84966\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84966/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984365105628967, + 0.9989006519317627, + 0.9987877011299133, + 0.998930037021637, + 0.9986578226089478, + 0.9989001750946045, + 0.9989217519760132, + 0.99885094165802 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9979259967803955, + 0.9988646507263184, + 0.9971369504928589, + 0.9987909197807312, + 0.9987679123878479, + 0.9949491024017334, + 0.9989292025566101, + 0.9989144802093506 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982049465179443, + 0.9989221096038818, + 0.9979680180549622, + 0.998262345790863, + 0.9989185333251953, + 0.9988176226615906, + 0.9989387392997742, + 0.9988930821418762 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 22, + "final_proportion": 0.9166666666666666, + "final_counts": { + "POSITIVE": 22, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + } + } }, { "season_code": "202301", @@ -302404,7 +658490,7 @@ "13:30", "15:20", "HQ C03 - Humanities Quadrangle C03", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -302422,15 +658508,118 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84032\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84032/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "", - "description": "Medieval understandings of womanhood examined through analysis of writings by and\/or about women, from antiquity through the Middle Ages. Introduction to the premodern Western canon and assessment of the role that women played in its construction.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987165927886963, + 0.9989297986030579, + 0.9989022016525269, + 0.9987567663192749 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989044666290283, + 0.9987654685974121, + 0.9982131719589233, + 0.9987983703613281, + 0.9989168643951416, + 0.9988625049591064 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988883137702942, + 0.9989199638366699, + 0.9995104074478149, + 0.9989161491394043, + 0.9987264275550842, + 0.9988746047019958, + 0.998871386051178, + 0.998908281326294 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 0.9444444444444444, + "final_counts": { + "POSITIVE": 17, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9444444444444444, + "NEGATIVE": 0.05555555555555555 + } + } + }, + { + "season_code": "202301", + "requirements": "", + "description": "Medieval understandings of womanhood examined through analysis of writings by and/or about women, from antiquity through the Middle Ages. Introduction to the premodern Western canon and assessment of the role that women played in its construction.", "short_title": "Women in the Middle Ages", "title": "Women in the Middle Ages", "school": "YC", @@ -302465,7 +658654,7 @@ "13:00", "14:15", "HQ C07 - Humanities Quadrangle C07", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -302473,7 +658662,7 @@ "13:00", "14:15", "HQ C07 - Humanities Quadrangle C07", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -302489,15 +658678,122 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84967\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84967/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202301", - "requirements": "", - "description": "This course combines in-depth engagement of texts in black feminist theory with a wide-ranging survey of significant sculpture, painting, performance, photography, and installation art made by black women in the 19th to 21st centuries. We engage the ways that black women disturb, dissolve, and give definition to the conceptions of gender and racialization that shape the modern human. Theoretical concepts representing the singular modes of dispossession that ensnare black femininity, as well as black femininity's re\/production of the modern world\u2014concepts such as black flesh, ungendering, fungibility, black mater, plasticity\u2014are applied to analysis of artworks and the artworks in turn flesh out these concepts. We utilize formal analysis and art historical context to interrogate the ways that black female artists illuminate, critique, and intervene on not only constructions of blackness, gender, and sexuality but also art historical categories and ideologies. Through the figure of the black woman and black feminist theory, the class probes the role that the aesthetic can play in illuminating the violent aporias of hegemonic gendered and racial constructions while being attentive to its limits. Artists studied include Edmonia Lewis, Meta Warrick Fuller, Lois Mailou Jones, Kara Walker, Alma Thomas,\u00a0Faith Ringgold, Senga Nengudi, Beverly Buchanan, Adrian Piper,\u00a0Lorna Simpson, Martine Syms, and more. The class makes extensive use of the Yale University Art Gallery's holdings.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989093542098999, + 0.9987327456474304, + 0.9989203214645386, + 0.9988341927528381, + 0.9983691573143005, + 0.9988722205162048, + 0.9988724589347839 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9972534775733948, + 0.9987975358963013, + 0.9989268183708191, + 0.9988551139831543, + 0.9989287257194519, + 0.9967257976531982, + 0.998938262462616 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989038705825806, + 0.9988985061645508, + 0.9988089799880981, + 0.9989352822303772, + 0.9987322688102722, + 0.9988644123077393, + 0.9989362359046936 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 21, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 21 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } + }, + { + "season_code": "202301", + "requirements": "", + "description": "This course combines in-depth engagement of texts in black feminist theory with a wide-ranging survey of significant sculpture, painting, performance, photography, and installation art made by black women in the 19th to 21st centuries. We engage the ways that black women disturb, dissolve, and give definition to the conceptions of gender and racialization that shape the modern human. Theoretical concepts representing the singular modes of dispossession that ensnare black femininity, as well as black femininity's re/production of the modern world\u2014concepts such as black flesh, ungendering, fungibility, black mater, plasticity\u2014are applied to analysis of artworks and the artworks in turn flesh out these concepts. We utilize formal analysis and art historical context to interrogate the ways that black female artists illuminate, critique, and intervene on not only constructions of blackness, gender, and sexuality but also art historical categories and ideologies. Through the figure of the black woman and black feminist theory, the class probes the role that the aesthetic can play in illuminating the violent aporias of hegemonic gendered and racial constructions while being attentive to its limits. Artists studied include Edmonia Lewis, Meta Warrick Fuller, Lois Mailou Jones, Kara Walker, Alma Thomas,\u00a0Faith Ringgold, Senga Nengudi, Beverly Buchanan, Adrian Piper,\u00a0Lorna Simpson, Martine Syms, and more. The class makes extensive use of the Yale University Art Gallery's holdings.", "short_title": "Visual Art and Black Feminist...", "title": "Visual Art and Black Feminist Theory", "school": "YC", @@ -302532,7 +658828,7 @@ "13:30", "15:20", "WLH 006 - William L. Harkness Hall 006", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -302548,10 +658844,101 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85880\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85880/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987030029296875, + 0.9987471103668213, + 0.998915433883667, + 0.9988490343093872 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9934101700782776, + 0.9985740184783936, + 0.9989018440246582 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9883019328117371, + 0.9983124732971191, + 0.9989066123962402, + 0.9988566637039185, + 0.9989107847213745 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 4 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2, + "POSITIVE": 0.8 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 0.8333333333333334, + "final_counts": { + "POSITIVE": 10, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + } + } }, { "season_code": "202301", @@ -302592,7 +658979,7 @@ "15:30", "17:20", "PH 207 - Phelps Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -302609,10 +658996,131 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85919\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85919/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987782835960388, + 0.9989118576049805, + 0.9988343119621277, + 0.9989268183708191, + 0.9986599683761597, + 0.9987064599990845, + 0.9988788962364197, + 0.9987242817878723, + 0.9989331364631653 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989103078842163, + 0.9989150762557983, + 0.9989306330680847, + 0.9989027976989746, + 0.9989321827888489, + 0.9988206028938293, + 0.9989105463027954, + 0.9989148378372192, + 0.9989281296730042 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9421969056129456, + 0.9988974332809448, + 0.9989270567893982, + 0.9985398054122925, + 0.9988217949867249, + 0.9987505674362183, + 0.9988631010055542, + 0.9989206790924072, + 0.9989385008811951, + 0.9989297986030579 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 28, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 28 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -302649,7 +659157,7 @@ "15:30", "17:20", "WLH 203 - William L. Harkness Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -302665,10 +659173,103 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84915\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84915/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988396763801575, + 0.9988176226615906, + 0.9984834790229797, + 0.9989225268363953 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987120628356934, + 0.9985686540603638, + 0.9989216327667236, + 0.9988728165626526, + 0.9986385703086853 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989302754402161, + 0.999504566192627, + 0.9988929629325867, + 0.9989050626754761 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 0.9230769230769231, + "final_counts": { + "POSITIVE": 12, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9230769230769231, + "NEGATIVE": 0.07692307692307693 + } + } }, { "season_code": "202301", @@ -302710,7 +659311,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -302750,7 +659379,7 @@ "9:25", "11:15", "WALL81 201 - 81 Wall Street 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -302766,10 +659395,135 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83303\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83303/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988480806350708, + 0.9989012479782104, + 0.9989172220230103, + 0.9986692667007446, + 0.9986727237701416, + 0.9987316727638245, + 0.9988932013511658, + 0.9989190101623535, + 0.9988895058631897 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.998233437538147, + 0.9988462924957275, + 0.9989042282104492, + 0.9988855719566345, + 0.9989101886749268, + 0.9989123344421387, + 0.9989299178123474, + 0.9989319443702698, + 0.9989330172538757, + 0.9888333082199097 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988939166069031, + 0.9986318945884705, + 0.9989064931869507, + 0.9986655712127686, + 0.9985539317131042, + 0.998836100101471, + 0.9989390969276428, + 0.9989014863967896, + 0.9986961483955383, + 0.9986067414283752 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 28, + "final_proportion": 0.9655172413793104, + "final_counts": { + "POSITIVE": 28, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9655172413793104, + "NEGATIVE": 0.034482758620689655 + } + } }, { "season_code": "202301", @@ -302809,7 +659563,7 @@ "13:30", "15:20", "RKZ 202 - Rosenkranz Hall 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -302824,13 +659578,102 @@ ], "regnotes": "", "rp_attr": "", - "classnotes": "This course requires instructor permission. Please submit the following information with your registration request: year, major, related courses taken (if any), 2-3 sentences why you are interested in the course, plan to write senior essay in this seminar (Yes\/No\/Undecided).", + "classnotes": "This course requires instructor permission. Please submit the following information with your registration request: year, major, related courses taken (if any), 2-3 sentences why you are interested in the course, plan to write senior essay in this seminar (Yes/No/Undecided).", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85148\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85148/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988574981689453, + 0.9989180564880371, + 0.9986271858215332, + 0.9987420439720154 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998923122882843, + 0.99891197681427, + 0.9989261031150818, + 0.9988885521888733 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989087581634521, + 0.9989331364631653, + 0.9988707900047302, + 0.9989271759986877 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 12 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -302867,7 +659710,7 @@ "13:30", "15:20", "WLH 209 - William L. Harkness Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -302883,15 +659726,43 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84919\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84919/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This seminar centers the analytics and methods that feminist and queer ethnographic analyses have brought to the fore to revisit a cluster of topical issues, this year assembled around the theme:\u00a0Family, Community, Nation. As a site in which personhood is distributed and contested, the \"family\" is one of the building blocks of social scientific analysis\u2014along with \"community\" and \"nation.\" Seen as ideological lynchpins for the reproduction of the social order, processes of family-making\u2014like marriage, divorce, childbirth, and intergenerational flows\u2014have been codified differently across historical and cultural contexts. This course engages the feminist and queer ethnographies that revealed the political hierarchies that emerge from seemingly natural categories and distinctions of kinship. We trace the gendered, sexualized, class-making, and racialized concepts, processes, and implicit understandings of family-making that chart the public and private spheres of community and national terrains. Students grapple with the processes of naturalization and denaturalization through which the \"political\" is mobilized and dyads like kin\/kith, blood\/soil, human\/nonhuman, citizen\/noncitizen, us\/them, are made to appear. We also engage with feminist and queer methodologies that conjure up speculative fabulations for, what Saidiya Hartman has called, \"the radical hope for living otherwise.\" We do so at a time when the global Covid-19 pandemic has demanded the resurgence of the state, tested community ties, transformed family arrangements, and isolated most of the world\u2019s population within domestic domains.", + "description": "This seminar centers the analytics and methods that feminist and queer ethnographic analyses have brought to the fore to revisit a cluster of topical issues, this year assembled around the theme:\u00a0Family, Community, Nation. As a site in which personhood is distributed and contested, the \"family\" is one of the building blocks of social scientific analysis\u2014along with \"community\" and \"nation.\" Seen as ideological lynchpins for the reproduction of the social order, processes of family-making\u2014like marriage, divorce, childbirth, and intergenerational flows\u2014have been codified differently across historical and cultural contexts. This course engages the feminist and queer ethnographies that revealed the political hierarchies that emerge from seemingly natural categories and distinctions of kinship. We trace the gendered, sexualized, class-making, and racialized concepts, processes, and implicit understandings of family-making that chart the public and private spheres of community and national terrains. Students grapple with the processes of naturalization and denaturalization through which the \"political\" is mobilized and dyads like kin/kith, blood/soil, human/nonhuman, citizen/noncitizen, us/them, are made to appear. We also engage with feminist and queer methodologies that conjure up speculative fabulations for, what Saidiya Hartman has called, \"the radical hope for living otherwise.\" We do so at a time when the global Covid-19 pandemic has demanded the resurgence of the state, tested community ties, transformed family arrangements, and isolated most of the world\u2019s population within domestic domains.", "short_title": "Feminist & Queer Ethnographie...", "title": "Feminist & Queer Ethnographies: Family, Community, Nation", "school": "YC", @@ -302924,7 +659795,7 @@ "13:30", "15:20", "BASSLB L73 - Bass Library L73", - "https:\/\/map.yale.edu\/?id=1910#!m\/564574" + "https://map.yale.edu/?id=1910#!m/564574" ] ] }, @@ -302942,10 +659813,113 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84921\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84921/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989281296730042, + 0.9986660480499268, + 0.9987420439720154, + 0.9989140033721924, + 0.9988369345664978, + 0.9989176988601685 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989232420921326, + 0.9988742470741272, + 0.9989340901374817, + 0.9989264607429504, + 0.9989203214645386, + 0.9989318251609802 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989386200904846, + 0.9987698197364807, + 0.998928964138031, + 0.9989368319511414, + 0.998808741569519, + 0.9989356398582458, + 0.9982445240020752 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 19 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -302983,7 +659957,7 @@ "13:30", "15:20", "LC 208 - Linsly-Chittenden Hall 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -302994,7 +659968,7 @@ "Hu" ], "flags": [ - "YC English: 20th\/21st Century", + "YC English: 20th/21st Century", "YC English: Senior Seminar" ], "regnotes": "", @@ -303002,10 +659976,123 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84022\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84022/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987741112709045, + 0.9988027811050415, + 0.9988124370574951, + 0.9988706707954407, + 0.9988915324211121, + 0.9989103078842163, + 0.9988864064216614, + 0.998676598072052 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988481998443604, + 0.9989010095596313, + 0.9875633716583252, + 0.9988924860954285, + 0.9988652467727661, + 0.998863697052002, + 0.998933732509613, + 0.9989350438117981 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9927828311920166, + 0.9989331364631653, + 0.994300365447998, + 0.9987596273422241, + 0.998928964138031, + 0.9989309906959534, + 0.9982971549034119 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 6 + }, + "sentiment_distribution": { + "NEGATIVE": 0.14285714285714285, + "POSITIVE": 0.8571428571428571 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "final_label": "POSITIVE", + "final_count": 22, + "final_proportion": 0.9565217391304348, + "final_counts": { + "POSITIVE": 22, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9565217391304348, + "NEGATIVE": 0.043478260869565216 + } + } }, { "season_code": "202301", @@ -303048,7 +660135,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -303086,7 +660201,7 @@ "9:00", "10:15", "LC 208 - Linsly-Chittenden Hall 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -303094,7 +660209,7 @@ "9:00", "10:15", "LC 208 - Linsly-Chittenden Hall 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -303110,10 +660225,135 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84592\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84592/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998915433883667, + 0.9988214373588562, + 0.9989032745361328, + 0.9989198446273804, + 0.9984763264656067, + 0.9987425208091736, + 0.9989044666290283, + 0.9989135265350342, + 0.9989311099052429, + 0.9989216327667236 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998927652835846, + 0.9988623857498169, + 0.9989392161369324, + 0.9989252686500549, + 0.9989257454872131, + 0.998916506767273, + 0.9976915121078491, + 0.9989315867424011, + 0.9989240765571594 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989249110221863, + 0.9989373087882996, + 0.9989339709281921, + 0.9987278580665588, + 0.9988769888877869, + 0.9981436729431152, + 0.9988229870796204, + 0.9988191723823547, + 0.9989369511604309, + 0.9988929629325867, + 0.9989062547683716 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 30, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 30 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -303153,7 +660393,7 @@ "19:00", "20:50", "SA10 105 - 10 Sachem Street 105", - "https:\/\/map.yale.edu\/?id=1910#!m\/559538" + "https://map.yale.edu/?id=1910#!m/559538" ] ] }, @@ -303171,10 +660411,95 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83364\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83364/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988497495651245, + 0.993707001209259, + 0.9986910223960876 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989217519760132, + 0.99512779712677, + 0.9975886344909668 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998704195022583, + 0.997117280960083, + 0.9988823533058167, + 0.9988119602203369 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 10 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -303217,7 +660542,7 @@ "13:30", "15:20", "WLH 203 - William L. Harkness Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -303235,10 +660560,103 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85108\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85108/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987395405769348, + 0.9988908171653748, + 0.9986171722412109, + 0.9986900687217712 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989182949066162, + 0.9989043474197388, + 0.9984216690063477, + 0.996428906917572 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989389777183533, + 0.9987634420394897, + 0.9988518953323364, + 0.9986575841903687, + 0.998894989490509 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 0.9230769230769231, + "final_counts": { + "POSITIVE": 12, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9230769230769231, + "NEGATIVE": 0.07692307692307693 + } + } }, { "season_code": "202301", @@ -303277,7 +660695,7 @@ "15:30", "17:20", "BASSLB L73 - Bass Library L73", - "https:\/\/map.yale.edu\/?id=1910#!m\/564574" + "https://map.yale.edu/?id=1910#!m/564574" ] ] }, @@ -303302,10 +660720,117 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84219\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84219/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987775683403015, + 0.9970136880874634, + 0.9923905730247498, + 0.9988505840301514, + 0.9989007711410522, + 0.9988163709640503, + 0.9988088607788086 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983166456222534, + 0.9986822009086609, + 0.9986955523490906, + 0.9989274144172668, + 0.9989302754402161, + 0.9989227652549744, + 0.9987403750419617 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988903403282166, + 0.9989305138587952, + 0.9987758994102478, + 0.9989244341850281, + 0.9989315867424011, + 0.9988715052604675, + 0.998820960521698 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 21, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 21 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -303342,7 +660867,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -303382,10 +660935,43 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84928\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84928/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985686540603638, + 0.9890903830528259 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 2, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 2 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -303423,7 +661009,7 @@ "9:25", "11:15", "HQ C01 - Humanities Quadrangle C01", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -303435,15 +661021,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84835\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84835/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "", - "description": "This seminar and workshop brings together scholarship in postcolonial theory, decolonial thought, Latin American and South Asian subaltern Studies, Black Studies, Native American and Indigenous Studies, and feminist postcolonial science and technology studies to survey critiques of reason, rationality, the post-Enlightenment liberal subject, and the formation of knowledge. We explore the active eradication of other forms of knowledge and subjects through genocide and cultural assimilation, education, and the disciplining of knowledge. In concert with scholarship that provincializes post-Enlightenment reason, we read work that explores other forms of thinking\/knowing. During the second half of the seminar, there is an added workshop component in which participants experiment with decolonizing approaches to their own research.", + "description": "This seminar and workshop brings together scholarship in postcolonial theory, decolonial thought, Latin American and South Asian subaltern Studies, Black Studies, Native American and Indigenous Studies, and feminist postcolonial science and technology studies to survey critiques of reason, rationality, the post-Enlightenment liberal subject, and the formation of knowledge. We explore the active eradication of other forms of knowledge and subjects through genocide and cultural assimilation, education, and the disciplining of knowledge. In concert with scholarship that provincializes post-Enlightenment reason, we read work that explores other forms of thinking/knowing. During the second half of the seminar, there is an added workshop component in which participants experiment with decolonizing approaches to their own research.", "short_title": "Decolonizing Thought", "title": "Decolonizing Thought", "school": "GS", @@ -303475,7 +661089,7 @@ "9:25", "11:15", "BASSLB L70 - Bass Library L70", - "https:\/\/map.yale.edu\/?id=1910#!m\/564574" + "https://map.yale.edu/?id=1910#!m/564574" ] ] }, @@ -303489,10 +661103,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/86003\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/86003/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -303532,14 +661174,14 @@ "19:00", "20:50", "SA10 105 - 10 Sachem Street 105", - "https:\/\/map.yale.edu\/?id=1910#!m\/559538" + "https://map.yale.edu/?id=1910#!m/559538" ] ] }, "skills": [], "areas": [], "flags": [ - "PH: Global Health, Psychosocial\/Social and behavioral\/Anthropology", + "PH: Global Health, Psychosocial/Social and behavioral/Anthropology", "YC GLHTH: Health & Societies", "YC GLHTH: Perf, Rep & Health" ], @@ -303548,10 +661190,95 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83364\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83364/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988497495651245, + 0.993707001209259, + 0.9986910223960876 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989217519760132, + 0.99512779712677, + 0.9975886344909668 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998704195022583, + 0.997117280960083, + 0.9988823533058167, + 0.9988119602203369 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 10 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -303594,7 +661321,7 @@ "13:30", "15:20", "WLH 203 - William L. Harkness Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -303609,10 +661336,103 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85108\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85108/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987395405769348, + 0.9988908171653748, + 0.9986171722412109, + 0.9986900687217712 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989182949066162, + 0.9989043474197388, + 0.9984216690063477, + 0.996428906917572 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989389777183533, + 0.9987634420394897, + 0.9988518953323364, + 0.9986575841903687, + 0.998894989490509 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 0.9230769230769231, + "final_counts": { + "POSITIVE": 12, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9230769230769231, + "NEGATIVE": 0.07692307692307693 + } + } }, { "season_code": "202301", @@ -303649,7 +661469,7 @@ "15:30", "17:20", "WLH 001 - William L. Harkness Hall 001", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -303663,10 +661483,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84930\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84930/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -303708,7 +661556,7 @@ "13:30", "15:20", "HQ C64 - Humanities Quadrangle C64", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -303723,10 +661571,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84212\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84212/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -303765,7 +661641,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -303804,7 +661708,7 @@ "13:30", "15:20", "HQ 109 - Humanities Quadrangle 109", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -303819,15 +661723,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/83326\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/83326/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", "requirements": "Although the course is open to all graduate students at Yale, it is designed to train graduate students in the WGSS combined Ph.D. and certificate programs in particular.", - "description": "This seminar is designed for graduate students developing research projects that center feminist, queer, decolonial\/postcolonial, and critical race methodologies. Taking an epistemological approach that centers \"encounter\" in its multiple scales and fronts, the course is designed to bridge the disciplinary divides across the humanities and social sciences. As such, it begins with the interdisciplinary insight that any research method can be used in a feminist, queer, decolonial\/postcolonial, and critical race manner\u2014and maybe can even be used to counter-disciplinary ends. While the course engages a wide variety of methods\u2014from ethnographic, historiographic\/archival, and geographic, to literary, media, textual analysis, and cultural studies, and to political theory\u2014this does not unfold as part of a practicum. Students do not experiment with a ready-made \"toolkit.\" For the most part, we critically engage book-length projects that exemplify counter-disciplinary methodologies. Ultimately, students reflect hermeneutically on how method and theory relate in these texts. Foucault has theorized these kinds of reflections as a practice of \"the archaeology of knowledge,\" and the seminar channels it for its potential to lay bare the discursive formations that have rendered only certain Eurocentric, supremacist, and patriarchal preoccupations as legitimate objects of inquiry as well as for its potential to explore the relationship of power to knowledge, the ethics of representation, questions of accountability, and the relationship between disciplinarity and interdisciplinarity.", + "description": "This seminar is designed for graduate students developing research projects that center feminist, queer, decolonial/postcolonial, and critical race methodologies. Taking an epistemological approach that centers \"encounter\" in its multiple scales and fronts, the course is designed to bridge the disciplinary divides across the humanities and social sciences. As such, it begins with the interdisciplinary insight that any research method can be used in a feminist, queer, decolonial/postcolonial, and critical race manner\u2014and maybe can even be used to counter-disciplinary ends. While the course engages a wide variety of methods\u2014from ethnographic, historiographic/archival, and geographic, to literary, media, textual analysis, and cultural studies, and to political theory\u2014this does not unfold as part of a practicum. Students do not experiment with a ready-made \"toolkit.\" For the most part, we critically engage book-length projects that exemplify counter-disciplinary methodologies. Ultimately, students reflect hermeneutically on how method and theory relate in these texts. Foucault has theorized these kinds of reflections as a practice of \"the archaeology of knowledge,\" and the seminar channels it for its potential to lay bare the discursive formations that have rendered only certain Eurocentric, supremacist, and patriarchal preoccupations as legitimate objects of inquiry as well as for its potential to explore the relationship of power to knowledge, the ethics of representation, questions of accountability, and the relationship between disciplinarity and interdisciplinarity.", "short_title": "Methods in Gender and Sexuali...", "title": "Methods in Gender and Sexuality Studies", "school": "GS", @@ -303860,7 +661792,7 @@ "13:30", "15:20", "WLH 014 - William L. Harkness Hall 014", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -303874,10 +661806,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84934\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84934/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -303915,7 +661875,7 @@ "9:25", "11:15", "WLH 012 - William L. Harkness Hall 012", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -303929,10 +661889,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85798\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85798/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -303969,7 +661957,7 @@ "17:30", "19:00", "WLH 309 - William L. Harkness Hall 309", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -303984,7 +661972,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -304056,7 +662072,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -304087,7 +662131,7 @@ "14:10", "16:00", "DOW 420 - Dow Hall 420", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ], "Wednesday": [ @@ -304095,7 +662139,7 @@ "14:10", "16:00", "DOW 420 - Dow Hall 420", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ] }, @@ -304112,7 +662156,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -304151,7 +662223,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -304188,7 +662288,7 @@ "10:30", "11:20", "WLH 015 - William L. Harkness Hall 015", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Tuesday": [ @@ -304196,7 +662296,7 @@ "10:30", "11:20", "WLH 015 - William L. Harkness Hall 015", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -304204,7 +662304,7 @@ "10:30", "11:20", "WLH 015 - William L. Harkness Hall 015", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -304212,7 +662312,7 @@ "10:30", "11:20", "WLH 015 - William L. Harkness Hall 015", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Friday": [ @@ -304220,7 +662320,7 @@ "10:30", "11:20", "WLH 015 - William L. Harkness Hall 015", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -304234,10 +662334,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85864\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85864/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -304274,7 +662402,7 @@ "8:00", "8:50", "WLH 015 - William L. Harkness Hall 015", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Tuesday": [ @@ -304282,7 +662410,7 @@ "8:00", "8:50", "WLH 015 - William L. Harkness Hall 015", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -304290,7 +662418,7 @@ "8:00", "8:50", "WLH 015 - William L. Harkness Hall 015", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -304298,7 +662426,7 @@ "8:00", "8:50", "WLH 015 - William L. Harkness Hall 015", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Friday": [ @@ -304306,7 +662434,7 @@ "8:00", "8:50", "WLH 015 - William L. Harkness Hall 015", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -304320,10 +662448,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/85865\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/85865/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -304361,7 +662517,7 @@ "10:30", "11:20", "WTS B60 - Watson Center 60 Sachem Street B60", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Tuesday": [ @@ -304369,7 +662525,7 @@ "10:30", "11:20", "WTS B60 - Watson Center 60 Sachem Street B60", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -304377,7 +662533,7 @@ "10:30", "11:20", "WTS B60 - Watson Center 60 Sachem Street B60", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -304385,7 +662541,7 @@ "10:30", "11:20", "WTS B60 - Watson Center 60 Sachem Street B60", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Friday": [ @@ -304393,7 +662549,7 @@ "10:30", "11:20", "WTS B60 - Watson Center 60 Sachem Street B60", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -304407,10 +662563,109 @@ "classnotes": "", "final_exam": "Friday, May 5, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84943\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84943/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987038373947144, + 0.9988582134246826, + 0.9988976716995239, + 0.9986268281936646 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989256262779236, + 0.9989290833473206, + 0.9989292025566101, + 0.9989190101623535, + 0.9989074468612671, + 0.9987150430679321 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988874793052673, + 0.9988846182823181, + 0.9989218711853027, + 0.9989345669746399, + 0.9987602233886719, + 0.9989099502563477, + 0.9989033937454224 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 17 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -304448,7 +662703,7 @@ "15:30", "16:20", "WTS A39 - Watson Center 60 Sachem Street A39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Tuesday": [ @@ -304456,7 +662711,7 @@ "15:30", "16:20", "WTS A39 - Watson Center 60 Sachem Street A39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -304464,7 +662719,7 @@ "15:30", "16:20", "WTS A39 - Watson Center 60 Sachem Street A39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -304472,7 +662727,7 @@ "15:30", "16:20", "WTS A39 - Watson Center 60 Sachem Street A39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Friday": [ @@ -304480,7 +662735,7 @@ "15:30", "16:20", "WTS A39 - Watson Center 60 Sachem Street A39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -304494,10 +662749,93 @@ "classnotes": "", "final_exam": "Friday, May 5, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84944\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84944/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987657070159912, + 0.998820960521698, + 0.9984399676322937 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987332224845886, + 0.9963914752006531, + 0.9988861680030823 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998776376247406, + 0.9988899827003479, + 0.9989049434661865 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 9 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -304535,7 +662873,7 @@ "9:00", "10:15", "WTS B60 - Watson Center 60 Sachem Street B60", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -304543,7 +662881,7 @@ "9:00", "10:15", "WTS B60 - Watson Center 60 Sachem Street B60", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -304557,10 +662895,38 @@ "classnotes": "", "final_exam": "Saturday, May 6, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84946\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84946/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -304598,7 +662964,7 @@ "10:30", "11:20", "WTS B60 - Watson Center 60 Sachem Street B60", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Tuesday": [ @@ -304606,7 +662972,7 @@ "10:30", "11:20", "WTS B60 - Watson Center 60 Sachem Street B60", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -304614,7 +662980,7 @@ "10:30", "11:20", "WTS B60 - Watson Center 60 Sachem Street B60", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -304622,7 +662988,7 @@ "10:30", "11:20", "WTS B60 - Watson Center 60 Sachem Street B60", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Friday": [ @@ -304630,7 +662996,7 @@ "10:30", "11:20", "WTS B60 - Watson Center 60 Sachem Street B60", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -304642,10 +663008,109 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84943\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84943/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987038373947144, + 0.9988582134246826, + 0.9988976716995239, + 0.9986268281936646 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989256262779236, + 0.9989290833473206, + 0.9989292025566101, + 0.9989190101623535, + 0.9989074468612671, + 0.9987150430679321 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988874793052673, + 0.9988846182823181, + 0.9989218711853027, + 0.9989345669746399, + 0.9987602233886719, + 0.9989099502563477, + 0.9989033937454224 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 17 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -304683,7 +663148,7 @@ "15:30", "16:20", "WTS A39 - Watson Center 60 Sachem Street A39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Tuesday": [ @@ -304691,7 +663156,7 @@ "15:30", "16:20", "WTS A39 - Watson Center 60 Sachem Street A39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -304699,7 +663164,7 @@ "15:30", "16:20", "WTS A39 - Watson Center 60 Sachem Street A39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -304707,7 +663172,7 @@ "15:30", "16:20", "WTS A39 - Watson Center 60 Sachem Street A39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Friday": [ @@ -304715,7 +663180,7 @@ "15:30", "16:20", "WTS A39 - Watson Center 60 Sachem Street A39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -304727,10 +663192,93 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84944\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84944/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987657070159912, + 0.998820960521698, + 0.9984399676322937 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987332224845886, + 0.9963914752006531, + 0.9988861680030823 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998776376247406, + 0.9988899827003479, + 0.9989049434661865 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 9 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -304768,7 +663316,7 @@ "9:00", "10:15", "WTS B60 - Watson Center 60 Sachem Street B60", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -304776,7 +663324,7 @@ "9:00", "10:15", "WTS B60 - Watson Center 60 Sachem Street B60", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -304788,10 +663336,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84946\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84946/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -304829,7 +663405,7 @@ "11:35", "12:25", "LUCE B13 - Luce Hall B13", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ], "Tuesday": [ @@ -304837,7 +663413,7 @@ "11:35", "12:25", "LUCE B13 - Luce Hall B13", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ], "Wednesday": [ @@ -304845,7 +663421,7 @@ "11:35", "12:25", "LUCE B13 - Luce Hall B13", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ], "Thursday": [ @@ -304853,7 +663429,7 @@ "11:35", "12:25", "LUCE B13 - Luce Hall B13", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ], "Friday": [ @@ -304861,7 +663437,7 @@ "11:35", "12:25", "LUCE B13 - Luce Hall B13", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ] }, @@ -304875,10 +663451,91 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84948\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84948/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9971297383308411, + 0.9988515377044678 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988664388656616, + 0.9941442608833313, + 0.9989288449287415 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988883137702942, + 0.9986920952796936, + 0.9988007545471191 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 8, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 8 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -304916,7 +663573,7 @@ "9:25", "10:15", "LUCE B13 - Luce Hall B13", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ], "Tuesday": [ @@ -304924,7 +663581,7 @@ "9:25", "10:15", "LUCE B13 - Luce Hall B13", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ], "Wednesday": [ @@ -304932,7 +663589,7 @@ "9:25", "10:15", "LUCE B13 - Luce Hall B13", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ], "Thursday": [ @@ -304940,7 +663597,7 @@ "9:25", "10:15", "LUCE B13 - Luce Hall B13", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ], "Friday": [ @@ -304948,7 +663605,7 @@ "9:25", "10:15", "LUCE B13 - Luce Hall B13", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ] }, @@ -304962,10 +663619,38 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84950\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/84950/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -305003,7 +663688,7 @@ "14:30", "15:45", "LUCE B13 - Luce Hall B13", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ], "Thursday": [ @@ -305011,7 +663696,7 @@ "14:30", "15:45", "LUCE B13 - Luce Hall B13", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ] }, @@ -305028,7 +663713,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -305066,7 +663779,7 @@ "11:35", "12:25", "LUCE B13 - Luce Hall B13", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ], "Tuesday": [ @@ -305074,7 +663787,7 @@ "11:35", "12:25", "LUCE B13 - Luce Hall B13", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ], "Wednesday": [ @@ -305082,7 +663795,7 @@ "11:35", "12:25", "LUCE B13 - Luce Hall B13", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ], "Thursday": [ @@ -305090,7 +663803,7 @@ "11:35", "12:25", "LUCE B13 - Luce Hall B13", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ], "Friday": [ @@ -305098,7 +663811,7 @@ "11:35", "12:25", "LUCE B13 - Luce Hall B13", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ] }, @@ -305110,10 +663823,91 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84948\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84948/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9971297383308411, + 0.9988515377044678 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988664388656616, + 0.9941442608833313, + 0.9989288449287415 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988883137702942, + 0.9986920952796936, + 0.9988007545471191 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 8, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 8 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202301", @@ -305151,7 +663945,7 @@ "9:25", "10:15", "LUCE B13 - Luce Hall B13", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ], "Tuesday": [ @@ -305159,7 +663953,7 @@ "9:25", "10:15", "LUCE B13 - Luce Hall B13", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ], "Wednesday": [ @@ -305167,7 +663961,7 @@ "9:25", "10:15", "LUCE B13 - Luce Hall B13", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ], "Thursday": [ @@ -305175,7 +663969,7 @@ "9:25", "10:15", "LUCE B13 - Luce Hall B13", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ], "Friday": [ @@ -305183,7 +663977,7 @@ "9:25", "10:15", "LUCE B13 - Luce Hall B13", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ] }, @@ -305195,10 +663989,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/84950\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/84950/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202301", @@ -305236,7 +664058,7 @@ "14:30", "15:45", "LUCE B13 - Luce Hall B13", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ], "Thursday": [ @@ -305244,7 +664066,7 @@ "14:30", "15:45", "LUCE B13 - Luce Hall B13", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ] }, @@ -305259,6 +664081,34 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } } ] \ No newline at end of file diff --git a/data/parsed_courses/202302.json b/data/parsed_courses/202302.json index 2e5cd8841..bf6222227 100644 --- a/data/parsed_courses/202302.json +++ b/data/parsed_courses/202302.json @@ -36,16 +36,44 @@ "rp_attr": "", "classnotes": "", "final_exam": "", - "course_home_url": "https:\/\/yale.instructure.com\/courses\/87858", + "course_home_url": "https://yale.instructure.com/courses/87858", "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202302", - "requirements": "", - "description": "Course closed to further enrollment. In-person Course. This course offers an introduction to the transnational history of education in relation to the development of U.S. empire both at home and abroad. By bringing together topics often approached separately -- immigration, education, race, colonialism, and the history of U.S. empire -- we will interrogate the ways that education has been mobilized to deploy power: controlling knowledge, categorizing and policing difference, administering unequal paths to citizenship\/belonging, forcing assimilation, promoting socio-economic divides, and asserting discipline and control. Topics to be covered include American Indian education and self-determination, African American education in slavery and freedom, U.S. colonial education in the Philippines\/Cuba\/Puerto Rico, immigration and forced Americanization schooling, Latinx fights for educational access and autonomy, State Department experiments in educational diplomacy and child socialization, educational missions abroad, and national security and the war on terror. Throughout, we will draw links between the past and the present and ask what it might mean to \"decolonize\" education today.\u00a01 Credit. Session B: July 3 \u2013 August 4. Tuition: $4850.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } + }, + { + "season_code": "202302", + "requirements": "", + "description": "Course closed to further enrollment. In-person Course. This course offers an introduction to the transnational history of education in relation to the development of U.S. empire both at home and abroad. By bringing together topics often approached separately -- immigration, education, race, colonialism, and the history of U.S. empire -- we will interrogate the ways that education has been mobilized to deploy power: controlling knowledge, categorizing and policing difference, administering unequal paths to citizenship/belonging, forcing assimilation, promoting socio-economic divides, and asserting discipline and control. Topics to be covered include American Indian education and self-determination, African American education in slavery and freedom, U.S. colonial education in the Philippines/Cuba/Puerto Rico, immigration and forced Americanization schooling, Latinx fights for educational access and autonomy, State Department experiments in educational diplomacy and child socialization, educational missions abroad, and national security and the war on terror. Throughout, we will draw links between the past and the present and ask what it might mean to \"decolonize\" education today.\u00a01 Credit. Session B: July 3 \u2013 August 4. Tuition: $4850.", "short_title": "Education and Empire", "title": "Education and Empire", "school": "SU", @@ -103,10 +131,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87885\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87885/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -147,10 +182,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87720\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87720/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -191,10 +254,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87721\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87721/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -258,10 +349,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87935\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87935/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -324,15 +422,22 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87722\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87722/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", "requirements": "", - "description": "Course cancelled. This course is part of a Yale Summer Session Program Abroad and cannot be taken independent of the program. Interested students must apply to Yale Study Abroad by February 7th. For more detailed information about the program, including a description of the courses, housing, excursions, and budget, visit: https:\/\/studyabroad.yale.edu\/programs\/yale-summer-session-johannesburg-visual", + "description": "Course cancelled. This course is part of a Yale Summer Session Program Abroad and cannot be taken independent of the program. Interested students must apply to Yale Study Abroad by February 7th. For more detailed information about the program, including a description of the courses, housing, excursions, and budget, visit: https://studyabroad.yale.edu/programs/yale-summer-session-johannesburg-visual", "short_title": "Visual Approaches to Global H...", "title": "Visual Approaches to Global Health", "school": "SU", @@ -368,7 +473,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -407,16 +540,44 @@ "rp_attr": "", "classnotes": "", "final_exam": "", - "course_home_url": "https:\/\/yale.instructure.com\/courses\/87858", + "course_home_url": "https://yale.instructure.com/courses/87858", "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202302", - "requirements": "", - "description": "Course closed to further enrollment. In-person Course. As an introductory class to the main principles and topics of legal thought and practice, the class will use works of literature, theatre, film and music to acquaint with the field of law. Students will learn in what ways culture shapes the law, and, in turn, how law governs and shapes culture. Topics include being a person on Instagram and Facebook; Black Lives Matter, the US Constitution; Freedom of Speech, \"Calling out\" and \"Cancel Culture\"; Interpretation and Authority; Law, Ethics and Religion; Islam, Totalitarianism, The Trump Administration; Criminal Law, Agency and Multiple Personality Disorder; Sampling and Copyright, Hip Hop\/Rap in the courtroom.\u00a01 Credit. Session B: July 3 \u2013 August 4. Tuition: $4850.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } + }, + { + "season_code": "202302", + "requirements": "", + "description": "Course closed to further enrollment. In-person Course. As an introductory class to the main principles and topics of legal thought and practice, the class will use works of literature, theatre, film and music to acquaint with the field of law. Students will learn in what ways culture shapes the law, and, in turn, how law governs and shapes culture. Topics include being a person on Instagram and Facebook; Black Lives Matter, the US Constitution; Freedom of Speech, \"Calling out\" and \"Cancel Culture\"; Interpretation and Authority; Law, Ethics and Religion; Islam, Totalitarianism, The Trump Administration; Criminal Law, Agency and Multiple Personality Disorder; Sampling and Copyright, Hip Hop/Rap in the courtroom.\u00a01 Credit. Session B: July 3 \u2013 August 4. Tuition: $4850.", "short_title": "What is Law?", "title": "What is Law?", "school": "SU", @@ -483,15 +644,22 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87899\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87899/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", "requirements": "", - "description": "Course closed to further enrollment. In-person Course. This course offers an introduction to the transnational history of education in relation to the development of U.S. empire both at home and abroad. By bringing together topics often approached separately -- immigration, education, race, colonialism, and the history of U.S. empire -- we will interrogate the ways that education has been mobilized to deploy power: controlling knowledge, categorizing and policing difference, administering unequal paths to citizenship\/belonging, forcing assimilation, promoting socio-economic divides, and asserting discipline and control. Topics to be covered include American Indian education and self-determination, African American education in slavery and freedom, U.S. colonial education in the Philippines\/Cuba\/Puerto Rico, immigration and forced Americanization schooling, Latinx fights for educational access and autonomy, State Department experiments in educational diplomacy and child socialization, educational missions abroad, and national security and the war on terror. Throughout, we will draw links between the past and the present and ask what it might mean to \"decolonize\" education today.\u00a01 Credit. Session B: July 3 \u2013 August 4. Tuition: $4850.", + "description": "Course closed to further enrollment. In-person Course. This course offers an introduction to the transnational history of education in relation to the development of U.S. empire both at home and abroad. By bringing together topics often approached separately -- immigration, education, race, colonialism, and the history of U.S. empire -- we will interrogate the ways that education has been mobilized to deploy power: controlling knowledge, categorizing and policing difference, administering unequal paths to citizenship/belonging, forcing assimilation, promoting socio-economic divides, and asserting discipline and control. Topics to be covered include American Indian education and self-determination, African American education in slavery and freedom, U.S. colonial education in the Philippines/Cuba/Puerto Rico, immigration and forced Americanization schooling, Latinx fights for educational access and autonomy, State Department experiments in educational diplomacy and child socialization, educational missions abroad, and national security and the war on terror. Throughout, we will draw links between the past and the present and ask what it might mean to \"decolonize\" education today.\u00a01 Credit. Session B: July 3 \u2013 August 4. Tuition: $4850.", "short_title": "Education and Empire", "title": "Education and Empire", "school": "SU", @@ -549,10 +717,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87885\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87885/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -615,10 +790,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87722\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87722/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -659,10 +841,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87721\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87721/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -701,15 +911,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87723\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87723/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", "requirements": "", - "description": "Course closed to further enrollment. In-person Course.\u00a0This course will take a hard, imaginative, speculative, and poetic look at U.S. history of the twentieth and twenty-first centuries through the lens of film and video. In a time where we are awash with moving images in our environments on a daily, if not minute-by-minute basis, this course will be a space to meditate upon the sights, sounds, and texts around us.\u00a0 We will interrogate how we have been trained to read a moving image. We will place the image historically, aesthetically, politically. We will learn how to see history as a series of discontinuities, yet with unconscious repetitions, thematic overlaps, and eternal returns \u2014 not simply as a single thread of greatest hits and milestones moments. Topics will include: Empire, Language, Love (viz. the Screwball Comedy), Class, War and Empire, Politics, Communism, Ideology, Youth, Revolt, Postmodernity, the Network, and Memory. Periods and events covered include: The Black Freedom Struggle, The Jazz Age, the Great Depression, World War II, the Long 1960s, the U.S. failure in Vietnam, the Dot Com Boom and Silicon Valley, and contemporary activist\/revolutionary movements. We will not consider the U.S. in isolation: films and discussions will inevitably take us to Latin America, to France, to Senegal, to Iran, and to the Soviet Union. We will have mandatory Monday night screenings as well; these will include moving-image work by Julie Dash, Charlie Chaplin, Frank Tashlin, Douglas Sirk, Barbara Loden, Jane Schoenbrun, Anthony Banua-Simon, Kevin Jerome Everson, Don Hertzfeldt, Vincente Minnelli, Chuck Jones, Michelangelo Antonioni, Abbas Kiarostami, Fr\u00e9d\u00e9ric Da, Spike Lee, Walt Disney, Warren Beatty, Brian De Palma, Richard Lester, and Eric Andr\u00e9, among a host of others. This course seeks to expand students' knowledge of the history of film, of U.S. culture, and the society in which they exist. 1 Credit. Session B: July 3 \u2013 August 4. Tuition: $4850.", + "description": "Course closed to further enrollment. In-person Course.\u00a0This course will take a hard, imaginative, speculative, and poetic look at U.S. history of the twentieth and twenty-first centuries through the lens of film and video. In a time where we are awash with moving images in our environments on a daily, if not minute-by-minute basis, this course will be a space to meditate upon the sights, sounds, and texts around us.\u00a0 We will interrogate how we have been trained to read a moving image. We will place the image historically, aesthetically, politically. We will learn how to see history as a series of discontinuities, yet with unconscious repetitions, thematic overlaps, and eternal returns \u2014 not simply as a single thread of greatest hits and milestones moments. Topics will include: Empire, Language, Love (viz. the Screwball Comedy), Class, War and Empire, Politics, Communism, Ideology, Youth, Revolt, Postmodernity, the Network, and Memory. Periods and events covered include: The Black Freedom Struggle, The Jazz Age, the Great Depression, World War II, the Long 1960s, the U.S. failure in Vietnam, the Dot Com Boom and Silicon Valley, and contemporary activist/revolutionary movements. We will not consider the U.S. in isolation: films and discussions will inevitably take us to Latin America, to France, to Senegal, to Iran, and to the Soviet Union. We will have mandatory Monday night screenings as well; these will include moving-image work by Julie Dash, Charlie Chaplin, Frank Tashlin, Douglas Sirk, Barbara Loden, Jane Schoenbrun, Anthony Banua-Simon, Kevin Jerome Everson, Don Hertzfeldt, Vincente Minnelli, Chuck Jones, Michelangelo Antonioni, Abbas Kiarostami, Fr\u00e9d\u00e9ric Da, Spike Lee, Walt Disney, Warren Beatty, Brian De Palma, Richard Lester, and Eric Andr\u00e9, among a host of others. This course seeks to expand students' knowledge of the history of film, of U.S. culture, and the society in which they exist. 1 Credit. Session B: July 3 \u2013 August 4. Tuition: $4850.", "short_title": "Film, Video, and American His...", "title": "Film, Video, and American History", "school": "SU", @@ -773,10 +1011,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87895\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87895/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -845,10 +1090,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87859\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87859/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -890,7 +1142,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -953,10 +1233,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87800\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87800/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -1020,10 +1328,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87724\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87724/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -1061,10 +1376,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87725\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87725/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -1125,10 +1468,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87726\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87726/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -1192,10 +1542,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87860\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87860/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -1259,10 +1616,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87760\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87760/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -1325,10 +1689,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87727\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87727/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -1396,10 +1767,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87861\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87861/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -1469,10 +1847,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87748\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87748/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -1542,10 +1948,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87886\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87886/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -1630,10 +2043,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87728\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87728/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -1671,15 +2091,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87862\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87862/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", "requirements": "", - "description": "This course is part of a Yale Summer Session Program Abroad and cannot be taken independent of the program. Interested students must apply to Yale Study Abroad by February 7th. For more detailed information about the program, including a description of the courses, housing, excursions, and budget, visit: https:\/\/studyabroad.yale.edu\/programs\/yale-summer-session-rabat-intermediate", + "description": "This course is part of a Yale Summer Session Program Abroad and cannot be taken independent of the program. Interested students must apply to Yale Study Abroad by February 7th. For more detailed information about the program, including a description of the courses, housing, excursions, and budget, visit: https://studyabroad.yale.edu/programs/yale-summer-session-rabat-intermediate", "short_title": "Intermediate Modern Standard ...", "title": "Intermediate Modern Standard Arabic I", "school": "SU", @@ -1760,12 +2208,19 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", "requirements": "", - "description": "This course is part of a Yale Summer Session Program Abroad and cannot be taken independent of the program. Interested students must apply to Yale Study Abroad by February 7th. For more detailed information about the program, including a description of the courses, housing, excursions, and budget, visit: https:\/\/studyabroad.yale.edu\/programs\/yale-summer-session-rabat-intermediate", + "description": "This course is part of a Yale Summer Session Program Abroad and cannot be taken independent of the program. Interested students must apply to Yale Study Abroad by February 7th. For more detailed information about the program, including a description of the courses, housing, excursions, and budget, visit: https://studyabroad.yale.edu/programs/yale-summer-session-rabat-intermediate", "short_title": "Intermediate Modern Standard ...", "title": "Intermediate Modern Standard Arabic II", "school": "SU", @@ -1846,12 +2301,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202302", - "requirements": "", - "description": "This course is part of a Yale Summer Session Program Abroad and cannot be taken independent of the program. Interested students must apply to Yale Study Abroad by February 7th. For more detailed information about the program, including a description of the courses, housing, excursions, and budget, visit: https:\/\/studyabroad.yale.edu\/programs\/yale-summer-session-rabat-advanced", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } + }, + { + "season_code": "202302", + "requirements": "", + "description": "This course is part of a Yale Summer Session Program Abroad and cannot be taken independent of the program. Interested students must apply to Yale Study Abroad by February 7th. For more detailed information about the program, including a description of the courses, housing, excursions, and budget, visit: https://studyabroad.yale.edu/programs/yale-summer-session-rabat-advanced", "short_title": "Advanced Modern Standard Arab...", "title": "Advanced Modern Standard Arabic I", "school": "SU", @@ -1932,12 +2415,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202302", - "requirements": "", - "description": "This course is part of a Yale Summer Session Program Abroad and cannot be taken independent of the program. Interested students must apply to Yale Study Abroad by February 7th. For more detailed information about the program, including a description of the courses, housing, excursions, and budget, visit: https:\/\/studyabroad.yale.edu\/programs\/yale-summer-session-rabat-advanced", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } + }, + { + "season_code": "202302", + "requirements": "", + "description": "This course is part of a Yale Summer Session Program Abroad and cannot be taken independent of the program. Interested students must apply to Yale Study Abroad by February 7th. For more detailed information about the program, including a description of the courses, housing, excursions, and budget, visit: https://studyabroad.yale.edu/programs/yale-summer-session-rabat-advanced", "short_title": "Advanced Modern Standard Arab...", "title": "Advanced Modern Standard Arabic II", "school": "SU", @@ -2018,7 +2529,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -2060,7 +2599,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -2124,10 +2691,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87860\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87860/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -2191,10 +2765,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87760\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87760/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -2240,7 +2821,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -2324,7 +2933,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -2408,7 +3045,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -2492,7 +3157,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -2576,7 +3269,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -2628,7 +3349,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -2680,7 +3429,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -2729,10 +3506,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90684\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90684/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -2781,10 +3586,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90685\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90685/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -2833,10 +3666,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90688\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90688/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -2885,10 +3746,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90686\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90686/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -2931,7 +3820,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -2983,12 +3900,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202302", - "requirements": "", - "description": "(Required of first-year M.Arch. I students, early summer.) This course examines the materialization of a building, whereby students are required to physically participate in the construction of a structure that they have designed. By engaging in the act of making, students are exposed to the material, procedural, and technical demands that shape architecture. Construction documents are generated and subsequently put to the test in the field. Students engage in collaboration with each other, and with a client, as they reconcile budgetary, scheduling, and labor constraints, and negotiate myriad regulatory, political, and community agencies. The course seeks to demonstrate the multiplicity of forces that come to influence the execution of an architectural intention, all the while fostering an architecture of social responsibility, providing structures for an underserved and marginalized segment of the community. For more information, see the section on the Building Project online at http:\/\/architecture.yale.edu\/academics\/building-project. Prerequisites: ARCH 1011, ARCH 1012.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } + }, + { + "season_code": "202302", + "requirements": "", + "description": "(Required of first-year M.Arch. I students, early summer.) This course examines the materialization of a building, whereby students are required to physically participate in the construction of a structure that they have designed. By engaging in the act of making, students are exposed to the material, procedural, and technical demands that shape architecture. Construction documents are generated and subsequently put to the test in the field. Students engage in collaboration with each other, and with a client, as they reconcile budgetary, scheduling, and labor constraints, and negotiate myriad regulatory, political, and community agencies. The course seeks to demonstrate the multiplicity of forces that come to influence the execution of an architectural intention, all the while fostering an architecture of social responsibility, providing structures for an underserved and marginalized segment of the community. For more information, see the section on the Building Project online at http://architecture.yale.edu/academics/building-project. Prerequisites: ARCH 1011, ARCH 1012.", "short_title": "Building Project II", "title": "Building Project II", "school": "AC", @@ -3029,7 +3974,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -3072,10 +4045,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90626\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90626/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -3118,7 +4119,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -3164,7 +4193,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -3210,7 +4267,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -3256,7 +4341,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -3293,12 +4406,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202302", - "requirements": "", - "description": "Course closed to further enrollment. In-person Course.\u00a0An introduction to the language of visual expression, using studio projects to explore the fundamental principles of visual art. Students acquire a working knowledge of visual syntax applicable to the study of art history, popular culture, and art. Projects address all four major concentrations (graphic design, printing\/printmaking, photography, and sculpture). A list of materials necessary for the course will be distributed to each student on the first day of class and must be purchased by the student. Enrollment limited to 15 students.\u00a01 Credit. Session B: July 3 \u2013 August 4. Tuition: $4850.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } + }, + { + "season_code": "202302", + "requirements": "", + "description": "Course closed to further enrollment. In-person Course.\u00a0An introduction to the language of visual expression, using studio projects to explore the fundamental principles of visual art. Students acquire a working knowledge of visual syntax applicable to the study of art history, popular culture, and art. Projects address all four major concentrations (graphic design, printing/printmaking, photography, and sculpture). A list of materials necessary for the course will be distributed to each student on the first day of class and must be purchased by the student. Enrollment limited to 15 students.\u00a01 Credit. Session B: July 3 \u2013 August 4. Tuition: $4850.", "short_title": "Visual Thinking", "title": "Visual Thinking", "school": "SU", @@ -3354,10 +4495,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87863\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87863/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -3418,10 +4566,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87864\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87864/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -3482,15 +4637,22 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87865\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87865/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", "requirements": "", - "description": "This course is part of a Yale Summer Session Program Abroad and cannot be taken independent of the program. Interested students must apply to Yale Study Abroad by February 7th. For more detailed information about the program, including a description of the courses, housing, excursions, and budget, visit: https:\/\/studyabroad.yale.edu\/programs\/yale-summer-session-prague-cinematic", + "description": "This course is part of a Yale Summer Session Program Abroad and cannot be taken independent of the program. Interested students must apply to Yale Study Abroad by February 7th. For more detailed information about the program, including a description of the courses, housing, excursions, and budget, visit: https://studyabroad.yale.edu/programs/yale-summer-session-prague-cinematic", "short_title": "Cinematic Storytelling in Prague", "title": "Cinematic Storytelling in Prague", "school": "SU", @@ -3569,10 +4731,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87892\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87892/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -3633,10 +4802,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87730\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87730/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -3699,10 +4875,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87731\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87731/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -3789,15 +4972,22 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87866\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87866/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", "requirements": "", - "description": "In-person Course.\u00a0Introduction to the study of life at the molecular level and to cell biology and membrane physiology. Topics include the three-dimensional structures and function of large biological molecules, the human genome, the design of antiviral drugs to treat HIV\/AIDS, organization and functional properties of biological membranes, membrane physiology and signaling, rough endoplasmic reticulum and synthesis of membrane\/secretory membrane proteins, endocytosis, the cytoskeleton, and cell division. Covers the material of BIOL 101 and 102, the first half of the yearlong introductory biology sequence. Followed in the summer by BIOL S106. Enrollment limited to 20 students. 1 Credit. Session A: May 29 \u2013 June 30. Tuition: $4850.", + "description": "In-person Course.\u00a0Introduction to the study of life at the molecular level and to cell biology and membrane physiology. Topics include the three-dimensional structures and function of large biological molecules, the human genome, the design of antiviral drugs to treat HIV/AIDS, organization and functional properties of biological membranes, membrane physiology and signaling, rough endoplasmic reticulum and synthesis of membrane/secretory membrane proteins, endocytosis, the cytoskeleton, and cell division. Covers the material of BIOL 101 and 102, the first half of the yearlong introductory biology sequence. Followed in the summer by BIOL S106. Enrollment limited to 20 students. 1 Credit. Session A: May 29 \u2013 June 30. Tuition: $4850.", "short_title": "Biochemistry, Biophysics, and...", "title": "Biochemistry, Biophysics, and Cell Biology", "school": "SU", @@ -3880,10 +5070,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87732\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87732/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -3971,10 +5168,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87867\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87867/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -4045,14 +5249,21 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87914\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87914/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", - "requirements": "Enrollment limited to students in the Advanced Professional M.P.H. and Accelerated M.B.A.\/M.P.H. programs. Auditors are not allowed.", + "requirements": "Enrollment limited to students in the Advanced Professional M.P.H. and Accelerated M.B.A./M.P.H. programs. Auditors are not allowed.", "description": "This intensive seven-week summer course provides a comprehensive introduction to the use of statistics in the fields of epidemiology, public health, and clinical research. Students gain experience conducting and interpreting a broad range of statistical analyses. Topics include descriptive statistics, rules of probability, probability distributions, parameter estimation, hypothesis testing, sample size estimation, analysis of variance, nonparametric tests, and linear regression. Through computer laboratory sessions, students become familiar with the SAS statistical software package.", "short_title": "Accelerated Biostatistics", "title": "Accelerated Biostatistics", @@ -4085,7 +5296,7 @@ "8:30", "10:30", "CO47 106A - 47 College Street (CLP) 106A", - "https:\/\/map.yale.edu\/?id=1910#!m\/559997" + "https://map.yale.edu/?id=1910#!m/559997" ] ], "Tuesday": [ @@ -4093,7 +5304,7 @@ "8:30", "10:30", "CO47 106A - 47 College Street (CLP) 106A", - "https:\/\/map.yale.edu\/?id=1910#!m\/559997" + "https://map.yale.edu/?id=1910#!m/559997" ] ], "Wednesday": [ @@ -4101,7 +5312,7 @@ "8:30", "10:30", "CO47 106A - 47 College Street (CLP) 106A", - "https:\/\/map.yale.edu\/?id=1910#!m\/559997" + "https://map.yale.edu/?id=1910#!m/559997" ] ], "Thursday": [ @@ -4109,7 +5320,7 @@ "8:30", "10:30", "CO47 106A - 47 College Street (CLP) 106A", - "https:\/\/map.yale.edu\/?id=1910#!m\/559997" + "https://map.yale.edu/?id=1910#!m/559997" ] ] }, @@ -4121,10 +5332,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88003\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88003/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -4164,10 +5382,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88006\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88006/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -4223,7 +5469,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -4284,10 +5558,38 @@ "classnotes": "Application to Yale in London required.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90209\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/90209/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -4343,7 +5645,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -4404,10 +5734,38 @@ "classnotes": "Application to Yale in London required.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90208\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/90208/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -4444,7 +5802,7 @@ "10:45", "12:45", "CO47 106A - 47 College Street (CLP) 106A", - "https:\/\/map.yale.edu\/?id=1910#!m\/559997" + "https://map.yale.edu/?id=1910#!m/559997" ] ], "Wednesday": [ @@ -4452,7 +5810,7 @@ "10:45", "12:45", "CO47 106A - 47 College Street (CLP) 106A", - "https:\/\/map.yale.edu\/?id=1910#!m\/559997" + "https://map.yale.edu/?id=1910#!m/559997" ] ] }, @@ -4464,10 +5822,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88004\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88004/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -4507,10 +5872,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88007\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88007/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -4570,11 +5942,18 @@ "rp_attr": "", "classnotes": "", "final_exam": "", - "course_home_url": "https:\/\/yale.instructure.com\/courses\/87868", + "course_home_url": "https://yale.instructure.com/courses/87868", "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -4645,10 +6024,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87733\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87733/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -4719,10 +6105,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87869\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87869/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -4785,10 +6199,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87782\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87782/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -4851,10 +6272,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87919\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87919/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -4939,15 +6367,22 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87870\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87870/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", "requirements": "", - "description": "In-person Course.\u00a0Laboratory techniques required for qualitative and quantitative analysis, synthesis of inorganic compounds, and simple thermodynamic measurements. May be taken concurrently with CHEM S161 or subsequently. For college students and beyond.\u00a01\/2 Credit. Session A: May 29 \u2013 June 30. Tuition: $2425.", + "description": "In-person Course.\u00a0Laboratory techniques required for qualitative and quantitative analysis, synthesis of inorganic compounds, and simple thermodynamic measurements. May be taken concurrently with CHEM S161 or subsequently. For college students and beyond.\u00a01/2 Credit. Session A: May 29 \u2013 June 30. Tuition: $2425.", "short_title": "General Chemistry Laboratory I", "title": "General Chemistry Laboratory I", "school": "SU", @@ -5003,15 +6438,22 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87734\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87734/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", "requirements": "", - "description": "In-person Course.\u00a0Laboratory techniques required for qualitative and quantitative analysis, synthesis of inorganic compounds, and simple thermodynamic measurements. May be taken concurrently with CHEM S165 or subsequently. Must be taken after CHEM 134. For college students and beyond. 1\/2 Credit.\u00a0Session B: July 3 \u2013 August 4. Tuition: $2425.", + "description": "In-person Course.\u00a0Laboratory techniques required for qualitative and quantitative analysis, synthesis of inorganic compounds, and simple thermodynamic measurements. May be taken concurrently with CHEM S165 or subsequently. Must be taken after CHEM 134. For college students and beyond. 1/2 Credit.\u00a0Session B: July 3 \u2013 August 4. Tuition: $2425.", "short_title": "General Chemistry Laboratory II", "title": "General Chemistry Laboratory II", "school": "SU", @@ -5067,15 +6509,22 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87871\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87871/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", "requirements": "", - "description": "In-person Course.\u00a0A comprehensive survey of modern descriptive, inorganic, and physical chemistry, intended for students with high school preparation in chemistry. Stoichiometry, atomic structure, chemical bonding, molecular structure, gas laws, properties of solutions. The general chemistry courses (CHEM S161\/S165) with laboratories (CHEM S134\/S136), meet departmental requirements for the major and are appropriate for students seeking to fulfill medical school requirements.\u00a01 Credit. Session A: May 29 \u2013 June 30. Tuition: $4850.", + "description": "In-person Course.\u00a0A comprehensive survey of modern descriptive, inorganic, and physical chemistry, intended for students with high school preparation in chemistry. Stoichiometry, atomic structure, chemical bonding, molecular structure, gas laws, properties of solutions. The general chemistry courses (CHEM S161/S165) with laboratories (CHEM S134/S136), meet departmental requirements for the major and are appropriate for students seeking to fulfill medical school requirements.\u00a01 Credit. Session A: May 29 \u2013 June 30. Tuition: $4850.", "short_title": "General Chemistry I", "title": "General Chemistry I", "school": "SU", @@ -5175,15 +6624,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87735\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87735/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", "requirements": "", - "description": "In-person Course.\u00a0A comprehensive survey of modern descriptive inorganic and physical chemistry, intended for students with high school preparation in chemistry. Chemical kinetics and thermodynamics, chemical equilibria, acid-base theory, electrochemistry, transition metal chemistry, introduction to organic chemistry. Prerequisite: CHEM S161. The general chemistry courses (CHEM S161\/165) with laboratories (CHEM S134\/S136), meet departmental requirements for the major and are appropriate for students seeking to fulfill medical school requirements.\u00a01 Credit. Session B: July 3 \u2013 August 4. Tuition: $4850.", + "description": "In-person Course.\u00a0A comprehensive survey of modern descriptive inorganic and physical chemistry, intended for students with high school preparation in chemistry. Chemical kinetics and thermodynamics, chemical equilibria, acid-base theory, electrochemistry, transition metal chemistry, introduction to organic chemistry. Prerequisite: CHEM S161. The general chemistry courses (CHEM S161/165) with laboratories (CHEM S134/S136), meet departmental requirements for the major and are appropriate for students seeking to fulfill medical school requirements.\u00a01 Credit. Session B: July 3 \u2013 August 4. Tuition: $4850.", "short_title": "General Chemistry II", "title": "General Chemistry II", "school": "SU", @@ -5283,15 +6760,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87872\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87872/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", "requirements": "", - "description": "In-person Course.\u00a0The fundamental principles of organic chemistry. Structure and bonding, acids and bases, chemical energetics, stereochemistry, properties, preparation and reactions of alkanes, alkene, alkyl halides, alcohols, ethers, alkynes and infrared spectroscopy.\u00a0 The organic chemistry courses (CHEM S220\/S221) with laboratories (CHEM S222\/S223), satisfy departmental requirements for the major, and are appropriate for students seeking to fulfill medical school requirements. For college students and beyond. After two terms of college-level general chemistry, or the equivalent. Students with questions about pre-requisites should contact the Director of Summer Sciences.\u00a01 Credit. Session A: May 29 \u2013 June 30. Tuition: $4850.", + "description": "In-person Course.\u00a0The fundamental principles of organic chemistry. Structure and bonding, acids and bases, chemical energetics, stereochemistry, properties, preparation and reactions of alkanes, alkene, alkyl halides, alcohols, ethers, alkynes and infrared spectroscopy.\u00a0 The organic chemistry courses (CHEM S220/S221) with laboratories (CHEM S222/S223), satisfy departmental requirements for the major, and are appropriate for students seeking to fulfill medical school requirements. For college students and beyond. After two terms of college-level general chemistry, or the equivalent. Students with questions about pre-requisites should contact the Director of Summer Sciences.\u00a01 Credit. Session A: May 29 \u2013 June 30. Tuition: $4850.", "short_title": "Organic Chemistry", "title": "Organic Chemistry", "school": "SU", @@ -5389,15 +6894,22 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87736\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87736/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", "requirements": "", - "description": "In-person Course.\u00a0The fundamental principles of organic chemistry. Aldehydes and ketones, strategies in organic synthesis, carboxylic acid derivatives, carbonyl condensation reactions, sulfur and phosphorus compounds, bifunctional molecules, carbohydrates, organic nitrogen compounds, amino acids and proteins. The organic chemistry courses (CHEM S220\/S221) with laboratories (CHEM S222\/S223), satisfy departmental requirements for the major, and are appropriate for students seeking to fulfill medical school requirements. For college students and beyond. Prerequisite: CHEM S220. Students with questions about pre-requisites should contact the Director of Summer Sciences.\u00a01 Credit. Session B: July 3 \u2013 August 4. Tuition: $4850.", + "description": "In-person Course.\u00a0The fundamental principles of organic chemistry. Aldehydes and ketones, strategies in organic synthesis, carboxylic acid derivatives, carbonyl condensation reactions, sulfur and phosphorus compounds, bifunctional molecules, carbohydrates, organic nitrogen compounds, amino acids and proteins. The organic chemistry courses (CHEM S220/S221) with laboratories (CHEM S222/S223), satisfy departmental requirements for the major, and are appropriate for students seeking to fulfill medical school requirements. For college students and beyond. Prerequisite: CHEM S220. Students with questions about pre-requisites should contact the Director of Summer Sciences.\u00a01 Credit. Session B: July 3 \u2013 August 4. Tuition: $4850.", "short_title": "Organic Chemistry II", "title": "Organic Chemistry II", "school": "SU", @@ -5495,15 +7007,22 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87873\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87873/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", "requirements": "", - "description": "In-person Course.\u00a0Introductory laboratory course covering basic synthetic and analytic techniques in organic chemistry. May be taken concurrently with CHEM S220 or subsequently. For college students and beyond. After two terms of college-level general chemistry lab, or the equivalent. Students with questions about pre-requisites should contact the Director of Summer Sciences.\u00a01\/2 Credit. Session A: May 29 \u2013 June 30. Tuition: $2425.", + "description": "In-person Course.\u00a0Introductory laboratory course covering basic synthetic and analytic techniques in organic chemistry. May be taken concurrently with CHEM S220 or subsequently. For college students and beyond. After two terms of college-level general chemistry lab, or the equivalent. Students with questions about pre-requisites should contact the Director of Summer Sciences.\u00a01/2 Credit. Session A: May 29 \u2013 June 30. Tuition: $2425.", "short_title": "Lab for Organic Chemistry I", "title": "Lab for Organic Chemistry I", "school": "SU", @@ -5559,15 +7078,22 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87737\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87737/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", "requirements": "", - "description": "In-person Course.\u00a0Introductory laboratory course covering basic synthetic and analytic techniques in organic chemistry. May be taken concurrently with CHEM S221 or subsequently. Must be taken after CHEM 222. For college students and beyond. After two terms of college-level general chemistry lab, or the equivalent. Students with questions about pre-requisites should contact the Director of Summer Sciences. 1\/2 Credit. Session B: July 3 \u2013 August 4. Tuition: $2425.", + "description": "In-person Course.\u00a0Introductory laboratory course covering basic synthetic and analytic techniques in organic chemistry. May be taken concurrently with CHEM S221 or subsequently. Must be taken after CHEM 222. For college students and beyond. After two terms of college-level general chemistry lab, or the equivalent. Students with questions about pre-requisites should contact the Director of Summer Sciences. 1/2 Credit. Session B: July 3 \u2013 August 4. Tuition: $2425.", "short_title": "Lab for Organic Chemistry II", "title": "Lab for Organic Chemistry II", "school": "SU", @@ -5623,10 +7149,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87874\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87874/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -5687,11 +7241,18 @@ "rp_attr": "", "classnotes": "", "final_exam": "", - "course_home_url": "https:\/\/yale.instructure.com\/courses\/87931", + "course_home_url": "https://yale.instructure.com/courses/87931", "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -5776,10 +7337,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87738\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87738/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -5864,10 +7453,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87875\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87875/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -5930,10 +7526,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87739\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87739/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -5995,10 +7619,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87917\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87917/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -6067,10 +7698,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87740\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87740/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -6139,10 +7777,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87876\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87876/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -6211,10 +7877,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87877\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87877/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -6305,10 +7978,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87805\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87805/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -6391,10 +8071,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87878\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87878/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -6435,7 +8122,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -6499,10 +8214,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87860\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87860/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -6544,12 +8266,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202302", - "requirements": "", - "description": "Online Course. This introductory course takes on a comparative and global perspective in approaching the phenomenon of Hallyu, or the Korean Cultural Wave. Rather than proceeding each week by covering a specific medium (music, movies, games), we proceed with specific themes\/questions. Throughout the course, we learn a variety of critical tools for understanding Hallyu from a variety of perspectives\u2014aesthetics, historical, sociological, and anthropological. In tandem with our theoretical discussion, we closely look at various cultural instantiations in cinema, TV shows, music, games, and literature. Familiarity or fluency in an East Asian language is not required. As part of the course, we will also hear from guest lecturers including film directors and critics. \u00a0\u00a0\n\n\nProspective students should email the instructor (eugene.kwon@yale.edu) with basic background information that includes the following: (1) institutional affiliation, (2) reason for taking the course and main interests, (3) familiarity with academic reading and writing, (4) familiarity with Korean culture and history\/language background, and (5) goals for the course. 1 Credit. Session B: July 3 \u2013 August 4. Tuition: $4850. Technology Fee: $85.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } + }, + { + "season_code": "202302", + "requirements": "", + "description": "Online Course. This introductory course takes on a comparative and global perspective in approaching the phenomenon of Hallyu, or the Korean Cultural Wave. Rather than proceeding each week by covering a specific medium (music, movies, games), we proceed with specific themes/questions. Throughout the course, we learn a variety of critical tools for understanding Hallyu from a variety of perspectives\u2014aesthetics, historical, sociological, and anthropological. In tandem with our theoretical discussion, we closely look at various cultural instantiations in cinema, TV shows, music, games, and literature. Familiarity or fluency in an East Asian language is not required. As part of the course, we will also hear from guest lecturers including film directors and critics. \u00a0\u00a0\n\n\nProspective students should email the instructor (eugene.kwon@yale.edu) with basic background information that includes the following: (1) institutional affiliation, (2) reason for taking the course and main interests, (3) familiarity with academic reading and writing, (4) familiarity with Korean culture and history/language background, and (5) goals for the course. 1 Credit. Session B: July 3 \u2013 August 4. Tuition: $4850. Technology Fee: $85.", "short_title": "Hallyu: Korean Film, Music, a...", "title": "Hallyu: Korean Film, Music, and Pop Culture", "school": "SU", @@ -6606,10 +8356,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87896\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87896/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -6672,10 +8429,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87743\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87743/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -6738,10 +8502,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87879\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87879/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -6802,10 +8573,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87744\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87744/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -6866,15 +8665,22 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87880\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87880/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", "requirements": "", - "description": "Session A (CRN: 30398) and Session B (CRN:30399) closed to further enrollment. Online Course. Introduction to data analysis from the beginning of the econometrics sequence; exposure to modern empirical economics; and development of credible economic analysis. This course emphasizes working directly and early with data, through such economic examples as studies of environmental\/natural resource economics, intergenerational mobility, discrimination, and finance. Topics include: probability, statistics, and sampling; selection, causation and causal inference; regression and model specification; and machine learning and big data. Prerequisites: ECON 108, 110, 115, or equivalent and familiarity with single variable calculus. Students who have taken ECON 131 may not receive major credit for this course. Enrollment limited to 20 students. 1 Credit. Session A: May 29 \u2013 June 30 (CRN 30398). Session B: July 3 \u2013 August 4 (CRN 30399). Tuition: $4850. Technology Fee: $85.", + "description": "Session A (CRN: 30398) and Session B (CRN:30399) closed to further enrollment. Online Course. Introduction to data analysis from the beginning of the econometrics sequence; exposure to modern empirical economics; and development of credible economic analysis. This course emphasizes working directly and early with data, through such economic examples as studies of environmental/natural resource economics, intergenerational mobility, discrimination, and finance. Topics include: probability, statistics, and sampling; selection, causation and causal inference; regression and model specification; and machine learning and big data. Prerequisites: ECON 108, 110, 115, or equivalent and familiarity with single variable calculus. Students who have taken ECON 131 may not receive major credit for this course. Enrollment limited to 20 students. 1 Credit. Session A: May 29 \u2013 June 30 (CRN 30398). Session B: July 3 \u2013 August 4 (CRN 30399). Tuition: $4850. Technology Fee: $85.", "short_title": "Introduction to Data Analysis...", "title": "Introduction to Data Analysis and Econometrics", "school": "SU", @@ -6932,15 +8738,22 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87745\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87745/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", "requirements": "", - "description": "Session A (CRN: 30398) and Session B (CRN:30399) closed to further enrollment. Online Course. Introduction to data analysis from the beginning of the econometrics sequence; exposure to modern empirical economics; and development of credible economic analysis. This course emphasizes working directly and early with data, through such economic examples as studies of environmental\/natural resource economics, intergenerational mobility, discrimination, and finance. Topics include: probability, statistics, and sampling; selection, causation and causal inference; regression and model specification; and machine learning and big data. Prerequisites: ECON 108, 110, 115, or equivalent and familiarity with single variable calculus. Students who have taken ECON 131 may not receive major credit for this course. Enrollment limited to 20 students. 1 Credit. Session A: May 29 \u2013 June 30 (CRN 30398). Session B: July 3 \u2013 August 4 (CRN 30399). Tuition: $4850. Technology Fee: $85.", + "description": "Session A (CRN: 30398) and Session B (CRN:30399) closed to further enrollment. Online Course. Introduction to data analysis from the beginning of the econometrics sequence; exposure to modern empirical economics; and development of credible economic analysis. This course emphasizes working directly and early with data, through such economic examples as studies of environmental/natural resource economics, intergenerational mobility, discrimination, and finance. Topics include: probability, statistics, and sampling; selection, causation and causal inference; regression and model specification; and machine learning and big data. Prerequisites: ECON 108, 110, 115, or equivalent and familiarity with single variable calculus. Students who have taken ECON 131 may not receive major credit for this course. Enrollment limited to 20 students. 1 Credit. Session A: May 29 \u2013 June 30 (CRN 30398). Session B: July 3 \u2013 August 4 (CRN 30399). Tuition: $4850. Technology Fee: $85.", "short_title": "Introduction to Data Analysis...", "title": "Introduction to Data Analysis and Econometrics", "school": "SU", @@ -6998,10 +8811,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87881\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87881/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -7064,15 +8884,22 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87882\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87882/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", "requirements": "", - "description": "This course is part of a Yale Summer Session Program Abroad and cannot be taken independent of the program. Interested students must apply to Yale Study Abroad by February 7th. For more detailed information about the program, including a description of the courses, housing, excursions, and budget, visit: https:\/\/studyabroad.yale.edu\/programs\/yale-summer-session-paris-private-law", + "description": "This course is part of a Yale Summer Session Program Abroad and cannot be taken independent of the program. Interested students must apply to Yale Study Abroad by February 7th. For more detailed information about the program, including a description of the courses, housing, excursions, and budget, visit: https://studyabroad.yale.edu/programs/yale-summer-session-paris-private-law", "short_title": "Private Law and Contract Enfo...", "title": "Private Law and Contract Enforcement in the United States and France", "school": "SU", @@ -7145,7 +8972,14 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -7206,10 +9040,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87746\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87746/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -7270,15 +9111,22 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87884\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87884/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", "requirements": "", - "description": "Course closed to further enrollment. In-person Course. This course offers an introduction to the transnational history of education in relation to the development of U.S. empire both at home and abroad. By bringing together topics often approached separately -- immigration, education, race, colonialism, and the history of U.S. empire -- we will interrogate the ways that education has been mobilized to deploy power: controlling knowledge, categorizing and policing difference, administering unequal paths to citizenship\/belonging, forcing assimilation, promoting socio-economic divides, and asserting discipline and control. Topics to be covered include American Indian education and self-determination, African American education in slavery and freedom, U.S. colonial education in the Philippines\/Cuba\/Puerto Rico, immigration and forced Americanization schooling, Latinx fights for educational access and autonomy, State Department experiments in educational diplomacy and child socialization, educational missions abroad, and national security and the war on terror. Throughout, we will draw links between the past and the present and ask what it might mean to \"decolonize\" education today.\u00a01 Credit. Session B: July 3 \u2013 August 4. Tuition: $4850.", + "description": "Course closed to further enrollment. In-person Course. This course offers an introduction to the transnational history of education in relation to the development of U.S. empire both at home and abroad. By bringing together topics often approached separately -- immigration, education, race, colonialism, and the history of U.S. empire -- we will interrogate the ways that education has been mobilized to deploy power: controlling knowledge, categorizing and policing difference, administering unequal paths to citizenship/belonging, forcing assimilation, promoting socio-economic divides, and asserting discipline and control. Topics to be covered include American Indian education and self-determination, African American education in slavery and freedom, U.S. colonial education in the Philippines/Cuba/Puerto Rico, immigration and forced Americanization schooling, Latinx fights for educational access and autonomy, State Department experiments in educational diplomacy and child socialization, educational missions abroad, and national security and the war on terror. Throughout, we will draw links between the past and the present and ask what it might mean to \"decolonize\" education today.\u00a01 Credit. Session B: July 3 \u2013 August 4. Tuition: $4850.", "short_title": "Education and Empire", "title": "Education and Empire", "school": "SU", @@ -7336,10 +9184,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87885\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87885/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -7403,10 +9258,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87724\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87724/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -7449,10 +9311,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88008\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88008/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -7492,10 +9361,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88009\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88009/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -7558,10 +9434,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87727\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87727/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -7607,7 +9490,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -7675,10 +9586,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87861\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87861/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -7748,10 +9666,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87748\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87748/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -7821,10 +9767,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87886\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87886/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -7893,10 +9846,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87887\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87887/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -7962,7 +9922,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -8031,10 +10019,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87750\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87750/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -8103,10 +10098,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87888\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87888/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -8175,10 +10198,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87751\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87751/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -8241,10 +10271,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87889\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87889/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -8302,17 +10339,24 @@ ], "flags": [ "Taught in-person", - "YC English: 20th\/21st Century" + "YC English: 20th/21st Century" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87761\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87761/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -8376,15 +10420,22 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87752\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87752/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", "requirements": "", - "description": "This course is part of a Yale Summer Session Program Abroad and cannot be taken independent of the program. Interested students must apply to Yale Study Abroad by February 7th. For more detailed information about the program, including a description of the courses, housing, excursions, and budget, visit: https:\/\/studyabroad.yale.edu\/programs\/yale-summer-session-auvillar-personal", + "description": "This course is part of a Yale Summer Session Program Abroad and cannot be taken independent of the program. Interested students must apply to Yale Study Abroad by February 7th. For more detailed information about the program, including a description of the courses, housing, excursions, and budget, visit: https://studyabroad.yale.edu/programs/yale-summer-session-auvillar-personal", "short_title": "Personal Geography", "title": "Personal Geography", "school": "SU", @@ -8461,7 +10512,14 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -8523,10 +10581,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87753\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87753/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -8567,10 +10632,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87720\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87720/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -8626,17 +10719,24 @@ ], "flags": [ "Taught remotely", - "YC English: 20th\/21st Century" + "YC English: 20th/21st Century" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87797\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87797/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -8706,10 +10806,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87754\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87754/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -8771,10 +10878,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87755\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87755/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -8836,10 +10950,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87756\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87756/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -8907,10 +11028,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87861\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87861/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -8953,17 +11081,45 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90521\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90521/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", "requirements": "", "description": "Required Summer Experience", - "short_title": "YSE Internship\/Research", - "title": "YSE Internship\/Research", + "short_title": "YSE Internship/Research", + "title": "YSE Internship/Research", "school": "FS", "credits": 0.0, "extra_info": "ACTIVE", @@ -8993,7 +11149,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -9039,7 +11223,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -9110,10 +11322,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87921\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87921/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -9175,15 +11394,22 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87757\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87757/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", "requirements": "", - "description": "Course closed to further enrollment. Online Course. This course examines constitutional principles of due process and fair trial, and how bias influences the criminal justice system, focusing on wrongful convictions and the death penalty. Ethical considerations are a key component of the course. Iconic films demonstrate the issues presented. Topics include the efficacy of the death penalty, the causes of wrongful convictions, actual innocence, gender\/race\/economic bias and its effect on the justice system, and best practices for improving our sense of justice in the United States. This course explores the varying roles of the court, the prosecution and the defense in criminal cases, including analysis of ineffective assistance of counsel claims. Students develop an understanding of conflicting views on the legitimacy of the death penalty and the systemic problems with instituting capital punishment, as well as best practices to prevent wrongful convictions.\u00a0For college students and beyond.\u00a0Enrollment limited to 20 students.\u00a01 Credit. Session B: July 3 \u2013 August 4. Tuition: $4850. Technology Fee: $85.", + "description": "Course closed to further enrollment. Online Course. This course examines constitutional principles of due process and fair trial, and how bias influences the criminal justice system, focusing on wrongful convictions and the death penalty. Ethical considerations are a key component of the course. Iconic films demonstrate the issues presented. Topics include the efficacy of the death penalty, the causes of wrongful convictions, actual innocence, gender/race/economic bias and its effect on the justice system, and best practices for improving our sense of justice in the United States. This course explores the varying roles of the court, the prosecution and the defense in criminal cases, including analysis of ineffective assistance of counsel claims. Students develop an understanding of conflicting views on the legitimacy of the death penalty and the systemic problems with instituting capital punishment, as well as best practices to prevent wrongful convictions.\u00a0For college students and beyond.\u00a0Enrollment limited to 20 students.\u00a01 Credit. Session B: July 3 \u2013 August 4. Tuition: $4850. Technology Fee: $85.", "short_title": "Death Penalty, Wrongful Convi...", "title": "Death Penalty, Wrongful Convictions and Criminal Justice Through the Lens of Film", "school": "SU", @@ -9239,15 +11465,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87891\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87891/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", "requirements": "", - "description": "The internship is a degree requirement that is completed in the summer between the first and second academic years. Students work with their faculty advisers, the Career Management Center, and the Office of Public Health Practice to identify suitable public health placements such as medical care facilities, community agencies, public health departments, research projects, laboratories, and other sites engaged in public health activities. The internship experience sometimes serves as a basis for the M.P.H. thesis. The internship is displayed on the transcript with a grade of \"S\" (Satisfactory) upon completion. A course unit is not given for the summer internship. All students, with the exception of those in the Advanced Professional M.P.H. Program and the Accelerated M.B.A.\/M.P.H. Program, must complete an approved Summer Internship, typically ten to twelve weeks and no less than eight weeks in duration.\u00a0While the Summer Internship fulfills the internship requirement for the degree, it does not complete the Applied Practice Experience (APE) requirement.", + "description": "The internship is a degree requirement that is completed in the summer between the first and second academic years. Students work with their faculty advisers, the Career Management Center, and the Office of Public Health Practice to identify suitable public health placements such as medical care facilities, community agencies, public health departments, research projects, laboratories, and other sites engaged in public health activities. The internship experience sometimes serves as a basis for the M.P.H. thesis. The internship is displayed on the transcript with a grade of \"S\" (Satisfactory) upon completion. A course unit is not given for the summer internship. All students, with the exception of those in the Advanced Professional M.P.H. Program and the Accelerated M.B.A./M.P.H. Program, must complete an approved Summer Internship, typically ten to twelve weeks and no less than eight weeks in duration.\u00a0While the Summer Internship fulfills the internship requirement for the degree, it does not complete the Applied Practice Experience (APE) requirement.", "short_title": "Summer Internship - non-APE", "title": "Summer Internship - non-APE", "school": "PH", @@ -9285,12 +11539,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202302", - "requirements": "", - "description": "The internship is a degree requirement that is completed in the summer between the first and second academic years. Students work with their faculty advisers, the Career Management Center, and the Office of Public Health Practice to identify suitable public health placements such as medical care facilities, community agencies, public health departments, research projects, laboratories, and other sites engaged in public health activities. The internship experience sometimes serves as a basis for the M.P.H. thesis. The internship is displayed on the transcript with a grade of \"S\" (Satisfactory) upon completion. A course unit is not given for the summer internship. All students, with the exception of those in the Advanced Professional M.P.H. Program and the Accelerated M.B.A.\/M.P.H. Program, must complete an approved Summer Internship, typically ten to twelve weeks and no less than eight weeks in duration. The\u00a0Summer Internship course also completes the practice requirement for the M.P.H. degree with approval from the Office of Public Health Practice.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } + }, + { + "season_code": "202302", + "requirements": "", + "description": "The internship is a degree requirement that is completed in the summer between the first and second academic years. Students work with their faculty advisers, the Career Management Center, and the Office of Public Health Practice to identify suitable public health placements such as medical care facilities, community agencies, public health departments, research projects, laboratories, and other sites engaged in public health activities. The internship experience sometimes serves as a basis for the M.P.H. thesis. The internship is displayed on the transcript with a grade of \"S\" (Satisfactory) upon completion. A course unit is not given for the summer internship. All students, with the exception of those in the Advanced Professional M.P.H. Program and the Accelerated M.B.A./M.P.H. Program, must complete an approved Summer Internship, typically ten to twelve weeks and no less than eight weeks in duration. The\u00a0Summer Internship course also completes the practice requirement for the M.P.H. degree with approval from the Office of Public Health Practice.", "short_title": "Summer Internship - APE", "title": "Summer Internship - APE", "school": "PH", @@ -9328,12 +11610,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", "requirements": "Open only to students enrolled in the Executive Online M.P.H. Program. Not open to auditors.", - "description": "Solution-focused problem-solving is an essential competency for public health professionals. This intensive introduces an iterative framework to innovatively solve complex challenges from the perspective of target user groups. Students address complex public health challenges utilizing a design-thinking framework. Students leave the intensive with a firm understanding of how to address complex public health challenges that account for their target user\u2019s desires\/needs, what is financially viable and sustainable, and what is technically feasible. This is one in a three-part series of intensives for students enrolled in the Executive Online M.P.H. Program.", + "description": "Solution-focused problem-solving is an essential competency for public health professionals. This intensive introduces an iterative framework to innovatively solve complex challenges from the perspective of target user groups. Students address complex public health challenges utilizing a design-thinking framework. Students leave the intensive with a firm understanding of how to address complex public health challenges that account for their target user\u2019s desires/needs, what is financially viable and sustainable, and what is technically feasible. This is one in a three-part series of intensives for students enrolled in the Executive Online M.P.H. Program.", "short_title": "Design Thinking in Public Hea...", "title": "Design Thinking in Public Health Systems", "school": "PH", @@ -9368,10 +11678,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88011\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88011/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -9411,10 +11728,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88012\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88012/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -9454,10 +11778,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88013\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88013/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -9525,10 +11856,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87861\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87861/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -9597,15 +11935,22 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87758\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87758/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", "requirements": "", - "description": "In-person Course. A critically grounded exploration of the intertwined histories of race and im\/migration in modern U.S. history. Emphasis on interdisciplinary historical approaches to U.S. immigration that demonstrate its intersection and entanglement with U.S. imperialism, racial capitalism, and transnational racial formations throughout U.S. history. Students examine the approaches of cultural, social, gender, political, labor, and legal historians, alongside the work of interdisciplinary scholars of race and im\/migration. Each class focuses on a different set of peoples and migrations to provide an overall foundation for understanding race and im\/migration in the United States.\u00a01 Credit. Session A: May 29 \u2013 June 30. Tuition: $4850.", + "description": "In-person Course. A critically grounded exploration of the intertwined histories of race and im/migration in modern U.S. history. Emphasis on interdisciplinary historical approaches to U.S. immigration that demonstrate its intersection and entanglement with U.S. imperialism, racial capitalism, and transnational racial formations throughout U.S. history. Students examine the approaches of cultural, social, gender, political, labor, and legal historians, alongside the work of interdisciplinary scholars of race and im/migration. Each class focuses on a different set of peoples and migrations to provide an overall foundation for understanding race and im/migration in the United States.\u00a01 Credit. Session A: May 29 \u2013 June 30. Tuition: $4850.", "short_title": "Race and Immigration in U.S. ...", "title": "Race and Immigration in U.S. History", "school": "SU", @@ -9662,15 +12007,22 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87769\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87769/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", "requirements": "", - "description": "This course is part of a Yale Summer Session Program Abroad and cannot be taken independent of the program. Interested students must apply to Yale Study Abroad by February 7th. For more detailed information about the program, including a description of the courses, housing, excursions, and budget, visit: https:\/\/studyabroad.yale.edu\/programs\/yale-summer-session-dubrovnik-history", + "description": "This course is part of a Yale Summer Session Program Abroad and cannot be taken independent of the program. Interested students must apply to Yale Study Abroad by February 7th. For more detailed information about the program, including a description of the courses, housing, excursions, and budget, visit: https://studyabroad.yale.edu/programs/yale-summer-session-dubrovnik-history", "short_title": "Culture of Southeastern Europe", "title": "Culture of Southeastern Europe", "school": "SU", @@ -9749,10 +12101,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87934\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87934/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -9793,10 +12152,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87721\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87721/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -9860,10 +12247,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87935\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87935/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -9926,10 +12320,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87722\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87722/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -9993,10 +12394,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87759\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87759/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -10042,7 +12450,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -10110,10 +12546,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87861\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87861/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -10177,15 +12620,22 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87760\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87760/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", "requirements": "", - "description": "This course is part of a Yale Summer Session Program Abroad and cannot be taken independent of the program. Interested students must apply to Yale Study Abroad by February 7th. For more detailed information about the program, including a description of the courses, housing, excursions, and budget, visit: https:\/\/studyabroad.yale.edu\/programs\/yale-summer-session-prague-cinematic", + "description": "This course is part of a Yale Summer Session Program Abroad and cannot be taken independent of the program. Interested students must apply to Yale Study Abroad by February 7th. For more detailed information about the program, including a description of the courses, housing, excursions, and budget, visit: https://studyabroad.yale.edu/programs/yale-summer-session-prague-cinematic", "short_title": "Cinematic Storytelling in Prague", "title": "Cinematic Storytelling in Prague", "school": "SU", @@ -10264,10 +12714,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87892\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87892/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -10328,10 +12785,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87893\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87893/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -10392,10 +12877,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87894\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87894/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -10459,15 +12951,22 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87761\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87761/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", "requirements": "", - "description": "Course closed to further enrollment. In-person Course.\u00a0This course will take a hard, imaginative, speculative, and poetic look at U.S. history of the twentieth and twenty-first centuries through the lens of film and video. In a time where we are awash with moving images in our environments on a daily, if not minute-by-minute basis, this course will be a space to meditate upon the sights, sounds, and texts around us.\u00a0 We will interrogate how we have been trained to read a moving image. We will place the image historically, aesthetically, politically. We will learn how to see history as a series of discontinuities, yet with unconscious repetitions, thematic overlaps, and eternal returns \u2014 not simply as a single thread of greatest hits and milestones moments. Topics will include: Empire, Language, Love (viz. the Screwball Comedy), Class, War and Empire, Politics, Communism, Ideology, Youth, Revolt, Postmodernity, the Network, and Memory. Periods and events covered include: The Black Freedom Struggle, The Jazz Age, the Great Depression, World War II, the Long 1960s, the U.S. failure in Vietnam, the Dot Com Boom and Silicon Valley, and contemporary activist\/revolutionary movements. We will not consider the U.S. in isolation: films and discussions will inevitably take us to Latin America, to France, to Senegal, to Iran, and to the Soviet Union. We will have mandatory Monday night screenings as well; these will include moving-image work by Julie Dash, Charlie Chaplin, Frank Tashlin, Douglas Sirk, Barbara Loden, Jane Schoenbrun, Anthony Banua-Simon, Kevin Jerome Everson, Don Hertzfeldt, Vincente Minnelli, Chuck Jones, Michelangelo Antonioni, Abbas Kiarostami, Fr\u00e9d\u00e9ric Da, Spike Lee, Walt Disney, Warren Beatty, Brian De Palma, Richard Lester, and Eric Andr\u00e9, among a host of others. This course seeks to expand students' knowledge of the history of film, of U.S. culture, and the society in which they exist. 1 Credit. Session B: July 3 \u2013 August 4. Tuition: $4850.", + "description": "Course closed to further enrollment. In-person Course.\u00a0This course will take a hard, imaginative, speculative, and poetic look at U.S. history of the twentieth and twenty-first centuries through the lens of film and video. In a time where we are awash with moving images in our environments on a daily, if not minute-by-minute basis, this course will be a space to meditate upon the sights, sounds, and texts around us.\u00a0 We will interrogate how we have been trained to read a moving image. We will place the image historically, aesthetically, politically. We will learn how to see history as a series of discontinuities, yet with unconscious repetitions, thematic overlaps, and eternal returns \u2014 not simply as a single thread of greatest hits and milestones moments. Topics will include: Empire, Language, Love (viz. the Screwball Comedy), Class, War and Empire, Politics, Communism, Ideology, Youth, Revolt, Postmodernity, the Network, and Memory. Periods and events covered include: The Black Freedom Struggle, The Jazz Age, the Great Depression, World War II, the Long 1960s, the U.S. failure in Vietnam, the Dot Com Boom and Silicon Valley, and contemporary activist/revolutionary movements. We will not consider the U.S. in isolation: films and discussions will inevitably take us to Latin America, to France, to Senegal, to Iran, and to the Soviet Union. We will have mandatory Monday night screenings as well; these will include moving-image work by Julie Dash, Charlie Chaplin, Frank Tashlin, Douglas Sirk, Barbara Loden, Jane Schoenbrun, Anthony Banua-Simon, Kevin Jerome Everson, Don Hertzfeldt, Vincente Minnelli, Chuck Jones, Michelangelo Antonioni, Abbas Kiarostami, Fr\u00e9d\u00e9ric Da, Spike Lee, Walt Disney, Warren Beatty, Brian De Palma, Richard Lester, and Eric Andr\u00e9, among a host of others. This course seeks to expand students' knowledge of the history of film, of U.S. culture, and the society in which they exist. 1 Credit. Session B: July 3 \u2013 August 4. Tuition: $4850.", "short_title": "Film, Video, and American His...", "title": "Film, Video, and American History", "school": "SU", @@ -10531,15 +13030,22 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87895\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87895/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", "requirements": "", - "description": "Online Course. This introductory course takes on a comparative and global perspective in approaching the phenomenon of Hallyu, or the Korean Cultural Wave. Rather than proceeding each week by covering a specific medium (music, movies, games), we proceed with specific themes\/questions. Throughout the course, we learn a variety of critical tools for understanding Hallyu from a variety of perspectives\u2014aesthetics, historical, sociological, and anthropological. In tandem with our theoretical discussion, we closely look at various cultural instantiations in cinema, TV shows, music, games, and literature. Familiarity or fluency in an East Asian language is not required. As part of the course, we will also hear from guest lecturers including film directors and critics. \u00a0\u00a0\n\n\nProspective students should email the instructor (eugene.kwon@yale.edu) with basic background information that includes the following: (1) institutional affiliation, (2) reason for taking the course and main interests, (3) familiarity with academic reading and writing, (4) familiarity with Korean culture and history\/language background, and (5) goals for the course. 1 Credit. Session B: July 3 \u2013 August 4. Tuition: $4850. Technology Fee: $85.", + "description": "Online Course. This introductory course takes on a comparative and global perspective in approaching the phenomenon of Hallyu, or the Korean Cultural Wave. Rather than proceeding each week by covering a specific medium (music, movies, games), we proceed with specific themes/questions. Throughout the course, we learn a variety of critical tools for understanding Hallyu from a variety of perspectives\u2014aesthetics, historical, sociological, and anthropological. In tandem with our theoretical discussion, we closely look at various cultural instantiations in cinema, TV shows, music, games, and literature. Familiarity or fluency in an East Asian language is not required. As part of the course, we will also hear from guest lecturers including film directors and critics. \u00a0\u00a0\n\n\nProspective students should email the instructor (eugene.kwon@yale.edu) with basic background information that includes the following: (1) institutional affiliation, (2) reason for taking the course and main interests, (3) familiarity with academic reading and writing, (4) familiarity with Korean culture and history/language background, and (5) goals for the course. 1 Credit. Session B: July 3 \u2013 August 4. Tuition: $4850. Technology Fee: $85.", "short_title": "Hallyu: Korean Film, Music, a...", "title": "Hallyu: Korean Film, Music, and Pop Culture", "school": "SU", @@ -10596,15 +13102,22 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87896\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87896/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", "requirements": "", - "description": "Course cancelled. This course is part of a Yale Summer Session Program Abroad and cannot be taken independent of the program. Interested students must apply to Yale Study Abroad by February 7th. For more detailed information about the program, including a description of the courses, housing, excursions, and budget, visit: https:\/\/studyabroad.yale.edu\/programs\/yale-summer-session-johannesburg-visual", + "description": "Course cancelled. This course is part of a Yale Summer Session Program Abroad and cannot be taken independent of the program. Interested students must apply to Yale Study Abroad by February 7th. For more detailed information about the program, including a description of the courses, housing, excursions, and budget, visit: https://studyabroad.yale.edu/programs/yale-summer-session-johannesburg-visual", "short_title": "Visual Approaches to Global H...", "title": "Visual Approaches to Global Health", "school": "SU", @@ -10640,7 +13153,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -10681,7 +13222,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -10719,10 +13288,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87763\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87763/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -10760,15 +13357,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87897\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87897/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", "requirements": "", - "description": "This course is part of a Yale Summer Session Program Abroad and cannot be taken independent of the program. Interested students must apply to Yale Study Abroad by February 7th. For more detailed information about the program, including a description of the courses, housing, excursions, and budget, visit: https:\/\/studyabroad.yale.edu\/programs\/yale-summer-session-new-haven-paris", + "description": "This course is part of a Yale Summer Session Program Abroad and cannot be taken independent of the program. Interested students must apply to Yale Study Abroad by February 7th. For more detailed information about the program, including a description of the courses, housing, excursions, and budget, visit: https://studyabroad.yale.edu/programs/yale-summer-session-new-haven-paris", "short_title": "Intermediate and Advanced Fre...", "title": "Intermediate and Advanced French I", "school": "SU", @@ -10849,15 +13474,22 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87807\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87807/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", "requirements": "", - "description": "This course is part of a Yale Summer Session Program Abroad and cannot be taken independent of the program. Interested students must apply to Yale Study Abroad by February 7th. For more detailed information about the program, including a description of the courses, housing, excursions, and budget, visit: https:\/\/studyabroad.yale.edu\/programs\/yale-summer-session-new-haven-paris", + "description": "This course is part of a Yale Summer Session Program Abroad and cannot be taken independent of the program. Interested students must apply to Yale Study Abroad by February 7th. For more detailed information about the program, including a description of the courses, housing, excursions, and budget, visit: https://studyabroad.yale.edu/programs/yale-summer-session-new-haven-paris", "short_title": "Intermediate and Advanced Fre...", "title": "Intermediate and Advanced French II", "school": "SU", @@ -10938,15 +13570,22 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87808\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87808/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", "requirements": "", - "description": "This course is part of a Yale Summer Session Program Abroad and cannot be taken independent of the program. Interested students must apply to Yale Study Abroad by February 7th. For more detailed information about the program, including a description of the courses, housing, excursions, and budget, visit: https:\/\/studyabroad.yale.edu\/programs\/yale-summer-session-paris-france", + "description": "This course is part of a Yale Summer Session Program Abroad and cannot be taken independent of the program. Interested students must apply to Yale Study Abroad by February 7th. For more detailed information about the program, including a description of the courses, housing, excursions, and budget, visit: https://studyabroad.yale.edu/programs/yale-summer-session-paris-france", "short_title": "France Between Past and Prese...", "title": "France Between Past and Present: Advanced Language Practice and Culture", "school": "SU", @@ -11024,15 +13663,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87764\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87764/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", "requirements": "", - "description": "This course is part of a Yale Summer Session Program Abroad and cannot be taken independent of the program. Interested students must apply to Yale Study Abroad by February 7th. For more detailed information about the program, including a description of the courses, housing, excursions, and budget, visit: https:\/\/studyabroad.yale.edu\/programs\/yale-summer-session-paris-france-screen", + "description": "This course is part of a Yale Summer Session Program Abroad and cannot be taken independent of the program. Interested students must apply to Yale Study Abroad by February 7th. For more detailed information about the program, including a description of the courses, housing, excursions, and budget, visit: https://studyabroad.yale.edu/programs/yale-summer-session-paris-france-screen", "short_title": "France On Screen and Off: Adv...", "title": "France On Screen and Off: Advanced French Conversation and Culture Through Film", "school": "SU", @@ -11110,15 +13777,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87765\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87765/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", "requirements": "", - "description": "This course is part of a Yale Summer Session Program Abroad and cannot be taken independent of the program. Interested students must apply to Yale Study Abroad by February 7th. For more detailed information about the program, including a description of the courses, housing, excursions, and budget, visit: https:\/\/studyabroad.yale.edu\/programs\/yale-summer-session-paris-age", + "description": "This course is part of a Yale Summer Session Program Abroad and cannot be taken independent of the program. Interested students must apply to Yale Study Abroad by February 7th. For more detailed information about the program, including a description of the courses, housing, excursions, and budget, visit: https://studyabroad.yale.edu/programs/yale-summer-session-paris-age", "short_title": "Age of Cathedrals", "title": "Age of Cathedrals", "school": "SU", @@ -11175,15 +13870,22 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87898\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87898/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", "requirements": "", - "description": "This course is part of a Yale Summer Session Program Abroad and cannot be taken independent of the program. Interested students must apply to Yale Study Abroad by February 7th. For more detailed information about the program, including a description of the courses, housing, excursions, and budget, visit: https:\/\/studyabroad.yale.edu\/programs\/yale-summer-session-paris-belle-epoque", + "description": "This course is part of a Yale Summer Session Program Abroad and cannot be taken independent of the program. Interested students must apply to Yale Study Abroad by February 7th. For more detailed information about the program, including a description of the courses, housing, excursions, and budget, visit: https://studyabroad.yale.edu/programs/yale-summer-session-paris-belle-epoque", "short_title": "Belle \u00c9poque France", "title": "Belle \u00c9poque France", "school": "SU", @@ -11240,10 +13942,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87766\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87766/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -11302,10 +14011,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87767\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87767/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -11342,7 +14079,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -11379,7 +14144,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -11416,7 +14209,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -11453,7 +14274,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -11490,7 +14339,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -11527,7 +14404,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -11564,7 +14469,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -11601,7 +14534,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -11638,7 +14599,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -11675,7 +14664,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -11712,7 +14729,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -11749,7 +14794,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -11786,7 +14859,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -11823,7 +14924,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -11860,7 +14989,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -11897,7 +15054,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -11934,7 +15119,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -11971,7 +15184,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -12008,7 +15249,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -12045,7 +15314,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -12082,7 +15379,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -12119,7 +15444,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -12156,7 +15509,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -12193,7 +15574,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -12230,7 +15639,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -12267,7 +15704,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -12304,7 +15769,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -12341,7 +15834,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -12378,7 +15899,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -12415,7 +15964,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -12452,7 +16029,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -12489,7 +16094,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -12526,7 +16159,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -12563,7 +16224,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -12600,7 +16289,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -12637,7 +16354,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -12674,7 +16419,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -12736,10 +16509,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87789\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87789/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -12801,15 +16602,22 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87768\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87768/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", "requirements": "", - "description": "This course is part of a Yale Summer Session Program Abroad and cannot be taken independent of the program. Interested students must apply to Yale Study Abroad by February 7th. For more detailed information about the program, including a description of the courses, housing, excursions, and budget, visit: https:\/\/studyabroad.yale.edu\/programs\/yale-summer-session-new-haven-berlin", + "description": "This course is part of a Yale Summer Session Program Abroad and cannot be taken independent of the program. Interested students must apply to Yale Study Abroad by February 7th. For more detailed information about the program, including a description of the courses, housing, excursions, and budget, visit: https://studyabroad.yale.edu/programs/yale-summer-session-new-haven-berlin", "short_title": "Intermediate German I", "title": "Intermediate German I", "school": "SU", @@ -12887,15 +16695,22 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87810\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87810/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", "requirements": "", - "description": "This course is part of a Yale Summer Session Program Abroad and cannot be taken independent of the program. Interested students must apply to Yale Study Abroad by February 7th. For more detailed information about the program, including a description of the courses, housing, excursions, and budget, visit: https:\/\/studyabroad.yale.edu\/programs\/yale-summer-session-new-haven-berlin", + "description": "This course is part of a Yale Summer Session Program Abroad and cannot be taken independent of the program. Interested students must apply to Yale Study Abroad by February 7th. For more detailed information about the program, including a description of the courses, housing, excursions, and budget, visit: https://studyabroad.yale.edu/programs/yale-summer-session-new-haven-berlin", "short_title": "Intermediate German II", "title": "Intermediate German II", "school": "SU", @@ -12973,10 +16788,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87811\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87811/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -13039,15 +16861,22 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87905\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87905/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", "requirements": "", - "description": "Course closed to further enrollment. In-person Course. As an introductory class to the main principles and topics of legal thought and practice, the class will use works of literature, theatre, film and music to acquaint with the field of law. Students will learn in what ways culture shapes the law, and, in turn, how law governs and shapes culture. Topics include being a person on Instagram and Facebook; Black Lives Matter, the US Constitution; Freedom of Speech, \"Calling out\" and \"Cancel Culture\"; Interpretation and Authority; Law, Ethics and Religion; Islam, Totalitarianism, The Trump Administration; Criminal Law, Agency and Multiple Personality Disorder; Sampling and Copyright, Hip Hop\/Rap in the courtroom.\u00a01 Credit. Session B: July 3 \u2013 August 4. Tuition: $4850.", + "description": "Course closed to further enrollment. In-person Course. As an introductory class to the main principles and topics of legal thought and practice, the class will use works of literature, theatre, film and music to acquaint with the field of law. Students will learn in what ways culture shapes the law, and, in turn, how law governs and shapes culture. Topics include being a person on Instagram and Facebook; Black Lives Matter, the US Constitution; Freedom of Speech, \"Calling out\" and \"Cancel Culture\"; Interpretation and Authority; Law, Ethics and Religion; Islam, Totalitarianism, The Trump Administration; Criminal Law, Agency and Multiple Personality Disorder; Sampling and Copyright, Hip Hop/Rap in the courtroom.\u00a01 Credit. Session B: July 3 \u2013 August 4. Tuition: $4850.", "short_title": "What is Law?", "title": "What is Law?", "school": "SU", @@ -13114,10 +16943,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87899\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87899/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -13159,15 +16995,22 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87900\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87900/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", "requirements": "", - "description": "In-person Course. A critically grounded exploration of the intertwined histories of race and im\/migration in modern U.S. history. Emphasis on interdisciplinary historical approaches to U.S. immigration that demonstrate its intersection and entanglement with U.S. imperialism, racial capitalism, and transnational racial formations throughout U.S. history. Students examine the approaches of cultural, social, gender, political, labor, and legal historians, alongside the work of interdisciplinary scholars of race and im\/migration. Each class focuses on a different set of peoples and migrations to provide an overall foundation for understanding race and im\/migration in the United States.\u00a01 Credit. Session A: May 29 \u2013 June 30. Tuition: $4850.", + "description": "In-person Course. A critically grounded exploration of the intertwined histories of race and im/migration in modern U.S. history. Emphasis on interdisciplinary historical approaches to U.S. immigration that demonstrate its intersection and entanglement with U.S. imperialism, racial capitalism, and transnational racial formations throughout U.S. history. Students examine the approaches of cultural, social, gender, political, labor, and legal historians, alongside the work of interdisciplinary scholars of race and im/migration. Each class focuses on a different set of peoples and migrations to provide an overall foundation for understanding race and im/migration in the United States.\u00a01 Credit. Session A: May 29 \u2013 June 30. Tuition: $4850.", "short_title": "Race and Immigration in U.S. ...", "title": "Race and Immigration in U.S. History", "school": "SU", @@ -13224,10 +17067,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87769\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87769/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -13266,16 +17116,44 @@ "rp_attr": "", "classnotes": "", "final_exam": "", - "course_home_url": "https:\/\/yale.instructure.com\/courses\/87858", + "course_home_url": "https://yale.instructure.com/courses/87858", "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202302", - "requirements": "", - "description": "Course closed to further enrollment. In-person Course.\u00a0This course will take a hard, imaginative, speculative, and poetic look at U.S. history of the twentieth and twenty-first centuries through the lens of film and video. In a time where we are awash with moving images in our environments on a daily, if not minute-by-minute basis, this course will be a space to meditate upon the sights, sounds, and texts around us.\u00a0 We will interrogate how we have been trained to read a moving image. We will place the image historically, aesthetically, politically. We will learn how to see history as a series of discontinuities, yet with unconscious repetitions, thematic overlaps, and eternal returns \u2014 not simply as a single thread of greatest hits and milestones moments. Topics will include: Empire, Language, Love (viz. the Screwball Comedy), Class, War and Empire, Politics, Communism, Ideology, Youth, Revolt, Postmodernity, the Network, and Memory. Periods and events covered include: The Black Freedom Struggle, The Jazz Age, the Great Depression, World War II, the Long 1960s, the U.S. failure in Vietnam, the Dot Com Boom and Silicon Valley, and contemporary activist\/revolutionary movements. We will not consider the U.S. in isolation: films and discussions will inevitably take us to Latin America, to France, to Senegal, to Iran, and to the Soviet Union. We will have mandatory Monday night screenings as well; these will include moving-image work by Julie Dash, Charlie Chaplin, Frank Tashlin, Douglas Sirk, Barbara Loden, Jane Schoenbrun, Anthony Banua-Simon, Kevin Jerome Everson, Don Hertzfeldt, Vincente Minnelli, Chuck Jones, Michelangelo Antonioni, Abbas Kiarostami, Fr\u00e9d\u00e9ric Da, Spike Lee, Walt Disney, Warren Beatty, Brian De Palma, Richard Lester, and Eric Andr\u00e9, among a host of others. This course seeks to expand students' knowledge of the history of film, of U.S. culture, and the society in which they exist. 1 Credit. Session B: July 3 \u2013 August 4. Tuition: $4850.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } + }, + { + "season_code": "202302", + "requirements": "", + "description": "Course closed to further enrollment. In-person Course.\u00a0This course will take a hard, imaginative, speculative, and poetic look at U.S. history of the twentieth and twenty-first centuries through the lens of film and video. In a time where we are awash with moving images in our environments on a daily, if not minute-by-minute basis, this course will be a space to meditate upon the sights, sounds, and texts around us.\u00a0 We will interrogate how we have been trained to read a moving image. We will place the image historically, aesthetically, politically. We will learn how to see history as a series of discontinuities, yet with unconscious repetitions, thematic overlaps, and eternal returns \u2014 not simply as a single thread of greatest hits and milestones moments. Topics will include: Empire, Language, Love (viz. the Screwball Comedy), Class, War and Empire, Politics, Communism, Ideology, Youth, Revolt, Postmodernity, the Network, and Memory. Periods and events covered include: The Black Freedom Struggle, The Jazz Age, the Great Depression, World War II, the Long 1960s, the U.S. failure in Vietnam, the Dot Com Boom and Silicon Valley, and contemporary activist/revolutionary movements. We will not consider the U.S. in isolation: films and discussions will inevitably take us to Latin America, to France, to Senegal, to Iran, and to the Soviet Union. We will have mandatory Monday night screenings as well; these will include moving-image work by Julie Dash, Charlie Chaplin, Frank Tashlin, Douglas Sirk, Barbara Loden, Jane Schoenbrun, Anthony Banua-Simon, Kevin Jerome Everson, Don Hertzfeldt, Vincente Minnelli, Chuck Jones, Michelangelo Antonioni, Abbas Kiarostami, Fr\u00e9d\u00e9ric Da, Spike Lee, Walt Disney, Warren Beatty, Brian De Palma, Richard Lester, and Eric Andr\u00e9, among a host of others. This course seeks to expand students' knowledge of the history of film, of U.S. culture, and the society in which they exist. 1 Credit. Session B: July 3 \u2013 August 4. Tuition: $4850.", "short_title": "Film, Video, and American His...", "title": "Film, Video, and American History", "school": "SU", @@ -13339,10 +17217,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87895\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87895/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -13383,12 +17268,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202302", - "requirements": "", - "description": "This course is part of a Yale Summer Session Program Abroad and cannot be taken independent of the program. Interested students must apply to Yale Study Abroad by February 7th. For more detailed information about the program, including a description of the courses, housing, excursions, and budget, visit: https:\/\/studyabroad.yale.edu\/programs\/yale-summer-session-dubrovnik-history", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } + }, + { + "season_code": "202302", + "requirements": "", + "description": "This course is part of a Yale Summer Session Program Abroad and cannot be taken independent of the program. Interested students must apply to Yale Study Abroad by February 7th. For more detailed information about the program, including a description of the courses, housing, excursions, and budget, visit: https://studyabroad.yale.edu/programs/yale-summer-session-dubrovnik-history", "short_title": "History of Southeastern Europe", "title": "History of Southeastern Europe", "school": "SU", @@ -13469,12 +17382,19 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", "requirements": "", - "description": "Online Course. The peculiar nature of Portugal as a colonial power produced a very distinct history in the five Portuguese-speaking African countries, namely Angola, Guin\u00e9-Bissau (Guinea-Bissau), Mo\u00e7ambique (Mozambique), and the Atlantic islands of Cabo-Verde (Cape Verde) and S\u00e3o Tom\u00e9 e Pr\u00edncipe. After a brief examination of Portuguese colonialism in the context of European expansion, the course explores the distinct history of Lusophone Africa in the long twentieth-century through the lens of culture and politics. Students consider Lusophone Africa as a study unit, dissecting its disparate societies, cultures, and political trajectories within the general context of Africa. Core themes include military conquest, colonial rule, race\/lusotropicalism, culture and identity politics, nationalism, and liberation struggle. Course explores the multiple ways (cultural and political) that Africans responded to Portugal\u2019s encroachment, how they navigated the color bar that came to dictate their social mobility under colonial rule, and the multifaceted longings for self-determination that led to the longest and bloodiest liberation wars in Africa. Readings include scholarly essays, primary sources, literary works (poetry and short stories), photographs, music, and films.\u00a01 Credit. Session B: July 3 \u2013 August 4. Tuition: $4850. Technology Fee: $85.", + "description": "Online Course. The peculiar nature of Portugal as a colonial power produced a very distinct history in the five Portuguese-speaking African countries, namely Angola, Guin\u00e9-Bissau (Guinea-Bissau), Mo\u00e7ambique (Mozambique), and the Atlantic islands of Cabo-Verde (Cape Verde) and S\u00e3o Tom\u00e9 e Pr\u00edncipe. After a brief examination of Portuguese colonialism in the context of European expansion, the course explores the distinct history of Lusophone Africa in the long twentieth-century through the lens of culture and politics. Students consider Lusophone Africa as a study unit, dissecting its disparate societies, cultures, and political trajectories within the general context of Africa. Core themes include military conquest, colonial rule, race/lusotropicalism, culture and identity politics, nationalism, and liberation struggle. Course explores the multiple ways (cultural and political) that Africans responded to Portugal\u2019s encroachment, how they navigated the color bar that came to dictate their social mobility under colonial rule, and the multifaceted longings for self-determination that led to the longest and bloodiest liberation wars in Africa. Readings include scholarly essays, primary sources, literary works (poetry and short stories), photographs, music, and films.\u00a01 Credit. Session B: July 3 \u2013 August 4. Tuition: $4850. Technology Fee: $85.", "short_title": "Culture and Politics in Lusop...", "title": "Culture and Politics in Lusophone Africa", "school": "SU", @@ -13531,14 +17451,42 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87903\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87903/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", - "requirements": "N\/A", + "requirements": "N/A", "description": "In-person Course. Who are we? How did we get here? Could we be different? And who is the \u2018we\u2019 here, anyway? Is there such thing as \"human nature\"? These questions animate the human sciences. This seminar traces the arc of the human sciences since 1945, when tracing the scientific contours of the human became politically urgent. Each session in the course traces a different object of the human sciences\u2014e.g. sex, race, primates, blood, brains\u2014as they became salient for researchers seeking to get at the root of the human species. The course draws together developments in fields like primatology, cognitive science, genomics, human biology, demography, psychiatry, and neuroscience to understand the stakes behind claims to human nature and dreams of reengineering or liberation. Both of these impulses\u2014to understand and to transform\u2014are still with us. Technologies like CRISPR-Cas9, transcranial magnetic stimulation, hormone therapy, and nanomedicine today promise to remake our biology in the direction of our choosing. \u00a0The course draws on a range of material, including primary sources, historiography, and current events to develop a critical and informed view of the various scientific messages about human beings that surround us today. \u00a01 Credit. Session B: July 3 \u2013 August 4. Tuition: $4850.", "short_title": "Being Human since 1945", "title": "Being Human since 1945", @@ -13598,15 +17546,22 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87904\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87904/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", "requirements": "", - "description": "Course cancelled. This course is part of a Yale Summer Session Program Abroad and cannot be taken independent of the program. Interested students must apply to Yale Study Abroad by February 7th. For more detailed information about the program, including a description of the courses, housing, excursions, and budget, visit: https:\/\/studyabroad.yale.edu\/programs\/yale-summer-session-johannesburg-visual", + "description": "Course cancelled. This course is part of a Yale Summer Session Program Abroad and cannot be taken independent of the program. Interested students must apply to Yale Study Abroad by February 7th. For more detailed information about the program, including a description of the courses, housing, excursions, and budget, visit: https://studyabroad.yale.edu/programs/yale-summer-session-johannesburg-visual", "short_title": "Visual Approaches to Global H...", "title": "Visual Approaches to Global Health", "school": "SU", @@ -13642,7 +17597,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -13703,15 +17686,22 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87770\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87770/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", "requirements": "", - "description": "This course is part of a Yale Summer Session Program Abroad and cannot be taken independent of the program. Interested students must apply to Yale Study Abroad by February 7th. For more detailed information about the program, including a description of the courses, housing, excursions, and budget, visit: https:\/\/studyabroad.yale.edu\/programs\/yale-summer-session-paris-belle-epoque", + "description": "This course is part of a Yale Summer Session Program Abroad and cannot be taken independent of the program. Interested students must apply to Yale Study Abroad by February 7th. For more detailed information about the program, including a description of the courses, housing, excursions, and budget, visit: https://studyabroad.yale.edu/programs/yale-summer-session-paris-belle-epoque", "short_title": "Belle \u00c9poque France", "title": "Belle \u00c9poque France", "school": "SU", @@ -13768,15 +17758,22 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87766\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87766/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", "requirements": "", - "description": "This course is part of a Yale Summer Session Program Abroad and cannot be taken independent of the program. Interested students must apply to Yale Study Abroad by February 7th. For more detailed information about the program, including a description of the courses, housing, excursions, and budget, visit: https:\/\/studyabroad.yale.edu\/programs\/yale-summer-session-paris-age", + "description": "This course is part of a Yale Summer Session Program Abroad and cannot be taken independent of the program. Interested students must apply to Yale Study Abroad by February 7th. For more detailed information about the program, including a description of the courses, housing, excursions, and budget, visit: https://studyabroad.yale.edu/programs/yale-summer-session-paris-age", "short_title": "Age of Cathedrals", "title": "Age of Cathedrals", "school": "SU", @@ -13833,14 +17830,21 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87898\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87898/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", - "requirements": "N\/A", + "requirements": "N/A", "description": "In-person Course. Who are we? How did we get here? Could we be different? And who is the \u2018we\u2019 here, anyway? Is there such thing as \"human nature\"? These questions animate the human sciences. This seminar traces the arc of the human sciences since 1945, when tracing the scientific contours of the human became politically urgent. Each session in the course traces a different object of the human sciences\u2014e.g. sex, race, primates, blood, brains\u2014as they became salient for researchers seeking to get at the root of the human species. The course draws together developments in fields like primatology, cognitive science, genomics, human biology, demography, psychiatry, and neuroscience to understand the stakes behind claims to human nature and dreams of reengineering or liberation. Both of these impulses\u2014to understand and to transform\u2014are still with us. Technologies like CRISPR-Cas9, transcranial magnetic stimulation, hormone therapy, and nanomedicine today promise to remake our biology in the direction of our choosing. \u00a0The course draws on a range of material, including primary sources, historiography, and current events to develop a critical and informed view of the various scientific messages about human beings that surround us today. \u00a01 Credit. Session B: July 3 \u2013 August 4. Tuition: $4850.", "short_title": "Being Human since 1945", "title": "Being Human since 1945", @@ -13900,10 +17904,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87904\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87904/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -13967,10 +17978,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87759\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87759/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -14032,10 +18050,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87774\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87774/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -14099,15 +18145,22 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87761\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87761/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", "requirements": "", - "description": "Course closed to further enrollment. In-person Course. As an introductory class to the main principles and topics of legal thought and practice, the class will use works of literature, theatre, film and music to acquaint with the field of law. Students will learn in what ways culture shapes the law, and, in turn, how law governs and shapes culture. Topics include being a person on Instagram and Facebook; Black Lives Matter, the US Constitution; Freedom of Speech, \"Calling out\" and \"Cancel Culture\"; Interpretation and Authority; Law, Ethics and Religion; Islam, Totalitarianism, The Trump Administration; Criminal Law, Agency and Multiple Personality Disorder; Sampling and Copyright, Hip Hop\/Rap in the courtroom.\u00a01 Credit. Session B: July 3 \u2013 August 4. Tuition: $4850.", + "description": "Course closed to further enrollment. In-person Course. As an introductory class to the main principles and topics of legal thought and practice, the class will use works of literature, theatre, film and music to acquaint with the field of law. Students will learn in what ways culture shapes the law, and, in turn, how law governs and shapes culture. Topics include being a person on Instagram and Facebook; Black Lives Matter, the US Constitution; Freedom of Speech, \"Calling out\" and \"Cancel Culture\"; Interpretation and Authority; Law, Ethics and Religion; Islam, Totalitarianism, The Trump Administration; Criminal Law, Agency and Multiple Personality Disorder; Sampling and Copyright, Hip Hop/Rap in the courtroom.\u00a01 Credit. Session B: July 3 \u2013 August 4. Tuition: $4850.", "short_title": "What is Law?", "title": "What is Law?", "school": "SU", @@ -14174,10 +18227,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87899\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87899/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -14240,15 +18300,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87739\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87739/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", "requirements": "", - "description": "This course is part of a Yale Summer Session Program Abroad and cannot be taken independent of the program. Interested students must apply to Yale Study Abroad by February 7th. For more detailed information about the program, including a description of the courses, housing, excursions, and budget, visit: https:\/\/studyabroad.yale.edu\/programs\/yale-summer-session-paris-belle-epoque", + "description": "This course is part of a Yale Summer Session Program Abroad and cannot be taken independent of the program. Interested students must apply to Yale Study Abroad by February 7th. For more detailed information about the program, including a description of the courses, housing, excursions, and budget, visit: https://studyabroad.yale.edu/programs/yale-summer-session-paris-belle-epoque", "short_title": "Belle \u00c9poque France", "title": "Belle \u00c9poque France", "school": "SU", @@ -14305,10 +18393,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87766\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87766/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -14371,10 +18466,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87905\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87905/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -14435,15 +18537,22 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87771\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87771/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", "requirements": "", - "description": "This course is part of a Yale Summer Session Program Abroad and cannot be taken independent of the program. Interested students must apply to Yale Study Abroad by February 7th. For more detailed information about the program, including a description of the courses, housing, excursions, and budget, visit: https:\/\/studyabroad.yale.edu\/programs\/yale-summer-session-paris-age", + "description": "This course is part of a Yale Summer Session Program Abroad and cannot be taken independent of the program. Interested students must apply to Yale Study Abroad by February 7th. For more detailed information about the program, including a description of the courses, housing, excursions, and budget, visit: https://studyabroad.yale.edu/programs/yale-summer-session-paris-age", "short_title": "Age of Cathedrals", "title": "Age of Cathedrals", "school": "SU", @@ -14500,10 +18609,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87898\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87898/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -14574,15 +18690,22 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87922\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87922/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", "requirements": "", - "description": "In-person or remote course. May be arranged for currently enrolled Yale students only. Must be taken pass\/fail. May not be taken as part of a senior project or be deemed to be constituent of the senior requirement. Independent Research in the Summer consists of special projects set up by the student in an area of particular interest with the help of a faculty adviser and the director of undergraduate studies, intended to enable the student to cover material not otherwise offered by the department. The course may be used for research, design projects, or for directed reading, but in all cases a term paper, written report on the research project, or its equivalent is normally required as determined by the faculty advisor and DUS. The student must meet regularly with the faculty adviser. Students wishing to enroll must complete the regular application for Yale Summer Session. In addition, students must supply a 1- to 2- paragraph project description of the research to be undertaken, written in collaboration with the faculty advisor, including the proposed starting and ending dates. The student must also submit written permission of (1) the faculty advisor, (2) the Director of Summer Sciences for students in STEM, or the Dean of Summer Session for students in the Humanities or Social Sciences, and (3) the director of undergraduate studies of the applicant's major department. All approvals may be submitted via email to summer.session@yale.edu with IDRS S300 and the student\u2019s name in the subject line. Students taking Independent Research in the Summer for 1 credit should expect to spend approximately 35 hours a week on their research for five weeks (either Session A or B); for 2 credits students should expect to spend approximately 35 hours a week on their research for ten weeks (both Session A and B). Students may receive academic credit only if they are not being paid for doing research, but they may work for credit in one 5-week period and for pay in the other. Upon completion of the course, the faculty advisor must submit a substantive report that both describes the nature of the independent research and evaluates the student\u2019s performance in it.\u00a0 The report must include the grade (P\/F). These reports should be shared with the student and the director of undergraduate studies in the department or program in which the research is based and kept in the office of the student\u2019s residential college dean. Deadlines for submitting all materials:\u00a0 Session A by April 25 and Session B by May 30. YSS applications are due: Session A by May 3 and Session B by June 7. 1 Credit. Tuition: $4850. Offered in Session A: May 29 \u2013 June 30 (CRN 30374) and Session B: July 3 \u2013 August 4 (CRN 30375).", + "description": "In-person or remote course. May be arranged for currently enrolled Yale students only. Must be taken pass/fail. May not be taken as part of a senior project or be deemed to be constituent of the senior requirement. Independent Research in the Summer consists of special projects set up by the student in an area of particular interest with the help of a faculty adviser and the director of undergraduate studies, intended to enable the student to cover material not otherwise offered by the department. The course may be used for research, design projects, or for directed reading, but in all cases a term paper, written report on the research project, or its equivalent is normally required as determined by the faculty advisor and DUS. The student must meet regularly with the faculty adviser. Students wishing to enroll must complete the regular application for Yale Summer Session. In addition, students must supply a 1- to 2- paragraph project description of the research to be undertaken, written in collaboration with the faculty advisor, including the proposed starting and ending dates. The student must also submit written permission of (1) the faculty advisor, (2) the Director of Summer Sciences for students in STEM, or the Dean of Summer Session for students in the Humanities or Social Sciences, and (3) the director of undergraduate studies of the applicant's major department. All approvals may be submitted via email to summer.session@yale.edu with IDRS S300 and the student\u2019s name in the subject line. Students taking Independent Research in the Summer for 1 credit should expect to spend approximately 35 hours a week on their research for five weeks (either Session A or B); for 2 credits students should expect to spend approximately 35 hours a week on their research for ten weeks (both Session A and B). Students may receive academic credit only if they are not being paid for doing research, but they may work for credit in one 5-week period and for pay in the other. Upon completion of the course, the faculty advisor must submit a substantive report that both describes the nature of the independent research and evaluates the student\u2019s performance in it.\u00a0 The report must include the grade (P/F). These reports should be shared with the student and the director of undergraduate studies in the department or program in which the research is based and kept in the office of the student\u2019s residential college dean. Deadlines for submitting all materials:\u00a0 Session A by April 25 and Session B by May 30. YSS applications are due: Session A by May 3 and Session B by June 7. 1 Credit. Tuition: $4850. Offered in Session A: May 29 \u2013 June 30 (CRN 30374) and Session B: July 3 \u2013 August 4 (CRN 30375).", "short_title": "Independent Research in the S...", "title": "Independent Research in the Summer", "school": "SU", @@ -14616,12 +18739,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202302", - "requirements": "", - "description": "In-person or remote course. May be arranged for currently enrolled Yale students only. Must be taken pass\/fail. May not be taken as part of a senior project or be deemed to be constituent of the senior requirement. Independent Research in the Summer consists of special projects set up by the student in an area of particular interest with the help of a faculty adviser and the director of undergraduate studies, intended to enable the student to cover material not otherwise offered by the department. The course may be used for research, design projects, or for directed reading, but in all cases a term paper, written report on the research project, or its equivalent is normally required as determined by the faculty advisor and DUS. The student must meet regularly with the faculty adviser. Students wishing to enroll must complete the regular application for Yale Summer Session. In addition, students must supply a 1- to 2- paragraph project description of the research to be undertaken, written in collaboration with the faculty advisor, including the proposed starting and ending dates. The student must also submit written permission of (1) the faculty advisor, (2) the Director of Summer Sciences for students in STEM, or the Dean of Summer Session for students in the Humanities or Social Sciences, and (3) the director of undergraduate studies of the applicant's major department. All approvals may be submitted via email to summer.session@yale.edu with IDRS S300 and the student\u2019s name in the subject line. Students taking Independent Research in the Summer for 1 credit should expect to spend approximately 35 hours a week on their research for five weeks (either Session A or B); for 2 credits students should expect to spend approximately 35 hours a week on their research for ten weeks (both Session A and B). Students may receive academic credit only if they are not being paid for doing research, but they may work for credit in one 5-week period and for pay in the other. Upon completion of the course, the faculty advisor must submit a substantive report that both describes the nature of the independent research and evaluates the student\u2019s performance in it.\u00a0 The report must include the grade (P\/F). These reports should be shared with the student and the director of undergraduate studies in the department or program in which the research is based and kept in the office of the student\u2019s residential college dean. Deadlines for submitting all materials:\u00a0 Session A by April 25 and Session B by May 30. YSS applications are due: Session A by May 3 and Session B by June 7. 1 Credit. Tuition: $4850. Offered in Session A: May 29 \u2013 June 30 (CRN 30374) and Session B: July 3 \u2013 August 4 (CRN 30375).", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } + }, + { + "season_code": "202302", + "requirements": "", + "description": "In-person or remote course. May be arranged for currently enrolled Yale students only. Must be taken pass/fail. May not be taken as part of a senior project or be deemed to be constituent of the senior requirement. Independent Research in the Summer consists of special projects set up by the student in an area of particular interest with the help of a faculty adviser and the director of undergraduate studies, intended to enable the student to cover material not otherwise offered by the department. The course may be used for research, design projects, or for directed reading, but in all cases a term paper, written report on the research project, or its equivalent is normally required as determined by the faculty advisor and DUS. The student must meet regularly with the faculty adviser. Students wishing to enroll must complete the regular application for Yale Summer Session. In addition, students must supply a 1- to 2- paragraph project description of the research to be undertaken, written in collaboration with the faculty advisor, including the proposed starting and ending dates. The student must also submit written permission of (1) the faculty advisor, (2) the Director of Summer Sciences for students in STEM, or the Dean of Summer Session for students in the Humanities or Social Sciences, and (3) the director of undergraduate studies of the applicant's major department. All approvals may be submitted via email to summer.session@yale.edu with IDRS S300 and the student\u2019s name in the subject line. Students taking Independent Research in the Summer for 1 credit should expect to spend approximately 35 hours a week on their research for five weeks (either Session A or B); for 2 credits students should expect to spend approximately 35 hours a week on their research for ten weeks (both Session A and B). Students may receive academic credit only if they are not being paid for doing research, but they may work for credit in one 5-week period and for pay in the other. Upon completion of the course, the faculty advisor must submit a substantive report that both describes the nature of the independent research and evaluates the student\u2019s performance in it.\u00a0 The report must include the grade (P/F). These reports should be shared with the student and the director of undergraduate studies in the department or program in which the research is based and kept in the office of the student\u2019s residential college dean. Deadlines for submitting all materials:\u00a0 Session A by April 25 and Session B by May 30. YSS applications are due: Session A by May 3 and Session B by June 7. 1 Credit. Tuition: $4850. Offered in Session A: May 29 \u2013 June 30 (CRN 30374) and Session B: July 3 \u2013 August 4 (CRN 30375).", "short_title": "Independent Research in the S...", "title": "Independent Research in the Summer", "school": "SU", @@ -14655,12 +18806,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202302", - "requirements": "", - "description": "This course is part of a Yale Summer Session Program Abroad and cannot be taken independent of the program. Interested students must apply to Yale Study Abroad by February 7th. For more detailed information about the program, including a description of the courses, housing, excursions, and budget, visit: https:\/\/studyabroad.yale.edu\/programs\/yale-summer-session-siena-elementary", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } + }, + { + "season_code": "202302", + "requirements": "", + "description": "This course is part of a Yale Summer Session Program Abroad and cannot be taken independent of the program. Interested students must apply to Yale Study Abroad by February 7th. For more detailed information about the program, including a description of the courses, housing, excursions, and budget, visit: https://studyabroad.yale.edu/programs/yale-summer-session-siena-elementary", "short_title": "Elementary Italian I", "title": "Elementary Italian I", "school": "SU", @@ -14741,15 +18920,22 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87812\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87812/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", "requirements": "", - "description": "This course is part of a Yale Summer Session Program Abroad and cannot be taken independent of the program. Interested students must apply to Yale Study Abroad by February 7th. For more detailed information about the program, including a description of the courses, housing, excursions, and budget, visit: https:\/\/studyabroad.yale.edu\/programs\/yale-summer-session-siena-elementary", + "description": "This course is part of a Yale Summer Session Program Abroad and cannot be taken independent of the program. Interested students must apply to Yale Study Abroad by February 7th. For more detailed information about the program, including a description of the courses, housing, excursions, and budget, visit: https://studyabroad.yale.edu/programs/yale-summer-session-siena-elementary", "short_title": "Elementary Italian I", "title": "Elementary Italian I", "school": "SU", @@ -14830,15 +19016,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87813\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87813/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", "requirements": "", - "description": "This course is part of a Yale Summer Session Program Abroad and cannot be taken independent of the program. Interested students must apply to Yale Study Abroad by February 7th. For more detailed information about the program, including a description of the courses, housing, excursions, and budget, visit: https:\/\/studyabroad.yale.edu\/programs\/yale-summer-session-siena-elementary", + "description": "This course is part of a Yale Summer Session Program Abroad and cannot be taken independent of the program. Interested students must apply to Yale Study Abroad by February 7th. For more detailed information about the program, including a description of the courses, housing, excursions, and budget, visit: https://studyabroad.yale.edu/programs/yale-summer-session-siena-elementary", "short_title": "Elementary Italian II", "title": "Elementary Italian II", "school": "SU", @@ -14922,12 +19136,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202302", - "requirements": "", - "description": "This course is part of a Yale Summer Session Program Abroad and cannot be taken independent of the program. Interested students must apply to Yale Study Abroad by February 7th. For more detailed information about the program, including a description of the courses, housing, excursions, and budget, visit: https:\/\/studyabroad.yale.edu\/programs\/yale-summer-session-siena-elementary", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } + }, + { + "season_code": "202302", + "requirements": "", + "description": "This course is part of a Yale Summer Session Program Abroad and cannot be taken independent of the program. Interested students must apply to Yale Study Abroad by February 7th. For more detailed information about the program, including a description of the courses, housing, excursions, and budget, visit: https://studyabroad.yale.edu/programs/yale-summer-session-siena-elementary", "short_title": "Elementary Italian II", "title": "Elementary Italian II", "school": "SU", @@ -15011,12 +19253,19 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", "requirements": "", - "description": "This course is part of a Yale Summer Session Program Abroad and cannot be taken independent of the program. Interested students must apply to Yale Study Abroad by February 7th. For more detailed information about the program, including a description of the courses, housing, excursions, and budget, visit: https:\/\/studyabroad.yale.edu\/programs\/yale-summer-session-siena-intermediate", + "description": "This course is part of a Yale Summer Session Program Abroad and cannot be taken independent of the program. Interested students must apply to Yale Study Abroad by February 7th. For more detailed information about the program, including a description of the courses, housing, excursions, and budget, visit: https://studyabroad.yale.edu/programs/yale-summer-session-siena-intermediate", "short_title": "Intermediate Italian I", "title": "Intermediate Italian I", "school": "SU", @@ -15097,15 +19346,22 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87816\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87816/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", "requirements": "", - "description": "This course is part of a Yale Summer Session Program Abroad and cannot be taken independent of the program. Interested students must apply to Yale Study Abroad by February 7th. For more detailed information about the program, including a description of the courses, housing, excursions, and budget, visit: https:\/\/studyabroad.yale.edu\/programs\/yale-summer-session-siena-intermediate", + "description": "This course is part of a Yale Summer Session Program Abroad and cannot be taken independent of the program. Interested students must apply to Yale Study Abroad by February 7th. For more detailed information about the program, including a description of the courses, housing, excursions, and budget, visit: https://studyabroad.yale.edu/programs/yale-summer-session-siena-intermediate", "short_title": "Intermediate Italian II", "title": "Intermediate Italian II", "school": "SU", @@ -15189,12 +19445,19 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", "requirements": "", - "description": "This course is part of a Yale Summer Session Program Abroad and cannot be taken independent of the program. Interested students must apply to Yale Study Abroad by February 7th. For more detailed information about the program, including a description of the courses, housing, excursions, and budget, visit: https:\/\/studyabroad.yale.edu\/programs\/yale-summer-session-siena-elementary", + "description": "This course is part of a Yale Summer Session Program Abroad and cannot be taken independent of the program. Interested students must apply to Yale Study Abroad by February 7th. For more detailed information about the program, including a description of the courses, housing, excursions, and budget, visit: https://studyabroad.yale.edu/programs/yale-summer-session-siena-elementary", "short_title": "History, Culture, and Film in...", "title": "History, Culture, and Film in Tuscany", "school": "SU", @@ -15270,15 +19533,22 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87818\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87818/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", "requirements": "", - "description": "This course is part of a Yale Summer Session Program Abroad and cannot be taken independent of the program. Interested students must apply to Yale Study Abroad by February 7th. For more detailed information about the program, including a description of the courses, housing, excursions, and budget, visit: https:\/\/studyabroad.yale.edu\/programs\/yale-summer-session-siena-elementary", + "description": "This course is part of a Yale Summer Session Program Abroad and cannot be taken independent of the program. Interested students must apply to Yale Study Abroad by February 7th. For more detailed information about the program, including a description of the courses, housing, excursions, and budget, visit: https://studyabroad.yale.edu/programs/yale-summer-session-siena-elementary", "short_title": "History, Culture, and Film in...", "title": "History, Culture, and Film in Tuscany", "school": "SU", @@ -15356,15 +19626,22 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87819\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87819/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", "requirements": "", - "description": "This course is part of a Yale Summer Session Program Abroad and cannot be taken independent of the program. Interested students must apply to Yale Study Abroad by February 7th. For more detailed information about the program, including a description of the courses, housing, excursions, and budget, visit: https:\/\/studyabroad.yale.edu\/programs\/yale-summer-session-siena-intermediate", + "description": "This course is part of a Yale Summer Session Program Abroad and cannot be taken independent of the program. Interested students must apply to Yale Study Abroad by February 7th. For more detailed information about the program, including a description of the courses, housing, excursions, and budget, visit: https://studyabroad.yale.edu/programs/yale-summer-session-siena-intermediate", "short_title": "Tuscany between Past and Pres...", "title": "Tuscany between Past and Present: A Literary, Historical, Cultural, and Geographical Journey", "school": "SU", @@ -15442,10 +19719,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87820\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87820/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -15487,14 +19771,42 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87907\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87907/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", - "requirements": "Eligibility for L5 Spanish. AP with score of 5\/ IB score of 7, Placement in L5 through Spanish Department placement exam or by having completed L4.", + "requirements": "Eligibility for L5 Spanish. AP with score of 5/ IB score of 7, Placement in L5 through Spanish Department placement exam or by having completed L4.", "description": "Course cancelled. In-person Course. Five-week, intensive language course designed for students who previously have had at least two years of university-level Spanish or the equivalent. The two main objectives of this program are to increase students' written, oral, reading, and listening proficiency towards the Advanced-mid level of Spanish [1] and to develop a global and cultural competence [2] through the study of Peruvian art. Prerequisite: SPAN 140 (Intermediate Spanish II) or equivalent proficiency. 1 credit. Session A: May 29 - June 30. Tuition $4850.", "short_title": "Advanced Spanish: Language an...", "title": "Advanced Spanish: Language and Culture through Art", @@ -15531,15 +19843,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88970\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88970/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", "requirements": "", - "description": "This course is part of a Yale Summer Session Program Abroad and cannot be taken independent of the program. Interested students must apply to Yale Study Abroad by February 7th. For more detailed information about the program, including a description of the courses, housing, excursions, and budget, visit: https:\/\/studyabroad.yale.edu\/programs\/yale-summer-session-quito-advanced", + "description": "This course is part of a Yale Summer Session Program Abroad and cannot be taken independent of the program. Interested students must apply to Yale Study Abroad by February 7th. For more detailed information about the program, including a description of the courses, housing, excursions, and budget, visit: https://studyabroad.yale.edu/programs/yale-summer-session-quito-advanced", "short_title": "Advanced Spanish Language and...", "title": "Advanced Spanish Language and Andean Culture", "school": "SU", @@ -15604,10 +19944,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87937\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87937/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -15692,10 +20039,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87773\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87773/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -15780,10 +20134,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87908\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87908/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -15845,10 +20206,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87774\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87774/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -15912,10 +20301,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87761\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87761/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -15978,15 +20374,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87739\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87739/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", "requirements": "", - "description": "This course is part of a Yale Summer Session Program Abroad and cannot be taken independent of the program. Interested students must apply to Yale Study Abroad by February 7th. For more detailed information about the program, including a description of the courses, housing, excursions, and budget, visit: https:\/\/studyabroad.yale.edu\/programs\/yale-summer-session-paris-age", + "description": "This course is part of a Yale Summer Session Program Abroad and cannot be taken independent of the program. Interested students must apply to Yale Study Abroad by February 7th. For more detailed information about the program, including a description of the courses, housing, excursions, and budget, visit: https://studyabroad.yale.edu/programs/yale-summer-session-paris-age", "short_title": "Age of Cathedrals", "title": "Age of Cathedrals", "school": "SU", @@ -16043,15 +20467,22 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87898\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87898/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", "requirements": "", - "description": "This course is part of a Yale Summer Session Program Abroad and cannot be taken independent of the program. Interested students must apply to Yale Study Abroad by February 7th. For more detailed information about the program, including a description of the courses, housing, excursions, and budget, visit: https:\/\/studyabroad.yale.edu\/programs\/yale-summer-session-paris-belle-epoque", + "description": "This course is part of a Yale Summer Session Program Abroad and cannot be taken independent of the program. Interested students must apply to Yale Study Abroad by February 7th. For more detailed information about the program, including a description of the courses, housing, excursions, and budget, visit: https://studyabroad.yale.edu/programs/yale-summer-session-paris-belle-epoque", "short_title": "Belle \u00c9poque France", "title": "Belle \u00c9poque France", "school": "SU", @@ -16108,10 +20539,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87766\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87766/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -16174,15 +20612,22 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87905\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87905/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", "requirements": "", - "description": "Course closed to further enrollment. In-person Course. As an introductory class to the main principles and topics of legal thought and practice, the class will use works of literature, theatre, film and music to acquaint with the field of law. Students will learn in what ways culture shapes the law, and, in turn, how law governs and shapes culture. Topics include being a person on Instagram and Facebook; Black Lives Matter, the US Constitution; Freedom of Speech, \"Calling out\" and \"Cancel Culture\"; Interpretation and Authority; Law, Ethics and Religion; Islam, Totalitarianism, The Trump Administration; Criminal Law, Agency and Multiple Personality Disorder; Sampling and Copyright, Hip Hop\/Rap in the courtroom.\u00a01 Credit. Session B: July 3 \u2013 August 4. Tuition: $4850.", + "description": "Course closed to further enrollment. In-person Course. As an introductory class to the main principles and topics of legal thought and practice, the class will use works of literature, theatre, film and music to acquaint with the field of law. Students will learn in what ways culture shapes the law, and, in turn, how law governs and shapes culture. Topics include being a person on Instagram and Facebook; Black Lives Matter, the US Constitution; Freedom of Speech, \"Calling out\" and \"Cancel Culture\"; Interpretation and Authority; Law, Ethics and Religion; Islam, Totalitarianism, The Trump Administration; Criminal Law, Agency and Multiple Personality Disorder; Sampling and Copyright, Hip Hop/Rap in the courtroom.\u00a01 Credit. Session B: July 3 \u2013 August 4. Tuition: $4850.", "short_title": "What is Law?", "title": "What is Law?", "school": "SU", @@ -16249,10 +20694,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87899\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87899/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -16313,10 +20765,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91529\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91529/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -16385,10 +20844,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87909\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87909/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -16457,10 +20923,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87910\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87910/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -16521,10 +21015,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87775\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87775/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -16596,7 +21118,14 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -16681,10 +21210,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87776\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87776/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -16753,10 +21289,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87912\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87912/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -16827,10 +21370,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87914\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87914/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -16915,10 +21465,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87913\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87913/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -16989,10 +21567,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87914\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87914/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -17061,11 +21646,18 @@ "rp_attr": "", "classnotes": "", "final_exam": "", - "course_home_url": "https:\/\/yale.instructure.com\/courses\/87777", + "course_home_url": "https://yale.instructure.com/courses/87777", "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -17111,7 +21703,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -17174,10 +21794,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87915\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87915/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -17217,10 +21844,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87916\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87916/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -17281,10 +21936,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87778\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87778/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -17345,10 +22028,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87779\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87779/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -17408,11 +22098,18 @@ "rp_attr": "", "classnotes": "", "final_exam": "", - "course_home_url": "https:\/\/yale.instructure.com\/courses\/87780", + "course_home_url": "https://yale.instructure.com/courses/87780", "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -17474,10 +22171,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87917\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87917/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -17541,10 +22245,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87760\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87760/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -17613,11 +22324,18 @@ "rp_attr": "", "classnotes": "", "final_exam": "", - "course_home_url": "https:\/\/yale.instructure.com\/courses\/87777", + "course_home_url": "https://yale.instructure.com/courses/87777", "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -17685,10 +22403,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88016\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88016/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -17740,10 +22486,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88017\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88017/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -17782,7 +22556,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -17821,7 +22623,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -17860,7 +22690,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -17912,10 +22770,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88018\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88018/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -17951,10 +22837,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87824\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87824/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -17993,7 +22907,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -18033,10 +22975,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88019\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88019/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -18088,10 +23058,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88020\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88020/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -18131,10 +23129,38 @@ "classnotes": "Course Section is restricted to students in the Online MSN PMHNP Program ONLY.", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89175\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89175/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -18177,15 +23203,43 @@ "classnotes": "Course Section is restricted to students in the Online MSN PMHNP Program ONLY.", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89176\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false - }, - { - "season_code": "202302", - "requirements": "", - "description": "This elective study is initiated by the student and negotiated with faculty. The purpose is to allow in-depth pursuit of individual areas of interest and\/or practice. A written proposal must be submitted and signed by the student, the faculty member(s), and the appropriate specialty director. Credit varies according to the terms of the contract.", + "syllabus_url": "https://yale.instructure.com/courses/89176/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } + }, + { + "season_code": "202302", + "requirements": "", + "description": "This elective study is initiated by the student and negotiated with faculty. The purpose is to allow in-depth pursuit of individual areas of interest and/or practice. A written proposal must be submitted and signed by the student, the faculty member(s), and the appropriate specialty director. Credit varies according to the terms of the contract.", "short_title": "Master\u2019s Independent Study: P...", "title": "Master\u2019s Independent Study: Primary Care II Clinical", "school": "NR", @@ -18223,7 +23277,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -18270,12 +23352,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", "requirements": "Prerequisite (or concurrent with): NURS 7050.", - "description": "This clinical course builds upon the experiences gained in NURS 7050 and provides students further opportunity to develop advanced nursing skills, clinical judgment, and evidence-based patient management strategies necessary to manage common acute and chronic health care conditions. Students participate in designated weekly primary care clinical experiences arranged by faculty. In addition, students meet weekly for a ninety-minute clinical conference that is held concurrently with clinical practice. Clinical seminar discussions for family nurse practitioner students focus on family-centered care and providing care for patients across the lifespan. Clinical seminar discussions for all other students focus on providing patient-centered care for patients from adolescence to senescence. Clinical conference serves as a forum for students to present and discuss cases and explore issues encountered in clinical practice. Required of all adult\/gerontology primary care and family nurse practitioner students in the final year. Eight to sixteen hours of clinical practice per week (fifteen weeks), and one and one-half hours of clinical conference per week.", + "description": "This clinical course builds upon the experiences gained in NURS 7050 and provides students further opportunity to develop advanced nursing skills, clinical judgment, and evidence-based patient management strategies necessary to manage common acute and chronic health care conditions. Students participate in designated weekly primary care clinical experiences arranged by faculty. In addition, students meet weekly for a ninety-minute clinical conference that is held concurrently with clinical practice. Clinical seminar discussions for family nurse practitioner students focus on family-centered care and providing care for patients across the lifespan. Clinical seminar discussions for all other students focus on providing patient-centered care for patients from adolescence to senescence. Clinical conference serves as a forum for students to present and discuss cases and explore issues encountered in clinical practice. Required of all adult/gerontology primary care and family nurse practitioner students in the final year. Eight to sixteen hours of clinical practice per week (fifteen weeks), and one and one-half hours of clinical conference per week.", "short_title": "Primary Care III Clinical Pra...", "title": "Primary Care III Clinical Practice", "school": "NR", @@ -18316,7 +23426,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -18361,7 +23499,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -18402,12 +23568,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", "requirements": "Prerequisites: all YSN core courses and all nurse-midwifery core courses.", - "description": "This course is designed to help students assimilate all areas of midwifery practice. It integrates student provision of full-scope care with appropriate clinical supervision, academic support, and clinical support including site preceptors, faculty, school, and library resources. Students continue to refine their ability to provide high-quality, evidence-based, and culturally sensitive care that is safe and professionally accountable. Students are expected to build on the knowledge and skills they have gained in their previous courses at YSN. Required of all nurse-midwifery students in the final year. For nurse-midwifery and nurse-midwifery\/women\u2019s health nurse practitioner students, this course must be taken concurrently with NURS 7330, and students must successfully complete all requirements of both courses in order to graduate.", + "description": "This course is designed to help students assimilate all areas of midwifery practice. It integrates student provision of full-scope care with appropriate clinical supervision, academic support, and clinical support including site preceptors, faculty, school, and library resources. Students continue to refine their ability to provide high-quality, evidence-based, and culturally sensitive care that is safe and professionally accountable. Students are expected to build on the knowledge and skills they have gained in their previous courses at YSN. Required of all nurse-midwifery students in the final year. For nurse-midwifery and nurse-midwifery/women\u2019s health nurse practitioner students, this course must be taken concurrently with NURS 7330, and students must successfully complete all requirements of both courses in order to graduate.", "short_title": "Integration of Midwifery Care", "title": "Integration of Midwifery Care", "school": "NR", @@ -18447,12 +23641,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", "requirements": "Prerequisite: successful completion of all courses required for the first, second, and third terms of the specialty.", - "description": "This course concentrates on the application of physiologic, developmental, psychosocial, and cultural theories to advanced clinical decision-making, focusing on reproductive and developmental health issues for women from adolescence to senescence. Required of all nurse-midwifery and women\u2019s health nurse practitioner students in the final year of specialization. For nurse-midwifery and nurse-midwifery\/women\u2019s health nurse practitioner students, this course must be taken concurrently with NURS 7320, and students must successfully complete all requirements of both courses in order to graduate.", + "description": "This course concentrates on the application of physiologic, developmental, psychosocial, and cultural theories to advanced clinical decision-making, focusing on reproductive and developmental health issues for women from adolescence to senescence. Required of all nurse-midwifery and women\u2019s health nurse practitioner students in the final year of specialization. For nurse-midwifery and nurse-midwifery/women\u2019s health nurse practitioner students, this course must be taken concurrently with NURS 7320, and students must successfully complete all requirements of both courses in order to graduate.", "short_title": "Integration of Women\u2019s Health...", "title": "Integration of Women\u2019s Health Care", "school": "NR", @@ -18492,7 +23714,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -18537,7 +23787,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -18574,7 +23852,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -18620,10 +23926,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90766\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90766/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -18666,15 +24000,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87833\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87833/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", "requirements": "", - "description": "This course provides a critical overview of the historical and contemporary health and health disparities research, relevant literature, and policies as essential context for understanding how to achieve health equity. The social and biological determinants of health and health disparities are also critically examined in light of political, economic, cultural, legal, and ethical issues. Selected health and health disparities population-based data are examined as a foundation for explicating how subpopulations experience disparate health across the lifespan. Students examine how past and current policies (state, federal, tribal), politics, population-based data findings, and selected frameworks enhance or act as barriers to achieving health equity with diverse populations, systems, and\/or communities. Additionally, students design an organizational policy plan for achieving population health and health equity within a health system, organization, and\/or community-based health system. Required of all D.N.P. students in the second year.", + "description": "This course provides a critical overview of the historical and contemporary health and health disparities research, relevant literature, and policies as essential context for understanding how to achieve health equity. The social and biological determinants of health and health disparities are also critically examined in light of political, economic, cultural, legal, and ethical issues. Selected health and health disparities population-based data are examined as a foundation for explicating how subpopulations experience disparate health across the lifespan. Students examine how past and current policies (state, federal, tribal), politics, population-based data findings, and selected frameworks enhance or act as barriers to achieving health equity with diverse populations, systems, and/or communities. Additionally, students design an organizational policy plan for achieving population health and health equity within a health system, organization, and/or community-based health system. Required of all D.N.P. students in the second year.", "short_title": "Achieving Population Health E...", "title": "Achieving Population Health Equity", "school": "NR", @@ -18712,10 +24074,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87834\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87834/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -18752,7 +24142,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -18789,7 +24207,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -18826,14 +24272,42 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", "requirements": "", "description": "", - "short_title": "Rotation: Pediatric Hem\/Onco", - "title": "Rotation: Pediatric Hem\/Onco", + "short_title": "Rotation: Pediatric Hem/Onco", + "title": "Rotation: Pediatric Hem/Onco", "school": "PA", "credits": 0.0, "extra_info": "ACTIVE", @@ -18863,7 +24337,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -18900,7 +24402,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -18937,7 +24467,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -18974,7 +24532,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -19011,7 +24597,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -19048,7 +24662,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -19085,7 +24727,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -19122,7 +24792,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -19159,7 +24857,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -19196,7 +24922,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -19233,7 +24987,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -19270,7 +25052,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -19307,7 +25117,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -19344,7 +25182,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -19381,7 +25247,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -19418,7 +25312,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -19455,7 +25377,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -19495,10 +25445,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87989\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87989/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -19535,7 +25513,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -19572,7 +25578,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -19609,7 +25643,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -19646,7 +25708,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -19683,14 +25773,42 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", "requirements": "", "description": "", - "short_title": "Rotation: OB \/ Gyn", - "title": "Rotation: OB \/ Gyn", + "short_title": "Rotation: OB / Gyn", + "title": "Rotation: OB / Gyn", "school": "PA", "credits": 0.0, "extra_info": "ACTIVE", @@ -19720,7 +25838,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -19757,7 +25903,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -19794,7 +25968,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -19831,7 +26033,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -19868,7 +26098,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -19905,7 +26163,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -19942,7 +26228,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -19979,7 +26293,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -20016,7 +26358,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -20053,7 +26423,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -20090,7 +26488,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -20127,7 +26553,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -20164,7 +26618,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -20201,7 +26683,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -20238,7 +26748,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -20275,7 +26813,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -20336,10 +26902,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87918\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87918/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -20400,10 +26973,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87781\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87781/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -20466,10 +27067,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87782\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87782/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -20532,10 +27140,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87919\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87919/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -20596,10 +27211,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87784\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87784/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -20660,10 +27303,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87920\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87920/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -20705,7 +27376,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -20776,10 +27475,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87921\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87921/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -20850,10 +27556,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87922\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87922/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -20916,10 +27629,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87727\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87727/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -20982,10 +27702,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87785\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87785/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -21053,15 +27780,22 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87861\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87861/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", "requirements": "", - "description": "In-person Course.\u00a0A large variety of laboratory experiments, coordinated with the lecture course PHYS S180, and designed to illustrate the physical principles developed in the lectures. For college students and beyond only. Enrollment limited to 20.\u00a01\/2 Credit. Session A: May 29 \u2013 June 30. Tuition: $2425.", + "description": "In-person Course.\u00a0A large variety of laboratory experiments, coordinated with the lecture course PHYS S180, and designed to illustrate the physical principles developed in the lectures. For college students and beyond only. Enrollment limited to 20.\u00a01/2 Credit. Session A: May 29 \u2013 June 30. Tuition: $2425.", "short_title": "General Physics Laboratory", "title": "General Physics Laboratory", "school": "SU", @@ -21117,15 +27851,22 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87786\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87786/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", "requirements": "", - "description": "In-person Course.\u00a0A large variety of laboratory experiments, coordinated with the lecture course PHYS S181, and designed to illustrate the physical principles developed in the lectures. For college students and beyond only.\u00a0Enrollment limited to 20 students. 1\/2 Credit. Session B: July 3 \u2013 August 4. Tuition: $2425.", + "description": "In-person Course.\u00a0A large variety of laboratory experiments, coordinated with the lecture course PHYS S181, and designed to illustrate the physical principles developed in the lectures. For college students and beyond only.\u00a0Enrollment limited to 20 students. 1/2 Credit. Session B: July 3 \u2013 August 4. Tuition: $2425.", "short_title": "General Physics Laboratory", "title": "General Physics Laboratory", "school": "SU", @@ -21181,10 +27922,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87923\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87923/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -21275,10 +28023,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87787\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87787/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -21369,10 +28124,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87924\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87924/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -21433,10 +28216,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87788\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87788/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -21505,10 +28316,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87925\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87925/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -21570,10 +28409,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87789\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87789/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -21614,12 +28481,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202302", - "requirements": "", - "description": "Course closed to further enrollment. Online Course. This is a survey course on the United States Congress. We will explore such questions as: What are the causes and effects of political polarization? How would term limits affect policy outcomes? What is the effect of money on Congress? Where do\/should constituents fit in in all this? How does Congress interact with the President and the bureaucracy? How does one run for office? Why is Congress\u2019s approval rating lower than any other institution in the country? The course is divided into two parts. In Part I, we discuss the theoretical and historical foundations of legislative government the United States. In Part II, we move beyond theories of legislating and on to the way Congress operates in practice. Enrollment limited to 20 students.\u00a01 Credit. Session B: July 3 \u2013 August 4. Tuition: $4850. Technology Fee: $85.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } + }, + { + "season_code": "202302", + "requirements": "", + "description": "Course closed to further enrollment. Online Course. This is a survey course on the United States Congress. We will explore such questions as: What are the causes and effects of political polarization? How would term limits affect policy outcomes? What is the effect of money on Congress? Where do/should constituents fit in in all this? How does Congress interact with the President and the bureaucracy? How does one run for office? Why is Congress\u2019s approval rating lower than any other institution in the country? The course is divided into two parts. In Part I, we discuss the theoretical and historical foundations of legislative government the United States. In Part II, we move beyond theories of legislating and on to the way Congress operates in practice. Enrollment limited to 20 students.\u00a01 Credit. Session B: July 3 \u2013 August 4. Tuition: $4850. Technology Fee: $85.", "short_title": "The United States Congress", "title": "The United States Congress", "school": "SU", @@ -21675,10 +28570,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87926\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87926/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -21740,10 +28642,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87757\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87757/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -21784,7 +28693,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -21846,10 +28783,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87768\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87768/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -21920,10 +28864,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87922\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87922/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -21994,10 +28945,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87921\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87921/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -22066,15 +29024,22 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87791\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87791/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", "requirements": "", - "description": "This course is part of a Yale Summer Session Program Abroad and cannot be taken independent of the program. Interested students must apply to Yale Study Abroad by February 7th. For more detailed information about the program, including a description of the courses, housing, excursions, and budget, visit: https:\/\/studyabroad.yale.edu\/programs\/yale-summer-session-new-haven-paraty", + "description": "This course is part of a Yale Summer Session Program Abroad and cannot be taken independent of the program. Interested students must apply to Yale Study Abroad by February 7th. For more detailed information about the program, including a description of the courses, housing, excursions, and budget, visit: https://studyabroad.yale.edu/programs/yale-summer-session-new-haven-paraty", "short_title": "Elementary Portuguese for Rom...", "title": "Elementary Portuguese for Romance Language Speakers I", "school": "SU", @@ -22152,15 +29117,22 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87835\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87835/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", "requirements": "", - "description": "This course is part of a Yale Summer Session Program Abroad and cannot be taken independent of the program. Interested students must apply to Yale Study Abroad by February 7th. For more detailed information about the program, including a description of the courses, housing, excursions, and budget, visit: https:\/\/studyabroad.yale.edu\/programs\/yale-summer-session-new-haven-paraty", + "description": "This course is part of a Yale Summer Session Program Abroad and cannot be taken independent of the program. Interested students must apply to Yale Study Abroad by February 7th. For more detailed information about the program, including a description of the courses, housing, excursions, and budget, visit: https://studyabroad.yale.edu/programs/yale-summer-session-new-haven-paraty", "short_title": "Elementary Portuguese for Rom...", "title": "Elementary Portuguese for Romance Language Speakers II", "school": "SU", @@ -22241,12 +29213,19 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", "requirements": "", - "description": "This course is part of a Yale Summer Session Program Abroad and cannot be taken independent of the program. Interested students must apply to Yale Study Abroad by February 7th. For more detailed information about the program, including a description of the courses, housing, excursions, and budget, visit: https:\/\/studyabroad.yale.edu\/programs\/yale-summer-session-new-haven-paraty", + "description": "This course is part of a Yale Summer Session Program Abroad and cannot be taken independent of the program. Interested students must apply to Yale Study Abroad by February 7th. For more detailed information about the program, including a description of the courses, housing, excursions, and budget, visit: https://studyabroad.yale.edu/programs/yale-summer-session-new-haven-paraty", "short_title": "Introduction to Brazil", "title": "Introduction to Brazil", "school": "SU", @@ -22308,10 +29287,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87837\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87837/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -22372,10 +29358,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87928\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87928/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -22416,7 +29409,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -22479,10 +29500,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87782\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87782/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -22545,10 +29573,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87919\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87919/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -22610,10 +29645,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87793\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87793/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -22675,10 +29717,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87929\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87929/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -22740,10 +29789,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87930\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87930/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -22804,11 +29860,18 @@ "rp_attr": "", "classnotes": "", "final_exam": "", - "course_home_url": "https:\/\/yale.instructure.com\/courses\/87931", + "course_home_url": "https://yale.instructure.com/courses/87931", "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -22845,12 +29908,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202302", - "requirements": "", - "description": "This class offers a comprehensive introduction to Biblical Hebrew in six weeks. Daily sessions focus on Hebrew grammar, beginning with the alphabet and concluding with the translation of a number of texts from the Old Testament\/Hebrew Bible. This course assumes no prior knowledge of Hebrew or any other foreign language. Completion of REL 3608 earns six hours of credit, equivalent to two full-term courses. Upon completion of the course, students will be able to read prose passages and some poetry passages from the Hebrew Bible with the help of a lexicon. This course prepares students to take Intermediate Hebrew (REL 574), as well as a range of Hebrew Exegesis courses offered at YDS during the academic year.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } + }, + { + "season_code": "202302", + "requirements": "", + "description": "This class offers a comprehensive introduction to Biblical Hebrew in six weeks. Daily sessions focus on Hebrew grammar, beginning with the alphabet and concluding with the translation of a number of texts from the Old Testament/Hebrew Bible. This course assumes no prior knowledge of Hebrew or any other foreign language. Completion of REL 3608 earns six hours of credit, equivalent to two full-term courses. Upon completion of the course, students will be able to read prose passages and some poetry passages from the Hebrew Bible with the help of a lexicon. This course prepares students to take Intermediate Hebrew (REL 574), as well as a range of Hebrew Exegesis courses offered at YDS during the academic year.", "short_title": "Elementary Biblical Hebrew: S...", "title": "Elementary Biblical Hebrew: Summer Intensive", "school": "DI", @@ -22879,10 +29970,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89170\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89170/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -22919,7 +30038,7 @@ "9:00", "13:00", "SDQ BUSH-S100 - Sterling Divinity Quadrangle BUSH-S100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ], "Tuesday": [ @@ -22927,7 +30046,7 @@ "9:00", "13:00", "SDQ BUSH-S100 - Sterling Divinity Quadrangle BUSH-S100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ], "Wednesday": [ @@ -22935,7 +30054,7 @@ "9:00", "13:00", "SDQ BUSH-S100 - Sterling Divinity Quadrangle BUSH-S100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ], "Thursday": [ @@ -22943,7 +30062,7 @@ "9:00", "13:00", "SDQ BUSH-S100 - Sterling Divinity Quadrangle BUSH-S100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ], "Friday": [ @@ -22951,7 +30070,7 @@ "9:00", "13:00", "SDQ BUSH-S100 - Sterling Divinity Quadrangle BUSH-S100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -22966,12 +30085,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", "requirements": "Prerequisite: REL 3990", - "description": "The Summer Intensive Internship with Practicum engages students in a ten-week intensive period of work either in ministry-related sites or with non-profit, justice-seeking agencies. Ministry-related sites may include churches, summer camps, and other institutions. Students who choose to do non-profit\/justice related internships may work in areas related to human rights and flourishing, culture and the arts, youth empowerment, environmental justice and others.\u00a0This course has an online component, offering students the option of fulfilling their internship in locations other than New Haven or its surrounding communities. The internship combines significant work engagement with supervisor mentorship, while students learn alongside a group of peers and participate in weekly online meetings with a trained practicum leader. The Summer Intensive Internship with Practicum carries six course credits. To receive credit for the course, students must work 370 hours at their internship and complete thirty hours of practicum, which includes a two-day orientation that takes place on campus in May. The internship comes with a stipend. Placements are determined in the spring term.", + "description": "The Summer Intensive Internship with Practicum engages students in a ten-week intensive period of work either in ministry-related sites or with non-profit, justice-seeking agencies. Ministry-related sites may include churches, summer camps, and other institutions. Students who choose to do non-profit/justice related internships may work in areas related to human rights and flourishing, culture and the arts, youth empowerment, environmental justice and others.\u00a0This course has an online component, offering students the option of fulfilling their internship in locations other than New Haven or its surrounding communities. The internship combines significant work engagement with supervisor mentorship, while students learn alongside a group of peers and participate in weekly online meetings with a trained practicum leader. The Summer Intensive Internship with Practicum carries six course credits. To receive credit for the course, students must work 370 hours at their internship and complete thirty hours of practicum, which includes a two-day orientation that takes place on campus in May. The internship comes with a stipend. Placements are determined in the spring term.", "short_title": "Summer Intensive Internship: ...", "title": "Summer Intensive Internship: SummrIntensivInternshp-NonProf", "school": "DI", @@ -23009,15 +30156,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90120\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90120/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", "requirements": "Prerequisite: REL 3990", - "description": "The Summer Intensive Internship with Practicum engages students in a ten-week intensive period of work either in ministry-related sites or with non-profit, justice-seeking agencies. Ministry-related sites may include churches, summer camps, and other institutions. Students who choose to do non-profit\/justice related internships may work in areas related to human rights and flourishing, culture and the arts, youth empowerment, environmental justice and others.\u00a0This course has an online component, offering students the option of fulfilling their internship in locations other than New Haven or its surrounding communities. The internship combines significant work engagement with supervisor mentorship, while students learn alongside a group of peers and participate in weekly online meetings with a trained practicum leader. The Summer Intensive Internship with Practicum carries six course credits. To receive credit for the course, students must work 370 hours at their internship and complete thirty hours of practicum, which includes a two-day orientation that takes place on campus in May. The internship comes with a stipend. Placements are determined in the spring term.", + "description": "The Summer Intensive Internship with Practicum engages students in a ten-week intensive period of work either in ministry-related sites or with non-profit, justice-seeking agencies. Ministry-related sites may include churches, summer camps, and other institutions. Students who choose to do non-profit/justice related internships may work in areas related to human rights and flourishing, culture and the arts, youth empowerment, environmental justice and others.\u00a0This course has an online component, offering students the option of fulfilling their internship in locations other than New Haven or its surrounding communities. The internship combines significant work engagement with supervisor mentorship, while students learn alongside a group of peers and participate in weekly online meetings with a trained practicum leader. The Summer Intensive Internship with Practicum carries six course credits. To receive credit for the course, students must work 370 hours at their internship and complete thirty hours of practicum, which includes a two-day orientation that takes place on campus in May. The internship comes with a stipend. Placements are determined in the spring term.", "short_title": "Summer Intensive Internship: ...", "title": "Summer Intensive Internship: SummrIntensvInternship-Minstry", "school": "DI", @@ -23055,10 +30230,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90119\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90119/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -23101,10 +30304,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90203\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90203/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -23147,15 +30378,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90202\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90202/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", "requirements": "", - "description": "This course is part of a Yale Summer Session Program Abroad and cannot be taken independent of the program. Interested students must apply to Yale Study Abroad by February 7th. For more detailed information about the program, including a description of the courses, housing, excursions, and budget, visit: https:\/\/studyabroad.yale.edu\/programs\/yale-summer-session-new-haven-batumi-0", + "description": "This course is part of a Yale Summer Session Program Abroad and cannot be taken independent of the program. Interested students must apply to Yale Study Abroad by February 7th. For more detailed information about the program, including a description of the courses, housing, excursions, and budget, visit: https://studyabroad.yale.edu/programs/yale-summer-session-new-haven-batumi-0", "short_title": "Second-Year Russian I", "title": "Second-Year Russian I", "school": "SU", @@ -23228,15 +30487,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87838\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87838/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", "requirements": "", - "description": "This course is part of a Yale Summer Session Program Abroad and cannot be taken independent of the program. Interested students must apply to Yale Study Abroad by February 7th. For more detailed information about the program, including a description of the courses, housing, excursions, and budget, visit: https:\/\/studyabroad.yale.edu\/programs\/yale-summer-session-new-haven-batumi-0", + "description": "This course is part of a Yale Summer Session Program Abroad and cannot be taken independent of the program. Interested students must apply to Yale Study Abroad by February 7th. For more detailed information about the program, including a description of the courses, housing, excursions, and budget, visit: https://studyabroad.yale.edu/programs/yale-summer-session-new-haven-batumi-0", "short_title": "Second-Year Russian II", "title": "Second-Year Russian II", "school": "SU", @@ -23306,15 +30593,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87839\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87839/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", "requirements": "", - "description": "This course is part of a Yale Summer Session Program Abroad and cannot be taken independent of the program. Interested students must apply to Yale Study Abroad by February 7th. For more detailed information about the program, including a description of the courses, housing, excursions, and budget, visit: https:\/\/studyabroad.yale.edu\/programs\/yale-summer-session-new-haven-batumi-1", + "description": "This course is part of a Yale Summer Session Program Abroad and cannot be taken independent of the program. Interested students must apply to Yale Study Abroad by February 7th. For more detailed information about the program, including a description of the courses, housing, excursions, and budget, visit: https://studyabroad.yale.edu/programs/yale-summer-session-new-haven-batumi-1", "short_title": "Third-Year Russian I", "title": "Third-Year Russian I", "school": "SU", @@ -23387,15 +30702,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87840\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87840/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", "requirements": "", - "description": "This course is part of a Yale Summer Session Program Abroad and cannot be taken independent of the program. Interested students must apply to Yale Study Abroad by February 7th. For more detailed information about the program, including a description of the courses, housing, excursions, and budget, visit: https:\/\/studyabroad.yale.edu\/programs\/yale-summer-session-new-haven-batumi-1", + "description": "This course is part of a Yale Summer Session Program Abroad and cannot be taken independent of the program. Interested students must apply to Yale Study Abroad by February 7th. For more detailed information about the program, including a description of the courses, housing, excursions, and budget, visit: https://studyabroad.yale.edu/programs/yale-summer-session-new-haven-batumi-1", "short_title": "Third-Year Russian II", "title": "Third-Year Russian II", "school": "SU", @@ -23471,12 +30814,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", "requirements": "Prerequisite: RUSS 142 or 151.", - "description": "This course is part of a Yale Summer Session Program Abroad and cannot be taken independent of the program. Interested students must apply to Yale Study Abroad by February 7th. For more detailed information about the program, including a description of the courses, housing, excursions, and budget, visit: https:\/\/studyabroad.yale.edu\/programs\/yale-summer-session-new-haven-batumi", + "description": "This course is part of a Yale Summer Session Program Abroad and cannot be taken independent of the program. Interested students must apply to Yale Study Abroad by February 7th. For more detailed information about the program, including a description of the courses, housing, excursions, and budget, visit: https://studyabroad.yale.edu/programs/yale-summer-session-new-haven-batumi", "short_title": "Advanced Russian Conversation...", "title": "Advanced Russian Conversation through Contemporary Media", "school": "SU", @@ -23546,15 +30917,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87842\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87842/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", "requirements": "", - "description": "This course is part of a Yale Summer Session Program Abroad and cannot be taken independent of the program. Interested students must apply to Yale Study Abroad by February 7th. For more detailed information about the program, including a description of the courses, housing, excursions, and budget, visit the Study Abroad website. This course is part of the following Russian programs: 1.) https:\/\/studyabroad.yale.edu\/programs\/yale-summer-session-new-haven-batumi 2.) https:\/\/studyabroad.yale.edu\/programs\/yale-summer-session-new-haven-batumi-0 3.) https:\/\/studyabroad.yale.edu\/programs\/yale-summer-session-new-haven-batumi-1", + "description": "This course is part of a Yale Summer Session Program Abroad and cannot be taken independent of the program. Interested students must apply to Yale Study Abroad by February 7th. For more detailed information about the program, including a description of the courses, housing, excursions, and budget, visit the Study Abroad website. This course is part of the following Russian programs: 1.) https://studyabroad.yale.edu/programs/yale-summer-session-new-haven-batumi 2.) https://studyabroad.yale.edu/programs/yale-summer-session-new-haven-batumi-0 3.) https://studyabroad.yale.edu/programs/yale-summer-session-new-haven-batumi-1", "short_title": "Georgia, Russia, and the Cauc...", "title": "Georgia, Russia, and the Caucasus in Literature, Cinema, and Visual Arts", "school": "SU", @@ -23627,10 +31026,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87845\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87845/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -23699,10 +31105,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87794\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87794/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -23771,10 +31184,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87932\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87932/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -23811,7 +31231,7 @@ "10:45", "12:45", "CO47 106A - 47 College Street (CLP) 106A", - "https:\/\/map.yale.edu\/?id=1910#!m\/559997" + "https://map.yale.edu/?id=1910#!m/559997" ] ], "Thursday": [ @@ -23819,7 +31239,7 @@ "10:45", "12:45", "CO47 106A - 47 College Street (CLP) 106A", - "https:\/\/map.yale.edu\/?id=1910#!m\/559997" + "https://map.yale.edu/?id=1910#!m/559997" ] ] }, @@ -23831,10 +31251,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88005\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88005/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -23919,10 +31346,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87846\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87846/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -23991,15 +31425,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87933\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87933/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", - "requirements": "No pre-requisites are required to take this class. But, the class is intended for students interested in topics of racism and race from a sociological perspective. Students should be comfortable reading and respectfully discussing contentious and sensitive social\/political topics.", - "description": "In-person Course. Mixed\/multi-identities have been part of U.S. history since the nation\u2019s birth, but the year 2020 marked only the third time in U.S. history that Americans were able to check more than one racial\/ethnic category in the census. Today multiracial people in the US and other nations are gaining more visibility and recognition. With this visibility, however, comes inevitable scrutiny and ambivalence as evidenced by debates over the identity choices of high-profile multiracial people and the broader social and political implications of a growing social group. This course introduces students to contemporary discussions, debates and narratives surrounding multiracial people. By reading and discussing scholarly, literary, editorial, and visual texts, students critically examine the spaces multiracial people occupy in the U.S. and in other global contexts and explore the identity politics and perspectives that mark these experiences. Students also explore the growing narratives and spaces being created to build communities and express multi-subjectivities. Through class discussions, writing reflections, and a final project, students are encouraged to explore their own identities and subjectivities as they relate to larger discourses, current events, and narratives around race and intersecting identities.\u00a01 Credit. Session A: May 29 \u2013 June 30. Tuition: $4850.", + "requirements": "No pre-requisites are required to take this class. But, the class is intended for students interested in topics of racism and race from a sociological perspective. Students should be comfortable reading and respectfully discussing contentious and sensitive social/political topics.", + "description": "In-person Course. Mixed/multi-identities have been part of U.S. history since the nation\u2019s birth, but the year 2020 marked only the third time in U.S. history that Americans were able to check more than one racial/ethnic category in the census. Today multiracial people in the US and other nations are gaining more visibility and recognition. With this visibility, however, comes inevitable scrutiny and ambivalence as evidenced by debates over the identity choices of high-profile multiracial people and the broader social and political implications of a growing social group. This course introduces students to contemporary discussions, debates and narratives surrounding multiracial people. By reading and discussing scholarly, literary, editorial, and visual texts, students critically examine the spaces multiracial people occupy in the U.S. and in other global contexts and explore the identity politics and perspectives that mark these experiences. Students also explore the growing narratives and spaces being created to build communities and express multi-subjectivities. Through class discussions, writing reflections, and a final project, students are encouraged to explore their own identities and subjectivities as they relate to larger discourses, current events, and narratives around race and intersecting identities.\u00a01 Credit. Session A: May 29 \u2013 June 30. Tuition: $4850.", "short_title": "Multiracial Identities, Exper...", "title": "Multiracial Identities, Experiences, and Politics", "school": "SU", @@ -24063,15 +31525,22 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87795\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87795/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", "requirements": "", - "description": "This course is part of a Yale Summer Session Program Abroad and cannot be taken independent of the program. Interested students must apply to Yale Study Abroad by February 7th. For more detailed information about the program, including a description of the courses, housing, excursions, and budget, visit: https:\/\/studyabroad.yale.edu\/programs\/yale-summer-session-dubrovnik-history", + "description": "This course is part of a Yale Summer Session Program Abroad and cannot be taken independent of the program. Interested students must apply to Yale Study Abroad by February 7th. For more detailed information about the program, including a description of the courses, housing, excursions, and budget, visit: https://studyabroad.yale.edu/programs/yale-summer-session-dubrovnik-history", "short_title": "Culture of Southeastern Europe", "title": "Culture of Southeastern Europe", "school": "SU", @@ -24150,10 +31619,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87934\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87934/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -24217,15 +31693,22 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87935\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87935/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", "requirements": "", - "description": "This course is part of a Yale Summer Session Program Abroad and cannot be taken independent of the program. Interested students must apply to Yale Study Abroad by February 7th. For more detailed information about the program, including a description of the courses, housing, excursions, and budget, visit the Study Abroad website. This course is part of the following Spanish programs: 1.) https:\/\/studyabroad.yale.edu\/programs\/yale-summer-session-new-haven-quito 2.) https:\/\/studyabroad.yale.edu\/programs\/yale-summer-session-new-haven-bilbao", + "description": "This course is part of a Yale Summer Session Program Abroad and cannot be taken independent of the program. Interested students must apply to Yale Study Abroad by February 7th. For more detailed information about the program, including a description of the courses, housing, excursions, and budget, visit the Study Abroad website. This course is part of the following Spanish programs: 1.) https://studyabroad.yale.edu/programs/yale-summer-session-new-haven-quito 2.) https://studyabroad.yale.edu/programs/yale-summer-session-new-haven-bilbao", "short_title": "Intermediate Spanish I", "title": "Intermediate Spanish I", "school": "SU", @@ -24282,15 +31765,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87847\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87847/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", "requirements": "", - "description": "This course is part of a Yale Summer Session Program Abroad and cannot be taken independent of the program. Interested students must apply to Yale Study Abroad by February 7th. For more detailed information about the program, including a description of the courses, housing, excursions, and budget, visit the Study Abroad website. This course is part of the following Spanish programs: 1.) https:\/\/studyabroad.yale.edu\/programs\/yale-summer-session-new-haven-quito 2.) https:\/\/studyabroad.yale.edu\/programs\/yale-summer-session-new-haven-bilbao", + "description": "This course is part of a Yale Summer Session Program Abroad and cannot be taken independent of the program. Interested students must apply to Yale Study Abroad by February 7th. For more detailed information about the program, including a description of the courses, housing, excursions, and budget, visit the Study Abroad website. This course is part of the following Spanish programs: 1.) https://studyabroad.yale.edu/programs/yale-summer-session-new-haven-quito 2.) https://studyabroad.yale.edu/programs/yale-summer-session-new-haven-bilbao", "short_title": "Intermediate Spanish I", "title": "Intermediate Spanish I", "school": "SU", @@ -24371,15 +31882,22 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87848\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87848/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", "requirements": "", - "description": "This course is part of a Yale Summer Session Program Abroad and cannot be taken independent of the program. Interested students must apply to Yale Study Abroad by February 7th. For more detailed information about the program, including a description of the courses, housing, excursions, and budget, visit the Study Abroad website. This course is part of the following Spanish programs: 1.) https:\/\/studyabroad.yale.edu\/programs\/yale-summer-session-new-haven-quito 2.) https:\/\/studyabroad.yale.edu\/programs\/yale-summer-session-new-haven-bilbao", + "description": "This course is part of a Yale Summer Session Program Abroad and cannot be taken independent of the program. Interested students must apply to Yale Study Abroad by February 7th. For more detailed information about the program, including a description of the courses, housing, excursions, and budget, visit the Study Abroad website. This course is part of the following Spanish programs: 1.) https://studyabroad.yale.edu/programs/yale-summer-session-new-haven-quito 2.) https://studyabroad.yale.edu/programs/yale-summer-session-new-haven-bilbao", "short_title": "Intermediate Spanish II", "title": "Intermediate Spanish II", "school": "SU", @@ -24436,15 +31954,22 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87849\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87849/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", "requirements": "", - "description": "This course is part of a Yale Summer Session Program Abroad and cannot be taken independent of the program. Interested students must apply to Yale Study Abroad by February 7th. For more detailed information about the program, including a description of the courses, housing, excursions, and budget, visit the Study Abroad website. This course is part of the following Spanish programs: 1.) https:\/\/studyabroad.yale.edu\/programs\/yale-summer-session-new-haven-quito 2.) https:\/\/studyabroad.yale.edu\/programs\/yale-summer-session-new-haven-bilbao", + "description": "This course is part of a Yale Summer Session Program Abroad and cannot be taken independent of the program. Interested students must apply to Yale Study Abroad by February 7th. For more detailed information about the program, including a description of the courses, housing, excursions, and budget, visit the Study Abroad website. This course is part of the following Spanish programs: 1.) https://studyabroad.yale.edu/programs/yale-summer-session-new-haven-quito 2.) https://studyabroad.yale.edu/programs/yale-summer-session-new-haven-bilbao", "short_title": "Intermediate Spanish II", "title": "Intermediate Spanish II", "school": "SU", @@ -24525,15 +32050,22 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87850\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87850/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", "requirements": "SPAN 120 (Elementary Spanish II), SPAN 125 (Intensive Elementary Spanish), or placement exam into L3.", - "description": "This course is part of a Yale Summer Session Program Abroad and cannot be taken independent of the program. Interested students must apply to Yale Study Abroad by February 7th. For more detailed information about the program, including a description of the courses, housing, excursions, and budget, visit:\u00a0https:\/\/studyabroad.yale.edu\/programs\/yale-summer-session-new-haven-bilbao", + "description": "This course is part of a Yale Summer Session Program Abroad and cannot be taken independent of the program. Interested students must apply to Yale Study Abroad by February 7th. For more detailed information about the program, including a description of the courses, housing, excursions, and budget, visit:\u00a0https://studyabroad.yale.edu/programs/yale-summer-session-new-haven-bilbao", "short_title": "Spain, 1936 to the Present: H...", "title": "Spain, 1936 to the Present: History, Literature and Culture", "school": "SU", @@ -24614,15 +32146,22 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87994\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87994/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", "requirements": "", - "description": "This course is part of a Yale Summer Session Program Abroad and cannot be taken independent of the program. Interested students must apply to Yale Study Abroad by February 7th. For more detailed information about the program, including a description of the courses, housing, excursions, and budget, visit: https:\/\/studyabroad.yale.edu\/programs\/yale-summer-session-new-haven-quito", + "description": "This course is part of a Yale Summer Session Program Abroad and cannot be taken independent of the program. Interested students must apply to Yale Study Abroad by February 7th. For more detailed information about the program, including a description of the courses, housing, excursions, and budget, visit: https://studyabroad.yale.edu/programs/yale-summer-session-new-haven-quito", "short_title": "Ecuador from Pre-Columbian Ti...", "title": "Ecuador from Pre-Columbian Times to Present", "school": "SU", @@ -24671,14 +32210,42 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87851\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87851/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", - "requirements": "Eligibility for L5 Spanish. AP with score of 5\/ IB score of 7, Placement in L5 through Spanish Department placement exam or by having completed L4.", + "requirements": "Eligibility for L5 Spanish. AP with score of 5/ IB score of 7, Placement in L5 through Spanish Department placement exam or by having completed L4.", "description": "Course cancelled. In-person Course. Five-week, intensive language course designed for students who previously have had at least two years of university-level Spanish or the equivalent. The two main objectives of this program are to increase students' written, oral, reading, and listening proficiency towards the Advanced-mid level of Spanish [1] and to develop a global and cultural competence [2] through the study of Peruvian art. Prerequisite: SPAN 140 (Intermediate Spanish II) or equivalent proficiency. 1 credit. Session A: May 29 - June 30. Tuition $4850.", "short_title": "Advanced Spanish: Language an...", "title": "Advanced Spanish: Language and Culture through Art", @@ -24715,15 +32282,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88970\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88970/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", "requirements": "", - "description": "This course is part of a Yale Summer Session Program Abroad and cannot be taken independent of the program. Interested students must apply to Yale Study Abroad by February 7th. For more detailed information about the program, including a description of the courses, housing, excursions, and budget, visit: https:\/\/studyabroad.yale.edu\/programs\/yale-summer-session-quito-advanced", + "description": "This course is part of a Yale Summer Session Program Abroad and cannot be taken independent of the program. Interested students must apply to Yale Study Abroad by February 7th. For more detailed information about the program, including a description of the courses, housing, excursions, and budget, visit: https://studyabroad.yale.edu/programs/yale-summer-session-quito-advanced", "short_title": "Advanced Spanish Language and...", "title": "Advanced Spanish Language and Andean Culture", "school": "SU", @@ -24788,15 +32383,22 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87937\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87937/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", "requirements": "", - "description": "This course is part of a Yale Summer Session Program Abroad and cannot be taken independent of the program. Interested students must apply to Yale Study Abroad by February 7th. For more detailed information about the program, including a description of the courses, housing, excursions, and budget, visit: https:\/\/studyabroad.yale.edu\/programs\/yale-summer-session-valencia-language", + "description": "This course is part of a Yale Summer Session Program Abroad and cannot be taken independent of the program. Interested students must apply to Yale Study Abroad by February 7th. For more detailed information about the program, including a description of the courses, housing, excursions, and budget, visit: https://studyabroad.yale.edu/programs/yale-summer-session-valencia-language", "short_title": "Language, Culture, and Societ...", "title": "Language, Culture, and Society of Spain", "school": "SU", @@ -24860,10 +32462,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87796\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87796/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -24905,10 +32514,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89341\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89341/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -24970,7 +32586,14 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -25032,7 +32655,14 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -25118,7 +32748,14 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -25204,7 +32841,14 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -25290,7 +32934,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -25376,7 +33048,14 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -25462,7 +33141,14 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -25548,7 +33234,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -25607,10 +33321,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87853\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87853/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -25669,10 +33390,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87853\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87853/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -25758,7 +33486,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -25844,7 +33600,14 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -25930,7 +33693,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -26016,7 +33807,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -26102,7 +33921,14 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -26188,7 +34014,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -26271,10 +34125,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87940\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87940/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -26333,10 +34215,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91470\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91470/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -26395,10 +34284,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91471\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91471/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -26457,10 +34353,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91472\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91472/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -26522,7 +34425,14 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -26584,7 +34494,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -26646,7 +34584,14 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -26705,10 +34650,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91476\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91476/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -26791,10 +34764,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87943\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87943/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -26853,10 +34833,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87944\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87944/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -26918,10 +34926,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87797\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87797/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -26962,7 +34977,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -27003,7 +35046,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -27064,10 +35135,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87945\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87945/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -27106,10 +35184,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87723\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87723/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -27172,10 +35278,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87800\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87800/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -27216,10 +35350,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87721\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87721/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202302", @@ -27283,9 +35445,16 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/87935\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/87935/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } } ] \ No newline at end of file diff --git a/data/parsed_courses/202303.json b/data/parsed_courses/202303.json index 5ab0207ac..f3924a0e1 100644 --- a/data/parsed_courses/202303.json +++ b/data/parsed_courses/202303.json @@ -34,7 +34,7 @@ "8:45", "10:00", "EVANS 2400 - Edward P Evans Hall 2400", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Wednesday": [ @@ -42,7 +42,7 @@ "8:45", "10:00", "EVANS 2400 - Edward P Evans Hall 2400", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -56,10 +56,205 @@ "classnotes": "", "final_exam": "Tuesday, December 19, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88798\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88798/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988521337509155, + 0.9982950091362, + 0.9987607002258301, + 0.9916025996208191, + 0.9988526105880737, + 0.9985268115997314, + 0.9891825318336487, + 0.9852684140205383, + 0.9985748529434204, + 0.9974040389060974, + 0.9987358450889587, + 0.998619556427002, + 0.9974363446235657, + 0.9985672235488892, + 0.9983121156692505, + 0.9970085024833679, + 0.9980058073997498, + 0.986108124256134, + 0.9988349080085754, + 0.9855807423591614, + 0.6485040783882141 + ], + "sentiment_counts": { + "POSITIVE": 17, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.8095238095238095, + "NEGATIVE": 0.19047619047619047 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8095238095238095 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988573789596558, + 0.9967768788337708, + 0.9989132881164551, + 0.99950110912323, + 0.9988099336624146, + 0.99887615442276, + 0.9979941844940186, + 0.9957534074783325, + 0.998046875, + 0.9988765120506287, + 0.9847446084022522, + 0.9981663823127747, + 0.998862624168396, + 0.9986948370933533, + 0.9980679154396057, + 0.9950116872787476, + 0.997870922088623, + 0.998635470867157, + 0.9965617060661316, + 0.9994896650314331, + 0.9971575736999512 + ], + "sentiment_counts": { + "POSITIVE": 16, + "NEGATIVE": 5 + }, + "sentiment_distribution": { + "POSITIVE": 0.7619047619047619, + "NEGATIVE": 0.23809523809523808 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7619047619047619 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988769888877869, + 0.9981922507286072, + 0.9988715052604675, + 0.9987890124320984, + 0.9986370205879211, + 0.9988834261894226, + 0.991612434387207, + 0.9987937211990356, + 0.9994843006134033, + 0.9988429546356201, + 0.9988679885864258, + 0.9988669157028198, + 0.9984045624732971, + 0.9995112419128418, + 0.9988641738891602, + 0.9988721013069153, + 0.9978985786437988, + 0.9982542395591736, + 0.9987384676933289, + 0.9988841414451599, + 0.9981108903884888, + 0.995262622833252 + ], + "sentiment_counts": { + "POSITIVE": 16, + "NEGATIVE": 6 + }, + "sentiment_distribution": { + "POSITIVE": 0.7272727272727273, + "NEGATIVE": 0.2727272727272727 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7272727272727273 + ] + }, + "final_label": "POSITIVE", + "final_count": 49, + "final_proportion": 0.765625, + "final_counts": { + "POSITIVE": 49, + "NEGATIVE": 15 + }, + "final_distribution": { + "POSITIVE": 0.765625, + "NEGATIVE": 0.234375 + } + } }, { "season_code": "202303", @@ -98,7 +293,7 @@ "13:00", "14:15", "HQ C64 - Humanities Quadrangle C64", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -106,7 +301,7 @@ "13:00", "14:15", "HQ C64 - Humanities Quadrangle C64", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -125,10 +320,99 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88042\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88042/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986317753791809, + 0.9989140033721924, + 0.998847484588623, + 0.9986741542816162 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9981642365455627, + 0.9988633394241333, + 0.997173547744751 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9936844706535339, + 0.9989320635795593, + 0.9989342093467712, + 0.9989030361175537 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 0.9090909090909091, + "final_counts": { + "POSITIVE": 10, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + } + } }, { "season_code": "202303", @@ -162,7 +446,7 @@ "Hu" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC HIST: United States", "YC HIST: Ideas & Intellectuals", @@ -179,7 +463,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -213,7 +525,7 @@ "16:00", "16:50", "LC 104 - Linsly-Chittenden Hall 104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -223,7 +535,7 @@ ], "flags": [ "YC AMST: Early Americas", - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC GLBL: Elective" ], @@ -235,7 +547,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -275,7 +615,7 @@ "10:30", "11:20", "WLH 207 - William L. Harkness Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -283,7 +623,7 @@ "10:30", "11:20", "WLH 207 - William L. Harkness Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -293,7 +633,7 @@ ], "flags": [ "YC AMST: Early Americas", - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC GLBL: Elective", "Writing Skill (Opt.)" @@ -303,10 +643,163 @@ "classnotes": "", "final_exam": "Wednesday, December 20, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88052\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88052/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987622499465942, + 0.9985637068748474, + 0.9981940388679504, + 0.9988836646080017, + 0.998891294002533, + 0.9988515377044678, + 0.9988441467285156, + 0.9986981153488159, + 0.9988382458686829, + 0.9988227486610413, + 0.998862624168396, + 0.9988985061645508, + 0.9987123012542725, + 0.9988860487937927 + ], + "sentiment_counts": { + "POSITIVE": 14, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989362359046936, + 0.9987202882766724, + 0.9988697171211243, + 0.995686411857605, + 0.9988802075386047, + 0.9989157915115356, + 0.998916506767273, + 0.9978533387184143, + 0.9988899827003479, + 0.9985591769218445, + 0.9958202838897705, + 0.9994978904724121, + 0.9986525774002075 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8461538461538461, + "NEGATIVE": 0.15384615384615385 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8461538461538461 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998863697052002, + 0.9989250302314758, + 0.9988523721694946, + 0.998843789100647, + 0.9989257454872131, + 0.9975495934486389, + 0.9988769888877869, + 0.9993797540664673, + 0.9982553124427795, + 0.9987195730209351, + 0.999125063419342, + 0.9988341927528381, + 0.9989328980445862, + 0.998807430267334, + 0.9989216327667236, + 0.9962698221206665 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.8125, + "NEGATIVE": 0.1875 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8125 + ] + }, + "final_label": "POSITIVE", + "final_count": 38, + "final_proportion": 0.8837209302325582, + "final_counts": { + "POSITIVE": 38, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.8837209302325582, + "NEGATIVE": 0.11627906976744186 + } + } }, { "season_code": "202303", @@ -340,7 +833,7 @@ "14:30", "15:20", "BASSLB L70 - Bass Library L70", - "https:\/\/map.yale.edu\/?id=1910#!m\/564574" + "https://map.yale.edu/?id=1910#!m/564574" ] ] }, @@ -350,7 +843,7 @@ ], "flags": [ "YC AMST: Early Americas", - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC GLBL: Elective" ], @@ -362,7 +855,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -396,7 +917,7 @@ "10:30", "11:20", "WLH 113 - William L. Harkness Hall 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -406,7 +927,7 @@ ], "flags": [ "YC AMST: Early Americas", - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC GLBL: Elective" ], @@ -418,7 +939,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -458,7 +1007,7 @@ "16:30", "17:20", "WTS A51 - Watson Center 60 Sachem Street A51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -466,7 +1015,7 @@ "16:30", "17:20", "WTS A51 - Watson Center 60 Sachem Street A51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -485,10 +1034,137 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89163\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89163/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987770915031433, + 0.9989281296730042, + 0.9988021850585938, + 0.9989131689071655, + 0.9978353381156921, + 0.9988918900489807, + 0.9988707900047302, + 0.9988301396369934, + 0.9988916516304016 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994995594024658, + 0.9984616041183472, + 0.9895910620689392, + 0.9988960027694702, + 0.998921275138855, + 0.9982247948646545, + 0.99699866771698, + 0.9988629817962646, + 0.9988136291503906, + 0.9984989166259766, + 0.9988767504692078 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 9 + }, + "sentiment_distribution": { + "NEGATIVE": 0.18181818181818182, + "POSITIVE": 0.8181818181818182 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8181818181818182 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988865256309509, + 0.9988271594047546, + 0.9989141225814819, + 0.9985136389732361, + 0.9925960898399353, + 0.9988418221473694, + 0.9988685846328735, + 0.9987994432449341, + 0.9984018206596375, + 0.9968264102935791 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "final_label": "POSITIVE", + "final_count": 27, + "final_proportion": 0.9, + "final_counts": { + "POSITIVE": 27, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + } + } }, { "season_code": "202303", @@ -522,7 +1198,7 @@ "14:30", "15:20", "WTS A32 - Watson Center 60 Sachem Street A32", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -543,7 +1219,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -577,7 +1281,7 @@ "15:30", "16:20", "WTS A32 - Watson Center 60 Sachem Street A32", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -598,7 +1302,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -632,7 +1364,7 @@ "14:30", "15:20", "WTS B51 - Watson Center 60 Sachem Street B51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -653,7 +1385,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -687,7 +1447,7 @@ "17:00", "17:50", "WLH 004 - William L. Harkness Hall 004", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -708,7 +1468,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -742,7 +1530,7 @@ "13:30", "14:20", "YK220 100 - 220 York Street 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ] }, @@ -751,7 +1539,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -762,7 +1550,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -796,7 +1612,7 @@ "14:30", "15:20", "YK220 100 - 220 York Street 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ] }, @@ -805,7 +1621,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -816,7 +1632,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -850,7 +1694,7 @@ "16:00", "16:50", "HQ 401 - Humanities Quadrangle 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -859,7 +1703,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -870,7 +1714,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -910,7 +1782,7 @@ "11:35", "12:50", "WLH 207 - William L. Harkness Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -918,7 +1790,7 @@ "11:35", "12:50", "WLH 207 - William L. Harkness Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -927,7 +1799,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -935,10 +1807,153 @@ "classnotes": "Classroom requires IT equipment AND a large blackboard", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89097\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89097/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987013339996338, + 0.9989098310470581, + 0.9988991022109985, + 0.9989299178123474, + 0.9989342093467712, + 0.9977993369102478, + 0.998917818069458, + 0.998878538608551, + 0.9988840222358704, + 0.9987342953681946, + 0.9988994598388672, + 0.9988414645195007 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9963954091072083, + 0.9986048340797424, + 0.9988923668861389, + 0.999500036239624, + 0.9988455772399902, + 0.9988711476325989, + 0.9989233613014221, + 0.9989338517189026, + 0.9988629817962646, + 0.9988258481025696, + 0.9971650242805481, + 0.9805963039398193 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9166666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998489499092102, + 0.99872225522995, + 0.9985766410827637, + 0.9988051652908325, + 0.9988752007484436, + 0.9955050349235535, + 0.9989063739776611, + 0.9951392412185669, + 0.9989056587219238, + 0.9989150762557983, + 0.9989199638366699, + 0.9989042282104492, + 0.9989126920700073, + 0.997370719909668 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.7857142857142857, + "NEGATIVE": 0.21428571428571427 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7857142857142857 + ] + }, + "final_label": "POSITIVE", + "final_count": 34, + "final_proportion": 0.8947368421052632, + "final_counts": { + "POSITIVE": 34, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.8947368421052632, + "NEGATIVE": 0.10526315789473684 + } + } }, { "season_code": "202303", @@ -972,7 +1987,7 @@ "17:00", "17:50", "HQ 401 - Humanities Quadrangle 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -981,7 +1996,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -992,7 +2007,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -1026,7 +2069,7 @@ "14:30", "15:20", "YK220 001 - 220 York Street 001", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ] }, @@ -1035,7 +2078,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -1046,7 +2089,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -1080,7 +2151,7 @@ "13:30", "14:20", "YK220 001 - 220 York Street 001", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ] }, @@ -1089,7 +2160,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -1100,7 +2171,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -1139,7 +2238,7 @@ "14:30", "15:45", "BM 013 - Bingham Hall 013", - "https:\/\/map.yale.edu\/?id=1910#!m\/559569" + "https://map.yale.edu/?id=1910#!m/559569" ] ], "Thursday": [ @@ -1147,7 +2246,7 @@ "14:30", "15:45", "BM 013 - Bingham Hall 013", - "https:\/\/map.yale.edu\/?id=1910#!m\/559569" + "https://map.yale.edu/?id=1910#!m/559569" ] ] }, @@ -1156,7 +2255,7 @@ ], "areas": [], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -1164,10 +2263,113 @@ "classnotes": "Please email alison.kibbe@yale.edu regarding your interest in this course.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90080\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90080/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989162683486938, + 0.9986416697502136, + 0.9988434314727783, + 0.9989340901374817, + 0.9988767504692078, + 0.9987854361534119 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988120794296265, + 0.9988454580307007, + 0.9989062547683716, + 0.9989228844642639, + 0.9989151954650879, + 0.9989268183708191, + 0.9973757266998291 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998924195766449, + 0.9989232420921326, + 0.9989232420921326, + 0.9984986782073975, + 0.9989062547683716, + 0.9989338517189026 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 19 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -1205,7 +2407,7 @@ "11:35", "12:50", "WLH 202 - William L. Harkness Hall 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -1213,7 +2415,7 @@ "11:35", "12:50", "WLH 202 - William L. Harkness Hall 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -1222,7 +2424,7 @@ "Hu" ], "flags": [ - "YC English: 20th\/21st Century", + "YC English: 20th/21st Century", "YC English: Junior Seminar" ], "regnotes": "", @@ -1230,15 +2432,124 @@ "classnotes": "", "final_exam": "Sunday, December 17, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88057\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88057/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "", - "description": "With its lush and fantastic landscape, fabulous carnivalesque aesthetics, and rich African Diaspora Religious traditions, the Caribbean has long been a setting where New World black artists have staged competing visions of racial and sexual utopia and dystopia. However, these foreigner-authored fantasies have often overshadowed the lived experience and life storytelling of Caribbean subjects. This course explores the intersecting performance cultures, politics, and sensual\/sexual practices that have constituted queer life in the Caribbean region and its diaspora. Placing Caribbean queer of color critique alongside key moments in twentieth and twenty-first century performance history at home and abroad, we ask how have histories of the plantation, discourses of race and nation, migration, and revolution led to the formation of regionally specific queer identifications. What about the idea of the \"tropics\" has made it such as fertile ground for queer performance making, and how have artists from the region identified or dis-identified with these aesthetic formations? This class begins with an exploration of theories of queer diaspora and queer of color critique\u2019s roots in black feminisms. We cover themes of exile, religious rites, and organizing as sights of queer political formation and creative community in the Caribbean.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989271759986877, + 0.9988470077514648, + 0.9988693594932556, + 0.9988732933998108, + 0.9989203214645386, + 0.9927791953086853 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985398054122925, + 0.9988669157028198, + 0.9989345669746399, + 0.9989222288131714, + 0.9988033771514893, + 0.9988985061645508, + 0.9986347556114197, + 0.9989186525344849 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988665580749512, + 0.9989246726036072, + 0.9908938407897949, + 0.9989122152328491, + 0.9989355206489563, + 0.9988868832588196, + 0.9989118576049805, + 0.9987643957138062 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 22, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 22 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } + }, + { + "season_code": "202303", + "requirements": "", + "description": "With its lush and fantastic landscape, fabulous carnivalesque aesthetics, and rich African Diaspora Religious traditions, the Caribbean has long been a setting where New World black artists have staged competing visions of racial and sexual utopia and dystopia. However, these foreigner-authored fantasies have often overshadowed the lived experience and life storytelling of Caribbean subjects. This course explores the intersecting performance cultures, politics, and sensual/sexual practices that have constituted queer life in the Caribbean region and its diaspora. Placing Caribbean queer of color critique alongside key moments in twentieth and twenty-first century performance history at home and abroad, we ask how have histories of the plantation, discourses of race and nation, migration, and revolution led to the formation of regionally specific queer identifications. What about the idea of the \"tropics\" has made it such as fertile ground for queer performance making, and how have artists from the region identified or dis-identified with these aesthetic formations? This class begins with an exploration of theories of queer diaspora and queer of color critique\u2019s roots in black feminisms. We cover themes of exile, religious rites, and organizing as sights of queer political formation and creative community in the Caribbean.", "short_title": "Queer Caribbean Performance", "title": "Queer Caribbean Performance", "school": "YC", @@ -1271,7 +2582,7 @@ "13:30", "15:20", "ELM294 303 - Broadway Rehearsal Lofts 303", - "https:\/\/map.yale.edu\/?id=1910#!m\/559982" + "https://map.yale.edu/?id=1910#!m/559982" ] ] }, @@ -1285,10 +2596,107 @@ "classnotes": "", "final_exam": "Wednesday, December 20, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89018\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89018/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.99886155128479, + 0.9989344477653503, + 0.998392641544342, + 0.9988904595375061 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989109039306641, + 0.9989394545555115, + 0.9989275336265564, + 0.9987421631813049, + 0.9989240765571594, + 0.9989282488822937 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989155530929565, + 0.9988629817962646, + 0.9989190101623535, + 0.9994893074035645, + 0.9989369511604309 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 0.9333333333333333, + "final_counts": { + "POSITIVE": 14, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9333333333333333, + "NEGATIVE": 0.06666666666666667 + } + } }, { "season_code": "202303", @@ -1329,7 +2737,7 @@ "15:30", "17:20", "WLH 204 - William L. Harkness Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -1348,15 +2756,106 @@ "classnotes": "Priority is given to students in the Education Studies program (Scholar and Certificate) and then by course year. Please indicate your interest in the course as well as major, EDST program and whether you've taken EDST 110 when you request permission. ", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88362\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88362/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998609185218811, + 0.9988056421279907, + 0.9986715316772461 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989110231399536, + 0.9983341097831726, + 0.9988967180252075, + 0.9983867406845093 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998891294002533, + 0.9986816048622131, + 0.9988476037979126, + 0.9988846182823181, + 0.9989123344421387 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 0.9166666666666666, + "final_counts": { + "POSITIVE": 11, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + } + } }, { "season_code": "202303", "requirements": "Prerequisite: one or more AFAM courses.", - "description": "This course traces the birth and evolution of Black arts writing and criticism\u2212its style and content, its major themes and groundbreaking practices\u2212from the late nineteenth century through the 2020s. From the innovations of W.E.B. DuBois, Pauline Hopkins, and postbellum Black arts journalists to the breakthroughs of Harlem Renaissance heavyweights (Zora Neale Hurston, Langston Hughes and others), from the jazz experimentalism of Ralph Ellison and Albert Murray to the revolutionary criticism of Amiri Baraka, Lorraine Hansberry, James Baldwin, Phyl Garland and others, this class explores the intellectual work of pioneering writers who produced radical knowledge about Black culture. Its second half turns to the late twentieth and twenty-first century criticism of legendary arts journalists, scholars and critics: Toni Morrison, Thulani Davis, Margo Jefferson, Hilton Als, Greg Tate, Farah J. Griffin, Joan Morgan, Danyel Smith, Wesley Morris, Hanif Abdurraqib, and others. Emphasis will be placed on music, literary, film, and theater\/performance arts writing.", + "description": "This course traces the birth and evolution of Black arts writing and criticism\u2212its style and content, its major themes and groundbreaking practices\u2212from the late nineteenth century through the 2020s. From the innovations of W.E.B. DuBois, Pauline Hopkins, and postbellum Black arts journalists to the breakthroughs of Harlem Renaissance heavyweights (Zora Neale Hurston, Langston Hughes and others), from the jazz experimentalism of Ralph Ellison and Albert Murray to the revolutionary criticism of Amiri Baraka, Lorraine Hansberry, James Baldwin, Phyl Garland and others, this class explores the intellectual work of pioneering writers who produced radical knowledge about Black culture. Its second half turns to the late twentieth and twenty-first century criticism of legendary arts journalists, scholars and critics: Toni Morrison, Thulani Davis, Margo Jefferson, Hilton Als, Greg Tate, Farah J. Griffin, Joan Morgan, Danyel Smith, Wesley Morris, Hanif Abdurraqib, and others. Emphasis will be placed on music, literary, film, and theater/performance arts writing.", "short_title": "Black Arts Criticism: Intelle...", "title": "Black Arts Criticism: Intellectual Life of Black Culture from W.E.B. DuBois to the 21st Century", "school": "YC", @@ -1390,7 +2889,7 @@ "13:30", "15:20", "WALL81 201 - 81 Wall Street 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -1401,13 +2900,112 @@ "flags": [], "regnotes": "", "rp_attr": "This course meets during the Reading Period: the week between the last week of classes and finals week. Meets Reading Period", - "classnotes": "Please note: Instructor Permission Requests will not be reviewed until add\/drop period in August. This course requires an application which will be provided by the instructor.", + "classnotes": "Please note: Instructor Permission Requests will not be reviewed until add/drop period in August. This course requires an application which will be provided by the instructor.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89259\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89259/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988983869552612, + 0.9988607168197632, + 0.9988065958023071, + 0.998902440071106, + 0.9988353848457336, + 0.9989376664161682 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988515377044678, + 0.9988080263137817, + 0.9988665580749512, + 0.998903751373291, + 0.9988962411880493 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989136457443237, + 0.9989116191864014, + 0.9988300204277039, + 0.9989012479782104, + 0.9988804459571838, + 0.9989251494407654 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 17 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -1445,7 +3043,7 @@ "13:30", "15:20", "PR77 A001 - 77 Prospect Street A001", - "https:\/\/map.yale.edu\/?id=1910#!m\/559939" + "https://map.yale.edu/?id=1910#!m/559939" ] ] }, @@ -1461,10 +3059,91 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88992\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88992/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987382292747498 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989124536514282, + 0.9989053010940552, + 0.9988492727279663 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989155530929565, + 0.9984466433525085, + 0.9988706707954407, + 0.9981794357299805 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 8, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 8 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -1503,7 +3182,7 @@ "15:30", "17:20", "HQ C03 - Humanities Quadrangle C03", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -1512,7 +3191,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC EDST: Social Context" ], @@ -1521,10 +3200,99 @@ "classnotes": "Priority is given to students in the Education Studies program (Scholar and Certificate) and then by course year. Please indicate your interest in the course as well as major, EDST program and whether you've taken EDST 110 when you request permission.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88377\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88377/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985948204994202, + 0.9988940358161926, + 0.9985036849975586, + 0.9987912774085999 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989103078842163, + 0.9989356398582458, + 0.9987566471099854, + 0.9989346861839294 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981096982955933, + 0.9989301562309265, + 0.9988565444946289, + 0.9983932375907898 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 12 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -1562,7 +3330,7 @@ "10:30", "12:20", "ELM294 303 - Broadway Rehearsal Lofts 303", - "https:\/\/map.yale.edu\/?id=1910#!m\/559982" + "https://map.yale.edu/?id=1910#!m/559982" ] ], "Thursday": [ @@ -1570,7 +3338,7 @@ "10:30", "12:20", "ELM294 303 - Broadway Rehearsal Lofts 303", - "https:\/\/map.yale.edu\/?id=1910#!m\/559982" + "https://map.yale.edu/?id=1910#!m/559982" ] ] }, @@ -1581,13 +3349,92 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "T\/TH 10:30 am \u2013 12:20 pm \n294 Elm, 303\n", + "classnotes": "T/TH 10:30 am \u2013 12:20 pm \n294 Elm, 303\n", "final_exam": "Wednesday, December 20, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89019\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89019/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9968749284744263, + 0.9987336993217468 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989297986030579, + 0.9988981485366821 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989234805107117, + 0.9987803101539612, + 0.9989246726036072 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 7 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -1625,7 +3472,7 @@ "15:30", "17:20", "HQ C65 - Humanities Quadrangle C65", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -1639,10 +3486,103 @@ "classnotes": "Interested students must write instructor no more than 50 words saying why they want to take the course.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88566\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88566/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998640239238739, + 0.9987898468971252, + 0.9989192485809326, + 0.9988328814506531, + 0.9989297986030579 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.997244119644165, + 0.9988112449645996, + 0.9989287257194519, + 0.9988831877708435 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.25, + "POSITIVE": 0.75 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9844126105308533, + 0.9989004135131836, + 0.9985396862030029, + 0.9987534284591675 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.25, + "POSITIVE": 0.75 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 0.8461538461538461, + "final_counts": { + "POSITIVE": 11, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8461538461538461, + "NEGATIVE": 0.15384615384615385 + } + } }, { "season_code": "202303", @@ -1681,7 +3621,7 @@ "13:30", "15:20", "WALL81 201 - 81 Wall Street 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -1695,10 +3635,105 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88680\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88680/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988742470741272, + 0.9994971752166748, + 0.9987667798995972, + 0.9983748197555542, + 0.998863935470581 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988732933998108, + 0.999506950378418, + 0.9985287189483643, + 0.9940371513366699 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989176988601685, + 0.9993459582328796, + 0.9988566637039185, + 0.9995092153549194, + 0.9987562894821167 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.6, + "NEGATIVE": 0.4 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 0.6428571428571429, + "final_counts": { + "POSITIVE": 9, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.6428571428571429, + "NEGATIVE": 0.35714285714285715 + } + } }, { "season_code": "202303", @@ -1739,7 +3774,7 @@ "15:30", "17:20", "WLH 202 - William L. Harkness Hall 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -1756,10 +3791,113 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90678\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90678/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998809814453125, + 0.998860239982605, + 0.9986899495124817, + 0.9989328980445862, + 0.9988508224487305, + 0.9988728165626526, + 0.9989239573478699 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987543821334839, + 0.9989011287689209, + 0.9760379791259766, + 0.9978674650192261, + 0.9987699389457703 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983333945274353, + 0.9989117383956909, + 0.998925507068634, + 0.9988470077514648, + 0.998916506767273, + 0.9988755583763123, + 0.9981794357299805 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 19 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -1797,7 +3935,7 @@ "13:30", "15:20", "WLH 011 - William L. Harkness Hall 011", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -1813,10 +3951,95 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90072\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90072/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988037347793579, + 0.9989004135131836, + 0.9988138675689697 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9909629225730896, + 0.9989387392997742, + 0.9989256262779236 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989288449287415, + 0.9989069700241089, + 0.9989282488822937 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 8, + "final_proportion": 0.8888888888888888, + "final_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + } + } }, { "season_code": "202303", @@ -1854,7 +4077,7 @@ "13:30", "15:20", "LORIA 358 - Loria Center 358", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -1872,10 +4095,17 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92673\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92673/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -1914,7 +4144,7 @@ "9:25", "11:15", "WLH 014 - William L. Harkness Hall 014", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -1932,15 +4162,43 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88176\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88176/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "Exploration of sex, science fiction, and the\u00a0downtown scene in New York City, through the archives and writings of Samuel R. Delany. Particular attention to the intersections of music, nightlife, avant-garde performance, literature, and visual art, within the context of social movements from feminism, gay liberation, and HIV\/AIDs activism.", + "description": "Exploration of sex, science fiction, and the\u00a0downtown scene in New York City, through the archives and writings of Samuel R. Delany. Particular attention to the intersections of music, nightlife, avant-garde performance, literature, and visual art, within the context of social movements from feminism, gay liberation, and HIV/AIDs activism.", "short_title": "Samuel Delany and His Worlds", "title": "Samuel Delany and His Worlds", "school": "YC", @@ -1975,7 +4233,7 @@ "15:30", "17:20", "HQ 123 - Humanities Quadrangle 123", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -1992,10 +4250,38 @@ "classnotes": "If you are interested in enrolling in this class, send a short email from your Yale account to tavia.nyongo@yale.edu giving your year, major, and a couple of sentences about what background and interests would enable you to contribute to the seminar discussion.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92366\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/92366/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -2034,7 +4320,7 @@ "15:30", "17:20", "WALL81 201 - 81 Wall Street 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -2050,10 +4336,133 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89995\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89995/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984252452850342, + 0.9989101886749268, + 0.9987581968307495, + 0.9988725781440735, + 0.9988523721694946, + 0.9989137649536133, + 0.9989171028137207, + 0.9988479614257812 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989363551139832, + 0.99854576587677, + 0.9984095692634583, + 0.9989093542098999, + 0.9988527297973633, + 0.998838484287262, + 0.9987959861755371, + 0.9988855719566345, + 0.9988068342208862 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987925291061401, + 0.9988791346549988, + 0.9989176988601685, + 0.9986522793769836, + 0.9989327788352966, + 0.9989359974861145, + 0.9988574981689453, + 0.998872697353363, + 0.9986566305160522, + 0.9989217519760132, + 0.9988479614257812, + 0.9986322522163391 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 29, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 29 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -2094,7 +4503,7 @@ "13:30", "15:20", "HQ 123 - Humanities Quadrangle 123", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -2111,15 +4520,86 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90679\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90679/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "", - "description": "An examination of the Afro-diasporic music cultures of Cuba and Jamaica, placing the historical succession of musical genres and traditions into social, cultural, and political contexts. Cuban genres studied include religious\/folkloric traditions (Lucumi\/Santeria and Abakua), rumba, son, mambo, pachanga\/charanga, salsa, timba and reggaeton. Jamaican genres studied include: folkloric traditions (etu\/tambu\/kumina), Jamaican R&B, ska, rock steady, reggae, ragga\/dancehall. Prominent themes include: slavery, Afro-diasporic cultural traditions, Black Atlantic culture, nationalism\/independence\/post-colonial culture, relationships with the United States, music & gender\/sexuality, technology.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986874461174011 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988276362419128 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988947510719299 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 3, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 3 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } + }, + { + "season_code": "202303", + "requirements": "", + "description": "An examination of the Afro-diasporic music cultures of Cuba and Jamaica, placing the historical succession of musical genres and traditions into social, cultural, and political contexts. Cuban genres studied include religious/folkloric traditions (Lucumi/Santeria and Abakua), rumba, son, mambo, pachanga/charanga, salsa, timba and reggaeton. Jamaican genres studied include: folkloric traditions (etu/tambu/kumina), Jamaican R&B, ska, rock steady, reggae, ragga/dancehall. Prominent themes include: slavery, Afro-diasporic cultural traditions, Black Atlantic culture, nationalism/independence/post-colonial culture, relationships with the United States, music & gender/sexuality, technology.", "short_title": "Music of the Caribbean: Cuba ...", "title": "Music of the Caribbean: Cuba and Jamaica", "school": "YC", @@ -2152,7 +4632,7 @@ "15:30", "17:20", "STOECK 107 - Stoeckel Hall (renovated) 107", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ] }, @@ -2168,10 +4648,103 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90060\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90060/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998337984085083, + 0.9989049434661865, + 0.998915433883667, + 0.9988044500350952 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9995030164718628, + 0.9989092350006104, + 0.9989352822303772, + 0.9989145994186401 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.25, + "POSITIVE": 0.75 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9993032217025757, + 0.9989230036735535, + 0.9988609552383423, + 0.9988704323768616, + 0.9989168643951416 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 4 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2, + "POSITIVE": 0.8 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 0.8461538461538461, + "final_counts": { + "POSITIVE": 11, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8461538461538461, + "NEGATIVE": 0.15384615384615385 + } + } }, { "season_code": "202303", @@ -2208,7 +4781,7 @@ "9:25", "11:15", "HQ 213 - Humanities Quadrangle 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -2220,10 +4793,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88062\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88062/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -2266,7 +4867,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -2304,7 +4933,7 @@ "13:30", "15:20", "HQ 123 - Humanities Quadrangle 123", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -2316,10 +4945,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92441\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92441/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -2356,7 +5013,7 @@ "13:30", "15:20", "WALL81 101 - 81 Wall Street 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -2368,10 +5025,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88069\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88069/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -2410,7 +5095,7 @@ "13:30", "15:20", "BRBL 13 - Beinecke Rare Book Library 13", - "https:\/\/map.yale.edu\/?id=1910#!m\/531533" + "https://map.yale.edu/?id=1910#!m/531533" ] ] }, @@ -2419,13 +5104,41 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Please note Instructor Permissions requests will not be reviewed until add\/drop period in August. This course requires an application that will be provided by the instructor.", + "classnotes": "Please note Instructor Permissions requests will not be reviewed until add/drop period in August. This course requires an application that will be provided by the instructor.", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88075\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88075/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -2464,7 +5177,7 @@ "13:30", "15:20", "HQ 317 - Humanities Quadrangle 317", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -2476,10 +5189,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88078\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88078/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -2519,12 +5260,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "The course explores recent trends and historiography on several problems through the middle of the nineteenth century: sectionalism, expansion; slavery and the Old South; northern society and reform movements; Civil War causation; the meaning of the Confederacy; why the North won the Civil War; the political, constitutional, and social meanings of emancipation and Reconstruction; violence in Reconstruction society; the relationships between social\/cultural and military\/political history; problems in historical memory; the tension between narrative and analytical history writing; and the ways in which race and gender have reshaped research and interpretive agendas.", + "description": "The course explores recent trends and historiography on several problems through the middle of the nineteenth century: sectionalism, expansion; slavery and the Old South; northern society and reform movements; Civil War causation; the meaning of the Confederacy; why the North won the Civil War; the political, constitutional, and social meanings of emancipation and Reconstruction; violence in Reconstruction society; the relationships between social/cultural and military/political history; problems in historical memory; the tension between narrative and analytical history writing; and the ways in which race and gender have reshaped research and interpretive agendas.", "short_title": "Readings in Nineteenth-Centur...", "title": "Readings in Nineteenth-Century America", "school": "GS", @@ -2558,7 +5327,7 @@ "9:25", "11:15", "HQ C05 - Humanities Quadrangle C05", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -2570,10 +5339,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88217\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88217/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -2612,7 +5409,7 @@ "13:30", "15:20", "WALL53 208 - 53 Wall Street 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/559554" + "https://map.yale.edu/?id=1910#!m/559554" ] ] }, @@ -2624,10 +5421,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88227\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88227/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -2665,7 +5469,7 @@ "11:30", "13:20", "WALL81 201 - 81 Wall Street 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -2679,10 +5483,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88695\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88695/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -2720,7 +5552,7 @@ "14:00", "15:30", "WLH 203 - William L. Harkness Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -2732,10 +5564,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88879\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88879/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -2773,7 +5633,7 @@ "13:30", "15:20", "WALL81 301 - 81 Wall Street 301", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -2785,10 +5645,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88244\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88244/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -2827,7 +5715,7 @@ "15:30", "17:20", "LC 206 - Linsly-Chittenden Hall 206", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -2839,10 +5727,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89348\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89348/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -2883,7 +5799,7 @@ "13:30", "15:20", "HQ 213 - Humanities Quadrangle 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -2895,10 +5811,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88710\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88710/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -2935,7 +5879,7 @@ "9:25", "11:15", "WALL81 201 - 81 Wall Street 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -2947,10 +5891,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88090\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88090/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -2988,7 +5960,7 @@ "9:25", "11:15", "WALL81 101 - 81 Wall Street 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -3000,10 +5972,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92390\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92390/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -3037,7 +6037,7 @@ "16:00", "16:50", "LC 104 - Linsly-Chittenden Hall 104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -3047,7 +6047,7 @@ ], "flags": [ "YC AMST: Early Americas", - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC GLBL: Elective" ], @@ -3059,7 +6059,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -3099,7 +6127,7 @@ "10:30", "11:20", "WLH 207 - William L. Harkness Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -3107,7 +6135,7 @@ "10:30", "11:20", "WLH 207 - William L. Harkness Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -3117,7 +6145,7 @@ ], "flags": [ "YC AMST: Early Americas", - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC GLBL: Elective", "Writing Skill (Opt.)" @@ -3127,10 +6155,163 @@ "classnotes": "", "final_exam": "Wednesday, December 20, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88052\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88052/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987622499465942, + 0.9985637068748474, + 0.9981940388679504, + 0.9988836646080017, + 0.998891294002533, + 0.9988515377044678, + 0.9988441467285156, + 0.9986981153488159, + 0.9988382458686829, + 0.9988227486610413, + 0.998862624168396, + 0.9988985061645508, + 0.9987123012542725, + 0.9988860487937927 + ], + "sentiment_counts": { + "POSITIVE": 14, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989362359046936, + 0.9987202882766724, + 0.9988697171211243, + 0.995686411857605, + 0.9988802075386047, + 0.9989157915115356, + 0.998916506767273, + 0.9978533387184143, + 0.9988899827003479, + 0.9985591769218445, + 0.9958202838897705, + 0.9994978904724121, + 0.9986525774002075 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8461538461538461, + "NEGATIVE": 0.15384615384615385 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8461538461538461 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998863697052002, + 0.9989250302314758, + 0.9988523721694946, + 0.998843789100647, + 0.9989257454872131, + 0.9975495934486389, + 0.9988769888877869, + 0.9993797540664673, + 0.9982553124427795, + 0.9987195730209351, + 0.999125063419342, + 0.9988341927528381, + 0.9989328980445862, + 0.998807430267334, + 0.9989216327667236, + 0.9962698221206665 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.8125, + "NEGATIVE": 0.1875 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8125 + ] + }, + "final_label": "POSITIVE", + "final_count": 38, + "final_proportion": 0.8837209302325582, + "final_counts": { + "POSITIVE": 38, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.8837209302325582, + "NEGATIVE": 0.11627906976744186 + } + } }, { "season_code": "202303", @@ -3164,7 +6345,7 @@ "14:30", "15:20", "BASSLB L70 - Bass Library L70", - "https:\/\/map.yale.edu\/?id=1910#!m\/564574" + "https://map.yale.edu/?id=1910#!m/564574" ] ] }, @@ -3174,7 +6355,7 @@ ], "flags": [ "YC AMST: Early Americas", - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC GLBL: Elective" ], @@ -3186,7 +6367,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -3220,7 +6429,7 @@ "10:30", "11:20", "WLH 113 - William L. Harkness Hall 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -3230,7 +6439,7 @@ ], "flags": [ "YC AMST: Early Americas", - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC GLBL: Elective" ], @@ -3242,7 +6451,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -3276,7 +6513,7 @@ "13:30", "14:20", "YK220 100 - 220 York Street 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ] }, @@ -3285,7 +6522,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -3296,7 +6533,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -3330,7 +6595,7 @@ "14:30", "15:20", "YK220 100 - 220 York Street 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ] }, @@ -3339,7 +6604,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -3350,7 +6615,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -3384,7 +6677,7 @@ "16:00", "16:50", "HQ 401 - Humanities Quadrangle 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -3393,7 +6686,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -3404,7 +6697,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -3444,7 +6765,7 @@ "11:35", "12:50", "WLH 207 - William L. Harkness Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -3452,7 +6773,7 @@ "11:35", "12:50", "WLH 207 - William L. Harkness Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -3461,7 +6782,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -3469,10 +6790,153 @@ "classnotes": "Classroom requires IT equipment AND a large blackboard", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89097\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89097/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987013339996338, + 0.9989098310470581, + 0.9988991022109985, + 0.9989299178123474, + 0.9989342093467712, + 0.9977993369102478, + 0.998917818069458, + 0.998878538608551, + 0.9988840222358704, + 0.9987342953681946, + 0.9988994598388672, + 0.9988414645195007 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9963954091072083, + 0.9986048340797424, + 0.9988923668861389, + 0.999500036239624, + 0.9988455772399902, + 0.9988711476325989, + 0.9989233613014221, + 0.9989338517189026, + 0.9988629817962646, + 0.9988258481025696, + 0.9971650242805481, + 0.9805963039398193 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9166666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998489499092102, + 0.99872225522995, + 0.9985766410827637, + 0.9988051652908325, + 0.9988752007484436, + 0.9955050349235535, + 0.9989063739776611, + 0.9951392412185669, + 0.9989056587219238, + 0.9989150762557983, + 0.9989199638366699, + 0.9989042282104492, + 0.9989126920700073, + 0.997370719909668 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.7857142857142857, + "NEGATIVE": 0.21428571428571427 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7857142857142857 + ] + }, + "final_label": "POSITIVE", + "final_count": 34, + "final_proportion": 0.8947368421052632, + "final_counts": { + "POSITIVE": 34, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.8947368421052632, + "NEGATIVE": 0.10526315789473684 + } + } }, { "season_code": "202303", @@ -3506,7 +6970,7 @@ "17:00", "17:50", "HQ 401 - Humanities Quadrangle 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -3515,7 +6979,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -3526,7 +6990,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -3560,7 +7052,7 @@ "14:30", "15:20", "YK220 001 - 220 York Street 001", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ] }, @@ -3569,7 +7061,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -3580,7 +7072,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -3614,7 +7134,7 @@ "13:30", "14:20", "YK220 001 - 220 York Street 001", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ] }, @@ -3623,7 +7143,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -3634,7 +7154,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -3673,7 +7221,7 @@ "9:25", "11:15", "WLH 209 - William L. Harkness Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -3687,15 +7235,112 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88094\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88094/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "", - "description": "This course introduces students to oral and written literature by\/for and\/or about children in Africa: from its oral origins in riddles, lullabies, playground verse, and folk narratives, to written texts in the form of drama, poetry, and prose. The course examines representative texts of the genre to address its historical background\/development and explore its distinctive (literary) qualities. Major themes and social issues that are dealt with in African children\u2019s literature (including cultural notions of childhood, gender, and power) as well as critical approaches to the genre are considered.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988409876823425, + 0.9987548589706421, + 0.9989182949066162, + 0.99888676404953, + 0.9989084005355835 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989244341850281, + 0.9987940788269043, + 0.9987510442733765, + 0.9989020824432373, + 0.9989141225814819 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998416543006897, + 0.9988725781440735, + 0.9988786578178406, + 0.9988886713981628, + 0.9989232420921326, + 0.9989035129547119 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 16 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } + }, + { + "season_code": "202303", + "requirements": "", + "description": "This course introduces students to oral and written literature by/for and/or about children in Africa: from its oral origins in riddles, lullabies, playground verse, and folk narratives, to written texts in the form of drama, poetry, and prose. The course examines representative texts of the genre to address its historical background/development and explore its distinctive (literary) qualities. Major themes and social issues that are dealt with in African children\u2019s literature (including cultural notions of childhood, gender, and power) as well as critical approaches to the genre are considered.", "short_title": "Children's Literature in Africa", "title": "Children's Literature in Africa", "school": "YC", @@ -3728,7 +7373,7 @@ "9:25", "11:15", "LC 105 - Linsly-Chittenden Hall 105", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -3744,10 +7389,38 @@ "classnotes": "", "final_exam": "Saturday, December 16, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90174\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/90174/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -3789,7 +7462,7 @@ "13:30", "15:20", "WLH 002 - William L. Harkness Hall 002", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -3804,10 +7477,99 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89162\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89162/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9964343309402466, + 0.9989063739776611, + 0.9963538646697998, + 0.9989225268363953 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989332556724548, + 0.9989054203033447, + 0.998885452747345 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989257454872131, + 0.9989217519760132, + 0.9989079236984253, + 0.997117280960083, + 0.9989387392997742 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 12 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -3848,7 +7610,7 @@ "13:30", "15:20", "WTS B74 - Watson Center 60 Sachem Street B74", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -3870,10 +7632,107 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88917\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88917/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9968783855438232, + 0.9988638162612915, + 0.9987142086029053, + 0.9988240599632263, + 0.998775064945221, + 0.9967511892318726 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989232420921326, + 0.9977788329124451, + 0.9989073276519775, + 0.9987710118293762 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989205598831177, + 0.9989074468612671, + 0.9987315535545349, + 0.9988357424736023, + 0.99880051612854, + 0.9989172220230103 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 16 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -3911,7 +7770,7 @@ "10:30", "12:20", "PWG 5TH-EF - Payne Whitney Gymnasium 5TH-EF", - "https:\/\/map.yale.edu\/?id=1910#!m\/559944" + "https://map.yale.edu/?id=1910#!m/559944" ] ], "Thursday": [ @@ -3919,7 +7778,7 @@ "10:30", "12:20", "PWG 5TH-EF - Payne Whitney Gymnasium 5TH-EF", - "https:\/\/map.yale.edu\/?id=1910#!m\/559944" + "https://map.yale.edu/?id=1910#!m/559944" ] ] }, @@ -3932,13 +7791,90 @@ ], "regnotes": "", "rp_attr": "This course meets during the Reading Period: the week between the last week of classes and finals week. Meets Reading Period", - "classnotes": "T\/Th 10:30 am \u2013 12:20 pm \nPWG ", + "classnotes": "T/Th 10:30 am \u2013 12:20 pm \nPWG ", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89020\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89020/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988896250724792, + 0.9988347887992859 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988969564437866, + 0.9988824725151062 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986581802368164, + 0.9985758066177368 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 6 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -3979,7 +7915,7 @@ "13:30", "15:20", "HQ 123 - Humanities Quadrangle 123", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -3996,10 +7932,81 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90679\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90679/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986874461174011 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988276362419128 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988947510719299 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 3, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 3 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -4041,7 +8048,7 @@ "13:30", "15:20", "WLH 120 - William L. Harkness Hall 120", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -4057,10 +8064,119 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89342\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89342/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9987616539001465, + 0.9988985061645508, + 0.9989351630210876, + 0.9989067316055298, + 0.9988757967948914, + 0.9988817572593689, + 0.9994889497756958 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989392161369324, + 0.9989007711410522, + 0.99892657995224, + 0.9988346695899963, + 0.9989309906959534, + 0.9985311031341553 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998862624168396, + 0.9982553124427795, + 0.9988790154457092, + 0.9989284873008728, + 0.9988844990730286, + 0.9989118576049805, + 0.9988151788711548, + 0.9989394545555115 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 0.9047619047619048, + "final_counts": { + "POSITIVE": 19, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9047619047619048, + "NEGATIVE": 0.09523809523809523 + } + } }, { "season_code": "202303", @@ -4100,10 +8216,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92891\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92891/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -4140,24 +8284,52 @@ "15:30", "17:20", "WTS A42 - Watson Center 60 Sachem Street A42", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, "skills": [], "areas": [], "flags": [ - "PH: Global Health, Ethics\/Humanities\/History" + "PH: Global Health, Ethics/Humanities/History" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90168\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90168/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -4199,7 +8371,7 @@ "13:30", "15:20", "WLH 120 - William L. Harkness Hall 120", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -4211,10 +8383,119 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89342\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89342/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9987616539001465, + 0.9988985061645508, + 0.9989351630210876, + 0.9989067316055298, + 0.9988757967948914, + 0.9988817572593689, + 0.9994889497756958 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989392161369324, + 0.9989007711410522, + 0.99892657995224, + 0.9988346695899963, + 0.9989309906959534, + 0.9985311031341553 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998862624168396, + 0.9982553124427795, + 0.9988790154457092, + 0.9989284873008728, + 0.9988844990730286, + 0.9989118576049805, + 0.9988151788711548, + 0.9989394545555115 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 0.9047619047619048, + "final_counts": { + "POSITIVE": 19, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9047619047619048, + "NEGATIVE": 0.09523809523809523 + } + } }, { "season_code": "202303", @@ -4256,7 +8537,7 @@ "13:30", "15:20", "WLH 002 - William L. Harkness Hall 002", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -4268,15 +8549,104 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89162\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89162/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "", - "description": "Malaria, tuberculosis, and HIV account for more than five million deaths worldwide each year. This course provides a deep foundation for understanding these pathogens and explores the public health issues that surround these infectious diseases in resource-limited settings. Emphasis is placed on issues in Africa, but contrasts for each disease are provided in the broader developing world. The course is divided into three sections, each focusing in depth on the individual infectious disease as well as discussions of interactions among the three diseases. The sections consist of three to four lectures each on the biology, individual consequences, and community\/public health impact of each infectious disease. Discussion of ongoing, field-based research projects involving the diseases is led by relevant faculty (research into practice). The course culminates with a critical discussion of major public health programmatic efforts to tackle these diseases, such as those of PEPFAR, the Bill & Melinda Gates Foundation, the Global Fund, and the Stop TB Partnership.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9964343309402466, + 0.9989063739776611, + 0.9963538646697998, + 0.9989225268363953 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989332556724548, + 0.9989054203033447, + 0.998885452747345 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989257454872131, + 0.9989217519760132, + 0.9989079236984253, + 0.997117280960083, + 0.9989387392997742 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 12 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } + }, + { + "season_code": "202303", + "requirements": "", + "description": "Malaria, tuberculosis, and HIV account for more than five million deaths worldwide each year. This course provides a deep foundation for understanding these pathogens and explores the public health issues that surround these infectious diseases in resource-limited settings. Emphasis is placed on issues in Africa, but contrasts for each disease are provided in the broader developing world. The course is divided into three sections, each focusing in depth on the individual infectious disease as well as discussions of interactions among the three diseases. The sections consist of three to four lectures each on the biology, individual consequences, and community/public health impact of each infectious disease. Discussion of ongoing, field-based research projects involving the diseases is led by relevant faculty (research into practice). The course culminates with a critical discussion of major public health programmatic efforts to tackle these diseases, such as those of PEPFAR, the Bill & Melinda Gates Foundation, the Global Fund, and the Stop TB Partnership.", "short_title": "Tackling the Big Three: Malar...", "title": "Tackling the Big Three: Malaria, TB, and HIV in Resource-Limited Settings", "school": "GS", @@ -4309,7 +8679,7 @@ "10:00", "11:50", "CO47 106B - 47 College Street (CLP) 106B", - "https:\/\/map.yale.edu\/?id=1910#!m\/559997" + "https://map.yale.edu/?id=1910#!m/559997" ] ] }, @@ -4323,10 +8693,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91129\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91129/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -4363,7 +8761,7 @@ "15:30", "17:20", "RKZ 04 - Rosenkranz Hall 04", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -4375,10 +8773,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90561\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90561/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -4416,7 +8842,7 @@ "9:30", "11:20", "SDQ BUSH-S104 - Sterling Divinity Quadrangle BUSH-S104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -4431,7 +8857,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -4469,7 +8923,7 @@ "15:30", "17:20", "SDQ JE-DINING - Sterling Divinity Quadrangle JE-DINING", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -4484,7 +8938,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -4522,7 +9004,7 @@ "9:25", "11:15", "HQ 225 - Humanities Quadrangle 225", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -4534,15 +9016,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88249\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88249/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "This seminar examines the intersections of postcolonialism and ecocriticism as well as the tensions between these conceptual nodes, with readings drawn from across the global South. Topics of discussion include colonialism, development, resource extraction, globalization, ecological degradation, nonhuman agency, and indigenous cosmologies. The course is concerned with the narrative strategies affording the illumination of environmental ideas. We begin by engaging with the questions of postcolonial and world literature and return to these throughout the semester as we read primary texts, drawn from Africa, the Caribbean, and Asia. We consider African ecologies in their complexity from colonial through post-colonial times. In the unit on the Caribbean, we take up the transformations of the landscape from slavery, through colonialism, and the contemporary era. Turning to Asian spaces, the seminar explores changes brought about by modernity and globalization as well as the effects on both humans and nonhumans. Readings include the writings of Zakes Mda, Aminatta Forna, Helon Habila, Derek Walcott, Jamaica Kincaid, Ishimure Michiko, and Amitav Ghosh.\u00a0The course prepares students to respond to key issues in postcolonial ecocriticism and the environmental humanities, analyze the work of the major thinkers in the fields, and examine literary texts and other cultural productions from a postcolonial perspective. Course participants have the option of selecting from a variety of final projects. Students can craft an original essay that analyzes primary text from a postcolonial and\/or ecocritical perspective. Such work should aim at producing new insight on a theoretical concept and\/or the cultural text. They can also produce an undergraduate syllabus for a course at the intersection of postcolonialism and environmentalism or write a review essay discussing three recent monographs focused on postcolonial ecocriticism.", + "description": "This seminar examines the intersections of postcolonialism and ecocriticism as well as the tensions between these conceptual nodes, with readings drawn from across the global South. Topics of discussion include colonialism, development, resource extraction, globalization, ecological degradation, nonhuman agency, and indigenous cosmologies. The course is concerned with the narrative strategies affording the illumination of environmental ideas. We begin by engaging with the questions of postcolonial and world literature and return to these throughout the semester as we read primary texts, drawn from Africa, the Caribbean, and Asia. We consider African ecologies in their complexity from colonial through post-colonial times. In the unit on the Caribbean, we take up the transformations of the landscape from slavery, through colonialism, and the contemporary era. Turning to Asian spaces, the seminar explores changes brought about by modernity and globalization as well as the effects on both humans and nonhumans. Readings include the writings of Zakes Mda, Aminatta Forna, Helon Habila, Derek Walcott, Jamaica Kincaid, Ishimure Michiko, and Amitav Ghosh.\u00a0The course prepares students to respond to key issues in postcolonial ecocriticism and the environmental humanities, analyze the work of the major thinkers in the fields, and examine literary texts and other cultural productions from a postcolonial perspective. Course participants have the option of selecting from a variety of final projects. Students can craft an original essay that analyzes primary text from a postcolonial and/or ecocritical perspective. Such work should aim at producing new insight on a theoretical concept and/or the cultural text. They can also produce an undergraduate syllabus for a course at the intersection of postcolonialism and environmentalism or write a review essay discussing three recent monographs focused on postcolonial ecocriticism.", "short_title": "Postcolonial Ecologies", "title": "Postcolonial Ecologies", "school": "GS", @@ -4576,24 +9086,52 @@ "13:30", "15:20", "LC 319 - Linsly-Chittenden Hall 319", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, "skills": [], "areas": [], "flags": [ - "YC English: 20th\/21st Century" + "YC English: 20th/21st Century" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89346\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89346/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -4631,7 +9169,7 @@ "9:00", "10:15", "SML 323 - Sterling Memorial Library 323", - "https:\/\/map.yale.edu\/?id=1910#!m\/563698" + "https://map.yale.edu/?id=1910#!m/563698" ] ], "Wednesday": [ @@ -4639,7 +9177,7 @@ "9:00", "10:15", "SML 323 - Sterling Memorial Library 323", - "https:\/\/map.yale.edu\/?id=1910#!m\/563698" + "https://map.yale.edu/?id=1910#!m/563698" ] ] }, @@ -4653,10 +9191,91 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89140\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89140/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9975348711013794, + 0.9981271624565125, + 0.9984061121940613 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988658428192139, + 0.9985570311546326 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983124732971191, + 0.9988534450531006, + 0.9989063739776611 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 8, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 8 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -4694,7 +9313,7 @@ "9:00", "10:15", "SML 323 - Sterling Memorial Library 323", - "https:\/\/map.yale.edu\/?id=1910#!m\/563698" + "https://map.yale.edu/?id=1910#!m/563698" ] ], "Wednesday": [ @@ -4702,7 +9321,7 @@ "9:00", "10:15", "SML 323 - Sterling Memorial Library 323", - "https:\/\/map.yale.edu\/?id=1910#!m\/563698" + "https://map.yale.edu/?id=1910#!m/563698" ] ] }, @@ -4714,10 +9333,91 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89140\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89140/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9975348711013794, + 0.9981271624565125, + 0.9984061121940613 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988658428192139, + 0.9985570311546326 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983124732971191, + 0.9988534450531006, + 0.9989063739776611 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 8, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 8 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -4760,7 +9460,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -4798,7 +9526,7 @@ "11:35", "12:50", "HQ C07 - Humanities Quadrangle C07", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -4806,7 +9534,7 @@ "11:35", "12:50", "HQ C07 - Humanities Quadrangle C07", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -4828,10 +9556,91 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88466\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88466/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986862540245056, + 0.9988380074501038 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9970663189888, + 0.9909117221832275 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 1 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9993302822113037, + 0.999194324016571, + 0.9988996982574463 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 1 + }, + "sentiment_distribution": { + "NEGATIVE": 0.6666666666666666, + "POSITIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 4, + "final_proportion": 0.5714285714285714, + "final_counts": { + "POSITIVE": 4, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.5714285714285714, + "NEGATIVE": 0.42857142857142855 + } + } }, { "season_code": "202303", @@ -4869,7 +9678,7 @@ "11:35", "12:50", "HQ 213 - Humanities Quadrangle 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -4877,7 +9686,7 @@ "11:35", "12:50", "HQ 213 - Humanities Quadrangle 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -4893,10 +9702,123 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88100\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88100/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988813996315002, + 0.9988308548927307, + 0.9988503456115723, + 0.9989383816719055, + 0.9989110231399536, + 0.9987983703613281, + 0.9988721013069153, + 0.998641312122345 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988991022109985, + 0.9989137649536133, + 0.9988535642623901, + 0.9989153146743774, + 0.9988884329795837, + 0.9988142251968384, + 0.9988678693771362 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989333748817444, + 0.9985443353652954, + 0.96617192029953, + 0.9989041090011597, + 0.9989402890205383, + 0.9988597631454468, + 0.9988752007484436, + 0.9989134073257446 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "final_label": "POSITIVE", + "final_count": 22, + "final_proportion": 0.9565217391304348, + "final_counts": { + "POSITIVE": 22, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9565217391304348, + "NEGATIVE": 0.043478260869565216 + } + } }, { "season_code": "202303", @@ -4934,7 +9856,7 @@ "16:00", "17:15", "HQ 401 - Humanities Quadrangle 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -4942,7 +9864,7 @@ "16:00", "17:15", "HQ 401 - Humanities Quadrangle 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -4958,10 +9880,111 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88549\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88549/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987648725509644, + 0.998871386051178, + 0.9988734126091003, + 0.9989173412322998, + 0.9989240765571594, + 0.998799204826355 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988873600959778, + 0.9989163875579834, + 0.9989258646965027, + 0.9989078044891357, + 0.9989033937454224, + 0.998917818069458 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998914361000061, + 0.9853678345680237, + 0.9988364577293396, + 0.9989389777183533, + 0.998891294002533, + 0.9988930821418762 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 18 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -5001,7 +10024,7 @@ "14:30", "15:45", "WLH 210 - William L. Harkness Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -5009,7 +10032,7 @@ "14:30", "15:45", "WLH 210 - William L. Harkness Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -5018,17 +10041,128 @@ "Hu" ], "flags": [ - "YC English: 20th\/21st Century" + "YC English: 20th/21st Century" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92208\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92208/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989194869995117, + 0.998807430267334, + 0.9989216327667236, + 0.9989217519760132, + 0.9988271594047546, + 0.9989245533943176, + 0.9988633394241333, + 0.9989174604415894 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989226460456848, + 0.9987207055091858, + 0.9989091157913208, + 0.9989288449287415, + 0.998916506767273, + 0.9985612034797668, + 0.9989011287689209, + 0.9988120794296265 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989247918128967, + 0.9989142417907715, + 0.9988695979118347, + 0.9988844990730286, + 0.9986010193824768, + 0.9988746047019958, + 0.9989295601844788 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 23, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 23 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -5067,7 +10201,7 @@ "13:00", "14:15", "HQ C64 - Humanities Quadrangle C64", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -5075,7 +10209,7 @@ "13:00", "14:15", "HQ C64 - Humanities Quadrangle C64", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -5094,10 +10228,99 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88042\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88042/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986317753791809, + 0.9989140033721924, + 0.998847484588623, + 0.9986741542816162 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9981642365455627, + 0.9988633394241333, + 0.997173547744751 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9936844706535339, + 0.9989320635795593, + 0.9989342093467712, + 0.9989030361175537 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 0.9090909090909091, + "final_counts": { + "POSITIVE": 10, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + } + } }, { "season_code": "202303", @@ -5137,7 +10360,7 @@ "9:00", "10:15", "HQ C15 - Humanities Quadrangle C15", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -5145,7 +10368,7 @@ "9:00", "10:15", "HQ C15 - Humanities Quadrangle C15", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -5162,10 +10385,121 @@ "classnotes": "Please email eun-joo.ahn@yale.edu a brief message indicating your background and interest in this course. Preference may be given to those students interested in majoring in AMST, ER&M, CS, or PHYS. ", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92204\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92204/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.990673840045929, + 0.9987888932228088, + 0.9986708164215088, + 0.9989140033721924, + 0.9987428784370422, + 0.9988447427749634, + 0.9985144734382629 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988699555397034, + 0.9988747239112854, + 0.9987194538116455, + 0.9983106851577759, + 0.998822033405304, + 0.9945153594017029, + 0.9989140033721924, + 0.9986201524734497 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986554384231567, + 0.998920202255249, + 0.998874843120575, + 0.997432291507721, + 0.996787428855896, + 0.9988641738891602, + 0.9949188828468323 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 21, + "final_proportion": 0.9545454545454546, + "final_counts": { + "POSITIVE": 21, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9545454545454546, + "NEGATIVE": 0.045454545454545456 + } + } }, { "season_code": "202303", @@ -5204,7 +10538,7 @@ "10:30", "11:20", "DAVIES AUD - Davies Auditorium, Becton Ctr AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ], "Thursday": [ @@ -5212,7 +10546,7 @@ "10:30", "11:20", "DAVIES AUD - Davies Auditorium, Becton Ctr AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ] }, @@ -5221,7 +10555,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -5229,10 +10563,371 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88356\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88356/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988580942153931, + 0.9988933205604553, + 0.9935644268989563, + 0.9988135099411011, + 0.9988798499107361, + 0.9989247918128967, + 0.998908281326294, + 0.9989100694656372, + 0.9988325238227844, + 0.998337984085083, + 0.9869850277900696, + 0.9988309741020203, + 0.9847789406776428, + 0.9987959861755371, + 0.9987338185310364, + 0.9977317452430725, + 0.9988170862197876, + 0.9988971948623657, + 0.9988811612129211, + 0.9988672733306885, + 0.9987605810165405, + 0.9987659454345703, + 0.9986144304275513, + 0.9989199638366699, + 0.9988048076629639, + 0.9988235831260681, + 0.9986653327941895, + 0.9972550272941589, + 0.9988871216773987, + 0.9989134073257446, + 0.9988449811935425, + 0.9985390901565552, + 0.9988528490066528, + 0.9989044666290283, + 0.9988409876823425, + 0.9987278580665588, + 0.99891197681427, + 0.998818576335907, + 0.9988429546356201, + 0.9987229704856873, + 0.9987930059432983, + 0.9981689453125, + 0.9988182187080383, + 0.9995068311691284, + 0.9989205598831177, + 0.9989033937454224, + 0.9988229870796204 + ], + "sentiment_counts": { + "POSITIVE": 45, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.9574468085106383, + "NEGATIVE": 0.0425531914893617 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9574468085106383 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9973184466362, + 0.9989109039306641, + 0.994390070438385, + 0.9991052746772766, + 0.9988088607788086, + 0.99883633852005, + 0.9989284873008728, + 0.9988529682159424, + 0.998898983001709, + 0.9988847374916077, + 0.999250590801239, + 0.9986774325370789, + 0.9913535714149475, + 0.9956082701683044, + 0.9989192485809326, + 0.9986966252326965, + 0.998903751373291, + 0.9988358616828918, + 0.9978052973747253, + 0.9988744854927063, + 0.9989050626754761, + 0.9988178610801697, + 0.9946604371070862, + 0.968665361404419, + 0.9989261031150818, + 0.9986652135848999, + 0.9986633062362671, + 0.9981853365898132, + 0.9988303780555725, + 0.9968847632408142, + 0.9984055161476135, + 0.9989076852798462, + 0.9989191293716431, + 0.9967622756958008, + 0.9984508752822876, + 0.9987938404083252, + 0.9989098310470581, + 0.9989001750946045, + 0.9988588094711304, + 0.9991763234138489, + 0.9961057305335999, + 0.998770534992218, + 0.9932490587234497, + 0.9989251494407654, + 0.9982069730758667, + 0.9995063543319702, + 0.9988446235656738, + 0.9989081621170044, + 0.9988573789596558 + ], + "sentiment_counts": { + "POSITIVE": 42, + "NEGATIVE": 7 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988216757774353, + 0.9989269375801086, + 0.9967269897460938, + 0.997117280960083, + 0.998863935470581, + 0.9988920092582703, + 0.9988962411880493, + 0.9988969564437866, + 0.9989368319511414, + 0.9960112571716309, + 0.9988152980804443, + 0.998790442943573, + 0.9964878559112549, + 0.9989336133003235, + 0.9981259703636169, + 0.9989203214645386, + 0.9989221096038818, + 0.9989261031150818, + 0.998881995677948, + 0.9989110231399536, + 0.9989194869995117, + 0.9982553124427795, + 0.9989194869995117, + 0.999506950378418, + 0.9988441467285156, + 0.9987201690673828, + 0.998923122882843, + 0.9988987445831299, + 0.9988100528717041, + 0.9988017082214355, + 0.9989295601844788, + 0.998857855796814, + 0.9974476099014282, + 0.9994902610778809, + 0.9989234805107117, + 0.9989171028137207, + 0.9988625049591064, + 0.9988831877708435, + 0.9988987445831299, + 0.9988879561424255, + 0.9988844990730286, + 0.9988759160041809, + 0.9989005327224731, + 0.998907208442688, + 0.9989086389541626, + 0.9981536269187927, + 0.9988756775856018, + 0.9995146989822388, + 0.9988445043563843, + 0.9989041090011597, + 0.9984390139579773 + ], + "sentiment_counts": { + "POSITIVE": 45, + "NEGATIVE": 6 + }, + "sentiment_distribution": { + "POSITIVE": 0.8823529411764706, + "NEGATIVE": 0.11764705882352941 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8823529411764706 + ] + }, + "final_label": "POSITIVE", + "final_count": 132, + "final_proportion": 0.8979591836734694, + "final_counts": { + "POSITIVE": 132, + "NEGATIVE": 15 + }, + "final_distribution": { + "POSITIVE": 0.8979591836734694, + "NEGATIVE": 0.10204081632653061 + } + } }, { "season_code": "202303", @@ -5265,7 +10960,7 @@ "19:00", "19:50", "HQ C03 - Humanities Quadrangle C03", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -5274,7 +10969,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -5285,7 +10980,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -5318,7 +11041,7 @@ "20:00", "20:50", "HQ C03 - Humanities Quadrangle C03", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -5327,7 +11050,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -5338,7 +11061,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -5371,7 +11122,7 @@ "19:00", "19:50", "HQ 213 - Humanities Quadrangle 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -5380,7 +11131,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -5391,7 +11142,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -5424,7 +11203,7 @@ "20:00", "20:50", "HQ 213 - Humanities Quadrangle 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -5433,7 +11212,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -5444,7 +11223,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -5477,7 +11284,7 @@ "10:30", "11:20", "HQ 313 - Humanities Quadrangle 313", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -5486,7 +11293,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -5497,7 +11304,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -5530,7 +11365,7 @@ "9:25", "10:15", "HQ 313 - Humanities Quadrangle 313", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -5539,7 +11374,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -5550,7 +11385,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -5583,7 +11446,7 @@ "11:35", "12:25", "HQ C07 - Humanities Quadrangle C07", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -5592,7 +11455,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -5603,7 +11466,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -5636,7 +11527,7 @@ "9:25", "10:15", "WALL81 101 - 81 Wall Street 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -5645,7 +11536,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -5656,7 +11547,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -5689,7 +11608,7 @@ "10:30", "11:20", "HQ C07 - Humanities Quadrangle C07", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -5698,7 +11617,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -5709,7 +11628,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -5743,7 +11690,7 @@ "Hu" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC HIST: United States", "YC HIST: Ideas & Intellectuals", @@ -5760,7 +11707,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -5794,7 +11769,7 @@ "16:00", "16:50", "LC 104 - Linsly-Chittenden Hall 104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -5804,7 +11779,7 @@ ], "flags": [ "YC AMST: Early Americas", - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC GLBL: Elective" ], @@ -5816,7 +11791,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -5856,7 +11859,7 @@ "10:30", "11:20", "WLH 207 - William L. Harkness Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -5864,7 +11867,7 @@ "10:30", "11:20", "WLH 207 - William L. Harkness Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -5874,7 +11877,7 @@ ], "flags": [ "YC AMST: Early Americas", - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC GLBL: Elective", "Writing Skill (Opt.)" @@ -5884,10 +11887,163 @@ "classnotes": "", "final_exam": "Wednesday, December 20, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88052\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88052/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987622499465942, + 0.9985637068748474, + 0.9981940388679504, + 0.9988836646080017, + 0.998891294002533, + 0.9988515377044678, + 0.9988441467285156, + 0.9986981153488159, + 0.9988382458686829, + 0.9988227486610413, + 0.998862624168396, + 0.9988985061645508, + 0.9987123012542725, + 0.9988860487937927 + ], + "sentiment_counts": { + "POSITIVE": 14, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989362359046936, + 0.9987202882766724, + 0.9988697171211243, + 0.995686411857605, + 0.9988802075386047, + 0.9989157915115356, + 0.998916506767273, + 0.9978533387184143, + 0.9988899827003479, + 0.9985591769218445, + 0.9958202838897705, + 0.9994978904724121, + 0.9986525774002075 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8461538461538461, + "NEGATIVE": 0.15384615384615385 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8461538461538461 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998863697052002, + 0.9989250302314758, + 0.9988523721694946, + 0.998843789100647, + 0.9989257454872131, + 0.9975495934486389, + 0.9988769888877869, + 0.9993797540664673, + 0.9982553124427795, + 0.9987195730209351, + 0.999125063419342, + 0.9988341927528381, + 0.9989328980445862, + 0.998807430267334, + 0.9989216327667236, + 0.9962698221206665 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.8125, + "NEGATIVE": 0.1875 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8125 + ] + }, + "final_label": "POSITIVE", + "final_count": 38, + "final_proportion": 0.8837209302325582, + "final_counts": { + "POSITIVE": 38, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.8837209302325582, + "NEGATIVE": 0.11627906976744186 + } + } }, { "season_code": "202303", @@ -5921,7 +12077,7 @@ "14:30", "15:20", "BASSLB L70 - Bass Library L70", - "https:\/\/map.yale.edu\/?id=1910#!m\/564574" + "https://map.yale.edu/?id=1910#!m/564574" ] ] }, @@ -5931,7 +12087,7 @@ ], "flags": [ "YC AMST: Early Americas", - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC GLBL: Elective" ], @@ -5943,7 +12099,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -5977,7 +12161,7 @@ "10:30", "11:20", "WLH 113 - William L. Harkness Hall 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -5987,7 +12171,7 @@ ], "flags": [ "YC AMST: Early Americas", - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC GLBL: Elective" ], @@ -5999,7 +12183,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -6041,7 +12253,7 @@ "11:35", "12:25", "YUAG AUD - Yale University Art Gallery AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/559918" + "https://map.yale.edu/?id=1910#!m/559918" ] ], "Thursday": [ @@ -6049,7 +12261,7 @@ "11:35", "12:25", "YUAG AUD - Yale University Art Gallery AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/559918" + "https://map.yale.edu/?id=1910#!m/559918" ] ] }, @@ -6058,7 +12270,7 @@ "Hu" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC ENRG: Energy & Environment", "YC ENRG: Energy & Society", @@ -6069,10 +12281,339 @@ "classnotes": "", "final_exam": "Friday, December 15, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89565\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89565/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988375306129456, + 0.9745486974716187, + 0.9978081583976746, + 0.9988411068916321, + 0.998700737953186, + 0.9988883137702942, + 0.9987426400184631, + 0.998898983001709, + 0.9987830519676208, + 0.9994888305664062, + 0.9988528490066528, + 0.9983839988708496, + 0.9982752799987793, + 0.9988221526145935, + 0.9988779425621033, + 0.9988971948623657, + 0.9989123344421387, + 0.9987972974777222, + 0.9988614320755005, + 0.9988412261009216, + 0.9986856579780579, + 0.9512736797332764, + 0.9911984801292419, + 0.9987909197807312, + 0.9935370087623596, + 0.9989128112792969, + 0.9988229870796204, + 0.9988051652908325, + 0.998722493648529, + 0.9988749623298645, + 0.9988431930541992, + 0.9988594055175781, + 0.9987161159515381, + 0.9988018274307251, + 0.9987325072288513, + 0.998615026473999, + 0.9988515377044678, + 0.9987990856170654, + 0.9976200461387634 + ], + "sentiment_counts": { + "POSITIVE": 34, + "NEGATIVE": 5 + }, + "sentiment_distribution": { + "POSITIVE": 0.8717948717948718, + "NEGATIVE": 0.1282051282051282 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8717948717948718 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988767504692078, + 0.9988866448402405, + 0.9988052845001221, + 0.9985508322715759, + 0.9987472295761108, + 0.9988623857498169, + 0.9987657070159912, + 0.9957031607627869, + 0.9979584217071533, + 0.9989247918128967, + 0.9984208345413208, + 0.999489426612854, + 0.9986494183540344, + 0.9994025230407715, + 0.9989386200904846, + 0.9989216327667236, + 0.9987127780914307, + 0.9988584518432617, + 0.9986187219619751, + 0.9989338517189026, + 0.9983636736869812, + 0.9993415474891663, + 0.9989307522773743, + 0.9989222288131714, + 0.999431312084198, + 0.9995033740997314, + 0.9918841123580933, + 0.9987691044807434, + 0.9851342439651489, + 0.998908281326294, + 0.9982900023460388, + 0.9944076538085938, + 0.9986935257911682, + 0.9994964599609375, + 0.997230589389801, + 0.9988928437232971, + 0.9983024597167969, + 0.9893326759338379, + 0.998908281326294, + 0.9988983869552612, + 0.9987039566040039, + 0.9988982677459717, + 0.9987058639526367, + 0.9986599683761597, + 0.9981788396835327 + ], + "sentiment_counts": { + "POSITIVE": 34, + "NEGATIVE": 11 + }, + "sentiment_distribution": { + "POSITIVE": 0.7555555555555555, + "NEGATIVE": 0.24444444444444444 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7555555555555555 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989129304885864, + 0.9980422258377075, + 0.9772031307220459, + 0.9988924860954285, + 0.9985565543174744, + 0.9988566637039185, + 0.9989244341850281, + 0.9989210367202759, + 0.9988320469856262, + 0.9988540410995483, + 0.997117280960083, + 0.9979623556137085, + 0.878170907497406, + 0.998935878276825, + 0.9982725381851196, + 0.9994218349456787, + 0.9987792372703552, + 0.9989334940910339, + 0.9989062547683716, + 0.9988899827003479, + 0.9995080232620239, + 0.9982553124427795, + 0.9989147186279297, + 0.9989333748817444, + 0.9995095729827881, + 0.9988654851913452, + 0.9987298846244812, + 0.99947589635849, + 0.9986647367477417, + 0.9988137483596802, + 0.9995065927505493, + 0.9988718628883362, + 0.8759276270866394, + 0.9994837045669556, + 0.9988135099411011, + 0.9984739422798157, + 0.9988139867782593, + 0.9987475872039795, + 0.9988629817962646, + 0.9986599683761597, + 0.9982942938804626, + 0.998596727848053, + 0.9989272952079773, + 0.9989011287689209, + 0.9987940788269043, + 0.9988528490066528, + 0.9994882345199585 + ], + "sentiment_counts": { + "POSITIVE": 38, + "NEGATIVE": 9 + }, + "sentiment_distribution": { + "POSITIVE": 0.8085106382978723, + "NEGATIVE": 0.19148936170212766 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8085106382978723 + ] + }, + "final_label": "POSITIVE", + "final_count": 106, + "final_proportion": 0.8091603053435115, + "final_counts": { + "POSITIVE": 106, + "NEGATIVE": 25 + }, + "final_distribution": { + "POSITIVE": 0.8091603053435115, + "NEGATIVE": 0.19083969465648856 + } + } }, { "season_code": "202303", @@ -6112,7 +12653,7 @@ "11:35", "12:25", "WLH 201 - William L. Harkness Hall 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -6120,7 +12661,7 @@ "11:35", "12:25", "WLH 201 - William L. Harkness Hall 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -6130,7 +12671,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC GLHTH: Hist Approaches", "YC HIST: Race Gender & Sexuality", @@ -6143,10 +12684,287 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88408\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88408/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989221096038818, + 0.9989122152328491, + 0.9971765279769897, + 0.9988479614257812, + 0.9988617897033691, + 0.9988810420036316, + 0.9989307522773743, + 0.9989302754402161, + 0.999503493309021, + 0.9984203577041626, + 0.9988889098167419, + 0.9984398484230042, + 0.9985142350196838, + 0.9988987445831299, + 0.9985565543174744, + 0.9988300204277039, + 0.9988391995429993, + 0.9988646507263184, + 0.9988455772399902, + 0.9988808035850525, + 0.998936116695404, + 0.9993313550949097, + 0.9988445043563843, + 0.998875081539154, + 0.9985804557800293, + 0.991515040397644, + 0.9981314539909363, + 0.9987795948982239, + 0.998927652835846, + 0.9989064931869507, + 0.998665452003479, + 0.9982216954231262 + ], + "sentiment_counts": { + "POSITIVE": 29, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.90625, + "NEGATIVE": 0.09375 + }, + "sentiment_overall": [ + "POSITIVE", + 0.90625 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988808035850525, + 0.9989232420921326, + 0.9971765279769897, + 0.9987169504165649, + 0.9989343285560608, + 0.9988642930984497, + 0.9955214262008667, + 0.9989181756973267, + 0.9946451187133789, + 0.9982569813728333, + 0.9994854927062988, + 0.99892657995224, + 0.9988929629325867, + 0.9988682270050049, + 0.9988287091255188, + 0.9989097118377686, + 0.9984312653541565, + 0.9987331032752991, + 0.9987967014312744, + 0.9989365935325623, + 0.9989336133003235, + 0.9915447235107422, + 0.9988372921943665, + 0.9984152317047119, + 0.9987523555755615, + 0.9964898228645325, + 0.9988711476325989, + 0.9989134073257446, + 0.998863697052002, + 0.9988773465156555, + 0.9989261031150818, + 0.9989269375801086 + ], + "sentiment_counts": { + "POSITIVE": 27, + "NEGATIVE": 5 + }, + "sentiment_distribution": { + "POSITIVE": 0.84375, + "NEGATIVE": 0.15625 + }, + "sentiment_overall": [ + "POSITIVE", + 0.84375 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998896598815918, + 0.998497486114502, + 0.9988008737564087, + 0.9971765279769897, + 0.9989367127418518, + 0.9989266991615295, + 0.9989004135131836, + 0.9988742470741272, + 0.9989070892333984, + 0.9995094537734985, + 0.9980815649032593, + 0.9986956715583801, + 0.9989151954650879, + 0.9989186525344849, + 0.9981266856193542, + 0.9988677501678467, + 0.9988314509391785, + 0.9984139204025269, + 0.9989039897918701, + 0.9995056390762329, + 0.9984253644943237, + 0.9989351630210876, + 0.998708963394165, + 0.9989380240440369, + 0.9989187717437744, + 0.9989246726036072, + 0.9988629817962646, + 0.9994989633560181, + 0.997117280960083, + 0.9986889958381653, + 0.9922507405281067, + 0.9974708557128906, + 0.9989194869995117, + 0.998660683631897, + 0.9988895058631897, + 0.9989277720451355, + 0.9988332390785217, + 0.9987298846244812, + 0.9988711476325989, + 0.9981772899627686, + 0.9988407492637634 + ], + "sentiment_counts": { + "POSITIVE": 37, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.9024390243902439, + "NEGATIVE": 0.0975609756097561 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9024390243902439 + ] + }, + "final_label": "POSITIVE", + "final_count": 93, + "final_proportion": 0.8857142857142857, + "final_counts": { + "POSITIVE": 93, + "NEGATIVE": 12 + }, + "final_distribution": { + "POSITIVE": 0.8857142857142857, + "NEGATIVE": 0.11428571428571428 + } + } }, { "season_code": "202303", @@ -6180,7 +12998,7 @@ "14:30", "15:20", "WLH 210 - William L. Harkness Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -6190,7 +13008,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC GLHTH: Hist Approaches", "YC HIST: Race Gender & Sexuality", @@ -6206,7 +13024,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -6240,7 +13086,7 @@ "15:30", "16:20", "WLH 210 - William L. Harkness Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -6250,7 +13096,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC GLHTH: Hist Approaches", "YC HIST: Race Gender & Sexuality", @@ -6266,7 +13112,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -6300,7 +13174,7 @@ "13:30", "14:20", "WLH 209 - William L. Harkness Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -6310,7 +13184,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC GLHTH: Hist Approaches", "YC HIST: Race Gender & Sexuality", @@ -6326,7 +13200,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -6360,7 +13262,7 @@ "16:30", "17:20", "WLH 210 - William L. Harkness Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -6370,7 +13272,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC GLHTH: Hist Approaches", "YC HIST: Race Gender & Sexuality", @@ -6386,7 +13288,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -6420,7 +13350,7 @@ "8:20", "9:10", "WLH 009 - William L. Harkness Hall 009", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -6430,7 +13360,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC GLHTH: Hist Approaches", "YC HIST: Race Gender & Sexuality", @@ -6446,7 +13376,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -6480,7 +13438,7 @@ "9:25", "10:15", "WLH 009 - William L. Harkness Hall 009", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -6490,7 +13448,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC GLHTH: Hist Approaches", "YC HIST: Race Gender & Sexuality", @@ -6506,7 +13464,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -6540,7 +13526,7 @@ "19:00", "19:50", "HQ 113 - Humanities Quadrangle 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -6550,7 +13536,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC GLHTH: Hist Approaches", "YC HIST: Race Gender & Sexuality", @@ -6566,7 +13552,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -6600,7 +13614,7 @@ "13:30", "14:20", "WALL81 301 - 81 Wall Street 301", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -6610,7 +13624,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC GLHTH: Hist Approaches", "YC HIST: Race Gender & Sexuality", @@ -6626,7 +13640,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -6660,7 +13702,7 @@ "10:30", "11:20", "HQ C64 - Humanities Quadrangle C64", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -6670,7 +13712,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC GLHTH: Hist Approaches", "YC HIST: Race Gender & Sexuality", @@ -6686,7 +13728,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -6720,7 +13790,7 @@ "11:35", "12:25", "HQ C64 - Humanities Quadrangle C64", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -6730,7 +13800,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC GLHTH: Hist Approaches", "YC HIST: Race Gender & Sexuality", @@ -6746,7 +13816,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -6785,7 +13883,7 @@ "14:30", "15:45", "BM 013 - Bingham Hall 013", - "https:\/\/map.yale.edu\/?id=1910#!m\/559569" + "https://map.yale.edu/?id=1910#!m/559569" ] ], "Thursday": [ @@ -6793,7 +13891,7 @@ "14:30", "15:45", "BM 013 - Bingham Hall 013", - "https:\/\/map.yale.edu\/?id=1910#!m\/559569" + "https://map.yale.edu/?id=1910#!m/559569" ] ] }, @@ -6802,7 +13900,7 @@ ], "areas": [], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -6810,10 +13908,113 @@ "classnotes": "Please email alison.kibbe@yale.edu regarding your interest in this course.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90080\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90080/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989162683486938, + 0.9986416697502136, + 0.9988434314727783, + 0.9989340901374817, + 0.9988767504692078, + 0.9987854361534119 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988120794296265, + 0.9988454580307007, + 0.9989062547683716, + 0.9989228844642639, + 0.9989151954650879, + 0.9989268183708191, + 0.9973757266998291 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998924195766449, + 0.9989232420921326, + 0.9989232420921326, + 0.9984986782073975, + 0.9989062547683716, + 0.9989338517189026 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 19 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -6852,7 +14053,7 @@ "10:30", "11:20", "LUCE 101 - Luce Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ], "Wednesday": [ @@ -6860,7 +14061,7 @@ "10:30", "11:20", "LUCE 101 - Luce Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ] }, @@ -6869,7 +14070,7 @@ "Hu" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC GLBL: Elective", "YC HIST: United States", @@ -6883,10 +14084,289 @@ "classnotes": "", "final_exam": "Monday, December 18, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88507\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88507/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998719334602356, + 0.9984116554260254, + 0.9988136291503906, + 0.9989320635795593, + 0.9988324046134949, + 0.9989026784896851, + 0.9987913966178894, + 0.9988657236099243, + 0.9987034797668457, + 0.9988868832588196, + 0.9968256950378418, + 0.9989257454872131, + 0.9988752007484436, + 0.9988456964492798, + 0.9988148212432861, + 0.9987849593162537, + 0.9986757636070251, + 0.9989117383956909, + 0.998892605304718, + 0.9988835453987122, + 0.9987329840660095, + 0.9988890290260315, + 0.9981106519699097, + 0.998752236366272, + 0.9985998272895813, + 0.9987897276878357, + 0.9986281394958496, + 0.9987984895706177, + 0.9989116191864014, + 0.9988357424736023, + 0.9987951517105103, + 0.9966489672660828, + 0.9989224672317505, + 0.9989142417907715, + 0.9989173412322998, + 0.9988914132118225 + ], + "sentiment_counts": { + "POSITIVE": 36, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9992467164993286, + 0.9987441301345825, + 0.9988712668418884, + 0.9916486740112305, + 0.9989280104637146, + 0.9987932443618774, + 0.9695658087730408, + 0.992197573184967, + 0.9966341853141785, + 0.8261944055557251, + 0.9857897162437439, + 0.9989251494407654, + 0.9989365935325623, + 0.9987953901290894, + 0.9989191293716431, + 0.9986729621887207, + 0.9955092668533325, + 0.998872697353363, + 0.9988946318626404, + 0.9984707236289978, + 0.9987938404083252, + 0.9940075874328613, + 0.9986085295677185, + 0.9989198446273804, + 0.9989277720451355, + 0.9981675148010254, + 0.9993706345558167, + 0.9988019466400146, + 0.9986172914505005, + 0.9987775683403015, + 0.998857855796814, + 0.9986472725868225, + 0.9988607168197632, + 0.9988539218902588 + ], + "sentiment_counts": { + "NEGATIVE": 8, + "POSITIVE": 26 + }, + "sentiment_distribution": { + "NEGATIVE": 0.23529411764705882, + "POSITIVE": 0.7647058823529411 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7647058823529411 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994660019874573, + 0.9989173412322998, + 0.9988905787467957, + 0.9989038705825806, + 0.9986855387687683, + 0.9989135265350342, + 0.9988939166069031, + 0.9981873631477356, + 0.997117280960083, + 0.998735249042511, + 0.9988706707954407, + 0.9989287257194519, + 0.998904824256897, + 0.9987974166870117, + 0.9986609220504761, + 0.9988897442817688, + 0.9987824559211731, + 0.9986056685447693, + 0.998893678188324, + 0.9988278746604919, + 0.9988166093826294, + 0.9988821148872375, + 0.997117280960083, + 0.9987800717353821, + 0.9981470108032227, + 0.9988797307014465, + 0.9987481832504272, + 0.9989101886749268, + 0.9988996982574463, + 0.9977197051048279, + 0.9988507032394409, + 0.9992569088935852, + 0.9989029169082642, + 0.9863783121109009, + 0.998883068561554, + 0.9989109039306641 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 34 + }, + "sentiment_distribution": { + "NEGATIVE": 0.05555555555555555, + "POSITIVE": 0.9444444444444444 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9444444444444444 + ] + }, + "final_label": "POSITIVE", + "final_count": 96, + "final_proportion": 0.9056603773584906, + "final_counts": { + "POSITIVE": 96, + "NEGATIVE": 10 + }, + "final_distribution": { + "POSITIVE": 0.9056603773584906, + "NEGATIVE": 0.09433962264150944 + } + } }, { "season_code": "202303", @@ -6919,7 +14399,7 @@ "13:30", "14:20", "WTS A68 - Watson Center 60 Sachem Street A68", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -6928,7 +14408,7 @@ "Hu" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC HIST: United States", "YC HIST: Empires & Colonialism", @@ -6944,7 +14424,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -6977,7 +14485,7 @@ "19:00", "19:50", "WTS B52 - Watson Center 60 Sachem Street B52", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -6986,7 +14494,7 @@ "Hu" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC HIST: United States", "YC HIST: Empires & Colonialism", @@ -7002,7 +14510,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -7035,7 +14571,7 @@ "16:00", "16:50", "HQ C11 - Humanities Quadrangle C11", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -7044,7 +14580,7 @@ "Hu" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC HIST: United States", "YC HIST: Empires & Colonialism", @@ -7060,7 +14596,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -7093,7 +14657,7 @@ "17:00", "17:50", "HQ C11 - Humanities Quadrangle C11", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -7102,7 +14666,7 @@ "Hu" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC HIST: United States", "YC HIST: Empires & Colonialism", @@ -7118,7 +14682,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -7151,7 +14743,7 @@ "19:00", "19:50", "HQ 307 - Humanities Quadrangle 307", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -7160,7 +14752,7 @@ "Hu" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC HIST: United States", "YC HIST: Empires & Colonialism", @@ -7176,7 +14768,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -7209,7 +14829,7 @@ "10:30", "11:20", "LORIA 358 - Loria Center 358", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -7218,7 +14838,7 @@ "Hu" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC HIST: United States", "YC HIST: Empires & Colonialism", @@ -7234,7 +14854,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -7267,7 +14915,7 @@ "11:35", "12:25", "LORIA 358 - Loria Center 358", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -7276,7 +14924,7 @@ "Hu" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC HIST: United States", "YC HIST: Empires & Colonialism", @@ -7292,7 +14940,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -7325,7 +15001,7 @@ "13:30", "14:20", "WTS A39 - Watson Center 60 Sachem Street A39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -7334,7 +15010,7 @@ "Hu" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC HIST: United States", "YC HIST: Empires & Colonialism", @@ -7350,7 +15026,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -7400,7 +15104,7 @@ "Hu" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC HIST: United States", "YC HIST: Empires & Colonialism", @@ -7416,7 +15120,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -7449,7 +15181,7 @@ "14:30", "15:20", "WTS B39 - Watson Center 60 Sachem Street B39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -7458,7 +15190,7 @@ "Hu" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC HIST: United States", "YC HIST: Empires & Colonialism", @@ -7474,7 +15206,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -7507,7 +15267,7 @@ "14:30", "15:20", "HQ 307 - Humanities Quadrangle 307", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -7516,7 +15276,7 @@ "Hu" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC HIST: United States", "YC HIST: Empires & Colonialism", @@ -7532,12 +15292,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "This course provides an introduction to Latinx queer\u00a0trans* studies. We approach the field of Latinx queer trans*\u00a0studies as an\u00a0ongoing political project that emerges from social justice activism, gay\/lesbian\/queer\/trans\u00a0studies, critical\u00a0race feminism, cultural practitioners, among other work. We pay particular attention to the keywords \"trans,\" \"queer,\"\u00a0\"Chicanx,\" and\u00a0\"Latinx\" by placing them in productive tension with each other through varied\u00a0critical genealogies.", + "description": "This course provides an introduction to Latinx queer\u00a0trans* studies. We approach the field of Latinx queer trans*\u00a0studies as an\u00a0ongoing political project that emerges from social justice activism, gay/lesbian/queer/trans\u00a0studies, critical\u00a0race feminism, cultural practitioners, among other work. We pay particular attention to the keywords \"trans,\" \"queer,\"\u00a0\"Chicanx,\" and\u00a0\"Latinx\" by placing them in productive tension with each other through varied\u00a0critical genealogies.", "short_title": "Porvida: Latinx Queer Trans Life", "title": "Porvida: Latinx Queer Trans Life", "school": "YC", @@ -7571,7 +15359,7 @@ "9:25", "11:15", "WLH 209 - William L. Harkness Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -7581,7 +15369,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -7589,10 +15377,99 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88555\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88555/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988262057304382, + 0.9988682270050049, + 0.9987679123878479, + 0.9984970092773438 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985811710357666, + 0.9989326596260071, + 0.9988020658493042, + 0.9989140033721924 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988322854042053, + 0.9989150762557983, + 0.9989326596260071, + 0.9989365935325623 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 12 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -7626,7 +15503,7 @@ "13:30", "14:20", "YK220 100 - 220 York Street 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ] }, @@ -7635,7 +15512,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -7646,7 +15523,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -7680,7 +15585,7 @@ "14:30", "15:20", "YK220 100 - 220 York Street 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ] }, @@ -7689,7 +15594,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -7700,7 +15605,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -7734,7 +15667,7 @@ "16:00", "16:50", "HQ 401 - Humanities Quadrangle 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -7743,7 +15676,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -7754,7 +15687,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -7794,7 +15755,7 @@ "11:35", "12:50", "WLH 207 - William L. Harkness Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -7802,7 +15763,7 @@ "11:35", "12:50", "WLH 207 - William L. Harkness Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -7811,7 +15772,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -7819,10 +15780,153 @@ "classnotes": "Classroom requires IT equipment AND a large blackboard", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89097\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89097/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987013339996338, + 0.9989098310470581, + 0.9988991022109985, + 0.9989299178123474, + 0.9989342093467712, + 0.9977993369102478, + 0.998917818069458, + 0.998878538608551, + 0.9988840222358704, + 0.9987342953681946, + 0.9988994598388672, + 0.9988414645195007 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9963954091072083, + 0.9986048340797424, + 0.9988923668861389, + 0.999500036239624, + 0.9988455772399902, + 0.9988711476325989, + 0.9989233613014221, + 0.9989338517189026, + 0.9988629817962646, + 0.9988258481025696, + 0.9971650242805481, + 0.9805963039398193 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9166666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998489499092102, + 0.99872225522995, + 0.9985766410827637, + 0.9988051652908325, + 0.9988752007484436, + 0.9955050349235535, + 0.9989063739776611, + 0.9951392412185669, + 0.9989056587219238, + 0.9989150762557983, + 0.9989199638366699, + 0.9989042282104492, + 0.9989126920700073, + 0.997370719909668 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.7857142857142857, + "NEGATIVE": 0.21428571428571427 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7857142857142857 + ] + }, + "final_label": "POSITIVE", + "final_count": 34, + "final_proportion": 0.8947368421052632, + "final_counts": { + "POSITIVE": 34, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.8947368421052632, + "NEGATIVE": 0.10526315789473684 + } + } }, { "season_code": "202303", @@ -7856,7 +15960,7 @@ "17:00", "17:50", "HQ 401 - Humanities Quadrangle 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -7865,7 +15969,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -7876,7 +15980,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -7910,7 +16042,7 @@ "14:30", "15:20", "YK220 001 - 220 York Street 001", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ] }, @@ -7919,7 +16051,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -7930,7 +16062,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -7964,7 +16124,7 @@ "13:30", "14:20", "YK220 001 - 220 York Street 001", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ] }, @@ -7973,7 +16133,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -7984,12 +16144,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "Prerequisite: one or more AFAM courses.", - "description": "This course traces the birth and evolution of Black arts writing and criticism\u2212its style and content, its major themes and groundbreaking practices\u2212from the late nineteenth century through the 2020s. From the innovations of W.E.B. DuBois, Pauline Hopkins, and postbellum Black arts journalists to the breakthroughs of Harlem Renaissance heavyweights (Zora Neale Hurston, Langston Hughes and others), from the jazz experimentalism of Ralph Ellison and Albert Murray to the revolutionary criticism of Amiri Baraka, Lorraine Hansberry, James Baldwin, Phyl Garland and others, this class explores the intellectual work of pioneering writers who produced radical knowledge about Black culture. Its second half turns to the late twentieth and twenty-first century criticism of legendary arts journalists, scholars and critics: Toni Morrison, Thulani Davis, Margo Jefferson, Hilton Als, Greg Tate, Farah J. Griffin, Joan Morgan, Danyel Smith, Wesley Morris, Hanif Abdurraqib, and others. Emphasis will be placed on music, literary, film, and theater\/performance arts writing.", + "description": "This course traces the birth and evolution of Black arts writing and criticism\u2212its style and content, its major themes and groundbreaking practices\u2212from the late nineteenth century through the 2020s. From the innovations of W.E.B. DuBois, Pauline Hopkins, and postbellum Black arts journalists to the breakthroughs of Harlem Renaissance heavyweights (Zora Neale Hurston, Langston Hughes and others), from the jazz experimentalism of Ralph Ellison and Albert Murray to the revolutionary criticism of Amiri Baraka, Lorraine Hansberry, James Baldwin, Phyl Garland and others, this class explores the intellectual work of pioneering writers who produced radical knowledge about Black culture. Its second half turns to the late twentieth and twenty-first century criticism of legendary arts journalists, scholars and critics: Toni Morrison, Thulani Davis, Margo Jefferson, Hilton Als, Greg Tate, Farah J. Griffin, Joan Morgan, Danyel Smith, Wesley Morris, Hanif Abdurraqib, and others. Emphasis will be placed on music, literary, film, and theater/performance arts writing.", "short_title": "Black Arts Criticism: Intelle...", "title": "Black Arts Criticism: Intellectual Life of Black Culture from W.E.B. DuBois to the 21st Century", "school": "YC", @@ -8023,7 +16211,7 @@ "13:30", "15:20", "WALL81 201 - 81 Wall Street 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -8034,13 +16222,112 @@ "flags": [], "regnotes": "", "rp_attr": "This course meets during the Reading Period: the week between the last week of classes and finals week. Meets Reading Period", - "classnotes": "Please note: Instructor Permission Requests will not be reviewed until add\/drop period in August. This course requires an application which will be provided by the instructor.", + "classnotes": "Please note: Instructor Permission Requests will not be reviewed until add/drop period in August. This course requires an application which will be provided by the instructor.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89259\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89259/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988983869552612, + 0.9988607168197632, + 0.9988065958023071, + 0.998902440071106, + 0.9988353848457336, + 0.9989376664161682 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988515377044678, + 0.9988080263137817, + 0.9988665580749512, + 0.998903751373291, + 0.9988962411880493 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989136457443237, + 0.9989116191864014, + 0.9988300204277039, + 0.9989012479782104, + 0.9988804459571838, + 0.9989251494407654 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 17 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -8079,7 +16366,7 @@ "15:30", "17:20", "RKZ 02 - Rosenkranz Hall 02", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -8088,21 +16375,132 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", - "YC English: 20th\/21st Century", + "YC English: 20th/21st Century", "YC English: Junior Seminar", "YC PLSC: American Govt" ], "regnotes": "", "rp_attr": "", - "classnotes": "This course requires instructor permission. It is available only to upper-class students. Journalism experience is not required. However excellent writing skills are essential. Applicants must submit the following: Class\/Major\/GPA\/Previous related courses or experience\/paragraph stating the basis of your interest in this course.", + "classnotes": "This course requires instructor permission. It is available only to upper-class students. Journalism experience is not required. However excellent writing skills are essential. Applicants must submit the following: Class/Major/GPA/Previous related courses or experience/paragraph stating the basis of your interest in this course.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89038\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89038/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988344311714172, + 0.9988247752189636, + 0.998836100101471, + 0.9989027976989746, + 0.9989182949066162, + 0.9988915324211121, + 0.998763918876648 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983536005020142, + 0.9989163875579834, + 0.9988166093826294, + 0.9988476037979126, + 0.9983481168746948, + 0.9989200830459595, + 0.9989365935325623, + 0.9989151954650879 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986491799354553, + 0.9989094734191895, + 0.9989135265350342, + 0.9988943934440613, + 0.9951733946800232, + 0.9989062547683716, + 0.998928964138031, + 0.9943826198577881 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 23, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 23 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -8144,7 +16542,7 @@ "10:30", "11:20", "WLH 119 - William L. Harkness Hall 119", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -8152,7 +16550,7 @@ "10:30", "11:20", "WLH 119 - William L. Harkness Hall 119", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -8162,7 +16560,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC GLBL: Addtl Methods Course" ], @@ -8171,10 +16569,131 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89998\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89998/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987189769744873, + 0.9988607168197632, + 0.9985671043395996, + 0.9986383318901062, + 0.9988172650337219, + 0.9988409876823425, + 0.9988889098167419 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988678693771362, + 0.9988924860954285, + 0.9981393814086914, + 0.9983080625534058, + 0.9994785189628601, + 0.998812198638916, + 0.9988958835601807, + 0.9981482028961182, + 0.9988400340080261 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989197254180908, + 0.9954397678375244, + 0.9989020824432373, + 0.9989036321640015, + 0.99472576379776, + 0.999492883682251, + 0.9989197254180908, + 0.9988096952438354, + 0.9989226460456848, + 0.9988836646080017, + 0.9970128536224365 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9090909090909091 + ] + }, + "final_label": "POSITIVE", + "final_count": 23, + "final_proportion": 0.8518518518518519, + "final_counts": { + "POSITIVE": 23, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.8518518518518519, + "NEGATIVE": 0.14814814814814814 + } + } }, { "season_code": "202303", @@ -8207,7 +16726,7 @@ "16:00", "16:50", "WTS A68 - Watson Center 60 Sachem Street A68", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -8217,7 +16736,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -8228,7 +16747,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -8261,7 +16808,7 @@ "16:00", "16:50", "HQ C15 - Humanities Quadrangle C15", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -8271,7 +16818,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -8282,7 +16829,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -8315,7 +16890,7 @@ "13:30", "14:20", "WTS B52 - Watson Center 60 Sachem Street B52", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -8325,7 +16900,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -8336,7 +16911,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -8369,7 +16972,7 @@ "13:30", "14:20", "WTS B30 - Watson Center 60 Sachem Street B30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -8379,7 +16982,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -8390,7 +16993,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -8423,7 +17054,7 @@ "15:30", "16:20", "LC 204 - Linsly-Chittenden Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -8433,7 +17064,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC GLBL: Addtl Methods Course" ], @@ -8445,7 +17076,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -8478,7 +17137,7 @@ "16:30", "17:20", "LC 204 - Linsly-Chittenden Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -8488,7 +17147,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC GLBL: Addtl Methods Course" ], @@ -8500,7 +17159,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -8539,7 +17226,7 @@ "9:25", "11:15", "HQ C11 - Humanities Quadrangle C11", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -8556,10 +17243,97 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90588\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90588/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988436698913574, + 0.9988800883293152, + 0.9986497759819031, + 0.9988303780555725 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988617897033691, + 0.9955440163612366, + 0.9989086389541626 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988827109336853, + 0.998917818069458, + 0.9988692402839661, + 0.9989299178123474 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 11 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -8598,7 +17372,7 @@ "15:30", "17:20", "HQ C03 - Humanities Quadrangle C03", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -8607,7 +17381,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC EDST: Social Context" ], @@ -8616,10 +17390,99 @@ "classnotes": "Priority is given to students in the Education Studies program (Scholar and Certificate) and then by course year. Please indicate your interest in the course as well as major, EDST program and whether you've taken EDST 110 when you request permission.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88377\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88377/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985948204994202, + 0.9988940358161926, + 0.9985036849975586, + 0.9987912774085999 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989103078842163, + 0.9989356398582458, + 0.9987566471099854, + 0.9989346861839294 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981096982955933, + 0.9989301562309265, + 0.9988565444946289, + 0.9983932375907898 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 12 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -8659,7 +17522,7 @@ "11:35", "12:25", "LORIA 250 - Loria Center 250", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ], "Wednesday": [ @@ -8667,7 +17530,7 @@ "11:35", "12:25", "LORIA 250 - Loria Center 250", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -8676,7 +17539,7 @@ "Hu" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -8684,10 +17547,143 @@ "classnotes": "", "final_exam": "Sunday, December 17, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88112\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88112/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998836100101471, + 0.9976512789726257, + 0.9988808035850525, + 0.9988939166069031, + 0.9978989362716675, + 0.9989308714866638, + 0.9987949132919312, + 0.9989008903503418, + 0.9988837838172913 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998794436454773, + 0.9982981085777283, + 0.9988808035850525, + 0.9980149269104004, + 0.9989116191864014, + 0.9994109869003296, + 0.998367965221405, + 0.9980337023735046, + 0.9988916516304016, + 0.9987894892692566, + 0.9989295601844788, + 0.9989262223243713 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9166666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988376498222351, + 0.998847246170044, + 0.9989227652549744, + 0.9988154172897339, + 0.9989237189292908, + 0.9986734390258789, + 0.9985941052436829, + 0.9988535642623901, + 0.9988871216773987, + 0.9988312125205994, + 0.9983710646629333, + 0.9986194372177124 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 32, + "final_proportion": 0.9696969696969697, + "final_counts": { + "POSITIVE": 32, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9696969696969697, + "NEGATIVE": 0.030303030303030304 + } + } }, { "season_code": "202303", @@ -8721,7 +17717,7 @@ "15:30", "16:20", "WLH 120 - William L. Harkness Hall 120", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -8730,7 +17726,7 @@ "Hu" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -8741,7 +17737,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -8775,7 +17799,7 @@ "16:30", "17:20", "WLH 113 - William L. Harkness Hall 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -8784,7 +17808,7 @@ "Hu" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -8795,7 +17819,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -8829,7 +17881,7 @@ "13:30", "14:20", "HQ C07 - Humanities Quadrangle C07", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -8838,7 +17890,7 @@ "Hu" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -8849,7 +17901,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -8883,7 +17963,7 @@ "14:30", "15:20", "HQ C07 - Humanities Quadrangle C07", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -8892,7 +17972,7 @@ "Hu" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -8903,7 +17983,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -8937,7 +18045,7 @@ "13:30", "14:20", "LC 212 - Linsly-Chittenden Hall 212", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -8946,7 +18054,7 @@ "Hu" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -8957,7 +18065,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -8991,7 +18127,7 @@ "15:30", "16:20", "LC 213 - Linsly-Chittenden Hall 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -9000,7 +18136,7 @@ "Hu" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -9011,7 +18147,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -9045,7 +18209,7 @@ "14:30", "15:20", "HQ C65 - Humanities Quadrangle C65", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -9054,7 +18218,7 @@ "Hu" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -9065,7 +18229,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -9099,7 +18291,7 @@ "17:00", "17:50", "HQ C65 - Humanities Quadrangle C65", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -9108,7 +18300,7 @@ "Hu" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -9119,7 +18311,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -9162,10 +18382,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89099\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89099/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -9204,7 +18452,7 @@ "9:25", "11:15", "HQ 313 - Humanities Quadrangle 313", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -9220,10 +18468,103 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90362\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90362/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987460374832153, + 0.9989262223243713, + 0.9981698989868164 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988895058631897, + 0.9989159107208252, + 0.9994282126426697, + 0.9989380240440369, + 0.998887836933136 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987872242927551, + 0.9988885521888733, + 0.9995037317276001, + 0.9988582134246826, + 0.998910665512085 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 0.8461538461538461, + "final_counts": { + "POSITIVE": 11, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8461538461538461, + "NEGATIVE": 0.15384615384615385 + } + } }, { "season_code": "202303", @@ -9261,7 +18602,7 @@ "11:35", "12:50", "LC 210 - Linsly-Chittenden Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -9269,7 +18610,7 @@ "11:35", "12:50", "LC 210 - Linsly-Chittenden Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -9281,7 +18622,7 @@ ], "flags": [ "YC AMST: Junior Seminars", - "YC English: 20th\/21st Century", + "YC English: 20th/21st Century", "YC English: Junior Seminar" ], "regnotes": "", @@ -9289,10 +18630,111 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89106\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89106/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988797307014465, + 0.9988874793052673, + 0.9988452196121216, + 0.9989251494407654, + 0.9989321827888489 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988787770271301, + 0.998896598815918, + 0.998889148235321, + 0.9988786578178406, + 0.9988608360290527, + 0.9989124536514282 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998892605304718, + 0.9989039897918701, + 0.9986831545829773, + 0.9988783001899719, + 0.9989184141159058, + 0.9989200830459595, + 0.9988597631454468 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 18 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -9331,7 +18773,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -9375,7 +18845,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -9413,7 +18911,7 @@ "14:30", "15:45", "HQ C07 - Humanities Quadrangle C07", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -9421,7 +18919,7 @@ "14:30", "15:45", "HQ C07 - Humanities Quadrangle C07", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -9437,10 +18935,89 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88569\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88569/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989191293716431 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989339709281921, + 0.998927891254425 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989162683486938, + 0.9989356398582458, + 0.9989162683486938, + 0.9989197254180908 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 7 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -9482,7 +19059,7 @@ "13:30", "15:20", "WLH 115 - William L. Harkness Hall 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -9500,10 +19077,95 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88185\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88185/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989055395126343, + 0.9988481998443604, + 0.9988681077957153 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998902440071106, + 0.9825111031532288, + 0.9989070892333984 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989234805107117, + 0.9978604912757874, + 0.9989123344421387 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 0.7777777777777778, + "final_counts": { + "POSITIVE": 7, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.7777777777777778, + "NEGATIVE": 0.2222222222222222 + } + } }, { "season_code": "202303", @@ -9542,7 +19204,7 @@ "12:00", "15:00", "BRBL - BRBL", - "https:\/\/map.yale.edu\/?id=1910#!m\/531533" + "https://map.yale.edu/?id=1910#!m/531533" ] ] }, @@ -9554,7 +19216,7 @@ ], "flags": [ "YC AMST: Junior Seminars", - "YC English: 20th\/21st Century", + "YC English: 20th/21st Century", "YC English: Junior Seminar" ], "regnotes": "", @@ -9562,15 +19224,116 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89489\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89489/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "", - "description": "South Asian Americans have appeared on U.S. stages since the late nineteenth century, yet only in the last quarter century have plays and performances by South Asian Americans begun to dismantle dominant cultural representations of South Asian and South Asian American communities and to imagine new ways of belonging. This seminar introduces you to contemporary works of performance (plays, stand-up sets, multimedia events) written and created by U.S.-based artists of South Asian descent as well as artists of the South Asian diaspora whose works have had an impact on U.S. audiences. With awareness that the South Asian American diaspora comprises multiple, contested, and contingent identities, we investigate how artists have worked to manifest complex representations of South Asian Americans onstage, challenge institutional and professional norms, and navigate the perils and pleasures of becoming visible. No prior experience with or study of theater\/performance required. Students in all years and majors welcome.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989125728607178, + 0.9989162683486938, + 0.9988430738449097, + 0.9989159107208252, + 0.9989309906959534 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.99885094165802, + 0.998633086681366, + 0.9989224672317505, + 0.9988797307014465, + 0.9989097118377686 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989286065101624, + 0.9989244341850281, + 0.9989396929740906, + 0.9988844990730286, + 0.9989045858383179, + 0.9988904595375061, + 0.9989011287689209 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 0.9411764705882353, + "final_counts": { + "POSITIVE": 16, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9411764705882353, + "NEGATIVE": 0.058823529411764705 + } + } + }, + { + "season_code": "202303", + "requirements": "", + "description": "South Asian Americans have appeared on U.S. stages since the late nineteenth century, yet only in the last quarter century have plays and performances by South Asian Americans begun to dismantle dominant cultural representations of South Asian and South Asian American communities and to imagine new ways of belonging. This seminar introduces you to contemporary works of performance (plays, stand-up sets, multimedia events) written and created by U.S.-based artists of South Asian descent as well as artists of the South Asian diaspora whose works have had an impact on U.S. audiences. With awareness that the South Asian American diaspora comprises multiple, contested, and contingent identities, we investigate how artists have worked to manifest complex representations of South Asian Americans onstage, challenge institutional and professional norms, and navigate the perils and pleasures of becoming visible. No prior experience with or study of theater/performance required. Students in all years and majors welcome.", "short_title": "Drama in Diaspora: South Asia...", "title": "Drama in Diaspora: South Asian American Theater and Performance", "school": "YC", @@ -9605,7 +19368,7 @@ "15:30", "17:20", "LC 204 - Linsly-Chittenden Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -9622,10 +19385,99 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89007\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89007/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988683462142944, + 0.9988677501678467, + 0.9980084300041199 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9943370223045349, + 0.997211754322052, + 0.998895525932312, + 0.9989205598831177 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998256504535675, + 0.9876799583435059, + 0.9898523688316345, + 0.9987894892692566 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 0.9090909090909091, + "final_counts": { + "POSITIVE": 10, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + } + } }, { "season_code": "202303", @@ -9666,7 +19518,7 @@ "13:30", "15:20", "SA10 105 - 10 Sachem Street 105", - "https:\/\/map.yale.edu\/?id=1910#!m\/559538" + "https://map.yale.edu/?id=1910#!m/559538" ] ] }, @@ -9682,10 +19534,87 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89223\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89223/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986903071403503, + 0.998907208442688 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984861016273499, + 0.9983811378479004 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985307455062866, + 0.9988996982574463 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 6 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -9723,7 +19652,7 @@ "13:30", "15:20", "HQ C11 - Humanities Quadrangle C11", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -9741,10 +19670,111 @@ "classnotes": "Please email the professor to express interest in the seminar, including your name, year, major, and a description of your background in earlier coursework.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88120\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88120/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988502264022827, + 0.9988619089126587, + 0.998900294303894, + 0.9988518953323364, + 0.99892657995224 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989078044891357, + 0.9989206790924072, + 0.9988524913787842, + 0.998913049697876, + 0.9988808035850525, + 0.9989122152328491 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989020824432373, + 0.9989155530929565, + 0.9988534450531006, + 0.9973936080932617, + 0.9989079236984253, + 0.9989176988601685, + 0.9988958835601807 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 18 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -9791,7 +19821,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -9829,7 +19887,7 @@ "13:00", "14:15", "WLH 002 - William L. Harkness Hall 002", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -9837,7 +19895,7 @@ "13:00", "14:15", "WLH 002 - William L. Harkness Hall 002", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -9851,10 +19909,91 @@ "classnotes": "To receive instructor\u2019s permission for this seminar, please email michael.denning@yale.edu. Please include year, major, and any special interests or reasons for taking the seminar.\n\nAlso, not for instructor\u2019s permission, but before the first class: please send to michael.denning@yale.edu a brief, informal reply to any or all of these questions: \"What and where have you learned about marxism, socialism, and the social movements? In what contexts have you read Marx or other social movement writers? In high school, college, elsewhere? How would you define marxism, socialism or the social movements?\"", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88945\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88945/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989161491394043, + 0.9988516569137573 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988804459571838, + 0.9872643947601318 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989374279975891, + 0.9983795881271362, + 0.9983214735984802, + 0.9989012479782104 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 8, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 8 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -9893,7 +20032,7 @@ "9:25", "11:15", "WTS B74 - Watson Center 60 Sachem Street B74", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -9918,10 +20057,107 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92446\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92446/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989008903503418, + 0.9985145926475525, + 0.9987605810165405, + 0.9988596439361572, + 0.9988419413566589 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9943516254425049, + 0.9988908171653748, + 0.9989110231399536, + 0.9973922967910767 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989041090011597, + 0.9652627110481262, + 0.9987906813621521, + 0.9988106489181519, + 0.9988031387329102, + 0.998938262462616, + 0.998934805393219 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 16 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -9960,7 +20196,7 @@ "9:25", "11:15", "HQ C01 - Humanities Quadrangle C01", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -9983,15 +20219,100 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88056\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88056/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "", - "description": "Since 9\/11, cases of what has been termed \"home-grown terrorism\" have cemented the fear that \"bad\" Islam is not just something that exists far away, in distant lands. As a result, there has been an urgent interest to understand who American Muslims are by officials, experts, journalists, and the public. Although Muslims have been part of America\u2019s story from its founding, Muslims have alternated from an invisible minority to the source of national moral panics, capturing national attention during political crises, as a cultural threat or even a potential fifth column. Today the stakes are high to understand what kinds of meanings and attachments connect Muslims in America to the Muslim world and to the US as a nation.\u00a0Over the course of the semester, students grapple with how to define and apply the slippery concept of diaspora to different dispersed Muslim populations in the US, including racial and ethnic diasporas, trading diasporas, political diasporas, and others. By focusing on a range of communities-in-motion and a diverse set of cultural texts, students explore the ways mobility, loss, and communal identity are conceptualized by immigrants, expatriates, refugees, guest-workers, religious seekers, and exiles. To this end, we read histories, ethnographies, essays, policy papers, novels, poetry, memoirs; we watch documentary and fictional films; we listen to music, speeches, spoken word performances, and prayers. Our aim is to deepen our understanding of the multiple meanings and conceptual limits of homeland and diaspora for Muslims in America, particularly in the Age of Terror.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987114667892456, + 0.9988917708396912, + 0.9988821148872375 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9970687031745911, + 0.9988510608673096, + 0.9989379048347473 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989217519760132, + 0.9987832903862, + 0.9989176988601685 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 8, + "final_proportion": 0.8888888888888888, + "final_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + } + } + }, + { + "season_code": "202303", + "requirements": "", + "description": "Since 9/11, cases of what has been termed \"home-grown terrorism\" have cemented the fear that \"bad\" Islam is not just something that exists far away, in distant lands. As a result, there has been an urgent interest to understand who American Muslims are by officials, experts, journalists, and the public. Although Muslims have been part of America\u2019s story from its founding, Muslims have alternated from an invisible minority to the source of national moral panics, capturing national attention during political crises, as a cultural threat or even a potential fifth column. Today the stakes are high to understand what kinds of meanings and attachments connect Muslims in America to the Muslim world and to the US as a nation.\u00a0Over the course of the semester, students grapple with how to define and apply the slippery concept of diaspora to different dispersed Muslim populations in the US, including racial and ethnic diasporas, trading diasporas, political diasporas, and others. By focusing on a range of communities-in-motion and a diverse set of cultural texts, students explore the ways mobility, loss, and communal identity are conceptualized by immigrants, expatriates, refugees, guest-workers, religious seekers, and exiles. To this end, we read histories, ethnographies, essays, policy papers, novels, poetry, memoirs; we watch documentary and fictional films; we listen to music, speeches, spoken word performances, and prayers. Our aim is to deepen our understanding of the multiple meanings and conceptual limits of homeland and diaspora for Muslims in America, particularly in the Age of Terror.", "short_title": "Muslims in the United States", "title": "Muslims in the United States", "school": "YC", @@ -10046,10 +20367,87 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90433\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90433/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989101886749268 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989374279975891 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989404082298279, + 0.9988607168197632, + 0.9989339709281921, + 0.9989374279975891 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 6 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -10090,7 +20488,7 @@ "15:30", "17:20", "WLH 202 - William L. Harkness Hall 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -10107,10 +20505,113 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90678\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90678/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998809814453125, + 0.998860239982605, + 0.9986899495124817, + 0.9989328980445862, + 0.9988508224487305, + 0.9988728165626526, + 0.9989239573478699 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987543821334839, + 0.9989011287689209, + 0.9760379791259766, + 0.9978674650192261, + 0.9987699389457703 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983333945274353, + 0.9989117383956909, + 0.998925507068634, + 0.9988470077514648, + 0.998916506767273, + 0.9988755583763123, + 0.9981794357299805 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 19 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -10148,7 +20649,7 @@ "13:30", "15:20", "WLH 013 - William L. Harkness Hall 013", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -10169,15 +20670,132 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88125\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88125/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "", - "description": "Exploration of sex, science fiction, and the\u00a0downtown scene in New York City, through the archives and writings of Samuel R. Delany. Particular attention to the intersections of music, nightlife, avant-garde performance, literature, and visual art, within the context of social movements from feminism, gay liberation, and HIV\/AIDs activism.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989053010940552, + 0.9968112111091614, + 0.9988321661949158, + 0.9989100694656372, + 0.9983306527137756, + 0.998830258846283, + 0.9914087653160095, + 0.9994896650314331 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982663989067078, + 0.998781144618988, + 0.9987290501594543, + 0.998898983001709, + 0.9961236119270325, + 0.9985944628715515, + 0.9987375140190125, + 0.9984361529350281 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9391536712646484, + 0.9988952279090881, + 0.9988362193107605, + 0.9983124732971191, + 0.9988841414451599, + 0.9989196062088013, + 0.9985412359237671, + 0.9986931681632996, + 0.9969120025634766 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 8 + }, + "sentiment_distribution": { + "NEGATIVE": 0.1111111111111111, + "POSITIVE": 0.8888888888888888 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "final_label": "POSITIVE", + "final_count": 23, + "final_proportion": 0.92, + "final_counts": { + "POSITIVE": 23, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.92, + "NEGATIVE": 0.08 + } + } + }, + { + "season_code": "202303", + "requirements": "", + "description": "Exploration of sex, science fiction, and the\u00a0downtown scene in New York City, through the archives and writings of Samuel R. Delany. Particular attention to the intersections of music, nightlife, avant-garde performance, literature, and visual art, within the context of social movements from feminism, gay liberation, and HIV/AIDs activism.", "short_title": "Samuel Delany and His Worlds", "title": "Samuel Delany and His Worlds", "school": "YC", @@ -10212,7 +20830,7 @@ "15:30", "17:20", "HQ 123 - Humanities Quadrangle 123", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -10228,10 +20846,38 @@ "classnotes": "If you are interested in enrolling in this class, send a short email from your Yale account to tavia.nyongo@yale.edu giving your year, major, and a couple of sentences about what background and interests would enable you to contribute to the seminar discussion.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92366\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/92366/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -10272,7 +20918,7 @@ "19:00", "22:00", "LC 101 - Linsly-Chittenden Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Tuesday": [ @@ -10280,7 +20926,7 @@ "15:30", "17:20", "HQ 127 - Humanities Quadrangle 127", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -10300,10 +20946,97 @@ "classnotes": "Graduate students should contact charles.musser@yale.edu prior to registration.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89300\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89300/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989018440246582, + 0.9989114999771118 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9991810917854309, + 0.9989157915115356, + 0.9976010918617249, + 0.9978734254837036 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.25, + "POSITIVE": 0.75 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9954452514648438, + 0.998931348323822, + 0.9863911867141724, + 0.9985030889511108 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 0.9, + "final_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + } + } }, { "season_code": "202303", @@ -10341,7 +21074,7 @@ "9:25", "11:15", "HQ 209 - Humanities Quadrangle 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -10358,10 +21091,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88826\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88826/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -10402,7 +21163,7 @@ "15:30", "17:20", "WLH 204 - William L. Harkness Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -10421,10 +21182,101 @@ "classnotes": "Priority is given to students in the Education Studies program (Scholar and Certificate) and then by course year. Please indicate your interest in the course as well as major, EDST program and whether you've taken EDST 110 when you request permission. ", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88362\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88362/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998609185218811, + 0.9988056421279907, + 0.9986715316772461 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989110231399536, + 0.9983341097831726, + 0.9988967180252075, + 0.9983867406845093 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998891294002533, + 0.9986816048622131, + 0.9988476037979126, + 0.9988846182823181, + 0.9989123344421387 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 0.9166666666666666, + "final_counts": { + "POSITIVE": 11, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + } + } }, { "season_code": "202303", @@ -10467,7 +21319,7 @@ "19:00", "22:00", "LC 101 - Linsly-Chittenden Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -10475,7 +21327,7 @@ "15:30", "18:20", "CCAM 110 - Center for Collab Arts & Media 110", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -10490,10 +21342,81 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88288\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88288/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981396198272705 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986857771873474 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9978218078613281 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 3, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 3 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -10539,10 +21462,38 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88435\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88435/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -10583,7 +21534,7 @@ "13:30", "15:20", "HQ 123 - Humanities Quadrangle 123", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -10600,10 +21551,81 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90679\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90679/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986874461174011 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988276362419128 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988947510719299 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 3, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 3 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -10642,13 +21664,41 @@ ], "regnotes": "", "rp_attr": "", - "classnotes": "Please consult with the American Studies DUS prior to registration. An application form and a brief prospectus is due the last day of the add\/drop period by 5pm via email to the American Studies DUS and undergraduate registrar.", + "classnotes": "Please consult with the American Studies DUS prior to registration. An application form and a brief prospectus is due the last day of the add/drop period by 5pm via email to the American Studies DUS and undergraduate registrar.", "final_exam": "No regular final examination", "course_home_url": "", "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -10687,13 +21737,92 @@ ], "regnotes": "", "rp_attr": "", - "classnotes": "Please consult with the American Studies DUS prior to registration. A senior essay application form and a brief prospectus is due by 5pm the last day of the add\/drop period via email to the American Studies DUS and undergraduate registrar.", + "classnotes": "Please consult with the American Studies DUS prior to registration. A senior essay application form and a brief prospectus is due by 5pm the last day of the add/drop period via email to the American Studies DUS and undergraduate registrar.", "final_exam": "No regular final examination", "course_home_url": "", "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9973303079605103, + 0.9979142546653748 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 1 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9987230896949768, + 0.9990866184234619 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986329674720764, + 0.9989091157913208 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 4, + "final_proportion": 0.6666666666666666, + "final_counts": { + "NEGATIVE": 2, + "POSITIVE": 4 + }, + "final_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + } + } }, { "season_code": "202303", @@ -10730,7 +21859,7 @@ "9:25", "11:15", "HQ 113 - Humanities Quadrangle 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -10744,10 +21873,38 @@ "classnotes": "Please consult with the American Studies DUS prior to registration. ", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88142\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88142/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -10784,7 +21941,7 @@ "15:30", "17:20", "HQ 327 - Humanities Quadrangle 327", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -10796,10 +21953,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88147\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88147/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -10842,10 +22027,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90405\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90405/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -10883,7 +22096,7 @@ "15:30", "17:20", "HQ 327 - Humanities Quadrangle 327", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -10898,7 +22111,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -10937,7 +22178,7 @@ "13:30", "15:20", "PR406 203 - 406 Prospect St., Miller Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/559978" + "https://map.yale.edu/?id=1910#!m/559978" ] ] }, @@ -10949,15 +22190,43 @@ "classnotes": "Permission of the instructor required", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88158\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "", - "description": "Since 9\/11, cases of what has been termed \"home-grown terrorism\" have cemented the fear that \"bad\" Islam is not just something that exists far away, in distant lands. As a result, there has been an urgent interest to understand who American Muslims are by officials, experts, journalists, and the public. Although Muslims have been part of America\u2019s story from its founding, Muslims have alternated from an invisible minority to the source of national moral panics, capturing national attention during political crises, as a cultural threat or even a potential fifth column. Today the stakes are high to understand what kinds of meanings and attachments connect Muslims in America to the Muslim world and to the U.S. as a nation.\u00a0Over the course of the semester, students grapple with how to define and apply the slippery concept of diaspora to different dispersed Muslim populations in the U.S., including racial and ethnic diasporas, trading diasporas, political diasporas, and others. By focusing on a range of communities-in-motion and a diverse set of cultural texts, students explore the ways mobility, loss, and communal identity are conceptualized by immigrants, expatriates, refugees, guest-workers, religious seekers, and exiles. To this end, we read histories, ethnographies, essays, policy papers, novels, poetry, memoirs; we watch documentary and fictional films; we listen to music, speeches, spoken word performances, and prayers. Our aim is to deepen our understanding of the multiple meanings and conceptual limits of homeland and diaspora for Muslims in America, particularly in the Age of Terror.", + "syllabus_url": "https://yale.instructure.com/courses/88158/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } + }, + { + "season_code": "202303", + "requirements": "", + "description": "Since 9/11, cases of what has been termed \"home-grown terrorism\" have cemented the fear that \"bad\" Islam is not just something that exists far away, in distant lands. As a result, there has been an urgent interest to understand who American Muslims are by officials, experts, journalists, and the public. Although Muslims have been part of America\u2019s story from its founding, Muslims have alternated from an invisible minority to the source of national moral panics, capturing national attention during political crises, as a cultural threat or even a potential fifth column. Today the stakes are high to understand what kinds of meanings and attachments connect Muslims in America to the Muslim world and to the U.S. as a nation.\u00a0Over the course of the semester, students grapple with how to define and apply the slippery concept of diaspora to different dispersed Muslim populations in the U.S., including racial and ethnic diasporas, trading diasporas, political diasporas, and others. By focusing on a range of communities-in-motion and a diverse set of cultural texts, students explore the ways mobility, loss, and communal identity are conceptualized by immigrants, expatriates, refugees, guest-workers, religious seekers, and exiles. To this end, we read histories, ethnographies, essays, policy papers, novels, poetry, memoirs; we watch documentary and fictional films; we listen to music, speeches, spoken word performances, and prayers. Our aim is to deepen our understanding of the multiple meanings and conceptual limits of homeland and diaspora for Muslims in America, particularly in the Age of Terror.", "short_title": "Muslims in the United States", "title": "Muslims in the United States", "school": "GS", @@ -11005,15 +22274,92 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90433\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90433/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989101886749268 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989374279975891 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989404082298279, + 0.9988607168197632, + 0.9989339709281921, + 0.9989374279975891 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 6 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", "requirements": "Instructor permission required.", - "description": "This graduate-level course presents students with the opportunity to develop a thorough, extensive, and deep (though still not exhaustive!) understanding of the oeuvre of Michel Foucault, and his impact on late-twentieth-century criticism and intellectual history in the United States. Non-francophone and\/or U.S. American scholars, as Lynne Huffer has argued, have engaged Foucault\u2019s work unevenly and frequently in a piecemeal way, due to a combination of the overemphasis on The History of Sexuality, Vol 1 (to the exclusion of most of his other major works), and the lack of availability of English translations of most of his writings until the early twenty-first century. This course seeks to correct that trend and to re-introduce Foucault\u2019s works to a generation of graduate students who, on the whole, do not have extensive experience with his oeuvre. In this course, we read almost all of Foucault\u2019s published writings that have been translated into English (which is almost all of them, at this point). We read all of the monographs, and all of the Coll\u00e8ge de France lectures, in chronological order. This lightens the reading load; we read a book per week, but the lectures are shorter and generally less dense than the monographs. [The benefit of a single author course is that the more time one spends reading Foucault\u2019s work, the easier reading his work becomes.] We read as many of the essays he published in popular and more widely-circulated media as we can. The goal of the course is to give students both breadth and depth in their understanding of Foucault and his works, and to be able to situate his thinking in relation to the intellectual, social, and political histories of the twentieth and twenty-first centuries. Alongside Foucault himself, we read Foucault\u2019s mentors, interlocutors, and inheritors (Heidegger, Marx, Blanchot, Canguilhem, Derrida, Barthes, Althusser, Bersani, Hartman, Angela Davis, etc); his critics (Mbembe, Weheliye, Butler, Said, etc.), and scholarship that situates his thought alongside contemporary social movements, including student, Black liberation, prison abolitionist, and anti-psychiatry movements.", + "description": "This graduate-level course presents students with the opportunity to develop a thorough, extensive, and deep (though still not exhaustive!) understanding of the oeuvre of Michel Foucault, and his impact on late-twentieth-century criticism and intellectual history in the United States. Non-francophone and/or U.S. American scholars, as Lynne Huffer has argued, have engaged Foucault\u2019s work unevenly and frequently in a piecemeal way, due to a combination of the overemphasis on The History of Sexuality, Vol 1 (to the exclusion of most of his other major works), and the lack of availability of English translations of most of his writings until the early twenty-first century. This course seeks to correct that trend and to re-introduce Foucault\u2019s works to a generation of graduate students who, on the whole, do not have extensive experience with his oeuvre. In this course, we read almost all of Foucault\u2019s published writings that have been translated into English (which is almost all of them, at this point). We read all of the monographs, and all of the Coll\u00e8ge de France lectures, in chronological order. This lightens the reading load; we read a book per week, but the lectures are shorter and generally less dense than the monographs. [The benefit of a single author course is that the more time one spends reading Foucault\u2019s work, the easier reading his work becomes.] We read as many of the essays he published in popular and more widely-circulated media as we can. The goal of the course is to give students both breadth and depth in their understanding of Foucault and his works, and to be able to situate his thinking in relation to the intellectual, social, and political histories of the twentieth and twenty-first centuries. Alongside Foucault himself, we read Foucault\u2019s mentors, interlocutors, and inheritors (Heidegger, Marx, Blanchot, Canguilhem, Derrida, Barthes, Althusser, Bersani, Hartman, Angela Davis, etc); his critics (Mbembe, Weheliye, Butler, Said, etc.), and scholarship that situates his thought alongside contemporary social movements, including student, Black liberation, prison abolitionist, and anti-psychiatry movements.", "short_title": "Michel Foucault I: The Works,...", "title": "Michel Foucault I: The Works, The Interlocutors, The Critics", "school": "GS", @@ -11046,10 +22392,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88164\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88164/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -11088,7 +22462,7 @@ "13:30", "15:20", "HQ 317 - Humanities Quadrangle 317", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -11100,10 +22474,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88078\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88078/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -11141,7 +22543,7 @@ "13:30", "15:20", "HQ 123 - Humanities Quadrangle 123", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -11153,10 +22555,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92441\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92441/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -11196,12 +22626,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "The course explores recent trends and historiography on several problems through the middle of the nineteenth century: sectionalism, expansion; slavery and the Old South; northern society and reform movements; Civil War causation; the meaning of the Confederacy; why the North won the Civil War; the political, constitutional, and social meanings of emancipation and Reconstruction; violence in Reconstruction society; the relationships between social\/cultural and military\/political history; problems in historical memory; the tension between narrative and analytical history writing; and the ways in which race and gender have reshaped research and interpretive agendas.", + "description": "The course explores recent trends and historiography on several problems through the middle of the nineteenth century: sectionalism, expansion; slavery and the Old South; northern society and reform movements; Civil War causation; the meaning of the Confederacy; why the North won the Civil War; the political, constitutional, and social meanings of emancipation and Reconstruction; violence in Reconstruction society; the relationships between social/cultural and military/political history; problems in historical memory; the tension between narrative and analytical history writing; and the ways in which race and gender have reshaped research and interpretive agendas.", "short_title": "Readings in Nineteenth-Centur...", "title": "Readings in Nineteenth-Century America", "school": "GS", @@ -11235,7 +22693,7 @@ "9:25", "11:15", "HQ C05 - Humanities Quadrangle C05", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -11247,10 +22705,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88217\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88217/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -11289,7 +22775,7 @@ "13:30", "15:20", "BRBL 13 - Beinecke Rare Book Library 13", - "https:\/\/map.yale.edu\/?id=1910#!m\/531533" + "https://map.yale.edu/?id=1910#!m/531533" ] ] }, @@ -11298,13 +22784,41 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Please note Instructor Permissions requests will not be reviewed until add\/drop period in August. This course requires an application that will be provided by the instructor.", + "classnotes": "Please note Instructor Permissions requests will not be reviewed until add/drop period in August. This course requires an application that will be provided by the instructor.", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88075\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88075/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -11341,7 +22855,7 @@ "9:25", "11:15", "HQ 123 - Humanities Quadrangle 123", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -11356,7 +22870,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -11394,7 +22936,7 @@ "13:30", "15:20", "SA10 105 - 10 Sachem Street 105", - "https:\/\/map.yale.edu\/?id=1910#!m\/559538" + "https://map.yale.edu/?id=1910#!m/559538" ] ] }, @@ -11406,10 +22948,38 @@ "classnotes": "permission required", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88169\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88169/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -11451,7 +23021,7 @@ "13:30", "15:20", "WLH 115 - William L. Harkness Hall 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -11463,10 +23033,95 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88185\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88185/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989055395126343, + 0.9988481998443604, + 0.9988681077957153 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998902440071106, + 0.9825111031532288, + 0.9989070892333984 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989234805107117, + 0.9978604912757874, + 0.9989123344421387 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 0.7777777777777778, + "final_counts": { + "POSITIVE": 7, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.7777777777777778, + "NEGATIVE": 0.2222222222222222 + } + } }, { "season_code": "202303", @@ -11507,7 +23162,7 @@ "19:00", "22:00", "LC 101 - Linsly-Chittenden Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Tuesday": [ @@ -11515,7 +23170,7 @@ "15:30", "17:20", "HQ 127 - Humanities Quadrangle 127", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -11527,10 +23182,97 @@ "classnotes": "Graduate students should contact charles.musser@yale.edu prior to registration.", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89300\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89300/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989018440246582, + 0.9989114999771118 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9991810917854309, + 0.9989157915115356, + 0.9976010918617249, + 0.9978734254837036 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.25, + "POSITIVE": 0.75 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9954452514648438, + 0.998931348323822, + 0.9863911867141724, + 0.9985030889511108 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 0.9, + "final_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + } + } }, { "season_code": "202303", @@ -11583,10 +23325,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88174\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88174/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -11625,7 +23374,7 @@ "13:30", "15:20", "WALL53 208 - 53 Wall Street 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/559554" + "https://map.yale.edu/?id=1910#!m/559554" ] ] }, @@ -11637,10 +23386,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88227\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88227/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -11683,7 +23439,7 @@ "19:00", "22:00", "LC 101 - Linsly-Chittenden Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -11691,7 +23447,7 @@ "15:30", "18:20", "CCAM 110 - Center for Collab Arts & Media 110", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -11703,10 +23459,81 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88288\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88288/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981396198272705 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986857771873474 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9978218078613281 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 3, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 3 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -11743,7 +23570,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -11780,7 +23635,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -11817,7 +23700,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -11854,7 +23765,7 @@ "13:30", "15:20", "HQ 327 - Humanities Quadrangle 327", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -11866,10 +23777,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88193\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88193/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -11911,7 +23850,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -11955,12 +23922,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "The course work and practicum\/micro-credential lead to a significant project to be approved by the DGS or assistant DGS (an exhibition, documentary, research paper, etc.) and to be presented in a public forum on its completion.", + "description": "The course work and practicum/micro-credential lead to a significant project to be approved by the DGS or assistant DGS (an exhibition, documentary, research paper, etc.) and to be presented in a public forum on its completion.", "short_title": "Public Humanities Capstone Pr...", "title": "Public Humanities Capstone Project", "school": "GS", @@ -11999,12 +23994,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "This seminar is designed for advanced Ph.D. candidates who are going on the job market. Students draft and revise three full rounds of the five standard genres of job market materials: job letter, CV, dissertation abstract, teaching portfolio, and diversity statement. Students also participate in mock interviewing skills, developing a job talk, and preparing applications for postdoctoral fellowships. Graded Satisfactory\/Unsatisfactory.", + "description": "This seminar is designed for advanced Ph.D. candidates who are going on the job market. Students draft and revise three full rounds of the five standard genres of job market materials: job letter, CV, dissertation abstract, teaching portfolio, and diversity statement. Students also participate in mock interviewing skills, developing a job talk, and preparing applications for postdoctoral fellowships. Graded Satisfactory/Unsatisfactory.", "short_title": "American Studies Professional...", "title": "American Studies Professionalization Workshop", "school": "GS", @@ -12042,7 +24065,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -12097,7 +24148,7 @@ ], "areas": [], "flags": [ - "YC Math: Algebra\/Number Theory", + "YC Math: Algebra/Number Theory", "YC MENG: Eng Sci-Mech Crse", "YC MENG: BS Technical Elective", "YC NSCI: Quantitative" @@ -12107,10 +24158,191 @@ "classnotes": "", "final_exam": "Tuesday, December 19, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89068\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89068/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988952279090881, + 0.9986178874969482, + 0.9989060163497925, + 0.9986304044723511, + 0.996855616569519, + 0.9988687634468079, + 0.9979276657104492, + 0.9985707998275757, + 0.9987970590591431, + 0.998892605304718, + 0.9980090260505676, + 0.9920542240142822, + 0.9988805651664734, + 0.9987199306488037, + 0.9987319111824036, + 0.9988778233528137, + 0.9969979524612427 + ], + "sentiment_counts": { + "POSITIVE": 15, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8823529411764706, + "NEGATIVE": 0.11764705882352941 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8823529411764706 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989044666290283, + 0.9974538683891296, + 0.9988884329795837, + 0.9987932443618774, + 0.9988253712654114, + 0.9988126754760742, + 0.998916745185852, + 0.9988916516304016, + 0.9987626075744629, + 0.9988056421279907, + 0.9989198446273804, + 0.9987658262252808, + 0.9988561868667603, + 0.9988844990730286, + 0.9987409710884094, + 0.9986971020698547, + 0.9989363551139832, + 0.9985384941101074 + ], + "sentiment_counts": { + "POSITIVE": 18, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9927211403846741, + 0.9989249110221863, + 0.9989089965820312, + 0.998176097869873, + 0.9979358911514282, + 0.9987114667892456, + 0.9988916516304016, + 0.9960540533065796, + 0.9988691210746765, + 0.9989166259765625, + 0.9987672567367554, + 0.9986851811408997, + 0.9985625147819519, + 0.9988589286804199, + 0.9880467653274536, + 0.9989363551139832, + 0.9987494945526123, + 0.997117280960083, + 0.9988646507263184, + 0.9988235831260681, + 0.9989306330680847, + 0.9939954876899719 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 21 + }, + "sentiment_distribution": { + "NEGATIVE": 0.045454545454545456, + "POSITIVE": 0.9545454545454546 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9545454545454546 + ] + }, + "final_label": "POSITIVE", + "final_count": 54, + "final_proportion": 0.9473684210526315, + "final_counts": { + "POSITIVE": 54, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.9473684210526315, + "NEGATIVE": 0.05263157894736842 + } + } }, { "season_code": "202303", @@ -12148,7 +24380,7 @@ "11:35", "12:50", "WTS A30 - Watson Center 60 Sachem Street A30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -12156,7 +24388,7 @@ "11:35", "12:50", "WTS A30 - Watson Center 60 Sachem Street A30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -12165,7 +24397,7 @@ ], "areas": [], "flags": [ - "YC Math: Algebra\/Number Theory", + "YC Math: Algebra/Number Theory", "YC MENG: Eng Sci-Mech Crse", "YC MENG: BS Technical Elective", "YC NSCI: Quantitative" @@ -12175,10 +24407,129 @@ "classnotes": "", "final_exam": "Tuesday, December 19, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89069\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89069/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9972291588783264, + 0.9939993619918823, + 0.9984737038612366, + 0.9983988404273987, + 0.9993647933006287, + 0.9982895255088806, + 0.9977923631668091, + 0.998789370059967 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994878768920898, + 0.9984979629516602, + 0.9929225444793701, + 0.9991626739501953, + 0.9995110034942627, + 0.9988699555397034, + 0.9987615346908569, + 0.9918181896209717, + 0.9995070695877075, + 0.9986000657081604 + ], + "sentiment_counts": { + "NEGATIVE": 5, + "POSITIVE": 5 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9938374161720276, + 0.998916506767273, + 0.997117280960083, + 0.9994986057281494, + 0.9994907379150391, + 0.9988553524017334, + 0.9988948702812195, + 0.9962939620018005 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 0.6923076923076923, + "final_counts": { + "POSITIVE": 18, + "NEGATIVE": 8 + }, + "final_distribution": { + "POSITIVE": 0.6923076923076923, + "NEGATIVE": 0.3076923076923077 + } + } }, { "season_code": "202303", @@ -12216,7 +24567,7 @@ "14:30", "15:45", "WTS A51 - Watson Center 60 Sachem Street A51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -12224,7 +24575,7 @@ "14:30", "15:45", "WTS A51 - Watson Center 60 Sachem Street A51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -12233,7 +24584,7 @@ ], "areas": [], "flags": [ - "YC Math: Algebra\/Number Theory", + "YC Math: Algebra/Number Theory", "YC MENG: Eng Sci-Mech Crse", "YC MENG: BS Technical Elective", "YC NSCI: Quantitative" @@ -12243,10 +24594,101 @@ "classnotes": "", "final_exam": "Tuesday, December 19, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89070\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89070/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986724853515625, + 0.9806985259056091, + 0.9976748824119568, + 0.9975541234016418 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989328980445862, + 0.9987456798553467, + 0.9983574748039246, + 0.998594343662262 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987039566040039, + 0.9988775849342346, + 0.9994851350784302, + 0.998792290687561 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 0.75, + "final_counts": { + "POSITIVE": 9, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + } + } }, { "season_code": "202303", @@ -12284,7 +24726,7 @@ "11:35", "12:50", "ML 211 - Mason Laboratory 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ], "Thursday": [ @@ -12292,7 +24734,7 @@ "11:35", "12:50", "ML 211 - Mason Laboratory 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ] }, @@ -12301,8 +24743,8 @@ ], "areas": [], "flags": [ - "YC Math: Stat\/Applied Math", - "YC Math: Algebra\/Number Theory", + "YC Math: Stat/Applied Math", + "YC Math: Algebra/Number Theory", "YC NSCI: Quantitative" ], "regnotes": "", @@ -12310,10 +24752,189 @@ "classnotes": "", "final_exam": "Friday, December 15, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89075\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89075/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987881779670715, + 0.9991299510002136, + 0.9988893866539001, + 0.9986748695373535, + 0.9988062381744385, + 0.9972847700119019, + 0.9869139790534973, + 0.9904670119285583, + 0.9987292885780334, + 0.9871401190757751, + 0.9978348612785339, + 0.9945563077926636, + 0.9866459369659424, + 0.9987922310829163, + 0.9985802173614502, + 0.9987646341323853, + 0.9987784028053284, + 0.998895525932312 + ], + "sentiment_counts": { + "POSITIVE": 16, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987518787384033, + 0.9994433522224426, + 0.9989211559295654, + 0.9994798302650452, + 0.9989092350006104, + 0.9891903400421143, + 0.9977372884750366, + 0.9983057975769043, + 0.9995124340057373, + 0.9931814074516296, + 0.9981828331947327, + 0.9989369511604309, + 0.9963041543960571, + 0.9973909854888916, + 0.998403012752533, + 0.9994440674781799, + 0.9988681077957153, + 0.9989389777183533 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 6 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988977909088135, + 0.9993708729743958, + 0.9985209107398987, + 0.9984652996063232, + 0.9985761642456055, + 0.8825386762619019, + 0.9988740086555481, + 0.9988793730735779, + 0.9987108707427979, + 0.8952719569206238, + 0.9972313046455383, + 0.9989171028137207, + 0.9955788254737854, + 0.9947608113288879, + 0.9989080429077148, + 0.9988777041435242, + 0.9986586570739746, + 0.9995002746582031, + 0.9989001750946045, + 0.9988880753517151 + ], + "sentiment_counts": { + "POSITIVE": 18, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "final_label": "POSITIVE", + "final_count": 46, + "final_proportion": 0.8214285714285714, + "final_counts": { + "POSITIVE": 46, + "NEGATIVE": 10 + }, + "final_distribution": { + "POSITIVE": 0.8214285714285714, + "NEGATIVE": 0.17857142857142858 + } + } }, { "season_code": "202303", @@ -12352,7 +24973,7 @@ "13:00", "14:15", "DL 514 - Dunham Laboratory 514", - "https:\/\/map.yale.edu\/?id=1910#!m\/560005" + "https://map.yale.edu/?id=1910#!m/560005" ] ], "Wednesday": [ @@ -12360,7 +24981,7 @@ "13:00", "14:15", "DL 514 - Dunham Laboratory 514", - "https:\/\/map.yale.edu\/?id=1910#!m\/560005" + "https://map.yale.edu/?id=1910#!m/560005" ] ] }, @@ -12374,10 +24995,38 @@ "classnotes": "", "final_exam": "Wednesday, December 20, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88444\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88444/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -12434,17 +25083,110 @@ "Sc" ], "flags": [ - "YC Math: Stat\/Applied Math" + "YC Math: Stat/Applied Math" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "Wednesday, December 20, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90006\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90006/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998829185962677, + 0.9968031644821167, + 0.9952688813209534, + 0.9989026784896851, + 0.9987257122993469 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989243149757385, + 0.9987503290176392, + 0.9987583160400391, + 0.9988709092140198, + 0.9989049434661865 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998840868473053, + 0.9988143444061279, + 0.997434675693512, + 0.9988879561424255 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 14 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -12485,7 +25227,7 @@ "13:00", "14:15", "WTS A53 - Watson Center 60 Sachem Street A53", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -12493,7 +25235,7 @@ "13:00", "14:15", "WTS A53 - Watson Center 60 Sachem Street A53", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -12505,10 +25247,139 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88636\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88636/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.959989070892334, + 0.9527761340141296, + 0.9988590478897095, + 0.9956971406936646, + 0.9916312098503113, + 0.9925770163536072, + 0.9988011121749878, + 0.9887248873710632, + 0.9985653758049011, + 0.994544506072998 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 9 + }, + "sentiment_distribution": { + "NEGATIVE": 0.1, + "POSITIVE": 0.9 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9892269372940063, + 0.9988239407539368, + 0.9988969564437866, + 0.9983755350112915, + 0.9992402791976929, + 0.9986226558685303, + 0.9988595247268677, + 0.9988923668861389, + 0.9962666630744934, + 0.9983270764350891, + 0.9988239407539368 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9090909090909091 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9967639446258545, + 0.9989181756973267, + 0.9988960027694702, + 0.9984618425369263, + 0.9987673759460449, + 0.9987307190895081, + 0.9984799027442932, + 0.9994161128997803, + 0.9987605810165405, + 0.9988779425621033 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 8 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2, + "POSITIVE": 0.8 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 27, + "final_proportion": 0.8709677419354839, + "final_counts": { + "NEGATIVE": 4, + "POSITIVE": 27 + }, + "final_distribution": { + "NEGATIVE": 0.12903225806451613, + "POSITIVE": 0.8709677419354839 + } + } }, { "season_code": "202303", @@ -12548,10 +25419,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90398\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90398/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -12591,10 +25490,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90399\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90399/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -12631,7 +25558,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -12671,7 +25626,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -12712,7 +25695,7 @@ "13:00", "14:15", "WTS A53 - Watson Center 60 Sachem Street A53", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -12720,7 +25703,7 @@ "13:00", "14:15", "WTS A53 - Watson Center 60 Sachem Street A53", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -12732,10 +25715,139 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88636\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88636/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.959989070892334, + 0.9527761340141296, + 0.9988590478897095, + 0.9956971406936646, + 0.9916312098503113, + 0.9925770163536072, + 0.9988011121749878, + 0.9887248873710632, + 0.9985653758049011, + 0.994544506072998 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 9 + }, + "sentiment_distribution": { + "NEGATIVE": 0.1, + "POSITIVE": 0.9 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9892269372940063, + 0.9988239407539368, + 0.9988969564437866, + 0.9983755350112915, + 0.9992402791976929, + 0.9986226558685303, + 0.9988595247268677, + 0.9988923668861389, + 0.9962666630744934, + 0.9983270764350891, + 0.9988239407539368 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9090909090909091 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9967639446258545, + 0.9989181756973267, + 0.9988960027694702, + 0.9984618425369263, + 0.9987673759460449, + 0.9987307190895081, + 0.9984799027442932, + 0.9994161128997803, + 0.9987605810165405, + 0.9988779425621033 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 8 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2, + "POSITIVE": 0.8 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 27, + "final_proportion": 0.8709677419354839, + "final_counts": { + "NEGATIVE": 4, + "POSITIVE": 27 + }, + "final_distribution": { + "NEGATIVE": 0.12903225806451613, + "POSITIVE": 0.8709677419354839 + } + } }, { "season_code": "202303", @@ -12774,7 +25886,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -12832,10 +25972,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90058\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90058/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -12875,10 +26043,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92885\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92885/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -12915,7 +26111,7 @@ "14:30", "15:45", "WTS A46 - Watson Center 60 Sachem Street A46", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -12923,7 +26119,7 @@ "14:30", "15:45", "WTS A46 - Watson Center 60 Sachem Street A46", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -12942,10 +26138,113 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90211\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90211/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9983347058296204, + 0.9987795948982239, + 0.9988102912902832, + 0.9988380074501038, + 0.9986340403556824, + 0.9995073080062866 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9974754452705383, + 0.9988619089126587, + 0.9989205598831177, + 0.9994716048240662, + 0.9984866380691528, + 0.9994776844978333 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9994852542877197, + 0.9989256262779236, + 0.9989345669746399, + 0.9982367753982544, + 0.998938262462616, + 0.9995014667510986 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 0.6666666666666666, + "final_counts": { + "POSITIVE": 12, + "NEGATIVE": 6 + }, + "final_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + } + } }, { "season_code": "202303", @@ -12982,7 +26281,7 @@ "11:35", "12:50", "WTS A74 - Watson Center 60 Sachem Street A74", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -12990,7 +26289,7 @@ "11:35", "12:50", "WTS A74 - Watson Center 60 Sachem Street A74", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -13009,10 +26308,181 @@ "classnotes": "", "final_exam": "Friday, December 15, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88779\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88779/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9980261921882629, + 0.998842716217041, + 0.9987010955810547, + 0.9987350106239319, + 0.9987465143203735, + 0.998880922794342, + 0.9986082911491394, + 0.9988600015640259, + 0.9980347752571106, + 0.9988107681274414, + 0.9987457990646362, + 0.9994452595710754, + 0.9987163543701172, + 0.9989011287689209, + 0.9993545413017273, + 0.9988722205162048 + ], + "sentiment_counts": { + "POSITIVE": 14, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988033771514893, + 0.9971869587898254, + 0.9953961968421936, + 0.9987817406654358, + 0.9985460042953491, + 0.9988561868667603, + 0.9928287863731384, + 0.9989007711410522, + 0.9989249110221863, + 0.9976087808609009, + 0.9836958646774292, + 0.9988887906074524, + 0.9994943141937256, + 0.9985180497169495, + 0.9936354160308838, + 0.9995113611221313, + 0.9994072914123535, + 0.9988828301429749 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 6 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988309741020203, + 0.9988991022109985, + 0.9939478635787964, + 0.9980302453041077, + 0.9988771080970764, + 0.9989296793937683, + 0.9988221526145935, + 0.9935523271560669, + 0.9984831213951111, + 0.9987987279891968, + 0.9989049434661865, + 0.9974178075790405, + 0.9989261031150818, + 0.9995098114013672, + 0.997593343257904, + 0.9990559220314026, + 0.9990748167037964, + 0.9989354014396667 + ], + "sentiment_counts": { + "POSITIVE": 15, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 41, + "final_proportion": 0.7884615384615384, + "final_counts": { + "POSITIVE": 41, + "NEGATIVE": 11 + }, + "final_distribution": { + "POSITIVE": 0.7884615384615384, + "NEGATIVE": 0.21153846153846154 + } + } }, { "season_code": "202303", @@ -13054,7 +26524,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -13091,7 +26589,7 @@ "13:30", "15:20", "GR109 ROSENFELD - 109 Grove Street ROSENFELD", - "https:\/\/map.yale.edu\/?id=1910#!m\/560109" + "https://map.yale.edu/?id=1910#!m/560109" ] ] }, @@ -13107,10 +26605,157 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88827\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88827/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988061189651489, + 0.9995071887969971, + 0.9879879951477051, + 0.998849630355835, + 0.999497652053833, + 0.9976361989974976, + 0.9985463619232178, + 0.9988139867782593, + 0.9913697242736816, + 0.9987142086029053, + 0.9989234805107117, + 0.9987610578536987 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985643029212952, + 0.999514102935791, + 0.9987038373947144, + 0.9975184202194214, + 0.9995046854019165, + 0.9971887469291687, + 0.9989079236984253, + 0.9982750415802002, + 0.9995025396347046, + 0.9989001750946045, + 0.9989150762557983, + 0.998988926410675, + 0.9842995405197144, + 0.9819146990776062 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 5 + }, + "sentiment_distribution": { + "POSITIVE": 0.6428571428571429, + "NEGATIVE": 0.35714285714285715 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6428571428571429 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9947004318237305, + 0.999505877494812, + 0.9987738728523254, + 0.9976937174797058, + 0.9990682005882263, + 0.9995030164718628, + 0.9987603425979614, + 0.9995012283325195, + 0.9995161294937134, + 0.9950946569442749, + 0.9988456964492798, + 0.9994914531707764, + 0.9985747337341309, + 0.9920920133590698 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 7 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "final_label": "POSITIVE", + "final_count": 25, + "final_proportion": 0.625, + "final_counts": { + "POSITIVE": 25, + "NEGATIVE": 15 + }, + "final_distribution": { + "POSITIVE": 0.625, + "NEGATIVE": 0.375 + } + } }, { "season_code": "202303", @@ -13148,7 +26793,7 @@ "13:30", "15:20", "WTS A74 - Watson Center 60 Sachem Street A74", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -13165,10 +26810,127 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89228\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89228/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986579418182373, + 0.9988059997558594, + 0.9987230896949768, + 0.998703122138977, + 0.9989176988601685, + 0.9985668063163757, + 0.9989176988601685, + 0.9987842440605164 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.997706413269043, + 0.9989296793937683, + 0.9988983869552612, + 0.9989103078842163, + 0.9989020824432373, + 0.9987642765045166, + 0.9988687634468079, + 0.9994837045669556, + 0.9935637712478638 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988561868667603, + 0.9982550740242004, + 0.9988524913787842, + 0.9988356232643127, + 0.9989141225814819, + 0.9987987279891968, + 0.9980652928352356, + 0.9925879836082458 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 22, + "final_proportion": 0.88, + "final_counts": { + "POSITIVE": 22, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.88, + "NEGATIVE": 0.12 + } + } }, { "season_code": "202303", @@ -13205,7 +26967,7 @@ "14:30", "15:20", "WTS A30 - Watson Center 60 Sachem Street A30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -13213,7 +26975,7 @@ "14:30", "15:20", "WTS A30 - Watson Center 60 Sachem Street A30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -13229,10 +26991,179 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90195\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90195/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998630940914154, + 0.9989191293716431, + 0.9986282587051392, + 0.9988725781440735, + 0.9989099502563477, + 0.9989175796508789, + 0.9988381266593933, + 0.9970731735229492, + 0.9988479614257812, + 0.9988634586334229, + 0.9987789988517761, + 0.9989349246025085, + 0.9988495111465454, + 0.998857855796814, + 0.9987375140190125, + 0.9989136457443237 + ], + "sentiment_counts": { + "POSITIVE": 16, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9971765279769897, + 0.9989089965820312, + 0.9988239407539368, + 0.9983689188957214, + 0.9986120462417603, + 0.9988805651664734, + 0.9989250302314758, + 0.9986955523490906, + 0.998795747756958, + 0.995717465877533, + 0.9985852241516113, + 0.9989306330680847, + 0.9989321827888489, + 0.998881995677948, + 0.9989050626754761, + 0.998900294303894 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 15 + }, + "sentiment_distribution": { + "NEGATIVE": 0.0625, + "POSITIVE": 0.9375 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9375 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998877227306366, + 0.9988681077957153, + 0.9988325238227844, + 0.9989296793937683, + 0.998853325843811, + 0.9986553192138672, + 0.9988836646080017, + 0.9989339709281921, + 0.998909592628479, + 0.9988853335380554, + 0.9994986057281494, + 0.9987598657608032, + 0.9989023208618164, + 0.9989294409751892, + 0.9988943934440613, + 0.9989328980445862, + 0.9989149570465088, + 0.9989093542098999, + 0.9989328980445862 + ], + "sentiment_counts": { + "POSITIVE": 18, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9473684210526315, + "NEGATIVE": 0.05263157894736842 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9473684210526315 + ] + }, + "final_label": "POSITIVE", + "final_count": 49, + "final_proportion": 0.9607843137254902, + "final_counts": { + "POSITIVE": 49, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9607843137254902, + "NEGATIVE": 0.0392156862745098 + } + } }, { "season_code": "202303", @@ -13270,7 +27201,7 @@ "14:30", "15:45", "WTS B60 - Watson Center 60 Sachem Street B60", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -13278,7 +27209,7 @@ "14:30", "15:45", "WTS B60 - Watson Center 60 Sachem Street B60", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -13296,10 +27227,127 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88788\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88788/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988774657249451, + 0.9987429976463318, + 0.9987428784370422, + 0.9988417029380798, + 0.9988077878952026, + 0.9988316893577576, + 0.9977756142616272 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998923122882843, + 0.9989283680915833, + 0.9995044469833374, + 0.998920202255249, + 0.9989269375801086, + 0.9988901019096375, + 0.998816967010498, + 0.9987534284591675 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987010955810547, + 0.9981436729431152, + 0.998630166053772, + 0.9988366961479187, + 0.9989174604415894, + 0.9989399313926697, + 0.9988386034965515, + 0.9989359974861145, + 0.9988725781440735, + 0.9989180564880371 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 24, + "final_proportion": 0.96, + "final_counts": { + "POSITIVE": 24, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.96, + "NEGATIVE": 0.04 + } + } }, { "season_code": "202303", @@ -13338,7 +27386,7 @@ "9:25", "11:15", "WLH 209 - William L. Harkness Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -13352,10 +27400,107 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88094\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88094/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988409876823425, + 0.9987548589706421, + 0.9989182949066162, + 0.99888676404953, + 0.9989084005355835 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989244341850281, + 0.9987940788269043, + 0.9987510442733765, + 0.9989020824432373, + 0.9989141225814819 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998416543006897, + 0.9988725781440735, + 0.9988786578178406, + 0.9988886713981628, + 0.9989232420921326, + 0.9989035129547119 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 16 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -13395,7 +27540,7 @@ "11:35", "12:50", "WTS B60 - Watson Center 60 Sachem Street B60", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -13403,7 +27548,7 @@ "11:35", "12:50", "WTS B60 - Watson Center 60 Sachem Street B60", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -13421,10 +27566,133 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88789\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88789/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986750483512878, + 0.9988678693771362, + 0.9989234805107117, + 0.9989365935325623, + 0.996293842792511, + 0.9988611936569214, + 0.998810887336731, + 0.9988013505935669, + 0.9987276196479797 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9907972812652588, + 0.9968972206115723, + 0.99885094165802, + 0.998903751373291, + 0.9989309906959534, + 0.9918453097343445, + 0.9989063739776611, + 0.9988252520561218, + 0.9984790682792664, + 0.9988256096839905 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987263083457947, + 0.9981141090393066, + 0.9988125562667847, + 0.9989264607429504, + 0.9983982443809509, + 0.998791515827179, + 0.9988759160041809, + 0.9988250136375427, + 0.9988148212432861 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "final_label": "POSITIVE", + "final_count": 27, + "final_proportion": 0.9642857142857143, + "final_counts": { + "POSITIVE": 27, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9642857142857143, + "NEGATIVE": 0.03571428571428571 + } + } }, { "season_code": "202303", @@ -13461,7 +27729,7 @@ "9:00", "10:15", "SA10 105 - 10 Sachem Street 105", - "https:\/\/map.yale.edu\/?id=1910#!m\/559538" + "https://map.yale.edu/?id=1910#!m/559538" ] ], "Thursday": [ @@ -13469,7 +27737,7 @@ "9:00", "10:15", "SA10 105 - 10 Sachem Street 105", - "https:\/\/map.yale.edu\/?id=1910#!m\/559538" + "https://map.yale.edu/?id=1910#!m/559538" ] ] }, @@ -13486,10 +27754,97 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88790\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88790/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987791180610657, + 0.998897910118103, + 0.9988986253738403 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989362359046936, + 0.9989134073257446, + 0.9988331198692322, + 0.9989186525344849 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989243149757385, + 0.9988669157028198, + 0.9988986253738403, + 0.9988868832588196 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 11 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -13530,7 +27885,7 @@ "11:35", "12:50", "HLH51 101 - 51 Hillhouse Avenue 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559970" + "https://map.yale.edu/?id=1910#!m/559970" ] ], "Thursday": [ @@ -13538,7 +27893,7 @@ "11:35", "12:50", "HLH51 101 - 51 Hillhouse Avenue 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559970" + "https://map.yale.edu/?id=1910#!m/559970" ] ] }, @@ -13554,10 +27909,95 @@ "classnotes": "", "final_exam": "Friday, December 15, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90580\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90580/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987101554870605, + 0.9989376664161682, + 0.9988366961479187 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988262057304382, + 0.9987607002258301, + 0.9988501071929932 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989184141159058, + 0.9989233613014221, + 0.9989168643951416, + 0.9986386895179749 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 10 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -13594,7 +28034,7 @@ "14:30", "15:45", "WTS A60 - Watson Center 60 Sachem Street A60", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -13602,7 +28042,7 @@ "14:30", "15:45", "WTS A60 - Watson Center 60 Sachem Street A60", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -13618,10 +28058,101 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88828\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88828/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989098310470581, + 0.9966636300086975 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984145164489746, + 0.9988914132118225, + 0.9987854361534119, + 0.9989117383956909 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.997117280960083, + 0.9982553124427795, + 0.9988825917243958, + 0.9988085031509399, + 0.9986469149589539, + 0.9989036321640015, + 0.9974592328071594 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 13 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -13652,7 +28183,7 @@ "16:00", "16:50", "SA10 10 - 10 Sachem Street 10", - "https:\/\/map.yale.edu\/?id=1910#!m\/559538" + "https://map.yale.edu/?id=1910#!m/559538" ] ] }, @@ -13671,7 +28202,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -13702,7 +28261,7 @@ "16:00", "16:50", "SA10 212 - 10 Sachem Street 212", - "https:\/\/map.yale.edu\/?id=1910#!m\/559538" + "https://map.yale.edu/?id=1910#!m/559538" ] ] }, @@ -13721,7 +28280,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -13752,7 +28339,7 @@ "10:30", "11:20", "SA10 105 - 10 Sachem Street 105", - "https:\/\/map.yale.edu\/?id=1910#!m\/559538" + "https://map.yale.edu/?id=1910#!m/559538" ] ] }, @@ -13772,7 +28359,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -13812,7 +28427,7 @@ "13:30", "15:20", "HLH51 101 - 51 Hillhouse Avenue 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559970" + "https://map.yale.edu/?id=1910#!m/559970" ] ] }, @@ -13829,10 +28444,117 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89010\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89010/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9974721074104309, + 0.9983928799629211, + 0.9986236095428467, + 0.9989116191864014, + 0.9800824522972107, + 0.9927740097045898 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998059093952179, + 0.9988765120506287, + 0.9974972605705261, + 0.9875548481941223, + 0.9988817572593689, + 0.9986238479614258, + 0.9988528490066528 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.997566819190979, + 0.9942857623100281, + 0.9983615279197693, + 0.9984147548675537, + 0.9986631870269775, + 0.998924195766449, + 0.9980574250221252 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 6 + }, + "sentiment_distribution": { + "NEGATIVE": 0.14285714285714285, + "POSITIVE": 0.8571428571428571 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 0.85, + "final_counts": { + "POSITIVE": 17, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.85, + "NEGATIVE": 0.15 + } + } }, { "season_code": "202303", @@ -13869,7 +28591,7 @@ "9:25", "11:15", "SA10 105 - 10 Sachem Street 105", - "https:\/\/map.yale.edu\/?id=1910#!m\/559538" + "https://map.yale.edu/?id=1910#!m/559538" ] ] }, @@ -13883,10 +28605,103 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90196\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90196/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987885355949402, + 0.9983578324317932, + 0.9985085129737854, + 0.9986489415168762 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988954067230225, + 0.998823344707489, + 0.9988411068916321, + 0.9984845519065857, + 0.9963938593864441 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989205598831177, + 0.9986988306045532, + 0.9986850619316101, + 0.9989338517189026, + 0.9986670017242432 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 14 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -13923,7 +28738,7 @@ "9:25", "11:15", "WTS A32 - Watson Center 60 Sachem Street A32", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -13939,10 +28754,101 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88791\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88791/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989066123962402, + 0.9988206028938293, + 0.9989023208618164, + 0.998927891254425 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989117383956909, + 0.9987598657608032, + 0.9988885521888733 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9995026588439941, + 0.9988982677459717, + 0.9989038705825806, + 0.998904824256897, + 0.9989370703697205 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 4 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2, + "POSITIVE": 0.8 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 0.9166666666666666, + "final_counts": { + "POSITIVE": 11, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + } + } }, { "season_code": "202303", @@ -13980,7 +28886,7 @@ "15:30", "17:20", "WLH 203 - William L. Harkness Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -13997,10 +28903,95 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92671\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92671/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988435506820679, + 0.9989198446273804, + 0.9969058632850647 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989120960235596, + 0.9989336133003235, + 0.998914361000061 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988526105880737, + 0.9989383816719055, + 0.9989344477653503, + 0.9988656044006348 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 10 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -14040,7 +29031,7 @@ "13:30", "16:30", "SA10 23 - 10 Sachem Street 23", - "https:\/\/map.yale.edu\/?id=1910#!m\/559538" + "https://map.yale.edu/?id=1910#!m/559538" ] ] }, @@ -14056,10 +29047,107 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88848\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88848/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987902045249939, + 0.9964780211448669, + 0.9987773299217224, + 0.998798131942749, + 0.9988403916358948 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998934805393219, + 0.998849630355835, + 0.9985811710357666, + 0.9989076852798462, + 0.9968453049659729 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9974504113197327, + 0.9975540041923523, + 0.9993981122970581, + 0.9989338517189026, + 0.9989328980445862 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 0.8666666666666667, + "final_counts": { + "POSITIVE": 13, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8666666666666667, + "NEGATIVE": 0.13333333333333333 + } + } }, { "season_code": "202303", @@ -14099,7 +29187,7 @@ "13:30", "15:20", "RKZ 05 - Rosenkranz Hall 05", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -14118,10 +29206,121 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88792\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88792/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989345669746399, + 0.9988642930984497, + 0.9987000226974487, + 0.9989055395126343, + 0.9989038705825806, + 0.998897910118103 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998870313167572, + 0.9988762736320496, + 0.9985916018486023, + 0.9988872408866882, + 0.9988853335380554, + 0.998897910118103, + 0.9988659620285034 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988710284233093, + 0.9989325404167175, + 0.9898777604103088, + 0.998649537563324, + 0.9989272952079773, + 0.9988763928413391, + 0.9989022016525269, + 0.9989399313926697, + 0.999453604221344 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.7777777777777778, + "NEGATIVE": 0.2222222222222222 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7777777777777778 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 0.9090909090909091, + "final_counts": { + "POSITIVE": 20, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + } + } }, { "season_code": "202303", @@ -14160,7 +29359,7 @@ "13:30", "15:20", "WTS B39 - Watson Center 60 Sachem Street B39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -14175,10 +29374,89 @@ "classnotes": "Please request permission via the system. Please do not email the instructor directly.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88793\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88793/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988201260566711, + 0.9989142417907715, + 0.9987363219261169 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986193180084229 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9971531629562378, + 0.9989404082298279, + 0.9989078044891357 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 7 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -14218,7 +29496,7 @@ "9:25", "11:15", "SA10 212 - 10 Sachem Street 212", - "https:\/\/map.yale.edu\/?id=1910#!m\/559538" + "https://map.yale.edu/?id=1910#!m/559538" ] ] }, @@ -14235,10 +29513,99 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88829\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88829/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987686276435852, + 0.9988858103752136, + 0.9988728165626526, + 0.9988781809806824, + 0.9989243149757385 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988110065460205, + 0.9958828687667847, + 0.9989339709281921 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9947245717048645, + 0.9982553124427795, + 0.9989066123962402, + 0.9989018440246582 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 12 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -14279,7 +29646,7 @@ "13:30", "15:20", "SA10 105 - 10 Sachem Street 105", - "https:\/\/map.yale.edu\/?id=1910#!m\/559538" + "https://map.yale.edu/?id=1910#!m/559538" ] ] }, @@ -14295,10 +29662,87 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89223\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89223/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986903071403503, + 0.998907208442688 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984861016273499, + 0.9983811378479004 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985307455062866, + 0.9988996982574463 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 6 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -14338,7 +29782,7 @@ "13:30", "15:20", "HLH51 101 - 51 Hillhouse Avenue 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559970" + "https://map.yale.edu/?id=1910#!m/559970" ] ] }, @@ -14354,10 +29798,97 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88849\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88849/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986421465873718, + 0.9988333582878113, + 0.9988625049591064, + 0.9988294243812561 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9976067543029785, + 0.9988102912902832, + 0.9987953901290894 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.5763342976570129, + 0.9988767504692078, + 0.9989042282104492, + 0.9989080429077148 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 11 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -14395,7 +29926,7 @@ "15:30", "17:50", "SA10 307 - 10 Sachem Street 307", - "https:\/\/map.yale.edu\/?id=1910#!m\/559538" + "https://map.yale.edu/?id=1910#!m/559538" ] ] }, @@ -14414,10 +29945,107 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89504\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89504/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986714124679565, + 0.9987761378288269, + 0.9988866448402405, + 0.9987823367118835 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9949677586555481, + 0.9989290833473206, + 0.9986905455589294, + 0.998815655708313, + 0.998927891254425 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982355833053589, + 0.9989184141159058, + 0.9981436729431152, + 0.9989128112792969, + 0.9988827109336853, + 0.9989190101623535 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 0.9333333333333333, + "final_counts": { + "POSITIVE": 14, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9333333333333333, + "NEGATIVE": 0.06666666666666667 + } + } }, { "season_code": "202303", @@ -14465,7 +30093,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -14503,7 +30159,7 @@ "9:25", "11:15", "SA10 105 - 10 Sachem Street 105", - "https:\/\/map.yale.edu\/?id=1910#!m\/559538" + "https://map.yale.edu/?id=1910#!m/559538" ] ] }, @@ -14517,10 +30173,99 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90197\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90197/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988816380500793, + 0.9987596273422241 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989331364631653, + 0.9989234805107117, + 0.9835824966430664, + 0.9988621473312378 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989336133003235, + 0.998933732509613, + 0.9989374279975891, + 0.9989373087882996, + 0.9909852743148804 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 0.8181818181818182, + "final_counts": { + "POSITIVE": 9, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8181818181818182, + "NEGATIVE": 0.18181818181818182 + } + } }, { "season_code": "202303", @@ -14558,7 +30303,7 @@ "9:25", "11:15", "WTS A72 - Watson Center 60 Sachem Street A72", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -14575,10 +30320,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90509\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90509/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -14620,7 +30393,7 @@ "13:30", "15:20", "KRN 321 - Kroon Hall 321", - "https:\/\/map.yale.edu\/?id=1910#!m\/559995" + "https://map.yale.edu/?id=1910#!m/559995" ] ] }, @@ -14633,7 +30406,7 @@ "flags": [ "PH: Climate Change and Health", "YC Ethnography: Elective", - "YC EVST: Core Human\/Social Sci", + "YC EVST: Core Human/Social Sci", "YC EVST: Advanced Seminar", "YC GLBL: Elective" ], @@ -14642,10 +30415,113 @@ "classnotes": "YC juniors and seniors have priority for admission", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88235\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88235/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989179372787476, + 0.9986909031867981, + 0.998598039150238, + 0.9960972666740417, + 0.9988501071929932, + 0.9987951517105103 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989284873008728, + 0.9810959696769714, + 0.9988623857498169, + 0.9988846182823181, + 0.9983105659484863, + 0.9989076852798462 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989305138587952, + 0.9988071918487549, + 0.9988629817962646, + 0.9989218711853027, + 0.9989014863967896, + 0.9988675117492676, + 0.9988678693771362 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 19 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -14684,7 +30560,7 @@ "13:30", "15:20", "SA10 212 - 10 Sachem Street 212", - "https:\/\/map.yale.edu\/?id=1910#!m\/559538" + "https://map.yale.edu/?id=1910#!m/559538" ] ] }, @@ -14700,10 +30576,91 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88831\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88831/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989162683486938, + 0.9986989498138428, + 0.9953101277351379 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988025426864624, + 0.9976994395256042 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989282488822937, + 0.9987547397613525, + 0.9935880899429321 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 8, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 8 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -14743,7 +30700,7 @@ "9:00", "10:15", "HLH51 101 - 51 Hillhouse Avenue 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559970" + "https://map.yale.edu/?id=1910#!m/559970" ] ], "Wednesday": [ @@ -14751,7 +30708,7 @@ "9:00", "10:15", "HLH51 101 - 51 Hillhouse Avenue 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559970" + "https://map.yale.edu/?id=1910#!m/559970" ] ] }, @@ -14767,10 +30724,101 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88850\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88850/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984295964241028, + 0.997956395149231, + 0.998760461807251, + 0.9989023208618164 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.8360072374343872, + 0.9987240433692932, + 0.9992945194244385, + 0.9989243149757385 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981436729431152, + 0.9987747073173523, + 0.9988528490066528, + 0.9988846182823181 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 0.8333333333333334, + "final_counts": { + "POSITIVE": 10, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + } + } }, { "season_code": "202303", @@ -14808,7 +30856,7 @@ "13:30", "15:20", "SA10 307 - 10 Sachem Street 307", - "https:\/\/map.yale.edu\/?id=1910#!m\/559538" + "https://map.yale.edu/?id=1910#!m/559538" ] ] }, @@ -14825,15 +30873,43 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92357\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92357/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "Since 9\/11, cases of what has been termed \"home-grown terrorism\" have cemented the fear that \"bad\" Islam is not just something that exists far away, in distant lands. As a result, there has been an urgent interest to understand who American Muslims are by officials, experts, journalists, and the public. Although Muslims have been part of America\u2019s story from its founding, Muslims have alternated from an invisible minority to the source of national moral panics, capturing national attention during political crises, as a cultural threat or even a potential fifth column. Today the stakes are high to understand what kinds of meanings and attachments connect Muslims in America to the Muslim world and to the US as a nation.\u00a0Over the course of the semester, students grapple with how to define and apply the slippery concept of diaspora to different dispersed Muslim populations in the US, including racial and ethnic diasporas, trading diasporas, political diasporas, and others. By focusing on a range of communities-in-motion and a diverse set of cultural texts, students explore the ways mobility, loss, and communal identity are conceptualized by immigrants, expatriates, refugees, guest-workers, religious seekers, and exiles. To this end, we read histories, ethnographies, essays, policy papers, novels, poetry, memoirs; we watch documentary and fictional films; we listen to music, speeches, spoken word performances, and prayers. Our aim is to deepen our understanding of the multiple meanings and conceptual limits of homeland and diaspora for Muslims in America, particularly in the Age of Terror.", + "description": "Since 9/11, cases of what has been termed \"home-grown terrorism\" have cemented the fear that \"bad\" Islam is not just something that exists far away, in distant lands. As a result, there has been an urgent interest to understand who American Muslims are by officials, experts, journalists, and the public. Although Muslims have been part of America\u2019s story from its founding, Muslims have alternated from an invisible minority to the source of national moral panics, capturing national attention during political crises, as a cultural threat or even a potential fifth column. Today the stakes are high to understand what kinds of meanings and attachments connect Muslims in America to the Muslim world and to the US as a nation.\u00a0Over the course of the semester, students grapple with how to define and apply the slippery concept of diaspora to different dispersed Muslim populations in the US, including racial and ethnic diasporas, trading diasporas, political diasporas, and others. By focusing on a range of communities-in-motion and a diverse set of cultural texts, students explore the ways mobility, loss, and communal identity are conceptualized by immigrants, expatriates, refugees, guest-workers, religious seekers, and exiles. To this end, we read histories, ethnographies, essays, policy papers, novels, poetry, memoirs; we watch documentary and fictional films; we listen to music, speeches, spoken word performances, and prayers. Our aim is to deepen our understanding of the multiple meanings and conceptual limits of homeland and diaspora for Muslims in America, particularly in the Age of Terror.", "short_title": "Muslims in the United States", "title": "Muslims in the United States", "school": "YC", @@ -14888,10 +30964,87 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90433\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90433/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989101886749268 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989374279975891 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989404082298279, + 0.9988607168197632, + 0.9989339709281921, + 0.9989374279975891 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 6 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -14929,7 +31082,7 @@ "19:00", "20:50", "SA10 105 - 10 Sachem Street 105", - "https:\/\/map.yale.edu\/?id=1910#!m\/559538" + "https://map.yale.edu/?id=1910#!m/559538" ] ] }, @@ -14946,10 +31099,97 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88832\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88832/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989063739776611, + 0.9994975328445435 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9995020627975464, + 0.9994912147521973, + 0.9984098672866821 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 1 + }, + "sentiment_distribution": { + "NEGATIVE": 0.6666666666666666, + "POSITIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989368319511414, + 0.997117280960083, + 0.9994901418685913, + 0.9995050430297852, + 0.998613715171814 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.4, + "NEGATIVE": 0.6 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.6 + ] + }, + "final_label": "NEGATIVE", + "final_count": 6, + "final_proportion": 0.6, + "final_counts": { + "POSITIVE": 4, + "NEGATIVE": 6 + }, + "final_distribution": { + "POSITIVE": 0.4, + "NEGATIVE": 0.6 + } + } }, { "season_code": "202303", @@ -15005,10 +31245,87 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88833\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88833/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9979820251464844, + 0.9988480806350708 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985902905464172, + 0.9988308548927307 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9955242872238159, + 0.998369038105011 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 6 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -15049,7 +31366,7 @@ "14:30", "15:45", "SA10 10 - 10 Sachem Street 10", - "https:\/\/map.yale.edu\/?id=1910#!m\/559538" + "https://map.yale.edu/?id=1910#!m/559538" ] ], "Thursday": [ @@ -15057,7 +31374,7 @@ "14:30", "15:45", "SA10 10 - 10 Sachem Street 10", - "https:\/\/map.yale.edu\/?id=1910#!m\/559538" + "https://map.yale.edu/?id=1910#!m/559538" ] ] }, @@ -15074,10 +31391,111 @@ "classnotes": "Instructor permission is required. Students should request permission via YCS (not email) April 14-21. Those who are granted permission to take the class will be informed via YCS by April 25th.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88834\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88834/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.995227575302124, + 0.9988653659820557, + 0.99817955493927, + 0.9986279010772705, + 0.9986945986747742, + 0.9986296892166138 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989110231399536, + 0.9940661191940308, + 0.9989171028137207, + 0.9986716508865356, + 0.9988534450531006 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998072624206543, + 0.9989064931869507, + 0.994411051273346, + 0.99556964635849, + 0.9988763928413391, + 0.9989089965820312 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 0.8823529411764706, + "final_counts": { + "POSITIVE": 15, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8823529411764706, + "NEGATIVE": 0.11764705882352941 + } + } }, { "season_code": "202303", @@ -15119,7 +31537,7 @@ "13:30", "15:20", "WLH 120 - William L. Harkness Hall 120", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -15135,10 +31553,119 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89342\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89342/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9987616539001465, + 0.9988985061645508, + 0.9989351630210876, + 0.9989067316055298, + 0.9988757967948914, + 0.9988817572593689, + 0.9994889497756958 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989392161369324, + 0.9989007711410522, + 0.99892657995224, + 0.9988346695899963, + 0.9989309906959534, + 0.9985311031341553 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998862624168396, + 0.9982553124427795, + 0.9988790154457092, + 0.9989284873008728, + 0.9988844990730286, + 0.9989118576049805, + 0.9988151788711548, + 0.9989394545555115 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 0.9047619047619048, + "final_counts": { + "POSITIVE": 19, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9047619047619048, + "NEGATIVE": 0.09523809523809523 + } + } }, { "season_code": "202303", @@ -15181,7 +31708,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -15224,7 +31779,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -15267,7 +31850,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -15304,7 +31915,7 @@ "9:25", "11:15", "SA10 121 - 10 Sachem Street 121", - "https:\/\/map.yale.edu\/?id=1910#!m\/559538" + "https://map.yale.edu/?id=1910#!m/559538" ] ] }, @@ -15319,7 +31930,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -15357,7 +31996,7 @@ "13:30", "15:20", "SA10 105 - 10 Sachem Street 105", - "https:\/\/map.yale.edu\/?id=1910#!m\/559538" + "https://map.yale.edu/?id=1910#!m/559538" ] ] }, @@ -15369,10 +32008,38 @@ "classnotes": "permission required", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88169\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88169/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -15414,7 +32081,7 @@ "13:30", "15:20", "WLH 120 - William L. Harkness Hall 120", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -15426,10 +32093,119 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89342\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89342/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9987616539001465, + 0.9988985061645508, + 0.9989351630210876, + 0.9989067316055298, + 0.9988757967948914, + 0.9988817572593689, + 0.9994889497756958 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989392161369324, + 0.9989007711410522, + 0.99892657995224, + 0.9988346695899963, + 0.9989309906959534, + 0.9985311031341553 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998862624168396, + 0.9982553124427795, + 0.9988790154457092, + 0.9989284873008728, + 0.9988844990730286, + 0.9989118576049805, + 0.9988151788711548, + 0.9989394545555115 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 0.9047619047619048, + "final_counts": { + "POSITIVE": 19, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9047619047619048, + "NEGATIVE": 0.09523809523809523 + } + } }, { "season_code": "202303", @@ -15468,7 +32244,7 @@ "13:30", "15:20", "SA10 212 - 10 Sachem Street 212", - "https:\/\/map.yale.edu\/?id=1910#!m\/559538" + "https://map.yale.edu/?id=1910#!m/559538" ] ] }, @@ -15480,10 +32256,91 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88831\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88831/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989162683486938, + 0.9986989498138428, + 0.9953101277351379 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988025426864624, + 0.9976994395256042 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989282488822937, + 0.9987547397613525, + 0.9935880899429321 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 8, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 8 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -15520,7 +32377,7 @@ "15:30", "17:20", "SA10 105 - 10 Sachem Street 105", - "https:\/\/map.yale.edu\/?id=1910#!m\/559538" + "https://map.yale.edu/?id=1910#!m/559538" ] ] }, @@ -15535,7 +32392,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -15579,7 +32464,7 @@ "13:30", "15:20", "SA10 105 - 10 Sachem Street 105", - "https:\/\/map.yale.edu\/?id=1910#!m\/559538" + "https://map.yale.edu/?id=1910#!m/559538" ] ] }, @@ -15591,10 +32476,38 @@ "classnotes": "There is a mandatory section immediately following the course. This makes the course run from 1:30-5:20 when factoring in the mandatory section. ", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88944\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88944/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -15634,7 +32547,7 @@ "9:25", "11:15", "SA10 212 - 10 Sachem Street 212", - "https:\/\/map.yale.edu\/?id=1910#!m\/559538" + "https://map.yale.edu/?id=1910#!m/559538" ] ] }, @@ -15646,10 +32559,99 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88829\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88829/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987686276435852, + 0.9988858103752136, + 0.9988728165626526, + 0.9988781809806824, + 0.9989243149757385 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988110065460205, + 0.9958828687667847, + 0.9989339709281921 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9947245717048645, + 0.9982553124427795, + 0.9989066123962402, + 0.9989018440246582 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 12 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -15687,7 +32689,7 @@ "19:00", "20:50", "SA10 105 - 10 Sachem Street 105", - "https:\/\/map.yale.edu\/?id=1910#!m\/559538" + "https://map.yale.edu/?id=1910#!m/559538" ] ] }, @@ -15699,15 +32701,102 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88832\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88832/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "", - "description": "Course on the social scientific contributions to environmental and natural resource issues, emphasizing equity, politics, and knowledge. Section I, introduction to the course. Section II, disaster and environmental perturbation: the social science of emerging diseases; and the social origins of disaster. Section III, boundaries: cost and benefit in the Green Revolution; riverine restoration; and aspirational infrastructure. Section IV, methods: working within development projects, and rapid appraisal and consultancies. Section V, local communities, resources, and (under)development: representing the poor, development discourse, and indigenous peoples and knowledge. This is a core M.E.M. specialization course in YSE and a core course in the combined YSE\/Anthropology doctoral degree program. Enrollment capped.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989063739776611, + 0.9994975328445435 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9995020627975464, + 0.9994912147521973, + 0.9984098672866821 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 1 + }, + "sentiment_distribution": { + "NEGATIVE": 0.6666666666666666, + "POSITIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989368319511414, + 0.997117280960083, + 0.9994901418685913, + 0.9995050430297852, + 0.998613715171814 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.4, + "NEGATIVE": 0.6 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.6 + ] + }, + "final_label": "NEGATIVE", + "final_count": 6, + "final_proportion": 0.6, + "final_counts": { + "POSITIVE": 4, + "NEGATIVE": 6 + }, + "final_distribution": { + "POSITIVE": 0.4, + "NEGATIVE": 0.6 + } + } + }, + { + "season_code": "202303", + "requirements": "", + "description": "Course on the social scientific contributions to environmental and natural resource issues, emphasizing equity, politics, and knowledge. Section I, introduction to the course. Section II, disaster and environmental perturbation: the social science of emerging diseases; and the social origins of disaster. Section III, boundaries: cost and benefit in the Green Revolution; riverine restoration; and aspirational infrastructure. Section IV, methods: working within development projects, and rapid appraisal and consultancies. Section V, local communities, resources, and (under)development: representing the poor, development discourse, and indigenous peoples and knowledge. This is a core M.E.M. specialization course in YSE and a core course in the combined YSE/Anthropology doctoral degree program. Enrollment capped.", "short_title": "Power, Knowledge, and the Env...", "title": "Power, Knowledge, and the Environment: Social Science Theory and Method", "school": "GS", @@ -15745,12 +32834,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "This course examines the anthropology of power, particularly power in conservation interventions in the global South. It is intended to give students a toolbox of ideas about power in order to improve the effectiveness of conservation. Conservation thought and practice are power-laden: conservation thought is powerfully shaped by the history of ideas of nature and its relation to people, and conservation interventions govern and affect peoples and ecologies. This course argues that being able to think deeply, particularly about power, improves conservation policy making and practice. Political ecology is by far the best known and published approach to thinking about power in conservation; this course emphasizes the relatively neglected but robust anthropology of conservation literature outside political ecology, especially literature rooted in Foucault. It is intended to make four of Foucault\u2019s concepts of power accessible, concepts that are the most used in the anthropology of conservation: the power of discourses, discipline and governmentality, subject formation, and neoliberal governmentality. The important ethnographic literature that these concepts have stimulated is also examined. Together, theory and ethnography can underpin our emerging understanding of a new, Anthropocene-shaped world. This course will be of interest to students and scholars of conservation, environmental anthropology, and political ecology, as well as conservation practitioners and policy makers. It is a required course for students in the combined YSE\/Anthropology doctoral degree program. It is highly recommended for M.E.Sc. students who need an in-depth course on social science theory. M.E.M. students interested in conservation practice and policy making are also encouraged to consider this course, which makes an effort to bridge the gap between the best academic literature and practice. Open to advanced undergraduates. No prerequisites. Three-hour discussion-centered seminar.", + "description": "This course examines the anthropology of power, particularly power in conservation interventions in the global South. It is intended to give students a toolbox of ideas about power in order to improve the effectiveness of conservation. Conservation thought and practice are power-laden: conservation thought is powerfully shaped by the history of ideas of nature and its relation to people, and conservation interventions govern and affect peoples and ecologies. This course argues that being able to think deeply, particularly about power, improves conservation policy making and practice. Political ecology is by far the best known and published approach to thinking about power in conservation; this course emphasizes the relatively neglected but robust anthropology of conservation literature outside political ecology, especially literature rooted in Foucault. It is intended to make four of Foucault\u2019s concepts of power accessible, concepts that are the most used in the anthropology of conservation: the power of discourses, discipline and governmentality, subject formation, and neoliberal governmentality. The important ethnographic literature that these concepts have stimulated is also examined. Together, theory and ethnography can underpin our emerging understanding of a new, Anthropocene-shaped world. This course will be of interest to students and scholars of conservation, environmental anthropology, and political ecology, as well as conservation practitioners and policy makers. It is a required course for students in the combined YSE/Anthropology doctoral degree program. It is highly recommended for M.E.Sc. students who need an in-depth course on social science theory. M.E.M. students interested in conservation practice and policy making are also encouraged to consider this course, which makes an effort to bridge the gap between the best academic literature and practice. Open to advanced undergraduates. No prerequisites. Three-hour discussion-centered seminar.", "short_title": "Power in Conservation", "title": "Power in Conservation", "school": "GS", @@ -15784,7 +32901,7 @@ "13:00", "15:50", "S 32 - Sage Hall 32", - "https:\/\/map.yale.edu\/?id=1910#!m\/559547" + "https://map.yale.edu/?id=1910#!m/559547" ] ] }, @@ -15796,10 +32913,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92654\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92654/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -15837,7 +32982,7 @@ "9:25", "11:15", "SA10 105 - 10 Sachem Street 105", - "https:\/\/map.yale.edu\/?id=1910#!m\/559538" + "https://map.yale.edu/?id=1910#!m/559538" ] ] }, @@ -15849,10 +32994,99 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90197\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90197/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988816380500793, + 0.9987596273422241 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989331364631653, + 0.9989234805107117, + 0.9835824966430664, + 0.9988621473312378 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989336133003235, + 0.998933732509613, + 0.9989374279975891, + 0.9989373087882996, + 0.9909852743148804 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 0.8181818181818182, + "final_counts": { + "POSITIVE": 9, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8181818181818182, + "NEGATIVE": 0.18181818181818182 + } + } }, { "season_code": "202303", @@ -15894,7 +33128,7 @@ "13:30", "15:20", "WLH 115 - William L. Harkness Hall 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -15906,10 +33140,95 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88185\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88185/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989055395126343, + 0.9988481998443604, + 0.9988681077957153 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998902440071106, + 0.9825111031532288, + 0.9989070892333984 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989234805107117, + 0.9978604912757874, + 0.9989123344421387 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 0.7777777777777778, + "final_counts": { + "POSITIVE": 7, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.7777777777777778, + "NEGATIVE": 0.2222222222222222 + } + } }, { "season_code": "202303", @@ -15946,7 +33265,7 @@ "15:30", "17:20", "SA10 220 - 10 Sachem Street 220", - "https:\/\/map.yale.edu\/?id=1910#!m\/559538" + "https://map.yale.edu/?id=1910#!m/559538" ] ] }, @@ -15958,10 +33277,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88840\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88840/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -16001,7 +33348,7 @@ "13:30", "15:20", "HLH51 101 - 51 Hillhouse Avenue 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559970" + "https://map.yale.edu/?id=1910#!m/559970" ] ] }, @@ -16013,10 +33360,117 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89010\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89010/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9974721074104309, + 0.9983928799629211, + 0.9986236095428467, + 0.9989116191864014, + 0.9800824522972107, + 0.9927740097045898 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998059093952179, + 0.9988765120506287, + 0.9974972605705261, + 0.9875548481941223, + 0.9988817572593689, + 0.9986238479614258, + 0.9988528490066528 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.997566819190979, + 0.9942857623100281, + 0.9983615279197693, + 0.9984147548675537, + 0.9986631870269775, + 0.998924195766449, + 0.9980574250221252 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 6 + }, + "sentiment_distribution": { + "NEGATIVE": 0.14285714285714285, + "POSITIVE": 0.8571428571428571 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 0.85, + "final_counts": { + "POSITIVE": 17, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.85, + "NEGATIVE": 0.15 + } + } }, { "season_code": "202303", @@ -16056,7 +33510,7 @@ "13:30", "16:30", "SA10 23 - 10 Sachem Street 23", - "https:\/\/map.yale.edu\/?id=1910#!m\/559538" + "https://map.yale.edu/?id=1910#!m/559538" ] ] }, @@ -16068,10 +33522,107 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88848\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88848/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987902045249939, + 0.9964780211448669, + 0.9987773299217224, + 0.998798131942749, + 0.9988403916358948 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998934805393219, + 0.998849630355835, + 0.9985811710357666, + 0.9989076852798462, + 0.9968453049659729 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9974504113197327, + 0.9975540041923523, + 0.9993981122970581, + 0.9989338517189026, + 0.9989328980445862 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 0.8666666666666667, + "final_counts": { + "POSITIVE": 13, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8666666666666667, + "NEGATIVE": 0.13333333333333333 + } + } }, { "season_code": "202303", @@ -16111,7 +33662,7 @@ "9:00", "10:15", "HLH51 101 - 51 Hillhouse Avenue 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559970" + "https://map.yale.edu/?id=1910#!m/559970" ] ], "Wednesday": [ @@ -16119,7 +33670,7 @@ "9:00", "10:15", "HLH51 101 - 51 Hillhouse Avenue 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559970" + "https://map.yale.edu/?id=1910#!m/559970" ] ] }, @@ -16131,10 +33682,101 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88850\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88850/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984295964241028, + 0.997956395149231, + 0.998760461807251, + 0.9989023208618164 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.8360072374343872, + 0.9987240433692932, + 0.9992945194244385, + 0.9989243149757385 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981436729431152, + 0.9987747073173523, + 0.9988528490066528, + 0.9988846182823181 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 0.8333333333333334, + "final_counts": { + "POSITIVE": 10, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + } + } }, { "season_code": "202303", @@ -16171,7 +33813,7 @@ "9:25", "11:15", "HLH51 101 - 51 Hillhouse Avenue 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559970" + "https://map.yale.edu/?id=1910#!m/559970" ] ] }, @@ -16183,10 +33825,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88841\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88841/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -16238,10 +33908,87 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88833\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88833/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9979820251464844, + 0.9988480806350708 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985902905464172, + 0.9988308548927307 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9955242872238159, + 0.998369038105011 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 6 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -16282,7 +34029,7 @@ "11:35", "12:50", "HLH51 101 - 51 Hillhouse Avenue 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559970" + "https://map.yale.edu/?id=1910#!m/559970" ] ], "Thursday": [ @@ -16290,7 +34037,7 @@ "11:35", "12:50", "HLH51 101 - 51 Hillhouse Avenue 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559970" + "https://map.yale.edu/?id=1910#!m/559970" ] ] }, @@ -16302,10 +34049,95 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90580\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90580/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987101554870605, + 0.9989376664161682, + 0.9988366961479187 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988262057304382, + 0.9987607002258301, + 0.9988501071929932 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989184141159058, + 0.9989233613014221, + 0.9989168643951416, + 0.9986386895179749 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 10 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -16343,7 +34175,7 @@ "9:25", "11:15", "HLH51 101 - 51 Hillhouse Avenue 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559970" + "https://map.yale.edu/?id=1910#!m/559970" ] ] }, @@ -16355,10 +34187,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88851\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88851/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -16398,7 +34258,7 @@ "13:30", "15:20", "HLH51 101 - 51 Hillhouse Avenue 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559970" + "https://map.yale.edu/?id=1910#!m/559970" ] ] }, @@ -16410,10 +34270,97 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88849\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88849/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986421465873718, + 0.9988333582878113, + 0.9988625049591064, + 0.9988294243812561 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9976067543029785, + 0.9988102912902832, + 0.9987953901290894 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.5763342976570129, + 0.9988767504692078, + 0.9989042282104492, + 0.9989080429077148 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 11 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -16452,7 +34399,7 @@ "13:30", "15:20", "WLH 015 - William L. Harkness Hall 015", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -16464,10 +34411,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89646\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89646/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -16507,10 +34482,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90428\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90428/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -16549,7 +34552,7 @@ "13:30", "15:20", "WTS B39 - Watson Center 60 Sachem Street B39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -16561,10 +34564,89 @@ "classnotes": "Please request permission via the system. Please do not email the instructor directly.", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88793\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88793/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988201260566711, + 0.9989142417907715, + 0.9987363219261169 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986193180084229 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9971531629562378, + 0.9989404082298279, + 0.9989078044891357 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 7 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -16602,7 +34684,7 @@ "13:30", "15:20", "SA10 307 - 10 Sachem Street 307", - "https:\/\/map.yale.edu\/?id=1910#!m\/559538" + "https://map.yale.edu/?id=1910#!m/559538" ] ] }, @@ -16614,10 +34696,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92357\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92357/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -16658,7 +34768,7 @@ "14:30", "15:45", "SA10 10 - 10 Sachem Street 10", - "https:\/\/map.yale.edu\/?id=1910#!m\/559538" + "https://map.yale.edu/?id=1910#!m/559538" ] ], "Thursday": [ @@ -16666,7 +34776,7 @@ "14:30", "15:45", "SA10 10 - 10 Sachem Street 10", - "https:\/\/map.yale.edu\/?id=1910#!m\/559538" + "https://map.yale.edu/?id=1910#!m/559538" ] ] }, @@ -16678,10 +34788,111 @@ "classnotes": "Instructor permission is required. Students should request permission via YCS (not email) April 14-21. Those who are granted permission to take the class will be informed via YCS by April 25th.", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88834\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88834/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.995227575302124, + 0.9988653659820557, + 0.99817955493927, + 0.9986279010772705, + 0.9986945986747742, + 0.9986296892166138 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989110231399536, + 0.9940661191940308, + 0.9989171028137207, + 0.9986716508865356, + 0.9988534450531006 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998072624206543, + 0.9989064931869507, + 0.994411051273346, + 0.99556964635849, + 0.9988763928413391, + 0.9989089965820312 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 0.8823529411764706, + "final_counts": { + "POSITIVE": 15, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8823529411764706, + "NEGATIVE": 0.11764705882352941 + } + } }, { "season_code": "202303", @@ -16725,7 +34936,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -16768,7 +35007,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -16811,7 +35078,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -16854,7 +35149,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -16897,7 +35220,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -16940,7 +35291,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -16977,7 +35356,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -17017,10 +35424,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90586\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90586/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -17063,7 +35498,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -17106,7 +35569,7 @@ "17:30", "19:20", "HQ 213 - Humanities Quadrangle 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -17118,10 +35581,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88285\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88285/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -17160,7 +35651,7 @@ "14:30", "15:45", "AKW 100 - Arthur K. Watson Hall 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560119" + "https://map.yale.edu/?id=1910#!m/560119" ] ], "Wednesday": [ @@ -17168,7 +35659,7 @@ "14:30", "15:45", "AKW 100 - Arthur K. Watson Hall 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560119" + "https://map.yale.edu/?id=1910#!m/560119" ] ] }, @@ -17185,10 +35676,97 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89886\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89886/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986398816108704, + 0.9933298230171204, + 0.9988352656364441 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9980518817901611, + 0.9994916915893555, + 0.9989367127418518 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 1 + }, + "sentiment_distribution": { + "NEGATIVE": 0.6666666666666666, + "POSITIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987200498580933, + 0.9951274394989014, + 0.9995146989822388, + 0.9989118576049805 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 0.7, + "final_counts": { + "POSITIVE": 7, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.7, + "NEGATIVE": 0.3 + } + } }, { "season_code": "202303", @@ -17227,7 +35805,7 @@ "11:35", "12:50", "AKW 100 - Arthur K. Watson Hall 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560119" + "https://map.yale.edu/?id=1910#!m/560119" ] ], "Thursday": [ @@ -17235,7 +35813,7 @@ "11:35", "12:50", "AKW 100 - Arthur K. Watson Hall 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560119" + "https://map.yale.edu/?id=1910#!m/560119" ] ] }, @@ -17252,10 +35830,113 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89887\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89887/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987208247184753, + 0.9986454844474792, + 0.9988088607788086, + 0.9988095760345459, + 0.9982357025146484, + 0.9987908005714417 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987173080444336, + 0.9984772801399231, + 0.9923027753829956, + 0.9988440275192261, + 0.9967209696769714, + 0.9891902208328247 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985961318016052, + 0.9976112842559814, + 0.99883633852005, + 0.997117280960083, + 0.9987201690673828, + 0.9985390901565552 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 0.9444444444444444, + "final_counts": { + "POSITIVE": 17, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9444444444444444, + "NEGATIVE": 0.05555555555555555 + } + } }, { "season_code": "202303", @@ -17294,7 +35975,7 @@ "11:35", "12:50", "BASS 305 - Bass Center 305", - "https:\/\/map.yale.edu\/?id=1910#!m\/560102" + "https://map.yale.edu/?id=1910#!m/560102" ] ], "Wednesday": [ @@ -17302,7 +35983,7 @@ "11:35", "12:50", "BASS 305 - Bass Center 305", - "https:\/\/map.yale.edu\/?id=1910#!m\/560102" + "https://map.yale.edu/?id=1910#!m/560102" ] ] }, @@ -17318,10 +35999,171 @@ "classnotes": "", "final_exam": "Sunday, December 17, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88771\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88771/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998803973197937, + 0.9987347722053528, + 0.9963492155075073, + 0.9985039234161377, + 0.9985628724098206, + 0.998569130897522, + 0.9986530542373657, + 0.9987058639526367, + 0.9987446069717407, + 0.9935930371284485, + 0.9986722469329834, + 0.9987887740135193, + 0.998757004737854, + 0.9988603591918945 + ], + "sentiment_counts": { + "POSITIVE": 14, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9980083107948303, + 0.9986263513565063, + 0.999474823474884, + 0.9987298846244812, + 0.9967061877250671, + 0.9987862706184387, + 0.998763918876648, + 0.9989194869995117, + 0.9981575608253479, + 0.9980962872505188, + 0.9981945157051086, + 0.9989274144172668, + 0.9962016940116882, + 0.9984846711158752, + 0.9991961121559143, + 0.9988729357719421 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.8125, + "NEGATIVE": 0.1875 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8125 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985347986221313, + 0.9985034465789795, + 0.9986324906349182, + 0.9974417686462402, + 0.9989259839057922, + 0.9982158541679382, + 0.9954541921615601, + 0.9988993406295776, + 0.9965245127677917, + 0.9989294409751892, + 0.9988246560096741, + 0.9988030195236206, + 0.9988880753517151, + 0.9947750568389893, + 0.9976739287376404, + 0.9994606375694275, + 0.9984204769134521 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 14 + }, + "sentiment_distribution": { + "NEGATIVE": 0.17647058823529413, + "POSITIVE": 0.8235294117647058 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8235294117647058 + ] + }, + "final_label": "POSITIVE", + "final_count": 41, + "final_proportion": 0.8723404255319149, + "final_counts": { + "POSITIVE": 41, + "NEGATIVE": 6 + }, + "final_distribution": { + "POSITIVE": 0.8723404255319149, + "NEGATIVE": 0.1276595744680851 + } + } }, { "season_code": "202303", @@ -17359,7 +36201,7 @@ "13:00", "14:15", "ML 211 - Mason Laboratory 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ], "Wednesday": [ @@ -17367,7 +36209,7 @@ "13:00", "14:15", "ML 211 - Mason Laboratory 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ] }, @@ -17384,10 +36226,267 @@ "classnotes": "", "final_exam": "Wednesday, December 20, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88772\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88772/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981690645217896, + 0.9987472295761108, + 0.9987668991088867, + 0.998818576335907, + 0.9988495111465454, + 0.997275173664093, + 0.9987899661064148, + 0.997090220451355, + 0.9989247918128967, + 0.9784221649169922, + 0.9989253878593445, + 0.9986560344696045, + 0.9987531900405884, + 0.986297607421875, + 0.9912986159324646, + 0.9983521699905396, + 0.9970728158950806, + 0.9986922144889832, + 0.9985724687576294, + 0.9982007741928101, + 0.998608410358429, + 0.9986385703086853, + 0.9988858103752136, + 0.998916745185852, + 0.997649610042572 + ], + "sentiment_counts": { + "POSITIVE": 25, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988573789596558, + 0.998788058757782, + 0.9989294409751892, + 0.9994732737541199, + 0.9987879395484924, + 0.9989147186279297, + 0.9989355206489563, + 0.9987949132919312, + 0.9989222288131714, + 0.9986520409584045, + 0.9988614320755005, + 0.9988706707954407, + 0.9989026784896851, + 0.9989317059516907, + 0.9984515905380249, + 0.9988382458686829, + 0.9984170198440552, + 0.9989380240440369, + 0.9988976716995239, + 0.9989332556724548, + 0.9976444840431213, + 0.9989219903945923, + 0.9989376664161682, + 0.998889148235321, + 0.9989235997200012, + 0.9990711212158203, + 0.998930037021637, + 0.9989287257194519, + 0.9986893534660339, + 0.998918890953064, + 0.9967558979988098, + 0.9984676241874695, + 0.9987505674362183, + 0.9988909363746643 + ], + "sentiment_counts": { + "POSITIVE": 31, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.9117647058823529, + "NEGATIVE": 0.08823529411764706 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9117647058823529 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989073276519775, + 0.9980168342590332, + 0.9989277720451355, + 0.9984424710273743, + 0.998625636100769, + 0.9988402724266052, + 0.9987951517105103, + 0.9988994598388672, + 0.5030221939086914, + 0.9981922507286072, + 0.9988677501678467, + 0.9989018440246582, + 0.9988833069801331, + 0.9988716244697571, + 0.9994773268699646, + 0.9984058737754822, + 0.9988148212432861, + 0.998862624168396, + 0.9984946250915527, + 0.998878538608551, + 0.9963144659996033, + 0.994835376739502, + 0.9989325404167175, + 0.9989182949066162, + 0.9989327788352966, + 0.9989262223243713, + 0.9989097118377686, + 0.9989045858383179, + 0.9989336133003235, + 0.9989194869995117, + 0.9985528588294983, + 0.9989235997200012, + 0.9987350106239319, + 0.9985955357551575, + 0.9967658519744873, + 0.9930703043937683 + ], + "sentiment_counts": { + "POSITIVE": 34, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.9444444444444444, + "NEGATIVE": 0.05555555555555555 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9444444444444444 + ] + }, + "final_label": "POSITIVE", + "final_count": 90, + "final_proportion": 0.9473684210526315, + "final_counts": { + "POSITIVE": 90, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.9473684210526315, + "NEGATIVE": 0.05263157894736842 + } + } }, { "season_code": "202303", @@ -17425,7 +36524,7 @@ "13:00", "14:15", "BCT 508A - Becton Center 508A", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ], "Thursday": [ @@ -17433,7 +36532,7 @@ "13:00", "14:15", "BCT 508A - Becton Center 508A", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ] }, @@ -17449,10 +36548,85 @@ "classnotes": "", "final_exam": "Saturday, December 16, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89888\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89888/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988345503807068 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989074468612671, + 0.9989067316055298 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989001750946045, + 0.9976016879081726 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 5, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 5 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -17490,7 +36664,7 @@ "13:00", "14:15", "LOM 206 - Leet Oliver Memorial Hall 206", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ], "Thursday": [ @@ -17498,7 +36672,7 @@ "13:00", "14:15", "LOM 206 - Leet Oliver Memorial Hall 206", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ] }, @@ -17516,10 +36690,99 @@ "classnotes": "", "final_exam": "Saturday, December 16, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88423\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88423/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981690645217896, + 0.9980093836784363, + 0.9986830353736877 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988906979560852, + 0.9995096921920776, + 0.9987523555755615, + 0.9989132881164551 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9974592328071594, + 0.9986438155174255, + 0.9988709092140198, + 0.9989014863967896 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 0.8181818181818182, + "final_counts": { + "POSITIVE": 9, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8181818181818182, + "NEGATIVE": 0.18181818181818182 + } + } }, { "season_code": "202303", @@ -17557,7 +36820,7 @@ "14:30", "15:45", "SPL 63 - Sloane Physics Laboratory 63", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ], "Wednesday": [ @@ -17565,7 +36828,7 @@ "14:30", "15:45", "SPL 63 - Sloane Physics Laboratory 63", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ] }, @@ -17581,10 +36844,117 @@ "classnotes": "", "final_exam": "Sunday, December 17, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89131\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89131/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994995594024658, + 0.9987731575965881, + 0.9984910488128662, + 0.9986043572425842, + 0.9982694387435913, + 0.9985224604606628 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 5 + }, + "sentiment_distribution": { + "NEGATIVE": 0.16666666666666666, + "POSITIVE": 0.8333333333333334 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9995085000991821, + 0.9985527396202087, + 0.998920202255249, + 0.9995081424713135, + 0.9987547397613525, + 0.9995039701461792, + 0.9984220266342163 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 4 + }, + "sentiment_distribution": { + "NEGATIVE": 0.42857142857142855, + "POSITIVE": 0.5714285714285714 + }, + "sentiment_overall": [ + "POSITIVE", + 0.5714285714285714 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9994852542877197, + 0.9995077848434448, + 0.998895525932312, + 0.9854602217674255, + 0.9988079071044922, + 0.9979616403579712, + 0.7239924669265747 + ], + "sentiment_counts": { + "NEGATIVE": 5, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.7142857142857143, + "POSITIVE": 0.2857142857142857 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.7142857142857143 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 0.55, + "final_counts": { + "NEGATIVE": 9, + "POSITIVE": 11 + }, + "final_distribution": { + "NEGATIVE": 0.45, + "POSITIVE": 0.55 + } + } }, { "season_code": "202303", @@ -17623,7 +36993,7 @@ "13:00", "14:15", "BCT 408A - Becton Center 408A", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ], "Wednesday": [ @@ -17631,7 +37001,7 @@ "13:00", "14:15", "BCT 408A - Becton Center 408A", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ] }, @@ -17647,10 +37017,113 @@ "classnotes": "", "final_exam": "Wednesday, December 20, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89889\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89889/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9978713989257812, + 0.998923122882843, + 0.9994875192642212, + 0.9995083808898926, + 0.9988131523132324 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.6, + "POSITIVE": 0.4 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.6 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9995015859603882, + 0.9995038509368896, + 0.9995118379592896, + 0.9952287673950195, + 0.9987379908561707, + 0.9994863271713257 + ], + "sentiment_counts": { + "NEGATIVE": 5, + "POSITIVE": 1 + }, + "sentiment_distribution": { + "NEGATIVE": 0.8333333333333334, + "POSITIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9985811710357666, + 0.9989120960235596, + 0.9995071887969971, + 0.9994989633560181, + 0.9995086193084717, + 0.9988935589790344, + 0.9961372017860413 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.42857142857142855, + "NEGATIVE": 0.5714285714285714 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.5714285714285714 + ] + }, + "final_label": "NEGATIVE", + "final_count": 12, + "final_proportion": 0.6666666666666666, + "final_counts": { + "NEGATIVE": 12, + "POSITIVE": 6 + }, + "final_distribution": { + "NEGATIVE": 0.6666666666666666, + "POSITIVE": 0.3333333333333333 + } + } }, { "season_code": "202303", @@ -17691,7 +37164,7 @@ "13:00", "14:15", "BCT 408A - Becton Center 408A", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ], "Thursday": [ @@ -17699,7 +37172,7 @@ "13:00", "14:15", "BCT 408A - Becton Center 408A", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ] }, @@ -17717,10 +37190,123 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89890\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89890/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987872242927551, + 0.9979719519615173, + 0.9987226128578186, + 0.999255359172821, + 0.9986827969551086, + 0.997454822063446, + 0.9974538683891296 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988425970077515, + 0.9989016056060791, + 0.9986081719398499, + 0.9990240335464478, + 0.9987753033638, + 0.9941311478614807, + 0.9948021173477173, + 0.9960088729858398 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984347224235535, + 0.9988204836845398, + 0.998898983001709, + 0.9988067150115967, + 0.998678982257843, + 0.9987913966178894, + 0.997117280960083, + 0.998788058757782 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 0.8695652173913043, + "final_counts": { + "POSITIVE": 20, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.8695652173913043, + "NEGATIVE": 0.13043478260869565 + } + } }, { "season_code": "202303", @@ -17760,7 +37346,7 @@ "11:35", "12:50", "BCT 508A - Becton Center 508A", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ], "Thursday": [ @@ -17768,7 +37354,7 @@ "11:35", "12:50", "BCT 508A - Becton Center 508A", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ] }, @@ -17784,15 +37370,90 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89891\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89891/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984865188598633, + 0.9988002777099609 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987872242927551 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9772657752037048 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 0 + }, + "sentiment_distribution": { + "NEGATIVE": 1.0, + "POSITIVE": 0.0 + }, + "sentiment_overall": [ + "NEGATIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 3, + "final_proportion": 0.75, + "final_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + } + } }, { "season_code": "202303", "requirements": "Permission of the faculty adviser and of the director of undergraduate studies is required.", - "description": "Faculty-supervised individual or small-group projects with emphasis on research (laboratory or theory). Students are expected to consult the director of undergraduate studies and appropriate faculty members to discuss ideas and suggestions for suitable topics. This course may be taken more than once, is graded pass\/fail, is limited to Applied Physics majors, and does not count toward the senior requirement.", + "description": "Faculty-supervised individual or small-group projects with emphasis on research (laboratory or theory). Students are expected to consult the director of undergraduate studies and appropriate faculty members to discuss ideas and suggestions for suitable topics. This course may be taken more than once, is graded pass/fail, is limited to Applied Physics majors, and does not count toward the senior requirement.", "short_title": "Special Projects", "title": "Special Projects", "school": "YC", @@ -17830,7 +37491,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -17868,7 +37557,7 @@ "13:00", "14:15", "ML 107 - Mason Laboratory 107", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ], "Thursday": [ @@ -17876,7 +37565,7 @@ "13:00", "14:15", "ML 107 - Mason Laboratory 107", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ] }, @@ -17892,10 +37581,109 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89892\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89892/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988784193992615, + 0.9987830519676208, + 0.9986141920089722, + 0.9934698343276978, + 0.9989197254180908 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989343285560608, + 0.9988129138946533, + 0.998920202255249, + 0.998867392539978, + 0.9987447261810303, + 0.9989223480224609 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989390969276428, + 0.9987358450889587, + 0.9988126754760742, + 0.9988623857498169, + 0.9982798099517822, + 0.9989168643951416 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 17 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -17935,10 +37723,81 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89915\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89915/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988436698913574 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987472295761108 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988259673118591 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 3, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 3 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -17977,7 +37836,7 @@ "13:00", "14:15", "BCT 408A - Becton Center 408A", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ], "Wednesday": [ @@ -17985,7 +37844,7 @@ "13:00", "14:15", "BCT 408A - Becton Center 408A", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ] }, @@ -17997,15 +37856,118 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89889\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89889/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9978713989257812, + 0.998923122882843, + 0.9994875192642212, + 0.9995083808898926, + 0.9988131523132324 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.6, + "POSITIVE": 0.4 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.6 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9995015859603882, + 0.9995038509368896, + 0.9995118379592896, + 0.9952287673950195, + 0.9987379908561707, + 0.9994863271713257 + ], + "sentiment_counts": { + "NEGATIVE": 5, + "POSITIVE": 1 + }, + "sentiment_distribution": { + "NEGATIVE": 0.8333333333333334, + "POSITIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9985811710357666, + 0.9989120960235596, + 0.9995071887969971, + 0.9994989633560181, + 0.9995086193084717, + 0.9988935589790344, + 0.9961372017860413 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.42857142857142855, + "NEGATIVE": 0.5714285714285714 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.5714285714285714 + ] + }, + "final_label": "NEGATIVE", + "final_count": 12, + "final_proportion": 0.6666666666666666, + "final_counts": { + "NEGATIVE": 12, + "POSITIVE": 6 + }, + "final_distribution": { + "NEGATIVE": 0.6666666666666666, + "POSITIVE": 0.3333333333333333 + } + } }, { "season_code": "202303", "requirements": "Prior experience with Python is ideal, but can be learned as part of the coursework. Students should ideally be familiar with quantum mechanics, including density matrices and some phase-space methods, but this applies to only small fraction of the course. The course is primarily a survey-level overview of many topics, not a deep dive into any one topic. As a result, students who have extensive background on many of the topics described in the syllabus are welcome to participate but should speak with the instructor beforehand so we can determine if their learning goals can be met.", - "description": "Computation has taken on an important, often central, role in both the practice and conception of physical science and engineering physics. This relationship is intricate and multifaceted, including computation for physics, computation with physics, and computation as a lens through which to understand physical processes. This course takes a more or less random walk within this space, surveying ideas and technologies that either apply computation to physics, that understand physical phenomena through the lens of computation, or that use physics to perform computation. Given the extent to which machine learning methods are currently revolutionizing this space of ideas, we focus somewhat more on topics related to modern machine learning, as opposed to other sorts of algorithms and computation. Since it is covered more deeply in other courses, we do not extensively cover error-corrected\/fault tolerant quantum information processing, but we do frequently consider quantum physics.\u00a0The course does not provide a systematic overview of any one topic, but rather a sampling of ideas and concepts relevant to modern research challenges. It is therefore intended for graduate students in early years of their program or research-inclined senior undergraduate students contemplating a research career. As a result, in addition to the scientific topics at hand, key learning goals include the basics of literature review, presentation, collegial criticism (peer review), and synthesizing new research ideas. Evaluation is primarily through two projects, one a lecture reviewing a topic area of interest and one a tutorial notebook providing worked numerical examples\/code meant to develop or introduce a concept.", + "description": "Computation has taken on an important, often central, role in both the practice and conception of physical science and engineering physics. This relationship is intricate and multifaceted, including computation for physics, computation with physics, and computation as a lens through which to understand physical processes. This course takes a more or less random walk within this space, surveying ideas and technologies that either apply computation to physics, that understand physical phenomena through the lens of computation, or that use physics to perform computation. Given the extent to which machine learning methods are currently revolutionizing this space of ideas, we focus somewhat more on topics related to modern machine learning, as opposed to other sorts of algorithms and computation. Since it is covered more deeply in other courses, we do not extensively cover error-corrected/fault tolerant quantum information processing, but we do frequently consider quantum physics.\u00a0The course does not provide a systematic overview of any one topic, but rather a sampling of ideas and concepts relevant to modern research challenges. It is therefore intended for graduate students in early years of their program or research-inclined senior undergraduate students contemplating a research career. As a result, in addition to the scientific topics at hand, key learning goals include the basics of literature review, presentation, collegial criticism (peer review), and synthesizing new research ideas. Evaluation is primarily through two projects, one a lecture reviewing a topic area of interest and one a tutorial notebook providing worked numerical examples/code meant to develop or introduce a concept.", "short_title": "Explorations in Physics and C...", "title": "Explorations in Physics and Computation", "school": "GS", @@ -18037,7 +37999,7 @@ "16:00", "17:15", "BCT 408A - Becton Center 408A", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ], "Thursday": [ @@ -18045,7 +38007,7 @@ "16:00", "17:15", "BCT 408A - Becton Center 408A", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ] }, @@ -18057,10 +38019,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92466\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92466/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -18101,7 +38091,7 @@ "13:00", "14:15", "BCT 408A - Becton Center 408A", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ], "Thursday": [ @@ -18109,7 +38099,7 @@ "13:00", "14:15", "BCT 408A - Becton Center 408A", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ] }, @@ -18123,10 +38113,123 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89890\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89890/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987872242927551, + 0.9979719519615173, + 0.9987226128578186, + 0.999255359172821, + 0.9986827969551086, + 0.997454822063446, + 0.9974538683891296 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988425970077515, + 0.9989016056060791, + 0.9986081719398499, + 0.9990240335464478, + 0.9987753033638, + 0.9941311478614807, + 0.9948021173477173, + 0.9960088729858398 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984347224235535, + 0.9988204836845398, + 0.998898983001709, + 0.9988067150115967, + 0.998678982257843, + 0.9987913966178894, + 0.997117280960083, + 0.998788058757782 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 0.8695652173913043, + "final_counts": { + "POSITIVE": 20, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.8695652173913043, + "NEGATIVE": 0.13043478260869565 + } + } }, { "season_code": "202303", @@ -18175,14 +38278,42 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89899\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89899/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", - "requirements": "Prerequisites: undergraduate-level electromagnetism (e.g., APHY 322) and linear algebra (e.g., MATH 222 or 225); familiarity with any of Matlab\/Python\/Julia\/etc., or a willingness to learn.", + "requirements": "Prerequisites: undergraduate-level electromagnetism (e.g., APHY 322) and linear algebra (e.g., MATH 222 or 225); familiarity with any of Matlab/Python/Julia/etc., or a willingness to learn.", "description": "This course is an introduction to modern nanophotonic theory and design. We introduce a broad range of mathematical and computational tools with which one can analyze, understand, and design for a diverse range of nanophotonic phenomena. The course is meant to be in the orthogonal complement of traditional courses working through Jackson\u2019s Classical Electrodynamics\u2014we (mostly) avoid specialized high-symmetry cases in which Maxwell\u2019s equations can be solved exactly. Instead, our emphasis is on general mode, quasinormal-mode, and scattering-matrix descriptions, as well as surface- and volume-integral formulations that distill the essential physics of complex systems. The unique properties and trade-offs for a variety of computational methods, including finite-element, finite-difference, integral-equation, and modal-expansion (e.g., RCWA) approaches, comprise a significant portion of the latter half of the term. The robust open-source computational tools Meep, S4, and NLopt are introduced early on, to be learned and utilized throughout the term.", "short_title": "Modern Nanophotonics: Theory ...", "title": "Modern Nanophotonics: Theory and Design", @@ -18215,7 +38346,7 @@ "11:35", "12:50", "BCT 408A - Becton Center 408A", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ], "Wednesday": [ @@ -18223,7 +38354,7 @@ "11:35", "12:50", "BCT 408A - Becton Center 408A", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ] }, @@ -18235,10 +38366,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89900\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89900/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -18276,7 +38435,7 @@ "14:30", "15:45", "SPL 48 - Sloane Physics Laboratory 48", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ], "Thursday": [ @@ -18284,7 +38443,7 @@ "14:30", "15:45", "SPL 48 - Sloane Physics Laboratory 48", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ] }, @@ -18296,15 +38455,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88650\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88650/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "Introduction to the physics of nanoscale solid state systems, which are large and disordered enough to be described in terms of simple macroscopic parameters like resistance, capacitance, and inductance, but small and cold enough that effects usually associated with microscopic particles, like quantum-mechanical coherence and\/or charge quantization, dominate. Emphasis is placed on transport and noise phenomena in the normal and superconducting regimes.", + "description": "Introduction to the physics of nanoscale solid state systems, which are large and disordered enough to be described in terms of simple macroscopic parameters like resistance, capacitance, and inductance, but small and cold enough that effects usually associated with microscopic particles, like quantum-mechanical coherence and/or charge quantization, dominate. Emphasis is placed on transport and noise phenomena in the normal and superconducting regimes.", "short_title": "Mesoscopic Physics I", "title": "Mesoscopic Physics I", "school": "GS", @@ -18337,7 +38524,7 @@ "9:00", "10:15", "BCT 408A - Becton Center 408A", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ], "Wednesday": [ @@ -18345,7 +38532,7 @@ "9:00", "10:15", "BCT 408A - Becton Center 408A", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ] }, @@ -18357,10 +38544,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89901\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89901/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -18398,7 +38613,7 @@ "15:30", "17:20", "SPL 63 - Sloane Physics Laboratory 63", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ] }, @@ -18410,10 +38625,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89439\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89439/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -18453,7 +38675,7 @@ "11:35", "12:50", "BCT 508A - Becton Center 508A", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ], "Thursday": [ @@ -18461,7 +38683,7 @@ "11:35", "12:50", "BCT 508A - Becton Center 508A", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ] }, @@ -18473,10 +38695,85 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89891\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89891/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984865188598633, + 0.9988002777099609 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987872242927551 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9772657752037048 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 0 + }, + "sentiment_distribution": { + "NEGATIVE": 1.0, + "POSITIVE": 0.0 + }, + "sentiment_overall": [ + "NEGATIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 3, + "final_proportion": 0.75, + "final_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + } + } }, { "season_code": "202303", @@ -18514,7 +38811,7 @@ "16:00", "17:15", "BCT 408A - Becton Center 408A", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ], "Wednesday": [ @@ -18522,7 +38819,7 @@ "16:00", "17:15", "BCT 408A - Becton Center 408A", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ] }, @@ -18534,10 +38831,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89902\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89902/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -18575,7 +38900,7 @@ "14:30", "15:45", "BCT 508 - BCT 508", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ], "Thursday": [ @@ -18583,7 +38908,7 @@ "14:30", "15:45", "BCT 508 - BCT 508", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ] }, @@ -18595,10 +38920,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89903\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89903/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -18641,7 +38994,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -18679,7 +39060,7 @@ "9:25", "10:15", "WTS B60 - Watson Center 60 Sachem Street B60", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Tuesday": [ @@ -18687,7 +39068,7 @@ "9:25", "10:15", "WTS B60 - Watson Center 60 Sachem Street B60", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -18695,7 +39076,7 @@ "9:25", "10:15", "WTS B60 - Watson Center 60 Sachem Street B60", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -18703,7 +39084,7 @@ "9:25", "10:15", "WTS B60 - Watson Center 60 Sachem Street B60", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Friday": [ @@ -18711,7 +39092,7 @@ "9:25", "10:15", "WTS B60 - Watson Center 60 Sachem Street B60", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -18725,10 +39106,113 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89143\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89143/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9979206919670105, + 0.9974226951599121, + 0.9987053871154785, + 0.9894925355911255, + 0.9981464147567749, + 0.9988968372344971 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9992579817771912, + 0.9939672946929932, + 0.9988340735435486, + 0.9978766441345215, + 0.9994727969169617, + 0.9988200068473816 + ], + "sentiment_counts": { + "NEGATIVE": 4, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.6666666666666666, + "POSITIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9757541418075562, + 0.9987720847129822, + 0.9988837838172913, + 0.9863351583480835, + 0.998784601688385, + 0.9986675977706909 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 5 + }, + "sentiment_distribution": { + "NEGATIVE": 0.16666666666666666, + "POSITIVE": 0.8333333333333334 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 0.7222222222222222, + "final_counts": { + "POSITIVE": 13, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.7222222222222222, + "NEGATIVE": 0.2777777777777778 + } + } }, { "season_code": "202303", @@ -18766,7 +39250,7 @@ "10:30", "11:20", "WTS B60 - Watson Center 60 Sachem Street B60", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Tuesday": [ @@ -18774,7 +39258,7 @@ "10:30", "11:20", "WTS B60 - Watson Center 60 Sachem Street B60", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -18782,7 +39266,7 @@ "10:30", "11:20", "WTS B60 - Watson Center 60 Sachem Street B60", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -18790,7 +39274,7 @@ "10:30", "11:20", "WTS B60 - Watson Center 60 Sachem Street B60", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Friday": [ @@ -18798,7 +39282,7 @@ "10:30", "11:20", "WTS B60 - Watson Center 60 Sachem Street B60", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -18812,10 +39296,89 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89144\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89144/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987057447433472, + 0.9981991648674011 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988992214202881, + 0.9986577033996582 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988555908203125, + 0.9911296367645264 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "final_label": "POSITIVE", + "final_count": 5, + "final_proportion": 0.8333333333333334, + "final_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + } + } }, { "season_code": "202303", @@ -18853,7 +39416,7 @@ "13:30", "14:20", "WTS B36 - Watson Center 60 Sachem Street B36", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Tuesday": [ @@ -18861,7 +39424,7 @@ "13:30", "14:20", "WTS B36 - Watson Center 60 Sachem Street B36", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -18869,7 +39432,7 @@ "13:30", "14:20", "WTS B36 - Watson Center 60 Sachem Street B36", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -18877,7 +39440,7 @@ "13:30", "14:20", "WTS B36 - Watson Center 60 Sachem Street B36", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Friday": [ @@ -18885,7 +39448,7 @@ "13:30", "14:20", "WTS B36 - Watson Center 60 Sachem Street B36", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -18899,10 +39462,113 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89145\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89145/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9973424077033997, + 0.9945040941238403, + 0.998903751373291, + 0.998812198638916, + 0.9952391386032104, + 0.9987850785255432 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988968372344971, + 0.9960381984710693, + 0.9989323019981384, + 0.9989038705825806, + 0.9988164901733398, + 0.9989190101623535 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989317059516907, + 0.9986911416053772, + 0.9989312291145325, + 0.998935878276825, + 0.9855074882507324, + 0.9989387392997742 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 0.9444444444444444, + "final_counts": { + "POSITIVE": 17, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9444444444444444, + "NEGATIVE": 0.05555555555555555 + } + } }, { "season_code": "202303", @@ -18939,7 +39605,7 @@ "14:30", "15:20", "WTS B36 - Watson Center 60 Sachem Street B36", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Tuesday": [ @@ -18947,7 +39613,7 @@ "14:30", "15:20", "WTS B36 - Watson Center 60 Sachem Street B36", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -18955,7 +39621,7 @@ "14:30", "15:20", "WTS B36 - Watson Center 60 Sachem Street B36", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -18963,7 +39629,7 @@ "14:30", "15:20", "WTS B36 - Watson Center 60 Sachem Street B36", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Friday": [ @@ -18971,7 +39637,7 @@ "14:30", "15:20", "WTS B36 - Watson Center 60 Sachem Street B36", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -18985,10 +39651,103 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89146\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89146/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988389611244202, + 0.9969221949577332, + 0.9910298585891724, + 0.9989067316055298 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987217783927917, + 0.9989294409751892, + 0.9988301396369934, + 0.9989283680915833, + 0.9989185333251953, + 0.9959076642990112 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989162683486938, + 0.9989016056060791, + 0.9988875985145569, + 0.9989292025566101 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 14 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -19026,7 +39785,7 @@ "11:35", "12:50", "HQ 129 - Humanities Quadrangle 129", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -19034,7 +39793,7 @@ "11:35", "12:50", "HQ 129 - Humanities Quadrangle 129", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -19048,10 +39807,95 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89211\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89211/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988371729850769, + 0.998746395111084, + 0.9984216690063477, + 0.9875268340110779 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998924195766449, + 0.9988744854927063, + 0.9987794756889343 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989030361175537, + 0.9988813996315002, + 0.9988947510719299 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 10 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -19089,7 +39933,7 @@ "10:30", "11:20", "HQ C64 - Humanities Quadrangle C64", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -19097,7 +39941,7 @@ "10:30", "11:20", "HQ C64 - Humanities Quadrangle C64", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Tuesday": [ @@ -19105,7 +39949,7 @@ "10:30", "11:20", "WLH 001 - William L. Harkness Hall 001", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -19113,7 +39957,7 @@ "10:30", "11:20", "WLH 001 - William L. Harkness Hall 001", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Friday": [ @@ -19121,7 +39965,7 @@ "10:30", "11:20", "", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -19135,10 +39979,93 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89204\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89204/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989008903503418, + 0.9989023208618164, + 0.998691976070404 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9972431659698486, + 0.9970381259918213, + 0.9988823533058167 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987847208976746, + 0.9989226460456848, + 0.9987484216690063 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 9 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -19176,7 +40103,7 @@ "11:35", "12:25", "WLH 006 - William L. Harkness Hall 006", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -19184,7 +40111,7 @@ "11:35", "12:25", "WLH 006 - William L. Harkness Hall 006", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Friday": [ @@ -19192,7 +40119,7 @@ "11:35", "12:25", "WLH 006 - William L. Harkness Hall 006", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Monday": [ @@ -19200,7 +40127,7 @@ "11:35", "12:25", "HQ C64 - Humanities Quadrangle C64", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -19208,7 +40135,7 @@ "11:35", "12:25", "HQ C64 - Humanities Quadrangle C64", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -19222,10 +40149,85 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89205\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89205/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985985159873962, + 0.9985392093658447 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9970107078552246 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986780285835266, + 0.9983112812042236 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 5, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 5 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -19263,7 +40265,7 @@ "11:35", "12:50", "BASSLB L73 - Bass Library L73", - "https:\/\/map.yale.edu\/?id=1910#!m\/564574" + "https://map.yale.edu/?id=1910#!m/564574" ] ], "Thursday": [ @@ -19271,7 +40273,7 @@ "11:35", "12:50", "BASSLB L73 - Bass Library L73", - "https:\/\/map.yale.edu\/?id=1910#!m\/564574" + "https://map.yale.edu/?id=1910#!m/564574" ] ] }, @@ -19285,10 +40287,89 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89212\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89212/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9944251775741577, + 0.9987083673477173 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984228610992432, + 0.9989263415336609 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9976907968521118, + 0.9760101437568665 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "final_label": "POSITIVE", + "final_count": 5, + "final_proportion": 0.8333333333333334, + "final_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + } + } }, { "season_code": "202303", @@ -19326,7 +40407,7 @@ "10:30", "11:20", "HQ C11 - Humanities Quadrangle C11", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -19334,7 +40415,7 @@ "10:30", "11:20", "HQ C11 - Humanities Quadrangle C11", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Friday": [ @@ -19342,7 +40423,7 @@ "10:30", "11:20", "HQ C11 - Humanities Quadrangle C11", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -19356,15 +40437,100 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89213\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89213/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987291693687439, + 0.9992197751998901, + 0.9987003803253174 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998672366142273, + 0.991048276424408, + 0.9987616539001465 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987640380859375, + 0.9995105266571045, + 0.998857855796814 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 0.6666666666666666, + "final_counts": { + "POSITIVE": 6, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + } + } }, { "season_code": "202303", "requirements": "Prerequisite: ARBC 146 or 151.", - "description": "A course on Arabic grammar and morphology that builds on the skills acquired in ARBC 146\/510, with emphasis on vocabulary, grammar, and reading skills and strategies. Readings drawn from a variety of genres, such as biography, history, hadith, and poetry. Previously ARBC 158.", + "description": "A course on Arabic grammar and morphology that builds on the skills acquired in ARBC 146/510, with emphasis on vocabulary, grammar, and reading skills and strategies. Readings drawn from a variety of genres, such as biography, history, hadith, and poetry. Previously ARBC 158.", "short_title": "Intermediate Classical Arabic I", "title": "Intermediate Classical Arabic I", "school": "YC", @@ -19397,7 +40563,7 @@ "11:35", "12:50", "WTS A38 - Watson Center 60 Sachem Street A38", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -19405,7 +40571,7 @@ "11:35", "12:50", "WTS A38 - Watson Center 60 Sachem Street A38", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -19421,10 +40587,41 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89214\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89214/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9974687099456787 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 1, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 1 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -19463,7 +40660,7 @@ "14:30", "15:45", "WLH 004 - William L. Harkness Hall 004", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -19471,7 +40668,7 @@ "14:30", "15:45", "WLH 004 - William L. Harkness Hall 004", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -19485,10 +40682,38 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89215\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89215/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -19526,7 +40751,7 @@ "13:00", "14:15", "HQ 207 - Humanities Quadrangle 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -19534,7 +40759,7 @@ "13:00", "14:15", "HQ 207 - Humanities Quadrangle 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -19546,10 +40771,38 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89206\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89206/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -19587,7 +40840,7 @@ "9:25", "10:15", "WTS B60 - Watson Center 60 Sachem Street B60", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Tuesday": [ @@ -19595,7 +40848,7 @@ "9:25", "10:15", "WTS B60 - Watson Center 60 Sachem Street B60", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -19603,7 +40856,7 @@ "9:25", "10:15", "WTS B60 - Watson Center 60 Sachem Street B60", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -19611,7 +40864,7 @@ "9:25", "10:15", "WTS B60 - Watson Center 60 Sachem Street B60", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Friday": [ @@ -19619,7 +40872,7 @@ "9:25", "10:15", "WTS B60 - Watson Center 60 Sachem Street B60", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -19631,10 +40884,113 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89143\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89143/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9979206919670105, + 0.9974226951599121, + 0.9987053871154785, + 0.9894925355911255, + 0.9981464147567749, + 0.9988968372344971 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9992579817771912, + 0.9939672946929932, + 0.9988340735435486, + 0.9978766441345215, + 0.9994727969169617, + 0.9988200068473816 + ], + "sentiment_counts": { + "NEGATIVE": 4, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.6666666666666666, + "POSITIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9757541418075562, + 0.9987720847129822, + 0.9988837838172913, + 0.9863351583480835, + 0.998784601688385, + 0.9986675977706909 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 5 + }, + "sentiment_distribution": { + "NEGATIVE": 0.16666666666666666, + "POSITIVE": 0.8333333333333334 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 0.7222222222222222, + "final_counts": { + "POSITIVE": 13, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.7222222222222222, + "NEGATIVE": 0.2777777777777778 + } + } }, { "season_code": "202303", @@ -19672,7 +41028,7 @@ "10:30", "11:20", "WTS B60 - Watson Center 60 Sachem Street B60", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Tuesday": [ @@ -19680,7 +41036,7 @@ "10:30", "11:20", "WTS B60 - Watson Center 60 Sachem Street B60", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -19688,7 +41044,7 @@ "10:30", "11:20", "WTS B60 - Watson Center 60 Sachem Street B60", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -19696,7 +41052,7 @@ "10:30", "11:20", "WTS B60 - Watson Center 60 Sachem Street B60", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Friday": [ @@ -19704,7 +41060,7 @@ "10:30", "11:20", "WTS B60 - Watson Center 60 Sachem Street B60", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -19716,10 +41072,89 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89144\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89144/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987057447433472, + 0.9981991648674011 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988992214202881, + 0.9986577033996582 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988555908203125, + 0.9911296367645264 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "final_label": "POSITIVE", + "final_count": 5, + "final_proportion": 0.8333333333333334, + "final_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + } + } }, { "season_code": "202303", @@ -19757,7 +41192,7 @@ "13:30", "14:20", "WTS B36 - Watson Center 60 Sachem Street B36", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Tuesday": [ @@ -19765,7 +41200,7 @@ "13:30", "14:20", "WTS B36 - Watson Center 60 Sachem Street B36", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -19773,7 +41208,7 @@ "13:30", "14:20", "WTS B36 - Watson Center 60 Sachem Street B36", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -19781,7 +41216,7 @@ "13:30", "14:20", "WTS B36 - Watson Center 60 Sachem Street B36", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Friday": [ @@ -19789,7 +41224,7 @@ "13:30", "14:20", "WTS B36 - Watson Center 60 Sachem Street B36", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -19801,10 +41236,113 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89145\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89145/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9973424077033997, + 0.9945040941238403, + 0.998903751373291, + 0.998812198638916, + 0.9952391386032104, + 0.9987850785255432 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988968372344971, + 0.9960381984710693, + 0.9989323019981384, + 0.9989038705825806, + 0.9988164901733398, + 0.9989190101623535 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989317059516907, + 0.9986911416053772, + 0.9989312291145325, + 0.998935878276825, + 0.9855074882507324, + 0.9989387392997742 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 0.9444444444444444, + "final_counts": { + "POSITIVE": 17, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9444444444444444, + "NEGATIVE": 0.05555555555555555 + } + } }, { "season_code": "202303", @@ -19888,7 +41426,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -19926,7 +41492,7 @@ "10:30", "11:20", "HQ C64 - Humanities Quadrangle C64", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -19934,7 +41500,7 @@ "10:30", "11:20", "HQ C64 - Humanities Quadrangle C64", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Tuesday": [ @@ -19942,7 +41508,7 @@ "10:30", "11:20", "WLH 001 - William L. Harkness Hall 001", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -19950,7 +41516,7 @@ "10:30", "11:20", "WLH 001 - William L. Harkness Hall 001", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Friday": [ @@ -19958,7 +41524,7 @@ "10:30", "11:20", "", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -19970,10 +41536,93 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89204\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89204/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989008903503418, + 0.9989023208618164, + 0.998691976070404 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9972431659698486, + 0.9970381259918213, + 0.9988823533058167 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987847208976746, + 0.9989226460456848, + 0.9987484216690063 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 9 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -20011,7 +41660,7 @@ "11:35", "12:25", "WLH 006 - William L. Harkness Hall 006", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -20019,7 +41668,7 @@ "11:35", "12:25", "WLH 006 - William L. Harkness Hall 006", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Friday": [ @@ -20027,7 +41676,7 @@ "11:35", "12:25", "WLH 006 - William L. Harkness Hall 006", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Monday": [ @@ -20035,7 +41684,7 @@ "11:35", "12:25", "HQ C64 - Humanities Quadrangle C64", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -20043,7 +41692,7 @@ "11:35", "12:25", "HQ C64 - Humanities Quadrangle C64", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -20055,10 +41704,85 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89205\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89205/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985985159873962, + 0.9985392093658447 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9970107078552246 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986780285835266, + 0.9983112812042236 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 5, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 5 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -20096,7 +41820,7 @@ "10:30", "11:20", "HQ C11 - Humanities Quadrangle C11", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -20104,7 +41828,7 @@ "10:30", "11:20", "HQ C11 - Humanities Quadrangle C11", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Friday": [ @@ -20112,7 +41836,7 @@ "10:30", "11:20", "HQ C11 - Humanities Quadrangle C11", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -20124,10 +41848,95 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89213\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89213/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987291693687439, + 0.9992197751998901, + 0.9987003803253174 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998672366142273, + 0.991048276424408, + 0.9987616539001465 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987640380859375, + 0.9995105266571045, + 0.998857855796814 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 0.6666666666666666, + "final_counts": { + "POSITIVE": 6, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + } + } }, { "season_code": "202303", @@ -20165,7 +41974,7 @@ "11:35", "12:50", "BASSLB L73 - Bass Library L73", - "https:\/\/map.yale.edu\/?id=1910#!m\/564574" + "https://map.yale.edu/?id=1910#!m/564574" ] ], "Thursday": [ @@ -20173,7 +41982,7 @@ "11:35", "12:50", "BASSLB L73 - Bass Library L73", - "https:\/\/map.yale.edu\/?id=1910#!m\/564574" + "https://map.yale.edu/?id=1910#!m/564574" ] ] }, @@ -20185,15 +41994,94 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89212\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89212/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "ARBC 146\/510 or permission from instructor.", - "description": "A course on Arabic grammar and morphology that builds on the skills acquired in ARBC 146\/510, with emphasis on vocabulary, grammar, and reading skills and strategies. Readings drawn from a variety of genres, such as biography, history, hadith, and poetry.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9944251775741577, + 0.9987083673477173 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984228610992432, + 0.9989263415336609 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9976907968521118, + 0.9760101437568665 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "final_label": "POSITIVE", + "final_count": 5, + "final_proportion": 0.8333333333333334, + "final_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + } + } + }, + { + "season_code": "202303", + "requirements": "ARBC 146/510 or permission from instructor.", + "description": "A course on Arabic grammar and morphology that builds on the skills acquired in ARBC 146/510, with emphasis on vocabulary, grammar, and reading skills and strategies. Readings drawn from a variety of genres, such as biography, history, hadith, and poetry.", "short_title": "Intermediate Classical Arabic I", "title": "Intermediate Classical Arabic I", "school": "GS", @@ -20226,7 +42114,7 @@ "11:35", "12:50", "WTS A38 - Watson Center 60 Sachem Street A38", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -20234,7 +42122,7 @@ "11:35", "12:50", "WTS A38 - Watson Center 60 Sachem Street A38", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -20246,10 +42134,41 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89214\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89214/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9974687099456787 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 1, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 1 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -20287,7 +42206,7 @@ "13:00", "14:15", "HQ 207 - Humanities Quadrangle 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -20295,7 +42214,7 @@ "13:00", "14:15", "HQ 207 - Humanities Quadrangle 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -20307,10 +42226,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89206\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89206/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -20348,7 +42295,7 @@ "11:35", "12:50", "HQ 129 - Humanities Quadrangle 129", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -20356,7 +42303,7 @@ "11:35", "12:50", "HQ 129 - Humanities Quadrangle 129", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -20368,10 +42315,95 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89211\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89211/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988371729850769, + 0.998746395111084, + 0.9984216690063477, + 0.9875268340110779 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998924195766449, + 0.9988744854927063, + 0.9987794756889343 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989030361175537, + 0.9988813996315002, + 0.9988947510719299 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 10 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -20408,7 +42440,7 @@ "15:30", "17:20", "HQ C05 - Humanities Quadrangle C05", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -20420,10 +42452,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89464\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89464/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -20462,7 +42522,7 @@ "14:30", "15:45", "WLH 004 - William L. Harkness Hall 004", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -20470,7 +42530,7 @@ "14:30", "15:45", "WLH 004 - William L. Harkness Hall 004", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -20482,10 +42542,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89215\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89215/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -20523,7 +42611,7 @@ "10:30", "11:20", "LORIA 250 - Loria Center 250", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ], "Thursday": [ @@ -20531,7 +42619,7 @@ "10:30", "11:20", "LORIA 250 - Loria Center 250", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -20545,10 +42633,169 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88353\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88353/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988479614257812, + 0.9985259175300598, + 0.9988290667533875, + 0.998793363571167, + 0.9988821148872375, + 0.9988551139831543, + 0.9984320998191833, + 0.998908519744873, + 0.9988241791725159, + 0.9989186525344849, + 0.9987905621528625, + 0.9988712668418884, + 0.9852079153060913, + 0.9987490177154541, + 0.9987651109695435, + 0.9988803267478943 + ], + "sentiment_counts": { + "POSITIVE": 16, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988687634468079, + 0.9994971752166748, + 0.998903751373291, + 0.9981921315193176, + 0.9981005787849426, + 0.998878538608551, + 0.998921275138855, + 0.9989179372787476, + 0.9989318251609802, + 0.9989064931869507, + 0.9986741542816162, + 0.9989137649536133 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9166666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988769888877869, + 0.998897910118103, + 0.99888676404953, + 0.9987568855285645, + 0.9988718628883362, + 0.9989308714866638, + 0.9986699819564819, + 0.9988613128662109, + 0.9988910555839539, + 0.9988719820976257, + 0.9988194108009338, + 0.9989253878593445, + 0.9994562268257141, + 0.9966104626655579, + 0.998207688331604, + 0.9989017248153687, + 0.998927891254425, + 0.9962835907936096 + ], + "sentiment_counts": { + "POSITIVE": 16, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "final_label": "POSITIVE", + "final_count": 43, + "final_proportion": 0.9347826086956522, + "final_counts": { + "POSITIVE": 43, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.9347826086956522, + "NEGATIVE": 0.06521739130434782 + } + } }, { "season_code": "202303", @@ -20580,7 +42827,7 @@ "14:30", "15:20", "WALL53 B-04 - 53 Wall Street B-04", - "https:\/\/map.yale.edu\/?id=1910#!m\/559554" + "https://map.yale.edu/?id=1910#!m/559554" ] ] }, @@ -20597,7 +42844,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -20629,7 +42904,7 @@ "15:30", "16:20", "WALL53 B-04 - 53 Wall Street B-04", - "https:\/\/map.yale.edu\/?id=1910#!m\/559554" + "https://map.yale.edu/?id=1910#!m/559554" ] ] }, @@ -20646,7 +42921,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -20678,7 +42981,7 @@ "9:25", "10:15", "HQ C05 - Humanities Quadrangle C05", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -20695,7 +42998,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -20727,7 +43058,7 @@ "10:30", "11:20", "HQ C05 - Humanities Quadrangle C05", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -20744,7 +43075,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -20776,7 +43135,7 @@ "11:35", "12:25", "YK220 004 - 220 York Street 004", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ] }, @@ -20793,7 +43152,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -20825,7 +43212,7 @@ "13:30", "14:20", "YK220 004 - 220 York Street 004", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ] }, @@ -20842,7 +43229,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -20884,7 +43299,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -20924,7 +43367,7 @@ "11:35", "12:50", "HQ 127 - Humanities Quadrangle 127", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -20932,7 +43375,7 @@ "11:35", "12:50", "HQ 127 - Humanities Quadrangle 127", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -20946,10 +43389,93 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89289\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89289/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987824559211731, + 0.9987743496894836, + 0.9970487952232361 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987689852714539, + 0.759157657623291, + 0.9987950325012207 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985272884368896, + 0.9942271709442139 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 0.875, + "final_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + } + } }, { "season_code": "202303", @@ -20988,7 +43514,7 @@ "11:35", "12:50", "LORIA 351 - Loria Center 351", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ], "Wednesday": [ @@ -20996,7 +43522,7 @@ "11:35", "12:50", "LORIA 351 - Loria Center 351", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -21007,17 +43533,136 @@ "flags": [ "YC HistofArt: Pre-800", "YC HistofArt: Europe", - "YC HistofArt: Asia\/Near East" + "YC HistofArt: Asia/Near East" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88358\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88358/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987393021583557, + 0.9982106685638428, + 0.9987975358963013, + 0.9989078044891357, + 0.9948375821113586, + 0.9989110231399536, + 0.9932107329368591, + 0.998173713684082 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989138841629028, + 0.9989169836044312, + 0.9989032745361328, + 0.9989269375801086, + 0.9989159107208252, + 0.9988229870796204, + 0.9989297986030579 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988308548927307, + 0.9989238381385803, + 0.9989078044891357, + 0.9988923668861389, + 0.9989045858383179, + 0.9988861680030823, + 0.9988723397254944, + 0.9974592328071594, + 0.9980016350746155, + 0.9979027509689331, + 0.9989321827888489 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9090909090909091 + ] + }, + "final_label": "POSITIVE", + "final_count": 25, + "final_proportion": 0.9615384615384616, + "final_counts": { + "POSITIVE": 25, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9615384615384616, + "NEGATIVE": 0.038461538461538464 + } + } }, { "season_code": "202303", @@ -21058,7 +43703,7 @@ "11:35", "12:50", "HLH51 101 - 51 Hillhouse Avenue 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559970" + "https://map.yale.edu/?id=1910#!m/559970" ] ], "Thursday": [ @@ -21066,7 +43711,7 @@ "11:35", "12:50", "HLH51 101 - 51 Hillhouse Avenue 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559970" + "https://map.yale.edu/?id=1910#!m/559970" ] ] }, @@ -21082,10 +43727,95 @@ "classnotes": "", "final_exam": "Friday, December 15, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90580\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90580/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987101554870605, + 0.9989376664161682, + 0.9988366961479187 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988262057304382, + 0.9987607002258301, + 0.9988501071929932 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989184141159058, + 0.9989233613014221, + 0.9989168643951416, + 0.9986386895179749 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 10 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -21125,7 +43855,7 @@ "13:30", "15:20", "HLH51 101 - 51 Hillhouse Avenue 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559970" + "https://map.yale.edu/?id=1910#!m/559970" ] ] }, @@ -21142,10 +43872,117 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89010\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89010/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9974721074104309, + 0.9983928799629211, + 0.9986236095428467, + 0.9989116191864014, + 0.9800824522972107, + 0.9927740097045898 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998059093952179, + 0.9988765120506287, + 0.9974972605705261, + 0.9875548481941223, + 0.9988817572593689, + 0.9986238479614258, + 0.9988528490066528 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.997566819190979, + 0.9942857623100281, + 0.9983615279197693, + 0.9984147548675537, + 0.9986631870269775, + 0.998924195766449, + 0.9980574250221252 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 6 + }, + "sentiment_distribution": { + "NEGATIVE": 0.14285714285714285, + "POSITIVE": 0.8571428571428571 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 0.85, + "final_counts": { + "POSITIVE": 17, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.85, + "NEGATIVE": 0.15 + } + } }, { "season_code": "202303", @@ -21185,7 +44022,7 @@ "13:30", "16:30", "SA10 23 - 10 Sachem Street 23", - "https:\/\/map.yale.edu\/?id=1910#!m\/559538" + "https://map.yale.edu/?id=1910#!m/559538" ] ] }, @@ -21201,10 +44038,107 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88848\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88848/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987902045249939, + 0.9964780211448669, + 0.9987773299217224, + 0.998798131942749, + 0.9988403916358948 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998934805393219, + 0.998849630355835, + 0.9985811710357666, + 0.9989076852798462, + 0.9968453049659729 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9974504113197327, + 0.9975540041923523, + 0.9993981122970581, + 0.9989338517189026, + 0.9989328980445862 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 0.8666666666666667, + "final_counts": { + "POSITIVE": 13, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8666666666666667, + "NEGATIVE": 0.13333333333333333 + } + } }, { "season_code": "202303", @@ -21243,7 +44177,7 @@ "15:30", "17:20", "HQ C03 - Humanities Quadrangle C03", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -21253,7 +44187,7 @@ "So" ], "flags": [ - "YC EVST: Core Human\/Social Sci", + "YC EVST: Core Human/Social Sci", "YC HIST: Europe", "YC HIST: Latin America", "YC HIST: Environmental History", @@ -21265,10 +44199,89 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89149\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89149/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998364269733429, + 0.9988517761230469 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994974136352539, + 0.9988889098167419 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 1 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9994956254959106, + 0.9995169639587402 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 0 + }, + "sentiment_distribution": { + "NEGATIVE": 1.0, + "POSITIVE": 0.0 + }, + "sentiment_overall": [ + "NEGATIVE", + 1.0 + ] + }, + "final_label": "neutral", + "final_count": 0.5, + "final_proportion": 0.5, + "final_counts": { + "POSITIVE": 3, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + } + } }, { "season_code": "202303", @@ -21308,7 +44321,7 @@ "13:30", "15:20", "HLH51 101 - 51 Hillhouse Avenue 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559970" + "https://map.yale.edu/?id=1910#!m/559970" ] ] }, @@ -21324,10 +44337,97 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88849\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88849/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986421465873718, + 0.9988333582878113, + 0.9988625049591064, + 0.9988294243812561 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9976067543029785, + 0.9988102912902832, + 0.9987953901290894 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.5763342976570129, + 0.9988767504692078, + 0.9989042282104492, + 0.9989080429077148 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 11 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -21367,7 +44467,7 @@ "9:00", "10:15", "HLH51 101 - 51 Hillhouse Avenue 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559970" + "https://map.yale.edu/?id=1910#!m/559970" ] ], "Wednesday": [ @@ -21375,7 +44475,7 @@ "9:00", "10:15", "HLH51 101 - 51 Hillhouse Avenue 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559970" + "https://map.yale.edu/?id=1910#!m/559970" ] ] }, @@ -21391,10 +44491,101 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88850\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88850/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984295964241028, + 0.997956395149231, + 0.998760461807251, + 0.9989023208618164 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.8360072374343872, + 0.9987240433692932, + 0.9992945194244385, + 0.9989243149757385 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981436729431152, + 0.9987747073173523, + 0.9988528490066528, + 0.9988846182823181 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 0.8333333333333334, + "final_counts": { + "POSITIVE": 10, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + } + } }, { "season_code": "202303", @@ -21450,10 +44641,87 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88833\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88833/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9979820251464844, + 0.9988480806350708 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985902905464172, + 0.9988308548927307 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9955242872238159, + 0.998369038105011 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 6 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -21494,7 +44762,7 @@ "14:30", "15:45", "SA10 10 - 10 Sachem Street 10", - "https:\/\/map.yale.edu\/?id=1910#!m\/559538" + "https://map.yale.edu/?id=1910#!m/559538" ] ], "Thursday": [ @@ -21502,7 +44770,7 @@ "14:30", "15:45", "SA10 10 - 10 Sachem Street 10", - "https:\/\/map.yale.edu\/?id=1910#!m\/559538" + "https://map.yale.edu/?id=1910#!m/559538" ] ] }, @@ -21519,10 +44787,111 @@ "classnotes": "Instructor permission is required. Students should request permission via YCS (not email) April 14-21. Those who are granted permission to take the class will be informed via YCS by April 25th.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88834\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88834/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.995227575302124, + 0.9988653659820557, + 0.99817955493927, + 0.9986279010772705, + 0.9986945986747742, + 0.9986296892166138 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989110231399536, + 0.9940661191940308, + 0.9989171028137207, + 0.9986716508865356, + 0.9988534450531006 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998072624206543, + 0.9989064931869507, + 0.994411051273346, + 0.99556964635849, + 0.9988763928413391, + 0.9989089965820312 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 0.8823529411764706, + "final_counts": { + "POSITIVE": 15, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8823529411764706, + "NEGATIVE": 0.11764705882352941 + } + } }, { "season_code": "202303", @@ -21565,7 +44934,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -21604,7 +45001,7 @@ "9:25", "11:15", "WLH 007 - William L. Harkness Hall 007", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -21615,7 +45012,7 @@ ], "flags": [ "PH: Climate Change and Health", - "YC EVST: Core Human\/Social Sci", + "YC EVST: Core Human/Social Sci", "YC GLHTH: Hist Approaches", "YC GLHTH: Bio & Env Influences", "YC GLBL: Elective" @@ -21625,10 +45022,101 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88239\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88239/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986259937286377, + 0.9988100528717041, + 0.9987377524375916 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9978216886520386, + 0.9961723685264587, + 0.9987773299217224, + 0.9985429048538208 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988422989845276, + 0.9914733171463013, + 0.9982972741127014, + 0.9988442659378052, + 0.9988338351249695 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 0.8333333333333334, + "final_counts": { + "POSITIVE": 10, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + } + } }, { "season_code": "202303", @@ -21671,7 +45159,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -21711,7 +45227,7 @@ "11:35", "12:50", "HQ 127 - Humanities Quadrangle 127", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -21719,7 +45235,7 @@ "11:35", "12:50", "HQ 127 - Humanities Quadrangle 127", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -21731,10 +45247,93 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89289\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89289/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987824559211731, + 0.9987743496894836, + 0.9970487952232361 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987689852714539, + 0.759157657623291, + 0.9987950325012207 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985272884368896, + 0.9942271709442139 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 0.875, + "final_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + } + } }, { "season_code": "202303", @@ -21774,7 +45373,7 @@ "13:30", "15:20", "HLH51 101 - 51 Hillhouse Avenue 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559970" + "https://map.yale.edu/?id=1910#!m/559970" ] ] }, @@ -21786,10 +45385,117 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89010\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89010/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9974721074104309, + 0.9983928799629211, + 0.9986236095428467, + 0.9989116191864014, + 0.9800824522972107, + 0.9927740097045898 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998059093952179, + 0.9988765120506287, + 0.9974972605705261, + 0.9875548481941223, + 0.9988817572593689, + 0.9986238479614258, + 0.9988528490066528 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.997566819190979, + 0.9942857623100281, + 0.9983615279197693, + 0.9984147548675537, + 0.9986631870269775, + 0.998924195766449, + 0.9980574250221252 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 6 + }, + "sentiment_distribution": { + "NEGATIVE": 0.14285714285714285, + "POSITIVE": 0.8571428571428571 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 0.85, + "final_counts": { + "POSITIVE": 17, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.85, + "NEGATIVE": 0.15 + } + } }, { "season_code": "202303", @@ -21829,7 +45535,7 @@ "13:30", "16:30", "SA10 23 - 10 Sachem Street 23", - "https:\/\/map.yale.edu\/?id=1910#!m\/559538" + "https://map.yale.edu/?id=1910#!m/559538" ] ] }, @@ -21841,10 +45547,107 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88848\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88848/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987902045249939, + 0.9964780211448669, + 0.9987773299217224, + 0.998798131942749, + 0.9988403916358948 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998934805393219, + 0.998849630355835, + 0.9985811710357666, + 0.9989076852798462, + 0.9968453049659729 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9974504113197327, + 0.9975540041923523, + 0.9993981122970581, + 0.9989338517189026, + 0.9989328980445862 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 0.8666666666666667, + "final_counts": { + "POSITIVE": 13, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8666666666666667, + "NEGATIVE": 0.13333333333333333 + } + } }, { "season_code": "202303", @@ -21884,7 +45687,7 @@ "9:00", "10:15", "HLH51 101 - 51 Hillhouse Avenue 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559970" + "https://map.yale.edu/?id=1910#!m/559970" ] ], "Wednesday": [ @@ -21892,7 +45695,7 @@ "9:00", "10:15", "HLH51 101 - 51 Hillhouse Avenue 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559970" + "https://map.yale.edu/?id=1910#!m/559970" ] ] }, @@ -21904,10 +45707,101 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88850\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88850/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984295964241028, + 0.997956395149231, + 0.998760461807251, + 0.9989023208618164 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.8360072374343872, + 0.9987240433692932, + 0.9992945194244385, + 0.9989243149757385 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981436729431152, + 0.9987747073173523, + 0.9988528490066528, + 0.9988846182823181 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 0.8333333333333334, + "final_counts": { + "POSITIVE": 10, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + } + } }, { "season_code": "202303", @@ -21959,10 +45853,87 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88833\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88833/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9979820251464844, + 0.9988480806350708 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985902905464172, + 0.9988308548927307 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9955242872238159, + 0.998369038105011 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 6 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -22003,7 +45974,7 @@ "11:35", "12:50", "HLH51 101 - 51 Hillhouse Avenue 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559970" + "https://map.yale.edu/?id=1910#!m/559970" ] ], "Thursday": [ @@ -22011,7 +45982,7 @@ "11:35", "12:50", "HLH51 101 - 51 Hillhouse Avenue 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559970" + "https://map.yale.edu/?id=1910#!m/559970" ] ] }, @@ -22023,10 +45994,95 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90580\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90580/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987101554870605, + 0.9989376664161682, + 0.9988366961479187 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988262057304382, + 0.9987607002258301, + 0.9988501071929932 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989184141159058, + 0.9989233613014221, + 0.9989168643951416, + 0.9986386895179749 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 10 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -22064,7 +46120,7 @@ "9:25", "11:15", "HLH51 101 - 51 Hillhouse Avenue 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559970" + "https://map.yale.edu/?id=1910#!m/559970" ] ] }, @@ -22076,10 +46132,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88851\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88851/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -22119,7 +46203,7 @@ "13:30", "15:20", "HLH51 101 - 51 Hillhouse Avenue 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559970" + "https://map.yale.edu/?id=1910#!m/559970" ] ] }, @@ -22131,10 +46215,97 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88849\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88849/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986421465873718, + 0.9988333582878113, + 0.9988625049591064, + 0.9988294243812561 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9976067543029785, + 0.9988102912902832, + 0.9987953901290894 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.5763342976570129, + 0.9988767504692078, + 0.9989042282104492, + 0.9989080429077148 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 11 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -22173,7 +46344,7 @@ "13:30", "15:20", "WLH 015 - William L. Harkness Hall 015", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -22185,10 +46356,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89646\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89646/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -22229,7 +46428,7 @@ "14:30", "15:45", "SA10 10 - 10 Sachem Street 10", - "https:\/\/map.yale.edu\/?id=1910#!m\/559538" + "https://map.yale.edu/?id=1910#!m/559538" ] ], "Thursday": [ @@ -22237,7 +46436,7 @@ "14:30", "15:45", "SA10 10 - 10 Sachem Street 10", - "https:\/\/map.yale.edu\/?id=1910#!m\/559538" + "https://map.yale.edu/?id=1910#!m/559538" ] ] }, @@ -22249,10 +46448,111 @@ "classnotes": "Instructor permission is required. Students should request permission via YCS (not email) April 14-21. Those who are granted permission to take the class will be informed via YCS by April 25th.", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88834\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88834/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.995227575302124, + 0.9988653659820557, + 0.99817955493927, + 0.9986279010772705, + 0.9986945986747742, + 0.9986296892166138 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989110231399536, + 0.9940661191940308, + 0.9989171028137207, + 0.9986716508865356, + 0.9988534450531006 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998072624206543, + 0.9989064931869507, + 0.994411051273346, + 0.99556964635849, + 0.9988763928413391, + 0.9989089965820312 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 0.8823529411764706, + "final_counts": { + "POSITIVE": 15, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8823529411764706, + "NEGATIVE": 0.11764705882352941 + } + } }, { "season_code": "202303", @@ -22289,7 +46589,7 @@ "11:35", "12:50", "LORIA 358 - Loria Center 358", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ], "Wednesday": [ @@ -22297,7 +46597,7 @@ "11:35", "12:50", "LORIA 358 - Loria Center 358", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -22315,10 +46615,121 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89771\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89771/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988258481025696, + 0.9988188147544861, + 0.9987680315971375, + 0.9988695979118347, + 0.9988126754760742, + 0.9988741278648376, + 0.9988998174667358 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986042380332947, + 0.9988206028938293, + 0.9989100694656372, + 0.9983118772506714, + 0.9989368319511414, + 0.9989124536514282, + 0.9989349246025085 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987554550170898, + 0.9987254738807678, + 0.9986953139305115, + 0.9988896250724792, + 0.9988884329795837, + 0.9988271594047546, + 0.9989153146743774, + 0.9988834261894226, + 0.9989206790924072 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 23, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 23 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -22390,10 +46801,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91477\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91477/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -22468,10 +46907,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91478\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91478/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -22531,10 +46998,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91479\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91479/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -22594,10 +47089,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91480\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91480/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -22663,7 +47186,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -22726,7 +47277,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -22789,7 +47368,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -22852,7 +47459,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -22918,7 +47553,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -22981,10 +47644,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91486\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91486/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -23044,7 +47735,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -23101,10 +47820,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91488\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91488/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -23141,7 +47888,7 @@ "9:00", "10:50", "RDH 7-FL - Rudolph Hall 7-FL", - "https:\/\/map.yale.edu\/?id=1910#!m\/559534" + "https://map.yale.edu/?id=1910#!m/559534" ] ] }, @@ -23150,13 +47897,41 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Architecture courses will be open for registration on August 25 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. \n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https:\/\/www.architecture.yale.edu\/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on the YaleHub link: https:\/\/yub.yale.edu\/. ", + "classnotes": "Architecture courses will be open for registration on August 25 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. \n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https://www.architecture.yale.edu/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on the YaleHub link: https://yub.yale.edu/. ", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91489\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91489/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -23193,7 +47968,7 @@ "11:00", "12:50", "RDH 212 - Rudolph Hall 212", - "https:\/\/map.yale.edu\/?id=1910#!m\/559534" + "https://map.yale.edu/?id=1910#!m/559534" ] ] }, @@ -23202,13 +47977,41 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Architecture courses will be open for registration on August 25 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. \n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https:\/\/www.architecture.yale.edu\/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on the YaleHub link: https:\/\/yub.yale.edu\/. ", + "classnotes": "Architecture courses will be open for registration on August 25 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. \n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https://www.architecture.yale.edu/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on the YaleHub link: https://yub.yale.edu/. ", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91490\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91490/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -23245,7 +48048,7 @@ "11:00", "12:50", "YK220 004 - 220 York Street 004", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ] }, @@ -23254,13 +48057,41 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Architecture courses will be open for registration on August 25 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. \n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https:\/\/www.architecture.yale.edu\/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on the YaleHub link: https:\/\/yub.yale.edu\/. ", + "classnotes": "Architecture courses will be open for registration on August 25 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. \n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https://www.architecture.yale.edu/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on the YaleHub link: https://yub.yale.edu/. ", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92591\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92591/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -23297,7 +48128,7 @@ "16:00", "17:50", "LORIA 358 - Loria Center 358", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -23309,13 +48140,41 @@ ], "regnotes": "", "rp_attr": "", - "classnotes": "Architecture courses will be open for registration on August 25 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. \n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https:\/\/www.architecture.yale.edu\/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on the YaleHub link: https:\/\/yub.yale.edu\/. ", + "classnotes": "Architecture courses will be open for registration on August 25 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. \n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https://www.architecture.yale.edu/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on the YaleHub link: https://yub.yale.edu/. ", "final_exam": "", "course_home_url": "", "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -23355,7 +48214,7 @@ "14:00", "15:50", "RDH 211 - Rudolph Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/559534" + "https://map.yale.edu/?id=1910#!m/559534" ] ] }, @@ -23364,13 +48223,41 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Architecture courses will be open for registration on August 25 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. \n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https:\/\/www.architecture.yale.edu\/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on the YaleHub link: https:\/\/yub.yale.edu\/. ", + "classnotes": "Architecture courses will be open for registration on August 25 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. \n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https://www.architecture.yale.edu/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on the YaleHub link: https://yub.yale.edu/. ", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91492\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91492/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -23407,7 +48294,7 @@ "11:00", "12:50", "RDH 706 - Rudolph Hall 706", - "https:\/\/map.yale.edu\/?id=1910#!m\/559534" + "https://map.yale.edu/?id=1910#!m/559534" ] ] }, @@ -23416,13 +48303,41 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Architecture courses will be open for registration on August 25 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. \n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https:\/\/www.architecture.yale.edu\/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on the YaleHub link: https:\/\/yub.yale.edu\/. ", + "classnotes": "Architecture courses will be open for registration on August 25 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. \n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https://www.architecture.yale.edu/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on the YaleHub link: https://yub.yale.edu/. ", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91493\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91493/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -23465,7 +48380,7 @@ "9:00", "10:50", "RDH SB04 - Rudolph Hall SB04", - "https:\/\/map.yale.edu\/?id=1910#!m\/559534" + "https://map.yale.edu/?id=1910#!m/559534" ] ], "Thursday": [ @@ -23473,7 +48388,7 @@ "9:00", "10:50", "RDH SB04 - Rudolph Hall SB04", - "https:\/\/map.yale.edu\/?id=1910#!m\/559534" + "https://map.yale.edu/?id=1910#!m/559534" ] ] }, @@ -23482,13 +48397,41 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Architecture courses will be open for registration on August 25 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. \n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https:\/\/www.architecture.yale.edu\/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on the YaleHub link: https:\/\/yub.yale.edu\/. ", + "classnotes": "Architecture courses will be open for registration on August 25 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. \n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https://www.architecture.yale.edu/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on the YaleHub link: https://yub.yale.edu/. ", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91494\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91494/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -23525,7 +48468,7 @@ "11:00", "12:50", "RDH 706 - Rudolph Hall 706", - "https:\/\/map.yale.edu\/?id=1910#!m\/559534" + "https://map.yale.edu/?id=1910#!m/559534" ] ] }, @@ -23534,13 +48477,41 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Architecture courses will be open for registration on August 25 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. \n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https:\/\/www.architecture.yale.edu\/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on the YaleHub link: https:\/\/yub.yale.edu\/. ", + "classnotes": "Architecture courses will be open for registration on August 25 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. \n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https://www.architecture.yale.edu/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on the YaleHub link: https://yub.yale.edu/. ", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91495\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91495/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -23577,7 +48548,7 @@ "11:00", "12:50", "RDH 7-FL - Rudolph Hall 7-FL", - "https:\/\/map.yale.edu\/?id=1910#!m\/559534" + "https://map.yale.edu/?id=1910#!m/559534" ] ] }, @@ -23586,18 +48557,46 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Architecture courses will be open for registration on August 25 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. \n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https:\/\/www.architecture.yale.edu\/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on the YaleHub link: https:\/\/yub.yale.edu\/. ", + "classnotes": "Architecture courses will be open for registration on August 25 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. \n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https://www.architecture.yale.edu/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on the YaleHub link: https://yub.yale.edu/. ", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91496\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91496/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "This seminar explores key concepts, techniques, and media that have affected the design, discussion, and representation of architecture in the twentieth century. The seminar aims to develop a particular type of disciplinary knowledge by crossing experience and act with historical and theoretical engagement. The class foregrounds reciprocity of practice and context, believing the exchange provides an invaluable tool for understanding the origin of ideas and thereby capitalizing on their full potential. Each class is organized around a single concept (form, structure, space, time); technique (drawing, material, color); or media (typography, photography, weaving). Sessions require both a visual\/material exercise and close reading of seminal texts. Particular attention is paid to working with different tools and techniques, registering, observing, and analyzing formal and material techniques and effects. Limited enrollment.", + "description": "This seminar explores key concepts, techniques, and media that have affected the design, discussion, and representation of architecture in the twentieth century. The seminar aims to develop a particular type of disciplinary knowledge by crossing experience and act with historical and theoretical engagement. The class foregrounds reciprocity of practice and context, believing the exchange provides an invaluable tool for understanding the origin of ideas and thereby capitalizing on their full potential. Each class is organized around a single concept (form, structure, space, time); technique (drawing, material, color); or media (typography, photography, weaving). Sessions require both a visual/material exercise and close reading of seminal texts. Particular attention is paid to working with different tools and techniques, registering, observing, and analyzing formal and material techniques and effects. Limited enrollment.", "short_title": "Space-Time-Form", "title": "Space-Time-Form", "school": "AC", @@ -23629,7 +48628,7 @@ "14:00", "15:50", "RDH 6-FL - Rudolph Hall 6-FL", - "https:\/\/map.yale.edu\/?id=1910#!m\/559534" + "https://map.yale.edu/?id=1910#!m/559534" ] ] }, @@ -23638,13 +48637,41 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Architecture courses will be open for registration on August 25 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. \n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https:\/\/www.architecture.yale.edu\/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on the YaleHub link: https:\/\/yub.yale.edu\/. ", + "classnotes": "Architecture courses will be open for registration on August 25 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. \n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https://www.architecture.yale.edu/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on the YaleHub link: https://yub.yale.edu/. ", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91497\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91497/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -23684,7 +48711,7 @@ "9:25", "10:15", "LC 101 - Linsly-Chittenden Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -23692,7 +48719,7 @@ "9:25", "10:15", "LC 101 - Linsly-Chittenden Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Friday": [ @@ -23700,7 +48727,7 @@ "9:25", "10:15", "LC 101 - Linsly-Chittenden Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -23716,10 +48743,179 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88946\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88946/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987918734550476, + 0.9987713694572449, + 0.9988704323768616, + 0.9989092350006104, + 0.9988600015640259, + 0.9983275532722473, + 0.9988954067230225, + 0.9987271428108215, + 0.9987549781799316, + 0.9983195662498474, + 0.9956570863723755, + 0.99885094165802, + 0.9986454844474792, + 0.9986568689346313, + 0.99886155128479, + 0.9994603991508484, + 0.9978837370872498 + ], + "sentiment_counts": { + "POSITIVE": 16, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9411764705882353, + "NEGATIVE": 0.058823529411764705 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9411764705882353 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989033937454224, + 0.9989104270935059, + 0.9989264607429504, + 0.9987754225730896, + 0.9988908171653748, + 0.9969924688339233, + 0.9819908738136292, + 0.9989268183708191, + 0.9986737966537476, + 0.9988476037979126, + 0.9987952709197998, + 0.9972551465034485, + 0.9988983869552612, + 0.9986490607261658, + 0.9991944432258606, + 0.9984248876571655 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983657002449036, + 0.9988551139831543, + 0.998900294303894, + 0.9988014698028564, + 0.9989223480224609, + 0.9987515211105347, + 0.9988617897033691, + 0.9988142251968384, + 0.9983721375465393, + 0.9985523819923401, + 0.9989005327224731, + 0.9988273978233337, + 0.9988841414451599, + 0.9989134073257446, + 0.9981871247291565, + 0.9989222288131714, + 0.9995031356811523, + 0.9869792461395264 + ], + "sentiment_counts": { + "POSITIVE": 16, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "final_label": "POSITIVE", + "final_count": 44, + "final_proportion": 0.8627450980392157, + "final_counts": { + "POSITIVE": 44, + "NEGATIVE": 7 + }, + "final_distribution": { + "POSITIVE": 0.8627450980392157, + "NEGATIVE": 0.13725490196078433 + } + } }, { "season_code": "202303", @@ -23756,7 +48952,7 @@ "16:00", "17:15", "LORIA B50 - Loria Center B50", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ], "Thursday": [ @@ -23764,7 +48960,7 @@ "16:00", "17:15", "LORIA B50 - Loria Center B50", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -23782,10 +48978,113 @@ "classnotes": "", "final_exam": "Monday, December 18, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88947\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88947/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987862706184387, + 0.998653769493103, + 0.998498797416687, + 0.9987605810165405, + 0.9988075494766235, + 0.9988429546356201 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985281229019165, + 0.9631598591804504, + 0.9988541603088379, + 0.9982280135154724, + 0.9931482672691345, + 0.998891294002533 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9842171669006348, + 0.997646152973175, + 0.9965052604675293, + 0.9988892674446106, + 0.9988017082214355, + 0.9989141225814819 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 0.9444444444444444, + "final_counts": { + "POSITIVE": 17, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9444444444444444, + "NEGATIVE": 0.05555555555555555 + } + } }, { "season_code": "202303", @@ -23822,13 +49121,13 @@ "9:00", "10:50", "LORIA 250 - Loria Center 250", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ], [ "11:00", "12:30", "LORIA B51 - Loria Center B51", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ], "Wednesday": [ @@ -23836,7 +49135,7 @@ "9:00", "10:50", "LORIA 250 - Loria Center 250", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -23845,18 +49144,46 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Architecture courses will be open for registration on August 25 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. \n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https:\/\/www.architecture.yale.edu\/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on the YaleHub link: https:\/\/yub.yale.edu\/. ", + "classnotes": "Architecture courses will be open for registration on August 25 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. \n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https://www.architecture.yale.edu/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on the YaleHub link: https://yub.yale.edu/. ", "final_exam": "", "course_home_url": "", "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "(Required of second-year M.Arch. I students who waive ARCH 2021.) This course is geared toward graduate students in Architecture who already have an advanced background in bioclimatic analysis and design and who wish to pursue an area of design research in conjunction with their studio projects. The core content of the course is a hybrid lecture\/seminar format that focuses on an overview of emerging critical theory and technology in the areas of environmental and energy systems. The deliverable is a design research project that runs in parallel to design studio and considers an aspect of the studio project that gets pushed in a highly developed and experimental direction toward new methods of metabolizing energy, water, air, or living systems through the building envelope. We reconsider fundamentally novel ways of redirecting energy and water flows toward the fulfillment of various social mandates to transform the relationship between the built environment and extended ecosystems.", + "description": "(Required of second-year M.Arch. I students who waive ARCH 2021.) This course is geared toward graduate students in Architecture who already have an advanced background in bioclimatic analysis and design and who wish to pursue an area of design research in conjunction with their studio projects. The core content of the course is a hybrid lecture/seminar format that focuses on an overview of emerging critical theory and technology in the areas of environmental and energy systems. The deliverable is a design research project that runs in parallel to design studio and considers an aspect of the studio project that gets pushed in a highly developed and experimental direction toward new methods of metabolizing energy, water, air, or living systems through the building envelope. We reconsider fundamentally novel ways of redirecting energy and water flows toward the fulfillment of various social mandates to transform the relationship between the built environment and extended ecosystems.", "short_title": "Advanced Building Envelope De...", "title": "Advanced Building Envelope Design", "school": "AC", @@ -23900,13 +49227,41 @@ ], "regnotes": "", "rp_attr": "", - "classnotes": "Architecture courses will be open for registration on August 25 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. \n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https:\/\/www.architecture.yale.edu\/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on the YaleHub link: https:\/\/yub.yale.edu\/. ", + "classnotes": "Architecture courses will be open for registration on August 25 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. \n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https://www.architecture.yale.edu/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on the YaleHub link: https://yub.yale.edu/. ", "final_exam": "", "course_home_url": "", "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -23943,13 +49298,13 @@ "14:00", "15:50", "RDH HASTINGS - Rudolph Hall HASTINGS", - "https:\/\/map.yale.edu\/?id=1910#!m\/559534" + "https://map.yale.edu/?id=1910#!m/559534" ], [ "16:00", "17:50", "", - "https:\/\/map.yale.edu\/?id=1910#!m\/559534" + "https://map.yale.edu/?id=1910#!m/559534" ] ] }, @@ -23964,10 +49319,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91500\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91500/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -24019,7 +49402,7 @@ "14:00", "15:30", "RDH HASTINGS - Rudolph Hall HASTINGS", - "https:\/\/map.yale.edu\/?id=1910#!m\/559534" + "https://map.yale.edu/?id=1910#!m/559534" ] ] }, @@ -24031,18 +49414,46 @@ ], "regnotes": "", "rp_attr": "", - "classnotes": "Architecture courses will be open for registration on August 25 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. \n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https:\/\/www.architecture.yale.edu\/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on the YaleHub link: https:\/\/yub.yale.edu\/. ", + "classnotes": "Architecture courses will be open for registration on August 25 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. \n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https://www.architecture.yale.edu/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on the YaleHub link: https://yub.yale.edu/. ", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91501\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91501/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "This course examines the human relationship to mechanized perception in art and architecture. Mechanical eyes, such as satellites, rovers, computer vision, and autonomous sensing devices, give us unprecedented access to nonhuman and superhuman views into known and unknown environments. But the technology of automatic observation alienates human observers and fools them into thinking that this is an unemotional, inhuman point of view due to its existence in a numeric or digital domain. The observer is looking at seemingly trustworthy data that has been \"flattened\" or distilled from the real world. But this face-value acceptance should be rejected; interpreters of this device data should interrogate the motives, biases, or perspectives informing the \"artist\" in this case (that is, the developer\/programmer\/engineer who created the devices). Despite the displacement of direct human observation, mechanical eyes present in remote sensing, LiDAR scanning, trail-cams, metagenomic sequencing, urban informatics, and hyperspectral imaging have become fundamental to spatial analysis. But as these become standard practice, observers should also be trained in cracking open the data to understand the human perspective that originally informed it. In this class, students investigate the impact of the mechanical eye on cultural and aesthetic inquiry into a specific site. They conceptually consider their role as interpreter for the machine and create a series of site analysis experiments across a range of mediums. The experiments are based on themes of inversion, mirroring, portraiture, memory, calibration, and foregrounding to \"unflatten\" data into structure and form. Limited enrollment.", + "description": "This course examines the human relationship to mechanized perception in art and architecture. Mechanical eyes, such as satellites, rovers, computer vision, and autonomous sensing devices, give us unprecedented access to nonhuman and superhuman views into known and unknown environments. But the technology of automatic observation alienates human observers and fools them into thinking that this is an unemotional, inhuman point of view due to its existence in a numeric or digital domain. The observer is looking at seemingly trustworthy data that has been \"flattened\" or distilled from the real world. But this face-value acceptance should be rejected; interpreters of this device data should interrogate the motives, biases, or perspectives informing the \"artist\" in this case (that is, the developer/programmer/engineer who created the devices). Despite the displacement of direct human observation, mechanical eyes present in remote sensing, LiDAR scanning, trail-cams, metagenomic sequencing, urban informatics, and hyperspectral imaging have become fundamental to spatial analysis. But as these become standard practice, observers should also be trained in cracking open the data to understand the human perspective that originally informed it. In this class, students investigate the impact of the mechanical eye on cultural and aesthetic inquiry into a specific site. They conceptually consider their role as interpreter for the machine and create a series of site analysis experiments across a range of mediums. The experiments are based on themes of inversion, mirroring, portraiture, memory, calibration, and foregrounding to \"unflatten\" data into structure and form. Limited enrollment.", "short_title": "The Mechanical Eye", "title": "The Mechanical Eye", "school": "AC", @@ -24074,7 +49485,7 @@ "9:00", "10:50", "CCAM 103 - Center for Collab Arts & Media 103", - "https:\/\/map.yale.edu\/?id=1910#!m\/560098" + "https://map.yale.edu/?id=1910#!m/560098" ] ] }, @@ -24083,13 +49494,41 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Architecture courses will be open for registration on August 25 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. \n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https:\/\/www.architecture.yale.edu\/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on the YaleHub link: https:\/\/yub.yale.edu\/. ", + "classnotes": "Architecture courses will be open for registration on August 25 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. \n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https://www.architecture.yale.edu/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on the YaleHub link: https://yub.yale.edu/. ", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91502\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91502/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -24132,7 +49571,7 @@ "15:15", "18:30", "RDH 322 - Rudolph Hall 322", - "https:\/\/map.yale.edu\/?id=1910#!m\/559534" + "https://map.yale.edu/?id=1910#!m/559534" ] ] }, @@ -24141,13 +49580,41 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Architecture courses will be open for registration on August 25 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. \n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https:\/\/www.architecture.yale.edu\/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on the YaleHub link: https:\/\/yub.yale.edu\/. ", + "classnotes": "Architecture courses will be open for registration on August 25 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. \n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https://www.architecture.yale.edu/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on the YaleHub link: https://yub.yale.edu/. ", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91503\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91503/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -24193,13 +49660,41 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Architecture courses will be open for registration on August 25 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. \n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https:\/\/www.architecture.yale.edu\/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on the YaleHub link: https:\/\/yub.yale.edu\/. ", + "classnotes": "Architecture courses will be open for registration on August 25 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. \n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https://www.architecture.yale.edu/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on the YaleHub link: https://yub.yale.edu/. ", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91504\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91504/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -24236,7 +49731,7 @@ "9:00", "10:50", "RDH SB07 - Rudolph Hall SB07", - "https:\/\/map.yale.edu\/?id=1910#!m\/559534" + "https://map.yale.edu/?id=1910#!m/559534" ] ] }, @@ -24245,13 +49740,41 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Architecture courses will be open for registration on August 25 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. \n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https:\/\/www.architecture.yale.edu\/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on the YaleHub link: https:\/\/yub.yale.edu\/. ", + "classnotes": "Architecture courses will be open for registration on August 25 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. \n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https://www.architecture.yale.edu/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on the YaleHub link: https://yub.yale.edu/. ", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91505\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91505/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -24288,7 +49811,7 @@ "11:00", "12:50", "RDH 212 - Rudolph Hall 212", - "https:\/\/map.yale.edu\/?id=1910#!m\/559534" + "https://map.yale.edu/?id=1910#!m/559534" ] ] }, @@ -24297,13 +49820,41 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Architecture courses will be open for registration on August 25 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. \n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https:\/\/www.architecture.yale.edu\/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on the YaleHub link: https:\/\/yub.yale.edu\/. ", + "classnotes": "Architecture courses will be open for registration on August 25 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. \n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https://www.architecture.yale.edu/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on the YaleHub link: https://yub.yale.edu/. ", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91506\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91506/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -24346,7 +49897,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -24386,7 +49965,7 @@ "13:30", "15:20", "RDH 7-FL - Rudolph Hall 7-FL", - "https:\/\/map.yale.edu\/?id=1910#!m\/559534" + "https://map.yale.edu/?id=1910#!m/559534" ] ], "Wednesday": [ @@ -24394,7 +49973,7 @@ "13:30", "15:20", "RDH 7-FL - Rudolph Hall 7-FL", - "https:\/\/map.yale.edu\/?id=1910#!m\/559534" + "https://map.yale.edu/?id=1910#!m/559534" ] ], "Friday": [ @@ -24402,7 +49981,7 @@ "13:30", "15:20", "RDH 7-FL - Rudolph Hall 7-FL", - "https:\/\/map.yale.edu\/?id=1910#!m\/559534" + "https://map.yale.edu/?id=1910#!m/559534" ] ] }, @@ -24416,10 +49995,111 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88948\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88948/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988049268722534, + 0.9988150596618652, + 0.9989125728607178, + 0.9989019632339478, + 0.9988701939582825, + 0.9988362193107605, + 0.998874843120575 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989233613014221, + 0.9988806843757629, + 0.9989086389541626, + 0.9989222288131714, + 0.998885452747345, + 0.998822033405304 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986757636070251, + 0.9994727969169617, + 0.9989131689071655, + 0.9989030361175537 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 0.9411764705882353, + "final_counts": { + "POSITIVE": 16, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9411764705882353, + "NEGATIVE": 0.058823529411764705 + } + } }, { "season_code": "202303", @@ -24457,7 +50137,7 @@ "10:30", "11:20", "LORIA 351 - Loria Center 351", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ], "Thursday": [ @@ -24465,7 +50145,7 @@ "10:30", "11:20", "LORIA 351 - Loria Center 351", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -24481,10 +50161,155 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89741\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89741/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988203644752502, + 0.9988849759101868, + 0.9983633160591125, + 0.9988588094711304, + 0.9989070892333984, + 0.9987345337867737, + 0.9988980293273926, + 0.9989169836044312, + 0.9985722303390503, + 0.9989097118377686, + 0.9988214373588562, + 0.9987722039222717 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989159107208252, + 0.9988835453987122, + 0.9989213943481445, + 0.998731791973114, + 0.5111547708511353, + 0.9988816380500793, + 0.9988247752189636, + 0.998799204826355, + 0.9988983869552612, + 0.9994964599609375, + 0.998584508895874, + 0.9821203351020813, + 0.9989306330680847, + 0.9987188577651978, + 0.9988634586334229 + ], + "sentiment_counts": { + "POSITIVE": 14, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9333333333333333, + "NEGATIVE": 0.06666666666666667 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9333333333333333 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989204406738281, + 0.9981004595756531, + 0.9989281296730042, + 0.9980968832969666, + 0.9994254112243652, + 0.998894989490509, + 0.9987987279891968, + 0.9988628625869751, + 0.9985161423683167, + 0.8659103512763977, + 0.9961993098258972, + 0.9987892508506775 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 36, + "final_proportion": 0.9230769230769231, + "final_counts": { + "POSITIVE": 36, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.9230769230769231, + "NEGATIVE": 0.07692307692307693 + } + } }, { "season_code": "202303", @@ -24516,7 +50341,7 @@ "10:30", "11:20", "WLH 210 - William L. Harkness Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -24536,7 +50361,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -24568,7 +50421,7 @@ "16:00", "16:50", "YK220 002 - 220 York Street 002", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ] }, @@ -24585,7 +50438,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -24617,7 +50498,7 @@ "19:00", "19:50", "RDH 7-FL - Rudolph Hall 7-FL", - "https:\/\/map.yale.edu\/?id=1910#!m\/559534" + "https://map.yale.edu/?id=1910#!m/559534" ] ] }, @@ -24634,7 +50515,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -24674,7 +50583,7 @@ "10:30", "11:20", "LORIA 351 - Loria Center 351", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ], "Wednesday": [ @@ -24682,7 +50591,7 @@ "10:30", "11:20", "LORIA 351 - Loria Center 351", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -24696,7 +50605,7 @@ "YC HistofArt: 1500-1800", "YC HistofArt: Transchron", "YC HistofArt: Transregional", - "YC HistofArt: Asia\/Near East", + "YC HistofArt: Asia/Near East", "YC MDVL: Nr East & N Africa" ], "regnotes": "", @@ -24704,10 +50613,165 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88363\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88363/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9968078136444092, + 0.9988483190536499, + 0.8139111399650574, + 0.9988471269607544, + 0.9988279938697815, + 0.9989147186279297, + 0.9962338805198669, + 0.9989122152328491, + 0.998839795589447, + 0.998469889163971, + 0.9970951080322266, + 0.9986948370933533, + 0.9988358616828918 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9230769230769231, + "NEGATIVE": 0.07692307692307693 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9230769230769231 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988831877708435, + 0.9985210299491882, + 0.9953655004501343, + 0.919914960861206, + 0.9978929162025452, + 0.9989249110221863, + 0.9988729357719421, + 0.9989274144172668, + 0.9989389777183533, + 0.9987909197807312, + 0.9986699819564819, + 0.9984334111213684, + 0.9893514513969421, + 0.9987282156944275, + 0.9985567927360535 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.7333333333333333, + "NEGATIVE": 0.26666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7333333333333333 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988988637924194, + 0.9989264607429504, + 0.9985346794128418, + 0.9824399948120117, + 0.9946346282958984, + 0.9986942410469055, + 0.9983599781990051, + 0.9989287257194519, + 0.9989047050476074, + 0.9989331364631653, + 0.998633086681366, + 0.9890312552452087, + 0.997117280960083, + 0.9877563714981079, + 0.9994623064994812, + 0.9989323019981384 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.8125, + "NEGATIVE": 0.1875 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8125 + ] + }, + "final_label": "POSITIVE", + "final_count": 36, + "final_proportion": 0.8181818181818182, + "final_counts": { + "POSITIVE": 36, + "NEGATIVE": 8 + }, + "final_distribution": { + "POSITIVE": 0.8181818181818182, + "NEGATIVE": 0.18181818181818182 + } + } }, { "season_code": "202303", @@ -24741,7 +50805,7 @@ "10:30", "11:20", "LC 213 - Linsly-Chittenden Hall 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -24758,7 +50822,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -24792,7 +50884,7 @@ "17:00", "17:50", "HQ C15 - Humanities Quadrangle C15", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -24809,7 +50901,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -24868,7 +50988,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -24902,7 +51050,7 @@ "19:00", "19:50", "HQ 313 - Humanities Quadrangle 313", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -24919,7 +51067,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -24970,7 +51146,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -25004,7 +51208,7 @@ "17:00", "17:50", "HQ C15 - Humanities Quadrangle C15", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -25021,7 +51225,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -25080,7 +51312,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -25139,7 +51399,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -25173,7 +51461,7 @@ "17:00", "17:50", "HQ 313 - Humanities Quadrangle 313", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -25190,7 +51478,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -25224,7 +51540,7 @@ "10:30", "11:20", "WLH 014 - William L. Harkness Hall 014", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -25241,7 +51557,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -25283,7 +51627,7 @@ "11:35", "12:25", "YUAG AUD - Yale University Art Gallery AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/559918" + "https://map.yale.edu/?id=1910#!m/559918" ] ], "Thursday": [ @@ -25291,7 +51635,7 @@ "11:35", "12:25", "YUAG AUD - Yale University Art Gallery AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/559918" + "https://map.yale.edu/?id=1910#!m/559918" ] ] }, @@ -25300,7 +51644,7 @@ "Hu" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC ENRG: Energy & Environment", "YC ENRG: Energy & Society", @@ -25311,10 +51655,339 @@ "classnotes": "", "final_exam": "Friday, December 15, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89565\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89565/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988375306129456, + 0.9745486974716187, + 0.9978081583976746, + 0.9988411068916321, + 0.998700737953186, + 0.9988883137702942, + 0.9987426400184631, + 0.998898983001709, + 0.9987830519676208, + 0.9994888305664062, + 0.9988528490066528, + 0.9983839988708496, + 0.9982752799987793, + 0.9988221526145935, + 0.9988779425621033, + 0.9988971948623657, + 0.9989123344421387, + 0.9987972974777222, + 0.9988614320755005, + 0.9988412261009216, + 0.9986856579780579, + 0.9512736797332764, + 0.9911984801292419, + 0.9987909197807312, + 0.9935370087623596, + 0.9989128112792969, + 0.9988229870796204, + 0.9988051652908325, + 0.998722493648529, + 0.9988749623298645, + 0.9988431930541992, + 0.9988594055175781, + 0.9987161159515381, + 0.9988018274307251, + 0.9987325072288513, + 0.998615026473999, + 0.9988515377044678, + 0.9987990856170654, + 0.9976200461387634 + ], + "sentiment_counts": { + "POSITIVE": 34, + "NEGATIVE": 5 + }, + "sentiment_distribution": { + "POSITIVE": 0.8717948717948718, + "NEGATIVE": 0.1282051282051282 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8717948717948718 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988767504692078, + 0.9988866448402405, + 0.9988052845001221, + 0.9985508322715759, + 0.9987472295761108, + 0.9988623857498169, + 0.9987657070159912, + 0.9957031607627869, + 0.9979584217071533, + 0.9989247918128967, + 0.9984208345413208, + 0.999489426612854, + 0.9986494183540344, + 0.9994025230407715, + 0.9989386200904846, + 0.9989216327667236, + 0.9987127780914307, + 0.9988584518432617, + 0.9986187219619751, + 0.9989338517189026, + 0.9983636736869812, + 0.9993415474891663, + 0.9989307522773743, + 0.9989222288131714, + 0.999431312084198, + 0.9995033740997314, + 0.9918841123580933, + 0.9987691044807434, + 0.9851342439651489, + 0.998908281326294, + 0.9982900023460388, + 0.9944076538085938, + 0.9986935257911682, + 0.9994964599609375, + 0.997230589389801, + 0.9988928437232971, + 0.9983024597167969, + 0.9893326759338379, + 0.998908281326294, + 0.9988983869552612, + 0.9987039566040039, + 0.9988982677459717, + 0.9987058639526367, + 0.9986599683761597, + 0.9981788396835327 + ], + "sentiment_counts": { + "POSITIVE": 34, + "NEGATIVE": 11 + }, + "sentiment_distribution": { + "POSITIVE": 0.7555555555555555, + "NEGATIVE": 0.24444444444444444 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7555555555555555 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989129304885864, + 0.9980422258377075, + 0.9772031307220459, + 0.9988924860954285, + 0.9985565543174744, + 0.9988566637039185, + 0.9989244341850281, + 0.9989210367202759, + 0.9988320469856262, + 0.9988540410995483, + 0.997117280960083, + 0.9979623556137085, + 0.878170907497406, + 0.998935878276825, + 0.9982725381851196, + 0.9994218349456787, + 0.9987792372703552, + 0.9989334940910339, + 0.9989062547683716, + 0.9988899827003479, + 0.9995080232620239, + 0.9982553124427795, + 0.9989147186279297, + 0.9989333748817444, + 0.9995095729827881, + 0.9988654851913452, + 0.9987298846244812, + 0.99947589635849, + 0.9986647367477417, + 0.9988137483596802, + 0.9995065927505493, + 0.9988718628883362, + 0.8759276270866394, + 0.9994837045669556, + 0.9988135099411011, + 0.9984739422798157, + 0.9988139867782593, + 0.9987475872039795, + 0.9988629817962646, + 0.9986599683761597, + 0.9982942938804626, + 0.998596727848053, + 0.9989272952079773, + 0.9989011287689209, + 0.9987940788269043, + 0.9988528490066528, + 0.9994882345199585 + ], + "sentiment_counts": { + "POSITIVE": 38, + "NEGATIVE": 9 + }, + "sentiment_distribution": { + "POSITIVE": 0.8085106382978723, + "NEGATIVE": 0.19148936170212766 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8085106382978723 + ] + }, + "final_label": "POSITIVE", + "final_count": 106, + "final_proportion": 0.8091603053435115, + "final_counts": { + "POSITIVE": 106, + "NEGATIVE": 25 + }, + "final_distribution": { + "POSITIVE": 0.8091603053435115, + "NEGATIVE": 0.19083969465648856 + } + } }, { "season_code": "202303", @@ -25351,7 +52024,7 @@ "14:00", "15:50", "LORIA 250 - Loria Center 250", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -25360,13 +52033,41 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Architecture courses will be open for registration on August 25 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. \n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https:\/\/www.architecture.yale.edu\/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on the YaleHub link: https:\/\/yub.yale.edu\/. ", + "classnotes": "Architecture courses will be open for registration on August 25 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. \n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https://www.architecture.yale.edu/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on the YaleHub link: https://yub.yale.edu/. ", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91507\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91507/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -25397,7 +52098,7 @@ "16:00", "17:00", "RDH 322 - Rudolph Hall 322", - "https:\/\/map.yale.edu\/?id=1910#!m\/559534" + "https://map.yale.edu/?id=1910#!m/559534" ] ] }, @@ -25412,7 +52113,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -25443,7 +52172,7 @@ "16:00", "17:00", "RDH 706 - Rudolph Hall 706", - "https:\/\/map.yale.edu\/?id=1910#!m\/559534" + "https://map.yale.edu/?id=1910#!m/559534" ] ] }, @@ -25458,7 +52187,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -25504,7 +52261,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -25550,7 +52335,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -25590,7 +52403,7 @@ "15:30", "17:20", "CCAM 102 - Center for Collab Arts & Media 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/560098" + "https://map.yale.edu/?id=1910#!m/560098" ] ] }, @@ -25607,10 +52420,105 @@ "classnotes": "Instructors names will not be listed until mid to late August. Please contact them with any questions regarding course in the meantime: \nMisha Semenov-Leiva, misha.semenov@yale.edu and\nKassandra Semenov-Leiva, kassandra.leiva@aya.yale.edu \nIt is recommended, but not required, that students have some experience with visualization (digital or hand-drawing) and a willingness to explore physical prototyping.\n", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89260\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89260/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982126951217651, + 0.9988142251968384, + 0.9985858201980591, + 0.9988861680030823 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989163875579834, + 0.9336682558059692, + 0.9988672733306885, + 0.9988310933113098, + 0.9989340901374817 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984588623046875, + 0.9840455055236816, + 0.9988906979560852, + 0.9988941550254822, + 0.9989309906959534 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 0.9285714285714286, + "final_counts": { + "POSITIVE": 13, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9285714285714286, + "NEGATIVE": 0.07142857142857142 + } + } }, { "season_code": "202303", @@ -25647,13 +52555,13 @@ "9:00", "10:50", "RDH 322 - Rudolph Hall 322", - "https:\/\/map.yale.edu\/?id=1910#!m\/559534" + "https://map.yale.edu/?id=1910#!m/559534" ], [ "11:00", "12:00", "", - "https:\/\/map.yale.edu\/?id=1910#!m\/559534" + "https://map.yale.edu/?id=1910#!m/559534" ] ] }, @@ -25665,10 +52573,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91508\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91508/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -25708,7 +52644,7 @@ "11:00", "12:50", "RDH 706 - Rudolph Hall 706", - "https:\/\/map.yale.edu\/?id=1910#!m\/559534" + "https://map.yale.edu/?id=1910#!m/559534" ] ] }, @@ -25720,10 +52656,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91509\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91509/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -25766,7 +52730,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -25803,7 +52795,7 @@ "11:00", "12:50", "RDH 211 - Rudolph Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/559534" + "https://map.yale.edu/?id=1910#!m/559534" ] ] }, @@ -25812,13 +52804,41 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Architecture courses will be open for registration on August 25 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. \n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https:\/\/www.architecture.yale.edu\/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on the YaleHub link: https:\/\/yub.yale.edu\/. ", + "classnotes": "Architecture courses will be open for registration on August 25 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. \n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https://www.architecture.yale.edu/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on the YaleHub link: https://yub.yale.edu/. ", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91511\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91511/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -25857,7 +52877,7 @@ "13:30", "15:20", "LORIA 360 - Loria Center 360", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -25871,10 +52891,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91543\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91543/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -25916,7 +52964,7 @@ "11:35", "12:25", "YUAG AUD - Yale University Art Gallery AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/559918" + "https://map.yale.edu/?id=1910#!m/559918" ] ], "Thursday": [ @@ -25924,22 +52972,351 @@ "11:35", "12:25", "YUAG AUD - Yale University Art Gallery AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/559918" - ] - ] - }, - "skills": [], - "areas": [], - "flags": [], - "regnotes": "", - "rp_attr": "", - "classnotes": "", - "final_exam": "", - "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89565\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "https://map.yale.edu/?id=1910#!m/559918" + ] + ] + }, + "skills": [], + "areas": [], + "flags": [], + "regnotes": "", + "rp_attr": "", + "classnotes": "", + "final_exam": "", + "course_home_url": "", + "syllabus_url": "https://yale.instructure.com/courses/89565/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988375306129456, + 0.9745486974716187, + 0.9978081583976746, + 0.9988411068916321, + 0.998700737953186, + 0.9988883137702942, + 0.9987426400184631, + 0.998898983001709, + 0.9987830519676208, + 0.9994888305664062, + 0.9988528490066528, + 0.9983839988708496, + 0.9982752799987793, + 0.9988221526145935, + 0.9988779425621033, + 0.9988971948623657, + 0.9989123344421387, + 0.9987972974777222, + 0.9988614320755005, + 0.9988412261009216, + 0.9986856579780579, + 0.9512736797332764, + 0.9911984801292419, + 0.9987909197807312, + 0.9935370087623596, + 0.9989128112792969, + 0.9988229870796204, + 0.9988051652908325, + 0.998722493648529, + 0.9988749623298645, + 0.9988431930541992, + 0.9988594055175781, + 0.9987161159515381, + 0.9988018274307251, + 0.9987325072288513, + 0.998615026473999, + 0.9988515377044678, + 0.9987990856170654, + 0.9976200461387634 + ], + "sentiment_counts": { + "POSITIVE": 34, + "NEGATIVE": 5 + }, + "sentiment_distribution": { + "POSITIVE": 0.8717948717948718, + "NEGATIVE": 0.1282051282051282 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8717948717948718 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988767504692078, + 0.9988866448402405, + 0.9988052845001221, + 0.9985508322715759, + 0.9987472295761108, + 0.9988623857498169, + 0.9987657070159912, + 0.9957031607627869, + 0.9979584217071533, + 0.9989247918128967, + 0.9984208345413208, + 0.999489426612854, + 0.9986494183540344, + 0.9994025230407715, + 0.9989386200904846, + 0.9989216327667236, + 0.9987127780914307, + 0.9988584518432617, + 0.9986187219619751, + 0.9989338517189026, + 0.9983636736869812, + 0.9993415474891663, + 0.9989307522773743, + 0.9989222288131714, + 0.999431312084198, + 0.9995033740997314, + 0.9918841123580933, + 0.9987691044807434, + 0.9851342439651489, + 0.998908281326294, + 0.9982900023460388, + 0.9944076538085938, + 0.9986935257911682, + 0.9994964599609375, + 0.997230589389801, + 0.9988928437232971, + 0.9983024597167969, + 0.9893326759338379, + 0.998908281326294, + 0.9988983869552612, + 0.9987039566040039, + 0.9988982677459717, + 0.9987058639526367, + 0.9986599683761597, + 0.9981788396835327 + ], + "sentiment_counts": { + "POSITIVE": 34, + "NEGATIVE": 11 + }, + "sentiment_distribution": { + "POSITIVE": 0.7555555555555555, + "NEGATIVE": 0.24444444444444444 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7555555555555555 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989129304885864, + 0.9980422258377075, + 0.9772031307220459, + 0.9988924860954285, + 0.9985565543174744, + 0.9988566637039185, + 0.9989244341850281, + 0.9989210367202759, + 0.9988320469856262, + 0.9988540410995483, + 0.997117280960083, + 0.9979623556137085, + 0.878170907497406, + 0.998935878276825, + 0.9982725381851196, + 0.9994218349456787, + 0.9987792372703552, + 0.9989334940910339, + 0.9989062547683716, + 0.9988899827003479, + 0.9995080232620239, + 0.9982553124427795, + 0.9989147186279297, + 0.9989333748817444, + 0.9995095729827881, + 0.9988654851913452, + 0.9987298846244812, + 0.99947589635849, + 0.9986647367477417, + 0.9988137483596802, + 0.9995065927505493, + 0.9988718628883362, + 0.8759276270866394, + 0.9994837045669556, + 0.9988135099411011, + 0.9984739422798157, + 0.9988139867782593, + 0.9987475872039795, + 0.9988629817962646, + 0.9986599683761597, + 0.9982942938804626, + 0.998596727848053, + 0.9989272952079773, + 0.9989011287689209, + 0.9987940788269043, + 0.9988528490066528, + 0.9994882345199585 + ], + "sentiment_counts": { + "POSITIVE": 38, + "NEGATIVE": 9 + }, + "sentiment_distribution": { + "POSITIVE": 0.8085106382978723, + "NEGATIVE": 0.19148936170212766 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8085106382978723 + ] + }, + "final_label": "POSITIVE", + "final_count": 106, + "final_proportion": 0.8091603053435115, + "final_counts": { + "POSITIVE": 106, + "NEGATIVE": 25 + }, + "final_distribution": { + "POSITIVE": 0.8091603053435115, + "NEGATIVE": 0.19083969465648856 + } + } }, { "season_code": "202303", @@ -25976,7 +53353,7 @@ "11:00", "12:50", "RDH 212 - Rudolph Hall 212", - "https:\/\/map.yale.edu\/?id=1910#!m\/559534" + "https://map.yale.edu/?id=1910#!m/559534" ] ] }, @@ -25985,13 +53362,41 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Architecture courses will be open for registration on August 25 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. \n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https:\/\/www.architecture.yale.edu\/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on the YaleHub link: https:\/\/yub.yale.edu\/. ", + "classnotes": "Architecture courses will be open for registration on August 25 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. \n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https://www.architecture.yale.edu/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on the YaleHub link: https://yub.yale.edu/. ", "final_exam": "", - "course_home_url": "https:\/\/yale.instructure.com\/courses\/91514", + "course_home_url": "https://yale.instructure.com/courses/91514", "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -26029,7 +53434,7 @@ "15:30", "17:20", "LORIA 259 - Loria Center 259", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -26041,10 +53446,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91455\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91455/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -26082,7 +53515,7 @@ "13:30", "15:20", "", - "https:\/\/map.yale.edu\/?id=1910#!m\/559534" + "https://map.yale.edu/?id=1910#!m/559534" ] ] }, @@ -26100,10 +53533,87 @@ "classnotes": "", "final_exam": "Saturday, December 16, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90199\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90199/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985306262969971, + 0.998781144618988 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985306262969971, + 0.9988418221473694 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985306262969971, + 0.9988732933998108 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 6 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -26140,7 +53650,7 @@ "14:00", "15:50", "RDH 212 - Rudolph Hall 212", - "https:\/\/map.yale.edu\/?id=1910#!m\/559534" + "https://map.yale.edu/?id=1910#!m/559534" ] ] }, @@ -26149,13 +53659,41 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Architecture courses will be open for registration on August 25 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. \n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https:\/\/www.architecture.yale.edu\/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on the YaleHub link: https:\/\/yub.yale.edu\/. ", + "classnotes": "Architecture courses will be open for registration on August 25 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. \n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https://www.architecture.yale.edu/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on the YaleHub link: https://yub.yale.edu/. ", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91515\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91515/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -26193,7 +53731,7 @@ "9:25", "11:15", "LORIA 358 - Loria Center 358", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -26212,10 +53750,38 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90121\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/90121/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -26253,7 +53819,7 @@ "14:00", "15:50", "RDH 322 - Rudolph Hall 322", - "https:\/\/map.yale.edu\/?id=1910#!m\/559534" + "https://map.yale.edu/?id=1910#!m/559534" ] ] }, @@ -26262,13 +53828,41 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Architecture courses will be open for registration on August 25 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. \n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https:\/\/www.architecture.yale.edu\/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on the YaleHub link: https:\/\/yub.yale.edu\/. ", + "classnotes": "Architecture courses will be open for registration on August 25 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. \n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https://www.architecture.yale.edu/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on the YaleHub link: https://yub.yale.edu/. ", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88318\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88318/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -26321,10 +53915,38 @@ "classnotes": "", "final_exam": "Wednesday, December 20, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90346\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/90346/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -26367,7 +53989,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -26410,7 +54060,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -26447,7 +54125,7 @@ "14:00", "15:50", "RDH 322 - Rudolph Hall 322", - "https:\/\/map.yale.edu\/?id=1910#!m\/559534" + "https://map.yale.edu/?id=1910#!m/559534" ] ] }, @@ -26456,13 +54134,41 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Architecture courses will be open for registration on August 25 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. \n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https:\/\/www.architecture.yale.edu\/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on the YaleHub link: https:\/\/yub.yale.edu\/. ", + "classnotes": "Architecture courses will be open for registration on August 25 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. \n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https://www.architecture.yale.edu/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on the YaleHub link: https://yub.yale.edu/. ", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91518\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91518/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -26508,13 +54214,41 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Architecture courses will be open for registration on August 25 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. \n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https:\/\/www.architecture.yale.edu\/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on the YaleHub link: https:\/\/yub.yale.edu\/. ", + "classnotes": "Architecture courses will be open for registration on August 25 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. \n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https://www.architecture.yale.edu/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on the YaleHub link: https://yub.yale.edu/. ", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91519\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91519/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -26551,7 +54285,7 @@ "11:00", "12:50", "LORIA 258 - Loria Center 258", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -26560,13 +54294,41 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Architecture courses will be open for registration on August 25 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. \n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https:\/\/www.architecture.yale.edu\/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on the YaleHub link: https:\/\/yub.yale.edu\/. ", + "classnotes": "Architecture courses will be open for registration on August 25 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. \n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https://www.architecture.yale.edu/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on the YaleHub link: https://yub.yale.edu/. ", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92568\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92568/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -26604,7 +54366,7 @@ "15:30", "17:20", "LORIA 259 - Loria Center 259", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -26623,10 +54385,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91455\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91455/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -26681,10 +54471,99 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89773\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89773/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989116191864014, + 0.9987530708312988, + 0.9987710118293762 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988909363746643, + 0.9986425042152405, + 0.9988861680030823 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998916745185852, + 0.998898983001709, + 0.9993849992752075, + 0.9988930821418762, + 0.9989067316055298 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 0.9090909090909091, + "final_counts": { + "POSITIVE": 10, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + } + } }, { "season_code": "202303", @@ -26739,10 +54618,123 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88949\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88949/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987932443618774, + 0.9988179802894592, + 0.9989350438117981, + 0.9938967823982239, + 0.9987407326698303, + 0.9988868832588196, + 0.9989349246025085, + 0.9988088607788086 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9980959296226501, + 0.9957752823829651, + 0.9989320635795593, + 0.9978017210960388, + 0.9986005425453186, + 0.9959031939506531, + 0.9983739852905273, + 0.998832643032074 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988278746604919, + 0.9890825748443604, + 0.9967359900474548, + 0.9987654685974121, + 0.9994696974754333, + 0.9988564252853394, + 0.998764157295227 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "final_label": "POSITIVE", + "final_count": 22, + "final_proportion": 0.9565217391304348, + "final_counts": { + "POSITIVE": 22, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9565217391304348, + "NEGATIVE": 0.043478260869565216 + } + } }, { "season_code": "202303", @@ -26780,7 +54772,7 @@ "11:35", "12:50", "LC 212 - Linsly-Chittenden Hall 212", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -26788,7 +54780,7 @@ "11:35", "12:50", "LC 212 - Linsly-Chittenden Hall 212", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -26802,10 +54794,91 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89501\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89501/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986528158187866, + 0.9985073208808899 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9976534247398376, + 0.9988527297973633, + 0.9989251494407654 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989129304885864, + 0.9962040781974792, + 0.9986907839775085 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 8, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 8 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -26845,7 +54918,7 @@ "9:00", "10:50", "RDH HASTINGS - Rudolph Hall HASTINGS", - "https:\/\/map.yale.edu\/?id=1910#!m\/559534" + "https://map.yale.edu/?id=1910#!m/559534" ] ] }, @@ -26854,13 +54927,41 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Architecture courses will be open for registration on August 25 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. \n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https:\/\/www.architecture.yale.edu\/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on the YaleHub link: https:\/\/yub.yale.edu\/. ", + "classnotes": "Architecture courses will be open for registration on August 25 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. \n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https://www.architecture.yale.edu/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on the YaleHub link: https://yub.yale.edu/. ", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91522\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91522/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -26912,7 +55013,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -26949,7 +55078,7 @@ "9:00", "10:00", "RDH 706 - Rudolph Hall 706", - "https:\/\/map.yale.edu\/?id=1910#!m\/559534" + "https://map.yale.edu/?id=1910#!m/559534" ] ] }, @@ -26964,7 +55093,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -27016,7 +55173,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -27059,7 +55244,7 @@ "14:00", "15:50", "CCAM 103 - Center for Collab Arts & Media 103", - "https:\/\/map.yale.edu\/?id=1910#!m\/560098" + "https://map.yale.edu/?id=1910#!m/560098" ] ] }, @@ -27068,13 +55253,41 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Architecture courses will be open for registration on August 25 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. \n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https:\/\/www.architecture.yale.edu\/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on the YaleHub link: https:\/\/yub.yale.edu\/. ", + "classnotes": "Architecture courses will be open for registration on August 25 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. \n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https://www.architecture.yale.edu/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on the YaleHub link: https://yub.yale.edu/. ", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91523\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91523/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -27111,7 +55324,7 @@ "11:00", "12:50", "RDH 322 - Rudolph Hall 322", - "https:\/\/map.yale.edu\/?id=1910#!m\/559534" + "https://map.yale.edu/?id=1910#!m/559534" ] ] }, @@ -27120,13 +55333,41 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Architecture courses will be open for registration on August 25 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. \n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https:\/\/www.architecture.yale.edu\/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on the YaleHub link: https:\/\/yub.yale.edu\/. ", + "classnotes": "Architecture courses will be open for registration on August 25 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. \n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https://www.architecture.yale.edu/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on the YaleHub link: https://yub.yale.edu/. ", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91524\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91524/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -27177,10 +55418,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90346\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90346/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -27224,7 +55493,7 @@ "9:30", "12:30", "SLB 121 - Sterling Law Buildings 121", - "https:\/\/map.yale.edu\/?id=1910#!m\/531532" + "https://map.yale.edu/?id=1910#!m/531532" ] ] }, @@ -27233,13 +55502,41 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Architecture courses will be open for registration on August 25 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. \n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https:\/\/www.architecture.yale.edu\/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on the YaleHub link: https:\/\/yub.yale.edu\/. ", + "classnotes": "Architecture courses will be open for registration on August 25 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. \n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https://www.architecture.yale.edu/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on the YaleHub link: https://yub.yale.edu/. ", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91447\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91447/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -27276,7 +55573,7 @@ "16:00", "17:50", "RDH 706 - Rudolph Hall 706", - "https:\/\/map.yale.edu\/?id=1910#!m\/559534" + "https://map.yale.edu/?id=1910#!m/559534" ] ] }, @@ -27285,13 +55582,41 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Architecture courses will be open for registration on August 25 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. \n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https:\/\/www.architecture.yale.edu\/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on the YaleHub link: https:\/\/yub.yale.edu\/. ", + "classnotes": "Architecture courses will be open for registration on August 25 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. \n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https://www.architecture.yale.edu/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on the YaleHub link: https://yub.yale.edu/. ", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91527\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91527/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -27340,13 +55665,41 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Architecture courses will be open for registration on August 25 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. \n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https:\/\/www.architecture.yale.edu\/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on the YaleHub link: https:\/\/yub.yale.edu\/. ", + "classnotes": "Architecture courses will be open for registration on August 25 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. \n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https://www.architecture.yale.edu/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on the YaleHub link: https://yub.yale.edu/. ", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91528\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91528/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -27389,7 +55742,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -27432,10 +55813,109 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88950\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88950/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988849759101868, + 0.9986552000045776, + 0.998164713382721, + 0.9988489151000977, + 0.9987612962722778 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985899329185486, + 0.9936717748641968, + 0.998887836933136, + 0.9989099502563477, + 0.9988933205604553, + 0.9988287091255188 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.997117280960083, + 0.9984166622161865, + 0.9988192915916443, + 0.9967820644378662, + 0.9979244470596313 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 0.9375, + "final_counts": { + "POSITIVE": 15, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9375, + "NEGATIVE": 0.0625 + } + } }, { "season_code": "202303", @@ -27475,10 +55955,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88951\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88951/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -27518,10 +56026,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88952\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88952/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -27559,7 +56095,7 @@ "13:30", "15:20", "RDH 212 - Rudolph Hall 212", - "https:\/\/map.yale.edu\/?id=1910#!m\/559534" + "https://map.yale.edu/?id=1910#!m/559534" ] ] }, @@ -27571,17 +56107,106 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88953\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88953/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998706579208374, + 0.9989205598831177, + 0.998665452003479, + 0.998872697353363 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987664222717285, + 0.9989134073257446, + 0.9989110231399536, + 0.9989284873008728 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988920092582703, + 0.9989256262779236, + 0.9932336211204529, + 0.9989198446273804 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 12 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", "requirements": "", "description": "The course centered around the question relevant to architectural scholars and practicing architects alike: how to make sense of architecture\u2019s relationship to a particular locale and how to define the factors and actors that define that define that locale and its scope. We will interrogate how different geographic ideas, concepts, and imagery has been used to discuss both natural and cultural phenomena in scholarship and design; how surveys and cartography have been deployed by different actors; and what different material practices teach us about architecture\u2019s geographic footprint. The seminar is organized around different geographic concepts. We will conduct a historiographic overview of geographic ideas such as place and region; interrogate geopolitical subtexts behind national and international architectures; consider the impact of various forms of transnational exchange within the history of architecture and urbanism; and explore the usefulness of new geographic markers like Global South and Global North in highlighting economic disparities. Throughout the semester pay attention to how various geographic narratives have been represented architecturally and disseminated through various media from exhibitions to photography and film. Readings are selected with the transdisciplinary nature of the field in mind. We will read canonical architectural texts by Kenneth Frampton, Barbara Miller Lane, and Christian Norbert-Schultz, who have all used geographic concepts and markers in their writings. In addition, we will study foundational texts by 20th century historians, political scientists, and geographers, such as Benedikt Anderson, Arjun Appadurai, Fernand Braudel, Denis Cosgrove, Lucien Fevbre, Henri Lefebvre, and Paul Ricoeur, and learn from radical geographers, such as Guy Debord, David Harvey, and Doreen Massey, who, starting in the 1950s and 1960s, began to study geography from the perspective of civil rights, colonialism, environmental pollution, social inequality, and war. The course is required for first- and second-year PhD students at YSOA and welcomes PhD students from other departments. It is also open to M.E.D. and selected M.Arch I and II students, who should communicate their interest to professor Pelkonen via email (eeva-liisa.pelkonen@yale.edu).", - "short_title": "Ph.D. Seminar: History\/Theory...", - "title": "Ph.D. Seminar: History\/Theory I: Architecture & Geography", + "short_title": "Ph.D. Seminar: History/Theory...", + "title": "Ph.D. Seminar: History/Theory I: Architecture & Geography", "school": "GS", "credits": 1.0, "extra_info": "ACTIVE", @@ -27623,17 +56248,45 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90526\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90526/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", "description": "Required in, and limited to, Ph.D. second year, fall term, History and Theory track. Content to be announced.", - "short_title": "Ph.D. Seminar: History\/Theory...", - "title": "Ph.D. Seminar: History\/Theory III: Architecture & Geography", + "short_title": "Ph.D. Seminar: History/Theory...", + "title": "Ph.D. Seminar: History/Theory III: Architecture & Geography", "school": "GS", "credits": 1.0, "extra_info": "ACTIVE", @@ -27666,10 +56319,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90527\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90527/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -27712,7 +56393,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -27752,10 +56461,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90528\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90528/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -27795,10 +56532,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90529\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90529/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -27838,15 +56603,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90530\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90530/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "Introduction to the art and historical development of letterpress printing and to the evolution of private presses. Survey of hand printing; practical study of press operations using antique platen presses and the cylinder proof press. Material qualities of printed matter, connections between content and typographic form, and word\/image relationships.", + "description": "Introduction to the art and historical development of letterpress printing and to the evolution of private presses. Survey of hand printing; practical study of press operations using antique platen presses and the cylinder proof press. Material qualities of printed matter, connections between content and typographic form, and word/image relationships.", "short_title": "Art of the Printed Word", "title": "Art of the Printed Word", "school": "YC", @@ -27892,10 +56685,91 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89511\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89511/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987367987632751, + 0.9989150762557983, + 0.9988571405410767 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988462924957275, + 0.9988656044006348, + 0.9989339709281921 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988848567008972, + 0.9989351630210876 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 8, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 8 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -27932,7 +56806,7 @@ "9:00", "10:15", "EDG36 119 - 36 Edgewood Ave. Sculpture Bld 119", - "https:\/\/map.yale.edu\/?id=1910#!m\/560028" + "https://map.yale.edu/?id=1910#!m/560028" ] ], "Wednesday": [ @@ -27940,7 +56814,7 @@ "9:00", "10:15", "EDG36 119 - 36 Edgewood Ave. Sculpture Bld 119", - "https:\/\/map.yale.edu\/?id=1910#!m\/560028" + "https://map.yale.edu/?id=1910#!m/560028" ] ] }, @@ -27957,12 +56831,143 @@ "syllabus_url": "", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987913966178894, + 0.9988116025924683, + 0.9989239573478699, + 0.9989076852798462, + 0.9989301562309265, + 0.9988393187522888, + 0.9988312125205994, + 0.9987443685531616, + 0.9989132881164551, + 0.9988716244697571, + 0.998789370059967 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9924942255020142, + 0.9985951781272888, + 0.9989023208618164, + 0.9989194869995117, + 0.9989044666290283, + 0.9659460783004761, + 0.9989238381385803, + 0.9994663596153259, + 0.9988510608673096, + 0.9988530874252319, + 0.9989269375801086 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8181818181818182, + "NEGATIVE": 0.18181818181818182 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8181818181818182 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989053010940552, + 0.9989334940910339, + 0.9988915324211121, + 0.9989262223243713, + 0.9985993504524231, + 0.9989166259765625, + 0.9994838237762451, + 0.9989239573478699, + 0.998921275138855, + 0.9989367127418518 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "final_label": "POSITIVE", + "final_count": 29, + "final_proportion": 0.90625, + "final_counts": { + "POSITIVE": 29, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.90625, + "NEGATIVE": 0.09375 + } + } }, { "season_code": "202303", "requirements": "No prior drawing experience necessary. Open to all undergraduates. Required for Art majors.", - "description": "An introduction to the language of visual expression, using studio projects to explore the fundamental principles of visual art. Students acquire a working knowledge of visual syntax applicable to the study of art history, popular culture, and art. Projects address all four major concentrations (graphic design, printing\/printmaking, photography, and sculpture).", + "description": "An introduction to the language of visual expression, using studio projects to explore the fundamental principles of visual art. Students acquire a working knowledge of visual syntax applicable to the study of art history, popular culture, and art. Projects address all four major concentrations (graphic design, printing/printmaking, photography, and sculpture).", "short_title": "Visual Thinking", "title": "Visual Thinking", "school": "YC", @@ -27994,7 +56999,7 @@ "15:30", "17:20", "GREEN 216 - Green Hall (1156 Chapel) 216", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ], "Thursday": [ @@ -28002,7 +57007,7 @@ "15:30", "17:20", "GREEN 216 - Green Hall (1156 Chapel) 216", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ] }, @@ -28016,10 +57021,119 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89513\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89513/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988235831260681, + 0.9988436698913574, + 0.9989073276519775, + 0.9935250282287598, + 0.9955183267593384, + 0.9974015951156616, + 0.9988034963607788 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9987099170684814, + 0.9987144470214844, + 0.9989307522773743, + 0.9986690282821655, + 0.9988899827003479, + 0.9978125095367432, + 0.9991031885147095 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989014863967896, + 0.9981033802032471, + 0.998835027217865, + 0.9989081621170044, + 0.9982553124427795, + 0.9986881613731384, + 0.9994971752166748 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 0.9047619047619048, + "final_counts": { + "POSITIVE": 19, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9047619047619048, + "NEGATIVE": 0.09523809523809523 + } + } }, { "season_code": "202303", @@ -28056,7 +57170,7 @@ "10:30", "12:20", "GREEN G01 - Green Hall (1156 Chapel) G01", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ], "Thursday": [ @@ -28064,7 +57178,7 @@ "10:30", "12:20", "GREEN G01 - Green Hall (1156 Chapel) G01", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ] }, @@ -28078,10 +57192,135 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89514\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89514/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984663724899292, + 0.9987795948982239, + 0.9969522953033447, + 0.9988899827003479, + 0.9987956285476685, + 0.9989262223243713, + 0.982069194316864, + 0.9989123344421387, + 0.9988769888877869, + 0.9988521337509155 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988505840301514, + 0.9989019632339478, + 0.998863697052002, + 0.9988861680030823, + 0.998928964138031, + 0.9989328980445862, + 0.9985628724098206, + 0.9988706707954407, + 0.9989238381385803, + 0.9989282488822937 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989060163497925, + 0.998513400554657, + 0.9988805651664734, + 0.9989363551139832, + 0.9988535642623901, + 0.998939573764801, + 0.9988879561424255, + 0.9989275336265564, + 0.9989290833473206, + 0.9989109039306641 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 30, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 30 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -28118,7 +57357,7 @@ "15:30", "17:20", "GREEN G01 - Green Hall (1156 Chapel) G01", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ], "Wednesday": [ @@ -28126,7 +57365,7 @@ "15:30", "17:20", "GREEN G01 - Green Hall (1156 Chapel) G01", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ] }, @@ -28140,10 +57379,115 @@ "classnotes": "Instructor: Cameron Barker", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89515\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89515/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988719820976257, + 0.9988515377044678, + 0.998785674571991, + 0.9988823533058167, + 0.9989218711853027, + 0.9982060194015503, + 0.9988839030265808 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989060163497925, + 0.9989308714866638, + 0.9988118410110474, + 0.9989230036735535, + 0.9988881945610046, + 0.9973669648170471, + 0.9988229870796204 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988870024681091, + 0.9985516667366028, + 0.9988788962364197, + 0.998910665512085, + 0.998928964138031, + 0.9989112615585327 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 20 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -28180,7 +57524,7 @@ "13:30", "15:20", "GREEN G01 - Green Hall (1156 Chapel) G01", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ], "Thursday": [ @@ -28188,7 +57532,7 @@ "13:30", "15:20", "GREEN G01 - Green Hall (1156 Chapel) G01", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ] }, @@ -28202,10 +57546,119 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89516\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89516/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987109899520874, + 0.9988460540771484, + 0.9982490539550781, + 0.9987731575965881, + 0.9964761137962341, + 0.9984186887741089, + 0.9975190162658691 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9939646124839783, + 0.9988020658493042, + 0.9994997978210449, + 0.9979676604270935, + 0.9994856119155884, + 0.9986252784729004, + 0.9994015693664551 + ], + "sentiment_counts": { + "NEGATIVE": 4, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5714285714285714, + "POSITIVE": 0.42857142857142855 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.5714285714285714 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988753199577332, + 0.9988982677459717, + 0.9974223375320435, + 0.9989075660705566, + 0.9989092350006104, + 0.9989171028137207, + 0.9930661916732788 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 0.7619047619047619, + "final_counts": { + "POSITIVE": 16, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.7619047619047619, + "NEGATIVE": 0.23809523809523808 + } + } }, { "season_code": "202303", @@ -28242,7 +57695,7 @@ "10:30", "12:20", "GREEN G01 - Green Hall (1156 Chapel) G01", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ], "Wednesday": [ @@ -28250,7 +57703,7 @@ "10:30", "12:20", "GREEN G01 - Green Hall (1156 Chapel) G01", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ] }, @@ -28264,10 +57717,99 @@ "classnotes": "Instructor: Danny Greenberg. ", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89517\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89517/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988183379173279, + 0.9970929622650146, + 0.9988210797309875, + 0.9987194538116455 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989319443702698, + 0.9989187717437744, + 0.9969334602355957 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987426400184631, + 0.9983974099159241, + 0.9988898634910583, + 0.9989325404167175, + 0.9985191226005554 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 12 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -28304,7 +57846,7 @@ "13:30", "15:20", "GREEN G01 - Green Hall (1156 Chapel) G01", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ], "Wednesday": [ @@ -28312,7 +57854,7 @@ "13:30", "15:20", "GREEN G01 - Green Hall (1156 Chapel) G01", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ] }, @@ -28326,10 +57868,89 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89518\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89518/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987616539001465, + 0.9988309741020203 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989182949066162, + 0.9989103078842163, + 0.9989253878593445 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988769888877869, + 0.9989076852798462 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 7 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -28366,7 +57987,7 @@ "13:30", "17:20", "EDG36 115 - 36 Edgewood Ave. Sculpture Bld 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/560028" + "https://map.yale.edu/?id=1910#!m/560028" ] ] }, @@ -28380,10 +58001,123 @@ "classnotes": "Instructor: Sae Jun Kim.", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89519\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89519/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9921115636825562, + 0.998610258102417, + 0.9985558390617371, + 0.9988114833831787, + 0.998835027217865, + 0.9989184141159058, + 0.9987467527389526 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985780715942383, + 0.9988226294517517, + 0.9979482293128967, + 0.9994906187057495, + 0.9983269572257996, + 0.9989209175109863, + 0.9989271759986877, + 0.9985502362251282 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989129304885864, + 0.9989210367202759, + 0.997531533241272, + 0.9985153079032898, + 0.999496340751648, + 0.9989140033721924, + 0.9989281296730042, + 0.99883633852005 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "final_label": "POSITIVE", + "final_count": 21, + "final_proportion": 0.9130434782608695, + "final_counts": { + "POSITIVE": 21, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9130434782608695, + "NEGATIVE": 0.08695652173913043 + } + } }, { "season_code": "202303", @@ -28420,7 +58154,7 @@ "13:30", "17:20", "EDG36 123 - 36 Edgewood Ave. Sculpture Bld 123", - "https:\/\/map.yale.edu\/?id=1910#!m\/560028" + "https://map.yale.edu/?id=1910#!m/560028" ] ] }, @@ -28434,10 +58168,121 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89520\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89520/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988883137702942, + 0.9985632300376892, + 0.9989079236984253, + 0.9985988736152649, + 0.9984813332557678, + 0.9934144020080566, + 0.998842716217041 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989235997200012, + 0.9465242624282837, + 0.9983139038085938, + 0.9988968372344971, + 0.9988956451416016, + 0.9984295964241028, + 0.9989287257194519 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998920202255249, + 0.998765230178833, + 0.9988012313842773, + 0.9988962411880493, + 0.9983205199241638, + 0.9986844658851624, + 0.9988628625869751, + 0.998767614364624 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 21, + "final_proportion": 0.9545454545454546, + "final_counts": { + "POSITIVE": 21, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9545454545454546, + "NEGATIVE": 0.045454545454545456 + } + } }, { "season_code": "202303", @@ -28474,7 +58319,7 @@ "10:30", "12:20", "GREEN 207 - Green Hall (1156 Chapel) 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ], "Wednesday": [ @@ -28482,7 +58327,7 @@ "10:30", "12:20", "GREEN 207 - Green Hall (1156 Chapel) 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ] }, @@ -28496,10 +58341,135 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89521\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89521/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988884329795837, + 0.998885452747345, + 0.9989067316055298, + 0.9989234805107117, + 0.9987285733222961, + 0.9988927245140076, + 0.9987452030181885, + 0.9987627267837524, + 0.9988686442375183, + 0.9989145994186401 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988505840301514, + 0.9977572560310364, + 0.9988611936569214, + 0.9989204406738281, + 0.998894989490509, + 0.9989137649536133, + 0.9987789988517761, + 0.9989318251609802, + 0.9989035129547119 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989159107208252, + 0.9989073276519775, + 0.9988480806350708, + 0.9989286065101624, + 0.9988676309585571, + 0.9989389777183533, + 0.9989204406738281, + 0.9989363551139832, + 0.9985665678977966, + 0.9989334940910339 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 28, + "final_proportion": 0.9655172413793104, + "final_counts": { + "POSITIVE": 28, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9655172413793104, + "NEGATIVE": 0.034482758620689655 + } + } }, { "season_code": "202303", @@ -28536,7 +58506,7 @@ "10:30", "12:20", "GREEN 207 - Green Hall (1156 Chapel) 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ], "Thursday": [ @@ -28544,7 +58514,7 @@ "10:30", "12:20", "GREEN 207 - Green Hall (1156 Chapel) 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ] }, @@ -28558,10 +58528,121 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89522\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89522/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987934827804565, + 0.9985144734382629, + 0.9987724423408508, + 0.998936116695404, + 0.9989122152328491, + 0.9987000226974487, + 0.9989376664161682 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988909363746643, + 0.9988698363304138, + 0.9884931445121765, + 0.9989301562309265, + 0.9982209801673889, + 0.9987921118736267, + 0.9989281296730042 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989211559295654, + 0.9988896250724792, + 0.9986120462417603, + 0.9981548190116882, + 0.9988018274307251, + 0.998898983001709, + 0.9989376664161682, + 0.9988986253738403 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 21, + "final_proportion": 0.9545454545454546, + "final_counts": { + "POSITIVE": 21, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9545454545454546, + "NEGATIVE": 0.045454545454545456 + } + } }, { "season_code": "202303", @@ -28598,7 +58679,7 @@ "8:25", "10:15", "GREEN 210 - Green Hall (1156 Chapel) 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ], "Thursday": [ @@ -28606,7 +58687,7 @@ "8:25", "10:15", "GREEN 210 - Green Hall (1156 Chapel) 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ] }, @@ -28620,10 +58701,91 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89523\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89523/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987906813621521, + 0.9949363470077515, + 0.9933016300201416 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988162517547607, + 0.9987296462059021 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988440275192261, + 0.9989191293716431 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 0.8571428571428571, + "final_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + } + } }, { "season_code": "202303", @@ -28660,7 +58822,7 @@ "10:30", "12:20", "GREEN 210 - Green Hall (1156 Chapel) 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ], "Thursday": [ @@ -28668,7 +58830,7 @@ "10:30", "12:20", "GREEN 210 - Green Hall (1156 Chapel) 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ] }, @@ -28682,10 +58844,105 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89524\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89524/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9948195815086365, + 0.9963029623031616, + 0.9974585175514221, + 0.998795747756958, + 0.9984211921691895 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998881995677948, + 0.9987936019897461, + 0.9989155530929565, + 0.9989091157913208, + 0.9989193677902222 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998923122882843, + 0.9989239573478699, + 0.9988623857498169, + 0.9988548755645752, + 0.998766303062439 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 15 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -28722,7 +58979,7 @@ "10:30", "12:20", "GREEN G32 - Green Hall (1156 Chapel) G32", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ], "Friday": [ @@ -28730,7 +58987,7 @@ "10:30", "12:20", "GREEN G32 - Green Hall (1156 Chapel) G32", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ] }, @@ -28744,10 +59001,113 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89525\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89525/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987096786499023, + 0.9728593230247498, + 0.9973956346511841, + 0.9975395202636719, + 0.998445451259613, + 0.9987581968307495 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9959049820899963, + 0.9951944947242737, + 0.9927985668182373, + 0.998829185962677, + 0.9930088520050049, + 0.9988964796066284 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987291693687439, + 0.9980074763298035, + 0.9988107681274414, + 0.998924195766449, + 0.9983463287353516, + 0.9989374279975891 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 0.8888888888888888, + "final_counts": { + "POSITIVE": 16, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + } + } }, { "season_code": "202303", @@ -28784,7 +59144,7 @@ "10:30", "12:20", "GREEN B01 - Green Hall (1156 Chapel) B01", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ], "Wednesday": [ @@ -28792,7 +59152,7 @@ "10:30", "12:20", "GREEN B01 - Green Hall (1156 Chapel) B01", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ] }, @@ -28806,10 +59166,113 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89526\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89526/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9969481825828552, + 0.9988672733306885, + 0.9989295601844788, + 0.9988378882408142, + 0.9989230036735535, + 0.9923210740089417 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9971960783004761, + 0.9989302754402161, + 0.9988778233528137, + 0.9989176988601685, + 0.9988839030265808, + 0.9989157915115356 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986268281936646, + 0.9989292025566101, + 0.9982553124427795, + 0.9989281296730042, + 0.9988613128662109, + 0.998336672782898, + 0.9987025260925293 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 19 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -28846,7 +59309,7 @@ "13:30", "15:20", "GREEN B01 - Green Hall (1156 Chapel) B01", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ], "Wednesday": [ @@ -28854,7 +59317,7 @@ "13:30", "15:20", "GREEN B01 - Green Hall (1156 Chapel) B01", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ] }, @@ -28868,10 +59331,93 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89527\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89527/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988287091255188, + 0.9984250068664551, + 0.9988610744476318 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989145994186401, + 0.9989150762557983, + 0.9988911747932434 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985986351966858, + 0.9989282488822937, + 0.9989389777183533 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 9 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -28909,7 +59455,7 @@ "13:30", "17:20", "EDG36 023 - 36 Edgewood Ave. Sculpture Bld 023", - "https:\/\/map.yale.edu\/?id=1910#!m\/560028" + "https://map.yale.edu/?id=1910#!m/560028" ] ] }, @@ -28923,10 +59469,87 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89528\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89528/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988765120506287, + 0.998784601688385 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989383816719055, + 0.9989323019981384 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988948702812195, + 0.9989196062088013 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 6 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -28963,7 +59586,7 @@ "10:30", "12:20", "GREEN 209 - Green Hall (1156 Chapel) 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ], "Friday": [ @@ -28971,7 +59594,7 @@ "10:30", "12:20", "CCAM 102 - Center for Collab Arts & Media 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ] }, @@ -28983,10 +59606,105 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89529\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89529/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989013671875, + 0.9988123178482056, + 0.998916506767273, + 0.9977512955665588, + 0.9987534284591675 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9813796877861023, + 0.9989026784896851, + 0.9988214373588562, + 0.9849527478218079, + 0.9986016154289246 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9973924160003662, + 0.9988551139831543, + 0.997117280960083, + 0.9953688979148865, + 0.9989330172538757 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 15 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -29023,7 +59741,7 @@ "8:25", "12:20", "EDG36 023 - 36 Edgewood Ave. Sculpture Bld 023", - "https:\/\/map.yale.edu\/?id=1910#!m\/560028" + "https://map.yale.edu/?id=1910#!m/560028" ] ] }, @@ -29035,10 +59753,93 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89530\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89530/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.99888676404953, + 0.9984738230705261, + 0.9988983869552612 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989150762557983, + 0.9988662004470825, + 0.9989245533943176 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988154172897339, + 0.9988634586334229, + 0.9989331364631653 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 9 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -29078,7 +59879,7 @@ "10:30", "12:20", "GREEN B01 - Green Hall (1156 Chapel) B01", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ], "Thursday": [ @@ -29086,7 +59887,7 @@ "10:30", "12:20", "GREEN B01 - Green Hall (1156 Chapel) B01", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ] }, @@ -29095,13 +59896,126 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Faculty: Natalie Ivis w\/ Lisa Kereszi. To apply for this course, please do not send an email to inquire, but instead apply for instructor permission on courses.yale.edu when registration opens for your class year. Please put in the notes whether you are an Art\/CPAR major, and a short note on why you would like to take this course. Please do not email the instructor listed. Space is limited, and priority is given to majors, intended majors and then other Yale College students.", + "classnotes": "Faculty: Natalie Ivis w/ Lisa Kereszi. To apply for this course, please do not send an email to inquire, but instead apply for instructor permission on courses.yale.edu when registration opens for your class year. Please put in the notes whether you are an Art/CPAR major, and a short note on why you would like to take this course. Please do not email the instructor listed. Space is limited, and priority is given to majors, intended majors and then other Yale College students.", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89531\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89531/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989338517189026, + 0.9988603591918945, + 0.9976455569267273, + 0.9988540410995483, + 0.9989134073257446, + 0.9986332058906555, + 0.9989148378372192, + 0.998815655708313 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988818764686584, + 0.9989237189292908, + 0.9989110231399536, + 0.9987751841545105, + 0.9988640546798706, + 0.9988952279090881, + 0.9988510608673096, + 0.9988934397697449 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989187717437744, + 0.9988973140716553, + 0.998906135559082, + 0.9986255168914795, + 0.9989330172538757, + 0.9989147186279297, + 0.9989342093467712, + 0.9986928105354309 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 24, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 24 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -29139,7 +60053,7 @@ "13:30", "17:20", "CCAM 110 - Center for Collab Arts & Media 110", - "https:\/\/map.yale.edu\/?id=1910#!m\/560098" + "https://map.yale.edu/?id=1910#!m/560098" ] ] }, @@ -29153,10 +60067,99 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88210\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88210/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987812638282776, + 0.9988564252853394, + 0.9987610578536987, + 0.9989145994186401 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988847374916077, + 0.998873770236969, + 0.9865996837615967, + 0.9989172220230103 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988565444946289, + 0.998927652835846, + 0.9910072684288025, + 0.997117280960083 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 12 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -29193,7 +60196,7 @@ "10:30", "12:20", "GREEN 210 - Green Hall (1156 Chapel) 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ], "Wednesday": [ @@ -29201,7 +60204,7 @@ "10:30", "12:20", "GREEN 210 - Green Hall (1156 Chapel) 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ] }, @@ -29213,10 +60216,99 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89532\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89532/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987519979476929, + 0.9985658526420593, + 0.998238205909729, + 0.9988731741905212 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988866448402405, + 0.9985458850860596, + 0.9986673593521118, + 0.9989404082298279 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988862872123718, + 0.9987335801124573, + 0.998573899269104, + 0.998932421207428 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 12 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -29253,7 +60345,7 @@ "13:30", "17:20", "GREEN 211 - Green Hall (1156 Chapel) 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ] }, @@ -29267,10 +60359,87 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89533\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89533/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986332058906555, + 0.9987037181854248 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987117052078247, + 0.9988954067230225 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987066984176636, + 0.9989185333251953 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 6 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -29307,7 +60476,7 @@ "13:30", "15:20", "GREEN C014 - Green Hall (1156 Chapel) C014", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ], "Thursday": [ @@ -29315,7 +60484,7 @@ "13:30", "15:20", "GREEN C014 - Green Hall (1156 Chapel) C014", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ] }, @@ -29329,10 +60498,95 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89534\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89534/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989349246025085, + 0.9989105463027954, + 0.9988754391670227 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988580942153931, + 0.9989271759986877, + 0.9989117383956909, + 0.9988928437232971 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989169836044312, + 0.9981436729431152, + 0.9989088773727417 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 10 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -29369,7 +60623,7 @@ "15:30", "17:20", "GREEN C014 - Green Hall (1156 Chapel) C014", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ], "Wednesday": [ @@ -29377,7 +60631,7 @@ "15:30", "17:20", "GREEN C014 - Green Hall (1156 Chapel) C014", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ] }, @@ -29389,10 +60643,115 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89537\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89537/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988449811935425, + 0.9988312125205994, + 0.998676598072052, + 0.9988381266593933, + 0.9988330006599426 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.999422550201416, + 0.9988759160041809, + 0.9989344477653503, + 0.9986497759819031, + 0.9978342652320862, + 0.998748779296875 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 5 + }, + "sentiment_distribution": { + "NEGATIVE": 0.16666666666666666, + "POSITIVE": 0.8333333333333334 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985962510108948, + 0.998932421207428, + 0.9989233613014221, + 0.9985365867614746, + 0.9989256262779236, + 0.9912177920341492, + 0.9987300038337708, + 0.9989160299301147 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 0.9473684210526315, + "final_counts": { + "POSITIVE": 18, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9473684210526315, + "NEGATIVE": 0.05263157894736842 + } + } }, { "season_code": "202303", @@ -29433,7 +60792,7 @@ "13:30", "17:20", "EDG36 204 - 36 Edgewood Ave. Sculpture Bld 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560028" + "https://map.yale.edu/?id=1910#!m/560028" ] ] }, @@ -29447,10 +60806,81 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89538\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89538/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985989928245544 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9974945783615112 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982890486717224 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 3, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 3 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -29487,7 +60917,7 @@ "19:00", "20:50", "GREEN B03 - Green Hall (1156 Chapel) B03", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ] }, @@ -29501,10 +60931,85 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89539\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89539/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986433386802673 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9834075570106506, + 0.9989319443702698 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 1 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9911143779754639 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 3, + "final_proportion": 0.75, + "final_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + } + } }, { "season_code": "202303", @@ -29541,7 +61046,7 @@ "13:30", "15:20", "GREEN G32 - Green Hall (1156 Chapel) G32", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ], "Friday": [ @@ -29549,7 +61054,7 @@ "13:30", "15:20", "GREEN G32 - Green Hall (1156 Chapel) G32", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ] }, @@ -29561,10 +61066,87 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89540\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89540/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989054203033447, + 0.9988573789596558 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988160133361816, + 0.9988870024681091 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989284873008728, + 0.9989111423492432 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 6 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -29602,7 +61184,7 @@ "8:25", "12:20", "CCAM 102 - Center for Collab Arts & Media 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/560098" + "https://map.yale.edu/?id=1910#!m/560098" ] ] }, @@ -29616,10 +61198,81 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88215\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88215/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9944254159927368 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.998830258846283 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9968685507774353 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 3, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 3 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -29656,7 +61309,7 @@ "13:30", "17:20", "GREEN 210 - Green Hall (1156 Chapel) 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ] }, @@ -29668,10 +61321,85 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89743\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89743/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989179372787476, + 0.9989161491394043 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989224672317505 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987515211105347, + 0.9989213943481445 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 5, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 5 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -29708,13 +61436,90 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Faculty: TBA. To apply for this course, please do not send an email to inquire, but instead apply for instructor permission on courses.yale.edu when registration opens for your class year. Please put in the notes whether you are an Art\/CPAR major, and a short note on why you would like to take this course. Please do not email the instructor listed. Space is limited, and priority is given to majors, intended majors and then other Yale College students.", + "classnotes": "Faculty: TBA. To apply for this course, please do not send an email to inquire, but instead apply for instructor permission on courses.yale.edu when registration opens for your class year. Please put in the notes whether you are an Art/CPAR major, and a short note on why you would like to take this course. Please do not email the instructor listed. Space is limited, and priority is given to majors, intended majors and then other Yale College students.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89541\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89541/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988596439361572, + 0.9955073595046997 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989244341850281, + 0.9955073595046997 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9951686859130859, + 0.9986814856529236 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 6 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -29754,7 +61559,7 @@ "19:00", "20:50", "GREEN B03 - Green Hall (1156 Chapel) B03", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ] }, @@ -29766,10 +61571,89 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89542\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89542/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983129501342773, + 0.9966834187507629 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988158941268921, + 0.9933021068572998, + 0.9913682341575623 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986380934715271 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 5, + "final_proportion": 0.8333333333333334, + "final_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + } + } }, { "season_code": "202303", @@ -29812,15 +61696,43 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89543\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89543/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "Pit crits are the core of the program in painting\/printmaking. The beginning of each weekly session is an all-community meeting with students, the DGS, graduate coordinator, and those faculty members attending the crit. Two-hour critiques follow in the Pit; the fall term is devoted to developing the work of second-year students and the spring term to first-year students. A core group of faculty members as well as a rotation of visiting critics are present to encourage but not dominate the conversation: the most lively and productive critiques happen when students engage fully with each other. Be prepared to listen and contribute. Note: Pit crits are for current Yale students, staff, and invited faculty and guests only; no outside guests or audio\/video recording are permitted.", + "description": "Pit crits are the core of the program in painting/printmaking. The beginning of each weekly session is an all-community meeting with students, the DGS, graduate coordinator, and those faculty members attending the crit. Two-hour critiques follow in the Pit; the fall term is devoted to developing the work of second-year students and the spring term to first-year students. A core group of faculty members as well as a rotation of visiting critics are present to encourage but not dominate the conversation: the most lively and productive critiques happen when students engage fully with each other. Be prepared to listen and contribute. Note: Pit crits are for current Yale students, staff, and invited faculty and guests only; no outside guests or audio/video recording are permitted.", "short_title": "Pit Crit", "title": "Pit Crit", "school": "AT", @@ -29864,18 +61776,46 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Enrollment limited to MFA Painting\/Printmaking 2nd-year students only.", + "classnotes": "Enrollment limited to MFA Painting/Printmaking 2nd-year students only.", "final_exam": "", "course_home_url": "", "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "The course supports the 2024 Thesis exhibition through development of programmatic and publication-based elements that extend the show to audiences beyond Yale, as well as attending to the logistics of the gallery presentation. Studio visits initiate conversations about the installation of physical work in addition to considering the documentation\/recording possibilities that allow the work to interface with dynamic platforms online and in print. The course introduces technology and media resources at CCAM and the Institute for the Preservation of Cultural Heritage at West Campus in addition to biweekly studio visits and group planning meetings. Editorial support is provided in order to enfold students\u2019 writings and research with documents of time-based or site-specific work in an innovative and collectively designed publication. Enrollment limited to second-year students in painting\/printmaking.", + "description": "The course supports the 2024 Thesis exhibition through development of programmatic and publication-based elements that extend the show to audiences beyond Yale, as well as attending to the logistics of the gallery presentation. Studio visits initiate conversations about the installation of physical work in addition to considering the documentation/recording possibilities that allow the work to interface with dynamic platforms online and in print. The course introduces technology and media resources at CCAM and the Institute for the Preservation of Cultural Heritage at West Campus in addition to biweekly studio visits and group planning meetings. Editorial support is provided in order to enfold students\u2019 writings and research with documents of time-based or site-specific work in an innovative and collectively designed publication. Enrollment limited to second-year students in painting/printmaking.", "short_title": "Thesis 2024", "title": "Thesis 2024", "school": "AT", @@ -29910,7 +61850,7 @@ "16:00", "19:00", "GREEN C220 - Green Hall (1156 Chapel) C220", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ] }, @@ -29919,13 +61859,41 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Meets 6x for 1.5 credits: Meets 6x for 1.5 credits: dates 9\/7, 9\/28, 10\/12, 10\/26, 11\/9, 11\/30 (+ Sat 10\/7 meeting in NYC: optional, but highly encouraged). Enrollment limited to MFA Painting\/Printmaking 2nd-year students only.", + "classnotes": "Meets 6x for 1.5 credits: Meets 6x for 1.5 credits: dates 9/7, 9/28, 10/12, 10/26, 11/9, 11/30 (+ Sat 10/7 meeting in NYC: optional, but highly encouraged). Enrollment limited to MFA Painting/Printmaking 2nd-year students only.", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90780\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90780/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -29992,18 +61960,46 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Enrollment limited to MFA Painting\/Printmaking students only.", + "classnotes": "Enrollment limited to MFA Painting/Printmaking students only.", "final_exam": "", "course_home_url": "", "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "A course required of all incoming M.F.A. students in the painting\/printmaking department to unpack, denaturalize, and slow down our making and speaking practices as a community. The course hopes to bridge the intensities characteristic of our program: the intensity of the private studio with the intensity of the semi-public critique. We ask crucial questions about the relationships between form and content, between intents and effects, between authorship, authority, and authenticity, between medium specificity and interdisciplinarity, and between risk and failure. How can our ideas and language be tested against the theories of the past and present? Existential, spiritual, and market-based goals (both internal and instrumental motivations) for art making are explored. Meetings alternate between group critique and reading discussion, supplemented by a series of short writing exercises. Enrollment is limited to incoming students in the department, but readings and concepts are shared widely.", + "description": "A course required of all incoming M.F.A. students in the painting/printmaking department to unpack, denaturalize, and slow down our making and speaking practices as a community. The course hopes to bridge the intensities characteristic of our program: the intensity of the private studio with the intensity of the semi-public critique. We ask crucial questions about the relationships between form and content, between intents and effects, between authorship, authority, and authenticity, between medium specificity and interdisciplinarity, and between risk and failure. How can our ideas and language be tested against the theories of the past and present? Existential, spiritual, and market-based goals (both internal and instrumental motivations) for art making are explored. Meetings alternate between group critique and reading discussion, supplemented by a series of short writing exercises. Enrollment is limited to incoming students in the department, but readings and concepts are shared widely.", "short_title": "Round Trip: First-Year Crits", "title": "Round Trip: First-Year Crits", "school": "AT", @@ -30038,7 +62034,7 @@ "15:30", "18:30", "GREEN C220 - Green Hall (1156 Chapel) C220", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ] }, @@ -30047,13 +62043,41 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Enrollment limited to MFA Painting\/Printmaking 1st-year students only.", + "classnotes": "Enrollment limited to MFA Painting/Printmaking 1st-year students only.", "final_exam": "", "course_home_url": "", "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -30093,7 +62117,7 @@ "10:00", "13:00", "GREEN C014 - Green Hall (1156 Chapel) C014", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ] }, @@ -30105,10 +62129,38 @@ "classnotes": "Permission of instructor required; interested students should submit to the Instructor Permission Request Form in Yale Hub by Monday, August 14 for prime consideration.", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90794\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/90794/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -30145,7 +62197,7 @@ "14:00", "17:00", "GREEN C220 - Green Hall (1156 Chapel) C220", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ] }, @@ -30160,7 +62212,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -30197,7 +62277,7 @@ "15:00", "18:00", "GREEN C220 - Green Hall (1156 Chapel) C220", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ] }, @@ -30212,7 +62292,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -30249,7 +62357,7 @@ "12:00", "15:30", "EDG36 204 - 36 Edgewood Ave. Sculpture Bld 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560028" + "https://map.yale.edu/?id=1910#!m/560028" ] ] }, @@ -30264,7 +62372,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -30301,7 +62437,7 @@ "10:00", "13:00", "EDG36 204 - 36 Edgewood Ave. Sculpture Bld 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560028" + "https://map.yale.edu/?id=1910#!m/560028" ] ] }, @@ -30310,13 +62446,41 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Begins 9\/8, subsequent meeting dates TBA. Enrollment limited to MFA Sculpture 2nd-year students only.", + "classnotes": "Begins 9/8, subsequent meeting dates TBA. Enrollment limited to MFA Sculpture 2nd-year students only.", "final_exam": "", "course_home_url": "", "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -30371,7 +62535,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -30411,7 +62603,7 @@ "18:00", "21:00", "EDG36 204 - 36 Edgewood Ave. Sculpture Bld 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560028" + "https://map.yale.edu/?id=1910#!m/560028" ] ] }, @@ -30426,7 +62618,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -30481,12 +62701,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "This course is a platform for collective experiential learning, and thus participatory in nature. We focus on exploring movements and objects, and we relate those with artists\u2019 practice. Activities include but are not limited to movement exercises, workshops, field trips, guest talks, and occasional prompts. Themes this term include routines, guided walks, object handling, and more. Students organize and participate in group activities. You lead one group activity that reflects your practice. What is at the core of your work\/ing? How do you introduce your practice, opposed to your production? Compose a twenty-minute activity for the class that pulls us into what you do. You can invite us to your studio or arrange a meeting site at a nearby location. Each student meets with the instructor to compose this activity prior to the workshop.", + "description": "This course is a platform for collective experiential learning, and thus participatory in nature. We focus on exploring movements and objects, and we relate those with artists\u2019 practice. Activities include but are not limited to movement exercises, workshops, field trips, guest talks, and occasional prompts. Themes this term include routines, guided walks, object handling, and more. Students organize and participate in group activities. You lead one group activity that reflects your practice. What is at the core of your work/ing? How do you introduce your practice, opposed to your production? Compose a twenty-minute activity for the class that pulls us into what you do. You can invite us to your studio or arrange a meeting site at a nearby location. Each student meets with the instructor to compose this activity prior to the workshop.", "short_title": "Doing", "title": "Doing", "school": "AT", @@ -30518,7 +62766,7 @@ "10:00", "13:00", "EDG36 204 - 36 Edgewood Ave. Sculpture Bld 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560028" + "https://map.yale.edu/?id=1910#!m/560028" ] ] }, @@ -30530,10 +62778,38 @@ "classnotes": "Permission of instructor required; interested students should submit to the Instructor Permission Request Form in Yale Hub by Monday, August 14 for prime consideration.", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90829\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/90829/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -30573,7 +62849,7 @@ "13:30", "17:30", "GREEN 107 - Green Hall (1156 Chapel) 107", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ] }, @@ -30588,7 +62864,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -30625,7 +62929,7 @@ "13:30", "17:30", "GREEN 107 - Green Hall (1156 Chapel) 107", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ] }, @@ -30637,10 +62941,38 @@ "classnotes": "Enrollment limited to MFA Graphic Design Preliminary-year students only.", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90839\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/90839/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -30677,7 +63009,7 @@ "13:30", "16:30", "GREEN 210 - Green Hall (1156 Chapel) 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ] }, @@ -30692,7 +63024,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -30732,7 +63092,7 @@ "13:30", "17:30", "GREEN 107 - Green Hall (1156 Chapel) 107", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ] }, @@ -30747,7 +63107,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -30790,7 +63178,7 @@ "13:30", "17:30", "GREEN 107 - Green Hall (1156 Chapel) 107", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ] }, @@ -30805,7 +63193,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -30854,7 +63270,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -30891,7 +63335,7 @@ "10:00", "13:00", "GREEN 109 - Green Hall (1156 Chapel) 109", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ] }, @@ -30906,7 +63350,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -30943,7 +63415,7 @@ "14:00", "17:00", "GREEN B03 - Green Hall (1156 Chapel) B03", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ] }, @@ -30952,13 +63424,41 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Permission of instructor required; interested students should submit to the Instructor Permission Request Form in Yale Hub by Monday, August 14 for prime consideration. Please answer the following in your request: Please briefly describe why you want to take this class. What is driving your interest? What do you hope to learn \u2014 formally, conceptually, and\/or technically? What kind of video work are you ultimately hoping to make? In addition, please list a film or video work that you love and briefly discuss why you chose it. This can be anything from a short YouTube video to an epic cinema work to a video art installation. If possible, include a link to the work.", + "classnotes": "Permission of instructor required; interested students should submit to the Instructor Permission Request Form in Yale Hub by Monday, August 14 for prime consideration. Please answer the following in your request: Please briefly describe why you want to take this class. What is driving your interest? What do you hope to learn \u2014 formally, conceptually, and/or technically? What kind of video work are you ultimately hoping to make? In addition, please list a film or video work that you love and briefly discuss why you chose it. This can be anything from a short YouTube video to an epic cinema work to a video art installation. If possible, include a link to the work.", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90866\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90866/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -30995,7 +63495,7 @@ "15:00", "18:00", "GREEN 109 - Green Hall (1156 Chapel) 109", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ] }, @@ -31004,13 +63504,41 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "First class is on 9\/6. Permission of instructor required; interested students should submit to the Instructor Permission Request Form in Yale Hub by Monday, August 14 for prime consideration.", + "classnotes": "First class is on 9/6. Permission of instructor required; interested students should submit to the Instructor Permission Request Form in Yale Hub by Monday, August 14 for prime consideration.", "final_exam": "", "course_home_url": "", "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -31047,7 +63575,7 @@ "10:00", "13:00", "GREEN 109 - Green Hall (1156 Chapel) 109", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ] }, @@ -31056,13 +63584,41 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Meets 6x for 1.5 credits: dates 9\/14, 9\/28, 10\/12, 10\/26, 11\/9, 11\/30. Permission of instructor required; interested students should submit to the Instructor Permission Request Form in Yale Hub by Monday, August 14 for prime consideration.", + "classnotes": "Meets 6x for 1.5 credits: dates 9/14, 9/28, 10/12, 10/26, 11/9, 11/30. Permission of instructor required; interested students should submit to the Instructor Permission Request Form in Yale Hub by Monday, August 14 for prime consideration.", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90874\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90874/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -31099,7 +63655,7 @@ "14:00", "17:00", "GREEN 109 - Green Hall (1156 Chapel) 109", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ] }, @@ -31108,18 +63664,46 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "First class is on 9\/8. Permission of instructor required; interested students should submit to the Instructor Permission Request Form in Yale Hub by Monday, August 14 for prime consideration.", + "classnotes": "First class is on 9/8. Permission of instructor required; interested students should submit to the Instructor Permission Request Form in Yale Hub by Monday, August 14 for prime consideration.", "final_exam": "", "course_home_url": "", "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "A broad survey of narrative, documentary, and experimental film (and television) exploring influence and overlap within traditional visual art genres: sculpture, painting, performance, installation, etc. Screenings and discussions examining a variety of moving image histories, practices, and critical issues. The class also reserves time for screening student works in progress, with special consideration given to the presentation of installations and\/or site-specific work.", + "description": "A broad survey of narrative, documentary, and experimental film (and television) exploring influence and overlap within traditional visual art genres: sculpture, painting, performance, installation, etc. Screenings and discussions examining a variety of moving image histories, practices, and critical issues. The class also reserves time for screening student works in progress, with special consideration given to the presentation of installations and/or site-specific work.", "short_title": "Between Frames", "title": "Between Frames", "school": "AT", @@ -31151,7 +63735,7 @@ "14:00", "17:00", "GREEN G10 - Green Hall (1156 Chapel) G10", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ] }, @@ -31166,7 +63750,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -31203,7 +63815,7 @@ "13:30", "16:30", "GREEN G10 - Green Hall (1156 Chapel) G10", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ] }, @@ -31218,7 +63830,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -31273,7 +63913,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -31310,7 +63978,7 @@ "15:00", "17:30", "GREEN G10 - Green Hall (1156 Chapel) G10", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ] }, @@ -31325,7 +63993,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -31374,7 +64070,7 @@ "15:00", "19:00", "GREEN G10 - Green Hall (1156 Chapel) G10", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ] }, @@ -31389,7 +64085,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -31426,7 +64150,7 @@ "14:00", "17:00", "GREEN G10 - Green Hall (1156 Chapel) G10", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ] }, @@ -31435,13 +64159,41 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "First class is on 9\/8. Permission of instructor required; interested students should submit to the Instructor Permission Request Form in Yale Hub by Monday, August 14 for prime consideration.", + "classnotes": "First class is on 9/8. Permission of instructor required; interested students should submit to the Instructor Permission Request Form in Yale Hub by Monday, August 14 for prime consideration.", "final_exam": "", "course_home_url": "", "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -31478,7 +64230,7 @@ "10:00", "13:00", "EDG36 204 - 36 Edgewood Ave. Sculpture Bld 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560028" + "https://map.yale.edu/?id=1910#!m/560028" ] ] }, @@ -31493,7 +64245,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -31530,7 +64310,7 @@ "10:00", "13:00", "GREEN C220 - Green Hall (1156 Chapel) C220", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ] }, @@ -31539,13 +64319,41 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "SECTION 2 - ART 949 Critical & Professional Practices: Weak Theory, Strong Reading - \n\nThis course will examine the relationship between theory and art, with emphasis on using different theoretical frameworks (such as critical theory, psychoanalysis, critical race theory, semiotics, color theory, and feminist theories) as ways of seeing and analyzing the world and aesthetic objects. By most accounts, theory, as an interdisciplinary method of analysis, is defined as a speculative or hypothetical or plausible set of acceptable principles or body of principles that try to explain specific phenomena. We will begin with the normative and foundational understandings of \u201ctheory\u201d, with the aim of examining the various ways in which theory has been used in relation to art (both by artists and viewers), and vice versa. Consideration will be given to theories around representation, narrative\/narratology, colour, process, history, and analysis\/semiotics. Readings will consist of texts written by various authors including cultural critics, curators, artists, and literary writers. Enrollment limited to MFA Yale School of Art 1st-year students only.", + "classnotes": "SECTION 2 - ART 949 Critical & Professional Practices: Weak Theory, Strong Reading - \n\nThis course will examine the relationship between theory and art, with emphasis on using different theoretical frameworks (such as critical theory, psychoanalysis, critical race theory, semiotics, color theory, and feminist theories) as ways of seeing and analyzing the world and aesthetic objects. By most accounts, theory, as an interdisciplinary method of analysis, is defined as a speculative or hypothetical or plausible set of acceptable principles or body of principles that try to explain specific phenomena. We will begin with the normative and foundational understandings of \u201ctheory\u201d, with the aim of examining the various ways in which theory has been used in relation to art (both by artists and viewers), and vice versa. Consideration will be given to theories around representation, narrative/narratology, colour, process, history, and analysis/semiotics. Readings will consist of texts written by various authors including cultural critics, curators, artists, and literary writers. Enrollment limited to MFA Yale School of Art 1st-year students only.", "final_exam": "", "course_home_url": "", "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -31582,7 +64390,7 @@ "10:00", "13:00", "EDG36 023 - 36 Edgewood Ave. Sculpture Bld 023", - "https:\/\/map.yale.edu\/?id=1910#!m\/560028" + "https://map.yale.edu/?id=1910#!m/560028" ] ] }, @@ -31594,10 +64402,38 @@ "classnotes": "SECTION 3 - ART 949 Critical & Professional Practices: Queer Strategies - \n\nThis section will investigate the development of queer materialities, addressing subjectivity, allyship, identification and aesthetics as central to, and generative of, cultural forms and relations. We will address how the formation of gay liberation movements established fluidity, inclusivity and resistance as productive models for artistic production now. Exploring the outset of the last century's Gay liberation movement in the United States and the development of queer activist and artistic collectives, we will read contemporary writings from luminaries such as Billy-Ray Belcourt, Michel Foucault, Essex Hemphill, Zoe Leonard, Candice Lin, Jos\u00e9 Esteban Mu\u00f1oz, Eileen Myles, Tavia Nyong'o, Paul Preciado, Adrianne Rich, Monique Wittig and David Wojnarowicz, and hear from several special guests whose works directly connect to lived practices of queer survival and joy. Enrollment limited to MFA Yale School of Art 1st-year students only.", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90911\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/90911/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -31634,7 +64470,7 @@ "10:00", "13:00", "GREEN G10 - Green Hall (1156 Chapel) G10", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ] }, @@ -31646,10 +64482,38 @@ "classnotes": "SECTION 4 - ART 949 Critical & Professional Practices: Public Art, Aesthetics, and Communal Power - \n\nThis section will consider the risks artists take when they commit to an art practice that is outside the museum or gallery. Doing it in public is intriguing but not easy. Public artists must negotiate both multiple, unpredictable publics, their own privacy, and the socio-political \u2018publicness\u2019 of their work. Community-engaged artmaking provokes, mobilizes and forever alters the spaces and audiences it encounters. Rooted in site specificity, public artists often create acts of citizenry that lend aesthetic form to the political while bringing counter-publics into dialogue with dominant ones. This course interrogates many topics from the role of relational aesthetics and identity in the public sphere to the ways in which the making and unmaking of monuments reveal democracy\u2019s fragility. The city of New Haven will also be a textbook as we explore its public art, artists and the rich colonial and industrial history that has shaped it. Authors and artists will include Jacques Derrida, Erika Doss, W.J.T. Mitchell, Miwon Kwon, Paul Gilroy, Andrea Fraser, J\u00fcrgen Habermas, Claudia Rankine, Gregory Sholette, Diego Rivera, Krysztof Wodiczko, Maya Lin, Hank Willis Thomas, William Walker, Anish Kapoor, Banksy, Jenny Holzer, Simone Leigh, Richard Serra, Vito Acconci, Rael San Fratello, Judy Baca, and Ai Weiwei. Enrollment limited to MFA Yale School of Art 1st-year students only.", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90916\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/90916/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -31686,7 +64550,7 @@ "9:25", "10:15", "DOW 100 - Dow Hall 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ], "Tuesday": [ @@ -31694,7 +64558,7 @@ "9:25", "10:15", "DOW 100 - Dow Hall 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ], "Wednesday": [ @@ -31702,7 +64566,7 @@ "9:25", "10:15", "DOW 100 - Dow Hall 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ], "Thursday": [ @@ -31710,7 +64574,7 @@ "9:25", "10:15", "DOW 100 - Dow Hall 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ] }, @@ -31724,10 +64588,93 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88220\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88220/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988396763801575, + 0.998722493648529 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988700747489929, + 0.9966268539428711, + 0.9975814819335938 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988847374916077, + 0.997117280960083, + 0.997117280960083 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 0.875, + "final_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + } + } }, { "season_code": "202303", @@ -31764,7 +64711,7 @@ "9:25", "10:15", "DOW B-21 - Dow Hall B-21", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ], "Tuesday": [ @@ -31772,7 +64719,7 @@ "9:25", "10:15", "DOW B-21 - Dow Hall B-21", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ], "Wednesday": [ @@ -31780,7 +64727,7 @@ "9:25", "10:15", "DOW B-21 - Dow Hall B-21", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ], "Thursday": [ @@ -31788,7 +64735,7 @@ "9:25", "10:15", "DOW B-21 - Dow Hall B-21", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ], "Friday": [ @@ -31796,7 +64743,7 @@ "9:25", "10:15", "DOW B-21 - Dow Hall B-21", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ] }, @@ -31810,10 +64757,101 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88225\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88225/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988068342208862, + 0.9988073110580444, + 0.9988805651664734 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9976139068603516, + 0.9986955523490906, + 0.9987358450889587, + 0.9964706897735596, + 0.9971765279769897 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988471269607544, + 0.99891197681427, + 0.9985363483428955, + 0.9989309906959534 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 0.9166666666666666, + "final_counts": { + "POSITIVE": 11, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + } + } }, { "season_code": "202303", @@ -31850,7 +64888,7 @@ "9:25", "10:15", "YK212 004 - 212 York Street 004", - "https:\/\/map.yale.edu\/?id=1910#!m\/559604" + "https://map.yale.edu/?id=1910#!m/559604" ] ], "Tuesday": [ @@ -31858,7 +64896,7 @@ "9:25", "10:15", "YK212 004 - 212 York Street 004", - "https:\/\/map.yale.edu\/?id=1910#!m\/559604" + "https://map.yale.edu/?id=1910#!m/559604" ] ], "Wednesday": [ @@ -31866,7 +64904,7 @@ "9:25", "10:15", "YK212 004 - 212 York Street 004", - "https:\/\/map.yale.edu\/?id=1910#!m\/559604" + "https://map.yale.edu/?id=1910#!m/559604" ] ], "Thursday": [ @@ -31874,7 +64912,7 @@ "9:25", "10:15", "YK212 004 - 212 York Street 004", - "https:\/\/map.yale.edu\/?id=1910#!m\/559604" + "https://map.yale.edu/?id=1910#!m/559604" ] ], "Friday": [ @@ -31882,7 +64920,7 @@ "9:25", "10:15", "YK212 004 - 212 York Street 004", - "https:\/\/map.yale.edu\/?id=1910#!m\/559604" + "https://map.yale.edu/?id=1910#!m/559604" ] ] }, @@ -31896,10 +64934,125 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88232\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88232/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988351464271545, + 0.9988237023353577, + 0.9988044500350952, + 0.998719334602356, + 0.9916093945503235, + 0.9988061189651489, + 0.9988742470741272, + 0.998212456703186, + 0.9988473653793335 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985774755477905, + 0.998891294002533, + 0.9894843697547913, + 0.9987044334411621, + 0.9984850287437439, + 0.9989022016525269, + 0.9989185333251953, + 0.9834807515144348 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985690116882324, + 0.9988879561424255, + 0.9989030361175537, + 0.9989161491394043, + 0.9989245533943176, + 0.9988775849342346, + 0.9988828301429749, + 0.9984500408172607 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 25, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 25 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -31936,7 +65089,7 @@ "10:30", "11:20", "DOW 100 - Dow Hall 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ], "Tuesday": [ @@ -31944,7 +65097,7 @@ "10:30", "11:20", "DOW 100 - Dow Hall 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ], "Wednesday": [ @@ -31952,7 +65105,7 @@ "10:30", "11:20", "DOW 100 - Dow Hall 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ], "Thursday": [ @@ -31960,7 +65113,7 @@ "10:30", "11:20", "DOW 100 - Dow Hall 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ] }, @@ -31974,10 +65127,115 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88236\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88236/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987844824790955, + 0.9988325238227844, + 0.9988319277763367, + 0.9988430738449097, + 0.9967384934425354, + 0.9987930059432983 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988718628883362, + 0.9988634586334229, + 0.998831570148468, + 0.9989145994186401, + 0.99950110912323, + 0.998099148273468 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988831877708435, + 0.9983287453651428, + 0.9989232420921326, + 0.9989126920700073, + 0.9988976716995239, + 0.9995143413543701, + 0.9988858103752136 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 0.8421052631578947, + "final_counts": { + "POSITIVE": 16, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.8421052631578947, + "NEGATIVE": 0.15789473684210525 + } + } }, { "season_code": "202303", @@ -32014,7 +65272,7 @@ "10:30", "11:20", "DOW B-21 - Dow Hall B-21", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ], "Tuesday": [ @@ -32022,7 +65280,7 @@ "10:30", "11:20", "DOW B-21 - Dow Hall B-21", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ], "Wednesday": [ @@ -32030,7 +65288,7 @@ "10:30", "11:20", "DOW B-21 - Dow Hall B-21", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ], "Thursday": [ @@ -32038,7 +65296,7 @@ "10:30", "11:20", "DOW B-21 - Dow Hall B-21", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ], "Friday": [ @@ -32046,7 +65304,7 @@ "10:30", "11:20", "DOW B-21 - Dow Hall B-21", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ] }, @@ -32060,10 +65318,115 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88241\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88241/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9963182210922241, + 0.998744010925293, + 0.9979598522186279, + 0.9988848567008972, + 0.9989268183708191, + 0.9985306262969971, + 0.9987238049507141 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.999489426612854, + 0.998902440071106, + 0.9995046854019165, + 0.9988415837287903, + 0.9985306262969971 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.4, + "POSITIVE": 0.6 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988717436790466, + 0.9988824725151062, + 0.9994660019874573, + 0.9989234805107117, + 0.998778760433197, + 0.9985306262969971, + 0.9988407492637634 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 0.8421052631578947, + "final_counts": { + "POSITIVE": 16, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.8421052631578947, + "NEGATIVE": 0.15789473684210525 + } + } }, { "season_code": "202303", @@ -32100,7 +65463,7 @@ "10:30", "11:20", "YK212 004 - 212 York Street 004", - "https:\/\/map.yale.edu\/?id=1910#!m\/559604" + "https://map.yale.edu/?id=1910#!m/559604" ] ], "Tuesday": [ @@ -32108,7 +65471,7 @@ "10:30", "11:20", "YK212 004 - 212 York Street 004", - "https:\/\/map.yale.edu\/?id=1910#!m\/559604" + "https://map.yale.edu/?id=1910#!m/559604" ] ], "Wednesday": [ @@ -32116,7 +65479,7 @@ "10:30", "11:20", "YK212 004 - 212 York Street 004", - "https:\/\/map.yale.edu\/?id=1910#!m\/559604" + "https://map.yale.edu/?id=1910#!m/559604" ] ], "Thursday": [ @@ -32124,7 +65487,7 @@ "10:30", "11:20", "YK212 004 - 212 York Street 004", - "https:\/\/map.yale.edu\/?id=1910#!m\/559604" + "https://map.yale.edu/?id=1910#!m/559604" ] ], "Friday": [ @@ -32132,7 +65495,7 @@ "10:30", "11:20", "YK212 004 - 212 York Street 004", - "https:\/\/map.yale.edu\/?id=1910#!m\/559604" + "https://map.yale.edu/?id=1910#!m/559604" ] ] }, @@ -32146,10 +65509,109 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88246\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88246/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989105463027954, + 0.9986878037452698, + 0.965937077999115, + 0.9985937476158142, + 0.9988356232643127 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998902440071106, + 0.9988901019096375, + 0.9986611604690552, + 0.9988484382629395, + 0.9994636178016663, + 0.9980677962303162 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988808035850525, + 0.9988970756530762, + 0.9981922507286072, + 0.9985606074333191, + 0.9989280104637146 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 0.9375, + "final_counts": { + "POSITIVE": 15, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9375, + "NEGATIVE": 0.0625 + } + } }, { "season_code": "202303", @@ -32186,7 +65648,7 @@ "11:35", "12:25", "YK212 004 - 212 York Street 004", - "https:\/\/map.yale.edu\/?id=1910#!m\/559604" + "https://map.yale.edu/?id=1910#!m/559604" ] ], "Tuesday": [ @@ -32194,7 +65656,7 @@ "11:35", "12:25", "YK212 004 - 212 York Street 004", - "https:\/\/map.yale.edu\/?id=1910#!m\/559604" + "https://map.yale.edu/?id=1910#!m/559604" ] ], "Wednesday": [ @@ -32202,7 +65664,7 @@ "11:35", "12:25", "YK212 004 - 212 York Street 004", - "https:\/\/map.yale.edu\/?id=1910#!m\/559604" + "https://map.yale.edu/?id=1910#!m/559604" ] ], "Thursday": [ @@ -32210,7 +65672,7 @@ "11:35", "12:25", "YK212 004 - 212 York Street 004", - "https:\/\/map.yale.edu\/?id=1910#!m\/559604" + "https://map.yale.edu/?id=1910#!m/559604" ] ], "Friday": [ @@ -32218,7 +65680,7 @@ "11:35", "12:25", "YK212 004 - 212 York Street 004", - "https:\/\/map.yale.edu\/?id=1910#!m\/559604" + "https://map.yale.edu/?id=1910#!m/559604" ] ] }, @@ -32232,10 +65694,101 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88251\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88251/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981106519699097, + 0.9988685846328735, + 0.9988886713981628, + 0.9987401366233826 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9976582527160645, + 0.9995049238204956, + 0.9989245533943176, + 0.9988282322883606 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982553124427795, + 0.9990498423576355, + 0.9989320635795593, + 0.9988999366760254 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 0.8333333333333334, + "final_counts": { + "POSITIVE": 10, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + } + } }, { "season_code": "202303", @@ -32272,7 +65825,7 @@ "11:35", "12:25", "DOW B-21 - Dow Hall B-21", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ], "Tuesday": [ @@ -32280,7 +65833,7 @@ "11:35", "12:25", "DOW B-21 - Dow Hall B-21", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ], "Wednesday": [ @@ -32288,7 +65841,7 @@ "11:35", "12:25", "DOW B-21 - Dow Hall B-21", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ], "Thursday": [ @@ -32296,7 +65849,7 @@ "11:35", "12:25", "DOW B-21 - Dow Hall B-21", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ], "Friday": [ @@ -32304,7 +65857,7 @@ "11:35", "12:25", "DOW B-21 - Dow Hall B-21", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ] }, @@ -32318,10 +65871,97 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88255\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88255/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987793564796448, + 0.9987381100654602, + 0.998789370059967, + 0.998857855796814 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987199306488037, + 0.999496340751648, + 0.9987902045249939 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989303946495056, + 0.9988516569137573, + 0.9988961219787598 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 0.9, + "final_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + } + } }, { "season_code": "202303", @@ -32358,7 +65998,7 @@ "11:35", "12:25", "DOW 215 - Dow Hall 215", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ], "Tuesday": [ @@ -32366,7 +66006,7 @@ "11:35", "12:25", "DOW 215 - Dow Hall 215", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ], "Wednesday": [ @@ -32374,7 +66014,7 @@ "11:35", "12:25", "DOW 215 - Dow Hall 215", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ], "Thursday": [ @@ -32382,7 +66022,7 @@ "11:35", "12:25", "DOW 215 - Dow Hall 215", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ], "Friday": [ @@ -32390,7 +66030,7 @@ "11:35", "12:25", "DOW 215 - Dow Hall 215", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ] }, @@ -32404,10 +66044,115 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88258\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88258/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986276626586914, + 0.9964321851730347, + 0.998765230178833, + 0.998883068561554, + 0.9984593391418457, + 0.9988459348678589, + 0.9988382458686829 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9970989227294922, + 0.9989198446273804, + 0.9984604120254517, + 0.998879611492157, + 0.9989243149757385 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.8284134864807129, + 0.9989284873008728, + 0.9989315867424011, + 0.998832643032074, + 0.9989064931869507, + 0.9989025592803955, + 0.9989209175109863 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 6 + }, + "sentiment_distribution": { + "NEGATIVE": 0.14285714285714285, + "POSITIVE": 0.8571428571428571 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 0.8947368421052632, + "final_counts": { + "POSITIVE": 17, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8947368421052632, + "NEGATIVE": 0.10526315789473684 + } + } }, { "season_code": "202303", @@ -32444,7 +66189,7 @@ "9:25", "10:15", "YK212 004A - 212 York Street 004A", - "https:\/\/map.yale.edu\/?id=1910#!m\/559604" + "https://map.yale.edu/?id=1910#!m/559604" ] ], "Tuesday": [ @@ -32452,7 +66197,7 @@ "9:25", "10:15", "YK212 004A - 212 York Street 004A", - "https:\/\/map.yale.edu\/?id=1910#!m\/559604" + "https://map.yale.edu/?id=1910#!m/559604" ] ], "Wednesday": [ @@ -32460,7 +66205,7 @@ "9:25", "10:15", "YK212 004A - 212 York Street 004A", - "https:\/\/map.yale.edu\/?id=1910#!m\/559604" + "https://map.yale.edu/?id=1910#!m/559604" ] ], "Thursday": [ @@ -32468,7 +66213,7 @@ "9:25", "10:15", "YK212 004A - 212 York Street 004A", - "https:\/\/map.yale.edu\/?id=1910#!m\/559604" + "https://map.yale.edu/?id=1910#!m/559604" ] ], "Friday": [ @@ -32476,7 +66221,7 @@ "9:25", "10:15", "YK212 004A - 212 York Street 004A", - "https:\/\/map.yale.edu\/?id=1910#!m\/559604" + "https://map.yale.edu/?id=1910#!m/559604" ] ] }, @@ -32490,10 +66235,101 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88263\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88263/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986531734466553, + 0.998809814453125, + 0.998866081237793, + 0.9987568855285645 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988308548927307, + 0.9987769722938538, + 0.9988806843757629, + 0.9989321827888489 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987244009971619, + 0.9983124732971191, + 0.998860239982605, + 0.9989250302314758, + 0.9988118410110474 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 13 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -32530,7 +66366,7 @@ "9:25", "10:15", "YK220 001 - 220 York Street 001", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ], "Tuesday": [ @@ -32538,7 +66374,7 @@ "9:25", "10:15", "YK220 001 - 220 York Street 001", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ], "Wednesday": [ @@ -32546,7 +66382,7 @@ "9:25", "10:15", "YK220 001 - 220 York Street 001", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ], "Thursday": [ @@ -32554,7 +66390,7 @@ "9:25", "10:15", "YK220 001 - 220 York Street 001", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ], "Friday": [ @@ -32562,7 +66398,7 @@ "9:25", "10:15", "YK220 001 - 220 York Street 001", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ] }, @@ -32576,10 +66412,125 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88268\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88268/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983806610107422, + 0.9988458156585693, + 0.9989350438117981, + 0.9986420273780823, + 0.9988489151000977, + 0.9988430738449097, + 0.9988653659820557, + 0.9989398121833801 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988719820976257, + 0.9989122152328491, + 0.998664140701294, + 0.9989084005355835, + 0.9989111423492432, + 0.9988759160041809, + 0.9988855719566345, + 0.9988265633583069 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988628625869751, + 0.9989271759986877, + 0.9952379465103149, + 0.9989281296730042, + 0.9989398121833801, + 0.9988773465156555, + 0.9987710118293762, + 0.9986265897750854, + 0.998934805393219 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 25, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 25 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -32616,7 +66567,7 @@ "10:30", "11:20", "YK212 004A - 212 York Street 004A", - "https:\/\/map.yale.edu\/?id=1910#!m\/559604" + "https://map.yale.edu/?id=1910#!m/559604" ] ], "Tuesday": [ @@ -32624,7 +66575,7 @@ "10:30", "11:20", "YK212 004A - 212 York Street 004A", - "https:\/\/map.yale.edu\/?id=1910#!m\/559604" + "https://map.yale.edu/?id=1910#!m/559604" ] ], "Wednesday": [ @@ -32632,7 +66583,7 @@ "10:30", "11:20", "YK212 004A - 212 York Street 004A", - "https:\/\/map.yale.edu\/?id=1910#!m\/559604" + "https://map.yale.edu/?id=1910#!m/559604" ] ], "Thursday": [ @@ -32640,7 +66591,7 @@ "10:30", "11:20", "YK212 004A - 212 York Street 004A", - "https:\/\/map.yale.edu\/?id=1910#!m\/559604" + "https://map.yale.edu/?id=1910#!m/559604" ] ], "Friday": [ @@ -32648,7 +66599,7 @@ "10:30", "11:20", "YK212 004A - 212 York Street 004A", - "https:\/\/map.yale.edu\/?id=1910#!m\/559604" + "https://map.yale.edu/?id=1910#!m/559604" ] ] }, @@ -32662,10 +66613,125 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88273\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88273/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998918890953064, + 0.9988648891448975, + 0.9989044666290283, + 0.9987711310386658, + 0.99887615442276, + 0.9988038539886475, + 0.998806357383728 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 6 + }, + "sentiment_distribution": { + "NEGATIVE": 0.14285714285714285, + "POSITIVE": 0.8571428571428571 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987916350364685, + 0.9995007514953613, + 0.9989199638366699, + 0.9988254904747009, + 0.998819887638092, + 0.998907208442688, + 0.9988688826560974, + 0.9988092184066772 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988390803337097, + 0.9303908944129944, + 0.9988993406295776, + 0.9989131689071655, + 0.998889148235321, + 0.9982553124427795, + 0.9988555908203125, + 0.9989209175109863, + 0.9989281296730042 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 22, + "final_proportion": 0.9166666666666666, + "final_counts": { + "NEGATIVE": 2, + "POSITIVE": 22 + }, + "final_distribution": { + "NEGATIVE": 0.08333333333333333, + "POSITIVE": 0.9166666666666666 + } + } }, { "season_code": "202303", @@ -32702,7 +66768,7 @@ "10:30", "11:20", "YK220 001 - 220 York Street 001", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ], "Tuesday": [ @@ -32710,7 +66776,7 @@ "10:30", "11:20", "YK220 001 - 220 York Street 001", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ], "Wednesday": [ @@ -32718,7 +66784,7 @@ "10:30", "11:20", "YK220 001 - 220 York Street 001", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ], "Thursday": [ @@ -32726,7 +66792,7 @@ "10:30", "11:20", "YK220 001 - 220 York Street 001", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ], "Friday": [ @@ -32734,7 +66800,7 @@ "10:30", "11:20", "YK220 001 - 220 York Street 001", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ] }, @@ -32748,10 +66814,107 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88278\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88278/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989207983016968, + 0.9985355138778687, + 0.9987982511520386, + 0.9988823533058167, + 0.9984738230705261, + 0.9987442493438721 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988818764686584, + 0.9987419247627258, + 0.9988453388214111, + 0.9987082481384277, + 0.9989107847213745 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989022016525269, + 0.9988930821418762, + 0.9988442659378052, + 0.9985396862030029, + 0.9971101880073547 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 16 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -32788,7 +66951,7 @@ "11:35", "12:25", "YK212 004A - 212 York Street 004A", - "https:\/\/map.yale.edu\/?id=1910#!m\/559604" + "https://map.yale.edu/?id=1910#!m/559604" ] ], "Tuesday": [ @@ -32796,7 +66959,7 @@ "11:35", "12:25", "YK212 004A - 212 York Street 004A", - "https:\/\/map.yale.edu\/?id=1910#!m\/559604" + "https://map.yale.edu/?id=1910#!m/559604" ] ], "Wednesday": [ @@ -32804,7 +66967,7 @@ "11:35", "12:25", "YK212 004A - 212 York Street 004A", - "https:\/\/map.yale.edu\/?id=1910#!m\/559604" + "https://map.yale.edu/?id=1910#!m/559604" ] ], "Thursday": [ @@ -32812,7 +66975,7 @@ "11:35", "12:25", "YK212 004A - 212 York Street 004A", - "https:\/\/map.yale.edu\/?id=1910#!m\/559604" + "https://map.yale.edu/?id=1910#!m/559604" ] ], "Friday": [ @@ -32820,7 +66983,7 @@ "11:35", "12:25", "YK212 004A - 212 York Street 004A", - "https:\/\/map.yale.edu\/?id=1910#!m\/559604" + "https://map.yale.edu/?id=1910#!m/559604" ] ] }, @@ -32834,10 +66997,89 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88284\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88284/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988202452659607, + 0.9987678527832031 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989228844642639, + 0.9988396763801575 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998895525932312, + 0.998735249042511, + 0.9989359974861145 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 7 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -32874,7 +67116,7 @@ "11:35", "12:25", "YK220 001 - 220 York Street 001", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ], "Tuesday": [ @@ -32882,7 +67124,7 @@ "11:35", "12:25", "YK220 001 - 220 York Street 001", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ], "Wednesday": [ @@ -32890,7 +67132,7 @@ "11:35", "12:25", "YK220 001 - 220 York Street 001", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ], "Thursday": [ @@ -32898,7 +67140,7 @@ "11:35", "12:25", "YK220 001 - 220 York Street 001", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ], "Friday": [ @@ -32906,7 +67148,7 @@ "11:35", "12:25", "YK220 001 - 220 York Street 001", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ] }, @@ -32922,15 +67164,98 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92374\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92374/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986997842788696, + 0.9988161325454712, + 0.9988712668418884 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994957447052002, + 0.9989100694656372 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 1 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988865256309509, + 0.9982553124427795, + 0.9986624717712402 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 0.875, + "final_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + } + } }, { "season_code": "202303", "requirements": "Prerequisite: ASL 140 or advanced ASL proficiency.", - "description": "This course acquaints students with knowledge of d\/Deaf and Hard of Hearing (DHH) people by surveying critical issues in how DHH people have been perceived and portrayed throughout history, how DHH and hearing people have advocated together for their civil rights, and how sign language studies, performance arts, and media have been instrumental in promoting these rights. As part of their studies, students create an ASL media or performance arts production that is reflective of this process. Students complete the course with a greater understanding of factors impacting language studies in the Deaf community, awareness of their own roles as members of the ASL community, and the ability to address sociocultural issues in tandem with Deaf communities and broader sign language communities.", + "description": "This course acquaints students with knowledge of d/Deaf and Hard of Hearing (DHH) people by surveying critical issues in how DHH people have been perceived and portrayed throughout history, how DHH and hearing people have advocated together for their civil rights, and how sign language studies, performance arts, and media have been instrumental in promoting these rights. As part of their studies, students create an ASL media or performance arts production that is reflective of this process. Students complete the course with a greater understanding of factors impacting language studies in the Deaf community, awareness of their own roles as members of the ASL community, and the ability to address sociocultural issues in tandem with Deaf communities and broader sign language communities.", "short_title": "Critical Issues Facing Deaf P...", "title": "Critical Issues Facing Deaf People in Society", "school": "YC", @@ -32964,7 +67289,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -33024,10 +67377,137 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89116\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89116/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9965783953666687, + 0.9988669157028198, + 0.9983030557632446, + 0.9987585544586182, + 0.9988804459571838, + 0.9988947510719299, + 0.9987342953681946, + 0.9988741278648376, + 0.9988868832588196, + 0.9988214373588562 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9898495674133301, + 0.9958102703094482, + 0.9989261031150818, + 0.9989343285560608, + 0.9988701939582825, + 0.998938262462616, + 0.9988775849342346, + 0.9899528622627258, + 0.9989284873008728, + 0.9988859295845032 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 9 + }, + "sentiment_distribution": { + "NEGATIVE": 0.1, + "POSITIVE": 0.9 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.5608998537063599, + 0.9925975799560547, + 0.9987882971763611, + 0.9988866448402405, + 0.9989129304885864, + 0.9989145994186401, + 0.9988239407539368, + 0.9988939166069031, + 0.9989107847213745, + 0.9988740086555481 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "final_label": "POSITIVE", + "final_count": 28, + "final_proportion": 0.9333333333333333, + "final_counts": { + "POSITIVE": 28, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9333333333333333, + "NEGATIVE": 0.06666666666666667 + } + } }, { "season_code": "202303", @@ -33064,7 +67544,7 @@ "13:00", "14:15", "HLH17 101 - 17 Hillhouse Avenue 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Wednesday": [ @@ -33072,7 +67552,7 @@ "13:00", "14:15", "HLH17 101 - 17 Hillhouse Avenue 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -33088,10 +67568,135 @@ "classnotes": "", "final_exam": "Wednesday, December 20, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88852\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88852/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.950419008731842, + 0.9986843466758728, + 0.9986767172813416, + 0.9985077977180481, + 0.9988728165626526, + 0.9988780617713928, + 0.998794674873352, + 0.9987812638282776 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 7 + }, + "sentiment_distribution": { + "NEGATIVE": 0.125, + "POSITIVE": 0.875 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989333748817444, + 0.9995073080062866, + 0.9978997707366943, + 0.9990479350090027, + 0.9992673993110657, + 0.999480664730072, + 0.9985998272895813, + 0.9989295601844788, + 0.9990127086639404, + 0.9942816495895386, + 0.9985931515693665 + ], + "sentiment_counts": { + "NEGATIVE": 8, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.7272727272727273, + "POSITIVE": 0.2727272727272727 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.7272727272727273 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9995114803314209, + 0.9995132684707642, + 0.9994872808456421, + 0.9995095729827881, + 0.9994837045669556, + 0.9995110034942627, + 0.9988864064216614, + 0.9993292093276978, + 0.9989045858383179, + 0.9898830056190491 + ], + "sentiment_counts": { + "NEGATIVE": 7, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.7, + "POSITIVE": 0.3 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.7 + ] + }, + "final_label": "NEGATIVE", + "final_count": 16, + "final_proportion": 0.5517241379310345, + "final_counts": { + "NEGATIVE": 16, + "POSITIVE": 13 + }, + "final_distribution": { + "NEGATIVE": 0.5517241379310345, + "POSITIVE": 0.4482758620689655 + } + } }, { "season_code": "202303", @@ -33128,7 +67733,7 @@ "19:00", "20:45", "LFOP - LFOP", - "https:\/\/map.yale.edu\/?id=1910#!m\/560072" + "https://map.yale.edu/?id=1910#!m/560072" ] ] }, @@ -33142,10 +67747,63 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88853\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88853/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC403": { + "sentiment_labels": [ + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9994810223579407 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 0 + }, + "sentiment_distribution": { + "NEGATIVE": 1.0, + "POSITIVE": 0.0 + }, + "sentiment_overall": [ + "NEGATIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9974592328071594 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "neutral", + "final_count": 0.5, + "final_proportion": 0.5, + "final_counts": { + "NEGATIVE": 1, + "POSITIVE": 1 + }, + "final_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + } + } }, { "season_code": "202303", @@ -33182,7 +67840,7 @@ "10:30", "11:20", "HLH17 101 - 17 Hillhouse Avenue 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Wednesday": [ @@ -33190,7 +67848,7 @@ "10:30", "11:20", "HLH17 101 - 17 Hillhouse Avenue 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Friday": [ @@ -33198,7 +67856,7 @@ "10:30", "11:20", "HLH17 101 - 17 Hillhouse Avenue 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -33214,10 +67872,315 @@ "classnotes": "", "final_exam": "Monday, December 18, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88854\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88854/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9978019595146179, + 0.9956936836242676, + 0.9986166954040527, + 0.9988616704940796, + 0.9988129138946533, + 0.9987035989761353, + 0.9988194108009338, + 0.9988430738449097, + 0.9965408444404602, + 0.998719334602356, + 0.9987389445304871, + 0.9988442659378052, + 0.9987140893936157, + 0.9987905621528625, + 0.9989162683486938, + 0.9951658248901367, + 0.9983919262886047, + 0.9988976716995239, + 0.9989151954650879, + 0.9989157915115356, + 0.9989312291145325, + 0.9988245368003845, + 0.997580885887146, + 0.9961516261100769, + 0.998583197593689, + 0.9975343942642212, + 0.9985936284065247, + 0.9989163875579834, + 0.9978152513504028, + 0.9987537860870361, + 0.9982842803001404, + 0.9979894161224365, + 0.9989060163497925, + 0.9988020658493042, + 0.9974519610404968, + 0.9942148327827454 + ], + "sentiment_counts": { + "POSITIVE": 35, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9722222222222222, + "NEGATIVE": 0.027777777777777776 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9722222222222222 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989020824432373, + 0.998896598815918, + 0.9988011121749878, + 0.9988813996315002, + 0.998803973197937, + 0.9989281296730042, + 0.9989087581634521, + 0.9993945360183716, + 0.9987565279006958, + 0.9983708262443542, + 0.9988682270050049, + 0.9976334571838379, + 0.998867392539978, + 0.9989197254180908, + 0.9981355667114258, + 0.9989275336265564, + 0.9989100694656372, + 0.9989005327224731, + 0.9988767504692078, + 0.9989223480224609, + 0.9989327788352966, + 0.9989149570465088, + 0.9989339709281921, + 0.9988898634910583, + 0.9989030361175537, + 0.9994674324989319, + 0.9989381432533264, + 0.9988877177238464, + 0.998835027217865, + 0.9988755583763123, + 0.9982183575630188, + 0.9987043142318726, + 0.9973810315132141, + 0.9988987445831299, + 0.9988417029380798, + 0.9983578324317932, + 0.9988059997558594, + 0.9988927245140076, + 0.9988499879837036 + ], + "sentiment_counts": { + "POSITIVE": 37, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.9487179487179487, + "NEGATIVE": 0.05128205128205128 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9487179487179487 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989342093467712, + 0.9989173412322998, + 0.9989147186279297, + 0.9988699555397034, + 0.9975136518478394, + 0.9989166259765625, + 0.998918890953064, + 0.9986361861228943, + 0.9989311099052429, + 0.9972817897796631, + 0.9984886646270752, + 0.9989068508148193, + 0.9987021684646606, + 0.9989245533943176, + 0.9982553124427795, + 0.9988810420036316, + 0.9984221458435059, + 0.997117280960083, + 0.9989161491394043, + 0.9989218711853027, + 0.9988466501235962, + 0.9987468719482422, + 0.9988998174667358, + 0.9988871216773987, + 0.9988238215446472, + 0.9992063641548157, + 0.9989171028137207, + 0.9985532164573669, + 0.9989162683486938, + 0.9989256262779236, + 0.9988449811935425, + 0.9988595247268677, + 0.9989190101623535, + 0.9985727071762085, + 0.9988722205162048, + 0.997117280960083, + 0.9988901019096375, + 0.9987006187438965, + 0.9975100755691528, + 0.99893718957901, + 0.9988954067230225, + 0.9988815188407898, + 0.9984802603721619, + 0.9988405108451843 + ], + "sentiment_counts": { + "POSITIVE": 43, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9772727272727273, + "NEGATIVE": 0.022727272727272728 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9772727272727273 + ] + }, + "final_label": "POSITIVE", + "final_count": 115, + "final_proportion": 0.9663865546218487, + "final_counts": { + "POSITIVE": 115, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.9663865546218487, + "NEGATIVE": 0.03361344537815126 + } + } }, { "season_code": "202303", @@ -33278,10 +68241,115 @@ "classnotes": "", "final_exam": "Wednesday, December 20, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88855\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88855/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987290501594543, + 0.9984544515609741, + 0.9987335801124573, + 0.9980828762054443, + 0.9989049434661865, + 0.9988535642623901 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9958892464637756, + 0.9989081621170044, + 0.9989226460456848, + 0.99892657995224, + 0.9989350438117981, + 0.9988495111465454 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 5 + }, + "sentiment_distribution": { + "NEGATIVE": 0.16666666666666666, + "POSITIVE": 0.8333333333333334 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988872408866882, + 0.9987533092498779, + 0.9988558292388916, + 0.9987900853157043, + 0.9988856911659241, + 0.998913049697876, + 0.9988981485366821 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 0.9473684210526315, + "final_counts": { + "POSITIVE": 18, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9473684210526315, + "NEGATIVE": 0.05263157894736842 + } + } }, { "season_code": "202303", @@ -33353,10 +68421,111 @@ "classnotes": "", "final_exam": "Monday, December 18, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88856\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88856/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9979901313781738, + 0.9980814456939697, + 0.99880051612854, + 0.9989173412322998, + 0.9979973435401917, + 0.9960357546806335 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989215135574341, + 0.9983375072479248, + 0.9989338517189026, + 0.998884379863739, + 0.9989354014396667 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989012479782104, + 0.9988790154457092, + 0.9988916516304016, + 0.9989216327667236, + 0.9988625049591064, + 0.998866081237793, + 0.9989092350006104 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 18 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -33417,10 +68586,107 @@ "classnotes": "", "final_exam": "Sunday, December 17, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88857\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88857/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985118508338928, + 0.9987607002258301 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989269375801086, + 0.9989060163497925, + 0.9988976716995239, + 0.9994992017745972, + 0.999498724937439, + 0.9989191293716431 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982553124427795, + 0.998920202255249, + 0.9989107847213745, + 0.9975441098213196, + 0.990481972694397, + 0.9989290833473206, + 0.9989092350006104 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.7142857142857143, + "NEGATIVE": 0.2857142857142857 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7142857142857143 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 0.7333333333333333, + "final_counts": { + "POSITIVE": 11, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.7333333333333333, + "NEGATIVE": 0.26666666666666666 + } + } }, { "season_code": "202303", @@ -33481,10 +68747,85 @@ "classnotes": "", "final_exam": "Sunday, December 17, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88858\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88858/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9610293507575989, + 0.9959673881530762 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 1 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986932873725891 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9926514029502869 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 0 + }, + "sentiment_distribution": { + "NEGATIVE": 1.0, + "POSITIVE": 0.0 + }, + "sentiment_overall": [ + "NEGATIVE", + 1.0 + ] + }, + "final_label": "neutral", + "final_count": 0.5, + "final_proportion": 0.5, + "final_counts": { + "NEGATIVE": 2, + "POSITIVE": 2 + }, + "final_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + } + } }, { "season_code": "202303", @@ -33546,10 +68887,83 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88859\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88859/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985861778259277 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9945480227470398 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981922507286072, + 0.9969136714935303 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 4, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 4 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -33592,7 +69006,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -33635,7 +69077,14 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -33678,7 +69127,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -33735,15 +69212,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88918\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88918/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "The analytic and numerical\/computational tools necessary for effective research in astronomy, geophysics, and related disciplines. Topics include numerical solutions to differential equations, spectral methods, and Monte Carlo simulations. Applications are made to common astrophysical and geophysical problems including fluids and N-body simulations.", + "description": "The analytic and numerical/computational tools necessary for effective research in astronomy, geophysics, and related disciplines. Topics include numerical solutions to differential equations, spectral methods, and Monte Carlo simulations. Applications are made to common astrophysical and geophysical problems including fluids and N-body simulations.", "short_title": "Computational Methods in Astr...", "title": "Computational Methods in Astrophysics and Geophysics", "school": "GS", @@ -33797,10 +69302,85 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88858\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88858/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9610293507575989, + 0.9959673881530762 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 1 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986932873725891 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9926514029502869 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 0 + }, + "sentiment_distribution": { + "NEGATIVE": 1.0, + "POSITIVE": 0.0 + }, + "sentiment_overall": [ + "NEGATIVE", + 1.0 + ] + }, + "final_label": "neutral", + "final_count": 0.5, + "final_proportion": 0.5, + "final_counts": { + "NEGATIVE": 2, + "POSITIVE": 2 + }, + "final_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + } + } }, { "season_code": "202303", @@ -33858,10 +69438,83 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88859\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88859/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985861778259277 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9945480227470398 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981922507286072, + 0.9969136714935303 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 4, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 4 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -33898,7 +69551,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -33956,10 +69637,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88922\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88922/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -34008,10 +69717,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88923\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88923/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -34049,7 +69786,7 @@ "9:25", "11:15", "HOPE 216 - Hope 216", - "https:\/\/map.yale.edu\/?id=1910#!m\/560131" + "https://map.yale.edu/?id=1910#!m/560131" ] ] }, @@ -34061,10 +69798,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88573\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88573/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -34101,7 +69866,7 @@ "13:00", "14:15", "ML 104 - Mason Laboratory 104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ], "Thursday": [ @@ -34109,7 +69874,7 @@ "13:00", "14:15", "ML 104 - Mason Laboratory 104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ] }, @@ -34123,15 +69888,136 @@ "classnotes": "", "final_exam": "Saturday, December 16, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88292\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "Prerequisites: MATH 115 or 116. BIOL 101-104,\u00a0 or with permission of instructors. This course also benefits students who have taken more advanced biology courses (e.g. MCDB 200, MCDB 310, MB&B 300\/301).", - "description": "Biological systems make sophisticated decisions at many levels. This course explores the molecular and computational underpinnings of how these decisions are made, with a focus on modeling static and dynamic processes in example biological systems. This course is aimed at biology students and teaches the analytic and computational methods needed to model genetic networks and protein signaling pathways. Students present and discuss original papers in class. They learn to model using MatLab in a series of in-class hackathons that illustrate the biological examples discussed in the lectures. Biological systems and processes that are modeled include: (i) gene expression, including the kinetics of RNA and protein synthesis and degradation; (ii) activators and repressors; (iii) the lysogeny\/lysis switch of lambda phage; (iv) network motifs and how they shape response dynamics; (v) cell signaling, MAP kinase networks and cell fate decisions; and (vi) noise in gene expression.", + "syllabus_url": "https://yale.instructure.com/courses/88292/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9965225458145142, + 0.9987083673477173, + 0.9988454580307007, + 0.998710036277771, + 0.9988962411880493, + 0.9940378665924072, + 0.9987978935241699, + 0.9987521171569824, + 0.9988227486610413 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9987454414367676, + 0.9989187717437744, + 0.9983915686607361, + 0.9975892305374146, + 0.9988699555397034, + 0.9980940222740173, + 0.9989228844642639, + 0.9966222047805786, + 0.9955429434776306 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9979634284973145, + 0.9987342953681946, + 0.9982553124427795, + 0.9988560676574707, + 0.9988971948623657, + 0.9989176988601685, + 0.9989036321640015, + 0.9969573020935059, + 0.9988899827003479 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "final_label": "POSITIVE", + "final_count": 25, + "final_proportion": 0.9259259259259259, + "final_counts": { + "POSITIVE": 25, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9259259259259259, + "NEGATIVE": 0.07407407407407407 + } + } + }, + { + "season_code": "202303", + "requirements": "Prerequisites: MATH 115 or 116. BIOL 101-104,\u00a0 or with permission of instructors. This course also benefits students who have taken more advanced biology courses (e.g. MCDB 200, MCDB 310, MB&B 300/301).", + "description": "Biological systems make sophisticated decisions at many levels. This course explores the molecular and computational underpinnings of how these decisions are made, with a focus on modeling static and dynamic processes in example biological systems. This course is aimed at biology students and teaches the analytic and computational methods needed to model genetic networks and protein signaling pathways. Students present and discuss original papers in class. They learn to model using MatLab in a series of in-class hackathons that illustrate the biological examples discussed in the lectures. Biological systems and processes that are modeled include: (i) gene expression, including the kinetics of RNA and protein synthesis and degradation; (ii) activators and repressors; (iii) the lysogeny/lysis switch of lambda phage; (iv) network motifs and how they shape response dynamics; (v) cell signaling, MAP kinase networks and cell fate decisions; and (vi) noise in gene expression.", "short_title": "Modeling Biological Systems I", "title": "Modeling Biological Systems I", "school": "YC", @@ -34172,7 +70058,7 @@ "14:30", "15:45", "BASS 405 - Bass Center 405", - "https:\/\/map.yale.edu\/?id=1910#!m\/560102" + "https://map.yale.edu/?id=1910#!m/560102" ] ], "Thursday": [ @@ -34180,7 +70066,7 @@ "14:30", "15:45", "BASS 405 - Bass Center 405", - "https:\/\/map.yale.edu\/?id=1910#!m\/560102" + "https://map.yale.edu/?id=1910#!m/560102" ] ] }, @@ -34191,7 +70077,7 @@ "Sc" ], "flags": [ - "YC NSCI: Molecular\/Cell\/Biol", + "YC NSCI: Molecular/Cell/Biol", "YC NSCI: Quantitative" ], "regnotes": "", @@ -34199,10 +70085,119 @@ "classnotes": "Undergraduates only; graduate students need instructor permission. Graduate students with a physics, mathematics, or engineering background are not allowed in the course and should instead take MCDB 562 Modeling Biological Systems II, which is offered in the spring. Biology graduate students with little to no background in physics, mathematics, or engineering must first contact the instructor.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88784\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88784/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988932013511658, + 0.9985255599021912, + 0.9988605976104736, + 0.998641312122345, + 0.998914361000061, + 0.9989007711410522 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981176853179932, + 0.9986761212348938, + 0.9943771958351135, + 0.9985344409942627, + 0.9989160299301147, + 0.9989138841629028, + 0.9989339709281921, + 0.9988695979118347, + 0.9775633811950684 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 8 + }, + "sentiment_distribution": { + "NEGATIVE": 0.1111111111111111, + "POSITIVE": 0.8888888888888888 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9911907911300659, + 0.9986100196838379, + 0.9853668212890625, + 0.9989172220230103, + 0.9989176988601685, + 0.9988948702812195 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 0.9523809523809523, + "final_counts": { + "POSITIVE": 20, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9523809523809523, + "NEGATIVE": 0.047619047619047616 + } + } }, { "season_code": "202303", @@ -34242,7 +70237,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -34279,7 +70302,7 @@ "13:00", "14:15", "WTS A30 - Watson Center 60 Sachem Street A30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -34291,10 +70314,143 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88299\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88299/assignments/syllabus", "fysem": false, "sysem": true, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998903751373291, + 0.9988237023353577, + 0.9989124536514282, + 0.9978058934211731, + 0.9988798499107361, + 0.998805046081543, + 0.9988283514976501, + 0.9988767504692078, + 0.9988149404525757, + 0.9988470077514648 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987972974777222, + 0.9962253570556641, + 0.9989157915115356, + 0.9989118576049805, + 0.9988762736320496, + 0.9988160133361816, + 0.9988154172897339, + 0.9989100694656372, + 0.9941278696060181, + 0.8345544338226318, + 0.9988806843757629 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983232617378235, + 0.998702883720398, + 0.9985755681991577, + 0.9989245533943176, + 0.9988372921943665, + 0.9982459545135498, + 0.9981070756912231, + 0.9988024234771729, + 0.9988522529602051, + 0.9987782835960388, + 0.998786985874176, + 0.9958418011665344 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 11 + }, + "sentiment_distribution": { + "NEGATIVE": 0.08333333333333333, + "POSITIVE": 0.9166666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9166666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 31, + "final_proportion": 0.9393939393939394, + "final_counts": { + "POSITIVE": 31, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9393939393939394, + "NEGATIVE": 0.06060606060606061 + } + } }, { "season_code": "202303", @@ -34340,7 +70496,7 @@ "9:25", "10:15", "DAVIES AUD - Davies Auditorium, Becton Ctr AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ], "Wednesday": [ @@ -34348,7 +70504,7 @@ "9:25", "10:15", "DAVIES AUD - Davies Auditorium, Becton Ctr AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ], "Friday": [ @@ -34356,7 +70512,7 @@ "9:25", "10:15", "DAVIES AUD - Davies Auditorium, Becton Ctr AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ] }, @@ -34366,17 +70522,250 @@ ], "flags": [ "YC ENRG: Energy Science & Tech", - "YC NSCI: Molecular\/Cell\/Biol" + "YC NSCI: Molecular/Cell/Biol" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "Thursday, December 14, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88304\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88304/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989400506019592, + 0.9987356066703796, + 0.9988401532173157, + 0.9988483190536499, + 0.9987340569496155, + 0.9989243149757385, + 0.9981581568717957, + 0.9988138675689697, + 0.998855710029602, + 0.9988767504692078, + 0.997672975063324, + 0.9985867738723755, + 0.9987708926200867, + 0.9985735416412354, + 0.9977019429206848, + 0.9988190531730652, + 0.9987074136734009, + 0.9989060163497925, + 0.9975103139877319, + 0.9987026453018188, + 0.9986618757247925, + 0.9988909363746643, + 0.9978437423706055, + 0.9983353018760681, + 0.9985999464988708 + ], + "sentiment_counts": { + "POSITIVE": 25, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998848557472229, + 0.9993402361869812, + 0.9987609386444092, + 0.9989367127418518, + 0.9985036849975586, + 0.9989107847213745, + 0.9988788962364197, + 0.9987718462944031, + 0.9979021549224854, + 0.9987320303916931, + 0.998915433883667, + 0.9988909363746643, + 0.9995081424713135, + 0.9951971173286438, + 0.9987885355949402, + 0.9956823587417603, + 0.9983001351356506, + 0.9929627776145935, + 0.996518611907959, + 0.9988659620285034, + 0.9989122152328491, + 0.9994854927062988, + 0.9989089965820312, + 0.9989018440246582, + 0.9994179010391235, + 0.997342050075531, + 0.9988390803337097, + 0.9976304769515991, + 0.9986839890480042, + 0.9988480806350708 + ], + "sentiment_counts": { + "POSITIVE": 23, + "NEGATIVE": 7 + }, + "sentiment_distribution": { + "POSITIVE": 0.7666666666666667, + "NEGATIVE": 0.23333333333333334 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7666666666666667 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9943073391914368, + 0.9994959831237793, + 0.9987064599990845, + 0.9989296793937683, + 0.9986969828605652, + 0.9989004135131836, + 0.9988976716995239, + 0.9984064698219299, + 0.9987874627113342, + 0.9994966983795166, + 0.9988901019096375, + 0.9994984865188599, + 0.9989144802093506, + 0.9987828135490417, + 0.997117280960083, + 0.9971362352371216, + 0.9988127946853638, + 0.9988106489181519, + 0.9988019466400146, + 0.9968705773353577, + 0.9987626075744629, + 0.9989251494407654, + 0.9989131689071655, + 0.998771607875824, + 0.9962942004203796, + 0.9986621141433716, + 0.9647520780563354, + 0.9957173466682434 + ], + "sentiment_counts": { + "NEGATIVE": 7, + "POSITIVE": 21 + }, + "sentiment_distribution": { + "NEGATIVE": 0.25, + "POSITIVE": 0.75 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 69, + "final_proportion": 0.8313253012048193, + "final_counts": { + "POSITIVE": 69, + "NEGATIVE": 14 + }, + "final_distribution": { + "POSITIVE": 0.8313253012048193, + "NEGATIVE": 0.1686746987951807 + } + } }, { "season_code": "202303", @@ -34408,7 +70797,7 @@ "17:00", "17:50", "HQ 129 - Humanities Quadrangle 129", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -34427,7 +70816,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -34459,7 +70876,7 @@ "19:00", "19:50", "WTS B30 - Watson Center 60 Sachem Street B30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -34478,7 +70895,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -34510,7 +70955,7 @@ "19:00", "19:50", "WTS A38 - Watson Center 60 Sachem Street A38", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -34529,7 +70974,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -34561,7 +71034,7 @@ "20:00", "20:50", "WTS A39 - Watson Center 60 Sachem Street A39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -34580,7 +71053,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -34612,7 +71113,7 @@ "17:00", "17:50", "HQ 113 - Humanities Quadrangle 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -34631,7 +71132,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -34663,7 +71192,7 @@ "19:00", "19:50", "WTS B51 - Watson Center 60 Sachem Street B51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -34682,7 +71211,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -34721,7 +71278,7 @@ "9:00", "10:15", "SPL 57 - Sloane Physics Laboratory 57", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ], "Thursday": [ @@ -34729,7 +71286,7 @@ "9:00", "10:15", "SPL 57 - Sloane Physics Laboratory 57", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ] }, @@ -34743,10 +71300,137 @@ "classnotes": "", "final_exam": "Saturday, December 16, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88307\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88307/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9980084300041199, + 0.9952059388160706, + 0.9987711310386658, + 0.9985912442207336, + 0.9986758828163147, + 0.9987612962722778, + 0.9986279010772705, + 0.9989132881164551, + 0.998666524887085 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987107515335083, + 0.9994276165962219, + 0.9985081553459167, + 0.998881995677948, + 0.9984063506126404, + 0.9987542629241943, + 0.9988656044006348, + 0.9989213943481445, + 0.9994737505912781, + 0.9981052875518799, + 0.9953397512435913 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.7272727272727273, + "NEGATIVE": 0.2727272727272727 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7272727272727273 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9976894855499268, + 0.9947992563247681, + 0.9987760186195374, + 0.9985904097557068, + 0.9985750913619995, + 0.998856782913208, + 0.9994845390319824, + 0.9989122152328491, + 0.9995036125183105, + 0.9850534796714783 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.7, + "NEGATIVE": 0.3 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7 + ] + }, + "final_label": "POSITIVE", + "final_count": 24, + "final_proportion": 0.8, + "final_counts": { + "POSITIVE": 24, + "NEGATIVE": 6 + }, + "final_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + } + } }, { "season_code": "202303", @@ -34794,10 +71478,145 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88312\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88312/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9960709810256958, + 0.9980989098548889, + 0.9989070892333984, + 0.9988640546798706, + 0.9985069632530212, + 0.9987475872039795, + 0.9987499713897705, + 0.9988875985145569, + 0.9986705780029297, + 0.9988231062889099 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988503456115723, + 0.9994783997535706, + 0.9994935989379883, + 0.9988435506820679, + 0.9935863614082336, + 0.9940600991249084, + 0.9988760352134705, + 0.9993991851806641, + 0.9995039701461792, + 0.9977374076843262, + 0.9989305138587952, + 0.9994841814041138, + 0.9991602897644043, + 0.9994959831237793 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 10 + }, + "sentiment_distribution": { + "POSITIVE": 0.2857142857142857, + "NEGATIVE": 0.7142857142857143 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.7142857142857143 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9962190985679626, + 0.9983184337615967, + 0.9982019662857056, + 0.9991375207901001, + 0.9994834661483765, + 0.9980016350746155, + 0.9988956451416016, + 0.9991979002952576, + 0.9954427480697632, + 0.9995081424713135 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 7 + }, + "sentiment_distribution": { + "POSITIVE": 0.3, + "NEGATIVE": 0.7 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.7 + ] + }, + "final_label": "neutral", + "final_count": 0.5, + "final_proportion": 0.5, + "final_counts": { + "POSITIVE": 17, + "NEGATIVE": 17 + }, + "final_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + } + } }, { "season_code": "202303", @@ -34828,7 +71647,7 @@ "13:00", "17:00", "WLH 120 - William L. Harkness Hall 120", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -34845,7 +71664,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -34876,7 +71723,7 @@ "13:00", "17:00", "HLH17 03 - 17 Hillhouse Avenue 03", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -34893,7 +71740,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -34937,7 +71812,7 @@ "13:00", "14:15", "BCT CO31 - Becton Center CO31", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ], "Wednesday": [ @@ -34945,7 +71820,7 @@ "13:00", "14:15", "BCT CO31 - Becton Center CO31", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ] }, @@ -34961,14 +71836,105 @@ "classnotes": "", "final_exam": "Wednesday, December 20, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88317\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88317/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "Prerequisites: Math through first order differential equations, PHYS 180\/181, CHEM 161, BIOL 101\/102,\u00a0BENG\u00a0249 or other experience with scientific software like MATLAB\u00ae,\u00a0BENG 350 and BENG 410 (both of which can be taken at the same time as this course)", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9980180263519287, + 0.9897744655609131, + 0.9909698367118835 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998838484287262, + 0.998853325843811, + 0.9988652467727661, + 0.9919430017471313 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.997117280960083, + 0.9987917542457581, + 0.9987760186195374, + 0.9988858103752136, + 0.9995028972625732 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 0.9166666666666666, + "final_counts": { + "POSITIVE": 11, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + } + } + }, + { + "season_code": "202303", + "requirements": "Prerequisites: Math through first order differential equations, PHYS 180/181, CHEM 161, BIOL 101/102,\u00a0BENG\u00a0249 or other experience with scientific software like MATLAB\u00ae,\u00a0BENG 350 and BENG 410 (both of which can be taken at the same time as this course)", "description": "Detecting, measuring, and quantifying the structural and functional properties of tissue is of critical importance in both biomedical research and medicine. This course focuses on the practicalities of generating quantitative results from raw bioimaging and biosensing data to complement other courses focus on the theoretical foundations which enable the collection of these data. Participants in the course work with real, cutting-edge data collected here at Yale. They become familiar with an array of current software tools, denoising and processing techniques, and quantitative analysis methods that are used in the pursuit of extracting meaningful information from imaging data.\u00a0The subject matter of this course ranges from bioenergetics, metabolic pathways, molecular processes, brain receptor kinetics, protein expression and interactions to wide spread functional networks, long-range connectivity, and organ-level brain organization. The course provides a unique hands-on experience with processing and analyzing in vitro and in vivo bioimaging and biosensing data that is relevant to current research topics. The specific imaging modes which are covered include\u00a0in vivo\u00a0magnetic resonance spectroscopy (MRS) and spectroscopic imaging (MRSI), functional, structural, and molecular imaging (MRI), wide-field fluorescent optical imaging, and positron emission tomography (PET). The course provides the necessary background in biochemistry, bioenergetics, and biophysics for students to motivate the image manipulations which they learn to perform.", "short_title": "Practical Applications of Bio...", "title": "Practical Applications of Bioimaging and Biosensing", @@ -35009,7 +71975,7 @@ "13:00", "14:15", "PH 207 - Phelps Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -35023,10 +71989,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89940\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89940/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -35064,7 +72058,7 @@ "15:30", "17:20", "LOM 206 - Leet Oliver Memorial Hall 206", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ] }, @@ -35080,10 +72074,109 @@ "classnotes": "", "final_exam": "Sunday, December 17, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88321\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88321/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986976385116577, + 0.99753737449646, + 0.9986910223960876, + 0.9987311959266663, + 0.995327353477478, + 0.9957432150840759 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9976624250411987, + 0.9989027976989746, + 0.9988775849342346, + 0.9988903403282166, + 0.9988693594932556, + 0.9988858103752136 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988420605659485, + 0.9988388419151306, + 0.9984643459320068, + 0.9987014532089233, + 0.9975998997688293 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 17 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -35127,7 +72220,7 @@ "11:35", "12:50", "HLH17 03 - 17 Hillhouse Avenue 03", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Wednesday": [ @@ -35135,7 +72228,7 @@ "11:35", "12:50", "HLH17 03 - 17 Hillhouse Avenue 03", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -35151,10 +72244,93 @@ "classnotes": "", "final_exam": "Sunday, December 17, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88325\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88325/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998680055141449, + 0.9851688146591187, + 0.9986096620559692 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994059801101685, + 0.9994997978210449, + 0.9987391829490662 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 1 + }, + "sentiment_distribution": { + "NEGATIVE": 0.6666666666666666, + "POSITIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9980016350746155, + 0.9988763928413391 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 1 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "final_label": "neutral", + "final_count": 0.5, + "final_proportion": 0.5, + "final_counts": { + "POSITIVE": 4, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + } + } }, { "season_code": "202303", @@ -35196,7 +72372,7 @@ "11:35", "12:50", "LC 211 - Linsly-Chittenden Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -35204,7 +72380,7 @@ "11:35", "12:50", "LC 211 - Linsly-Chittenden Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -35216,10 +72392,41 @@ "classnotes": "", "final_exam": "Friday, December 15, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88328\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88328/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.99883633852005 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 1, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 1 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -35257,7 +72464,7 @@ "11:35", "12:50", "HLH17 03 - 17 Hillhouse Avenue 03", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Thursday": [ @@ -35265,7 +72472,7 @@ "11:35", "12:50", "HLH17 03 - 17 Hillhouse Avenue 03", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -35281,10 +72488,117 @@ "classnotes": "", "final_exam": "Friday, December 15, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88331\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88331/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998765230178833, + 0.9984782338142395, + 0.9879646301269531, + 0.9975425004959106, + 0.998648464679718, + 0.9961457252502441 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.998895525932312, + 0.9940738081932068, + 0.9981111288070679, + 0.9989359974861145, + 0.998446524143219, + 0.999504804611206 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.998863935470581, + 0.9902442693710327, + 0.9979193806648254, + 0.9988566637039185, + 0.9987976551055908, + 0.9988487958908081, + 0.9986647367477417, + 0.9957140684127808 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 0.85, + "final_counts": { + "POSITIVE": 17, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.85, + "NEGATIVE": 0.15 + } + } }, { "season_code": "202303", @@ -35322,7 +72636,7 @@ "14:30", "15:45", "HLH17 115 - 17 Hillhouse Avenue 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Thursday": [ @@ -35330,7 +72644,7 @@ "14:30", "15:45", "HLH17 115 - 17 Hillhouse Avenue 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -35346,15 +72660,158 @@ "classnotes": "", "final_exam": "Monday, December 18, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88336\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88336/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9972953200340271, + 0.9985628724098206, + 0.9987183809280396, + 0.9985966086387634, + 0.9988521337509155, + 0.9986926913261414, + 0.9988006353378296, + 0.9987599849700928, + 0.9988366961479187, + 0.9803965091705322, + 0.9984556436538696 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9090909090909091 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987755417823792, + 0.9925625920295715, + 0.9988956451416016, + 0.9981335997581482, + 0.9985180497169495, + 0.998843789100647, + 0.9980113506317139, + 0.9987457990646362, + 0.9988111257553101, + 0.9995036125183105, + 0.9988495111465454, + 0.9986514449119568 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9969415068626404, + 0.9988873600959778, + 0.9988777041435242, + 0.9994924068450928, + 0.9987534284591675, + 0.9988927245140076, + 0.9984809756278992, + 0.8251410722732544, + 0.9981574416160583, + 0.9974549412727356, + 0.9989118576049805, + 0.9986857771873474, + 0.9987666606903076, + 0.9987686276435852, + 0.998847484588623 + ], + "sentiment_counts": { + "POSITIVE": 14, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9333333333333333, + "NEGATIVE": 0.06666666666666667 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9333333333333333 + ] + }, + "final_label": "POSITIVE", + "final_count": 34, + "final_proportion": 0.8947368421052632, + "final_counts": { + "POSITIVE": 34, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.8947368421052632, + "NEGATIVE": 0.10526315789473684 + } + } }, { "season_code": "202303", "requirements": "Permission of both the instructor and the director of undergraduate studies is required.", - "description": "Faculty-supervised individual or small-group projects with emphasis on research (laboratory or theory), engineering design, or tutorial study. Students are expected to consult the director of undergraduate studies and appropriate faculty members about ideas and suggestions for suitable topics. This course, offered Pass\/Fail, can be taken at any time during a student's career, and may be taken more than once. For the Senior Project, see BENG 473, 474.", + "description": "Faculty-supervised individual or small-group projects with emphasis on research (laboratory or theory), engineering design, or tutorial study. Students are expected to consult the director of undergraduate studies and appropriate faculty members about ideas and suggestions for suitable topics. This course, offered Pass/Fail, can be taken at any time during a student's career, and may be taken more than once. For the Senior Project, see BENG 473, 474.", "short_title": "Special Projects", "title": "Special Projects", "school": "YC", @@ -35389,10 +72846,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88342\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88342/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -35432,10 +72917,81 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88347\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88347/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985791444778442 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.998916745185852 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9976928234100342 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 3, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 3 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -35477,7 +73033,7 @@ "14:30", "15:45", "WTS A51 - Watson Center 60 Sachem Street A51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -35485,7 +73041,7 @@ "14:30", "15:45", "WTS A51 - Watson Center 60 Sachem Street A51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -35501,10 +73057,133 @@ "classnotes": "", "final_exam": "Sunday, December 17, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88172\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88172/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9980304837226868, + 0.9986047148704529, + 0.9162562489509583, + 0.9986104965209961, + 0.9976143836975098, + 0.998491644859314, + 0.9988740086555481, + 0.9988579750061035, + 0.9949612617492676 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989176988601685, + 0.9995079040527344, + 0.9989275336265564, + 0.9894932508468628, + 0.9986346364021301, + 0.998930037021637, + 0.9988192915916443, + 0.9995110034942627 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989182949066162, + 0.999414324760437, + 0.9994677901268005, + 0.9995068311691284, + 0.9987934827804565, + 0.9987847208976746, + 0.9989137649536133, + 0.9989270567893982, + 0.998902440071106, + 0.9983886480331421, + 0.9988535642623901 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.6363636363636364, + "NEGATIVE": 0.36363636363636365 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6363636363636364 + ] + }, + "final_label": "POSITIVE", + "final_count": 22, + "final_proportion": 0.7857142857142857, + "final_counts": { + "POSITIVE": 22, + "NEGATIVE": 6 + }, + "final_distribution": { + "POSITIVE": 0.7857142857142857, + "NEGATIVE": 0.21428571428571427 + } + } }, { "season_code": "202303", @@ -35541,7 +73220,7 @@ "13:00", "14:15", "WTS B52 - Watson Center 60 Sachem Street B52", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -35553,15 +73232,116 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88351\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88351/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988933205604553, + 0.9986644983291626, + 0.998793363571167, + 0.9989112615585327, + 0.9988909363746643 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988839030265808, + 0.9989247918128967, + 0.9987816214561462, + 0.9988020658493042, + 0.9987075328826904, + 0.9981614947319031 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983727931976318, + 0.9986945986747742, + 0.9988068342208862, + 0.9982538819313049, + 0.9981974959373474, + 0.9988687634468079, + 0.9988116025924683 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 18 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", "requirements": "The first of four modules in a yearlong foundational biology sequence; meets for the first half of the term.", - "description": "The study of life at the molecular level. Topics include the three-dimensional structures and function of large biological molecules, the human genome, and the design of antiviral drugs to treat HIV\/AIDS.", + "description": "The study of life at the molecular level. Topics include the three-dimensional structures and function of large biological molecules, the human genome, and the design of antiviral drugs to treat HIV/AIDS.", "short_title": "Biochemistry and Biophysics", "title": "Biochemistry and Biophysics", "school": "YC", @@ -35596,7 +73376,7 @@ "11:35", "12:50", "YSB MARSH - Yale Science Building MARSH", - "https:\/\/map.yale.edu\/?id=1910#!m\/563700" + "https://map.yale.edu/?id=1910#!m/563700" ] ], "Wednesday": [ @@ -35604,7 +73384,7 @@ "11:35", "12:50", "YSB MARSH - Yale Science Building MARSH", - "https:\/\/map.yale.edu\/?id=1910#!m\/563700" + "https://map.yale.edu/?id=1910#!m/563700" ] ] }, @@ -35618,15 +73398,896 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89009\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89009/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988480806350708, + 0.9988676309585571, + 0.9988627433776855, + 0.9984543323516846, + 0.9989100694656372, + 0.99725741147995, + 0.9987591505050659, + 0.9987658262252808, + 0.9983634352684021, + 0.9988234639167786, + 0.9988580942153931, + 0.9988605976104736, + 0.9988818764686584, + 0.998711347579956, + 0.9987809062004089, + 0.9987843632698059, + 0.9982889294624329, + 0.9988079071044922, + 0.9988226294517517, + 0.9986379742622375, + 0.9987577199935913, + 0.9989147186279297, + 0.998933732509613, + 0.998831570148468, + 0.9970366954803467, + 0.9982501864433289, + 0.9989173412322998, + 0.9988227486610413, + 0.9988765120506287, + 0.9986822009086609, + 0.9988277554512024, + 0.9988307356834412, + 0.998815655708313, + 0.9987753033638, + 0.9987310767173767, + 0.998658299446106, + 0.9987490177154541, + 0.9977847933769226, + 0.9985707998275757, + 0.9988779425621033, + 0.9989017248153687, + 0.9989292025566101, + 0.9988734126091003, + 0.998589813709259, + 0.9989334940910339, + 0.998862624168396, + 0.9988788962364197, + 0.9987583160400391, + 0.9988505840301514, + 0.9988227486610413, + 0.9987624883651733, + 0.9988353848457336, + 0.9988589286804199, + 0.9988114833831787, + 0.9988665580749512, + 0.9985167384147644, + 0.9988131523132324, + 0.9987035989761353, + 0.9979900121688843, + 0.998803973197937, + 0.9988952279090881, + 0.9983574748039246, + 0.997869610786438, + 0.9987248778343201, + 0.9972631931304932, + 0.9988692402839661, + 0.9987928867340088, + 0.9989120960235596, + 0.9994944334030151, + 0.9986644983291626, + 0.9987384676933289, + 0.9988246560096741, + 0.9912042021751404, + 0.9984294772148132, + 0.9987034797668457, + 0.998656153678894, + 0.9949043989181519, + 0.9988711476325989, + 0.9989173412322998, + 0.9988928437232971, + 0.9987108707427979, + 0.9988939166069031, + 0.997850775718689, + 0.9986573457717896, + 0.9987390637397766, + 0.9994970560073853, + 0.9988442659378052, + 0.9987989664077759, + 0.9983617663383484, + 0.9986628293991089, + 0.9985999464988708, + 0.99885094165802, + 0.9988904595375061, + 0.9987541437149048, + 0.9988968372344971, + 0.9987431168556213, + 0.9987253546714783, + 0.9988914132118225, + 0.9981825351715088, + 0.9854192733764648, + 0.998507559299469, + 0.9984065890312195, + 0.9977360963821411, + 0.9837687611579895, + 0.998624324798584, + 0.998892605304718, + 0.9988518953323364, + 0.9988558292388916, + 0.9988112449645996, + 0.998491644859314, + 0.9987687468528748, + 0.9986336827278137, + 0.9988052845001221, + 0.9988694787025452, + 0.9988009929656982, + 0.9988987445831299, + 0.9986439347267151, + 0.9986878037452698, + 0.998788058757782, + 0.9988320469856262, + 0.9987598657608032, + 0.9987622499465942, + 0.9985880255699158, + 0.9987364411354065, + 0.9987394213676453, + 0.9983354210853577, + 0.9987694621086121, + 0.9974700212478638, + 0.9988399147987366, + 0.9984702467918396, + 0.9983013868331909, + 0.9983678460121155, + 0.9989064931869507, + 0.9985923171043396, + 0.9987994432449341 + ], + "sentiment_counts": { + "POSITIVE": 130, + "NEGATIVE": 5 + }, + "sentiment_distribution": { + "POSITIVE": 0.9629629629629629, + "NEGATIVE": 0.037037037037037035 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9629629629629629 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9986504912376404, + 0.9976153373718262, + 0.993979811668396, + 0.991798996925354, + 0.9988716244697571, + 0.999496340751648, + 0.9983183145523071, + 0.9987426400184631, + 0.9994927644729614, + 0.9989559650421143, + 0.9987414479255676, + 0.9682517647743225, + 0.9979996085166931, + 0.9955847859382629, + 0.9989123344421387, + 0.9988824725151062, + 0.9984815716743469, + 0.9984501600265503, + 0.9994907379150391, + 0.9987934827804565, + 0.9989338517189026, + 0.9988279938697815, + 0.994624674320221, + 0.9994773268699646, + 0.9897290468215942, + 0.9989006519317627, + 0.9977366924285889, + 0.9974688291549683, + 0.9995061159133911, + 0.9966536164283752, + 0.9984269142150879, + 0.9988242983818054, + 0.9989719390869141, + 0.9989979863166809, + 0.9994966983795166, + 0.9988148212432861, + 0.999466598033905, + 0.9994984865188599, + 0.9936758875846863, + 0.9987207055091858, + 0.9974810481071472, + 0.9988316893577576, + 0.9988822340965271, + 0.9988497495651245, + 0.9991098046302795, + 0.9986534118652344, + 0.9988792538642883, + 0.9989314675331116, + 0.9950626492500305, + 0.999495267868042, + 0.9989326596260071, + 0.9981164932250977, + 0.9994820952415466, + 0.9989280104637146, + 0.9986292123794556, + 0.9992130994796753, + 0.9987508058547974, + 0.9972219467163086, + 0.998569130897522, + 0.9986718893051147, + 0.9987340569496155, + 0.9991542100906372, + 0.9986935257911682, + 0.9935247898101807, + 0.998675525188446, + 0.9982951283454895, + 0.9986823201179504, + 0.996982991695404, + 0.9054012894630432, + 0.9803193211555481, + 0.9981912970542908, + 0.999468982219696, + 0.9961828589439392, + 0.9986668825149536, + 0.9976314306259155, + 0.998889148235321, + 0.9983717799186707, + 0.9987325072288513, + 0.9984419941902161, + 0.9989306330680847, + 0.9390354156494141, + 0.9966481328010559, + 0.9988808035850525, + 0.9852423071861267, + 0.9994959831237793, + 0.9545506238937378, + 0.9972012042999268, + 0.9964536428451538, + 0.9988170862197876, + 0.9989114999771118, + 0.9994909763336182, + 0.9986003041267395, + 0.998868465423584, + 0.99874347448349, + 0.9988222718238831, + 0.9995063543319702, + 0.9976398944854736, + 0.9984354376792908, + 0.995782732963562, + 0.998923122882843, + 0.990356981754303, + 0.9987868666648865, + 0.9986667633056641, + 0.9987913966178894, + 0.9988730549812317, + 0.9992895126342773, + 0.9994747042655945, + 0.9995003938674927, + 0.838691234588623, + 0.9988847374916077, + 0.9995039701461792, + 0.9994256496429443, + 0.9984399676322937, + 0.999466598033905, + 0.9986531734466553, + 0.9994874000549316, + 0.9987795948982239, + 0.9986295700073242, + 0.9988246560096741, + 0.9995031356811523, + 0.998738706111908, + 0.998808741569519, + 0.9968806505203247, + 0.9987616539001465, + 0.9986494183540344, + 0.9989262223243713, + 0.9987886548042297, + 0.9943980574607849, + 0.9995064735412598, + 0.9986926913261414, + 0.9994767308235168, + 0.9987145662307739, + 0.9994953870773315, + 0.9994588494300842, + 0.9981297850608826, + 0.9990979433059692, + 0.9989149570465088, + 0.9979212880134583, + 0.9995025396347046, + 0.9976596832275391 + ], + "sentiment_counts": { + "POSITIVE": 89, + "NEGATIVE": 51 + }, + "sentiment_distribution": { + "POSITIVE": 0.6357142857142857, + "NEGATIVE": 0.36428571428571427 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6357142857142857 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988487958908081, + 0.9989175796508789, + 0.9985454082489014, + 0.998723566532135, + 0.9976401329040527, + 0.9988633394241333, + 0.9984332919120789, + 0.9978060126304626, + 0.9995044469833374, + 0.9987168312072754, + 0.9966301321983337, + 0.9967622756958008, + 0.997596800327301, + 0.9989066123962402, + 0.997117280960083, + 0.9992430210113525, + 0.9989051818847656, + 0.999509334564209, + 0.9989235997200012, + 0.9994595646858215, + 0.9989292025566101, + 0.9988935589790344, + 0.998264491558075, + 0.9994511008262634, + 0.9988969564437866, + 0.9989811778068542, + 0.9994866847991943, + 0.999502420425415, + 0.9988996982574463, + 0.9988769888877869, + 0.9915831685066223, + 0.9994975328445435, + 0.998868465423584, + 0.9995039701461792, + 0.9835167527198792, + 0.9983394145965576, + 0.9971213936805725, + 0.9989338517189026, + 0.9987601041793823, + 0.9983799457550049, + 0.9994834661483765, + 0.998812198638916, + 0.9989098310470581, + 0.9989363551139832, + 0.9987853169441223, + 0.9988077878952026, + 0.9979988932609558, + 0.9980079531669617, + 0.9988885521888733, + 0.9989118576049805, + 0.9980582594871521, + 0.9841470718383789, + 0.9989056587219238, + 0.9988264441490173, + 0.9986720085144043, + 0.9989163875579834, + 0.9986193180084229, + 0.9988790154457092, + 0.9980521202087402, + 0.9989312291145325, + 0.9988320469856262, + 0.9988640546798706, + 0.9958481788635254, + 0.9912765026092529, + 0.9911076426506042, + 0.9988322854042053, + 0.998838484287262, + 0.993459939956665, + 0.998916745185852, + 0.9915806651115417, + 0.9984519481658936, + 0.999510645866394, + 0.9972163438796997, + 0.9989156723022461, + 0.998931348323822, + 0.998676598072052, + 0.9989134073257446, + 0.9989311099052429, + 0.996353268623352, + 0.9989256262779236, + 0.9988464117050171, + 0.9995148181915283, + 0.9989045858383179, + 0.9979280233383179, + 0.9987841248512268, + 0.9811491966247559, + 0.9928344488143921, + 0.9955021739006042, + 0.9988715052604675, + 0.9995052814483643, + 0.9989180564880371, + 0.9987419247627258, + 0.9924924969673157, + 0.9898395538330078, + 0.9984706044197083, + 0.9988196492195129, + 0.9980481863021851, + 0.9980170726776123, + 0.9976168870925903, + 0.9994717240333557, + 0.9995055198669434, + 0.9935569167137146, + 0.9988548755645752, + 0.9994361996650696, + 0.9987002611160278, + 0.997117280960083, + 0.9988340735435486, + 0.9966187477111816, + 0.9811780452728271, + 0.9988725781440735, + 0.9989232420921326, + 0.9988835453987122, + 0.9995021820068359, + 0.998710036277771, + 0.9994919300079346, + 0.9980084300041199, + 0.998738706111908, + 0.9986587762832642, + 0.9980016350746155, + 0.9987527132034302, + 0.998747706413269, + 0.9995012283325195, + 0.9992969036102295, + 0.9984408020973206, + 0.9995063543319702, + 0.9986973404884338, + 0.9992551207542419, + 0.9987887740135193, + 0.9988314509391785, + 0.9988811612129211, + 0.9995075464248657, + 0.9994447827339172 + ], + "sentiment_counts": { + "POSITIVE": 87, + "NEGATIVE": 45 + }, + "sentiment_distribution": { + "POSITIVE": 0.6590909090909091, + "NEGATIVE": 0.3409090909090909 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6590909090909091 + ] + }, + "final_label": "POSITIVE", + "final_count": 306, + "final_proportion": 0.7518427518427518, + "final_counts": { + "POSITIVE": 306, + "NEGATIVE": 101 + }, + "final_distribution": { + "POSITIVE": 0.7518427518427518, + "NEGATIVE": 0.24815724815724816 + } + } }, { "season_code": "202303", "requirements": "The first of four modules in a yearlong foundational biology sequence; meets for the first half of the term.", - "description": "The study of life at the molecular level. Topics include the three-dimensional structures and function of large biological molecules, the human genome, and the design of antiviral drugs to treat HIV\/AIDS.", + "description": "The study of life at the molecular level. Topics include the three-dimensional structures and function of large biological molecules, the human genome, and the design of antiviral drugs to treat HIV/AIDS.", "short_title": "Biochemistry and Biophysics", "title": "Biochemistry and Biophysics", "school": "YC", @@ -35652,7 +74313,7 @@ "15:30", "16:20", "WTS B51 - Watson Center 60 Sachem Street B51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -35669,12 +74330,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "The first of four modules in a yearlong foundational biology sequence; meets for the first half of the term.", - "description": "The study of life at the molecular level. Topics include the three-dimensional structures and function of large biological molecules, the human genome, and the design of antiviral drugs to treat HIV\/AIDS.", + "description": "The study of life at the molecular level. Topics include the three-dimensional structures and function of large biological molecules, the human genome, and the design of antiviral drugs to treat HIV/AIDS.", "short_title": "Biochemistry and Biophysics", "title": "Biochemistry and Biophysics", "school": "YC", @@ -35700,7 +74389,7 @@ "19:00", "19:50", "WTS A39 - Watson Center 60 Sachem Street A39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -35717,12 +74406,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "The first of four modules in a yearlong foundational biology sequence; meets for the first half of the term.", - "description": "The study of life at the molecular level. Topics include the three-dimensional structures and function of large biological molecules, the human genome, and the design of antiviral drugs to treat HIV\/AIDS.", + "description": "The study of life at the molecular level. Topics include the three-dimensional structures and function of large biological molecules, the human genome, and the design of antiviral drugs to treat HIV/AIDS.", "short_title": "Biochemistry and Biophysics", "title": "Biochemistry and Biophysics", "school": "YC", @@ -35748,7 +74465,7 @@ "19:00", "19:50", "WTS A38 - Watson Center 60 Sachem Street A38", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -35765,12 +74482,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "The first of four modules in a yearlong foundational biology sequence; meets for the first half of the term.", - "description": "The study of life at the molecular level. Topics include the three-dimensional structures and function of large biological molecules, the human genome, and the design of antiviral drugs to treat HIV\/AIDS.", + "description": "The study of life at the molecular level. Topics include the three-dimensional structures and function of large biological molecules, the human genome, and the design of antiviral drugs to treat HIV/AIDS.", "short_title": "Biochemistry and Biophysics", "title": "Biochemistry and Biophysics", "school": "YC", @@ -35796,7 +74541,7 @@ "9:25", "10:15", "LC 104 - Linsly-Chittenden Hall 104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -35813,12 +74558,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "The first of four modules in a yearlong foundational biology sequence; meets for the first half of the term.", - "description": "The study of life at the molecular level. Topics include the three-dimensional structures and function of large biological molecules, the human genome, and the design of antiviral drugs to treat HIV\/AIDS.", + "description": "The study of life at the molecular level. Topics include the three-dimensional structures and function of large biological molecules, the human genome, and the design of antiviral drugs to treat HIV/AIDS.", "short_title": "Biochemistry and Biophysics", "title": "Biochemistry and Biophysics", "school": "YC", @@ -35844,7 +74617,7 @@ "10:30", "11:20", "LC 103 - Linsly-Chittenden Hall 103", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -35861,12 +74634,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "The first of four modules in a yearlong foundational biology sequence; meets for the first half of the term.", - "description": "The study of life at the molecular level. Topics include the three-dimensional structures and function of large biological molecules, the human genome, and the design of antiviral drugs to treat HIV\/AIDS.", + "description": "The study of life at the molecular level. Topics include the three-dimensional structures and function of large biological molecules, the human genome, and the design of antiviral drugs to treat HIV/AIDS.", "short_title": "Biochemistry and Biophysics", "title": "Biochemistry and Biophysics", "school": "YC", @@ -35892,7 +74693,7 @@ "10:30", "11:20", "WLH 211 - William L. Harkness Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -35909,12 +74710,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "The first of four modules in a yearlong foundational biology sequence; meets for the first half of the term.", - "description": "The study of life at the molecular level. Topics include the three-dimensional structures and function of large biological molecules, the human genome, and the design of antiviral drugs to treat HIV\/AIDS.", + "description": "The study of life at the molecular level. Topics include the three-dimensional structures and function of large biological molecules, the human genome, and the design of antiviral drugs to treat HIV/AIDS.", "short_title": "Biochemistry and Biophysics", "title": "Biochemistry and Biophysics", "school": "YC", @@ -35940,7 +74769,7 @@ "19:00", "19:50", "WTS B30 - Watson Center 60 Sachem Street B30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -35957,12 +74786,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "The first of four modules in a yearlong foundational biology sequence; meets for the first half of the term.", - "description": "The study of life at the molecular level. Topics include the three-dimensional structures and function of large biological molecules, the human genome, and the design of antiviral drugs to treat HIV\/AIDS.", + "description": "The study of life at the molecular level. Topics include the three-dimensional structures and function of large biological molecules, the human genome, and the design of antiviral drugs to treat HIV/AIDS.", "short_title": "Biochemistry and Biophysics", "title": "Biochemistry and Biophysics", "school": "YC", @@ -35988,7 +74845,7 @@ "19:00", "19:50", "WTS B51 - Watson Center 60 Sachem Street B51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -36005,12 +74862,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "The first of four modules in a yearlong foundational biology sequence; meets for the first half of the term.", - "description": "The study of life at the molecular level. Topics include the three-dimensional structures and function of large biological molecules, the human genome, and the design of antiviral drugs to treat HIV\/AIDS.", + "description": "The study of life at the molecular level. Topics include the three-dimensional structures and function of large biological molecules, the human genome, and the design of antiviral drugs to treat HIV/AIDS.", "short_title": "Biochemistry and Biophysics", "title": "Biochemistry and Biophysics", "school": "YC", @@ -36036,7 +74921,7 @@ "11:35", "12:25", "WTS B39 - Watson Center 60 Sachem Street B39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -36053,12 +74938,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "The first of four modules in a yearlong foundational biology sequence; meets for the first half of the term.", - "description": "The study of life at the molecular level. Topics include the three-dimensional structures and function of large biological molecules, the human genome, and the design of antiviral drugs to treat HIV\/AIDS.", + "description": "The study of life at the molecular level. Topics include the three-dimensional structures and function of large biological molecules, the human genome, and the design of antiviral drugs to treat HIV/AIDS.", "short_title": "Biochemistry and Biophysics", "title": "Biochemistry and Biophysics", "school": "YC", @@ -36084,7 +74997,7 @@ "11:35", "12:25", "WTS A48 - Watson Center 60 Sachem Street A48", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -36101,12 +75014,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "The first of four modules in a yearlong foundational biology sequence; meets for the first half of the term.", - "description": "The study of life at the molecular level. Topics include the three-dimensional structures and function of large biological molecules, the human genome, and the design of antiviral drugs to treat HIV\/AIDS.", + "description": "The study of life at the molecular level. Topics include the three-dimensional structures and function of large biological molecules, the human genome, and the design of antiviral drugs to treat HIV/AIDS.", "short_title": "Biochemistry and Biophysics", "title": "Biochemistry and Biophysics", "school": "YC", @@ -36132,7 +75073,7 @@ "11:35", "12:25", "WTS A42 - Watson Center 60 Sachem Street A42", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -36149,12 +75090,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "The first of four modules in a yearlong foundational biology sequence; meets for the first half of the term.", - "description": "The study of life at the molecular level. Topics include the three-dimensional structures and function of large biological molecules, the human genome, and the design of antiviral drugs to treat HIV\/AIDS.", + "description": "The study of life at the molecular level. Topics include the three-dimensional structures and function of large biological molecules, the human genome, and the design of antiviral drugs to treat HIV/AIDS.", "short_title": "Biochemistry and Biophysics", "title": "Biochemistry and Biophysics", "school": "YC", @@ -36197,12 +75166,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "The first of four modules in a yearlong foundational biology sequence; meets for the first half of the term.", - "description": "The study of life at the molecular level. Topics include the three-dimensional structures and function of large biological molecules, the human genome, and the design of antiviral drugs to treat HIV\/AIDS.", + "description": "The study of life at the molecular level. Topics include the three-dimensional structures and function of large biological molecules, the human genome, and the design of antiviral drugs to treat HIV/AIDS.", "short_title": "Biochemistry and Biophysics", "title": "Biochemistry and Biophysics", "school": "YC", @@ -36245,12 +75242,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "The second of four modules in a yearlong foundational biology sequence; meets for the second half of the term. Prerequisite: BIOL 101.", - "description": "The study of cell biology and membrane physiology. Topics include organization and functional properties of biological membranes, membrane physiology and signaling, rough endoplasmic reticulum and synthesis of membrane\/secretory membrane proteins, endocytosis, the cytoskeleton, and cell division.", + "description": "The study of cell biology and membrane physiology. Topics include organization and functional properties of biological membranes, membrane physiology and signaling, rough endoplasmic reticulum and synthesis of membrane/secretory membrane proteins, endocytosis, the cytoskeleton, and cell division.", "short_title": "Principles of Cell Biology", "title": "Principles of Cell Biology", "school": "YC", @@ -36288,7 +75313,7 @@ "11:35", "12:50", "YSB MARSH - Yale Science Building MARSH", - "https:\/\/map.yale.edu\/?id=1910#!m\/563700" + "https://map.yale.edu/?id=1910#!m/563700" ] ], "Wednesday": [ @@ -36296,7 +75321,7 @@ "11:35", "12:50", "YSB MARSH - Yale Science Building MARSH", - "https:\/\/map.yale.edu\/?id=1910#!m\/563700" + "https://map.yale.edu/?id=1910#!m/563700" ] ] }, @@ -36310,15 +75335,494 @@ "classnotes": "", "final_exam": "Sunday, December 17, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88801\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88801/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986549615859985, + 0.9995089769363403, + 0.9989196062088013, + 0.9988129138946533, + 0.9983540773391724, + 0.9986885190010071, + 0.9987891316413879, + 0.9972262978553772, + 0.9987084865570068, + 0.9986761212348938, + 0.9988511800765991, + 0.9987626075744629, + 0.9987257122993469, + 0.9984090924263, + 0.9987843632698059, + 0.9987097978591919, + 0.998867392539978, + 0.9750075340270996, + 0.9987744688987732, + 0.9988370537757874, + 0.9988871216773987, + 0.9971912503242493, + 0.9986664056777954, + 0.9898009896278381, + 0.9985805749893188, + 0.9978123903274536, + 0.9977589845657349, + 0.9952996969223022, + 0.9984489679336548, + 0.9993278980255127, + 0.9988998174667358, + 0.9988456964492798, + 0.9986679553985596, + 0.9954985976219177, + 0.9988641738891602, + 0.9969912767410278, + 0.9989325404167175, + 0.9940410256385803, + 0.8965095281600952, + 0.9983761310577393, + 0.9986090064048767, + 0.9982737302780151, + 0.9978352189064026, + 0.9985380172729492, + 0.9988987445831299, + 0.9980373978614807, + 0.9986839890480042, + 0.999291181564331, + 0.9988216757774353, + 0.9987671375274658, + 0.9987757802009583, + 0.9985306262969971, + 0.9986357092857361, + 0.9993822574615479, + 0.9986905455589294, + 0.9987788796424866, + 0.9985187649726868, + 0.9986714124679565, + 0.9985558390617371, + 0.9986114501953125, + 0.9987159967422485, + 0.9988849759101868, + 0.998846173286438 + ], + "sentiment_counts": { + "POSITIVE": 56, + "NEGATIVE": 7 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998903751373291, + 0.9995049238204956, + 0.9994968175888062, + 0.9987710118293762, + 0.9988995790481567, + 0.9989025592803955, + 0.9982219338417053, + 0.9993842840194702, + 0.9990928173065186, + 0.9915418028831482, + 0.9994251728057861, + 0.9986388087272644, + 0.9993023872375488, + 0.9995120763778687, + 0.9987198114395142, + 0.9994970560073853, + 0.9989193677902222, + 0.9981100559234619, + 0.9988793730735779, + 0.999504566192627, + 0.9980142116546631, + 0.9986370205879211, + 0.9989155530929565, + 0.9981081485748291, + 0.9994957447052002, + 0.9993433356285095, + 0.9857255220413208, + 0.9929759502410889, + 0.9949972629547119, + 0.9970249533653259, + 0.9986326098442078, + 0.9995073080062866, + 0.9995067119598389, + 0.9989144802093506, + 0.9974476099014282, + 0.9587928652763367, + 0.9976922273635864, + 0.9974408149719238, + 0.9847581386566162, + 0.99891197681427, + 0.9877278804779053, + 0.9942724704742432, + 0.9988478422164917, + 0.998314380645752, + 0.9988999366760254, + 0.9964015483856201, + 0.9987323880195618, + 0.9995003938674927, + 0.9994706511497498, + 0.9995105266571045, + 0.9987253546714783, + 0.9971005320549011, + 0.8212008476257324, + 0.9960477948188782, + 0.9994887113571167, + 0.9948346614837646, + 0.9985584616661072, + 0.9989317059516907, + 0.9985306262969971, + 0.9925065636634827, + 0.9994891881942749, + 0.996657133102417, + 0.9935264587402344, + 0.9921815395355225, + 0.9978733062744141, + 0.9989141225814819, + 0.9973830580711365, + 0.9986056685447693, + 0.9986867308616638, + 0.9995056390762329, + 0.9976881742477417 + ], + "sentiment_counts": { + "POSITIVE": 39, + "NEGATIVE": 32 + }, + "sentiment_distribution": { + "POSITIVE": 0.5492957746478874, + "NEGATIVE": 0.4507042253521127 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9117261171340942, + 0.9982969164848328, + 0.9973058700561523, + 0.9988127946853638, + 0.9988654851913452, + 0.9975258708000183, + 0.9995051622390747, + 0.9812575578689575, + 0.9958288073539734, + 0.9989175796508789, + 0.9994945526123047, + 0.9988963603973389, + 0.9992679953575134, + 0.9983042478561401, + 0.9957422614097595, + 0.9956057667732239, + 0.9985495209693909, + 0.9942434430122375, + 0.9995083808898926, + 0.999273955821991, + 0.9234564304351807, + 0.9915928840637207, + 0.998153030872345, + 0.9989342093467712, + 0.9989055395126343, + 0.9768521189689636, + 0.9915368556976318, + 0.9995036125183105, + 0.999139666557312, + 0.9995023012161255, + 0.9967893362045288, + 0.9980652928352356, + 0.9995042085647583, + 0.9989253878593445, + 0.9987616539001465, + 0.99949049949646, + 0.9933692812919617, + 0.9988904595375061, + 0.9995012283325195, + 0.9983121156692505, + 0.993421733379364, + 0.997117280960083, + 0.9982221722602844, + 0.9982553124427795, + 0.9994994401931763, + 0.9954631924629211, + 0.9984877109527588, + 0.9924847483634949, + 0.9995089769363403, + 0.9983161687850952, + 0.9903467297554016, + 0.9989363551139832, + 0.9903355836868286, + 0.9951297044754028, + 0.998245358467102, + 0.9989182949066162, + 0.9988253712654114, + 0.9927756786346436, + 0.9985306262969971, + 0.9994606375694275, + 0.9987332224845886, + 0.9989050626754761, + 0.9988527297973633, + 0.9979693293571472, + 0.997117280960083, + 0.9985126852989197, + 0.9967393279075623, + 0.996847927570343, + 0.9995036125183105, + 0.9995020627975464, + 0.9995002746582031, + 0.9974216222763062 + ], + "sentiment_counts": { + "POSITIVE": 33, + "NEGATIVE": 39 + }, + "sentiment_distribution": { + "POSITIVE": 0.4583333333333333, + "NEGATIVE": 0.5416666666666666 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "final_label": "POSITIVE", + "final_count": 128, + "final_proportion": 0.6213592233009708, + "final_counts": { + "POSITIVE": 128, + "NEGATIVE": 78 + }, + "final_distribution": { + "POSITIVE": 0.6213592233009708, + "NEGATIVE": 0.3786407766990291 + } + } }, { "season_code": "202303", "requirements": "The second of four modules in a yearlong foundational biology sequence; meets for the second half of the term. Prerequisite: BIOL 101.", - "description": "The study of cell biology and membrane physiology. Topics include organization and functional properties of biological membranes, membrane physiology and signaling, rough endoplasmic reticulum and synthesis of membrane\/secretory membrane proteins, endocytosis, the cytoskeleton, and cell division.", + "description": "The study of cell biology and membrane physiology. Topics include organization and functional properties of biological membranes, membrane physiology and signaling, rough endoplasmic reticulum and synthesis of membrane/secretory membrane proteins, endocytosis, the cytoskeleton, and cell division.", "short_title": "Principles of Cell Biology", "title": "Principles of Cell Biology", "school": "YC", @@ -36344,7 +75848,7 @@ "15:30", "16:20", "WTS B51 - Watson Center 60 Sachem Street B51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -36361,12 +75865,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "The second of four modules in a yearlong foundational biology sequence; meets for the second half of the term. Prerequisite: BIOL 101.", - "description": "The study of cell biology and membrane physiology. Topics include organization and functional properties of biological membranes, membrane physiology and signaling, rough endoplasmic reticulum and synthesis of membrane\/secretory membrane proteins, endocytosis, the cytoskeleton, and cell division.", + "description": "The study of cell biology and membrane physiology. Topics include organization and functional properties of biological membranes, membrane physiology and signaling, rough endoplasmic reticulum and synthesis of membrane/secretory membrane proteins, endocytosis, the cytoskeleton, and cell division.", "short_title": "Principles of Cell Biology", "title": "Principles of Cell Biology", "school": "YC", @@ -36392,7 +75924,7 @@ "19:00", "19:50", "WTS A39 - Watson Center 60 Sachem Street A39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -36409,12 +75941,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "The second of four modules in a yearlong foundational biology sequence; meets for the second half of the term. Prerequisite: BIOL 101.", - "description": "The study of cell biology and membrane physiology. Topics include organization and functional properties of biological membranes, membrane physiology and signaling, rough endoplasmic reticulum and synthesis of membrane\/secretory membrane proteins, endocytosis, the cytoskeleton, and cell division.", + "description": "The study of cell biology and membrane physiology. Topics include organization and functional properties of biological membranes, membrane physiology and signaling, rough endoplasmic reticulum and synthesis of membrane/secretory membrane proteins, endocytosis, the cytoskeleton, and cell division.", "short_title": "Principles of Cell Biology", "title": "Principles of Cell Biology", "school": "YC", @@ -36440,7 +76000,7 @@ "19:00", "19:50", "WTS A38 - Watson Center 60 Sachem Street A38", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -36457,12 +76017,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "The second of four modules in a yearlong foundational biology sequence; meets for the second half of the term. Prerequisite: BIOL 101.", - "description": "The study of cell biology and membrane physiology. Topics include organization and functional properties of biological membranes, membrane physiology and signaling, rough endoplasmic reticulum and synthesis of membrane\/secretory membrane proteins, endocytosis, the cytoskeleton, and cell division.", + "description": "The study of cell biology and membrane physiology. Topics include organization and functional properties of biological membranes, membrane physiology and signaling, rough endoplasmic reticulum and synthesis of membrane/secretory membrane proteins, endocytosis, the cytoskeleton, and cell division.", "short_title": "Principles of Cell Biology", "title": "Principles of Cell Biology", "school": "YC", @@ -36488,7 +76076,7 @@ "9:25", "10:15", "LC 104 - Linsly-Chittenden Hall 104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -36505,12 +76093,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "The second of four modules in a yearlong foundational biology sequence; meets for the second half of the term. Prerequisite: BIOL 101.", - "description": "The study of cell biology and membrane physiology. Topics include organization and functional properties of biological membranes, membrane physiology and signaling, rough endoplasmic reticulum and synthesis of membrane\/secretory membrane proteins, endocytosis, the cytoskeleton, and cell division.", + "description": "The study of cell biology and membrane physiology. Topics include organization and functional properties of biological membranes, membrane physiology and signaling, rough endoplasmic reticulum and synthesis of membrane/secretory membrane proteins, endocytosis, the cytoskeleton, and cell division.", "short_title": "Principles of Cell Biology", "title": "Principles of Cell Biology", "school": "YC", @@ -36536,7 +76152,7 @@ "10:30", "11:20", "LC 103 - Linsly-Chittenden Hall 103", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -36553,12 +76169,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "The second of four modules in a yearlong foundational biology sequence; meets for the second half of the term. Prerequisite: BIOL 101.", - "description": "The study of cell biology and membrane physiology. Topics include organization and functional properties of biological membranes, membrane physiology and signaling, rough endoplasmic reticulum and synthesis of membrane\/secretory membrane proteins, endocytosis, the cytoskeleton, and cell division.", + "description": "The study of cell biology and membrane physiology. Topics include organization and functional properties of biological membranes, membrane physiology and signaling, rough endoplasmic reticulum and synthesis of membrane/secretory membrane proteins, endocytosis, the cytoskeleton, and cell division.", "short_title": "Principles of Cell Biology", "title": "Principles of Cell Biology", "school": "YC", @@ -36584,7 +76228,7 @@ "10:30", "11:20", "WLH 211 - William L. Harkness Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -36601,12 +76245,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "The second of four modules in a yearlong foundational biology sequence; meets for the second half of the term. Prerequisite: BIOL 101.", - "description": "The study of cell biology and membrane physiology. Topics include organization and functional properties of biological membranes, membrane physiology and signaling, rough endoplasmic reticulum and synthesis of membrane\/secretory membrane proteins, endocytosis, the cytoskeleton, and cell division.", + "description": "The study of cell biology and membrane physiology. Topics include organization and functional properties of biological membranes, membrane physiology and signaling, rough endoplasmic reticulum and synthesis of membrane/secretory membrane proteins, endocytosis, the cytoskeleton, and cell division.", "short_title": "Principles of Cell Biology", "title": "Principles of Cell Biology", "school": "YC", @@ -36632,7 +76304,7 @@ "19:00", "19:50", "WTS B30 - Watson Center 60 Sachem Street B30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -36649,12 +76321,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "The second of four modules in a yearlong foundational biology sequence; meets for the second half of the term. Prerequisite: BIOL 101.", - "description": "The study of cell biology and membrane physiology. Topics include organization and functional properties of biological membranes, membrane physiology and signaling, rough endoplasmic reticulum and synthesis of membrane\/secretory membrane proteins, endocytosis, the cytoskeleton, and cell division.", + "description": "The study of cell biology and membrane physiology. Topics include organization and functional properties of biological membranes, membrane physiology and signaling, rough endoplasmic reticulum and synthesis of membrane/secretory membrane proteins, endocytosis, the cytoskeleton, and cell division.", "short_title": "Principles of Cell Biology", "title": "Principles of Cell Biology", "school": "YC", @@ -36680,7 +76380,7 @@ "19:00", "19:50", "WTS B51 - Watson Center 60 Sachem Street B51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -36697,12 +76397,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "The second of four modules in a yearlong foundational biology sequence; meets for the second half of the term. Prerequisite: BIOL 101.", - "description": "The study of cell biology and membrane physiology. Topics include organization and functional properties of biological membranes, membrane physiology and signaling, rough endoplasmic reticulum and synthesis of membrane\/secretory membrane proteins, endocytosis, the cytoskeleton, and cell division.", + "description": "The study of cell biology and membrane physiology. Topics include organization and functional properties of biological membranes, membrane physiology and signaling, rough endoplasmic reticulum and synthesis of membrane/secretory membrane proteins, endocytosis, the cytoskeleton, and cell division.", "short_title": "Principles of Cell Biology", "title": "Principles of Cell Biology", "school": "YC", @@ -36728,7 +76456,7 @@ "11:35", "12:25", "WTS B39 - Watson Center 60 Sachem Street B39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -36745,12 +76473,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "The second of four modules in a yearlong foundational biology sequence; meets for the second half of the term. Prerequisite: BIOL 101.", - "description": "The study of cell biology and membrane physiology. Topics include organization and functional properties of biological membranes, membrane physiology and signaling, rough endoplasmic reticulum and synthesis of membrane\/secretory membrane proteins, endocytosis, the cytoskeleton, and cell division.", + "description": "The study of cell biology and membrane physiology. Topics include organization and functional properties of biological membranes, membrane physiology and signaling, rough endoplasmic reticulum and synthesis of membrane/secretory membrane proteins, endocytosis, the cytoskeleton, and cell division.", "short_title": "Principles of Cell Biology", "title": "Principles of Cell Biology", "school": "YC", @@ -36776,7 +76532,7 @@ "11:35", "12:25", "WTS A48 - Watson Center 60 Sachem Street A48", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -36793,12 +76549,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "The second of four modules in a yearlong foundational biology sequence; meets for the second half of the term. Prerequisite: BIOL 101.", - "description": "The study of cell biology and membrane physiology. Topics include organization and functional properties of biological membranes, membrane physiology and signaling, rough endoplasmic reticulum and synthesis of membrane\/secretory membrane proteins, endocytosis, the cytoskeleton, and cell division.", + "description": "The study of cell biology and membrane physiology. Topics include organization and functional properties of biological membranes, membrane physiology and signaling, rough endoplasmic reticulum and synthesis of membrane/secretory membrane proteins, endocytosis, the cytoskeleton, and cell division.", "short_title": "Principles of Cell Biology", "title": "Principles of Cell Biology", "school": "YC", @@ -36824,7 +76608,7 @@ "11:35", "12:25", "WTS A42 - Watson Center 60 Sachem Street A42", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -36841,12 +76625,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "The second of four modules in a yearlong foundational biology sequence; meets for the second half of the term. Prerequisite: BIOL 101.", - "description": "The study of cell biology and membrane physiology. Topics include organization and functional properties of biological membranes, membrane physiology and signaling, rough endoplasmic reticulum and synthesis of membrane\/secretory membrane proteins, endocytosis, the cytoskeleton, and cell division.", + "description": "The study of cell biology and membrane physiology. Topics include organization and functional properties of biological membranes, membrane physiology and signaling, rough endoplasmic reticulum and synthesis of membrane/secretory membrane proteins, endocytosis, the cytoskeleton, and cell division.", "short_title": "Principles of Cell Biology", "title": "Principles of Cell Biology", "school": "YC", @@ -36889,12 +76701,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "The second of four modules in a yearlong foundational biology sequence; meets for the second half of the term. Prerequisite: BIOL 101.", - "description": "The study of cell biology and membrane physiology. Topics include organization and functional properties of biological membranes, membrane physiology and signaling, rough endoplasmic reticulum and synthesis of membrane\/secretory membrane proteins, endocytosis, the cytoskeleton, and cell division.", + "description": "The study of cell biology and membrane physiology. Topics include organization and functional properties of biological membranes, membrane physiology and signaling, rough endoplasmic reticulum and synthesis of membrane/secretory membrane proteins, endocytosis, the cytoskeleton, and cell division.", "short_title": "Principles of Cell Biology", "title": "Principles of Cell Biology", "school": "YC", @@ -36937,7 +76777,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -36977,7 +76845,7 @@ "11:35", "12:50", "OML 202 - Osborn Memorial Laboratories 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/559958" + "https://map.yale.edu/?id=1910#!m/559958" ] ], "Wednesday": [ @@ -36985,7 +76853,7 @@ "11:35", "12:50", "OML 202 - Osborn Memorial Laboratories 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/559958" + "https://map.yale.edu/?id=1910#!m/559958" ] ] }, @@ -36999,10 +76867,343 @@ "classnotes": "Prerequisite: BIOL 101 and BIOL 102 or BIOL 101 and 102, or equivalent performance on the corresponding biological sciences placement examinations", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88802\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88802/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9866713881492615, + 0.9984403252601624, + 0.8593174815177917, + 0.9989113807678223, + 0.979684591293335, + 0.9915748238563538, + 0.9987622499465942, + 0.9980119466781616, + 0.998751163482666, + 0.9987844824790955, + 0.9988515377044678, + 0.9988861680030823, + 0.9989209175109863, + 0.9994983673095703, + 0.998166024684906, + 0.9938629865646362, + 0.998855471611023, + 0.996192216873169, + 0.9989144802093506, + 0.9987978935241699, + 0.9989233613014221, + 0.9994856119155884, + 0.9983896017074585, + 0.9994408488273621, + 0.9986385703086853, + 0.9986878037452698, + 0.9983875751495361, + 0.9900705218315125, + 0.9983090162277222, + 0.998845100402832, + 0.998637855052948, + 0.9972364902496338, + 0.9986282587051392, + 0.9736562967300415, + 0.9988552331924438, + 0.9978756904602051, + 0.9989198446273804, + 0.9988717436790466, + 0.9987180233001709, + 0.9988627433776855, + 0.9988433122634888 + ], + "sentiment_counts": { + "POSITIVE": 34, + "NEGATIVE": 7 + }, + "sentiment_distribution": { + "POSITIVE": 0.8292682926829268, + "NEGATIVE": 0.17073170731707318 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8292682926829268 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9869298934936523, + 0.9994912147521973, + 0.9983614087104797, + 0.9992865920066833, + 0.9981344938278198, + 0.9995032548904419, + 0.9926331639289856, + 0.9982637763023376, + 0.9995033740997314, + 0.9906399250030518, + 0.9943240880966187, + 0.9937359094619751, + 0.9994978904724121, + 0.999496340751648, + 0.9962825179100037, + 0.998518168926239, + 0.9995092153549194, + 0.9994662404060364, + 0.9916844367980957, + 0.9981428384780884, + 0.9986442923545837, + 0.9978258013725281, + 0.9995013475418091, + 0.9964016675949097, + 0.9948613047599792, + 0.9974727034568787, + 0.7640396356582642, + 0.9980432987213135, + 0.9993999004364014, + 0.9995027780532837, + 0.995707631111145, + 0.9994667172431946, + 0.9988345503807068, + 0.9995023012161255, + 0.9994977712631226, + 0.9972364902496338, + 0.9983023405075073, + 0.9995015859603882, + 0.999498724937439, + 0.9995001554489136, + 0.9994174242019653, + 0.9923478364944458, + 0.9993498921394348, + 0.9995012283325195, + 0.9986830353736877, + 0.9986097812652588, + 0.9984295964241028, + 0.9994862079620361, + 0.998615026473999 + ], + "sentiment_counts": { + "NEGATIVE": 34, + "POSITIVE": 15 + }, + "sentiment_distribution": { + "NEGATIVE": 0.6938775510204082, + "POSITIVE": 0.30612244897959184 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.6938775510204082 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9995067119598389, + 0.9995037317276001, + 0.9967984557151794, + 0.9992356300354004, + 0.998890221118927, + 0.9994951486587524, + 0.9995009899139404, + 0.999492883682251, + 0.9989109039306641, + 0.9995051622390747, + 0.9981909394264221, + 0.9995162487030029, + 0.9995046854019165, + 0.9994874000549316, + 0.9955840706825256, + 0.9914877414703369, + 0.9988768696784973, + 0.9983830451965332, + 0.9988786578178406, + 0.9988214373588562, + 0.9846190810203552, + 0.9990066885948181, + 0.9986335635185242, + 0.9993947744369507, + 0.9940144419670105, + 0.9995026588439941, + 0.9985660910606384, + 0.9945467710494995, + 0.9994921684265137, + 0.9972364902496338, + 0.9982660412788391, + 0.9994580149650574, + 0.9980485439300537, + 0.9878173470497131, + 0.9989058971405029, + 0.9995050430297852, + 0.9941092729568481, + 0.9994789958000183, + 0.9963585734367371, + 0.9983184337615967, + 0.9995115995407104, + 0.9984985589981079, + 0.9989018440246582 + ], + "sentiment_counts": { + "NEGATIVE": 30, + "POSITIVE": 13 + }, + "sentiment_distribution": { + "NEGATIVE": 0.6976744186046512, + "POSITIVE": 0.3023255813953488 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.6976744186046512 + ] + }, + "final_label": "neutral", + "final_count": 71, + "final_proportion": 0.5, + "final_counts": { + "POSITIVE": 62, + "NEGATIVE": 71 + }, + "final_distribution": { + "POSITIVE": 0.46616541353383456, + "NEGATIVE": 0.5338345864661654 + } + } }, { "season_code": "202303", @@ -37033,7 +77234,7 @@ "15:30", "16:20", "WTS A46 - Watson Center 60 Sachem Street A46", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -37050,7 +77251,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -37081,7 +77310,7 @@ "19:00", "19:50", "WTS A68 - Watson Center 60 Sachem Street A68", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -37098,7 +77327,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -37129,7 +77386,7 @@ "19:00", "19:50", "WTS B39 - Watson Center 60 Sachem Street B39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -37146,7 +77403,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -37177,7 +77462,7 @@ "9:25", "10:15", "WTS A42 - Watson Center 60 Sachem Street A42", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -37194,7 +77479,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -37225,7 +77538,7 @@ "10:30", "11:20", "WTS B35 - Watson Center 60 Sachem Street B35", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -37242,7 +77555,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -37298,7 +77639,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -37354,7 +77723,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -37385,7 +77782,7 @@ "19:00", "19:50", "WTS B52 - Watson Center 60 Sachem Street B52", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -37402,7 +77799,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -37433,7 +77858,7 @@ "11:35", "12:25", "WTS A38 - Watson Center 60 Sachem Street A38", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -37450,7 +77875,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -37481,7 +77934,7 @@ "11:35", "12:25", "WTS A35 - Watson Center 60 Sachem Street A35", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -37498,7 +77951,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -37554,7 +78035,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -37594,7 +78103,7 @@ "11:35", "12:50", "OML 202 - Osborn Memorial Laboratories 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/559958" + "https://map.yale.edu/?id=1910#!m/559958" ] ], "Wednesday": [ @@ -37602,7 +78111,7 @@ "11:35", "12:50", "OML 202 - Osborn Memorial Laboratories 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/559958" + "https://map.yale.edu/?id=1910#!m/559958" ] ] }, @@ -37616,10 +78125,223 @@ "classnotes": "", "final_exam": "Sunday, December 17, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88355\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88355/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988331198692322, + 0.9987131357192993, + 0.9988536834716797, + 0.9988856911659241, + 0.9988484382629395, + 0.9986156225204468, + 0.9985491633415222, + 0.9986710548400879, + 0.998924195766449, + 0.9984081387519836, + 0.9575076699256897, + 0.9956421852111816, + 0.9990712404251099, + 0.9988747239112854, + 0.9985802173614502, + 0.9936937689781189, + 0.9865522980690002, + 0.9987413287162781, + 0.9988116025924683, + 0.9988337159156799, + 0.9988864064216614 + ], + "sentiment_counts": { + "POSITIVE": 20, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9523809523809523, + "NEGATIVE": 0.047619047619047616 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9523809523809523 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9995107650756836, + 0.9973710775375366, + 0.9989114999771118, + 0.9994853734970093, + 0.9988610744476318, + 0.9989157915115356, + 0.99842369556427, + 0.9983108043670654, + 0.9987322688102722, + 0.9957146048545837, + 0.8891069889068604, + 0.9985847473144531, + 0.9985935091972351, + 0.9985288381576538, + 0.9989463686943054, + 0.9988418221473694, + 0.9988357424736023, + 0.9986675977706909, + 0.9988601207733154, + 0.9987630844116211, + 0.9987780451774597, + 0.998712420463562, + 0.992622971534729, + 0.9987338185310364, + 0.9989222288131714, + 0.998141884803772 + ], + "sentiment_counts": { + "NEGATIVE": 6, + "POSITIVE": 20 + }, + "sentiment_distribution": { + "NEGATIVE": 0.23076923076923078, + "POSITIVE": 0.7692307692307693 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7692307692307693 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994922876358032, + 0.9975702166557312, + 0.9987841248512268, + 0.9989221096038818, + 0.9984301924705505, + 0.9989374279975891, + 0.9983333945274353, + 0.9969808459281921, + 0.9988424181938171, + 0.996966540813446, + 0.9987717270851135, + 0.9988847374916077, + 0.9989070892333984, + 0.997744083404541, + 0.9987862706184387, + 0.998890221118927, + 0.9983963370323181, + 0.9989004135131836, + 0.9888024926185608, + 0.9987913966178894, + 0.9994992017745972, + 0.9988987445831299, + 0.9988020658493042, + 0.998847246170044, + 0.9947401881217957, + 0.9977164268493652 + ], + "sentiment_counts": { + "NEGATIVE": 4, + "POSITIVE": 22 + }, + "sentiment_distribution": { + "NEGATIVE": 0.15384615384615385, + "POSITIVE": 0.8461538461538461 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8461538461538461 + ] + }, + "final_label": "POSITIVE", + "final_count": 62, + "final_proportion": 0.8493150684931506, + "final_counts": { + "POSITIVE": 62, + "NEGATIVE": 11 + }, + "final_distribution": { + "POSITIVE": 0.8493150684931506, + "NEGATIVE": 0.1506849315068493 + } + } }, { "season_code": "202303", @@ -37650,7 +78372,7 @@ "15:30", "16:20", "WTS A46 - Watson Center 60 Sachem Street A46", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -37667,7 +78389,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -37698,7 +78448,7 @@ "19:00", "19:50", "WTS A68 - Watson Center 60 Sachem Street A68", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -37715,7 +78465,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -37746,7 +78524,7 @@ "19:00", "19:50", "WTS B39 - Watson Center 60 Sachem Street B39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -37763,7 +78541,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -37794,7 +78600,7 @@ "9:25", "10:15", "WTS A42 - Watson Center 60 Sachem Street A42", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -37811,7 +78617,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -37842,7 +78676,7 @@ "10:30", "11:20", "WTS B35 - Watson Center 60 Sachem Street B35", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -37859,7 +78693,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -37915,7 +78777,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -37971,7 +78861,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -38002,7 +78920,7 @@ "19:00", "19:50", "WTS B52 - Watson Center 60 Sachem Street B52", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -38019,7 +78937,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -38050,7 +78996,7 @@ "11:35", "12:25", "WTS A38 - Watson Center 60 Sachem Street A38", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -38067,7 +79013,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -38098,7 +79072,7 @@ "11:35", "12:25", "WTS A35 - Watson Center 60 Sachem Street A35", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -38115,7 +79089,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -38171,7 +79173,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -38211,7 +79241,7 @@ "12:00", "12:50", "CO47 106 A & B - 47 College Street (CLP) 106 A & B", - "https:\/\/map.yale.edu\/?id=1910#!m\/559997" + "https://map.yale.edu/?id=1910#!m/559997" ] ] }, @@ -38223,10 +79253,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90920\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90920/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -38263,7 +79321,7 @@ "13:00", "14:50", "LEPH 115 - Laboratory of EPH 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ] }, @@ -38275,10 +79333,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90924\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90924/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -38318,10 +79404,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90928\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90928/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -38358,7 +79472,7 @@ "19:00", "20:50", "CO47 106B - 47 College Street (CLP) 106B", - "https:\/\/map.yale.edu\/?id=1910#!m\/559997" + "https://map.yale.edu/?id=1910#!m/559997" ] ] }, @@ -38370,15 +79484,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90932\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90932/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "Permission of the instructor required.", - "description": "Health Informatics is a diverse and varied field. This course is designed to provide a general introduction to health informatics. Students will gain foundational knowledge in clinical information systems, health data standards, electronic health records and data security\/privacy issues, among other areas.\u00a0 Students will survey a variety of informatics subfields including research, laboratory\/precision medicine, imaging, and artificial intelligence. A particular focus for the course will be conceptual underpinnings that generalized well to all informatics disciplines", + "description": "Health Informatics is a diverse and varied field. This course is designed to provide a general introduction to health informatics. Students will gain foundational knowledge in clinical information systems, health data standards, electronic health records and data security/privacy issues, among other areas.\u00a0 Students will survey a variety of informatics subfields including research, laboratory/precision medicine, imaging, and artificial intelligence. A particular focus for the course will be conceptual underpinnings that generalized well to all informatics disciplines", "short_title": "Introduction to Health Inform...", "title": "Introduction to Health Informatics", "school": "PH", @@ -38411,7 +79553,7 @@ "10:30", "11:45", "LEPH 115 - Laboratory of EPH 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ], "Thursday": [ @@ -38419,7 +79561,7 @@ "10:30", "11:45", "LEPH 115 - Laboratory of EPH 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ] }, @@ -38431,15 +79573,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88378\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88378/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "Prerequisite: BIS 560 or CB&B 740.", - "description": "Building on BIS 560\/CB&B 740, this course provides the purpose, scope, and history of decision support systems within health care. Using a weekly hands-on application of knowledge acquired in the lecture portion of the course, students identify a clinical need and prototype their own clinical decision support solution. Solutions are then presented in a \"shark tank\" format to iteratively refine them to yield a final product that is capable of real-world implementation.", + "description": "Building on BIS 560/CB&B 740, this course provides the purpose, scope, and history of decision support systems within health care. Using a weekly hands-on application of knowledge acquired in the lecture portion of the course, students identify a clinical need and prototype their own clinical decision support solution. Solutions are then presented in a \"shark tank\" format to iteratively refine them to yield a final product that is capable of real-world implementation.", "short_title": "Clinical Decision Support", "title": "Clinical Decision Support", "school": "PH", @@ -38474,7 +79644,7 @@ "13:00", "14:50", "LEPH 101 - Laboratory of EPH 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ] }, @@ -38486,10 +79656,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90936\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90936/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -38526,7 +79724,7 @@ "10:00", "11:50", "CO47 106B - 47 College Street (CLP) 106B", - "https:\/\/map.yale.edu\/?id=1910#!m\/559997" + "https://map.yale.edu/?id=1910#!m/559997" ] ], "Friday": [ @@ -38534,7 +79732,7 @@ "13:00", "14:20", "CO47 106B - 47 College Street (CLP) 106B", - "https:\/\/map.yale.edu\/?id=1910#!m\/559997" + "https://map.yale.edu/?id=1910#!m/559997" ] ] }, @@ -38551,7 +79749,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -38591,7 +79817,7 @@ "13:00", "14:50", "LEPH WINSL - Laboratory of EPH WINSL", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ] }, @@ -38605,15 +79831,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90944\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90944/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "This course provides students with an introduction to regulatory affairs science, as these issues apply to the regulation of food, pharmaceuticals, and medical and diagnostic devices. The course covers a broad range of specialties that focus on issues including legal underpinnings of the regulatory process, compliance, phases of clinical testing and regulatory milestones, clinical trials design and monitoring, quality assurance, post-marketing study design in response to regulatory and other needs, and post-marketing risk management. The complexities of this process require awareness of leadership and change management skills. Topics to be discussed include: (1) the nature and scope of the International Conference on Harmonization, and its guidelines for regulatory affairs in the global environment; (2) drug development, the FDA, and principles of regulatory affairs in this environment; (3) the practice of global regulatory affairs from an industry perspective; (4) description\/structure\/issues of current special importance to the U.S. FDA; (5) historical background and FDA jurisdiction of food and drug law; (6) the drug development process including specification of the important milestone meetings with the FDA; (7) risk analysis and approaches to its evaluation; (8) use of Bayesian statistics in medical device evaluation, a new approach; (9) use of data monitoring committees and other statistical methods for regulatory compliance; (10) developments in leadership and change management; and (11) food quality assurance including risk analysis\/compliance\/enforcement. Through course participation, students also have opportunities to meet informally with faculty and outside speakers to explore additional regulatory issues of current interest.", + "description": "This course provides students with an introduction to regulatory affairs science, as these issues apply to the regulation of food, pharmaceuticals, and medical and diagnostic devices. The course covers a broad range of specialties that focus on issues including legal underpinnings of the regulatory process, compliance, phases of clinical testing and regulatory milestones, clinical trials design and monitoring, quality assurance, post-marketing study design in response to regulatory and other needs, and post-marketing risk management. The complexities of this process require awareness of leadership and change management skills. Topics to be discussed include: (1) the nature and scope of the International Conference on Harmonization, and its guidelines for regulatory affairs in the global environment; (2) drug development, the FDA, and principles of regulatory affairs in this environment; (3) the practice of global regulatory affairs from an industry perspective; (4) description/structure/issues of current special importance to the U.S. FDA; (5) historical background and FDA jurisdiction of food and drug law; (6) the drug development process including specification of the important milestone meetings with the FDA; (7) risk analysis and approaches to its evaluation; (8) use of Bayesian statistics in medical device evaluation, a new approach; (9) use of data monitoring committees and other statistical methods for regulatory compliance; (10) developments in leadership and change management; and (11) food quality assurance including risk analysis/compliance/enforcement. Through course participation, students also have opportunities to meet informally with faculty and outside speakers to explore additional regulatory issues of current interest.", "short_title": "Introduction to Regulatory Af...", "title": "Introduction to Regulatory Affairs", "school": "PH", @@ -38645,7 +79899,7 @@ "10:00", "11:50", "LEPH 103 - Laboratory of EPH 103", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ] }, @@ -38657,10 +79911,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90948\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90948/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -38703,7 +79985,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -38740,7 +80050,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -38777,7 +80115,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -38814,7 +80180,7 @@ "10:40", "12:00", "CO47 106A - 47 College Street (CLP) 106A", - "https:\/\/map.yale.edu\/?id=1910#!m\/559997" + "https://map.yale.edu/?id=1910#!m/559997" ] ], "Wednesday": [ @@ -38822,7 +80188,7 @@ "10:40", "12:00", "CO47 106A - 47 College Street (CLP) 106A", - "https:\/\/map.yale.edu\/?id=1910#!m\/559997" + "https://map.yale.edu/?id=1910#!m/559997" ] ] }, @@ -38837,12 +80203,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "Prerequisite: EPH 505 or equivalent. Not open to auditors.", - "description": "This course focuses on the applications of regression models and is intended for students who have completed an introductory statistics class but who wish to acquire the additional statistical skills needed for the independent conduct and analysis of study designs frequently seen in public health. Topics include model selection, implementation and interpretation for linear regression with continuous outcomes, logistic regression with binary\/multinomial\/ordinal outcomes, and proportional hazards regression with survival time outcomes. The class explores advanced topics within these domains including the analysis of (1) blocked and nested study designs, (2) linear contrasts and multiple comparisons, (3) longitudinal data or repeated measures, (4) missing data, and (5) pragmatic clinical trials using propensity scores to reduce selection bias, etc. SAS software is used for analysis of data.", + "description": "This course focuses on the applications of regression models and is intended for students who have completed an introductory statistics class but who wish to acquire the additional statistical skills needed for the independent conduct and analysis of study designs frequently seen in public health. Topics include model selection, implementation and interpretation for linear regression with continuous outcomes, logistic regression with binary/multinomial/ordinal outcomes, and proportional hazards regression with survival time outcomes. The class explores advanced topics within these domains including the analysis of (1) blocked and nested study designs, (2) linear contrasts and multiple comparisons, (3) longitudinal data or repeated measures, (4) missing data, and (5) pragmatic clinical trials using propensity scores to reduce selection bias, etc. SAS software is used for analysis of data.", "short_title": "Regression Models for Public ...", "title": "Regression Models for Public Health", "school": "PH", @@ -38874,7 +80268,7 @@ "10:00", "11:20", "CO47 106B - 47 College Street (CLP) 106B", - "https:\/\/map.yale.edu\/?id=1910#!m\/559997" + "https://map.yale.edu/?id=1910#!m/559997" ] ], "Wednesday": [ @@ -38882,7 +80276,7 @@ "10:00", "11:20", "CO47 106B - 47 College Street (CLP) 106B", - "https:\/\/map.yale.edu\/?id=1910#!m\/559997" + "https://map.yale.edu/?id=1910#!m/559997" ] ] }, @@ -38894,10 +80288,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90966\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90966/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -38934,7 +80356,7 @@ "10:00", "11:50", "LEPH WINSL - Laboratory of EPH WINSL", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ], "Friday": [ @@ -38942,7 +80364,7 @@ "8:00", "8:50", "LEPH WINSL - Laboratory of EPH WINSL", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ] }, @@ -38957,12 +80379,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "Prerequisites: S&DS 541 and S&DS 542 or equivalents, or permission of the instructor.", - "description": "The course presents methods for the design and analysis of studies arising in the implementation and prevention science space. These studies implement a range of cluster-randomized designs, quasi-experimental designs, and observational designs. This course consists of two parts. The first provides an exposition of the theory and analytic techniques used in the design and analysis of experimental studies arising in implementation and prevention science. The second covers the design and analysis of quasi-experimental and observational studies. SAS\/R is used for problem sets. Through the provision of student PASS licenses, competency in the use of this leading software for study design is acquired.", + "description": "The course presents methods for the design and analysis of studies arising in the implementation and prevention science space. These studies implement a range of cluster-randomized designs, quasi-experimental designs, and observational designs. This course consists of two parts. The first provides an exposition of the theory and analytic techniques used in the design and analysis of experimental studies arising in implementation and prevention science. The second covers the design and analysis of quasi-experimental and observational studies. SAS/R is used for problem sets. Through the provision of student PASS licenses, competency in the use of this leading software for study design is acquired.", "short_title": "Advanced Methods for Implemen...", "title": "Advanced Methods for Implementation and Prevention Science", "school": "PH", @@ -38994,7 +80444,7 @@ "15:00", "16:50", "LEPH 102 - Laboratory of EPH 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ], "Friday": [ @@ -39002,7 +80452,7 @@ "15:00", "15:50", "CO135 - CO135", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ] }, @@ -39014,10 +80464,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90975\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90975/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -39054,13 +80532,13 @@ "8:00", "9:50", "LEPH 115 - Laboratory of EPH 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ], [ "15:00", "15:50", "LEPH 115 - Laboratory of EPH 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ] }, @@ -39072,10 +80550,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90980\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90980/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -39113,7 +80619,7 @@ "15:00", "16:20", "LEPH 115 - Laboratory of EPH 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ], "Thursday": [ @@ -39121,7 +80627,7 @@ "15:00", "16:20", "LEPH 115 - Laboratory of EPH 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ], "Wednesday": [ @@ -39129,7 +80635,7 @@ "11:00", "11:50", "LEPH 115 - Laboratory of EPH 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ] }, @@ -39141,15 +80647,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89306\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89306/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "Prerequisite: CPSC 223 or permission of the instructors. The general expectation to obtain instructor permission is that students have basic command of the Python programming language sufficient to pass CPSC 223 or the equivalent.", - "description": "This course introduces database and ontology in the clinical\/public health domain. It reviews how data and information are generated in clinical\/public health settings. It introduces different approaches to representing, modeling, managing, querying, and integrating clinical\/public health data. In terms of database technologies, the course describes two main approaches\u2014SQL database and non-SQL (NoSQL) database\u2014and shows how these technologies can be used to build electronic health records (EHR), data repositories, and data warehouses. In terms of ontologies, it discusses how ontologies are used in connecting and integrating data with machine-readable knowledge. The course reviews the major theories, methods, and tools for the design and development of databases and ontologies. It also includes clinical\/public health use cases demonstrating how databases and ontologies are used to support clinical\/public health research.", + "description": "This course introduces database and ontology in the clinical/public health domain. It reviews how data and information are generated in clinical/public health settings. It introduces different approaches to representing, modeling, managing, querying, and integrating clinical/public health data. In terms of database technologies, the course describes two main approaches\u2014SQL database and non-SQL (NoSQL) database\u2014and shows how these technologies can be used to build electronic health records (EHR), data repositories, and data warehouses. In terms of ontologies, it discusses how ontologies are used in connecting and integrating data with machine-readable knowledge. The course reviews the major theories, methods, and tools for the design and development of databases and ontologies. It also includes clinical/public health use cases demonstrating how databases and ontologies are used to support clinical/public health research.", "short_title": "Clinical Database Management ...", "title": "Clinical Database Management Systems and Ontologies", "school": "PH", @@ -39185,7 +80719,7 @@ "13:00", "14:50", "LEPH WINSL - Laboratory of EPH WINSL", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ] }, @@ -39197,10 +80731,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89307\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89307/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -39243,7 +80805,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -39289,7 +80879,7 @@ "13:00", "14:50", "CO47 106B - 47 College Street (CLP) 106B", - "https:\/\/map.yale.edu\/?id=1910#!m\/559997" + "https://map.yale.edu/?id=1910#!m/559997" ] ] }, @@ -39301,10 +80891,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90987\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90987/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -39341,7 +80959,7 @@ "13:00", "14:50", "CO47 106 A & B - 47 College Street (CLP) 106 A & B", - "https:\/\/map.yale.edu\/?id=1910#!m\/559997" + "https://map.yale.edu/?id=1910#!m/559997" ] ], "Wednesday": [ @@ -39349,7 +80967,7 @@ "16:30", "17:20", "CO47 106 A & B - 47 College Street (CLP) 106 A & B", - "https:\/\/map.yale.edu\/?id=1910#!m\/559997" + "https://map.yale.edu/?id=1910#!m/559997" ] ] }, @@ -39361,15 +80979,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90991\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90991/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", - "requirements": "Prerequisites: BIS 560\/CB&B 740 and BIS 550\/CB&B 750, or equivalents.", - "description": "Building on BIS 560\/CB&B 740 and BIS 550\/CB&B 750, this course provides the opportunity for master\u2019s-level integration of basic informatics theory and practice through the use of modules focusing on the workflow of major health informatics projects. Students have two major projects throughout the course, including a team project where additional reflection on coordination of responsibilities and teamwork is essential. Each student is also able to work on a term-long individual module or choose to individually continue to advance the previous team project. The final projects are meant to show how the student integrates informatics theory, skills, and stakeholder\u2019s needs into a final product or project that may be developed into a deliverable for general public use.", + "requirements": "Prerequisites: BIS 560/CB&B 740 and BIS 550/CB&B 750, or equivalents.", + "description": "Building on BIS 560/CB&B 740 and BIS 550/CB&B 750, this course provides the opportunity for master\u2019s-level integration of basic informatics theory and practice through the use of modules focusing on the workflow of major health informatics projects. Students have two major projects throughout the course, including a team project where additional reflection on coordination of responsibilities and teamwork is essential. Each student is also able to work on a term-long individual module or choose to individually continue to advance the previous team project. The final projects are meant to show how the student integrates informatics theory, skills, and stakeholder\u2019s needs into a final product or project that may be developed into a deliverable for general public use.", "short_title": "Capstone in Health Informatics", "title": "Capstone in Health Informatics", "school": "PH", @@ -39410,7 +81056,7 @@ "13:00", "14:50", "CO47 106A - 47 College Street (CLP) 106A", - "https:\/\/map.yale.edu\/?id=1910#!m\/559997" + "https://map.yale.edu/?id=1910#!m/559997" ] ] }, @@ -39422,10 +81068,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90997\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90997/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -39468,7 +81142,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -39524,12 +81226,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "Prerequisite: BNGL 140 or equivalent. Course taught through distance learning using videoconferencing technology from Cornell University. Enrollment limited; interested students should e-mail minjin.hashbat@yale.edu for more information.", - "description": "The foremost goal of this class is to support and encourage language skills in interpretive reading and writing and help the student to attain language proficiency at the Advanced Mid\/High level of the American Council on the Teaching of Foreign Languages (ACTFL) and C1 level of the Common European Framework of Reference for Languages (CEFR).", + "description": "The foremost goal of this class is to support and encourage language skills in interpretive reading and writing and help the student to attain language proficiency at the Advanced Mid/High level of the American Council on the Teaching of Foreign Languages (ACTFL) and C1 level of the Common European Framework of Reference for Languages (CEFR).", "short_title": "Advanced Bengali I", "title": "Advanced Bengali I", "school": "YC", @@ -39563,7 +81293,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -39635,7 +81393,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -39681,7 +81467,7 @@ "9:25", "10:15", "DAVIES AUD - Davies Auditorium, Becton Ctr AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ], "Wednesday": [ @@ -39689,7 +81475,7 @@ "9:25", "10:15", "DAVIES AUD - Davies Auditorium, Becton Ctr AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ], "Friday": [ @@ -39697,7 +81483,7 @@ "9:25", "10:15", "DAVIES AUD - Davies Auditorium, Becton Ctr AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ] }, @@ -39711,10 +81497,243 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88304\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88304/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989400506019592, + 0.9987356066703796, + 0.9988401532173157, + 0.9988483190536499, + 0.9987340569496155, + 0.9989243149757385, + 0.9981581568717957, + 0.9988138675689697, + 0.998855710029602, + 0.9988767504692078, + 0.997672975063324, + 0.9985867738723755, + 0.9987708926200867, + 0.9985735416412354, + 0.9977019429206848, + 0.9988190531730652, + 0.9987074136734009, + 0.9989060163497925, + 0.9975103139877319, + 0.9987026453018188, + 0.9986618757247925, + 0.9988909363746643, + 0.9978437423706055, + 0.9983353018760681, + 0.9985999464988708 + ], + "sentiment_counts": { + "POSITIVE": 25, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998848557472229, + 0.9993402361869812, + 0.9987609386444092, + 0.9989367127418518, + 0.9985036849975586, + 0.9989107847213745, + 0.9988788962364197, + 0.9987718462944031, + 0.9979021549224854, + 0.9987320303916931, + 0.998915433883667, + 0.9988909363746643, + 0.9995081424713135, + 0.9951971173286438, + 0.9987885355949402, + 0.9956823587417603, + 0.9983001351356506, + 0.9929627776145935, + 0.996518611907959, + 0.9988659620285034, + 0.9989122152328491, + 0.9994854927062988, + 0.9989089965820312, + 0.9989018440246582, + 0.9994179010391235, + 0.997342050075531, + 0.9988390803337097, + 0.9976304769515991, + 0.9986839890480042, + 0.9988480806350708 + ], + "sentiment_counts": { + "POSITIVE": 23, + "NEGATIVE": 7 + }, + "sentiment_distribution": { + "POSITIVE": 0.7666666666666667, + "NEGATIVE": 0.23333333333333334 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7666666666666667 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9943073391914368, + 0.9994959831237793, + 0.9987064599990845, + 0.9989296793937683, + 0.9986969828605652, + 0.9989004135131836, + 0.9988976716995239, + 0.9984064698219299, + 0.9987874627113342, + 0.9994966983795166, + 0.9988901019096375, + 0.9994984865188599, + 0.9989144802093506, + 0.9987828135490417, + 0.997117280960083, + 0.9971362352371216, + 0.9988127946853638, + 0.9988106489181519, + 0.9988019466400146, + 0.9968705773353577, + 0.9987626075744629, + 0.9989251494407654, + 0.9989131689071655, + 0.998771607875824, + 0.9962942004203796, + 0.9986621141433716, + 0.9647520780563354, + 0.9957173466682434 + ], + "sentiment_counts": { + "NEGATIVE": 7, + "POSITIVE": 21 + }, + "sentiment_distribution": { + "NEGATIVE": 0.25, + "POSITIVE": 0.75 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 69, + "final_proportion": 0.8313253012048193, + "final_counts": { + "POSITIVE": 69, + "NEGATIVE": 14 + }, + "final_distribution": { + "POSITIVE": 0.8313253012048193, + "NEGATIVE": 0.1686746987951807 + } + } }, { "season_code": "202303", @@ -39757,12 +81776,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "The purpose of the Mentored Clinical Experience (MCE), an MRSP-specific course, is to permit students to gain a deep understanding of and appreciation for the interface between basic biomedical research and its application to clinical practice. The MCE is intended to integrate basic and translational research with direct exposure to clinical medicine and patients afflicted with the diseases or conditions under discussion. The course provides a foundation and a critically important forum for class discussion because each module stimulates students to explore a disease process in depth over four ninety-minute sessions led by expert clinician-scientists. The structure incorporates four perspectives to introduce the students to a particular disease or condition and then encourages them to probe areas that are not understood or fully resolved so they can appreciate the value and challenge inherent in using basic science to enhance clinical medicine. Students are provided biomedical resource material for background to the sessions as well as articles or other publicly available information that offers insight to the perspective from the non-scientific world. During this course students meet with patients who have experienced the disease and\/or visit and explore facilities associated with diagnosis and treatment of the disease process. Students are expected to prepare for sessions, to participate actively, and to be scrupulously respectful of patients and patient facilities. Prior to one of the sessions students receive guidance as to what they will observe and how to approach the experience; and at the end of the session, the students discuss their thoughts and impressions. All students receive HIPAA training and appropriate training in infection control and decorum relating to patient contact prior to the course.", + "description": "The purpose of the Mentored Clinical Experience (MCE), an MRSP-specific course, is to permit students to gain a deep understanding of and appreciation for the interface between basic biomedical research and its application to clinical practice. The MCE is intended to integrate basic and translational research with direct exposure to clinical medicine and patients afflicted with the diseases or conditions under discussion. The course provides a foundation and a critically important forum for class discussion because each module stimulates students to explore a disease process in depth over four ninety-minute sessions led by expert clinician-scientists. The structure incorporates four perspectives to introduce the students to a particular disease or condition and then encourages them to probe areas that are not understood or fully resolved so they can appreciate the value and challenge inherent in using basic science to enhance clinical medicine. Students are provided biomedical resource material for background to the sessions as well as articles or other publicly available information that offers insight to the perspective from the non-scientific world. During this course students meet with patients who have experienced the disease and/or visit and explore facilities associated with diagnosis and treatment of the disease process. Students are expected to prepare for sessions, to participate actively, and to be scrupulously respectful of patients and patient facilities. Prior to one of the sessions students receive guidance as to what they will observe and how to approach the experience; and at the end of the session, the students discuss their thoughts and impressions. All students receive HIPAA training and appropriate training in infection control and decorum relating to patient contact prior to the course.", "short_title": "Medical Research Scholars Pro...", "title": "Medical Research Scholars Program: Mentored Clinical Experience", "school": "GS", @@ -39804,15 +81851,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89563\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89563/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "Readings and discussion on a diverse range of current topics in molecular medicine, pharmacology, and physiology. The class emphasizes analysis of primary research literature and development of presentation and writing skills. Contemporary articles are assigned on a related topic every week, and a student leads discussions with input from faculty who are experts in the topic area. The overall goal is to cover a specific topic of medical relevance (e.g., cancer, neurodegeneration) from the perspective of three primary disciplines (i.e., physiology: normal function; pathology: abnormal function; and pharmacology: intervention). Required of and open only to Ph.D. and M.D.\/Ph.D. students in the Molecular Medicine, Pharmacology, and Physiology track.", + "description": "Readings and discussion on a diverse range of current topics in molecular medicine, pharmacology, and physiology. The class emphasizes analysis of primary research literature and development of presentation and writing skills. Contemporary articles are assigned on a related topic every week, and a student leads discussions with input from faculty who are experts in the topic area. The overall goal is to cover a specific topic of medical relevance (e.g., cancer, neurodegeneration) from the perspective of three primary disciplines (i.e., physiology: normal function; pathology: abnormal function; and pharmacology: intervention). Required of and open only to Ph.D. and M.D./Ph.D. students in the Molecular Medicine, Pharmacology, and Physiology track.", "short_title": "Seminar in Molecular Medicine...", "title": "Seminar in Molecular Medicine, Pharmacology, and Physiology", "school": "GS", @@ -39868,10 +81943,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90413\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90413/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -39908,7 +82011,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -39948,7 +82079,7 @@ "13:00", "14:15", "HLH17 115 - 17 Hillhouse Avenue 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Thursday": [ @@ -39956,7 +82087,7 @@ "13:00", "14:15", "HLH17 115 - 17 Hillhouse Avenue 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -39968,10 +82099,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89265\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89265/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -40008,7 +82167,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -40048,7 +82235,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -40086,7 +82301,7 @@ "15:00", "16:20", "LEPH 115 - Laboratory of EPH 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ], "Thursday": [ @@ -40094,7 +82309,7 @@ "15:00", "16:20", "LEPH 115 - Laboratory of EPH 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ], "Wednesday": [ @@ -40102,7 +82317,7 @@ "11:00", "11:50", "LEPH 115 - Laboratory of EPH 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ] }, @@ -40114,15 +82329,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89306\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89306/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "This course introduces database and ontology in the clinical\/public health domain. It reviews how data and information are generated in clinical\/public health settings. It introduces different approaches to representing, modeling, managing, querying, and integrating clinical\/public health data. In terms of database technologies, the course describes two main approaches\u2014SQL database and non-SQL (NoSQL) database\u2014and shows how these technologies can be used to build electronic health records (EHR), data repositories, and data warehouses. In terms of ontologies, it discusses how ontologies are used in connecting and integrating data with machine-readable knowledge. The course reviews the major theories, methods, and tools for the design and development of databases and ontologies. It also includes clinical\/public health use cases demonstrating how databases and ontologies are used to support clinical\/public health research.", + "description": "This course introduces database and ontology in the clinical/public health domain. It reviews how data and information are generated in clinical/public health settings. It introduces different approaches to representing, modeling, managing, querying, and integrating clinical/public health data. In terms of database technologies, the course describes two main approaches\u2014SQL database and non-SQL (NoSQL) database\u2014and shows how these technologies can be used to build electronic health records (EHR), data repositories, and data warehouses. In terms of ontologies, it discusses how ontologies are used in connecting and integrating data with machine-readable knowledge. The course reviews the major theories, methods, and tools for the design and development of databases and ontologies. It also includes clinical/public health use cases demonstrating how databases and ontologies are used to support clinical/public health research.", "short_title": "Clinical Database Management ...", "title": "Clinical Database Management Systems and Ontologies", "school": "GS", @@ -40158,7 +82401,7 @@ "13:00", "14:50", "LEPH WINSL - Laboratory of EPH WINSL", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ] }, @@ -40170,10 +82413,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89307\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89307/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -40216,7 +82487,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -40254,7 +82553,7 @@ "10:30", "11:45", "LEPH 115 - Laboratory of EPH 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ], "Thursday": [ @@ -40262,7 +82561,7 @@ "10:30", "11:45", "LEPH 115 - Laboratory of EPH 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ] }, @@ -40274,15 +82573,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88378\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88378/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", - "requirements": "The course is offered only to M.D. and M.D.\/Ph.D. students.", - "description": "This full-year course (CBIO 501\/CBIO 502) is designed to provide medical students with a current and comprehensive review of biologic structure and function at the cellular, tissue, and organ system levels. Areas covered include structure and organization of cells; regulation of the cell cycle and mitosis; protein biosynthesis and membrane targeting; cell motility and the cytoskeleton; signal transduction; cell adhesion; cell and tissue organization of organ systems. Clinical correlation sessions, which illustrate the contributions of cell biology to specific medical problems, are interspersed in the lecture schedule. Histophysiology laboratories provide practical experience with an understanding of exploring cell and tissue structure.", + "requirements": "The course is offered only to M.D. and M.D./Ph.D. students.", + "description": "This full-year course (CBIO 501/CBIO 502) is designed to provide medical students with a current and comprehensive review of biologic structure and function at the cellular, tissue, and organ system levels. Areas covered include structure and organization of cells; regulation of the cell cycle and mitosis; protein biosynthesis and membrane targeting; cell motility and the cytoskeleton; signal transduction; cell adhesion; cell and tissue organization of organ systems. Clinical correlation sessions, which illustrate the contributions of cell biology to specific medical problems, are interspersed in the lecture schedule. Histophysiology laboratories provide practical experience with an understanding of exploring cell and tissue structure.", "short_title": "Molecules to Systems", "title": "Molecules to Systems", "school": "GS", @@ -40317,15 +82644,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89569\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89569/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", - "requirements": "Enrollment limited to students who have taken or are currently taking CBIO 501\/CBIO 502.", - "description": "This full-year graduate seminar (CBIO 600\/CBIO 601) for first-year M.D.\/Ph.D. students\u2014an elective course for M.D. students\u2014matches the progression of topics in the eighteen-month preclinical medical school curriculum and emphasizes the connections between basic and clinical science, human physiology, and disease. It is directed by M.D.\/Ph.D. program faculty, and many class discussions are led by expert Yale School of Medicine faculty members who select the papers to be read. Students explore scientific topics in depth, learn about cutting-edge research, and improve their presentation skills. The curriculum provides a framework for critically reading and analyzing papers drawn broadly from the biomedical sciences; this breadth of knowledge is also leveraged in team-based exercises that promote peer-to-peer teaching and learning.", + "requirements": "Enrollment limited to students who have taken or are currently taking CBIO 501/CBIO 502.", + "description": "This full-year graduate seminar (CBIO 600/CBIO 601) for first-year M.D./Ph.D. students\u2014an elective course for M.D. students\u2014matches the progression of topics in the eighteen-month preclinical medical school curriculum and emphasizes the connections between basic and clinical science, human physiology, and disease. It is directed by M.D./Ph.D. program faculty, and many class discussions are led by expert Yale School of Medicine faculty members who select the papers to be read. Students explore scientific topics in depth, learn about cutting-edge research, and improve their presentation skills. The curriculum provides a framework for critically reading and analyzing papers drawn broadly from the biomedical sciences; this breadth of knowledge is also leveraged in team-based exercises that promote peer-to-peer teaching and learning.", "short_title": "Science at the Frontiers of M...", "title": "Science at the Frontiers of Medicine", "school": "GS", @@ -40414,10 +82769,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89570\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89570/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -40512,10 +82895,38 @@ "classnotes": "Undergraduate Prerequisites: This is a graduate level cell biology class. Any Yale undergraduates wishing to enroll must have already taken MCDB 205. In addition, undergraduates are strongly encouraged to first reach out to the course directors prior to enrollment.", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89571\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89571/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -40595,10 +83006,38 @@ "classnotes": "Undergraduate Prerequisites: This is a graduate level cell biology class. Any Yale undergraduates wishing to enroll must have already taken MCDB 205. In addition, undergraduates are strongly encouraged to first reach out to the course directors prior to enrollment.", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89853\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89853/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -40648,10 +83087,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88382\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88382/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -40704,7 +83171,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -40746,10 +83241,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92376\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92376/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -40785,10 +83308,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92377\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92377/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -40825,7 +83376,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -40870,7 +83449,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -40909,12 +83516,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "Not open to auditors.", - "description": "The objective of this course is to build a comprehensive working knowledge base for each of the primary physiologic systems that respond to acute and chronic environmental stressors, as well as chronic disease states. The course follows the general framework: (1) examine the structural and functional characteristics of given physiological system; (2) explore how both structure and function (within and between physiological systems) work to promote health; (3) explore how necessary features of each system (or integrated systems) are points of vulnerability that can lead to dysfunction and disease. In addition, this course offers the opportunity to examine each physiological system with respect to influences key to public health interest, e.g., age, race\/ethnicity, environmental exposures, chronic disease, microbial disease, and lifestyle, including the protection afforded by healthy lifestyle factors.", + "description": "The objective of this course is to build a comprehensive working knowledge base for each of the primary physiologic systems that respond to acute and chronic environmental stressors, as well as chronic disease states. The course follows the general framework: (1) examine the structural and functional characteristics of given physiological system; (2) explore how both structure and function (within and between physiological systems) work to promote health; (3) explore how necessary features of each system (or integrated systems) are points of vulnerability that can lead to dysfunction and disease. In addition, this course offers the opportunity to examine each physiological system with respect to influences key to public health interest, e.g., age, race/ethnicity, environmental exposures, chronic disease, microbial disease, and lifestyle, including the protection afforded by healthy lifestyle factors.", "short_title": "Physiology for Public Health", "title": "Physiology for Public Health", "school": "PH", @@ -40947,7 +83582,7 @@ "13:00", "14:50", "CO47 106B - 47 College Street (CLP) 106B", - "https:\/\/map.yale.edu\/?id=1910#!m\/559997" + "https://map.yale.edu/?id=1910#!m/559997" ] ] }, @@ -40961,10 +83596,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91060\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91060/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -41001,7 +83664,7 @@ "12:00", "12:50", "LEPH 101 - Laboratory of EPH 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ] }, @@ -41013,10 +83676,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91006\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91006/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -41056,10 +83747,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91010\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91010/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -41096,7 +83815,7 @@ "13:00", "14:50", "LEPH 102 - Laboratory of EPH 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ] }, @@ -41110,10 +83829,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91015\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91015/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -41150,24 +83897,52 @@ "10:00", "11:50", "LEPH WINSL - Laboratory of EPH WINSL", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ] }, "skills": [], "areas": [], "flags": [ - "PH: Global Health, Psychosocial\/Social and behavioral\/Anthropology" + "PH: Global Health, Psychosocial/Social and behavioral/Anthropology" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91019\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91019/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -41205,7 +83980,7 @@ "10:00", "11:50", "LEPH 115 - Laboratory of EPH 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ], "Wednesday": [ @@ -41213,7 +83988,7 @@ "15:00", "15:50", "CO47 6 - 47 College Street (CLP) 6", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ] }, @@ -41228,10 +84003,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91088\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91088/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -41283,7 +84086,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -41320,14 +84151,14 @@ "10:00", "11:50", "LEPH 101 - Laboratory of EPH 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ] }, "skills": [], "areas": [], "flags": [ - "PH: Global Health, Psychosocial\/Social and behavioral\/Anthropology" + "PH: Global Health, Psychosocial/Social and behavioral/Anthropology" ], "regnotes": "", "rp_attr": "", @@ -41337,7 +84168,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -41374,7 +84233,7 @@ "8:00", "9:50", "LEPH 101 - Laboratory of EPH 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ] }, @@ -41386,15 +84245,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91027\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91027/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "Prerequisite: EPH 508 - Foundations of Epidemiology and Public Health (or equivalent)", - "description": "In this course we explore the epidemiologic field of fertility, pregnancy, and pregnancy-related outcomes for the mother and the offspring. Through lectures and discussions, we focus on particular substantive topics and methodological challenges and opportunities relevant to the perinatal setting. Examples of topics are family planning, maternal pregnancy complications, birth outcomes, and long-term consequences of being born preterm. Important risk factors are covered, with a focus on modifiable risk factors (e.g., smoking and nutrition), key demographics (e.g., age and race\/ethnicity), and climate change. For methods, we examine how the use of e.g. negative controls, sibling comparisons and instrumental variables can reduce the numerous biases in this field. Current and landmark studies are discussed and critically reviewed. While students are introduced to basic pregnancy biology along with some public health policy, this course is primarily oriented towards epidemiological research: Students develop the ability to critically appraise the literature in perinatal epidemiology, identify research gaps, and design studies to address these gaps.", + "description": "In this course we explore the epidemiologic field of fertility, pregnancy, and pregnancy-related outcomes for the mother and the offspring. Through lectures and discussions, we focus on particular substantive topics and methodological challenges and opportunities relevant to the perinatal setting. Examples of topics are family planning, maternal pregnancy complications, birth outcomes, and long-term consequences of being born preterm. Important risk factors are covered, with a focus on modifiable risk factors (e.g., smoking and nutrition), key demographics (e.g., age and race/ethnicity), and climate change. For methods, we examine how the use of e.g. negative controls, sibling comparisons and instrumental variables can reduce the numerous biases in this field. Current and landmark studies are discussed and critically reviewed. While students are introduced to basic pregnancy biology along with some public health policy, this course is primarily oriented towards epidemiological research: Students develop the ability to critically appraise the literature in perinatal epidemiology, identify research gaps, and design studies to address these gaps.", "short_title": "Perinatal Epidemiology", "title": "Perinatal Epidemiology", "school": "PH", @@ -41426,7 +84313,7 @@ "13:00", "14:50", "LEPH WINSL - Laboratory of EPH WINSL", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ] }, @@ -41438,10 +84325,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91031\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91031/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -41478,7 +84393,7 @@ "17:00", "18:50", "LEPH 102 - Laboratory of EPH 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ], "Wednesday": [ @@ -41486,7 +84401,7 @@ "10:00", "11:20", "LEPH 102 - Laboratory of EPH 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ] }, @@ -41498,10 +84413,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91034\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91034/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -41538,7 +84481,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -41575,7 +84546,7 @@ "13:00", "14:50", "LEPH 108 - Laboratory of EPH 108", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ] }, @@ -41587,10 +84558,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91042\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91042/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -41627,7 +84626,7 @@ "10:00", "11:50", "LEPH 101 - Laboratory of EPH 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ] }, @@ -41641,10 +84640,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91046\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91046/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -41681,7 +84708,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -41720,7 +84775,7 @@ "11:35", "12:50", "WTS A51 - Watson Center 60 Sachem Street A51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -41728,7 +84783,7 @@ "11:35", "12:50", "WTS A51 - Watson Center 60 Sachem Street A51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -41747,10 +84802,195 @@ "classnotes": "", "final_exam": "Friday, December 15, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88134\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88134/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984906911849976, + 0.9988023042678833, + 0.9981614947319031, + 0.9987499713897705, + 0.9987645149230957, + 0.9960381984710693, + 0.998710036277771, + 0.9987433552742004, + 0.9988502264022827, + 0.9987247586250305, + 0.998808741569519, + 0.9985186457633972, + 0.9989388585090637, + 0.9987329840660095, + 0.9987537860870361, + 0.9968116879463196, + 0.9988235831260681, + 0.9986103773117065, + 0.9986758828163147, + 0.9928240776062012 + ], + "sentiment_counts": { + "POSITIVE": 18, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989544153213501, + 0.9711685180664062, + 0.9987927675247192, + 0.98897385597229, + 0.9988085031509399, + 0.9983774423599243, + 0.9984245300292969, + 0.9988868832588196, + 0.9988409876823425, + 0.999488353729248, + 0.99888676404953, + 0.9847906231880188, + 0.9983874559402466, + 0.9988617897033691, + 0.9814188480377197, + 0.9985557198524475, + 0.9988850951194763, + 0.9920280575752258, + 0.9687473177909851 + ], + "sentiment_counts": { + "NEGATIVE": 7, + "POSITIVE": 12 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3684210526315789, + "POSITIVE": 0.631578947368421 + }, + "sentiment_overall": [ + "POSITIVE", + 0.631578947368421 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989383816719055, + 0.995375394821167, + 0.9988008737564087, + 0.9976392984390259, + 0.998902440071106, + 0.998846173286438, + 0.9989263415336609, + 0.9989063739776611, + 0.9988977909088135, + 0.9964461922645569, + 0.9988909363746643, + 0.9988394379615784, + 0.9987695813179016, + 0.9988173842430115, + 0.9994552731513977, + 0.9989340901374817, + 0.9972171783447266, + 0.9989266991615295, + 0.9988667964935303, + 0.9924772381782532 + ], + "sentiment_counts": { + "POSITIVE": 16, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 46, + "final_proportion": 0.7796610169491526, + "final_counts": { + "POSITIVE": 46, + "NEGATIVE": 13 + }, + "final_distribution": { + "POSITIVE": 0.7796610169491526, + "NEGATIVE": 0.22033898305084745 + } + } }, { "season_code": "202303", @@ -41788,7 +85028,7 @@ "13:00", "14:15", "LOM 215 - Leet Oliver Memorial Hall 215", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ], "Thursday": [ @@ -41796,7 +85036,7 @@ "13:00", "14:15", "LOM 215 - Leet Oliver Memorial Hall 215", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ] }, @@ -41812,15 +85052,104 @@ "classnotes": "", "final_exam": "Saturday, December 16, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88392\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88392/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987443685531616, + 0.9986936450004578, + 0.9987605810165405, + 0.9984785914421082 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9970701932907104, + 0.9983786344528198, + 0.9988024234771729, + 0.9988499879837036 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989055395126343, + 0.9121260643005371, + 0.9989000558853149 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 0.9090909090909091, + "final_counts": { + "POSITIVE": 10, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + } + } }, { "season_code": "202303", "requirements": "Prerequisite: ENAS 194 or permission of the instructor.", - "description": "First of a two-semester sequence.\u00a0Unified treatment of momentum, energy, and chemical species transport including conservation laws, flux relations, and boundary conditions. Topics include convective and diffusive transport, transport with homogeneous and heterogeneous chemical reactions and\/or phase change, and interfacial transport phenomena. Emphasis on problem analysis and mathematical modeling, including problem formulation, scaling arguments, analytical methods, approximation techniques, and numerical solutions.", + "description": "First of a two-semester sequence.\u00a0Unified treatment of momentum, energy, and chemical species transport including conservation laws, flux relations, and boundary conditions. Topics include convective and diffusive transport, transport with homogeneous and heterogeneous chemical reactions and/or phase change, and interfacial transport phenomena. Emphasis on problem analysis and mathematical modeling, including problem formulation, scaling arguments, analytical methods, approximation techniques, and numerical solutions.", "short_title": "Transport Phenomena I", "title": "Transport Phenomena I", "school": "YC", @@ -41879,10 +85208,145 @@ "classnotes": "", "final_exam": "Saturday, December 16, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88396\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88396/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9948004484176636, + 0.9985699653625488, + 0.9987475872039795, + 0.9987093210220337, + 0.9987775683403015, + 0.9987095594406128, + 0.9980269074440002, + 0.9989280104637146, + 0.9985994696617126, + 0.9988619089126587, + 0.9987285733222961 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989399313926697, + 0.9989038705825806, + 0.9989103078842163, + 0.9988961219787598, + 0.9989357590675354, + 0.9985862970352173, + 0.9989307522773743, + 0.9972512125968933, + 0.9988372921943665, + 0.9989274144172668, + 0.998923122882843, + 0.9989157915115356 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9166666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989191293716431, + 0.9989203214645386, + 0.9987666606903076, + 0.9989263415336609, + 0.9988906979560852, + 0.9986019730567932, + 0.9841609597206116, + 0.9989257454872131, + 0.9989299178123474, + 0.9989150762557983, + 0.9989032745361328 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9090909090909091 + ] + }, + "final_label": "POSITIVE", + "final_count": 32, + "final_proportion": 0.9411764705882353, + "final_counts": { + "POSITIVE": 32, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9411764705882353, + "NEGATIVE": 0.058823529411764705 + } + } }, { "season_code": "202303", @@ -41921,7 +85385,7 @@ "13:00", "14:15", "HLH17 03 - 17 Hillhouse Avenue 03", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Wednesday": [ @@ -41929,7 +85393,7 @@ "13:00", "14:15", "HLH17 03 - 17 Hillhouse Avenue 03", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -41950,15 +85414,114 @@ "classnotes": "", "final_exam": "Wednesday, December 20, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90216\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90216/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998846173286438, + 0.9986068606376648, + 0.9984049201011658, + 0.9987956285476685, + 0.998934805393219, + 0.9987118244171143, + 0.9988701939582825 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989262223243713, + 0.9989400506019592, + 0.9989011287689209, + 0.9989180564880371, + 0.9988895058631897 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988906979560852, + 0.9988844990730286, + 0.9986125230789185, + 0.9986878037452698, + 0.9989223480224609 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 17 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", "requirements": "Prerequisite: CENG 300 or 315 or permission of instructor.", - "description": "Theory and design of separation processes for multicomponent and\/or multiphase mixtures via equilibrium and rate phenomena. Topics include single-stage and cascaded absorption, adsorption, extraction, distillation, partial condensation, filtration, and crystallization processes. Applications to environmental engineering (air and water pollution control), biomedical-chemical engineering (artificial organs, drug purification), food processing, and semiconductor processing.", + "description": "Theory and design of separation processes for multicomponent and/or multiphase mixtures via equilibrium and rate phenomena. Topics include single-stage and cascaded absorption, adsorption, extraction, distillation, partial condensation, filtration, and crystallization processes. Applications to environmental engineering (air and water pollution control), biomedical-chemical engineering (artificial organs, drug purification), food processing, and semiconductor processing.", "short_title": "Separation and Purification P...", "title": "Separation and Purification Processes", "school": "YC", @@ -41990,7 +85553,7 @@ "13:00", "14:15", "LOM 214 - Leet Oliver Memorial Hall 214", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ], "Wednesday": [ @@ -41998,7 +85561,7 @@ "13:00", "14:15", "LOM 214 - Leet Oliver Memorial Hall 214", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ] }, @@ -42014,15 +85577,114 @@ "classnotes": "", "final_exam": "Wednesday, December 20, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88400\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88400/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9818115830421448, + 0.9989006519317627, + 0.9986379742622375, + 0.998831570148468 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9965233206748962, + 0.9985496401786804, + 0.9987735152244568, + 0.9989050626754761, + 0.9988480806350708, + 0.9987586736679077 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989026784896851, + 0.9972676038742065, + 0.9988880753517151, + 0.998849630355835, + 0.9988549947738647, + 0.9987951517105103 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 0.9375, + "final_counts": { + "POSITIVE": 15, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9375, + "NEGATIVE": 0.0625 + } + } }, { "season_code": "202303", "requirements": "May be taken more than once for credit.", - "description": "Faculty-supervised individual student research and design projects. Emphasis on the integration of mathematics with basic and engineering sciences in the solution of a theoretical, experimental, and\/or design problem.", + "description": "Faculty-supervised individual student research and design projects. Emphasis on the integration of mathematics with basic and engineering sciences in the solution of a theoretical, experimental, and/or design problem.", "short_title": "Independent Research", "title": "Independent Research", "school": "YC", @@ -42060,7 +85722,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -42097,7 +85787,7 @@ "9:00", "10:15", "HLH17 113 - 17 Hillhouse Avenue 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Thursday": [ @@ -42105,7 +85795,7 @@ "9:00", "10:15", "HLH17 113 - 17 Hillhouse Avenue 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -42121,15 +85811,154 @@ "classnotes": "", "final_exam": "Saturday, December 16, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88409\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "", - "description": "Individual research and\/or design project supervised by a faculty member in Chemical Engineering, or in a related field with permission of the director of undergraduate studies.", + "syllabus_url": "https://yale.instructure.com/courses/88409/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9956931471824646, + 0.9989051818847656, + 0.9972493052482605, + 0.998675525188446, + 0.9954178333282471, + 0.9988332390785217, + 0.9987192153930664, + 0.9988670349121094, + 0.9987331032752991, + 0.9988658428192139, + 0.9985120892524719, + 0.998648464679718 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987576007843018, + 0.9988111257553101, + 0.9988538026809692, + 0.9993231296539307, + 0.9987491369247437, + 0.9986403584480286, + 0.9988504648208618, + 0.9989280104637146, + 0.9988850951194763, + 0.9984269142150879, + 0.9989294409751892, + 0.9989067316055298, + 0.9972291588783264 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9230769230769231, + "NEGATIVE": 0.07692307692307693 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9230769230769231 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988969564437866, + 0.9966216087341309, + 0.993096649646759, + 0.9983078241348267, + 0.9972583055496216, + 0.9782434701919556, + 0.9806263446807861, + 0.99885094165802, + 0.9986637830734253, + 0.9989281296730042, + 0.9988470077514648 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8181818181818182, + "NEGATIVE": 0.18181818181818182 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8181818181818182 + ] + }, + "final_label": "POSITIVE", + "final_count": 33, + "final_proportion": 0.9166666666666666, + "final_counts": { + "POSITIVE": 33, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + } + } + }, + { + "season_code": "202303", + "requirements": "", + "description": "Individual research and/or design project supervised by a faculty member in Chemical Engineering, or in a related field with permission of the director of undergraduate studies.", "short_title": "Senior Research Project", "title": "Senior Research Project", "school": "YC", @@ -42167,7 +85996,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -42205,7 +86062,7 @@ "14:30", "15:45", "SSS 114 - Sheffield-Sterling-Strathcona 114", - "https:\/\/map.yale.edu\/?id=1910#!m\/563689" + "https://map.yale.edu/?id=1910#!m/563689" ] ], "Thursday": [ @@ -42213,7 +86070,7 @@ "14:30", "15:45", "SSS 114 - Sheffield-Sterling-Strathcona 114", - "https:\/\/map.yale.edu\/?id=1910#!m\/563689" + "https://map.yale.edu/?id=1910#!m/563689" ] ] }, @@ -42230,10 +86087,431 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89100\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89100/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987362027168274, + 0.9987249970436096, + 0.9988899827003479, + 0.9988569021224976, + 0.9988665580749512, + 0.9988256096839905, + 0.9988522529602051, + 0.9967748522758484, + 0.9985125660896301, + 0.9988225102424622, + 0.9988974332809448, + 0.9972418546676636, + 0.9988442659378052, + 0.998627781867981, + 0.9987404942512512, + 0.9989352822303772, + 0.998380184173584, + 0.9987539052963257, + 0.9989011287689209, + 0.9988071918487549, + 0.9987221360206604, + 0.998880922794342, + 0.9988253712654114, + 0.9986246824264526, + 0.9989203214645386, + 0.9988021850585938, + 0.998830258846283, + 0.998894989490509, + 0.9989179372787476, + 0.9988571405410767, + 0.9989240765571594, + 0.9989008903503418, + 0.998782217502594, + 0.9988818764686584, + 0.9988760352134705, + 0.9988422989845276, + 0.9989222288131714, + 0.9987177848815918, + 0.9986843466758728, + 0.9988701939582825, + 0.9989163875579834, + 0.9989145994186401, + 0.9986349940299988, + 0.9988489151000977, + 0.9987255930900574, + 0.998879611492157, + 0.995410144329071, + 0.998832643032074, + 0.9987867474555969, + 0.9985839128494263, + 0.9988892674446106, + 0.9978731870651245, + 0.9922453761100769, + 0.9989199638366699 + ], + "sentiment_counts": { + "POSITIVE": 53, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9814814814814815, + "NEGATIVE": 0.018518518518518517 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9814814814814815 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989328980445862, + 0.9989238381385803, + 0.9994969367980957, + 0.9924607872962952, + 0.9987586736679077, + 0.9985997080802917, + 0.9989203214645386, + 0.9989031553268433, + 0.9987383484840393, + 0.9989336133003235, + 0.9985526204109192, + 0.9967473745346069, + 0.9989497065544128, + 0.9988871216773987, + 0.9989011287689209, + 0.9927384257316589, + 0.9964538812637329, + 0.9979287385940552, + 0.997919499874115, + 0.9995007514953613, + 0.9988491535186768, + 0.9985539317131042, + 0.9988968372344971, + 0.9967196583747864, + 0.998883068561554, + 0.9989138841629028, + 0.9988059997558594, + 0.9988870024681091, + 0.9995002746582031, + 0.998890221118927, + 0.9989120960235596, + 0.9989104270935059, + 0.9988123178482056, + 0.9989097118377686, + 0.9987439513206482, + 0.9989240765571594, + 0.9988480806350708, + 0.998918890953064, + 0.9986661672592163, + 0.9977335929870605, + 0.9989058971405029, + 0.998579740524292, + 0.9974706172943115, + 0.9988749623298645, + 0.9976376295089722, + 0.9988539218902588, + 0.9988202452659607, + 0.9989225268363953, + 0.9995074272155762, + 0.9988095760345459, + 0.9988682270050049, + 0.998903751373291, + 0.9989200830459595, + 0.9881595373153687, + 0.9984867572784424, + 0.9989011287689209, + 0.9994820952415466, + 0.9890523552894592, + 0.9988498687744141 + ], + "sentiment_counts": { + "POSITIVE": 47, + "NEGATIVE": 12 + }, + "sentiment_distribution": { + "POSITIVE": 0.7966101694915254, + "NEGATIVE": 0.2033898305084746 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7966101694915254 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987868666648865, + 0.9978833794593811, + 0.997117280960083, + 0.9988341927528381, + 0.998779833316803, + 0.9988818764686584, + 0.99886155128479, + 0.998894989490509, + 0.924232542514801, + 0.9988656044006348, + 0.9988056421279907, + 0.9988901019096375, + 0.9994837045669556, + 0.998897910118103, + 0.9989264607429504, + 0.9988189339637756, + 0.9988622665405273, + 0.9989266991615295, + 0.9986995458602905, + 0.9984710812568665, + 0.9528436660766602, + 0.9957839846611023, + 0.9962823987007141, + 0.9988583326339722, + 0.9981922507286072, + 0.9989114999771118, + 0.9988096952438354, + 0.998920202255249, + 0.996063768863678, + 0.9925089478492737, + 0.9989320635795593, + 0.9963036775588989, + 0.998822033405304, + 0.9989185333251953, + 0.9989123344421387, + 0.99937504529953, + 0.9988904595375061, + 0.9985396862030029, + 0.9988813996315002, + 0.994251012802124, + 0.9989272952079773, + 0.9988756775856018, + 0.9989311099052429, + 0.9980652928352356, + 0.9960973858833313, + 0.9988445043563843, + 0.9988512992858887, + 0.9989070892333984, + 0.9989314675331116, + 0.9948062300682068, + 0.9988787770271301, + 0.9988704323768616, + 0.9989319443702698, + 0.9986538887023926, + 0.9989066123962402, + 0.9967201352119446, + 0.9987261891365051, + 0.9988289475440979, + 0.9546428322792053, + 0.9963685274124146, + 0.9980840682983398, + 0.9988893866539001, + 0.9811272025108337, + 0.9988503456115723 + ], + "sentiment_counts": { + "POSITIVE": 53, + "NEGATIVE": 11 + }, + "sentiment_distribution": { + "POSITIVE": 0.828125, + "NEGATIVE": 0.171875 + }, + "sentiment_overall": [ + "POSITIVE", + 0.828125 + ] + }, + "final_label": "POSITIVE", + "final_count": 153, + "final_proportion": 0.864406779661017, + "final_counts": { + "POSITIVE": 153, + "NEGATIVE": 24 + }, + "final_distribution": { + "POSITIVE": 0.864406779661017, + "NEGATIVE": 0.13559322033898305 + } + } }, { "season_code": "202303", @@ -42270,7 +86548,7 @@ "16:00", "17:15", "WLH 119 - William L. Harkness Hall 119", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -42278,7 +86556,7 @@ "16:00", "17:15", "WLH 119 - William L. Harkness Hall 119", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -42292,10 +86570,221 @@ "classnotes": "", "final_exam": "Monday, December 18, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89994\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89994/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988774657249451, + 0.9986943602561951, + 0.9987465143203735, + 0.9994955062866211, + 0.9985870122909546, + 0.998920202255249, + 0.9984593391418457, + 0.998699426651001, + 0.9988648891448975, + 0.9988054037094116, + 0.9988917708396912, + 0.9988378882408142, + 0.9989022016525269, + 0.9979990124702454, + 0.9988729357719421, + 0.9988324046134949, + 0.9983876943588257, + 0.998909592628479, + 0.9988237023353577, + 0.9985998272895813, + 0.9985450506210327, + 0.9987737536430359, + 0.9988833069801331 + ], + "sentiment_counts": { + "POSITIVE": 22, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9565217391304348, + "NEGATIVE": 0.043478260869565216 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9565217391304348 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989156723022461, + 0.9951750040054321, + 0.9966189861297607, + 0.997776210308075, + 0.998765230178833, + 0.998885452747345, + 0.9989031553268433, + 0.9987665414810181, + 0.9988295435905457, + 0.9989039897918701, + 0.9988092184066772, + 0.9988607168197632, + 0.998724639415741, + 0.9989327788352966, + 0.9988815188407898, + 0.9988147020339966, + 0.9988985061645508, + 0.998920202255249, + 0.9874656796455383, + 0.9984676241874695, + 0.9989296793937683 + ], + "sentiment_counts": { + "POSITIVE": 18, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988738894462585, + 0.9981436729431152, + 0.998873770236969, + 0.9995050430297852, + 0.9988808035850525, + 0.9994925260543823, + 0.9989110231399536, + 0.9989173412322998, + 0.9987805485725403, + 0.9987471103668213, + 0.9974592328071594, + 0.9988794922828674, + 0.9989319443702698, + 0.996604323387146, + 0.9982818365097046, + 0.9989008903503418, + 0.9988512992858887, + 0.9988828301429749, + 0.9989047050476074, + 0.9987630844116211, + 0.9988523721694946, + 0.9989057779312134, + 0.9988886713981628, + 0.9993298053741455, + 0.9988200068473816, + 0.998344898223877, + 0.997117280960083, + 0.9989006519317627 + ], + "sentiment_counts": { + "POSITIVE": 25, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.8928571428571429, + "NEGATIVE": 0.10714285714285714 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8928571428571429 + ] + }, + "final_label": "POSITIVE", + "final_count": 65, + "final_proportion": 0.9027777777777778, + "final_counts": { + "POSITIVE": 65, + "NEGATIVE": 7 + }, + "final_distribution": { + "POSITIVE": 0.9027777777777778, + "NEGATIVE": 0.09722222222222222 + } + } }, { "season_code": "202303", @@ -42363,10 +86852,143 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90417\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/90417/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985688924789429, + 0.9986608028411865, + 0.9977846741676331, + 0.9986634254455566, + 0.9971073269844055, + 0.9988840222358704, + 0.9987875819206238, + 0.9940311312675476, + 0.9988539218902588, + 0.9986334443092346, + 0.998752236366272 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989266991615295, + 0.9906706809997559, + 0.9953182339668274, + 0.9987013339996338, + 0.998748779296875, + 0.9988732933998108, + 0.998763918876648, + 0.9987480640411377, + 0.9890273809432983, + 0.9987873435020447, + 0.9978893399238586 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.7272727272727273, + "NEGATIVE": 0.2727272727272727 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7272727272727273 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989051818847656, + 0.9984334111213684, + 0.9957656860351562, + 0.9988319277763367, + 0.9926602840423584, + 0.9989186525344849, + 0.9988943934440613, + 0.9994348883628845, + 0.9983170032501221, + 0.9987579584121704, + 0.9987553358078003 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.7272727272727273, + "NEGATIVE": 0.2727272727272727 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7272727272727273 + ] + }, + "final_label": "POSITIVE", + "final_count": 27, + "final_proportion": 0.8181818181818182, + "final_counts": { + "POSITIVE": 27, + "NEGATIVE": 6 + }, + "final_distribution": { + "POSITIVE": 0.8181818181818182, + "NEGATIVE": 0.18181818181818182 + } + } }, { "season_code": "202303", @@ -42404,7 +87026,7 @@ "13:30", "14:20", "LC 211 - Linsly-Chittenden Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -42412,7 +87034,7 @@ "13:30", "14:20", "LC 211 - Linsly-Chittenden Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -42428,10 +87050,129 @@ "classnotes": "", "final_exam": "Saturday, December 16, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88605\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88605/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9964334964752197, + 0.9985622763633728, + 0.9988908171653748, + 0.9987660646438599, + 0.9984824061393738, + 0.9988256096839905, + 0.9984500408172607, + 0.9988282322883606 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989262223243713, + 0.9970495700836182, + 0.9980781078338623, + 0.9987951517105103, + 0.9988204836845398, + 0.9980119466781616, + 0.9987198114395142, + 0.9920076131820679, + 0.9989145994186401 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.7777777777777778, + "NEGATIVE": 0.2222222222222222 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7777777777777778 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998731791973114, + 0.9975447058677673, + 0.9989074468612671, + 0.9990684390068054, + 0.9989307522773743, + 0.9987747073173523, + 0.9989283680915833, + 0.9988202452659607, + 0.9989171028137207 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "final_label": "POSITIVE", + "final_count": 23, + "final_proportion": 0.8846153846153846, + "final_counts": { + "POSITIVE": 23, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.8846153846153846, + "NEGATIVE": 0.11538461538461539 + } + } }, { "season_code": "202303", @@ -42463,7 +87204,7 @@ "10:30", "11:20", "HQ 213 - Humanities Quadrangle 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -42482,7 +87223,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -42514,7 +87283,7 @@ "11:35", "12:25", "HQ 213 - Humanities Quadrangle 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -42533,7 +87302,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -42572,7 +87369,7 @@ "13:30", "14:20", "LC 101 - Linsly-Chittenden Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -42580,7 +87377,7 @@ "13:30", "14:20", "LC 101 - Linsly-Chittenden Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -42589,17 +87386,232 @@ "Hu" ], "flags": [ - "YC Phil: Intersctn PSYC\/PHIL" + "YC Phil: Intersctn PSYC/PHIL" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "Wednesday, December 20, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88590\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88590/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986358284950256, + 0.9987791180610657, + 0.9988369345664978, + 0.9988452196121216, + 0.9988974332809448, + 0.9938669800758362, + 0.9987474679946899, + 0.9985643029212952, + 0.998823344707489, + 0.9988481998443604, + 0.9988190531730652, + 0.9988808035850525, + 0.9988852143287659, + 0.9988306164741516, + 0.9988640546798706, + 0.9987175464630127, + 0.9989252686500549, + 0.9988462924957275, + 0.9987984895706177, + 0.9989079236984253, + 0.998790442943573, + 0.9987873435020447, + 0.9987233281135559, + 0.9987824559211731, + 0.9986752867698669 + ], + "sentiment_counts": { + "POSITIVE": 25, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9888291954994202, + 0.9972978234291077, + 0.990993082523346, + 0.9989086389541626, + 0.9994680285453796, + 0.997282862663269, + 0.9990683197975159, + 0.9982293248176575, + 0.998887836933136, + 0.9988549947738647, + 0.9871314764022827, + 0.9975976347923279, + 0.9989094734191895, + 0.9954645037651062, + 0.9989286065101624, + 0.995510458946228, + 0.9986202716827393, + 0.9987000226974487, + 0.9985830783843994, + 0.9987786412239075, + 0.9988272786140442, + 0.9984605312347412, + 0.9917980432510376, + 0.9940423369407654 + ], + "sentiment_counts": { + "NEGATIVE": 5, + "POSITIVE": 19 + }, + "sentiment_distribution": { + "NEGATIVE": 0.20833333333333334, + "POSITIVE": 0.7916666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7916666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9978650212287903, + 0.9885457158088684, + 0.997475802898407, + 0.9987664222717285, + 0.9989126920700073, + 0.9989368319511414, + 0.8352116942405701, + 0.9987885355949402, + 0.9988395571708679, + 0.9983261227607727, + 0.998932421207428, + 0.9986242055892944, + 0.9988976716995239, + 0.9174793362617493, + 0.9994922876358032, + 0.998195230960846, + 0.9988163709640503, + 0.9988767504692078, + 0.9988465309143066, + 0.9988749623298645, + 0.9988386034965515, + 0.998781144618988, + 0.9986384510993958, + 0.9989192485809326, + 0.9965940117835999 + ], + "sentiment_counts": { + "POSITIVE": 21, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.84, + "NEGATIVE": 0.16 + }, + "sentiment_overall": [ + "POSITIVE", + 0.84 + ] + }, + "final_label": "POSITIVE", + "final_count": 65, + "final_proportion": 0.8783783783783784, + "final_counts": { + "POSITIVE": 65, + "NEGATIVE": 9 + }, + "final_distribution": { + "POSITIVE": 0.8783783783783784, + "NEGATIVE": 0.12162162162162163 + } + } }, { "season_code": "202303", @@ -42632,7 +87644,7 @@ "16:00", "16:50", "HQ C07 - Humanities Quadrangle C07", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -42641,7 +87653,7 @@ "Hu" ], "flags": [ - "YC Phil: Intersctn PSYC\/PHIL" + "YC Phil: Intersctn PSYC/PHIL" ], "regnotes": "", "rp_attr": "", @@ -42651,7 +87663,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -42684,7 +87724,7 @@ "17:00", "17:50", "HQ C07 - Humanities Quadrangle C07", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -42693,7 +87733,7 @@ "Hu" ], "flags": [ - "YC Phil: Intersctn PSYC\/PHIL" + "YC Phil: Intersctn PSYC/PHIL" ], "regnotes": "", "rp_attr": "", @@ -42703,7 +87743,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -42736,7 +87804,7 @@ "13:30", "14:20", "HQ C07 - Humanities Quadrangle C07", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -42745,7 +87813,7 @@ "Hu" ], "flags": [ - "YC Phil: Intersctn PSYC\/PHIL" + "YC Phil: Intersctn PSYC/PHIL" ], "regnotes": "", "rp_attr": "", @@ -42755,7 +87823,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -42788,7 +87884,7 @@ "14:30", "15:20", "HQ C07 - Humanities Quadrangle C07", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -42797,7 +87893,7 @@ "Hu" ], "flags": [ - "YC Phil: Intersctn PSYC\/PHIL" + "YC Phil: Intersctn PSYC/PHIL" ], "regnotes": "", "rp_attr": "", @@ -42807,7 +87903,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -42840,7 +87964,7 @@ "9:25", "10:15", "BM 013 - Bingham Hall 013", - "https:\/\/map.yale.edu\/?id=1910#!m\/559569" + "https://map.yale.edu/?id=1910#!m/559569" ] ] }, @@ -42849,7 +87973,7 @@ "Hu" ], "flags": [ - "YC Phil: Intersctn PSYC\/PHIL" + "YC Phil: Intersctn PSYC/PHIL" ], "regnotes": "", "rp_attr": "", @@ -42859,7 +87983,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -42892,7 +88044,7 @@ "9:25", "10:15", "CO493 106 - 493 College Street 106", - "https:\/\/map.yale.edu\/?id=1910#!m\/560001" + "https://map.yale.edu/?id=1910#!m/560001" ] ] }, @@ -42901,7 +88053,7 @@ "Hu" ], "flags": [ - "YC Phil: Intersctn PSYC\/PHIL" + "YC Phil: Intersctn PSYC/PHIL" ], "regnotes": "", "rp_attr": "", @@ -42911,7 +88063,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -42944,7 +88124,7 @@ "14:30", "15:20", "WLH 211 - William L. Harkness Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -42953,7 +88133,7 @@ "Hu" ], "flags": [ - "YC Phil: Intersctn PSYC\/PHIL" + "YC Phil: Intersctn PSYC/PHIL" ], "regnotes": "", "rp_attr": "", @@ -42963,7 +88143,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -42996,7 +88204,7 @@ "15:30", "16:20", "WLH 211 - William L. Harkness Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -43005,7 +88213,7 @@ "Hu" ], "flags": [ - "YC Phil: Intersctn PSYC\/PHIL" + "YC Phil: Intersctn PSYC/PHIL" ], "regnotes": "", "rp_attr": "", @@ -43015,7 +88223,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -43053,7 +88289,7 @@ "11:35", "12:50", "SSS 114 - Sheffield-Sterling-Strathcona 114", - "https:\/\/map.yale.edu\/?id=1910#!m\/563689" + "https://map.yale.edu/?id=1910#!m/563689" ] ], "Wednesday": [ @@ -43061,7 +88297,7 @@ "11:35", "12:50", "SSS 114 - Sheffield-Sterling-Strathcona 114", - "https:\/\/map.yale.edu\/?id=1910#!m\/563689" + "https://map.yale.edu/?id=1910#!m/563689" ] ] }, @@ -43077,10 +88313,193 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88691\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88691/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985180497169495, + 0.9986221790313721, + 0.9981514811515808, + 0.9987039566040039, + 0.9987006187438965, + 0.998772919178009, + 0.9987151622772217, + 0.9987358450889587, + 0.9986166954040527, + 0.9987543821334839, + 0.99887615442276, + 0.9983853101730347, + 0.9984806180000305, + 0.9989081621170044, + 0.9987680315971375, + 0.9974400997161865, + 0.998768150806427, + 0.9985238909721375 + ], + "sentiment_counts": { + "POSITIVE": 16, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9995021820068359, + 0.9982739686965942, + 0.9983628392219543, + 0.9988929629325867, + 0.9994997978210449, + 0.996357262134552, + 0.9969931840896606, + 0.9987665414810181, + 0.9995115995407104, + 0.9986411929130554, + 0.9988096952438354, + 0.9993659853935242, + 0.9946048855781555, + 0.9982156753540039, + 0.9979374408721924, + 0.9988652467727661, + 0.9985225796699524, + 0.9975814819335938, + 0.9994601607322693 + ], + "sentiment_counts": { + "NEGATIVE": 9, + "POSITIVE": 10 + }, + "sentiment_distribution": { + "NEGATIVE": 0.47368421052631576, + "POSITIVE": 0.5263157894736842 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989026784896851, + 0.9993826150894165, + 0.998893678188324, + 0.998921275138855, + 0.9980168342590332, + 0.9980733394622803, + 0.9973565340042114, + 0.9987782835960388, + 0.9987390637397766, + 0.9986851811408997, + 0.9984095692634583, + 0.997119665145874, + 0.9644033312797546, + 0.9987249970436096, + 0.996903121471405, + 0.9985016584396362, + 0.9979877471923828, + 0.998903751373291, + 0.9995028972625732, + 0.9995114803314209, + 0.9988502264022827 + ], + "sentiment_counts": { + "POSITIVE": 14, + "NEGATIVE": 7 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 40, + "final_proportion": 0.6896551724137931, + "final_counts": { + "POSITIVE": 40, + "NEGATIVE": 18 + }, + "final_distribution": { + "POSITIVE": 0.6896551724137931, + "NEGATIVE": 0.3103448275862069 + } + } }, { "season_code": "202303", @@ -43118,7 +88537,7 @@ "15:30", "17:20", "WTS A74 - Watson Center 60 Sachem Street A74", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -43130,10 +88549,151 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89101\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89101/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988307356834412, + 0.9987311959266663, + 0.9988253712654114, + 0.9986963868141174, + 0.9977922439575195, + 0.9989092350006104, + 0.9987074136734009, + 0.9989105463027954, + 0.9989005327224731, + 0.9994232654571533, + 0.998802900314331, + 0.998788058757782, + 0.9988262057304382 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9230769230769231, + "NEGATIVE": 0.07692307692307693 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9230769230769231 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988911747932434, + 0.9972776770591736, + 0.9954450130462646, + 0.9955629110336304, + 0.9982434511184692, + 0.9986133575439453, + 0.9994713664054871, + 0.9976315498352051, + 0.9988677501678467, + 0.9994813799858093, + 0.9988730549812317 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.6363636363636364, + "NEGATIVE": 0.36363636363636365 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6363636363636364 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983689188957214, + 0.994413435459137, + 0.9941366910934448, + 0.9987596273422241, + 0.9988710284233093, + 0.996894359588623, + 0.9990221261978149, + 0.9994589686393738, + 0.9985288381576538, + 0.9995112419128418, + 0.9981564879417419, + 0.9988202452659607, + 0.9988044500350952 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.6923076923076923, + "NEGATIVE": 0.3076923076923077 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6923076923076923 + ] + }, + "final_label": "POSITIVE", + "final_count": 28, + "final_proportion": 0.7567567567567568, + "final_counts": { + "POSITIVE": 28, + "NEGATIVE": 9 + }, + "final_distribution": { + "POSITIVE": 0.7567567567567568, + "NEGATIVE": 0.24324324324324326 + } + } }, { "season_code": "202303", @@ -43171,7 +88731,7 @@ "13:30", "15:20", "WTS A74 - Watson Center 60 Sachem Street A74", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -43183,10 +88743,93 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89102\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89102/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988051652908325, + 0.9989081621170044, + 0.998856782913208 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986880421638489, + 0.998891294002533, + 0.998525083065033, + 0.998711347579956 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9976698756217957, + 0.9988536834716797 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 9 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -43229,7 +88872,84 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989171028137207, + 0.9988790154457092 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989020824432373, + 0.9988916516304016 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989175796508789, + 0.9989014863967896 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 6 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -43272,7 +88992,78 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988993406295776 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989129304885864 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988981485366821 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 3, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 3 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -43314,13 +89105,450 @@ ], "regnotes": "", "rp_attr": "This course meets during the Reading Period: the week between the last week of classes and finals week. Meets Reading Period", - "classnotes": "This course's lab sections day\/time will be determined by the Preference Selection system Lab section times are scheduled based on enrollment preferences from the following options: Mon., Tues., Wed., Thurs., OR Fri. from 1:00 - 5:00 pm in SCL 228-32. For more information about Preference Selection, visit Yale Chemistry's website at the beginning of August.", - "final_exam": "", - "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89868\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "classnotes": "This course's lab sections day/time will be determined by the Preference Selection system Lab section times are scheduled based on enrollment preferences from the following options: Mon., Tues., Wed., Thurs., OR Fri. from 1:00 - 5:00 pm in SCL 228-32. For more information about Preference Selection, visit Yale Chemistry's website at the beginning of August.", + "final_exam": "", + "course_home_url": "", + "syllabus_url": "https://yale.instructure.com/courses/89868/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989101886749268, + 0.9989200830459595, + 0.998857855796814, + 0.9988571405410767, + 0.996904194355011, + 0.9988594055175781, + 0.998900294303894, + 0.9984114170074463, + 0.8504049777984619, + 0.9988725781440735, + 0.9988908171653748, + 0.9988555908203125, + 0.9987680315971375, + 0.9976634979248047, + 0.9986959099769592, + 0.9988093376159668, + 0.9973329305648804, + 0.9988929629325867, + 0.997580885887146, + 0.9988470077514648, + 0.9986333250999451, + 0.9988831877708435, + 0.9987008571624756, + 0.9987984895706177, + 0.9984094500541687, + 0.9986360669136047, + 0.9987168312072754, + 0.9988834261894226, + 0.9988806843757629, + 0.968705415725708, + 0.9984831213951111, + 0.9988675117492676, + 0.9942658543586731, + 0.9988614320755005, + 0.9987545013427734, + 0.9988296627998352, + 0.9988043308258057, + 0.9989057779312134, + 0.9986950755119324, + 0.9987027645111084, + 0.9987854361534119, + 0.999500036239624, + 0.9995061159133911, + 0.9995037317276001, + 0.9988914132118225, + 0.998900294303894, + 0.9974786639213562, + 0.9989063739776611, + 0.9345139861106873, + 0.9972359538078308, + 0.9988089799880981, + 0.9989308714866638, + 0.998684823513031, + 0.9984132051467896, + 0.9981744289398193, + 0.9989029169082642, + 0.9987648725509644, + 0.9994966983795166 + ], + "sentiment_counts": { + "POSITIVE": 51, + "NEGATIVE": 7 + }, + "sentiment_distribution": { + "POSITIVE": 0.8793103448275862, + "NEGATIVE": 0.1206896551724138 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8793103448275862 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9985242486000061, + 0.9964796900749207, + 0.9960330128669739, + 0.9900590777397156, + 0.9994365572929382, + 0.9994814991950989, + 0.9984933137893677, + 0.9968574047088623, + 0.9983355402946472, + 0.9968164563179016, + 0.9976869821548462, + 0.9989125728607178, + 0.9988718628883362, + 0.998579740524292, + 0.9995031356811523, + 0.9957345128059387, + 0.9847090244293213, + 0.9989055395126343, + 0.9958662986755371, + 0.9986642599105835, + 0.9995055198669434, + 0.9960649609565735, + 0.9993576407432556, + 0.9987860321998596, + 0.9994958639144897, + 0.9994946718215942, + 0.9962706565856934, + 0.9989134073257446, + 0.9987371563911438, + 0.9986996650695801, + 0.9988435506820679, + 0.9989091157913208, + 0.9987953901290894, + 0.9972827434539795, + 0.9986415505409241, + 0.9968129992485046, + 0.9981879591941833, + 0.9987894892692566, + 0.996065080165863, + 0.9987603425979614, + 0.9978849291801453, + 0.9801207184791565, + 0.9920305013656616, + 0.9976551532745361, + 0.9989066123962402, + 0.9958462119102478, + 0.9994750618934631, + 0.9971635937690735, + 0.999503493309021, + 0.9994775652885437, + 0.9994688630104065, + 0.9956234097480774, + 0.9988799691200256, + 0.9995086193084717, + 0.8713905215263367, + 0.9977994561195374, + 0.9990875720977783, + 0.9987956285476685, + 0.9988439083099365, + 0.9959191679954529, + 0.9989293217658997, + 0.9971787929534912, + 0.9986795783042908, + 0.9985699653625488, + 0.9964075684547424, + 0.9986353516578674, + 0.9982746839523315, + 0.9995017051696777 + ], + "sentiment_counts": { + "POSITIVE": 43, + "NEGATIVE": 25 + }, + "sentiment_distribution": { + "POSITIVE": 0.6323529411764706, + "NEGATIVE": 0.36764705882352944 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6323529411764706 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989309906959534, + 0.9810020923614502, + 0.9995061159133911, + 0.9995027780532837, + 0.994776725769043, + 0.9926339983940125, + 0.9994877576828003, + 0.9993903636932373, + 0.998785674571991, + 0.9987382292747498, + 0.9989258646965027, + 0.9988571405410767, + 0.9995033740997314, + 0.9994200468063354, + 0.9994596838951111, + 0.9995068311691284, + 0.9974204301834106, + 0.9989199638366699, + 0.9988489151000977, + 0.9984744191169739, + 0.9980652928352356, + 0.9912436008453369, + 0.9955053329467773, + 0.9988478422164917, + 0.9975698590278625, + 0.9994283318519592, + 0.9824402332305908, + 0.9989099502563477, + 0.998895525932312, + 0.9988110065460205, + 0.9988221526145935, + 0.9988135099411011, + 0.9982688426971436, + 0.9988501071929932, + 0.9994875192642212, + 0.9983307719230652, + 0.9990511536598206, + 0.9994953870773315, + 0.9988545179367065, + 0.9994465708732605, + 0.9988747239112854, + 0.9988892674446106, + 0.9987509250640869, + 0.9915661811828613, + 0.9968035221099854, + 0.9994807839393616, + 0.9995054006576538, + 0.9994962215423584, + 0.9983168840408325, + 0.9856181740760803, + 0.9785163998603821, + 0.9988775849342346, + 0.9988933205604553, + 0.9989226460456848, + 0.9980679154396057, + 0.9988743662834167, + 0.9988008737564087, + 0.9982782602310181, + 0.999498724937439 + ], + "sentiment_counts": { + "POSITIVE": 32, + "NEGATIVE": 27 + }, + "sentiment_distribution": { + "POSITIVE": 0.5423728813559322, + "NEGATIVE": 0.4576271186440678 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "final_label": "POSITIVE", + "final_count": 126, + "final_proportion": 0.6810810810810811, + "final_counts": { + "POSITIVE": 126, + "NEGATIVE": 59 + }, + "final_distribution": { + "POSITIVE": 0.6810810810810811, + "NEGATIVE": 0.31891891891891894 + } + } }, { "season_code": "202303", @@ -43371,7 +89599,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -43422,7 +89678,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -43473,7 +89757,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -43524,7 +89836,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -43575,7 +89915,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -43626,7 +89994,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -43677,7 +90073,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -43728,7 +90152,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -43779,7 +90231,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -43830,7 +90310,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -43881,7 +90389,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -43932,7 +90468,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -43983,7 +90547,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -44034,7 +90626,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -44085,7 +90705,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -44136,7 +90784,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -44187,7 +90863,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -44238,7 +90942,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -44289,7 +91021,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -44340,7 +91100,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -44391,7 +91179,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -44442,7 +91258,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -44493,7 +91337,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -44544,7 +91416,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -44595,7 +91495,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -44646,12 +91574,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "After CHEM 134L or the equivalent in advanced placement. To accompany or follow CHEM 165 or 167. May not be taken after a higher-numbered laboratory course.", - "description": "Introduction to rate and equilibrium measurements, acid-base chemistry, synthesis of inorganic compounds, and qualitative\/quantitative analysis.", + "description": "Introduction to rate and equilibrium measurements, acid-base chemistry, synthesis of inorganic compounds, and qualitative/quantitative analysis.", "short_title": "General Chemistry Laboratory II", "title": "General Chemistry Laboratory II", "school": "YC", @@ -44687,18 +91643,107 @@ ], "regnotes": "", "rp_attr": "This course meets during the Reading Period: the week between the last week of classes and finals week. Meets Reading Period", - "classnotes": "Lab section times are scheduled based on enrollment preferences from the following options: Wed. or Thurs., 1:00 - 5:00 pm in SCL 228-232. \nLecture meets every Wed. or Thurs. from 1:00 - 2:00 pm in SCL 23. \nChemistry's Preference Selection process will occur in August 2023. For further details about how Chemistry's Preference Selection works please visit: https:\/\/chem.yale.edu\/academics\/undergraduate-studies\/preference-selection?msclkid=2193c3feb10811ec827162df07eca554", + "classnotes": "Lab section times are scheduled based on enrollment preferences from the following options: Wed. or Thurs., 1:00 - 5:00 pm in SCL 228-232. \nLecture meets every Wed. or Thurs. from 1:00 - 2:00 pm in SCL 23. \nChemistry's Preference Selection process will occur in August 2023. For further details about how Chemistry's Preference Selection works please visit: https://chem.yale.edu/academics/undergraduate-studies/preference-selection?msclkid=2193c3feb10811ec827162df07eca554", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89869\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89869/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9987866282463074, + 0.8138574957847595, + 0.9984292387962341 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.3333333333333333, + "NEGATIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.6666666666666666 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987866282463074, + 0.9979483485221863, + 0.9994826316833496, + 0.9988006353378296 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987866282463074, + 0.9955730438232422, + 0.9776833057403564, + 0.997117280960083 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "final_label": "neutral", + "final_count": 6, + "final_proportion": 0.5, + "final_counts": { + "POSITIVE": 5, + "NEGATIVE": 6 + }, + "final_distribution": { + "POSITIVE": 0.45454545454545453, + "NEGATIVE": 0.5454545454545454 + } + } }, { "season_code": "202303", "requirements": "After CHEM 134L or the equivalent in advanced placement. To accompany or follow CHEM 165 or 167. May not be taken after a higher-numbered laboratory course.", - "description": "Introduction to rate and equilibrium measurements, acid-base chemistry, synthesis of inorganic compounds, and qualitative\/quantitative analysis.", + "description": "Introduction to rate and equilibrium measurements, acid-base chemistry, synthesis of inorganic compounds, and qualitative/quantitative analysis.", "short_title": "General Chemistry Laboratory II", "title": "General Chemistry Laboratory II", "school": "YC", @@ -44743,12 +91788,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "After CHEM 134L or the equivalent in advanced placement. To accompany or follow CHEM 165 or 167. May not be taken after a higher-numbered laboratory course.", - "description": "Introduction to rate and equilibrium measurements, acid-base chemistry, synthesis of inorganic compounds, and qualitative\/quantitative analysis.", + "description": "Introduction to rate and equilibrium measurements, acid-base chemistry, synthesis of inorganic compounds, and qualitative/quantitative analysis.", "short_title": "General Chemistry Laboratory II", "title": "General Chemistry Laboratory II", "school": "YC", @@ -44793,12 +91866,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "After CHEM 134L or the equivalent in advanced placement. To accompany or follow CHEM 165 or 167. May not be taken after a higher-numbered laboratory course.", - "description": "Introduction to rate and equilibrium measurements, acid-base chemistry, synthesis of inorganic compounds, and qualitative\/quantitative analysis.", + "description": "Introduction to rate and equilibrium measurements, acid-base chemistry, synthesis of inorganic compounds, and qualitative/quantitative analysis.", "short_title": "General Chemistry Laboratory II", "title": "General Chemistry Laboratory II", "school": "YC", @@ -44843,12 +91944,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "After CHEM 134L or the equivalent in advanced placement. To accompany or follow CHEM 165 or 167. May not be taken after a higher-numbered laboratory course.", - "description": "Introduction to rate and equilibrium measurements, acid-base chemistry, synthesis of inorganic compounds, and qualitative\/quantitative analysis.", + "description": "Introduction to rate and equilibrium measurements, acid-base chemistry, synthesis of inorganic compounds, and qualitative/quantitative analysis.", "short_title": "General Chemistry Laboratory II", "title": "General Chemistry Laboratory II", "school": "YC", @@ -44893,7 +92022,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -44930,7 +92087,7 @@ "10:30", "11:20", "SCL 110 - Sterling Chemistry Laboratory 110", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ], "Wednesday": [ @@ -44938,7 +92095,7 @@ "10:30", "11:20", "SCL 110 - Sterling Chemistry Laboratory 110", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ], "Friday": [ @@ -44946,7 +92103,7 @@ "10:30", "11:20", "SCL 110 - Sterling Chemistry Laboratory 110", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -44963,13 +92120,346 @@ ], "regnotes": "", "rp_attr": "This course meets during the Reading Period: the week between the last week of classes and finals week. Meets Reading Period", - "classnotes": "This course's lab sections' day\/time will be determined by the Preference Selection system which will run in August 2023. The lecture meets every Mon., Wed., Fri. from 10:30 am - 11:20 am in SCL 110. For further details about how Chemistry's Preference Selection works please visit: https:\/\/chem.yale.edu\/academics\/undergraduate-studies\/preference-selection?msclkid=2193c3feb10811ec827162df07eca554", + "classnotes": "This course's lab sections' day/time will be determined by the Preference Selection system which will run in August 2023. The lecture meets every Mon., Wed., Fri. from 10:30 am - 11:20 am in SCL 110. For further details about how Chemistry's Preference Selection works please visit: https://chem.yale.edu/academics/undergraduate-studies/preference-selection?msclkid=2193c3feb10811ec827162df07eca554", "final_exam": "Monday, December 18, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89870\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89870/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9975773692131042, + 0.9968430995941162, + 0.9986355900764465, + 0.9987537860870361, + 0.9556333422660828, + 0.9978840947151184, + 0.9988228678703308, + 0.9986819624900818, + 0.9980406165122986, + 0.9985503554344177, + 0.9974984526634216, + 0.9987969398498535, + 0.9988806843757629, + 0.9989050626754761, + 0.9978333115577698, + 0.9984886646270752, + 0.9935616254806519, + 0.9988856911659241, + 0.9984557628631592, + 0.9988443851470947, + 0.9988850951194763, + 0.9989104270935059, + 0.9938924312591553, + 0.9989235997200012, + 0.998856782913208, + 0.998740017414093, + 0.9988987445831299, + 0.9974675178527832, + 0.9988163709640503, + 0.9988712668418884, + 0.9988135099411011, + 0.9988242983818054, + 0.9916606545448303, + 0.9980282187461853, + 0.9987239241600037, + 0.9988813996315002, + 0.9988395571708679, + 0.997803270816803, + 0.9989068508148193, + 0.9989066123962402, + 0.9941270351409912, + 0.9987993240356445 + ], + "sentiment_counts": { + "POSITIVE": 40, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.9523809523809523, + "NEGATIVE": 0.047619047619047616 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9523809523809523 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9968085885047913, + 0.9988023042678833, + 0.9985707998275757, + 0.9989094734191895, + 0.9986685514450073, + 0.9975265860557556, + 0.9968762397766113, + 0.9989005327224731, + 0.9989223480224609, + 0.998554527759552, + 0.9851688146591187, + 0.9988287091255188, + 0.9988786578178406, + 0.998931348323822, + 0.9943445920944214, + 0.9930219054222107, + 0.9987595081329346, + 0.9988731741905212, + 0.9988676309585571, + 0.9975457787513733, + 0.9988921284675598, + 0.9989033937454224, + 0.9983261227607727, + 0.9988051652908325, + 0.9989323019981384, + 0.9989120960235596, + 0.9988352656364441, + 0.998618483543396, + 0.9989224672317505, + 0.998895525932312, + 0.9071811437606812, + 0.9995028972625732, + 0.9976484179496765, + 0.9988941550254822, + 0.9989018440246582, + 0.9989135265350342, + 0.9988930821418762, + 0.9988893866539001, + 0.9987467527389526, + 0.9928083419799805, + 0.9909821152687073, + 0.9987719655036926, + 0.9982069730758667, + 0.9988654851913452 + ], + "sentiment_counts": { + "NEGATIVE": 5, + "POSITIVE": 39 + }, + "sentiment_distribution": { + "NEGATIVE": 0.11363636363636363, + "POSITIVE": 0.8863636363636364 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8863636363636364 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9877620935440063, + 0.998217761516571, + 0.996832549571991, + 0.9988059997558594, + 0.9991556406021118, + 0.9883960485458374, + 0.9989088773727417, + 0.9995009899139404, + 0.9988006353378296, + 0.9989376664161682, + 0.9989006519317627, + 0.9995013475418091, + 0.9953676462173462, + 0.9988728165626526, + 0.9988816380500793, + 0.9993658661842346, + 0.9983891248703003, + 0.998909592628479, + 0.9988608360290527, + 0.9994112253189087, + 0.998754620552063, + 0.998779833316803, + 0.9981977343559265, + 0.9977464079856873, + 0.9988957643508911, + 0.9988970756530762, + 0.9989209175109863, + 0.9981706142425537, + 0.9987738728523254, + 0.9988418221473694, + 0.9991732239723206, + 0.9989307522773743, + 0.9987627267837524, + 0.997799813747406, + 0.9989200830459595, + 0.9988046884536743, + 0.9974592328071594, + 0.9989084005355835, + 0.9939656853675842, + 0.9929187893867493, + 0.589138925075531, + 0.9965782761573792, + 0.9986816048622131, + 0.9989086389541626, + 0.9865235686302185, + 0.9987336993217468, + 0.9988247752189636 + ], + "sentiment_counts": { + "NEGATIVE": 12, + "POSITIVE": 35 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2553191489361702, + "POSITIVE": 0.7446808510638298 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7446808510638298 + ] + }, + "final_label": "POSITIVE", + "final_count": 114, + "final_proportion": 0.8571428571428571, + "final_counts": { + "POSITIVE": 114, + "NEGATIVE": 19 + }, + "final_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + } + } }, { "season_code": "202303", @@ -45000,7 +92490,7 @@ "10:30", "11:20", "SCL 18 - Sterling Chemistry Laboratory 18", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -45023,7 +92513,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -45054,7 +92572,7 @@ "11:35", "12:25", "SCL 18 - Sterling Chemistry Laboratory 18", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -45077,7 +92595,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -45108,7 +92654,7 @@ "13:30", "14:20", "SCL 18 - Sterling Chemistry Laboratory 18", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -45131,7 +92677,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -45162,7 +92736,7 @@ "15:30", "16:20", "SCL 18 - Sterling Chemistry Laboratory 18", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -45185,7 +92759,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -45216,7 +92818,7 @@ "19:00", "19:50", "SCL 18 - Sterling Chemistry Laboratory 18", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -45239,7 +92841,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -45270,7 +92900,7 @@ "10:30", "11:20", "SCL 21 - Sterling Chemistry Laboratory 21", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -45293,7 +92923,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -45324,7 +92982,7 @@ "13:30", "14:20", "SCL 18 - Sterling Chemistry Laboratory 18", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -45347,7 +93005,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -45378,7 +93064,7 @@ "14:30", "15:20", "SCL 18 - Sterling Chemistry Laboratory 18", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -45401,7 +93087,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -45432,7 +93146,7 @@ "11:35", "12:25", "SCL 21 - Sterling Chemistry Laboratory 21", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -45455,7 +93169,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -45486,7 +93228,7 @@ "13:30", "14:20", "SCL 19 - Sterling Chemistry Laboratory 19", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -45509,7 +93251,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -45540,7 +93310,7 @@ "10:30", "11:20", "SCL 253 - Sterling Chemistry Laboratory 253", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -45563,7 +93333,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -45594,7 +93392,7 @@ "11:35", "12:25", "SCL 253 - Sterling Chemistry Laboratory 253", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -45617,7 +93415,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -45648,7 +93474,7 @@ "11:35", "12:25", "SCL 19 - Sterling Chemistry Laboratory 19", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -45671,7 +93497,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -45702,7 +93556,7 @@ "10:30", "11:20", "SCL 19 - Sterling Chemistry Laboratory 19", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -45725,7 +93579,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -45756,7 +93638,7 @@ "10:30", "11:20", "SCL 21 - Sterling Chemistry Laboratory 21", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -45779,7 +93661,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -45810,7 +93720,7 @@ "10:30", "11:20", "SCL 23 - Sterling Chemistry Laboratory 23", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -45833,7 +93743,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -45864,7 +93802,7 @@ "11:35", "12:25", "SCL 19 - Sterling Chemistry Laboratory 19", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -45887,7 +93825,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -45918,7 +93884,7 @@ "10:30", "11:20", "SCL 19 - Sterling Chemistry Laboratory 19", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -45941,7 +93907,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -45972,7 +93966,7 @@ "11:35", "12:25", "SCL 23 - Sterling Chemistry Laboratory 23", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -45995,7 +93989,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -46026,7 +94048,7 @@ "10:30", "11:20", "SCL 201 - Sterling Chemistry Laboratory 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -46049,7 +94071,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -46080,7 +94130,7 @@ "10:30", "11:20", "SCL 18 - Sterling Chemistry Laboratory 18", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -46103,7 +94153,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -46134,7 +94212,7 @@ "11:35", "12:25", "SCL 253 - Sterling Chemistry Laboratory 253", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -46157,7 +94235,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -46194,7 +94300,7 @@ "10:30", "11:20", "SCL 111 - Sterling Chemistry Laboratory 111", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ], "Wednesday": [ @@ -46202,7 +94308,7 @@ "10:30", "11:20", "SCL 111 - Sterling Chemistry Laboratory 111", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ], "Friday": [ @@ -46210,7 +94316,7 @@ "10:30", "11:20", "SCL 111 - Sterling Chemistry Laboratory 111", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -46230,10 +94336,129 @@ "classnotes": "", "final_exam": "Monday, December 18, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92611\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/92611/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987474679946899, + 0.9988295435905457, + 0.9989168643951416, + 0.9887222051620483, + 0.9989069700241089, + 0.9989001750946045, + 0.9987945556640625, + 0.9986121654510498 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987925291061401, + 0.9989270567893982, + 0.9964756369590759, + 0.9988917708396912, + 0.9978779554367065, + 0.998765230178833, + 0.9989026784896851, + 0.9962549209594727, + 0.9989047050476074 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987727999687195, + 0.9989142417907715, + 0.9995007514953613, + 0.9989200830459595, + 0.9983614087104797, + 0.9989173412322998, + 0.9989374279975891, + 0.9979382157325745, + 0.9988642930984497 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "final_label": "POSITIVE", + "final_count": 25, + "final_proportion": 0.9615384615384616, + "final_counts": { + "POSITIVE": 25, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9615384615384616, + "NEGATIVE": 0.038461538461538464 + } + } }, { "season_code": "202303", @@ -46270,7 +94495,7 @@ "10:30", "11:20", "SCL 160 - Sterling Chemistry Laboratory 160", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ], "Wednesday": [ @@ -46278,7 +94503,7 @@ "10:30", "11:20", "SCL 160 - Sterling Chemistry Laboratory 160", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ], "Friday": [ @@ -46286,7 +94511,7 @@ "10:30", "11:20", "SCL 160 - Sterling Chemistry Laboratory 160", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -46301,13 +94526,194 @@ ], "regnotes": "", "rp_attr": "This course meets during the Reading Period: the week between the last week of classes and finals week. Meets Reading Period", - "classnotes": "Final discussion section times are scheduled based on enrollment preferences through Preference Selection system which will run in August 2023. Lecture meets every Mon., Wed, Fri. 10:30 am - 11:20 am in SCL 160. For further details about how Chemistry's Preference Selection works please visit: https:\/\/chem.yale.edu\/academics\/undergraduate-studies\/preference-selection?msclkid=2193c3feb10811ec827162df07eca554", + "classnotes": "Final discussion section times are scheduled based on enrollment preferences through Preference Selection system which will run in August 2023. Lecture meets every Mon., Wed, Fri. 10:30 am - 11:20 am in SCL 160. For further details about how Chemistry's Preference Selection works please visit: https://chem.yale.edu/academics/undergraduate-studies/preference-selection?msclkid=2193c3feb10811ec827162df07eca554", "final_exam": "Monday, December 18, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89904\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89904/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989041090011597, + 0.9945846199989319, + 0.9987533092498779, + 0.9986469149589539, + 0.9971215128898621, + 0.9986581802368164, + 0.998855471611023, + 0.9988951086997986, + 0.9988621473312378, + 0.9985930323600769, + 0.9985765218734741, + 0.9989066123962402, + 0.9989294409751892, + 0.9976646900177002, + 0.9989356398582458, + 0.9988381266593933, + 0.9989194869995117, + 0.9988489151000977, + 0.9989319443702698 + ], + "sentiment_counts": { + "POSITIVE": 19, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988810420036316, + 0.9973196387290955, + 0.9986962676048279, + 0.9981099367141724, + 0.9984099864959717, + 0.9988824725151062, + 0.9987190961837769, + 0.9988709092140198, + 0.998829185962677, + 0.9989288449287415, + 0.9988527297973633, + 0.9989055395126343, + 0.9989301562309265, + 0.9988995790481567, + 0.9989352822303772, + 0.9965035915374756, + 0.9989340901374817, + 0.9988996982574463, + 0.9988507032394409 + ], + "sentiment_counts": { + "POSITIVE": 19, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988948702812195, + 0.9954648613929749, + 0.9989293217658997, + 0.9994889497756958, + 0.9983172416687012, + 0.9986403584480286, + 0.9988671541213989, + 0.9987792372703552, + 0.998910665512085, + 0.9985938668251038, + 0.9972923398017883, + 0.9988893866539001, + 0.9989373087882996, + 0.9995027780532837, + 0.9989392161369324, + 0.998815655708313, + 0.9989226460456848, + 0.998935878276825, + 0.9872000217437744 + ], + "sentiment_counts": { + "POSITIVE": 14, + "NEGATIVE": 5 + }, + "sentiment_distribution": { + "POSITIVE": 0.7368421052631579, + "NEGATIVE": 0.2631578947368421 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7368421052631579 + ] + }, + "final_label": "POSITIVE", + "final_count": 52, + "final_proportion": 0.9122807017543859, + "final_counts": { + "POSITIVE": 52, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.9122807017543859, + "NEGATIVE": 0.08771929824561403 + } + } }, { "season_code": "202303", @@ -46338,7 +94744,7 @@ "13:30", "14:20", "SCL 18 - Sterling Chemistry Laboratory 18", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -46359,7 +94765,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -46390,7 +94824,7 @@ "14:30", "15:20", "SCL 18 - Sterling Chemistry Laboratory 18", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -46411,7 +94845,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -46479,7 +94941,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -46510,7 +95000,7 @@ "13:30", "14:20", "SCL 19 - Sterling Chemistry Laboratory 19", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -46531,7 +95021,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -46562,7 +95080,7 @@ "14:30", "15:20", "SCL 19 - Sterling Chemistry Laboratory 19", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -46583,7 +95101,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -46651,7 +95197,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -46688,7 +95262,7 @@ "10:30", "11:20", "SCL 19 - Sterling Chemistry Laboratory 19", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ], "Wednesday": [ @@ -46696,7 +95270,7 @@ "10:30", "11:20", "SCL 19 - Sterling Chemistry Laboratory 19", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ], "Friday": [ @@ -46704,7 +95278,7 @@ "10:30", "11:20", "SCL 19 - Sterling Chemistry Laboratory 19", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -46722,13 +95296,102 @@ ], "regnotes": "", "rp_attr": "This course meets during the Reading Period: the week between the last week of classes and finals week. Meets Reading Period", - "classnotes": "This course's lab sections day\/time will be determined by the Preference Selection system which will take place in August 2023. Lecture meets every Mon., Wed., Fri. from 10:30 am - 11:20 am in SCL 19. For further details about how Chemistry's Preference Selection works please visit: https:\/\/chem.yale.edu\/academics\/undergraduate-studies\/preference-selection?msclkid=2193c3feb10811ec827162df07eca554", + "classnotes": "This course's lab sections day/time will be determined by the Preference Selection system which will take place in August 2023. Lecture meets every Mon., Wed., Fri. from 10:30 am - 11:20 am in SCL 19. For further details about how Chemistry's Preference Selection works please visit: https://chem.yale.edu/academics/undergraduate-studies/preference-selection?msclkid=2193c3feb10811ec827162df07eca554", "final_exam": "Monday, December 18, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89905\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89905/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984363913536072, + 0.9988213181495667, + 0.9986035227775574 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986602067947388, + 0.9989190101623535, + 0.9989111423492432 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988071918487549, + 0.9973450303077698, + 0.9988996982574463, + 0.9972375631332397, + 0.9901186227798462 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 0.8181818181818182, + "final_counts": { + "POSITIVE": 9, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8181818181818182, + "NEGATIVE": 0.18181818181818182 + } + } }, { "season_code": "202303", @@ -46759,7 +95422,7 @@ "13:30", "14:20", "SCL 19 - Sterling Chemistry Laboratory 19", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -46783,7 +95446,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -46814,7 +95505,7 @@ "14:30", "15:20", "SCL 19 - Sterling Chemistry Laboratory 19", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -46838,7 +95529,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -46869,7 +95588,7 @@ "11:35", "12:25", "SCL 23 - Sterling Chemistry Laboratory 23", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -46893,7 +95612,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -46924,7 +95671,7 @@ "14:30", "15:20", "SCL 23 - Sterling Chemistry Laboratory 23", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -46948,7 +95695,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -46985,7 +95760,7 @@ "9:00", "10:15", "SCL 160 - Sterling Chemistry Laboratory 160", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ], "Wednesday": [ @@ -46993,7 +95768,7 @@ "9:00", "10:15", "SCL 160 - Sterling Chemistry Laboratory 160", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -47007,13 +95782,242 @@ ], "regnotes": "", "rp_attr": "This course meets during the Reading Period: the week between the last week of classes and finals week. Meets Reading Period", - "classnotes": "Preference Selection for this course determines the discussion section day\/time. Lecture meets every Mon., Wed. from 9:00 am - 10:15 am in SCL 160. \nThis process with occur in August 2023 by the Chemistry department. Preference Selection for CHEM 174 can be accessed here: http:\/\/students.yale.edu\/ocs-preference\/select\/select?id=24061 ", + "classnotes": "Preference Selection for this course determines the discussion section day/time. Lecture meets every Mon., Wed. from 9:00 am - 10:15 am in SCL 160. \nThis process with occur in August 2023 by the Chemistry department. Preference Selection for CHEM 174 can be accessed here: http://students.yale.edu/ocs-preference/select/select?id=24061 ", "final_exam": "Thursday, December 14, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89906\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89906/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9573434591293335, + 0.9930574893951416, + 0.9989019632339478, + 0.9988677501678467, + 0.9988110065460205, + 0.9984293580055237, + 0.9983598589897156, + 0.998938262462616, + 0.9988784193992615, + 0.9989055395126343, + 0.9989097118377686, + 0.9971725940704346, + 0.9988131523132324, + 0.9988424181938171, + 0.9989252686500549, + 0.998924195766449, + 0.9988722205162048, + 0.9912898540496826, + 0.9938215017318726, + 0.9989159107208252, + 0.9989060163497925, + 0.9984616041183472, + 0.9985306262969971, + 0.9987427592277527, + 0.998531699180603, + 0.9988353848457336 + ], + "sentiment_counts": { + "POSITIVE": 26, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9979411959648132, + 0.9988429546356201, + 0.9989311099052429, + 0.9986274242401123, + 0.9986019730567932, + 0.9988006353378296, + 0.9988731741905212, + 0.9913323521614075, + 0.9989162683486938, + 0.9989247918128967, + 0.9989032745361328, + 0.9988632202148438, + 0.9969401359558105, + 0.9989311099052429, + 0.9931331276893616, + 0.9989357590675354, + 0.9989132881164551, + 0.9988641738891602, + 0.9985804557800293, + 0.9989100694656372, + 0.9989140033721924, + 0.9988386034965515, + 0.9988406300544739, + 0.9985306262969971, + 0.9985767602920532, + 0.998920202255249, + 0.9989086389541626 + ], + "sentiment_counts": { + "POSITIVE": 27, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988933205604553, + 0.9956334233283997, + 0.9989283680915833, + 0.9988921284675598, + 0.9988805651664734, + 0.9989215135574341, + 0.9988927245140076, + 0.9989290833473206, + 0.99885094165802, + 0.9984943866729736, + 0.998715877532959, + 0.997117280960083, + 0.9989033937454224, + 0.9983271956443787, + 0.998928964138031, + 0.9313861727714539, + 0.9989176988601685, + 0.9989343285560608, + 0.997117280960083, + 0.9988812804222107, + 0.9986777901649475, + 0.994163453578949, + 0.9967271089553833, + 0.9989064931869507, + 0.9985306262969971, + 0.9708139300346375, + 0.9989334940910339, + 0.9989123344421387 + ], + "sentiment_counts": { + "POSITIVE": 27, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9642857142857143, + "NEGATIVE": 0.03571428571428571 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9642857142857143 + ] + }, + "final_label": "POSITIVE", + "final_count": 80, + "final_proportion": 0.9876543209876543, + "final_counts": { + "POSITIVE": 80, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9876543209876543, + "NEGATIVE": 0.012345679012345678 + } + } }, { "season_code": "202303", @@ -47044,7 +96048,7 @@ "13:30", "14:20", "SCL 21 - Sterling Chemistry Laboratory 21", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -47064,7 +96068,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -47095,7 +96127,7 @@ "14:30", "15:20", "SCL 21 - Sterling Chemistry Laboratory 21", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -47115,7 +96147,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -47146,7 +96206,7 @@ "19:00", "19:50", "SCL 21 - Sterling Chemistry Laboratory 21", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -47166,7 +96226,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -47225,7 +96313,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -47256,7 +96372,7 @@ "13:30", "14:20", "SCL 21 - Sterling Chemistry Laboratory 21", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -47276,7 +96392,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -47307,7 +96451,7 @@ "14:30", "15:20", "SCL 21 - Sterling Chemistry Laboratory 21", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -47327,7 +96471,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -47358,7 +96530,7 @@ "19:00", "19:50", "SCL 23 - Sterling Chemistry Laboratory 23", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -47378,7 +96550,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -47437,7 +96637,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -47474,7 +96702,7 @@ "9:00", "10:15", "SCL 110 - Sterling Chemistry Laboratory 110", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ], "Wednesday": [ @@ -47482,7 +96710,7 @@ "9:00", "10:15", "SCL 110 - Sterling Chemistry Laboratory 110", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -47496,13 +96724,388 @@ ], "regnotes": "", "rp_attr": "This course meets during the Reading Period: the week between the last week of classes and finals week. Meets Reading Period", - "classnotes": "Final discussion\/lab section times are scheduled based on Preference Selection enrollment which will occur in August 2023. The Lecture meets every Mon. and Wed. from 9:00 - 10:15 am on SCL 110. For more information about the Preference Selection system, please visit Yale Chemistry's webpage: https:\/\/chem.yale.edu\/academics\/preference-selection-spring-semester-2023?msclkid=2193c3feb10811ec827162df07eca554", + "classnotes": "Final discussion/lab section times are scheduled based on Preference Selection enrollment which will occur in August 2023. The Lecture meets every Mon. and Wed. from 9:00 - 10:15 am on SCL 110. For more information about the Preference Selection system, please visit Yale Chemistry's webpage: https://chem.yale.edu/academics/preference-selection-spring-semester-2023?msclkid=2193c3feb10811ec827162df07eca554", "final_exam": "Thursday, December 14, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89907\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89907/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985514283180237, + 0.9907179474830627, + 0.9971011281013489, + 0.9965193271636963, + 0.9989219903945923, + 0.9930574893951416, + 0.9984519481658936, + 0.9949408769607544, + 0.9987339377403259, + 0.9988319277763367, + 0.9988512992858887, + 0.9978455305099487, + 0.9986491799354553, + 0.9988390803337097, + 0.9988812804222107, + 0.998852014541626, + 0.9987264275550842, + 0.7047459483146667, + 0.9989074468612671, + 0.9987698197364807, + 0.9969285130500793, + 0.9987838864326477, + 0.9984703660011292, + 0.9803594350814819, + 0.9977508187294006, + 0.9979400038719177, + 0.9962148070335388, + 0.998777449131012, + 0.9988729357719421, + 0.9988610744476318, + 0.9958167672157288, + 0.9987340569496155, + 0.9971302151679993, + 0.9976134300231934, + 0.9985924363136292, + 0.9988977909088135, + 0.9988652467727661, + 0.9989235997200012, + 0.9985326528549194, + 0.998699426651001, + 0.9986496567726135, + 0.9983506202697754, + 0.9988565444946289, + 0.9823549389839172, + 0.9987371563911438, + 0.9986604452133179, + 0.9983578324317932, + 0.9988908171653748, + 0.9986602067947388 + ], + "sentiment_counts": { + "POSITIVE": 49, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9978001713752747, + 0.9987020492553711, + 0.9984681010246277, + 0.9976667165756226, + 0.9987310767173767, + 0.9965335130691528, + 0.9994482398033142, + 0.9988922476768494, + 0.9988825917243958, + 0.9987239241600037, + 0.9985332489013672, + 0.9876620769500732, + 0.9984638690948486, + 0.9987855553627014, + 0.9989103078842163, + 0.998531699180603, + 0.9851543307304382, + 0.9994903802871704, + 0.9989099502563477, + 0.9987718462944031, + 0.9986904263496399, + 0.9983205199241638, + 0.9989205598831177, + 0.9983919262886047, + 0.9961552023887634, + 0.9988207221031189, + 0.9987300038337708, + 0.9913289546966553, + 0.9948244094848633, + 0.9988993406295776, + 0.9981096982955933, + 0.9992824196815491, + 0.993835985660553, + 0.9987660646438599, + 0.9989107847213745, + 0.9994854927062988, + 0.9989271759986877, + 0.9988986253738403, + 0.9988640546798706, + 0.9989123344421387, + 0.9982300400733948, + 0.9989168643951416, + 0.9994097948074341, + 0.9980397820472717, + 0.9988983869552612, + 0.9988070726394653, + 0.9940589666366577, + 0.9972336888313293, + 0.998933732509613, + 0.9989190101623535, + 0.9994731545448303, + 0.9989100694656372, + 0.9989113807678223 + ], + "sentiment_counts": { + "POSITIVE": 44, + "NEGATIVE": 9 + }, + "sentiment_distribution": { + "POSITIVE": 0.8301886792452831, + "NEGATIVE": 0.16981132075471697 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8301886792452831 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988738894462585, + 0.9988454580307007, + 0.9984361529350281, + 0.9974592328071594, + 0.9964514970779419, + 0.9804776310920715, + 0.9981922507286072, + 0.9988875985145569, + 0.9988986253738403, + 0.9981436729431152, + 0.9989318251609802, + 0.9986386895179749, + 0.9989228844642639, + 0.9987706542015076, + 0.9989209175109863, + 0.9988052845001221, + 0.9994940757751465, + 0.9969977140426636, + 0.9762327671051025, + 0.9988347887992859, + 0.9830424785614014, + 0.9988687634468079, + 0.9989299178123474, + 0.9974976181983948, + 0.998694121837616, + 0.99893718957901, + 0.9988322854042053, + 0.9988787770271301, + 0.9988995790481567, + 0.9989302754402161, + 0.9987202882766724, + 0.9898547530174255, + 0.9981209635734558, + 0.9988595247268677, + 0.9989055395126343, + 0.9988607168197632, + 0.9981846213340759, + 0.9981922507286072, + 0.9988458156585693, + 0.9989259839057922, + 0.9937325119972229, + 0.9987831711769104, + 0.9886944890022278, + 0.9989022016525269, + 0.9987319111824036, + 0.9988413453102112, + 0.9988695979118347, + 0.9988327622413635, + 0.9983548521995544, + 0.9951460957527161, + 0.9989008903503418, + 0.9974506497383118 + ], + "sentiment_counts": { + "POSITIVE": 45, + "NEGATIVE": 7 + }, + "sentiment_distribution": { + "POSITIVE": 0.8653846153846154, + "NEGATIVE": 0.1346153846153846 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8653846153846154 + ] + }, + "final_label": "POSITIVE", + "final_count": 138, + "final_proportion": 0.8961038961038961, + "final_counts": { + "POSITIVE": 138, + "NEGATIVE": 16 + }, + "final_distribution": { + "POSITIVE": 0.8961038961038961, + "NEGATIVE": 0.1038961038961039 + } + } }, { "season_code": "202303", @@ -47533,7 +97136,7 @@ "14:30", "15:20", "SCL 23 - Sterling Chemistry Laboratory 23", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -47553,7 +97156,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -47584,7 +97215,7 @@ "15:30", "16:20", "SCL 23 - Sterling Chemistry Laboratory 23", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -47604,7 +97235,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -47635,7 +97294,7 @@ "14:30", "15:20", "SCL 18 - Sterling Chemistry Laboratory 18", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -47655,7 +97314,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -47686,7 +97373,7 @@ "19:00", "19:50", "SCL 253 - Sterling Chemistry Laboratory 253", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -47706,7 +97393,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -47737,7 +97452,7 @@ "14:30", "15:20", "SCL 21 - Sterling Chemistry Laboratory 21", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -47757,7 +97472,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -47788,7 +97531,7 @@ "19:00", "19:50", "SCL 18 - Sterling Chemistry Laboratory 18", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -47808,7 +97551,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -47839,7 +97610,7 @@ "11:35", "12:25", "SCL 18 - Sterling Chemistry Laboratory 18", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -47859,7 +97630,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -47890,7 +97689,7 @@ "14:30", "15:20", "SCL 19 - Sterling Chemistry Laboratory 19", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -47910,7 +97709,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -47941,7 +97768,7 @@ "19:00", "19:50", "SCL 19 - Sterling Chemistry Laboratory 19", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -47961,7 +97788,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -47992,7 +97847,7 @@ "14:30", "15:20", "SCL 253 - Sterling Chemistry Laboratory 253", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -48012,7 +97867,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -48043,7 +97926,7 @@ "14:30", "15:20", "SCL 253 - Sterling Chemistry Laboratory 253", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -48063,7 +97946,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -48094,7 +98005,7 @@ "19:00", "19:50", "SCL 110 - Sterling Chemistry Laboratory 110", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -48114,7 +98025,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -48145,7 +98084,7 @@ "14:30", "15:20", "SCL 19 - Sterling Chemistry Laboratory 19", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -48165,7 +98104,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -48196,7 +98163,7 @@ "19:00", "19:50", "SCL 19 - Sterling Chemistry Laboratory 19", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -48216,7 +98183,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -48247,7 +98242,7 @@ "11:35", "12:25", "SCL 19 - Sterling Chemistry Laboratory 19", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -48267,7 +98262,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -48298,7 +98321,7 @@ "14:30", "15:20", "SCL 21 - Sterling Chemistry Laboratory 21", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -48318,7 +98341,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -48349,7 +98400,7 @@ "19:00", "19:50", "SCL 18 - Sterling Chemistry Laboratory 18", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -48369,7 +98420,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -48400,7 +98479,7 @@ "15:30", "16:20", "SCL 21 - Sterling Chemistry Laboratory 21", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -48420,7 +98499,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -48461,13 +98568,502 @@ ], "regnotes": "", "rp_attr": "", - "classnotes": "This course's lab sections' day\/time will be determined by the Preference Selection system which will run in August 2023. Final discussion\/lab section times are scheduled based on enrollment preferences from the following options: Mon., Tues., Wed., Thurs., Fri., from 1:00 - 5:00 pm in SCL 229. For further details about how Chemistry's Preference Selection works please visit: https:\/\/chem.yale.edu\/academics\/undergraduate-studies\/preference-selection?msclkid=2193c3feb10811ec827162df07eca554", + "classnotes": "This course's lab sections' day/time will be determined by the Preference Selection system which will run in August 2023. Final discussion/lab section times are scheduled based on enrollment preferences from the following options: Mon., Tues., Wed., Thurs., Fri., from 1:00 - 5:00 pm in SCL 229. For further details about how Chemistry's Preference Selection works please visit: https://chem.yale.edu/academics/undergraduate-studies/preference-selection?msclkid=2193c3feb10811ec827162df07eca554", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89912\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89912/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998445451259613, + 0.9971338510513306, + 0.9927154183387756, + 0.9978516101837158, + 0.9989249110221863, + 0.9986445307731628, + 0.9987497329711914, + 0.9987070560455322, + 0.9976493716239929, + 0.9984319806098938, + 0.9988805651664734, + 0.998648464679718, + 0.998814582824707, + 0.9985756874084473, + 0.9988579750061035, + 0.9956325888633728, + 0.9988245368003845, + 0.9985660910606384, + 0.9980159997940063, + 0.9987645149230957, + 0.9988505840301514, + 0.9982050657272339, + 0.9965872764587402, + 0.9988806843757629, + 0.9985180497169495, + 0.9865613579750061, + 0.9985906481742859, + 0.9986191987991333, + 0.9988037347793579, + 0.996670663356781, + 0.9986370205879211, + 0.9986704587936401, + 0.9985270500183105, + 0.9986453652381897, + 0.9988276362419128, + 0.9987579584121704, + 0.998723566532135, + 0.9988189339637756, + 0.9988899827003479, + 0.998843789100647, + 0.9975695013999939, + 0.9988012313842773, + 0.9989026784896851, + 0.9987379908561707, + 0.9988058805465698, + 0.9987247586250305, + 0.9987837672233582, + 0.9973153471946716, + 0.9987788796424866, + 0.9988551139831543, + 0.998728334903717, + 0.9987795948982239, + 0.9978297352790833, + 0.9988139867782593, + 0.9987567663192749, + 0.9975042939186096, + 0.9988094568252563, + 0.9986405968666077, + 0.9984099864959717, + 0.9985306262969971, + 0.9916187524795532, + 0.9976065158843994, + 0.998810887336731, + 0.9971238970756531, + 0.9977015852928162, + 0.9987185001373291, + 0.9888091683387756, + 0.9987534284591675, + 0.9988915324211121, + 0.9975749850273132, + 0.9987540245056152, + 0.9987180233001709 + ], + "sentiment_counts": { + "POSITIVE": 72, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989219903945923, + 0.9989284873008728, + 0.9956925511360168, + 0.9981158971786499, + 0.9988608360290527, + 0.998920202255249, + 0.998923122882843, + 0.9988792538642883, + 0.9987333416938782, + 0.9988486766815186, + 0.9977813363075256, + 0.9989282488822937, + 0.9987760186195374, + 0.9972746968269348, + 0.9987253546714783, + 0.9989017248153687, + 0.9988228678703308, + 0.9989252686500549, + 0.9968518614768982, + 0.9986914992332458, + 0.99488765001297, + 0.9987421631813049, + 0.9960948824882507, + 0.9988935589790344, + 0.998754620552063, + 0.9987278580665588, + 0.9988271594047546, + 0.998853325843811, + 0.9988969564437866, + 0.9988958835601807, + 0.9975340366363525, + 0.9988191723823547, + 0.9988368153572083, + 0.9989194869995117, + 0.9988151788711548, + 0.9987475872039795, + 0.9988201260566711, + 0.9987769722938538, + 0.9988828301429749, + 0.9983813762664795, + 0.9994266033172607, + 0.998932421207428, + 0.998896598815918, + 0.9988886713981628, + 0.9988319277763367, + 0.9988501071929932, + 0.9974271655082703, + 0.9989013671875, + 0.9988254904747009, + 0.9988917708396912, + 0.9988172650337219, + 0.9988916516304016, + 0.9806019067764282, + 0.998497724533081, + 0.9992840886116028, + 0.9989173412322998, + 0.99869304895401, + 0.9988998174667358, + 0.9985306262969971, + 0.9987836480140686, + 0.9979238510131836, + 0.9987689852714539, + 0.9988008737564087, + 0.9989246726036072, + 0.9995046854019165, + 0.9988988637924194, + 0.9985955357551575, + 0.998916745185852, + 0.9978347420692444, + 0.9986339211463928 + ], + "sentiment_counts": { + "POSITIVE": 64, + "NEGATIVE": 6 + }, + "sentiment_distribution": { + "POSITIVE": 0.9142857142857143, + "NEGATIVE": 0.08571428571428572 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9142857142857143 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988754391670227, + 0.9988715052604675, + 0.9988862872123718, + 0.997295081615448, + 0.9989234805107117, + 0.9988947510719299, + 0.997117280960083, + 0.9989057779312134, + 0.9988862872123718, + 0.997117280960083, + 0.9988666772842407, + 0.9957036375999451, + 0.998531699180603, + 0.9989354014396667, + 0.998740017414093, + 0.9989256262779236, + 0.9989249110221863, + 0.9987583160400391, + 0.998431384563446, + 0.9969679713249207, + 0.9984796643257141, + 0.9864170551300049, + 0.9988687634468079, + 0.9974592328071594, + 0.9978261590003967, + 0.990220308303833, + 0.997117280960083, + 0.9988642930984497, + 0.998798131942749, + 0.9988278746604919, + 0.9989377856254578, + 0.998769223690033, + 0.9983990788459778, + 0.9978064894676208, + 0.9988510608673096, + 0.9986427426338196, + 0.9989092350006104, + 0.9985371828079224, + 0.9989109039306641, + 0.9994868040084839, + 0.9995043277740479, + 0.998868465423584, + 0.998775064945221, + 0.9988607168197632, + 0.9947049021720886, + 0.9987912774085999, + 0.9988480806350708, + 0.9988939166069031, + 0.9989173412322998, + 0.9986891150474548, + 0.9986887574195862, + 0.9988538026809692, + 0.9844404458999634, + 0.9972972273826599, + 0.9989305138587952, + 0.9985306262969971, + 0.9989131689071655, + 0.9985396862030029, + 0.9988973140716553, + 0.9988786578178406, + 0.9982544779777527, + 0.9989079236984253, + 0.9988908171653748, + 0.998863697052002, + 0.997246265411377, + 0.9989098310470581, + 0.9925596714019775, + 0.9988722205162048, + 0.9989268183708191 + ], + "sentiment_counts": { + "POSITIVE": 63, + "NEGATIVE": 6 + }, + "sentiment_distribution": { + "POSITIVE": 0.9130434782608695, + "NEGATIVE": 0.08695652173913043 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9130434782608695 + ] + }, + "final_label": "POSITIVE", + "final_count": 199, + "final_proportion": 0.943127962085308, + "final_counts": { + "POSITIVE": 199, + "NEGATIVE": 12 + }, + "final_distribution": { + "POSITIVE": 0.943127962085308, + "NEGATIVE": 0.05687203791469194 + } + } }, { "season_code": "202303", @@ -48518,7 +99114,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -48569,7 +99193,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -48620,7 +99272,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -48671,7 +99351,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -48722,7 +99430,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -48773,7 +99509,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -48824,7 +99588,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -48875,7 +99667,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -48926,7 +99746,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -48977,7 +99825,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -49028,7 +99904,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -49079,7 +99983,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -49130,7 +100062,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -49181,7 +100141,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -49232,7 +100220,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -49283,7 +100299,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -49334,7 +100378,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -49385,7 +100457,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -49436,7 +100536,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -49487,7 +100615,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -49538,7 +100694,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -49589,7 +100773,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -49640,7 +100852,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -49691,7 +100931,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -49728,7 +100996,7 @@ "13:00", "17:00", "SCL 231 - Sterling Chemistry Laboratory 231", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ], "Thursday": [ @@ -49736,7 +101004,7 @@ "13:00", "17:00", "SCL 231 - Sterling Chemistry Laboratory 231", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -49752,15 +101020,43 @@ "classnotes": "This course needs special permission from the professor of this course - Professor Christine DiMeglio. First priority goes to Chemistry majors.", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89913\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89913/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "After or concurrently with CHEM 328 or 332.\u00a0", - "description": "Introduction to the tools and techniques of modern experimental physical chemistry, including analog\/digital electronics, quantitative measurements of basic thermodynamic properties, and nuclear magnetic resonance spectrometry.", + "description": "Introduction to the tools and techniques of modern experimental physical chemistry, including analog/digital electronics, quantitative measurements of basic thermodynamic properties, and nuclear magnetic resonance spectrometry.", "short_title": "Laboratory for Physical Chemi...", "title": "Laboratory for Physical Chemistry I", "school": "YC", @@ -49796,18 +101092,139 @@ ], "regnotes": "", "rp_attr": "This course meets during the Reading Period: the week between the last week of classes and finals week. Meets Reading Period", - "classnotes": "Lecture will take place every Fri from 1:30 pm - 2:30 pm. CHEM 330L lab will be offered on Monday or Tuesday from 1:00 pm - 5:00 pm, but only one day will be selected through Preference Selection. This process which will take place in August 2023. For further details about how Chemistry's Preference Selection works please visit: https:\/\/chem.yale.edu\/academics\/undergraduate-studies\/preference-selection?msclkid=2193c3feb10811ec827162df07eca554", + "classnotes": "Lecture will take place every Fri from 1:30 pm - 2:30 pm. CHEM 330L lab will be offered on Monday or Tuesday from 1:00 pm - 5:00 pm, but only one day will be selected through Preference Selection. This process which will take place in August 2023. For further details about how Chemistry's Preference Selection works please visit: https://chem.yale.edu/academics/undergraduate-studies/preference-selection?msclkid=2193c3feb10811ec827162df07eca554", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89925\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89925/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988994598388672, + 0.9984585046768188, + 0.9846317768096924, + 0.9988013505935669, + 0.9989175796508789, + 0.9985879063606262, + 0.9988600015640259, + 0.9988355040550232, + 0.9991117119789124, + 0.9969092011451721 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989100694656372, + 0.998450756072998, + 0.9972077012062073, + 0.9988960027694702, + 0.9989282488822937, + 0.9987516403198242, + 0.9989124536514282, + 0.9981423616409302 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988800883293152, + 0.9966902732849121, + 0.9923640489578247, + 0.9988651275634766, + 0.998808741569519, + 0.9982367753982544, + 0.9979817867279053, + 0.9994779229164124, + 0.9975207448005676 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.5555555555555556, + "NEGATIVE": 0.4444444444444444 + }, + "sentiment_overall": [ + "POSITIVE", + 0.5555555555555556 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 0.7407407407407407, + "final_counts": { + "POSITIVE": 20, + "NEGATIVE": 7 + }, + "final_distribution": { + "POSITIVE": 0.7407407407407407, + "NEGATIVE": 0.25925925925925924 + } + } }, { "season_code": "202303", "requirements": "After or concurrently with CHEM 328 or 332.\u00a0", - "description": "Introduction to the tools and techniques of modern experimental physical chemistry, including analog\/digital electronics, quantitative measurements of basic thermodynamic properties, and nuclear magnetic resonance spectrometry.", + "description": "Introduction to the tools and techniques of modern experimental physical chemistry, including analog/digital electronics, quantitative measurements of basic thermodynamic properties, and nuclear magnetic resonance spectrometry.", "short_title": "Laboratory for Physical Chemi...", "title": "Laboratory for Physical Chemistry I", "school": "YC", @@ -49833,7 +101250,7 @@ "13:00", "17:00", "SCL 228 - Sterling Chemistry Laboratory 228", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -49852,12 +101269,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "After or concurrently with CHEM 328 or 332.\u00a0", - "description": "Introduction to the tools and techniques of modern experimental physical chemistry, including analog\/digital electronics, quantitative measurements of basic thermodynamic properties, and nuclear magnetic resonance spectrometry.", + "description": "Introduction to the tools and techniques of modern experimental physical chemistry, including analog/digital electronics, quantitative measurements of basic thermodynamic properties, and nuclear magnetic resonance spectrometry.", "short_title": "Laboratory for Physical Chemi...", "title": "Laboratory for Physical Chemistry I", "school": "YC", @@ -49902,7 +101347,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -49939,7 +101412,7 @@ "9:25", "10:15", "SCL 111 - Sterling Chemistry Laboratory 111", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ], "Wednesday": [ @@ -49947,7 +101420,7 @@ "9:25", "10:15", "SCL 111 - Sterling Chemistry Laboratory 111", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ], "Friday": [ @@ -49955,7 +101428,7 @@ "9:25", "10:15", "SCL 111 - Sterling Chemistry Laboratory 111", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -49970,13 +101443,220 @@ ], "regnotes": "", "rp_attr": "This course meets during the Reading Period: the week between the last week of classes and finals week. Meets Reading Period", - "classnotes": "This course's lab sections' day\/time will be determined by the Preference Selection system which will run in August 2023. Lecture meets every Mon., Wed., Fri. from 9:25 am - 10:15 am in SCL 111.\nFor further details about how Chemistry's Preference Selection works please visit: https:\/\/chem.yale.edu\/academics\/undergraduate-studies\/preference-selection?msclkid=2193c3feb10811ec827162df07eca554", + "classnotes": "This course's lab sections' day/time will be determined by the Preference Selection system which will run in August 2023. Lecture meets every Mon., Wed., Fri. from 9:25 am - 10:15 am in SCL 111.\nFor further details about how Chemistry's Preference Selection works please visit: https://chem.yale.edu/academics/undergraduate-studies/preference-selection?msclkid=2193c3feb10811ec827162df07eca554", "final_exam": "Thursday, December 14, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89926\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89926/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989140033721924, + 0.9904447197914124, + 0.9984980821609497, + 0.9985894560813904, + 0.9984846711158752, + 0.9901604652404785, + 0.9989128112792969, + 0.9921942949295044, + 0.9987711310386658, + 0.9983546137809753, + 0.9980158805847168, + 0.9947070479393005, + 0.998601496219635, + 0.9982909560203552, + 0.9988790154457092, + 0.9984725117683411, + 0.9986923336982727, + 0.9978289008140564, + 0.9975529313087463, + 0.9979856014251709, + 0.9987629652023315, + 0.998671293258667 + ], + "sentiment_counts": { + "POSITIVE": 22, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9947053790092468, + 0.9986675977706909, + 0.9950174689292908, + 0.9986559152603149, + 0.9989023208618164, + 0.9994257688522339, + 0.9988048076629639, + 0.9986944794654846, + 0.9982154369354248, + 0.9988942742347717, + 0.998924195766449, + 0.9988777041435242, + 0.9988412261009216, + 0.9995005130767822, + 0.9989159107208252, + 0.9703280329704285, + 0.9994733929634094, + 0.99888676404953, + 0.9988659620285034, + 0.9987267851829529, + 0.998691976070404, + 0.9976387023925781, + 0.9988264441490173, + 0.9989056587219238, + 0.9987456798553467, + 0.9989277720451355 + ], + "sentiment_counts": { + "POSITIVE": 20, + "NEGATIVE": 6 + }, + "sentiment_distribution": { + "POSITIVE": 0.7692307692307693, + "NEGATIVE": 0.23076923076923078 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7692307692307693 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989656209945679, + 0.9989318251609802, + 0.9954800605773926, + 0.9987488985061646, + 0.9982060194015503, + 0.9995085000991821, + 0.996749997138977, + 0.9987823367118835, + 0.9986816048622131, + 0.9984166622161865, + 0.9856835007667542, + 0.9989179372787476, + 0.9967939257621765, + 0.9982553124427795, + 0.9955497980117798, + 0.9988927245140076, + 0.9940508008003235, + 0.9988988637924194, + 0.9985100626945496, + 0.9989269375801086, + 0.998819887638092, + 0.9988927245140076 + ], + "sentiment_counts": { + "NEGATIVE": 5, + "POSITIVE": 17 + }, + "sentiment_distribution": { + "NEGATIVE": 0.22727272727272727, + "POSITIVE": 0.7727272727272727 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7727272727272727 + ] + }, + "final_label": "POSITIVE", + "final_count": 59, + "final_proportion": 0.8428571428571429, + "final_counts": { + "POSITIVE": 59, + "NEGATIVE": 11 + }, + "final_distribution": { + "POSITIVE": 0.8428571428571429, + "NEGATIVE": 0.15714285714285714 + } + } }, { "season_code": "202303", @@ -50007,7 +101687,7 @@ "10:30", "11:20", "SCL 18 - Sterling Chemistry Laboratory 18", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -50028,7 +101708,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -50059,7 +101767,7 @@ "10:30", "11:20", "SCL 110 - Sterling Chemistry Laboratory 110", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -50080,7 +101788,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -50111,7 +101847,7 @@ "19:00", "19:50", "SCL 21 - Sterling Chemistry Laboratory 21", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -50132,7 +101868,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -50163,7 +101927,7 @@ "19:00", "19:50", "SCL 21 - Sterling Chemistry Laboratory 21", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -50184,7 +101948,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -50221,7 +102013,7 @@ "11:30", "13:00", "SCL 18 - Sterling Chemistry Laboratory 18", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -50233,10 +102025,38 @@ "classnotes": "New instructor(s) will be announced closer to the start of the fall 2023 term. \nThis course is for Chemistry Majors and those who are pursuing a BA or BS (non-intensive) in Chemistry.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89927\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89927/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -50274,7 +102094,7 @@ "9:00", "10:15", "SCL 19 - Sterling Chemistry Laboratory 19", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ], "Wednesday": [ @@ -50282,7 +102102,7 @@ "9:00", "10:15", "SCL 19 - Sterling Chemistry Laboratory 19", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -50295,13 +102115,140 @@ ], "regnotes": "", "rp_attr": "", - "classnotes": "First Half of Term Course - Taught between 8\/31\/2023 and Fri 10\/13 2023", + "classnotes": "First Half of Term Course - Taught between 8/31/2023 and Fri 10/13 2023", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89928\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89928/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9948664903640747, + 0.9961743354797363, + 0.9986376166343689, + 0.9964649677276611, + 0.9986175298690796, + 0.9978298544883728, + 0.9986934065818787, + 0.9987378716468811, + 0.9988184571266174, + 0.9983701109886169 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988871216773987, + 0.998643696308136, + 0.9989050626754761, + 0.9972102046012878, + 0.998832643032074, + 0.9900485277175903, + 0.9963313937187195, + 0.9988766312599182, + 0.9989211559295654, + 0.9951660633087158, + 0.9972610473632812 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8181818181818182, + "NEGATIVE": 0.18181818181818182 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8181818181818182 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.997117280960083, + 0.998798131942749, + 0.9985570311546326, + 0.9994964599609375, + 0.997117280960083, + 0.9942627549171448, + 0.9918485879898071, + 0.998799204826355, + 0.9988740086555481 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.7777777777777778, + "NEGATIVE": 0.2222222222222222 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7777777777777778 + ] + }, + "final_label": "POSITIVE", + "final_count": 26, + "final_proportion": 0.8666666666666667, + "final_counts": { + "POSITIVE": 26, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.8666666666666667, + "NEGATIVE": 0.13333333333333333 + } + } }, { "season_code": "202303", @@ -50339,7 +102286,7 @@ "9:00", "10:15", "SCL 19 - Sterling Chemistry Laboratory 19", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ], "Thursday": [ @@ -50347,7 +102294,7 @@ "9:00", "10:15", "SCL 19 - Sterling Chemistry Laboratory 19", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -50360,13 +102307,88 @@ ], "regnotes": "", "rp_attr": "", - "classnotes": "First Half of Term Course - Taught between 8\/31\/2023 and Fri 10\/13 2023", + "classnotes": "First Half of Term Course - Taught between 8/31/2023 and Fri 10/13 2023", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89929\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89929/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9949236512184143 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986013770103455, + 0.9979473948478699 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9954892992973328, + 0.9988489151000977 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 5, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 5 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -50404,7 +102426,7 @@ "11:35", "12:50", "CRB 123 - Chemistry Research Building 123", - "https:\/\/map.yale.edu\/?id=1910#!m\/560133" + "https://map.yale.edu/?id=1910#!m/560133" ] ], "Thursday": [ @@ -50412,7 +102434,7 @@ "11:35", "12:50", "CRB 123 - Chemistry Research Building 123", - "https:\/\/map.yale.edu\/?id=1910#!m\/560133" + "https://map.yale.edu/?id=1910#!m/560133" ] ] }, @@ -50425,13 +102447,106 @@ ], "regnotes": "", "rp_attr": "", - "classnotes": "First Half of Term Course - Taught between 8\/31\/2023 and Fri 10\/13 2023", + "classnotes": "First Half of Term Course - Taught between 8/31/2023 and Fri 10/13 2023", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89930\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89930/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987782835960388, + 0.9914011359214783, + 0.998599112033844 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988290667533875, + 0.9989100694656372, + 0.9944239258766174, + 0.9994698166847229, + 0.9988590478897095, + 0.9943810105323792 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.99885094165802, + 0.9995007514953613, + 0.9979252815246582, + 0.9985284805297852 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 0.7692307692307693, + "final_counts": { + "POSITIVE": 10, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.7692307692307693, + "NEGATIVE": 0.23076923076923078 + } + } }, { "season_code": "202303", @@ -50469,7 +102584,7 @@ "11:35", "12:50", "CRB 123 - Chemistry Research Building 123", - "https:\/\/map.yale.edu\/?id=1910#!m\/560133" + "https://map.yale.edu/?id=1910#!m/560133" ] ], "Thursday": [ @@ -50477,7 +102592,7 @@ "11:35", "12:50", "CRB 123 - Chemistry Research Building 123", - "https:\/\/map.yale.edu\/?id=1910#!m\/560133" + "https://map.yale.edu/?id=1910#!m/560133" ] ] }, @@ -50490,13 +102605,100 @@ ], "regnotes": "", "rp_attr": "", - "classnotes": "Second Half of Term Course - Taught between Mon. 10\/16\/2023 and Fri 12\/8\/2023", + "classnotes": "Second Half of Term Course - Taught between Mon. 10/16/2023 and Fri 12/8/2023", "final_exam": "Friday, December 15, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89931\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89931/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984145164489746, + 0.9917585253715515, + 0.9925883412361145, + 0.9978548884391785 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9956192374229431, + 0.9908005595207214, + 0.7833331227302551 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9908005595207214, + 0.999483585357666, + 0.9990975856781006 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 0 + }, + "sentiment_distribution": { + "NEGATIVE": 1.0, + "POSITIVE": 0.0 + }, + "sentiment_overall": [ + "NEGATIVE", + 1.0 + ] + }, + "final_label": "neutral", + "final_count": 0.5, + "final_proportion": 0.5, + "final_counts": { + "POSITIVE": 5, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + } + } }, { "season_code": "202303", @@ -50534,7 +102736,7 @@ "9:00", "10:15", "SCL 18 - Sterling Chemistry Laboratory 18", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ], "Thursday": [ @@ -50542,7 +102744,7 @@ "9:00", "10:15", "SCL 18 - Sterling Chemistry Laboratory 18", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -50555,13 +102757,98 @@ ], "regnotes": "", "rp_attr": "", - "classnotes": "First Half of Term Course - Taught between 8\/31\/2023 and Fri 10\/13 2023", + "classnotes": "First Half of Term Course - Taught between 8/31/2023 and Fri 10/13 2023", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89932\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89932/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9975520968437195, + 0.9988251328468323, + 0.9986550807952881, + 0.9969803690910339 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9962753057479858, + 0.9985596537590027 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.999491810798645, + 0.9988325238227844, + 0.9986017346382141 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 8, + "final_proportion": 0.8888888888888888, + "final_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + } + } }, { "season_code": "202303", @@ -50599,7 +102886,7 @@ "11:35", "12:50", "SCL 18 - Sterling Chemistry Laboratory 18", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ], "Wednesday": [ @@ -50607,7 +102894,7 @@ "11:35", "12:50", "SCL 18 - Sterling Chemistry Laboratory 18", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -50620,13 +102907,154 @@ ], "regnotes": "", "rp_attr": "", - "classnotes": "First Half of Term Course - Taught between 8\/31\/2023 and Fri 10\/13 2023", + "classnotes": "First Half of Term Course - Taught between 8/31/2023 and Fri 10/13 2023", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89933\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89933/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.997439980506897, + 0.998700737953186, + 0.9988759160041809, + 0.9986461997032166, + 0.9989114999771118, + 0.9971356391906738, + 0.9981656670570374, + 0.9988327622413635, + 0.9986514449119568, + 0.9977532029151917, + 0.998877227306366, + 0.9988866448402405, + 0.9987758994102478 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988501071929932, + 0.9989180564880371, + 0.9989184141159058, + 0.9988987445831299, + 0.9988435506820679, + 0.998713493347168, + 0.992741584777832, + 0.9989252686500549, + 0.9988204836845398, + 0.9989062547683716, + 0.9989145994186401, + 0.9988799691200256 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.997117280960083, + 0.993950605392456, + 0.9987950325012207, + 0.9987884163856506, + 0.998936116695404, + 0.9988155364990234, + 0.9981449842453003, + 0.9989032745361328, + 0.9987896084785461, + 0.998887836933136, + 0.9988986253738403, + 0.9985396862030029, + 0.9986804127693176 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 38, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 38 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -50664,7 +103092,7 @@ "11:35", "12:50", "SCL 18 - Sterling Chemistry Laboratory 18", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ], "Wednesday": [ @@ -50672,7 +103100,7 @@ "11:35", "12:50", "SCL 18 - Sterling Chemistry Laboratory 18", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -50685,13 +103113,110 @@ ], "regnotes": "", "rp_attr": "", - "classnotes": "Second Half of Term Course - Taught between Mon. 10\/16\/2023 and Fri 12\/8\/2023", + "classnotes": "Second Half of Term Course - Taught between Mon. 10/16/2023 and Fri 12/8/2023", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89934\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89934/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987800717353821, + 0.9985660910606384, + 0.9974420070648193, + 0.9985073208808899, + 0.9983378648757935 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981739521026611, + 0.9993005990982056, + 0.9989150762557983, + 0.9989211559295654, + 0.9974259734153748, + 0.992466151714325 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 4 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9788789749145508, + 0.9982619881629944, + 0.9977567791938782, + 0.9986542463302612 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.25, + "POSITIVE": 0.75 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 0.8, + "final_counts": { + "POSITIVE": 12, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + } + } }, { "season_code": "202303", @@ -50729,7 +103254,7 @@ "9:00", "10:15", "SCL 111 - Sterling Chemistry Laboratory 111", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ], "Thursday": [ @@ -50737,7 +103262,7 @@ "9:00", "10:15", "SCL 111 - Sterling Chemistry Laboratory 111", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -50750,13 +103275,128 @@ ], "regnotes": "", "rp_attr": "", - "classnotes": "First Half of Term Course - Taught between 8\/31\/2023 and Fri 10\/13 2023", + "classnotes": "First Half of Term Course - Taught between 8/31/2023 and Fri 10/13 2023", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89935\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89935/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989122152328491, + 0.9988617897033691, + 0.9988980293273926, + 0.9988501071929932, + 0.9982665777206421, + 0.8463210463523865 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989135265350342, + 0.9987454414367676, + 0.9988879561424255, + 0.9988669157028198, + 0.9984194040298462, + 0.9988131523132324, + 0.9988301396369934, + 0.9973706007003784 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989330172538757, + 0.9986314177513123, + 0.9988617897033691, + 0.9989160299301147, + 0.9863879680633545, + 0.9988184571266174, + 0.9989230036735535, + 0.9988656044006348, + 0.9939780235290527, + 0.9983868598937988 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "final_label": "POSITIVE", + "final_count": 22, + "final_proportion": 0.9166666666666666, + "final_counts": { + "POSITIVE": 22, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + } + } }, { "season_code": "202303", @@ -50794,7 +103434,7 @@ "9:00", "10:15", "SCL 111 - Sterling Chemistry Laboratory 111", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ], "Thursday": [ @@ -50802,7 +103442,7 @@ "9:00", "10:15", "SCL 111 - Sterling Chemistry Laboratory 111", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -50815,13 +103455,114 @@ ], "regnotes": "", "rp_attr": "", - "classnotes": "Second Half of Term Course - Taught between Mon. 10\/16\/2023 and Fri 12\/8\/2023", + "classnotes": "Second Half of Term Course - Taught between Mon. 10/16/2023 and Fri 12/8/2023", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89936\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89936/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988491535186768, + 0.9988025426864624, + 0.8463210463523865, + 0.9949349761009216 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988995790481567, + 0.9934536218643188, + 0.9972772002220154, + 0.9980486631393433, + 0.9881381392478943, + 0.9992558360099792 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9986273050308228, + 0.9988277554512024, + 0.998531699180603, + 0.997117280960083, + 0.9974592328071594, + 0.9984845519065857, + 0.9952996969223022 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.7142857142857143, + "NEGATIVE": 0.2857142857142857 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7142857142857143 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 0.6470588235294118, + "final_counts": { + "POSITIVE": 11, + "NEGATIVE": 6 + }, + "final_distribution": { + "POSITIVE": 0.6470588235294118, + "NEGATIVE": 0.35294117647058826 + } + } }, { "season_code": "202303", @@ -50859,7 +103600,7 @@ "11:35", "12:50", "SCL 21 - Sterling Chemistry Laboratory 21", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ], "Thursday": [ @@ -50867,7 +103608,7 @@ "11:35", "12:50", "SCL 21 - Sterling Chemistry Laboratory 21", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -50880,13 +103621,130 @@ ], "regnotes": "", "rp_attr": "", - "classnotes": "First Half of Term Course - Taught between 8\/31\/2023 and Fri 10\/13 2023", + "classnotes": "First Half of Term Course - Taught between 8/31/2023 and Fri 10/13 2023", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89937\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89937/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989125728607178, + 0.9968339800834656, + 0.9988603591918945, + 0.9987571239471436, + 0.9973269701004028, + 0.9634044170379639, + 0.9959983825683594, + 0.9986190795898438 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998006284236908, + 0.998897910118103, + 0.9835931062698364, + 0.9988711476325989, + 0.9872859120368958, + 0.9982838034629822, + 0.999424934387207, + 0.9871970415115356, + 0.998908519744873 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.7777777777777778, + "NEGATIVE": 0.2222222222222222 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7777777777777778 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.997117280960083, + 0.9965567588806152, + 0.998688280582428, + 0.9967979788780212, + 0.9902792572975159, + 0.9980652928352356, + 0.9995014667510986, + 0.9892868995666504 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 5 + }, + "sentiment_distribution": { + "POSITIVE": 0.375, + "NEGATIVE": 0.625 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.625 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 0.68, + "final_counts": { + "POSITIVE": 17, + "NEGATIVE": 8 + }, + "final_distribution": { + "POSITIVE": 0.68, + "NEGATIVE": 0.32 + } + } }, { "season_code": "202303", @@ -50924,7 +103782,7 @@ "11:35", "12:50", "SCL 21 - Sterling Chemistry Laboratory 21", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ], "Thursday": [ @@ -50932,7 +103790,7 @@ "11:35", "12:50", "SCL 21 - Sterling Chemistry Laboratory 21", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -50946,18 +103804,117 @@ ], "regnotes": "", "rp_attr": "", - "classnotes": "Second Half of Term Course - Taught between Mon. 10\/16\/2023 and Fri 12\/8\/2023", + "classnotes": "Second Half of Term Course - Taught between Mon. 10/16/2023 and Fri 12/8/2023", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89938\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89938/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "", - "description": "After consultation with the DUS, students engage individual experimental and\/or theoretical research problems in the laboratories of a selected faculty member within the Chemistry department. At the end of the term, students submit a brief report summarizing goals, methods, and accomplishments. For each term of enrollment, students must complete the CHEM 480 registration form, available in the DUS office, and have it signed by their faculty research mentor. It must be submitted to the Chemistry DUS for final approval no later than the last week of classes in the immediately preceding academic term. Individuals wishing to perform independent research must have demonstrated proficiency in the aspects of chemistry required for the planned project, as ascertained by the supervising faculty member, and must meet basic safety requirements prior to undertaking any activities, including certified completion of the online courses entitled Laboratory Chemical Training and Hazardous Chemical Waste Training administered by the Office of Environmental Health and Safety (EHS) at http:\/\/ehs.yale.edu\/training. At least ten hours per week of research are required (including time spent on requisite safety training), with the faculty mentor affirming this level of student commitment by midterm. This course may be taken multiple times for Pass\/Fail credit, subject to restrictions imposed by Yale College.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988552331924438, + 0.9964840412139893, + 0.9970648884773254, + 0.9972426891326904, + 0.994272768497467 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988263249397278, + 0.9995050430297852, + 0.9988194108009338, + 0.9977810978889465, + 0.9986878037452698 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.997117280960083, + 0.9983184337615967, + 0.9980652928352356, + 0.9142211675643921, + 0.9678181409835815, + 0.998782217502594 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.3333333333333333, + "NEGATIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 0.625, + "final_counts": { + "POSITIVE": 10, + "NEGATIVE": 6 + }, + "final_distribution": { + "POSITIVE": 0.625, + "NEGATIVE": 0.375 + } + } + }, + { + "season_code": "202303", + "requirements": "", + "description": "After consultation with the DUS, students engage individual experimental and/or theoretical research problems in the laboratories of a selected faculty member within the Chemistry department. At the end of the term, students submit a brief report summarizing goals, methods, and accomplishments. For each term of enrollment, students must complete the CHEM 480 registration form, available in the DUS office, and have it signed by their faculty research mentor. It must be submitted to the Chemistry DUS for final approval no later than the last week of classes in the immediately preceding academic term. Individuals wishing to perform independent research must have demonstrated proficiency in the aspects of chemistry required for the planned project, as ascertained by the supervising faculty member, and must meet basic safety requirements prior to undertaking any activities, including certified completion of the online courses entitled Laboratory Chemical Training and Hazardous Chemical Waste Training administered by the Office of Environmental Health and Safety (EHS) at http://ehs.yale.edu/training. At least ten hours per week of research are required (including time spent on requisite safety training), with the faculty mentor affirming this level of student commitment by midterm. This course may be taken multiple times for Pass/Fail credit, subject to restrictions imposed by Yale College.", "short_title": "Introduction to Independent R...", "title": "Introduction to Independent Research in Chemistry", "school": "YC", @@ -50989,18 +103946,46 @@ "flags": [], "regnotes": "", "rp_attr": "This course meets during the Reading Period: the week between the last week of classes and finals week. Meets Reading Period", - "classnotes": "Independent Research in Chemistry requires Instructor Permission from DUS. \nCHEM 480 form needs to be completed by the student and Chemistry faculty research advisor prior to the end of the Spring 2023 term - 5\/31\/2023 and submitted to chemistry.dus@yale.edu.\n\nCHEM 480 Form found on the Yale Chemistry department website: https:\/\/chem.yale.edu\/sites\/default\/files\/files\/DUS\/Chem%20480%20Registration%20Form_Final.pdf", - "final_exam": "No regular final examination", - "course_home_url": "", - "syllabus_url": "", - "fysem": false, - "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "", - "description": "Senior Chemistry majors engage individual experimental and\/or theoretical research problems in the laboratories of a selected faculty member in the Chemistry department or in a closely related field of molecular science. CHEM 490 registration forms, found in the DUS office, must be signed by the student\u2019s faculty research mentor and submitted it to the Chemistry DUS for final approval no later than the last week of classes in the immediately preceding academic term. Mandatory class meetings address issues of essential laboratory safety and ethics in science, with other class sessions focusing on core topics of broad interest to Chemistry students, including online literary research, oral presentation skills, and effective scientific writing. At least ten hours of research are required per week. Students are assigned letter grades, subject to restrictions imposed by Yale College. In special cases and with DUS approval, juniors may take this course.", + "classnotes": "Independent Research in Chemistry requires Instructor Permission from DUS. \nCHEM 480 form needs to be completed by the student and Chemistry faculty research advisor prior to the end of the Spring 2023 term - 5/31/2023 and submitted to chemistry.dus@yale.edu.\n\nCHEM 480 Form found on the Yale Chemistry department website: https://chem.yale.edu/sites/default/files/files/DUS/Chem%20480%20Registration%20Form_Final.pdf", + "final_exam": "No regular final examination", + "course_home_url": "", + "syllabus_url": "", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } + }, + { + "season_code": "202303", + "requirements": "", + "description": "Senior Chemistry majors engage individual experimental and/or theoretical research problems in the laboratories of a selected faculty member in the Chemistry department or in a closely related field of molecular science. CHEM 490 registration forms, found in the DUS office, must be signed by the student\u2019s faculty research mentor and submitted it to the Chemistry DUS for final approval no later than the last week of classes in the immediately preceding academic term. Mandatory class meetings address issues of essential laboratory safety and ethics in science, with other class sessions focusing on core topics of broad interest to Chemistry students, including online literary research, oral presentation skills, and effective scientific writing. At least ten hours of research are required per week. Students are assigned letter grades, subject to restrictions imposed by Yale College. In special cases and with DUS approval, juniors may take this course.", "short_title": "Independent Research in Chemi...", "title": "Independent Research in Chemistry", "school": "YC", @@ -51032,7 +104017,7 @@ "17:10", "18:00", "SCL 160 - Sterling Chemistry Laboratory 160", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -51041,13 +104026,106 @@ "flags": [], "regnotes": "", "rp_attr": "This course meets during the Reading Period: the week between the last week of classes and finals week. Meets Reading Period", - "classnotes": "This course is for Chemistry Majors and those who are pursuing a BS or BS Intensive in Chemistry. Instructor Permission is required from by instructor Jon Parr. The lecture meets on Mondays in SCL 160 from 5:10 - 6:00 pm. \n\nCHEM 490 form needs to be completed by the student and Chemistry faculty research advisor by the end of the Spring 2023 term - 5\/31\/2023 and submitted to chemistry.dus@yale.edu.\n\nCHEM 490 Form found on the Yale Chemistry department website: https:\/\/chem.yale.edu\/sites\/default\/files\/files\/DUS\/Chem%20490%20Registration%20Form_Final.pdf", + "classnotes": "This course is for Chemistry Majors and those who are pursuing a BS or BS Intensive in Chemistry. Instructor Permission is required from by instructor Jon Parr. The lecture meets on Mondays in SCL 160 from 5:10 - 6:00 pm. \n\nCHEM 490 form needs to be completed by the student and Chemistry faculty research advisor by the end of the Spring 2023 term - 5/31/2023 and submitted to chemistry.dus@yale.edu.\n\nCHEM 490 Form found on the Yale Chemistry department website: https://chem.yale.edu/sites/default/files/files/DUS/Chem%20490%20Registration%20Form_Final.pdf", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90235\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90235/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998634397983551, + 0.9747244119644165, + 0.9984161853790283, + 0.998859167098999, + 0.9985846281051636 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988676309585571, + 0.9983416795730591, + 0.9988833069801331, + 0.9977076053619385 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985170960426331, + 0.9988040924072266, + 0.9884763956069946, + 0.9988334774971008 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 0.8461538461538461, + "final_counts": { + "POSITIVE": 11, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8461538461538461, + "NEGATIVE": 0.15384615384615385 + } + } }, { "season_code": "202303", @@ -51085,7 +104163,7 @@ "9:00", "10:15", "SCL 19 - Sterling Chemistry Laboratory 19", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ], "Wednesday": [ @@ -51093,7 +104171,7 @@ "9:00", "10:15", "SCL 19 - Sterling Chemistry Laboratory 19", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -51102,13 +104180,140 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "First Half of Term Course - Taught between 8\/31\/2023 and Fri 10\/13 2023", + "classnotes": "First Half of Term Course - Taught between 8/31/2023 and Fri 10/13 2023", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89928\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89928/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9948664903640747, + 0.9961743354797363, + 0.9986376166343689, + 0.9964649677276611, + 0.9986175298690796, + 0.9978298544883728, + 0.9986934065818787, + 0.9987378716468811, + 0.9988184571266174, + 0.9983701109886169 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988871216773987, + 0.998643696308136, + 0.9989050626754761, + 0.9972102046012878, + 0.998832643032074, + 0.9900485277175903, + 0.9963313937187195, + 0.9988766312599182, + 0.9989211559295654, + 0.9951660633087158, + 0.9972610473632812 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8181818181818182, + "NEGATIVE": 0.18181818181818182 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8181818181818182 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.997117280960083, + 0.998798131942749, + 0.9985570311546326, + 0.9994964599609375, + 0.997117280960083, + 0.9942627549171448, + 0.9918485879898071, + 0.998799204826355, + 0.9988740086555481 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.7777777777777778, + "NEGATIVE": 0.2222222222222222 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7777777777777778 + ] + }, + "final_label": "POSITIVE", + "final_count": 26, + "final_proportion": 0.8666666666666667, + "final_counts": { + "POSITIVE": 26, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.8666666666666667, + "NEGATIVE": 0.13333333333333333 + } + } }, { "season_code": "202303", @@ -51146,7 +104351,7 @@ "9:00", "10:15", "SCL 19 - Sterling Chemistry Laboratory 19", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ], "Thursday": [ @@ -51154,7 +104359,7 @@ "9:00", "10:15", "SCL 19 - Sterling Chemistry Laboratory 19", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -51163,13 +104368,88 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "First Half of Term Course - Taught between 8\/31\/2023 and Fri 10\/13 2023", + "classnotes": "First Half of Term Course - Taught between 8/31/2023 and Fri 10/13 2023", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89929\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89929/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9949236512184143 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986013770103455, + 0.9979473948478699 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9954892992973328, + 0.9988489151000977 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 5, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 5 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -51206,7 +104486,7 @@ "9:00", "10:15", "SCL 19 - Sterling Chemistry Laboratory 19", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ], "Thursday": [ @@ -51214,7 +104494,7 @@ "9:00", "10:15", "SCL 19 - Sterling Chemistry Laboratory 19", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -51225,13 +104505,41 @@ ], "regnotes": "", "rp_attr": "", - "classnotes": "Second Half of Term Course - Taught between Mon. 10\/16\/2023 and Fri 12\/8\/2023", + "classnotes": "Second Half of Term Course - Taught between Mon. 10/16/2023 and Fri 12/8/2023", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90236\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90236/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -51268,7 +104576,7 @@ "11:35", "12:50", "SCL 19 - Sterling Chemistry Laboratory 19", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ], "Wednesday": [ @@ -51276,7 +104584,7 @@ "11:35", "12:50", "SCL 19 - Sterling Chemistry Laboratory 19", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -51285,13 +104593,41 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Second Half of Term Course - Taught Mon. 10\/16 to Fri. 12\/8\/2023", + "classnotes": "Second Half of Term Course - Taught Mon. 10/16 to Fri. 12/8/2023", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89981\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89981/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -51329,7 +104665,7 @@ "11:35", "12:50", "CRB 123 - Chemistry Research Building 123", - "https:\/\/map.yale.edu\/?id=1910#!m\/560133" + "https://map.yale.edu/?id=1910#!m/560133" ] ], "Thursday": [ @@ -51337,7 +104673,7 @@ "11:35", "12:50", "CRB 123 - Chemistry Research Building 123", - "https:\/\/map.yale.edu\/?id=1910#!m\/560133" + "https://map.yale.edu/?id=1910#!m/560133" ] ] }, @@ -51346,13 +104682,106 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "First Half of Term Course - Taught between 8\/31\/2023 and Fri 10\/13 2023", + "classnotes": "First Half of Term Course - Taught between 8/31/2023 and Fri 10/13 2023", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89930\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89930/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987782835960388, + 0.9914011359214783, + 0.998599112033844 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988290667533875, + 0.9989100694656372, + 0.9944239258766174, + 0.9994698166847229, + 0.9988590478897095, + 0.9943810105323792 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.99885094165802, + 0.9995007514953613, + 0.9979252815246582, + 0.9985284805297852 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 0.7692307692307693, + "final_counts": { + "POSITIVE": 10, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.7692307692307693, + "NEGATIVE": 0.23076923076923078 + } + } }, { "season_code": "202303", @@ -51390,7 +104819,7 @@ "11:35", "12:50", "CRB 123 - Chemistry Research Building 123", - "https:\/\/map.yale.edu\/?id=1910#!m\/560133" + "https://map.yale.edu/?id=1910#!m/560133" ] ], "Thursday": [ @@ -51398,7 +104827,7 @@ "11:35", "12:50", "CRB 123 - Chemistry Research Building 123", - "https:\/\/map.yale.edu\/?id=1910#!m\/560133" + "https://map.yale.edu/?id=1910#!m/560133" ] ] }, @@ -51409,13 +104838,100 @@ ], "regnotes": "", "rp_attr": "", - "classnotes": "Second Half of Term Course - Taught between Mon. 10\/16\/2023 and Fri 12\/8\/2023", + "classnotes": "Second Half of Term Course - Taught between Mon. 10/16/2023 and Fri 12/8/2023", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89931\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89931/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984145164489746, + 0.9917585253715515, + 0.9925883412361145, + 0.9978548884391785 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9956192374229431, + 0.9908005595207214, + 0.7833331227302551 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9908005595207214, + 0.999483585357666, + 0.9990975856781006 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 0 + }, + "sentiment_distribution": { + "NEGATIVE": 1.0, + "POSITIVE": 0.0 + }, + "sentiment_overall": [ + "NEGATIVE", + 1.0 + ] + }, + "final_label": "neutral", + "final_count": 0.5, + "final_proportion": 0.5, + "final_counts": { + "POSITIVE": 5, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + } + } }, { "season_code": "202303", @@ -51453,7 +104969,7 @@ "9:00", "10:15", "SCL 18 - Sterling Chemistry Laboratory 18", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ], "Thursday": [ @@ -51461,7 +104977,7 @@ "9:00", "10:15", "SCL 18 - Sterling Chemistry Laboratory 18", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -51472,13 +104988,98 @@ ], "regnotes": "", "rp_attr": "", - "classnotes": "First Half of Term Course - Taught between 8\/31\/2023 and Fri 10\/13 2023", + "classnotes": "First Half of Term Course - Taught between 8/31/2023 and Fri 10/13 2023", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89932\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89932/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9975520968437195, + 0.9988251328468323, + 0.9986550807952881, + 0.9969803690910339 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9962753057479858, + 0.9985596537590027 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.999491810798645, + 0.9988325238227844, + 0.9986017346382141 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 8, + "final_proportion": 0.8888888888888888, + "final_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + } + } }, { "season_code": "202303", @@ -51515,7 +105116,7 @@ "9:00", "10:15", "SCL 21 - Sterling Chemistry Laboratory 21", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ], "Thursday": [ @@ -51523,7 +105124,7 @@ "9:00", "10:15", "SCL 21 - Sterling Chemistry Laboratory 21", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -51532,13 +105133,41 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "First Half of Term Course - Taught between 8\/31\/2023 and Fri 10\/13 2023", + "classnotes": "First Half of Term Course - Taught between 8/31/2023 and Fri 10/13 2023", "final_exam": "", "course_home_url": "", "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -51576,7 +105205,7 @@ "11:35", "12:50", "SCL 18 - Sterling Chemistry Laboratory 18", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ], "Wednesday": [ @@ -51584,7 +105213,7 @@ "11:35", "12:50", "SCL 18 - Sterling Chemistry Laboratory 18", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -51595,13 +105224,154 @@ ], "regnotes": "", "rp_attr": "", - "classnotes": "First Half of Term Course - Taught between 8\/31\/2023 and Fri 10\/13 2023", + "classnotes": "First Half of Term Course - Taught between 8/31/2023 and Fri 10/13 2023", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89933\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89933/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.997439980506897, + 0.998700737953186, + 0.9988759160041809, + 0.9986461997032166, + 0.9989114999771118, + 0.9971356391906738, + 0.9981656670570374, + 0.9988327622413635, + 0.9986514449119568, + 0.9977532029151917, + 0.998877227306366, + 0.9988866448402405, + 0.9987758994102478 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988501071929932, + 0.9989180564880371, + 0.9989184141159058, + 0.9988987445831299, + 0.9988435506820679, + 0.998713493347168, + 0.992741584777832, + 0.9989252686500549, + 0.9988204836845398, + 0.9989062547683716, + 0.9989145994186401, + 0.9988799691200256 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.997117280960083, + 0.993950605392456, + 0.9987950325012207, + 0.9987884163856506, + 0.998936116695404, + 0.9988155364990234, + 0.9981449842453003, + 0.9989032745361328, + 0.9987896084785461, + 0.998887836933136, + 0.9988986253738403, + 0.9985396862030029, + 0.9986804127693176 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 38, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 38 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -51639,7 +105409,7 @@ "11:35", "12:50", "SCL 18 - Sterling Chemistry Laboratory 18", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ], "Wednesday": [ @@ -51647,7 +105417,7 @@ "11:35", "12:50", "SCL 18 - Sterling Chemistry Laboratory 18", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -51658,13 +105428,110 @@ ], "regnotes": "", "rp_attr": "", - "classnotes": "Second Half of Term Course - Taught between Mon. 10\/16\/2023 and Fri 12\/8\/2023", + "classnotes": "Second Half of Term Course - Taught between Mon. 10/16/2023 and Fri 12/8/2023", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89934\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89934/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987800717353821, + 0.9985660910606384, + 0.9974420070648193, + 0.9985073208808899, + 0.9983378648757935 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981739521026611, + 0.9993005990982056, + 0.9989150762557983, + 0.9989211559295654, + 0.9974259734153748, + 0.992466151714325 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 4 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9788789749145508, + 0.9982619881629944, + 0.9977567791938782, + 0.9986542463302612 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.25, + "POSITIVE": 0.75 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 0.8, + "final_counts": { + "POSITIVE": 12, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + } + } }, { "season_code": "202303", @@ -51701,7 +105568,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -51748,7 +105643,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -51791,7 +105714,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -51829,7 +105780,7 @@ "9:00", "10:15", "SCL 111 - Sterling Chemistry Laboratory 111", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ], "Thursday": [ @@ -51837,7 +105788,7 @@ "9:00", "10:15", "SCL 111 - Sterling Chemistry Laboratory 111", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -51848,13 +105799,128 @@ ], "regnotes": "", "rp_attr": "", - "classnotes": "First Half of Term Course - Taught between 8\/31\/2023 and Fri 10\/13 2023", + "classnotes": "First Half of Term Course - Taught between 8/31/2023 and Fri 10/13 2023", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89935\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89935/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989122152328491, + 0.9988617897033691, + 0.9988980293273926, + 0.9988501071929932, + 0.9982665777206421, + 0.8463210463523865 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989135265350342, + 0.9987454414367676, + 0.9988879561424255, + 0.9988669157028198, + 0.9984194040298462, + 0.9988131523132324, + 0.9988301396369934, + 0.9973706007003784 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989330172538757, + 0.9986314177513123, + 0.9988617897033691, + 0.9989160299301147, + 0.9863879680633545, + 0.9988184571266174, + 0.9989230036735535, + 0.9988656044006348, + 0.9939780235290527, + 0.9983868598937988 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "final_label": "POSITIVE", + "final_count": 22, + "final_proportion": 0.9166666666666666, + "final_counts": { + "POSITIVE": 22, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + } + } }, { "season_code": "202303", @@ -51892,7 +105958,7 @@ "9:00", "10:15", "SCL 111 - Sterling Chemistry Laboratory 111", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ], "Thursday": [ @@ -51900,7 +105966,7 @@ "9:00", "10:15", "SCL 111 - Sterling Chemistry Laboratory 111", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -51911,13 +105977,114 @@ ], "regnotes": "", "rp_attr": "", - "classnotes": "Second Half of Term Course - Taught between Mon. 10\/16\/2023 and Fri 12\/8\/2023", + "classnotes": "Second Half of Term Course - Taught between Mon. 10/16/2023 and Fri 12/8/2023", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89936\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89936/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988491535186768, + 0.9988025426864624, + 0.8463210463523865, + 0.9949349761009216 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988995790481567, + 0.9934536218643188, + 0.9972772002220154, + 0.9980486631393433, + 0.9881381392478943, + 0.9992558360099792 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9986273050308228, + 0.9988277554512024, + 0.998531699180603, + 0.997117280960083, + 0.9974592328071594, + 0.9984845519065857, + 0.9952996969223022 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.7142857142857143, + "NEGATIVE": 0.2857142857142857 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7142857142857143 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 0.6470588235294118, + "final_counts": { + "POSITIVE": 11, + "NEGATIVE": 6 + }, + "final_distribution": { + "POSITIVE": 0.6470588235294118, + "NEGATIVE": 0.35294117647058826 + } + } }, { "season_code": "202303", @@ -51955,7 +106122,7 @@ "11:35", "12:50", "SCL 21 - Sterling Chemistry Laboratory 21", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ], "Thursday": [ @@ -51963,7 +106130,7 @@ "11:35", "12:50", "SCL 21 - Sterling Chemistry Laboratory 21", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -51974,13 +106141,130 @@ ], "regnotes": "", "rp_attr": "", - "classnotes": "First Half of Term Course - Taught between 8\/31\/2023 and Fri 10\/13 2023", + "classnotes": "First Half of Term Course - Taught between 8/31/2023 and Fri 10/13 2023", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89937\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89937/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989125728607178, + 0.9968339800834656, + 0.9988603591918945, + 0.9987571239471436, + 0.9973269701004028, + 0.9634044170379639, + 0.9959983825683594, + 0.9986190795898438 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998006284236908, + 0.998897910118103, + 0.9835931062698364, + 0.9988711476325989, + 0.9872859120368958, + 0.9982838034629822, + 0.999424934387207, + 0.9871970415115356, + 0.998908519744873 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.7777777777777778, + "NEGATIVE": 0.2222222222222222 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7777777777777778 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.997117280960083, + 0.9965567588806152, + 0.998688280582428, + 0.9967979788780212, + 0.9902792572975159, + 0.9980652928352356, + 0.9995014667510986, + 0.9892868995666504 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 5 + }, + "sentiment_distribution": { + "POSITIVE": 0.375, + "NEGATIVE": 0.625 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.625 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 0.68, + "final_counts": { + "POSITIVE": 17, + "NEGATIVE": 8 + }, + "final_distribution": { + "POSITIVE": 0.68, + "NEGATIVE": 0.32 + } + } }, { "season_code": "202303", @@ -52018,7 +106302,7 @@ "11:35", "12:50", "SCL 21 - Sterling Chemistry Laboratory 21", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ], "Thursday": [ @@ -52026,7 +106310,7 @@ "11:35", "12:50", "SCL 21 - Sterling Chemistry Laboratory 21", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -52037,13 +106321,112 @@ ], "regnotes": "", "rp_attr": "", - "classnotes": "Second Half of Term Course - Taught between Mon. 10\/16\/2023 and Fri 12\/8\/2023", + "classnotes": "Second Half of Term Course - Taught between Mon. 10/16/2023 and Fri 12/8/2023", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89938\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89938/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988552331924438, + 0.9964840412139893, + 0.9970648884773254, + 0.9972426891326904, + 0.994272768497467 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988263249397278, + 0.9995050430297852, + 0.9988194108009338, + 0.9977810978889465, + 0.9986878037452698 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.997117280960083, + 0.9983184337615967, + 0.9980652928352356, + 0.9142211675643921, + 0.9678181409835815, + 0.998782217502594 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.3333333333333333, + "NEGATIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 0.625, + "final_counts": { + "POSITIVE": 10, + "NEGATIVE": 6 + }, + "final_distribution": { + "POSITIVE": 0.625, + "NEGATIVE": 0.375 + } + } }, { "season_code": "202303", @@ -52074,13 +106457,41 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "First Half of Term Course - Taught between Wed. 8\/30\/2023 and Fri. 10\/13 2023", + "classnotes": "First Half of Term Course - Taught between Wed. 8/30/2023 and Fri. 10/13 2023", "final_exam": "", "course_home_url": "", "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -52117,7 +106528,7 @@ "11:35", "12:50", "SCL 21 - Sterling Chemistry Laboratory 21", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ], "Wednesday": [ @@ -52125,7 +106536,7 @@ "11:35", "12:50", "SCL 21 - Sterling Chemistry Laboratory 21", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -52134,13 +106545,41 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Second Half of Term Course - Taught between Mon. 10\/16\/2023 and Fri 12\/8\/2023", + "classnotes": "Second Half of Term Course - Taught between Mon. 10/16/2023 and Fri 12/8/2023", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89984\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89984/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -52177,7 +106616,7 @@ "9:25", "10:15", "SCL 18 - Sterling Chemistry Laboratory 18", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ], "Wednesday": [ @@ -52185,7 +106624,7 @@ "9:25", "10:15", "SCL 18 - Sterling Chemistry Laboratory 18", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ], "Friday": [ @@ -52193,7 +106632,7 @@ "9:25", "10:15", "SCL 18 - Sterling Chemistry Laboratory 18", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -52202,13 +106641,41 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "This course takes place in the second half of the Fall 2023 term - Taught between Mon. 10\/16\/2023 and Fri 12\/8\/2023", + "classnotes": "This course takes place in the second half of the Fall 2023 term - Taught between Mon. 10/16/2023 and Fri 12/8/2023", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89985\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89985/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -52245,7 +106712,7 @@ "9:00", "10:15", "SCL 18 - Sterling Chemistry Laboratory 18", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ], "Thursday": [ @@ -52253,7 +106720,7 @@ "9:00", "10:15", "SCL 18 - Sterling Chemistry Laboratory 18", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -52262,13 +106729,41 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Second Half of Term Course - Taught between Mon. 10\/16\/2023 and Fri 12\/8\/2023", + "classnotes": "Second Half of Term Course - Taught between Mon. 10/16/2023 and Fri 12/8/2023", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90243\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90243/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -52305,7 +106800,7 @@ "17:10", "18:00", "SCL TBA - Sterling Chemistry Laboratory TBA", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -52317,10 +106812,38 @@ "classnotes": "Course for First-Year Graduate Chemistry Students - Meets Every Monday from 5:10 - 6:00 pm in SCL 160", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89986\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89986/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -52363,7 +106886,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -52406,7 +106957,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -52449,7 +107028,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -52492,7 +107099,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -52535,7 +107170,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -52578,7 +107241,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -52621,7 +107312,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -52664,7 +107383,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -52707,7 +107454,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -52750,7 +107525,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -52793,7 +107596,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -52836,7 +107667,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -52879,7 +107738,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -52922,7 +107809,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -52965,7 +107880,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -53008,7 +107951,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -53051,7 +108022,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -53094,7 +108093,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -53137,7 +108164,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -53180,7 +108235,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -53223,7 +108306,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -53266,7 +108377,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -53309,7 +108448,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -53352,7 +108519,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -53395,7 +108590,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -53438,7 +108661,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -53481,7 +108732,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -53524,7 +108803,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -53567,7 +108874,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -53610,7 +108945,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -53653,7 +109016,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -53696,7 +109087,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -53739,7 +109158,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -53782,7 +109229,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -53825,7 +109300,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -53868,7 +109371,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -53911,7 +109442,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -53954,7 +109513,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -53997,7 +109584,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -54040,7 +109655,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -54083,7 +109726,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -54129,7 +109800,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -54175,7 +109874,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -54221,7 +109948,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -54267,7 +110022,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -54313,7 +110096,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -54359,7 +110170,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -54405,7 +110244,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -54448,7 +110315,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -54491,7 +110386,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -54528,13 +110451,41 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Seminar Series for graduate students in Organic sub-division - Audit. \nDays may differ, visit Chemistry Seminar Events webpage for more information: https:\/\/chem.yale.edu\/calendar\/upcoming-events", + "classnotes": "Seminar Series for graduate students in Organic sub-division - Audit. \nDays may differ, visit Chemistry Seminar Events webpage for more information: https://chem.yale.edu/calendar/upcoming-events", "final_exam": "", "course_home_url": "", "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -54571,13 +110522,41 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Seminar Series - Audit Seminar Course for graduate students in Theoretical sub-division - Audit. Days may differ, visit Chemistry Seminar Events webpage for more information: https:\/\/chem.yale.edu\/calendar\/upcoming-events", + "classnotes": "Seminar Series - Audit Seminar Course for graduate students in Theoretical sub-division - Audit. Days may differ, visit Chemistry Seminar Events webpage for more information: https://chem.yale.edu/calendar/upcoming-events", "final_exam": "", "course_home_url": "", "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -54614,13 +110593,41 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Seminar Series for graduate students in the sub-division of Chemical Biology - Audit. Days may differ, visit Chemistry Seminar Events webpage for more information: https:\/\/chem.yale.edu\/calendar\/upcoming-events", + "classnotes": "Seminar Series for graduate students in the sub-division of Chemical Biology - Audit. Days may differ, visit Chemistry Seminar Events webpage for more information: https://chem.yale.edu/calendar/upcoming-events", "final_exam": "", "course_home_url": "", "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -54657,13 +110664,41 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Seminar Series for graduate students in the sub-divisions of Biophysical and Physical - Audit. Days may differ, visit Chemistry Seminar Events webpage for more information: https:\/\/chem.yale.edu\/calendar\/upcoming-events", + "classnotes": "Seminar Series for graduate students in the sub-divisions of Biophysical and Physical - Audit. Days may differ, visit Chemistry Seminar Events webpage for more information: https://chem.yale.edu/calendar/upcoming-events", "final_exam": "", "course_home_url": "", "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -54700,13 +110735,41 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Seminar Series for graduate students in the sub-division of Inorganic - Audit. Days may differ, visit Chemistry Seminar Events webpage for more information: https:\/\/chem.yale.edu\/calendar\/upcoming-events", + "classnotes": "Seminar Series for graduate students in the sub-division of Inorganic - Audit. Days may differ, visit Chemistry Seminar Events webpage for more information: https://chem.yale.edu/calendar/upcoming-events", "final_exam": "", "course_home_url": "", "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -54749,7 +110812,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -54792,7 +110883,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -54835,7 +110954,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -54878,7 +111025,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -54921,7 +111096,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -54964,7 +111167,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -55007,7 +111238,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -55050,7 +111309,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -55093,7 +111380,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -55136,7 +111451,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -55179,7 +111522,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -55222,7 +111593,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -55265,7 +111664,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -55308,7 +111735,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -55351,7 +111806,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -55394,7 +111877,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -55437,7 +111948,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -55480,7 +112019,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -55523,7 +112090,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -55566,7 +112161,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -55609,7 +112232,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -55652,7 +112303,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -55695,7 +112374,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -55738,7 +112445,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -55781,7 +112516,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -55824,7 +112587,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -55867,7 +112658,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -55910,7 +112729,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -55953,7 +112800,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -55996,7 +112871,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -56039,7 +112942,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -56082,7 +113013,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -56125,7 +113084,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -56168,7 +113155,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -56211,7 +113226,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -56254,7 +113297,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -56297,7 +113368,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -56340,7 +113439,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -56383,7 +113510,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -56426,7 +113581,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -56469,7 +113652,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -56512,7 +113723,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -56555,7 +113794,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -56601,7 +113868,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -56647,7 +113942,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -56693,7 +114016,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -56739,7 +114090,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -56785,7 +114164,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -56831,7 +114238,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -56877,7 +114312,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -56920,7 +114383,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -56957,7 +114448,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -56994,7 +114513,7 @@ "14:30", "15:20", "HQ 132 - Humanities Quadrangle 132", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Tuesday": [ @@ -57002,7 +114521,7 @@ "14:30", "15:20", "HQ 132 - Humanities Quadrangle 132", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -57010,7 +114529,7 @@ "14:30", "15:20", "HQ 132 - Humanities Quadrangle 132", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -57018,7 +114537,7 @@ "14:30", "15:20", "HQ 132 - Humanities Quadrangle 132", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Friday": [ @@ -57026,7 +114545,7 @@ "14:30", "15:20", "HQ 132 - Humanities Quadrangle 132", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -57042,15 +114561,106 @@ "classnotes": "", "final_exam": "Friday, December 15, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90382\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90382/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989367127418518, + 0.9988054037094116, + 0.9988870024681091, + 0.9939008951187134 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988988637924194, + 0.9981920123100281, + 0.9979572296142578, + 0.9991344809532166 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989186525344849, + 0.9989157915115356, + 0.9989390969276428, + 0.9982231259346008 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 0.9166666666666666, + "final_counts": { + "POSITIVE": 11, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + } + } }, { "season_code": "202303", "requirements": "Priority given to juniors, seniors, Ed Study students.", - "description": "This course is first in a sequence including Theory and Practice of Early Childhood Education (CHLD127\/PSYCH 127\/EDST 127) and Language Literacy and Play (CHLD 128\/PSYCH 128\/EDST 128). This course provides students a theoretical base in child development and behavior and tools to sensitively and carefully observer infants and young children. The seminar will consider aspects of cognitive, social, and emotional development. An assumption of this course is that it is not possible to understand children \u2013 their behavior and development\u2014without understanding their families and culture and the relationships between children and parents. The course will give an overview of the major theories in the field, focusing on the complex interaction between the developing self and the environment, exploring current research and theory as well as practice. Students will have the opportunity to see how programs for young children use psychodynamic and interactional theories to inform the development of their philosophy and curriculum. Weekly Observations:-Total Time Commitment 3 hours per week. Students will do two separate weekly observations over the course of the semester. They will observe in a group setting for 2 hours each each week at a Yale affiliated child care center.\u00a0 Students will also arrange to do a weekly 1 hour observation (either in person or virtually) of a child under the age of 6. Students must make their own arrangements for these individual observations. If it is not possible to arrange a child to observe, please do not apply to take this course. For a portion of class meetings, the class will divide into small supervisory discussion groups.", + "description": "This course is first in a sequence including Theory and Practice of Early Childhood Education (CHLD127/PSYCH 127/EDST 127) and Language Literacy and Play (CHLD 128/PSYCH 128/EDST 128). This course provides students a theoretical base in child development and behavior and tools to sensitively and carefully observer infants and young children. The seminar will consider aspects of cognitive, social, and emotional development. An assumption of this course is that it is not possible to understand children \u2013 their behavior and development\u2014without understanding their families and culture and the relationships between children and parents. The course will give an overview of the major theories in the field, focusing on the complex interaction between the developing self and the environment, exploring current research and theory as well as practice. Students will have the opportunity to see how programs for young children use psychodynamic and interactional theories to inform the development of their philosophy and curriculum. Weekly Observations:-Total Time Commitment 3 hours per week. Students will do two separate weekly observations over the course of the semester. They will observe in a group setting for 2 hours each each week at a Yale affiliated child care center.\u00a0 Students will also arrange to do a weekly 1 hour observation (either in person or virtually) of a child under the age of 6. Students must make their own arrangements for these individual observations. If it is not possible to arrange a child to observe, please do not apply to take this course. For a portion of class meetings, the class will divide into small supervisory discussion groups.", "short_title": "Child Development", "title": "Child Development", "school": "YC", @@ -57097,10 +114707,107 @@ "classnotes": "Permission of the instructors is REQUIRED for this seminar. Students should apply on the Yale Course Selection site between April 18 and April 21. Instructors will select students and construct a waiting list. Instructors will select students by April 25. Students should include on their application on Yale Course Site: Name, Class, Preferred Pronouns, Major, and if in Ed Studies; Briefly describe previous experience working with children; Why do you want to take this class?; Will you be able to identify a child to observe?; Is there anything else you think it would be helpful for us to know about you?\nPriority given to juniors, seniors, Ed Study students.", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88863\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88863/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989299178123474, + 0.9988211989402771, + 0.9982457160949707, + 0.9988716244697571, + 0.9988870024681091 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987554550170898, + 0.9989006519317627, + 0.9989153146743774, + 0.9977917671203613, + 0.9989138841629028 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985539317131042, + 0.9986905455589294, + 0.9989352822303772, + 0.9984605312347412, + 0.9989373087882996, + 0.998846173286438 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 16 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -57139,7 +114846,7 @@ "13:30", "15:20", "HQ 109 - Humanities Quadrangle 109", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -57151,10 +114858,105 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90149\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90149/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988986253738403, + 0.9979442954063416, + 0.9988321661949158, + 0.9989218711853027, + 0.9988545179367065, + 0.9989042282104492 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989126920700073, + 0.998927891254425, + 0.9989326596260071 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998923122882843, + 0.9989029169082642, + 0.9988130331039429, + 0.9989113807678223, + 0.9989263415336609, + 0.9988991022109985 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 15 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -57191,7 +114993,7 @@ "9:25", "10:15", "WLH 211 - William L. Harkness Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Tuesday": [ @@ -57199,7 +115001,7 @@ "9:25", "10:15", "WLH 211 - William L. Harkness Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -57207,7 +115009,7 @@ "9:25", "10:15", "WLH 211 - William L. Harkness Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -57215,7 +115017,7 @@ "9:25", "10:15", "WLH 211 - William L. Harkness Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Friday": [ @@ -57223,7 +115025,7 @@ "9:25", "10:15", "WLH 211 - William L. Harkness Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -57239,10 +115041,97 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89414\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89414/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998763918876648, + 0.9986746311187744, + 0.9987898468971252, + 0.9987050294876099 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988033771514893, + 0.9988905787467957, + 0.998904824256897, + 0.9982174038887024 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988486766815186, + 0.9989305138587952, + 0.9986059069633484 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 11 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -57279,7 +115168,7 @@ "9:25", "10:15", "HQ 225 - Humanities Quadrangle 225", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Tuesday": [ @@ -57287,7 +115176,7 @@ "9:25", "10:15", "HQ 225 - Humanities Quadrangle 225", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -57295,7 +115184,7 @@ "9:25", "10:15", "HQ 225 - Humanities Quadrangle 225", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Friday": [ @@ -57303,7 +115192,7 @@ "9:25", "10:15", "HQ 225 - Humanities Quadrangle 225", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -57311,7 +115200,7 @@ "9:25", "10:15", "HQ 401 - Humanities Quadrangle 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -57327,10 +115216,101 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89415\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89415/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9878211617469788, + 0.9985207915306091, + 0.9987974166870117, + 0.9988126754760742, + 0.9805539846420288 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985228180885315, + 0.9988332390785217, + 0.9959749579429626, + 0.9988481998443604 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988827109336853, + 0.9986977577209473, + 0.9987900853157043, + 0.9988946318626404 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 13 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -57409,10 +115389,38 @@ "classnotes": "", "final_exam": "Friday, December 15, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89416\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89416/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -57449,7 +115457,7 @@ "10:30", "11:20", "WTS B62 - Watson Center 60 Sachem Street B62", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Tuesday": [ @@ -57457,7 +115465,7 @@ "10:30", "11:20", "WTS B62 - Watson Center 60 Sachem Street B62", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -57465,7 +115473,7 @@ "10:30", "11:20", "WTS B62 - Watson Center 60 Sachem Street B62", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -57473,7 +115481,7 @@ "10:30", "11:20", "WTS B62 - Watson Center 60 Sachem Street B62", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Friday": [ @@ -57481,7 +115489,7 @@ "10:30", "11:20", "WTS B62 - Watson Center 60 Sachem Street B62", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -57497,10 +115505,125 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89417\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89417/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998907208442688, + 0.9988711476325989, + 0.9989194869995117, + 0.9988697171211243, + 0.9988542795181274, + 0.9987877011299133, + 0.9986554384231567, + 0.9987791180610657 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989221096038818, + 0.9988131523132324, + 0.9989099502563477, + 0.9989207983016968, + 0.9987249970436096, + 0.9988980293273926, + 0.9988890290260315, + 0.9989171028137207 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987319111824036, + 0.9985172152519226, + 0.9982813596725464, + 0.9988993406295776, + 0.9989031553268433, + 0.9985834360122681, + 0.9989287257194519, + 0.9989187717437744, + 0.9989355206489563 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 25, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 25 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -57537,7 +115660,7 @@ "10:30", "11:20", "CO493 103 - 493 College Street 103", - "https:\/\/map.yale.edu\/?id=1910#!m\/560001" + "https://map.yale.edu/?id=1910#!m/560001" ] ], "Tuesday": [ @@ -57545,7 +115668,7 @@ "10:30", "11:20", "CO493 103 - 493 College Street 103", - "https:\/\/map.yale.edu\/?id=1910#!m\/560001" + "https://map.yale.edu/?id=1910#!m/560001" ] ], "Wednesday": [ @@ -57553,7 +115676,7 @@ "10:30", "11:20", "CO493 103 - 493 College Street 103", - "https:\/\/map.yale.edu\/?id=1910#!m\/560001" + "https://map.yale.edu/?id=1910#!m/560001" ] ], "Thursday": [ @@ -57561,7 +115684,7 @@ "10:30", "11:20", "CO493 103 - 493 College Street 103", - "https:\/\/map.yale.edu\/?id=1910#!m\/560001" + "https://map.yale.edu/?id=1910#!m/560001" ] ], "Friday": [ @@ -57569,7 +115692,7 @@ "10:30", "11:20", "CO493 103 - 493 College Street 103", - "https:\/\/map.yale.edu\/?id=1910#!m\/560001" + "https://map.yale.edu/?id=1910#!m/560001" ] ] }, @@ -57585,10 +115708,121 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89418\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89418/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9980498552322388, + 0.9978481531143188, + 0.9988914132118225, + 0.9987917542457581, + 0.9984217882156372, + 0.9841789603233337, + 0.9989354014396667 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 5 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2857142857142857, + "POSITIVE": 0.7142857142857143 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7142857142857143 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9978616833686829, + 0.9989398121833801, + 0.9989057779312134, + 0.9907013177871704, + 0.9987592697143555, + 0.9988310933113098, + 0.9990575909614563 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9906236529350281, + 0.9988914132118225, + 0.9989250302314758, + 0.9974821209907532, + 0.9994915723800659, + 0.9989180564880371, + 0.9918234944343567, + 0.9989100694656372 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 6 + }, + "sentiment_distribution": { + "NEGATIVE": 0.25, + "POSITIVE": 0.75 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 0.7727272727272727, + "final_counts": { + "NEGATIVE": 5, + "POSITIVE": 17 + }, + "final_distribution": { + "NEGATIVE": 0.22727272727272727, + "POSITIVE": 0.7727272727272727 + } + } }, { "season_code": "202303", @@ -57667,10 +115901,38 @@ "classnotes": "", "final_exam": "Friday, December 15, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89419\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89419/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -57707,7 +115969,7 @@ "11:35", "12:25", "WTS A39 - Watson Center 60 Sachem Street A39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Tuesday": [ @@ -57715,7 +115977,7 @@ "11:35", "12:25", "WTS A39 - Watson Center 60 Sachem Street A39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -57723,7 +115985,7 @@ "11:35", "12:25", "WTS A39 - Watson Center 60 Sachem Street A39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -57731,7 +115993,7 @@ "11:35", "12:25", "WTS A39 - Watson Center 60 Sachem Street A39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Friday": [ @@ -57739,7 +116001,7 @@ "11:35", "12:25", "WTS A39 - Watson Center 60 Sachem Street A39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -57755,10 +116017,101 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89420\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89420/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986585378646851, + 0.9987016916275024, + 0.9988729357719421, + 0.9989253878593445 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989168643951416, + 0.9953383207321167, + 0.9989286065101624, + 0.9988948702812195 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9984990358352661, + 0.9871165156364441, + 0.991521954536438, + 0.9971309304237366 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 0.9166666666666666, + "final_counts": { + "POSITIVE": 11, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + } + } }, { "season_code": "202303", @@ -57795,7 +116148,7 @@ "9:25", "10:15", "WTS B36 - Watson Center 60 Sachem Street B36", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Tuesday": [ @@ -57803,7 +116156,7 @@ "9:25", "10:15", "WTS B36 - Watson Center 60 Sachem Street B36", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -57811,7 +116164,7 @@ "9:25", "10:15", "WTS B36 - Watson Center 60 Sachem Street B36", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -57819,7 +116172,7 @@ "9:25", "10:15", "WTS B36 - Watson Center 60 Sachem Street B36", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Friday": [ @@ -57827,7 +116180,7 @@ "9:25", "10:15", "WTS B36 - Watson Center 60 Sachem Street B36", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -57841,10 +116194,99 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89421\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89421/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987994432449341, + 0.9451150894165039, + 0.9988595247268677, + 0.9988309741020203 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989033937454224, + 0.9989269375801086, + 0.9989114999771118, + 0.998105525970459 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987922310829163, + 0.998918890953064, + 0.9986488223075867, + 0.9984378218650818 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 12 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -57881,7 +116323,7 @@ "10:30", "11:20", "CO493 102 - 493 College Street 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/560001" + "https://map.yale.edu/?id=1910#!m/560001" ] ], "Tuesday": [ @@ -57889,7 +116331,7 @@ "10:30", "11:20", "CO493 102 - 493 College Street 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/560001" + "https://map.yale.edu/?id=1910#!m/560001" ] ], "Wednesday": [ @@ -57897,7 +116339,7 @@ "10:30", "11:20", "CO493 102 - 493 College Street 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/560001" + "https://map.yale.edu/?id=1910#!m/560001" ] ], "Thursday": [ @@ -57905,7 +116347,7 @@ "10:30", "11:20", "CO493 102 - 493 College Street 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/560001" + "https://map.yale.edu/?id=1910#!m/560001" ] ], "Friday": [ @@ -57913,7 +116355,7 @@ "10:30", "11:20", "CO493 102 - 493 College Street 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/560001" + "https://map.yale.edu/?id=1910#!m/560001" ] ] }, @@ -57927,10 +116369,109 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89422\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89422/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9940834641456604, + 0.9986534118652344, + 0.9961711764335632, + 0.9986324906349182, + 0.9988818764686584 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988487958908081, + 0.9989230036735535, + 0.9988597631454468, + 0.9989268183708191, + 0.9989200830459595, + 0.9988988637924194 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988207221031189, + 0.9988905787467957, + 0.9947534799575806, + 0.9978544116020203, + 0.9982237219810486, + 0.9989356398582458 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 17 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -57967,7 +116508,7 @@ "9:25", "10:15", "BF S-29 - Benjamin Franklin College S-29", - "https:\/\/map.yale.edu\/?id=1910#!m\/563675" + "https://map.yale.edu/?id=1910#!m/563675" ] ], "Tuesday": [ @@ -57975,7 +116516,7 @@ "9:25", "10:15", "BF S-29 - Benjamin Franklin College S-29", - "https:\/\/map.yale.edu\/?id=1910#!m\/563675" + "https://map.yale.edu/?id=1910#!m/563675" ] ], "Wednesday": [ @@ -57983,7 +116524,7 @@ "9:25", "10:15", "BF S-29 - Benjamin Franklin College S-29", - "https:\/\/map.yale.edu\/?id=1910#!m\/563675" + "https://map.yale.edu/?id=1910#!m/563675" ] ], "Thursday": [ @@ -57991,7 +116532,7 @@ "9:25", "10:15", "BF S-29 - Benjamin Franklin College S-29", - "https:\/\/map.yale.edu\/?id=1910#!m\/563675" + "https://map.yale.edu/?id=1910#!m/563675" ] ], "Friday": [ @@ -57999,7 +116540,7 @@ "9:25", "10:15", "BF S-29 - Benjamin Franklin College S-29", - "https:\/\/map.yale.edu\/?id=1910#!m\/563675" + "https://map.yale.edu/?id=1910#!m/563675" ] ] }, @@ -58013,10 +116554,101 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89423\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89423/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988582134246826, + 0.9987431168556213, + 0.9975888729095459, + 0.9985827207565308 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987844824790955, + 0.9983298182487488, + 0.9988111257553101, + 0.9981508851051331 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989357590675354, + 0.9988929629325867, + 0.9983310103416443, + 0.9988927245140076, + 0.9988852143287659 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 13 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -58093,10 +116725,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89424\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89424/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -58133,7 +116793,7 @@ "10:30", "11:20", "SML 207 - Sterling Memorial Library 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/563698" + "https://map.yale.edu/?id=1910#!m/563698" ] ], "Tuesday": [ @@ -58141,7 +116801,7 @@ "10:30", "11:20", "SML 207 - Sterling Memorial Library 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/563698" + "https://map.yale.edu/?id=1910#!m/563698" ] ], "Wednesday": [ @@ -58149,7 +116809,7 @@ "10:30", "11:20", "SML 207 - Sterling Memorial Library 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/563698" + "https://map.yale.edu/?id=1910#!m/563698" ] ], "Thursday": [ @@ -58157,7 +116817,7 @@ "10:30", "11:20", "SML 207 - Sterling Memorial Library 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/563698" + "https://map.yale.edu/?id=1910#!m/563698" ] ], "Friday": [ @@ -58165,7 +116825,7 @@ "10:30", "11:20", "SML 207 - Sterling Memorial Library 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/563698" + "https://map.yale.edu/?id=1910#!m/563698" ] ] }, @@ -58179,10 +116839,107 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89425\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89425/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988325238227844, + 0.9986799359321594, + 0.9982078075408936, + 0.9924610257148743, + 0.9986710548400879 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989223480224609, + 0.9989211559295654, + 0.9958266615867615, + 0.9989124536514282, + 0.9989181756973267, + 0.9979090690612793 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9979828596115112, + 0.999311089515686, + 0.9987642765045166, + 0.9988226294517517 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 0.8666666666666667, + "final_counts": { + "POSITIVE": 13, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8666666666666667, + "NEGATIVE": 0.13333333333333333 + } + } }, { "season_code": "202303", @@ -58219,7 +116976,7 @@ "10:30", "11:20", "HQ 133 - Humanities Quadrangle 133", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Tuesday": [ @@ -58227,7 +116984,7 @@ "10:30", "11:20", "HQ 133 - Humanities Quadrangle 133", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -58235,7 +116992,7 @@ "10:30", "11:20", "HQ 133 - Humanities Quadrangle 133", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -58243,7 +117000,7 @@ "10:30", "11:20", "HQ 133 - Humanities Quadrangle 133", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Friday": [ @@ -58251,7 +117008,7 @@ "10:30", "11:20", "HQ 133 - Humanities Quadrangle 133", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -58265,10 +117022,95 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89426\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89426/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988191723823547, + 0.9985489249229431, + 0.9986782670021057, + 0.9969640374183655 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989226460456848, + 0.9986433386802673, + 0.9736730456352234 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9972859621047974, + 0.9982553124427795 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 8, + "final_proportion": 0.8888888888888888, + "final_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + } + } }, { "season_code": "202303", @@ -58305,7 +117147,7 @@ "11:35", "12:25", "CO493 103 - 493 College Street 103", - "https:\/\/map.yale.edu\/?id=1910#!m\/560001" + "https://map.yale.edu/?id=1910#!m/560001" ] ], "Tuesday": [ @@ -58313,7 +117155,7 @@ "11:35", "12:25", "CO493 103 - 493 College Street 103", - "https:\/\/map.yale.edu\/?id=1910#!m\/560001" + "https://map.yale.edu/?id=1910#!m/560001" ] ], "Wednesday": [ @@ -58321,7 +117163,7 @@ "11:35", "12:25", "CO493 103 - 493 College Street 103", - "https:\/\/map.yale.edu\/?id=1910#!m\/560001" + "https://map.yale.edu/?id=1910#!m/560001" ] ], "Thursday": [ @@ -58329,7 +117171,7 @@ "11:35", "12:25", "CO493 103 - 493 College Street 103", - "https:\/\/map.yale.edu\/?id=1910#!m\/560001" + "https://map.yale.edu/?id=1910#!m/560001" ] ], "Friday": [ @@ -58337,7 +117179,7 @@ "11:35", "12:25", "CO493 103 - 493 College Street 103", - "https:\/\/map.yale.edu\/?id=1910#!m\/560001" + "https://map.yale.edu/?id=1910#!m/560001" ] ] }, @@ -58351,10 +117193,101 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89427\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89427/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987485408782959, + 0.9987114667892456, + 0.9983238577842712, + 0.9988358616828918, + 0.9977098703384399 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998705267906189, + 0.9989075660705566, + 0.9986904263496399, + 0.9952397346496582 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988792538642883, + 0.9989243149757385, + 0.9988013505935669, + 0.9987834095954895 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 13 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -58391,7 +117324,7 @@ "10:30", "11:20", "HQ 229 - Humanities Quadrangle 229", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Tuesday": [ @@ -58399,7 +117332,7 @@ "10:30", "11:20", "HQ 229 - Humanities Quadrangle 229", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -58407,7 +117340,7 @@ "10:30", "11:20", "HQ 229 - Humanities Quadrangle 229", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -58415,7 +117348,7 @@ "10:30", "11:20", "HQ 229 - Humanities Quadrangle 229", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Friday": [ @@ -58423,7 +117356,7 @@ "10:30", "11:20", "HQ 229 - Humanities Quadrangle 229", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -58437,10 +117370,103 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90447\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90447/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988609552383423, + 0.9987842440605164, + 0.9988943934440613, + 0.9989272952079773, + 0.9987459182739258 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989089965820312, + 0.9989299178123474, + 0.9989258646965027, + 0.9989270567893982 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994822144508362, + 0.9989125728607178, + 0.998832643032074, + 0.9989219903945923 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.25, + "POSITIVE": 0.75 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 0.9230769230769231, + "final_counts": { + "POSITIVE": 12, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9230769230769231, + "NEGATIVE": 0.07692307692307693 + } + } }, { "season_code": "202303", @@ -58477,7 +117503,7 @@ "9:25", "10:15", "WTS B51 - Watson Center 60 Sachem Street B51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Tuesday": [ @@ -58485,7 +117511,7 @@ "9:25", "10:15", "WTS B51 - Watson Center 60 Sachem Street B51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -58493,7 +117519,7 @@ "9:25", "10:15", "WTS B51 - Watson Center 60 Sachem Street B51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -58501,7 +117527,7 @@ "9:25", "10:15", "WTS B51 - Watson Center 60 Sachem Street B51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Friday": [ @@ -58509,7 +117535,7 @@ "9:25", "10:15", "WTS B51 - Watson Center 60 Sachem Street B51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -58523,10 +117549,105 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89440\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89440/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988853335380554, + 0.9986512064933777, + 0.9986905455589294, + 0.9988172650337219, + 0.9988836646080017 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989153146743774, + 0.9972203969955444, + 0.9988504648208618, + 0.9988875985145569, + 0.9989128112792969 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9975157976150513, + 0.9986063838005066, + 0.9988214373588562, + 0.9988449811935425, + 0.9988623857498169 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 15 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -58563,7 +117684,7 @@ "10:30", "11:20", "TM432 102 - 432 Temple Street 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/559942" + "https://map.yale.edu/?id=1910#!m/559942" ] ], "Tuesday": [ @@ -58571,7 +117692,7 @@ "10:30", "11:20", "TM432 102 - 432 Temple Street 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/559942" + "https://map.yale.edu/?id=1910#!m/559942" ] ], "Wednesday": [ @@ -58579,7 +117700,7 @@ "10:30", "11:20", "TM432 102 - 432 Temple Street 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/559942" + "https://map.yale.edu/?id=1910#!m/559942" ] ], "Thursday": [ @@ -58587,7 +117708,7 @@ "10:30", "11:20", "TM432 102 - 432 Temple Street 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/559942" + "https://map.yale.edu/?id=1910#!m/559942" ] ], "Friday": [ @@ -58595,7 +117716,7 @@ "10:30", "11:20", "TM432 102 - 432 Temple Street 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/559942" + "https://map.yale.edu/?id=1910#!m/559942" ] ] }, @@ -58609,10 +117730,119 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89441\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89441/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9636723399162292, + 0.9988794922828674, + 0.998777449131012, + 0.9988376498222351, + 0.9987682700157166, + 0.9988001585006714, + 0.9987228512763977 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986923336982727, + 0.9988946318626404, + 0.9987120628356934, + 0.9988592863082886, + 0.9963728189468384, + 0.9948948621749878, + 0.997340738773346 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987082481384277, + 0.998875081539154, + 0.9988493919372559, + 0.9989058971405029, + 0.9988120794296265, + 0.9960357546806335, + 0.9987903237342834 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 0.9047619047619048, + "final_counts": { + "POSITIVE": 19, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9047619047619048, + "NEGATIVE": 0.09523809523809523 + } + } }, { "season_code": "202303", @@ -58649,7 +117879,7 @@ "10:30", "11:20", "WTS A42 - Watson Center 60 Sachem Street A42", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Tuesday": [ @@ -58657,7 +117887,7 @@ "10:30", "11:20", "WTS A42 - Watson Center 60 Sachem Street A42", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -58665,7 +117895,7 @@ "10:30", "11:20", "WTS A42 - Watson Center 60 Sachem Street A42", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -58673,7 +117903,7 @@ "10:30", "11:20", "WTS A32 - Watson Center 60 Sachem Street A32", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Friday": [ @@ -58681,7 +117911,7 @@ "10:30", "11:20", "WTS A32 - Watson Center 60 Sachem Street A32", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -58695,10 +117925,115 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89442\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89442/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989107847213745, + 0.998932421207428, + 0.9987937211990356, + 0.9985001087188721, + 0.998916506767273, + 0.989098310470581, + 0.9880572557449341 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989166259765625, + 0.9989196062088013, + 0.997032880783081, + 0.9988675117492676, + 0.9988954067230225, + 0.997590184211731 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988799691200256, + 0.9988067150115967, + 0.9986924529075623, + 0.998938262462616, + 0.9987045526504517, + 0.9985917210578918 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 0.9473684210526315, + "final_counts": { + "POSITIVE": 18, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9473684210526315, + "NEGATIVE": 0.05263157894736842 + } + } }, { "season_code": "202303", @@ -58735,7 +118070,7 @@ "11:35", "12:25", "WTS A32 - Watson Center 60 Sachem Street A32", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Tuesday": [ @@ -58743,7 +118078,7 @@ "11:35", "12:25", "WTS A32 - Watson Center 60 Sachem Street A32", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -58751,7 +118086,7 @@ "11:35", "12:25", "WTS A32 - Watson Center 60 Sachem Street A32", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -58759,7 +118094,7 @@ "11:35", "12:25", "WTS A32 - Watson Center 60 Sachem Street A32", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Friday": [ @@ -58767,7 +118102,7 @@ "11:35", "12:25", "WTS A32 - Watson Center 60 Sachem Street A32", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -58781,10 +118116,119 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89443\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89443/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988055229187012, + 0.9987456798553467, + 0.9985692501068115, + 0.9988102912902832, + 0.9988641738891602, + 0.9988886713981628 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988607168197632, + 0.9985034465789795, + 0.9989122152328491, + 0.9988665580749512, + 0.998829185962677, + 0.9989187717437744, + 0.9988928437232971 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989112615585327, + 0.9977339506149292, + 0.9973311424255371, + 0.9988235831260681, + 0.9989280104637146, + 0.9982553124427795, + 0.9989297986030579, + 0.9989118576049805 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 0.9523809523809523, + "final_counts": { + "POSITIVE": 20, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9523809523809523, + "NEGATIVE": 0.047619047619047616 + } + } }, { "season_code": "202303", @@ -58821,7 +118265,7 @@ "9:25", "10:15", "CO493 102 - 493 College Street 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/560001" + "https://map.yale.edu/?id=1910#!m/560001" ] ], "Wednesday": [ @@ -58829,7 +118273,7 @@ "9:25", "10:15", "CO493 102 - 493 College Street 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/560001" + "https://map.yale.edu/?id=1910#!m/560001" ] ], "Friday": [ @@ -58837,7 +118281,7 @@ "9:25", "10:15", "CO493 102 - 493 College Street 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/560001" + "https://map.yale.edu/?id=1910#!m/560001" ] ] }, @@ -58851,10 +118295,95 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89444\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89444/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988688826560974, + 0.9985911250114441, + 0.9985451698303223 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988256096839905, + 0.9987743496894836, + 0.9988225102424622 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988941550254822, + 0.9986138343811035, + 0.998879611492157, + 0.9979702830314636 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 10 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -58891,7 +118420,7 @@ "10:30", "11:20", "BF S-12 - Benjamin Franklin College S-12", - "https:\/\/map.yale.edu\/?id=1910#!m\/563675" + "https://map.yale.edu/?id=1910#!m/563675" ] ], "Wednesday": [ @@ -58899,7 +118428,7 @@ "10:30", "11:20", "BF S-12 - Benjamin Franklin College S-12", - "https:\/\/map.yale.edu\/?id=1910#!m\/563675" + "https://map.yale.edu/?id=1910#!m/563675" ] ], "Friday": [ @@ -58907,7 +118436,7 @@ "10:30", "11:20", "BF S-12 - Benjamin Franklin College S-12", - "https:\/\/map.yale.edu\/?id=1910#!m\/563675" + "https://map.yale.edu/?id=1910#!m/563675" ] ] }, @@ -58921,10 +118450,97 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89445\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89445/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9967034459114075, + 0.9985952973365784, + 0.998700737953186, + 0.9987439513206482 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998916745185852, + 0.9988491535186768, + 0.9988906979560852 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987547397613525, + 0.9989168643951416, + 0.9978443384170532, + 0.9988633394241333 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 11 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -58961,7 +118577,7 @@ "10:30", "11:20", "WTS B36 - Watson Center 60 Sachem Street B36", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -58969,7 +118585,7 @@ "10:30", "11:20", "WTS B36 - Watson Center 60 Sachem Street B36", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Friday": [ @@ -58977,7 +118593,7 @@ "10:30", "11:20", "WTS B36 - Watson Center 60 Sachem Street B36", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -58991,10 +118607,111 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89446\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89446/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984286427497864, + 0.9985650181770325, + 0.9988666772842407, + 0.9988184571266174, + 0.9971616268157959, + 0.9949644804000854 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988779425621033, + 0.9989080429077148, + 0.9988667964935303, + 0.9987965822219849, + 0.9985805749893188, + 0.9989035129547119 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989113807678223, + 0.998619556427002, + 0.9989069700241089, + 0.9989103078842163, + 0.9988093376159668, + 0.997117280960083 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 18 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -59031,7 +118748,7 @@ "11:35", "12:25", "WTS B36 - Watson Center 60 Sachem Street B36", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -59039,7 +118756,7 @@ "11:35", "12:25", "WTS B36 - Watson Center 60 Sachem Street B36", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Friday": [ @@ -59047,7 +118764,7 @@ "11:35", "12:25", "WTS B36 - Watson Center 60 Sachem Street B36", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -59061,10 +118778,89 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89447\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89447/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985346794128418 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988967180252075, + 0.9989014863967896, + 0.9988388419151306 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986411929130554, + 0.9989252686500549, + 0.9988872408866882 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 7 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -59128,7 +118924,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -59165,7 +118989,7 @@ "9:25", "10:15", "WTS A39 - Watson Center 60 Sachem Street A39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -59173,7 +118997,7 @@ "9:25", "10:15", "WTS A39 - Watson Center 60 Sachem Street A39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Friday": [ @@ -59181,7 +119005,7 @@ "9:25", "10:15", "WTS A39 - Watson Center 60 Sachem Street A39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -59195,10 +119019,107 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89448\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89448/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9917383790016174, + 0.9987756609916687, + 0.998760461807251, + 0.9987541437149048, + 0.9989161491394043 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989225268363953, + 0.9988294243812561, + 0.9988811612129211, + 0.9988219141960144, + 0.9989253878593445 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9976643323898315, + 0.9983750581741333, + 0.9989234805107117, + 0.998829185962677, + 0.9989306330680847, + 0.9989306330680847 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 16 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -59235,7 +119156,7 @@ "10:30", "11:20", "WTS B51 - Watson Center 60 Sachem Street B51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -59243,7 +119164,7 @@ "10:30", "11:20", "WTS B51 - Watson Center 60 Sachem Street B51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Friday": [ @@ -59251,7 +119172,7 @@ "10:30", "11:20", "WTS B51 - Watson Center 60 Sachem Street B51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -59265,10 +119186,105 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89449\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89449/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989385008811951, + 0.9988952875137329, + 0.9988905787467957, + 0.9989078044891357, + 0.998866081237793 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989286065101624, + 0.9982307553291321, + 0.9983752965927124, + 0.9989129304885864, + 0.9989176988601685, + 0.99892657995224 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998930037021637, + 0.9989181756973267, + 0.998872697353363, + 0.9988961219787598 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 15 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -59305,7 +119321,7 @@ "10:30", "11:20", "WTS A39 - Watson Center 60 Sachem Street A39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -59313,7 +119329,7 @@ "10:30", "11:20", "WTS A39 - Watson Center 60 Sachem Street A39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Friday": [ @@ -59321,7 +119337,7 @@ "10:30", "11:20", "WTS A39 - Watson Center 60 Sachem Street A39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -59335,10 +119351,111 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89450\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89450/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987109899520874, + 0.9986103773117065, + 0.9985610842704773, + 0.9988040924072266, + 0.9986710548400879, + 0.998939573764801 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983499050140381, + 0.9988701939582825, + 0.998847484588623, + 0.9986194372177124, + 0.9989263415336609, + 0.9988778233528137 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988932013511658, + 0.9989354014396667, + 0.9983748197555542, + 0.9988270401954651, + 0.9989150762557983, + 0.9989225268363953 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 18 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -59375,7 +119492,7 @@ "9:00", "10:15", "SML 207 - Sterling Memorial Library 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/563698" + "https://map.yale.edu/?id=1910#!m/563698" ] ], "Thursday": [ @@ -59383,7 +119500,7 @@ "9:00", "10:15", "SML 207 - Sterling Memorial Library 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/563698" + "https://map.yale.edu/?id=1910#!m/563698" ] ] }, @@ -59397,10 +119514,107 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89451\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89451/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9971109628677368, + 0.9989359974861145, + 0.9986289739608765, + 0.9988780617713928, + 0.9988049268722534 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986673593521118, + 0.9989203214645386, + 0.9971247315406799, + 0.9988176226615906, + 0.998913049697876, + 0.9989198446273804 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989253878593445, + 0.9989243149757385, + 0.998916506767273, + 0.9989098310470581, + 0.9982553124427795 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 16 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -59453,10 +119667,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89452\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89452/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -59493,7 +119735,7 @@ "9:25", "10:15", "HQ 229 - Humanities Quadrangle 229", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -59501,7 +119743,7 @@ "9:25", "10:15", "HQ 229 - Humanities Quadrangle 229", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Friday": [ @@ -59509,7 +119751,7 @@ "9:25", "10:15", "HQ 229 - Humanities Quadrangle 229", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -59523,10 +119765,97 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89453\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89453/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989271759986877, + 0.9987338185310364 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998195469379425, + 0.9989175796508789, + 0.9989269375801086 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988341927528381, + 0.9988879561424255, + 0.9989207983016968, + 0.9989288449287415, + 0.9988359808921814, + 0.9982553124427795 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 11 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -59563,7 +119892,7 @@ "10:30", "11:20", "HQ C01 - Humanities Quadrangle C01", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -59571,7 +119900,7 @@ "10:30", "11:20", "HQ C01 - Humanities Quadrangle C01", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Friday": [ @@ -59579,7 +119908,7 @@ "10:30", "11:20", "HQ C01 - Humanities Quadrangle C01", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -59593,10 +119922,89 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89454\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89454/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9964125752449036, + 0.9987670183181763, + 0.9985439777374268 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989253878593445, + 0.9988173842430115 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988428354263306, + 0.9973077774047852 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 7 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -59633,7 +120041,7 @@ "11:35", "12:25", "HQ 229 - Humanities Quadrangle 229", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -59641,7 +120049,7 @@ "11:35", "12:25", "HQ 229 - Humanities Quadrangle 229", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Friday": [ @@ -59649,7 +120057,7 @@ "11:35", "12:25", "HQ 229 - Humanities Quadrangle 229", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -59663,10 +120071,97 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90329\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90329/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988806843757629, + 0.9983788728713989, + 0.9988813996315002, + 0.9988856911659241 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989233613014221, + 0.9989311099052429, + 0.9988676309585571 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981709718704224, + 0.9987621307373047, + 0.9988565444946289, + 0.9989262223243713 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 11 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -59733,10 +120228,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92622\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92622/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -59773,7 +120296,7 @@ "10:30", "11:20", "BF S-28 - Benjamin Franklin College S-28", - "https:\/\/map.yale.edu\/?id=1910#!m\/563675" + "https://map.yale.edu/?id=1910#!m/563675" ] ], "Wednesday": [ @@ -59781,7 +120304,7 @@ "10:30", "11:20", "BF S-28 - Benjamin Franklin College S-28", - "https:\/\/map.yale.edu\/?id=1910#!m\/563675" + "https://map.yale.edu/?id=1910#!m/563675" ] ], "Friday": [ @@ -59789,7 +120312,7 @@ "10:30", "11:20", "BF S-28 - Benjamin Franklin College S-28", - "https:\/\/map.yale.edu\/?id=1910#!m\/563675" + "https://map.yale.edu/?id=1910#!m/563675" ] ] }, @@ -59803,10 +120326,93 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92880\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92880/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985974431037903, + 0.9988610744476318, + 0.9976029992103577 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988805651664734, + 0.9988694787025452, + 0.9973579049110413 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988669157028198, + 0.9989089965820312, + 0.9989107847213745 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 9 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -59843,7 +120449,7 @@ "11:35", "12:50", "WTS B62 - Watson Center 60 Sachem Street B62", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -59851,7 +120457,7 @@ "11:35", "12:50", "WTS B62 - Watson Center 60 Sachem Street B62", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -59865,10 +120471,93 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89455\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89455/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988013505935669, + 0.9986960291862488, + 0.9988089799880981 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998872697353363, + 0.998898983001709, + 0.9989032745361328 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998891294002533, + 0.9989219903945923, + 0.9988676309585571 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 9 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -59905,7 +120594,7 @@ "11:35", "12:50", "TM432 102 - 432 Temple Street 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/559942" + "https://map.yale.edu/?id=1910#!m/559942" ] ], "Wednesday": [ @@ -59913,7 +120602,7 @@ "11:35", "12:50", "TM432 102 - 432 Temple Street 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/559942" + "https://map.yale.edu/?id=1910#!m/559942" ] ] }, @@ -59927,10 +120616,93 @@ "classnotes": "", "final_exam": "Sunday, December 17, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89457\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89457/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998816728591919, + 0.998921275138855, + 0.9986531734466553 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998779833316803, + 0.9989333748817444 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989318251609802, + 0.9982553124427795, + 0.998903751373291, + 0.9983333945274353 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 9 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -59967,7 +120739,7 @@ "11:35", "12:50", "TM432 102 - 432 Temple Street 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/559942" + "https://map.yale.edu/?id=1910#!m/559942" ] ], "Thursday": [ @@ -59975,7 +120747,7 @@ "11:35", "12:50", "TM432 102 - 432 Temple Street 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/559942" + "https://map.yale.edu/?id=1910#!m/559942" ] ] }, @@ -59989,10 +120761,38 @@ "classnotes": "", "final_exam": "Friday, December 15, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89458\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89458/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -60029,7 +120829,7 @@ "11:35", "12:50", "HQ 133 - Humanities Quadrangle 133", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -60037,7 +120837,7 @@ "11:35", "12:50", "HQ 133 - Humanities Quadrangle 133", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -60051,10 +120851,115 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89459\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89459/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987769722938538, + 0.9988364577293396, + 0.9988960027694702, + 0.9988935589790344, + 0.9981037378311157, + 0.9989016056060791, + 0.998910665512085 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989172220230103, + 0.9988493919372559, + 0.9989198446273804, + 0.9988678693771362, + 0.9978231191635132, + 0.9989314675331116 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.995275616645813, + 0.9988963603973389, + 0.9989221096038818, + 0.9984695315361023, + 0.9988734126091003, + 0.9988657236099243, + 0.9978863596916199 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 20 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -60091,7 +120996,7 @@ "9:00", "10:15", "HQ 317 - Humanities Quadrangle 317", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -60099,7 +121004,7 @@ "9:00", "10:15", "HQ 317 - Humanities Quadrangle 317", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -60113,10 +121018,97 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89460\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89460/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988672733306885, + 0.9880322217941284, + 0.9988321661949158, + 0.982512354850769 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987340569496155, + 0.9989038705825806, + 0.9988422989845276 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998897910118103, + 0.997117280960083, + 0.9987756609916687, + 0.9961749315261841 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 11 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -60175,10 +121167,103 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92844\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92844/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986213445663452, + 0.9987552165985107, + 0.9985315799713135, + 0.9977793097496033, + 0.9967800974845886 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9973770380020142, + 0.9989086389541626, + 0.9978204965591431, + 0.9931091070175171 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988227486610413, + 0.9988744854927063, + 0.9988114833831787, + 0.9983230233192444, + 0.9988548755645752 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 14 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -60215,7 +121300,7 @@ "13:00", "14:15", "TM432 102 - 432 Temple Street 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/559942" + "https://map.yale.edu/?id=1910#!m/559942" ] ], "Wednesday": [ @@ -60223,7 +121308,7 @@ "13:00", "14:15", "TM432 102 - 432 Temple Street 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/559942" + "https://map.yale.edu/?id=1910#!m/559942" ] ] }, @@ -60237,10 +121322,99 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89461\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89461/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989259839057922, + 0.9988588094711304, + 0.9965940117835999, + 0.9949967861175537 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987195730209351, + 0.9988534450531006, + 0.9987699389457703, + 0.9989163875579834 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987611770629883, + 0.9988994598388672, + 0.9977245926856995, + 0.9989176988601685 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 12 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -60278,7 +121452,7 @@ "11:35", "12:50", "HQ 123 - Humanities Quadrangle 123", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -60286,7 +121460,7 @@ "11:35", "12:50", "HQ 123 - Humanities Quadrangle 123", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -60302,10 +121476,38 @@ "classnotes": "", "final_exam": "Friday, December 15, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89324\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89324/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -60342,7 +121544,7 @@ "14:30", "15:45", "HQ 129 - Humanities Quadrangle 129", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -60350,7 +121552,7 @@ "14:30", "15:45", "HQ 129 - Humanities Quadrangle 129", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -60364,10 +121566,107 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89462\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89462/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9961445331573486, + 0.9979422688484192, + 0.998840868473053, + 0.9987955093383789, + 0.9988253712654114, + 0.9986892342567444 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985817670822144, + 0.9988006353378296, + 0.9988887906074524, + 0.998814582824707 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9979075193405151, + 0.9989204406738281, + 0.9986239671707153, + 0.9984678626060486, + 0.9988048076629639, + 0.9988405108451843 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 16 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -60407,7 +121706,7 @@ "10:30", "11:20", "WLH 119 - William L. Harkness Hall 119", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -60415,7 +121714,7 @@ "10:30", "11:20", "WLH 119 - William L. Harkness Hall 119", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -60432,10 +121731,129 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89330\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89330/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989168643951416, + 0.9988473653793335, + 0.9987714886665344, + 0.9987844824790955, + 0.9986546039581299, + 0.9988982677459717, + 0.9989064931869507 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989263415336609, + 0.9988247752189636, + 0.9989228844642639, + 0.9985866546630859, + 0.9988899827003479, + 0.9988968372344971, + 0.9988973140716553, + 0.9988595247268677 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989326596260071, + 0.9989070892333984, + 0.9981922507286072, + 0.9982553124427795, + 0.9985001087188721, + 0.9968937635421753, + 0.9989194869995117, + 0.9988752007484436, + 0.9989221096038818, + 0.9985120892524719, + 0.9989042282104492, + 0.9988299012184143 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 27, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 27 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -60469,7 +121887,7 @@ "10:30", "11:20", "WLH 014 - William L. Harkness Hall 014", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -60488,7 +121906,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -60522,7 +121968,7 @@ "10:30", "11:20", "LORIA 360 - Loria Center 360", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -60541,7 +121987,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -60575,7 +122049,7 @@ "16:00", "16:50", "HQ 129 - Humanities Quadrangle 129", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -60594,7 +122068,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -60628,7 +122130,7 @@ "13:30", "14:20", "WALL81 401 - 81 Wall Street 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -60647,7 +122149,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -60681,7 +122211,7 @@ "10:30", "11:20", "HQ 123 - Humanities Quadrangle 123", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -60700,7 +122230,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -60738,7 +122296,7 @@ "11:35", "12:50", "HQ 123 - Humanities Quadrangle 123", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -60746,7 +122304,7 @@ "11:35", "12:50", "HQ 123 - Humanities Quadrangle 123", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -60758,10 +122316,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89324\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89324/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -60808,7 +122394,35 @@ "syllabus_url": "", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -60840,7 +122454,7 @@ "11:35", "12:25", "WLH 006 - William L. Harkness Hall 006", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -60861,7 +122475,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -60893,7 +122535,7 @@ "14:30", "15:20", "WLH 006 - William L. Harkness Hall 006", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -60914,7 +122556,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -60946,7 +122616,7 @@ "10:30", "11:20", "WLH 014 - William L. Harkness Hall 014", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -60967,7 +122637,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -60999,7 +122697,7 @@ "13:30", "14:20", "WLH 002 - William L. Harkness Hall 002", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -61020,7 +122718,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -61058,7 +122784,7 @@ "11:35", "12:25", "WLH 208 - William L. Harkness Hall 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -61066,7 +122792,7 @@ "11:35", "12:25", "WLH 208 - William L. Harkness Hall 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -61084,10 +122810,187 @@ "classnotes": "", "final_exam": "Friday, December 15, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88584\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88584/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9980494976043701, + 0.9987012147903442, + 0.9988522529602051, + 0.9985790252685547, + 0.9960070252418518, + 0.9982062578201294, + 0.9989091157913208, + 0.9987082481384277, + 0.9987670183181763, + 0.9899200201034546, + 0.9987867474555969, + 0.9987450838088989, + 0.9989029169082642, + 0.9956974983215332, + 0.9987884163856506, + 0.9973292350769043, + 0.9984295964241028, + 0.9988804459571838 + ], + "sentiment_counts": { + "POSITIVE": 18, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988880753517151, + 0.9988308548927307, + 0.9988320469856262, + 0.9962790608406067, + 0.9922195672988892, + 0.9987898468971252, + 0.9897847771644592, + 0.9975225329399109, + 0.9988362193107605, + 0.9985306262969971, + 0.9987747073173523, + 0.9982311129570007, + 0.9972732663154602, + 0.9987911581993103, + 0.9988574981689453, + 0.9475632905960083, + 0.9993939399719238, + 0.9970495700836182, + 0.9983988404273987 + ], + "sentiment_counts": { + "POSITIVE": 14, + "NEGATIVE": 5 + }, + "sentiment_distribution": { + "POSITIVE": 0.7368421052631579, + "NEGATIVE": 0.2631578947368421 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7368421052631579 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9967592358589172, + 0.9988215565681458, + 0.9988724589347839, + 0.9987271428108215, + 0.9898778796195984, + 0.9988118410110474, + 0.9988802075386047, + 0.9988627433776855, + 0.9989271759986877, + 0.9982247948646545, + 0.9989136457443237, + 0.998835027217865, + 0.9988133907318115, + 0.9989035129547119, + 0.9987032413482666, + 0.9988901019096375, + 0.9963483214378357, + 0.9988780617713928 + ], + "sentiment_counts": { + "POSITIVE": 17, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9444444444444444, + "NEGATIVE": 0.05555555555555555 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9444444444444444 + ] + }, + "final_label": "POSITIVE", + "final_count": 49, + "final_proportion": 0.8909090909090909, + "final_counts": { + "POSITIVE": 49, + "NEGATIVE": 6 + }, + "final_distribution": { + "POSITIVE": 0.8909090909090909, + "NEGATIVE": 0.10909090909090909 + } + } }, { "season_code": "202303", @@ -61126,7 +123029,7 @@ "11:35", "12:50", "LORIA 351 - Loria Center 351", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ], "Wednesday": [ @@ -61134,7 +123037,7 @@ "11:35", "12:50", "LORIA 351 - Loria Center 351", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -61145,17 +123048,136 @@ "flags": [ "YC HistofArt: Pre-800", "YC HistofArt: Europe", - "YC HistofArt: Asia\/Near East" + "YC HistofArt: Asia/Near East" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88358\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88358/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987393021583557, + 0.9982106685638428, + 0.9987975358963013, + 0.9989078044891357, + 0.9948375821113586, + 0.9989110231399536, + 0.9932107329368591, + 0.998173713684082 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989138841629028, + 0.9989169836044312, + 0.9989032745361328, + 0.9989269375801086, + 0.9989159107208252, + 0.9988229870796204, + 0.9989297986030579 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988308548927307, + 0.9989238381385803, + 0.9989078044891357, + 0.9988923668861389, + 0.9989045858383179, + 0.9988861680030823, + 0.9988723397254944, + 0.9974592328071594, + 0.9980016350746155, + 0.9979027509689331, + 0.9989321827888489 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9090909090909091 + ] + }, + "final_label": "POSITIVE", + "final_count": 25, + "final_proportion": 0.9615384615384616, + "final_counts": { + "POSITIVE": 25, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9615384615384616, + "NEGATIVE": 0.038461538461538464 + } + } }, { "season_code": "202303", @@ -61193,7 +123215,7 @@ "11:35", "12:50", "WLH 208 - William L. Harkness Hall 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -61201,7 +123223,7 @@ "11:35", "12:50", "WLH 208 - William L. Harkness Hall 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -61222,10 +123244,145 @@ "classnotes": "", "final_exam": "Sunday, December 17, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88424\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88424/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987493753433228, + 0.9988634586334229, + 0.9988526105880737, + 0.9986857771873474, + 0.9989227652549744, + 0.9987680315971375, + 0.9988237023353577, + 0.9987723231315613, + 0.9988923668861389, + 0.9989080429077148 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9987533092498779, + 0.9988825917243958, + 0.9988054037094116, + 0.9989011287689209, + 0.9988766312599182, + 0.9988998174667358, + 0.9989049434661865, + 0.9987851977348328, + 0.9988735318183899, + 0.9913740754127502 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9974592328071594, + 0.9989049434661865, + 0.99784255027771, + 0.9988511800765991, + 0.9989182949066162, + 0.9989307522773743, + 0.9988464117050171, + 0.9989336133003235, + 0.9984512329101562, + 0.9988473653793335, + 0.9988055229187012, + 0.9989129304885864, + 0.9970725774765015, + 0.9969460368156433 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9285714285714286, + "NEGATIVE": 0.07142857142857142 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9285714285714286 + ] + }, + "final_label": "POSITIVE", + "final_count": 32, + "final_proportion": 0.9411764705882353, + "final_counts": { + "POSITIVE": 32, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9411764705882353, + "NEGATIVE": 0.058823529411764705 + } + } }, { "season_code": "202303", @@ -61257,7 +123414,7 @@ "14:30", "15:20", "HQ 401 - Humanities Quadrangle 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -61281,7 +123438,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -61313,7 +123498,7 @@ "14:30", "15:20", "LC 317 - Linsly-Chittenden Hall 317", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -61337,7 +123522,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -61369,7 +123582,7 @@ "15:30", "16:20", "LC 317 - Linsly-Chittenden Hall 317", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -61393,7 +123606,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -61425,7 +123666,7 @@ "13:30", "14:20", "WLH 003 - William L. Harkness Hall 003", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -61449,7 +123690,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -61488,7 +123757,7 @@ "11:35", "12:50", "LC 101 - Linsly-Chittenden Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -61496,7 +123765,7 @@ "11:35", "12:50", "LC 101 - Linsly-Chittenden Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -61519,10 +123788,183 @@ "classnotes": "", "final_exam": "Friday, December 15, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88428\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88428/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988732933998108, + 0.9988717436790466, + 0.9986395239830017, + 0.9988631010055542, + 0.9988541603088379, + 0.9989005327224731, + 0.998845100402832, + 0.9984721541404724, + 0.9982134103775024, + 0.9989302754402161, + 0.9989340901374817, + 0.9989004135131836, + 0.9987493753433228, + 0.9989318251609802, + 0.9989117383956909 + ], + "sentiment_counts": { + "POSITIVE": 15, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988794922828674, + 0.9978839755058289, + 0.9988847374916077, + 0.9989196062088013, + 0.9988914132118225, + 0.9982833862304688, + 0.9989017248153687, + 0.998753547668457, + 0.9928911924362183, + 0.998895525932312, + 0.9989286065101624, + 0.9988344311714172, + 0.998668909072876, + 0.9979167580604553, + 0.9946585297584534, + 0.9987351298332214, + 0.9989124536514282 + ], + "sentiment_counts": { + "POSITIVE": 16, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9411764705882353, + "NEGATIVE": 0.058823529411764705 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9411764705882353 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989284873008728, + 0.9989261031150818, + 0.9988994598388672, + 0.9989174604415894, + 0.9989205598831177, + 0.994897186756134, + 0.9974592328071594, + 0.9988806843757629, + 0.9987263083457947, + 0.997117280960083, + 0.9989051818847656, + 0.9988407492637634, + 0.9988033771514893, + 0.9989031553268433, + 0.9989389777183533, + 0.997117280960083, + 0.9982335567474365, + 0.9985068440437317, + 0.9988753199577332, + 0.9986358284950256, + 0.9989301562309265 + ], + "sentiment_counts": { + "POSITIVE": 19, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.9047619047619048, + "NEGATIVE": 0.09523809523809523 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9047619047619048 + ] + }, + "final_label": "POSITIVE", + "final_count": 50, + "final_proportion": 0.9433962264150944, + "final_counts": { + "POSITIVE": 50, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.9433962264150944, + "NEGATIVE": 0.05660377358490566 + } + } }, { "season_code": "202303", @@ -61555,7 +123997,7 @@ "10:30", "11:20", "HQ 127 - Humanities Quadrangle 127", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -61581,7 +124023,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -61614,7 +124084,7 @@ "13:30", "14:20", "WLH 009 - William L. Harkness Hall 009", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -61640,7 +124110,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -61707,7 +124205,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -61740,7 +124266,7 @@ "15:30", "16:20", "HQ 213 - Humanities Quadrangle 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -61766,7 +124292,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -61799,7 +124353,7 @@ "16:00", "16:50", "HQ 313 - Humanities Quadrangle 313", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -61825,7 +124379,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -61858,7 +124440,7 @@ "16:30", "17:20", "HQ 213 - Humanities Quadrangle 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -61884,7 +124466,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -61924,7 +124534,7 @@ "13:30", "15:20", "RKZ 102 - Rosenkranz Hall 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -61938,10 +124548,111 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88472\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88472/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989111423492432, + 0.9988601207733154, + 0.9989058971405029, + 0.9987803101539612, + 0.9986018538475037 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9969589710235596, + 0.9987708926200867, + 0.9988803267478943, + 0.9989339709281921, + 0.9974442720413208 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9954793453216553, + 0.9986547231674194, + 0.9989053010940552, + 0.9988651275634766, + 0.9988355040550232, + 0.9984233379364014, + 0.9989383816719055 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 6 + }, + "sentiment_distribution": { + "NEGATIVE": 0.14285714285714285, + "POSITIVE": 0.8571428571428571 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 0.9411764705882353, + "final_counts": { + "POSITIVE": 16, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9411764705882353, + "NEGATIVE": 0.058823529411764705 + } + } }, { "season_code": "202303", @@ -61983,7 +124694,7 @@ "10:30", "11:20", "LC 101 - Linsly-Chittenden Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -61991,7 +124702,7 @@ "10:30", "11:20", "LC 101 - Linsly-Chittenden Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -62014,10 +124725,201 @@ "classnotes": "", "final_exam": "Wednesday, December 20, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88144\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88144/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988378882408142, + 0.9953532218933105, + 0.9988951086997986, + 0.9986488223075867, + 0.9982624650001526, + 0.9860534071922302, + 0.9988484382629395, + 0.9986264705657959, + 0.9987909197807312, + 0.998854398727417, + 0.9988672733306885, + 0.9986035227775574, + 0.9988545179367065, + 0.997929573059082, + 0.9989151954650879, + 0.998824417591095, + 0.9989160299301147, + 0.9988202452659607, + 0.9988542795181274 + ], + "sentiment_counts": { + "POSITIVE": 19, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988892674446106, + 0.9994922876358032, + 0.9988351464271545, + 0.998853325843811, + 0.996160626411438, + 0.9970585107803345, + 0.9985119700431824, + 0.9991745352745056, + 0.9988775849342346, + 0.9989223480224609, + 0.9958972930908203, + 0.998900294303894, + 0.9989225268363953, + 0.9994685053825378, + 0.9989032745361328, + 0.9989012479782104, + 0.9991877675056458, + 0.9987817406654358, + 0.997467041015625, + 0.9981908202171326 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 7 + }, + "sentiment_distribution": { + "POSITIVE": 0.65, + "NEGATIVE": 0.35 + }, + "sentiment_overall": [ + "POSITIVE", + 0.65 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998918890953064, + 0.998854398727417, + 0.9978829026222229, + 0.997734546661377, + 0.9929887652397156, + 0.9981157779693604, + 0.9981764554977417, + 0.99891197681427, + 0.9974592328071594, + 0.9986650943756104, + 0.9975800514221191, + 0.9988124370574951, + 0.9989287257194519, + 0.9989051818847656, + 0.9988356232643127, + 0.9988947510719299, + 0.9989290833473206, + 0.998824417591095, + 0.9944995641708374, + 0.9994848966598511, + 0.998868465423584, + 0.9983527660369873, + 0.9985677003860474 + ], + "sentiment_counts": { + "POSITIVE": 20, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.8695652173913043, + "NEGATIVE": 0.13043478260869565 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8695652173913043 + ] + }, + "final_label": "POSITIVE", + "final_count": 52, + "final_proportion": 0.8387096774193549, + "final_counts": { + "POSITIVE": 52, + "NEGATIVE": 10 + }, + "final_distribution": { + "POSITIVE": 0.8387096774193549, + "NEGATIVE": 0.16129032258064516 + } + } }, { "season_code": "202303", @@ -62050,7 +124952,7 @@ "20:00", "20:50", "HQ 209 - Humanities Quadrangle 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -62076,7 +124978,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -62109,7 +125039,7 @@ "19:00", "19:50", "HQ 225 - Humanities Quadrangle 225", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -62135,7 +125065,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -62168,7 +125126,7 @@ "15:30", "16:20", "BASSLB L73 - Bass Library L73", - "https:\/\/map.yale.edu\/?id=1910#!m\/564574" + "https://map.yale.edu/?id=1910#!m/564574" ] ] }, @@ -62194,7 +125152,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -62227,7 +125213,7 @@ "17:00", "17:50", "HQ 129 - Humanities Quadrangle 129", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -62253,7 +125239,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -62286,7 +125300,7 @@ "19:00", "19:50", "HQ 309 - Humanities Quadrangle 309", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -62312,7 +125326,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -62345,7 +125387,7 @@ "20:00", "20:50", "HQ 225 - Humanities Quadrangle 225", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -62371,7 +125413,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -62409,7 +125479,7 @@ "13:30", "14:20", "LC 102 - Linsly-Chittenden Hall 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -62417,7 +125487,7 @@ "13:30", "14:20", "LC 102 - Linsly-Chittenden Hall 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -62440,10 +125510,167 @@ "classnotes": "", "final_exam": "Saturday, December 16, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88431\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88431/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984550476074219, + 0.9988923668861389, + 0.9989307522773743, + 0.998852014541626, + 0.9988234639167786, + 0.9987348914146423, + 0.9988687634468079, + 0.9988204836845398, + 0.9982112646102905, + 0.9988037347793579, + 0.9987149238586426, + 0.9987978935241699 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9929434657096863, + 0.9993966817855835, + 0.9989351630210876, + 0.9989163875579834, + 0.999502420425415, + 0.998736560344696, + 0.9989100694656372, + 0.9933806657791138, + 0.9966639876365662, + 0.9986751675605774, + 0.9874273538589478, + 0.9972842931747437, + 0.9987784028053284, + 0.9988760352134705, + 0.9885707497596741, + 0.9962671399116516, + 0.9989317059516907 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 5 + }, + "sentiment_distribution": { + "POSITIVE": 0.7058823529411765, + "NEGATIVE": 0.29411764705882354 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7058823529411765 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9933308959007263, + 0.997117280960083, + 0.9988897442817688, + 0.998866081237793, + 0.9995073080062866, + 0.9900642037391663, + 0.9988445043563843, + 0.9963585734367371, + 0.9988918900489807, + 0.9963803887367249, + 0.9985824823379517, + 0.9988982677459717, + 0.9989163875579834, + 0.9988551139831543, + 0.9989057779312134, + 0.9988731741905212 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 14 + }, + "sentiment_distribution": { + "NEGATIVE": 0.125, + "POSITIVE": 0.875 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "final_label": "POSITIVE", + "final_count": 38, + "final_proportion": 0.8444444444444444, + "final_counts": { + "POSITIVE": 38, + "NEGATIVE": 7 + }, + "final_distribution": { + "POSITIVE": 0.8444444444444444, + "NEGATIVE": 0.15555555555555556 + } + } }, { "season_code": "202303", @@ -62475,7 +125702,7 @@ "8:20", "9:10", "WLH 009 - William L. Harkness Hall 009", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -62501,7 +125728,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -62533,7 +125788,7 @@ "9:25", "10:15", "WLH 009 - William L. Harkness Hall 009", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -62559,7 +125814,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -62591,7 +125874,7 @@ "10:30", "11:20", "WLH 007 - William L. Harkness Hall 007", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -62617,7 +125900,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -62649,7 +125960,7 @@ "13:30", "14:20", "WLH 007 - William L. Harkness Hall 007", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -62675,7 +125986,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -62707,7 +126046,7 @@ "19:00", "19:50", "LORIA 358 - Loria Center 358", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -62733,7 +126072,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -62765,7 +126132,7 @@ "20:00", "20:50", "LORIA 358 - Loria Center 358", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -62791,7 +126158,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -62857,7 +126252,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -62923,7 +126346,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -62961,7 +126412,7 @@ "9:25", "10:15", "WLH 208 - William L. Harkness Hall 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -62969,7 +126420,7 @@ "9:25", "10:15", "WLH 208 - William L. Harkness Hall 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -62994,10 +126445,125 @@ "classnotes": "", "final_exam": "Thursday, December 14, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88436\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88436/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9976930022239685, + 0.9986575841903687, + 0.9988747239112854, + 0.997810423374176, + 0.9988399147987366, + 0.9987744688987732, + 0.9988139867782593, + 0.9977748990058899, + 0.9987710118293762 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9966778755187988, + 0.9984911680221558, + 0.9989223480224609, + 0.9987975358963013, + 0.9988219141960144, + 0.9989161491394043, + 0.9988111257553101, + 0.998038113117218 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989016056060791, + 0.9989247918128967, + 0.9987745881080627, + 0.9977818131446838, + 0.9988694787025452, + 0.998847246170044, + 0.9871153831481934 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 23, + "final_proportion": 0.9583333333333334, + "final_counts": { + "POSITIVE": 23, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9583333333333334, + "NEGATIVE": 0.041666666666666664 + } + } }, { "season_code": "202303", @@ -63029,7 +126595,7 @@ "17:00", "17:50", "HQ C01 - Humanities Quadrangle C01", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -63057,7 +126623,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -63089,7 +126683,7 @@ "19:00", "19:50", "HQ C01 - Humanities Quadrangle C01", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -63117,7 +126711,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -63149,7 +126771,7 @@ "14:30", "15:20", "HQ 229 - Humanities Quadrangle 229", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -63159,7 +126781,7 @@ ], "flags": [ "YC History: Preindustrial", - "YC CLSS: Lit\/Cult Anc Rome", + "YC CLSS: Lit/Cult Anc Rome", "YC HIST: Europe", "YC HIST: Cultural History", "YC HIST: Environmental History", @@ -63178,7 +126800,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -63228,7 +126878,7 @@ ], "flags": [ "YC History: Preindustrial", - "YC CLSS: Lit\/Cult Anc Rome", + "YC CLSS: Lit/Cult Anc Rome", "YC HIST: Europe", "YC HIST: Cultural History", "YC HIST: Environmental History", @@ -63247,7 +126897,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -63281,7 +126959,7 @@ "Hu" ], "flags": [ - "YC CLSS: Lit\/Cult Anc Greece" + "YC CLSS: Lit/Cult Anc Greece" ], "regnotes": "", "rp_attr": "", @@ -63291,7 +126969,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -63330,7 +127036,7 @@ "15:30", "17:20", "WLH 007 - William L. Harkness Hall 007", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -63344,10 +127050,131 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90510\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90510/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988572597503662, + 0.9988958835601807, + 0.9988824725151062, + 0.9988672733306885, + 0.9988343119621277, + 0.9989312291145325, + 0.9988188147544861, + 0.9988503456115723, + 0.9988911747932434 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998895525932312, + 0.9988721013069153, + 0.9988676309585571, + 0.9988422989845276, + 0.9988681077957153, + 0.9988824725151062, + 0.9989058971405029, + 0.9981061220169067 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989357590675354, + 0.998867392539978, + 0.9976968169212341, + 0.9988635778427124, + 0.9988962411880493, + 0.9988586902618408, + 0.9989223480224609, + 0.9989124536514282, + 0.9988627433776855, + 0.9988425970077515, + 0.9989343285560608 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 28, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 28 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -63390,7 +127217,38 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9847735166549683 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 1, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 1 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -63433,7 +127291,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -63471,7 +127357,7 @@ "15:30", "17:20", "BRBL 9 - Beinecke Rare Book Library 9", - "https:\/\/map.yale.edu\/?id=1910#!m\/531533" + "https://map.yale.edu/?id=1910#!m/531533" ] ] }, @@ -63483,10 +127369,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91712\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91712/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -63523,7 +127437,7 @@ "10:00", "12:00", "YUAG 135 - Yale University Art Gallery 135", - "https:\/\/map.yale.edu\/?id=1910#!m\/559918" + "https://map.yale.edu/?id=1910#!m/559918" ] ] }, @@ -63538,7 +127452,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -63579,7 +127521,7 @@ "15:30", "17:20", "PH 312 - Phelps Hall 312", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -63591,15 +127533,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88629\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88629/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "A graduate-level extension of CLCV 236\/HIST 225. The course inculcates the basic principles of Roman law while training students in advanced topics in the subject and initiating them into research methods.", + "description": "A graduate-level extension of CLCV 236/HIST 225. The course inculcates the basic principles of Roman law while training students in advanced topics in the subject and initiating them into research methods.", "short_title": "Roman Law", "title": "Roman Law", "school": "GS", @@ -63632,7 +127602,7 @@ "13:30", "15:20", "PH 312 - Phelps Hall 312", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -63644,10 +127614,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88446\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88446/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -63684,7 +127682,7 @@ "10:00", "12:00", "PH 310 - Phelps Hall 310", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -63696,10 +127694,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88450\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88450/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -63736,7 +127762,7 @@ "9:00", "10:15", "LC 208 - Linsly-Chittenden Hall 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -63744,7 +127770,7 @@ "9:00", "10:15", "LC 208 - Linsly-Chittenden Hall 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -63756,10 +127782,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88455\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88455/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -63796,7 +127850,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -63833,7 +127915,7 @@ "9:25", "11:15", "HQ 127 - Humanities Quadrangle 127", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -63845,10 +127927,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90532\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90532/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -63890,7 +128000,7 @@ "13:30", "15:20", "LC 319 - Linsly-Chittenden Hall 319", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -63902,10 +128012,91 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88465\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88465/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986985921859741, + 0.9985851049423218, + 0.9989144802093506 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989105463027954, + 0.9987713694572449, + 0.998869001865387 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989247918128967, + 0.9989323019981384 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 8, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 8 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -63943,7 +128134,7 @@ "13:30", "15:20", "HQ 225 - Humanities Quadrangle 225", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -63955,10 +128146,38 @@ "classnotes": "The course will be taught by Max Kade Visiting Professor Anja Lemke", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90059\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/90059/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -63999,7 +128218,7 @@ "15:30", "17:20", "HQ 113 - Humanities Quadrangle 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -64015,10 +128234,93 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89137\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89137/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989191293716431, + 0.9986900687217712, + 0.9948129653930664 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988294243812561, + 0.9984099864959717, + 0.9988916516304016 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987150430679321, + 0.9987962245941162, + 0.9988998174667358 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 9 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -64057,7 +128359,7 @@ "13:30", "15:20", "LC 319 - Linsly-Chittenden Hall 319", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -64071,10 +128373,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89203\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89203/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -64115,7 +128445,7 @@ "13:30", "15:20", "HQ 317 - Humanities Quadrangle 317", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -64127,10 +128457,107 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90234\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90234/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984467625617981, + 0.9988627433776855, + 0.9987572431564331, + 0.9988536834716797, + 0.998889148235321, + 0.9987830519676208 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989288449287415, + 0.9893749952316284, + 0.9988841414451599, + 0.9984605312347412, + 0.9988671541213989 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988357424736023, + 0.9982391595840454, + 0.9988481998443604, + 0.9988767504692078, + 0.9964302182197571 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 16 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -64170,7 +128597,7 @@ "15:30", "18:30", "WLH 015 - William L. Harkness Hall 015", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -64182,10 +128609,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90230\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90230/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -64231,7 +128686,7 @@ "15:30", "17:20", "HQ C03 - Humanities Quadrangle C03", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -64243,10 +128698,101 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89026\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89026/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988987445831299, + 0.9986571073532104, + 0.9933185577392578, + 0.9986230134963989 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989332556724548, + 0.9987208247184753, + 0.998921275138855 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9963036775588989, + 0.9982940554618835, + 0.9988642930984497, + 0.9975757002830505, + 0.9988969564437866, + 0.9988803267478943 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 13 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -64288,7 +128834,7 @@ "15:30", "17:20", "WALL81 301 - 81 Wall Street 301", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -64303,10 +128849,97 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90076\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90076/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998767614364624, + 0.9986365437507629, + 0.9987506866455078, + 0.9986162185668945 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988875985145569, + 0.9985893368721008, + 0.998904824256897 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988605976104736, + 0.997117280960083, + 0.9989264607429504, + 0.9977026581764221 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 11 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -64344,7 +128977,7 @@ "15:30", "17:20", "HQ 327 - Humanities Quadrangle 327", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -64359,7 +128992,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -64400,7 +129061,7 @@ "19:00", "22:00", "HQ 109 - Humanities Quadrangle 109", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Tuesday": [ @@ -64408,7 +129069,7 @@ "13:30", "15:20", "", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -64420,10 +129081,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88283\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88283/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -64461,7 +129150,7 @@ "15:30", "17:20", "HQ 317 - Humanities Quadrangle 317", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -64473,10 +129162,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88470\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88470/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -64531,10 +129248,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88475\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88475/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -64572,7 +129317,7 @@ "15:30", "17:20", "HQ 109 - Humanities Quadrangle 109", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -64584,10 +129329,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89483\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89483/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -64627,7 +129400,7 @@ "15:30", "17:20", "HQ 113 - Humanities Quadrangle 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -64639,10 +129412,61 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92375\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92375/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989321827888489 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981922507286072 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 2, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 2 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -64688,7 +129512,7 @@ "15:30", "17:20", "HQ 209 - Humanities Quadrangle 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -64700,15 +129524,102 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88908\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88908/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "", - "description": "This seminar examines the intersections of postcolonialism and ecocriticism as well as the tensions between these conceptual nodes, with readings drawn from across the global South. Topics of discussion include colonialism, development, resource extraction, globalization, ecological degradation, nonhuman agency, and indigenous cosmologies. The course is concerned with the narrative strategies affording the illumination of environmental ideas. We begin by engaging with the questions of postcolonial and world literature and return to these throughout the semester as we read primary texts, drawn from Africa, the Caribbean, and Asia. We consider African ecologies in their complexity from colonial through post-colonial times. In the unit on the Caribbean, we take up the transformations of the landscape from slavery, through colonialism, and the contemporary era. Turning to Asian spaces, the seminar explores changes brought about by modernity and globalization as well as the effects on both humans and nonhumans. Readings include the writings of Zakes Mda, Aminatta Forna, Helon Habila, Derek Walcott, Jamaica Kincaid, Ishimure Michiko, and Amitav Ghosh.\u00a0The course prepares students to respond to key issues in postcolonial ecocriticism and the environmental humanities, analyze the work of the major thinkers in the fields, and examine literary texts and other cultural productions from a postcolonial perspective. Course participants have the option of selecting from a variety of final projects. Students can craft an original essay that analyzes primary text from a postcolonial and\/or ecocritical perspective. Such work should aim at producing new insight on a theoretical concept and\/or the cultural text. They can also produce an undergraduate syllabus for a course at the intersection of postcolonialism and environmentalism or write a review essay discussing three recent monographs focused on postcolonial ecocriticism.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988865256309509, + 0.9988441467285156, + 0.9987584352493286, + 0.9989197254180908 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989302754402161, + 0.998914361000061, + 0.9977319240570068 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988856911659241, + 0.9989079236984253, + 0.9989084005355835, + 0.9989058971405029 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 11 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } + }, + { + "season_code": "202303", + "requirements": "", + "description": "This seminar examines the intersections of postcolonialism and ecocriticism as well as the tensions between these conceptual nodes, with readings drawn from across the global South. Topics of discussion include colonialism, development, resource extraction, globalization, ecological degradation, nonhuman agency, and indigenous cosmologies. The course is concerned with the narrative strategies affording the illumination of environmental ideas. We begin by engaging with the questions of postcolonial and world literature and return to these throughout the semester as we read primary texts, drawn from Africa, the Caribbean, and Asia. We consider African ecologies in their complexity from colonial through post-colonial times. In the unit on the Caribbean, we take up the transformations of the landscape from slavery, through colonialism, and the contemporary era. Turning to Asian spaces, the seminar explores changes brought about by modernity and globalization as well as the effects on both humans and nonhumans. Readings include the writings of Zakes Mda, Aminatta Forna, Helon Habila, Derek Walcott, Jamaica Kincaid, Ishimure Michiko, and Amitav Ghosh.\u00a0The course prepares students to respond to key issues in postcolonial ecocriticism and the environmental humanities, analyze the work of the major thinkers in the fields, and examine literary texts and other cultural productions from a postcolonial perspective. Course participants have the option of selecting from a variety of final projects. Students can craft an original essay that analyzes primary text from a postcolonial and/or ecocritical perspective. Such work should aim at producing new insight on a theoretical concept and/or the cultural text. They can also produce an undergraduate syllabus for a course at the intersection of postcolonialism and environmentalism or write a review essay discussing three recent monographs focused on postcolonial ecocriticism.", "short_title": "Postcolonial Ecologies", "title": "Postcolonial Ecologies", "school": "GS", @@ -64742,24 +129653,52 @@ "13:30", "15:20", "LC 319 - Linsly-Chittenden Hall 319", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, "skills": [], "areas": [], "flags": [ - "YC English: 20th\/21st Century" + "YC English: 20th/21st Century" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89346\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89346/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -64802,12 +129741,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "This is the first section of a year-long seminar (second section: CPLT 914) designed to introduce the discipline of psychoanalysis through primary sources, mainly from the Freudian and Lacanian corpuses but including late twentieth-century commentators and contemporary interdisciplinary conversations. We rigorously examine key psychoanalytic concepts that students have heard about but never had the chance to study. Students gain proficiency in what has been called \"the language of psychoanalysis,\" as well as tools for critical practice in disciplines such as literary criticism, political theory, film studies, gender studies, theory of ideology, psychology medical humanities, etc. We study concepts such as the unconscious, identification, the drive, repetition, the imaginary, fantasy, the symbolic, the real, and jouissance. A central goal of the seminar is to disambiguate Freud's corpus from Lacan's reinvention of it. We do not come to the \"rescue\" of Freud. We revisit essays that are relevant for contemporary conversations within the international psychoanalytic community. We include only a handful of materials from the Anglophone schools of psychoanalysis developed in England and the US. This section pays special attention to Freud's \"three\" (the ego, superego, and id) in comparison to Lacan's \"three\" (the imaginary, the symbolic, and the real). CPLT 914 devotes, depending on the interests expressed by the group, the last six weeks to special psychoanalytic topics such as sexuation, perversion, psychosis, anti-asylum movements, conversations between psychoanalysis and neurosciences and artificial intelligence, the current pharmacological model of mental health, and\/or to specific uses of psychoanalysis in disciplines such as film theory, political philosophy, and the critique of ideology. Apart from Freud and Lacan, we will read work by Georges Canguilhem, Roman Jakobson, Victor Tausk, \u00c9mile Benveniste, Valentin Volosinov, Guy Le Gaufey, Jean Laplanche, \u00c9tienne Balibar, Roberto Esposito, Wilfred Bion, F\u00e9lix Guattari, Markos Zafiropoulos, Franco Bifo Berardi, Barbara Cassin, Renata Salecl, Maurice Godelier, Alenka Zupan\u010di\u010d, Juliet Mitchell, Jacqueline Rose, Norbert Wiener, Alan Turing, Eric Kandel, and Lera Boroditsky among others.\u00a0No previous knowledge of psychoanalysis is needed. Starting out from basic questions, we study how psychoanalysis, arguably, changed the way we think of human subjectivity. Graduate students from all departments and schools on campus are welcome. The final assignment is due by the end of the spring term and need not necessarily take the form of a twenty-page paper. Taught in English. Materials can be provided to cover the linguistic range of the group.", + "description": "This is the first section of a year-long seminar (second section: CPLT 914) designed to introduce the discipline of psychoanalysis through primary sources, mainly from the Freudian and Lacanian corpuses but including late twentieth-century commentators and contemporary interdisciplinary conversations. We rigorously examine key psychoanalytic concepts that students have heard about but never had the chance to study. Students gain proficiency in what has been called \"the language of psychoanalysis,\" as well as tools for critical practice in disciplines such as literary criticism, political theory, film studies, gender studies, theory of ideology, psychology medical humanities, etc. We study concepts such as the unconscious, identification, the drive, repetition, the imaginary, fantasy, the symbolic, the real, and jouissance. A central goal of the seminar is to disambiguate Freud's corpus from Lacan's reinvention of it. We do not come to the \"rescue\" of Freud. We revisit essays that are relevant for contemporary conversations within the international psychoanalytic community. We include only a handful of materials from the Anglophone schools of psychoanalysis developed in England and the US. This section pays special attention to Freud's \"three\" (the ego, superego, and id) in comparison to Lacan's \"three\" (the imaginary, the symbolic, and the real). CPLT 914 devotes, depending on the interests expressed by the group, the last six weeks to special psychoanalytic topics such as sexuation, perversion, psychosis, anti-asylum movements, conversations between psychoanalysis and neurosciences and artificial intelligence, the current pharmacological model of mental health, and/or to specific uses of psychoanalysis in disciplines such as film theory, political philosophy, and the critique of ideology. Apart from Freud and Lacan, we will read work by Georges Canguilhem, Roman Jakobson, Victor Tausk, \u00c9mile Benveniste, Valentin Volosinov, Guy Le Gaufey, Jean Laplanche, \u00c9tienne Balibar, Roberto Esposito, Wilfred Bion, F\u00e9lix Guattari, Markos Zafiropoulos, Franco Bifo Berardi, Barbara Cassin, Renata Salecl, Maurice Godelier, Alenka Zupan\u010di\u010d, Juliet Mitchell, Jacqueline Rose, Norbert Wiener, Alan Turing, Eric Kandel, and Lera Boroditsky among others.\u00a0No previous knowledge of psychoanalysis is needed. Starting out from basic questions, we study how psychoanalysis, arguably, changed the way we think of human subjectivity. Graduate students from all departments and schools on campus are welcome. The final assignment is due by the end of the spring term and need not necessarily take the form of a twenty-page paper. Taught in English. Materials can be provided to cover the linguistic range of the group.", "short_title": "Psychoanalysis: Key Conceptua...", "title": "Psychoanalysis: Key Conceptual Differences between Freud and Lacan I", "school": "GS", @@ -64843,7 +129810,7 @@ "19:00", "20:50", "PH 207 - Phelps Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -64855,10 +129822,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89105\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89105/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -64897,13 +129892,13 @@ "9:25", "11:15", "HQ 109 - Humanities Quadrangle 109", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ], [ "19:00", "22:00", "HQ L01 - Humanities Quadrangle L01", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -64915,10 +129910,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90330\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90330/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -64959,7 +129982,7 @@ "13:30", "15:20", "HQ 213 - Humanities Quadrangle 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -64971,15 +129994,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88710\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88710/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "No previous programming experience required. Open to students of all levels and majors.", - "description": "Introduction to the intellectual enterprises of computer science and to the art of programming. Students learn how to think algorithmically and solve problems efficiently. Topics include abstraction, algorithms, data structures, encapsulation, resource management, security, software engineering, and web development. Languages include C, Python, SQL, and JavaScript, plus CSS and HTML. Problem sets inspired by real-world domains of biology, cryptography, finance, forensics, and gaming. See CS50's website, https:\/\/cs50.yale.edu, for additional information.", + "description": "Introduction to the intellectual enterprises of computer science and to the art of programming. Students learn how to think algorithmically and solve problems efficiently. Topics include abstraction, algorithms, data structures, encapsulation, resource management, security, software engineering, and web development. Languages include C, Python, SQL, and JavaScript, plus CSS and HTML. Problem sets inspired by real-world domains of biology, cryptography, finance, forensics, and gaming. See CS50's website, https://cs50.yale.edu, for additional information.", "short_title": "Introduction to Computing and...", "title": "Introduction to Computing and Programming", "school": "YC", @@ -65022,10 +130073,429 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88485\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88485/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985248446464539, + 0.998282790184021, + 0.9989011287689209, + 0.9982892870903015, + 0.9942522644996643, + 0.998856782913208, + 0.9986053109169006, + 0.9983623623847961, + 0.9984409213066101, + 0.9738075733184814, + 0.9988273978233337, + 0.9978245496749878, + 0.997955322265625, + 0.998875081539154, + 0.6495741605758667, + 0.998689591884613, + 0.9988683462142944, + 0.998897910118103, + 0.9727877974510193, + 0.9987952709197998, + 0.9982591271400452, + 0.9965298771858215, + 0.9987176656723022, + 0.9977856874465942, + 0.9983890056610107, + 0.9885473251342773, + 0.998818576335907, + 0.9989117383956909, + 0.9987186193466187, + 0.9987841248512268, + 0.9938516616821289, + 0.9988874793052673, + 0.9989206790924072, + 0.9987849593162537, + 0.9976280331611633, + 0.9989155530929565, + 0.9320856928825378, + 0.9987971782684326, + 0.9933223128318787, + 0.9986565113067627, + 0.9988251328468323, + 0.9891356229782104, + 0.998904824256897, + 0.9958065748214722, + 0.9989027976989746, + 0.998893678188324, + 0.9988226294517517, + 0.998829185962677, + 0.9986199140548706, + 0.9977703094482422, + 0.9985156655311584, + 0.9824815392494202, + 0.999504804611206, + 0.9657548069953918, + 0.9989086389541626, + 0.9988365769386292, + 0.9941275119781494, + 0.9989027976989746, + 0.9954646229743958, + 0.9986227750778198 + ], + "sentiment_counts": { + "POSITIVE": 55, + "NEGATIVE": 5 + }, + "sentiment_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9166666666666666 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988631010055542, + 0.9995100498199463, + 0.9962366223335266, + 0.9989163875579834, + 0.9986844658851624, + 0.9970033764839172, + 0.9949133396148682, + 0.9986380934715271, + 0.9988971948623657, + 0.9995076656341553, + 0.998777449131012, + 0.9988613128662109, + 0.9989032745361328, + 0.9985942244529724, + 0.999466598033905, + 0.9989192485809326, + 0.9987438321113586, + 0.8179805278778076, + 0.9957016110420227, + 0.9789550304412842, + 0.9988613128662109, + 0.999081015586853, + 0.9986360669136047, + 0.9988188147544861, + 0.9988540410995483, + 0.9969159364700317, + 0.9988542795181274, + 0.998906135559082, + 0.9924535155296326, + 0.9965930581092834, + 0.9847599864006042, + 0.9989244341850281, + 0.9989110231399536, + 0.9983861446380615, + 0.9989160299301147, + 0.9982025623321533, + 0.998211145401001, + 0.9989010095596313, + 0.9952903985977173, + 0.9955908060073853, + 0.9912976026535034, + 0.998566210269928, + 0.9976073503494263, + 0.9988736510276794, + 0.9989258646965027, + 0.9988747239112854, + 0.9989204406738281, + 0.9983785152435303, + 0.9985539317131042, + 0.9966625571250916, + 0.9988189339637756, + 0.9753856062889099, + 0.998789370059967, + 0.9989266991615295, + 0.99882572889328, + 0.9984778761863708, + 0.993923008441925 + ], + "sentiment_counts": { + "POSITIVE": 49, + "NEGATIVE": 8 + }, + "sentiment_distribution": { + "POSITIVE": 0.8596491228070176, + "NEGATIVE": 0.14035087719298245 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8596491228070176 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9982553124427795, + 0.9994798302650452, + 0.9989126920700073, + 0.9989290833473206, + 0.9989171028137207, + 0.9802833199501038, + 0.9987824559211731, + 0.9989213943481445, + 0.9989377856254578, + 0.9989093542098999, + 0.9989125728607178, + 0.9988260865211487, + 0.9988657236099243, + 0.9989223480224609, + 0.9971520900726318, + 0.9987009763717651, + 0.998620867729187, + 0.9989232420921326, + 0.9988918900489807, + 0.9985255599021912, + 0.9960018992424011, + 0.9812468886375427, + 0.9989387392997742, + 0.998883068561554, + 0.9971336126327515, + 0.9988946318626404, + 0.9987738728523254, + 0.9456210136413574, + 0.9984706044197083, + 0.9988767504692078, + 0.9994189739227295, + 0.9988344311714172, + 0.999494194984436, + 0.998907208442688, + 0.9987449645996094, + 0.998843789100647, + 0.9975925087928772, + 0.9989105463027954, + 0.997117280960083, + 0.9989373087882996, + 0.9989301562309265, + 0.9987967014312744, + 0.9990750551223755, + 0.998842179775238, + 0.9986733198165894, + 0.9988961219787598, + 0.9957271814346313, + 0.9953092932701111, + 0.9989056587219238, + 0.9988904595375061, + 0.9903620481491089, + 0.9988688826560974, + 0.9974592328071594, + 0.9995003938674927, + 0.9988828301429749, + 0.9989369511604309, + 0.9989209175109863, + 0.9987724423408508, + 0.9994980096817017 + ], + "sentiment_counts": { + "POSITIVE": 49, + "NEGATIVE": 10 + }, + "sentiment_distribution": { + "POSITIVE": 0.8305084745762712, + "NEGATIVE": 0.1694915254237288 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8305084745762712 + ] + }, + "final_label": "POSITIVE", + "final_count": 153, + "final_proportion": 0.8693181818181818, + "final_counts": { + "POSITIVE": 153, + "NEGATIVE": 23 + }, + "final_distribution": { + "POSITIVE": 0.8693181818181818, + "NEGATIVE": 0.13068181818181818 + } + } }, { "season_code": "202303", @@ -65062,7 +130532,7 @@ "11:35", "12:50", "HLH17 101 - 17 Hillhouse Avenue 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Wednesday": [ @@ -65070,7 +130540,7 @@ "11:35", "12:50", "HLH17 101 - 17 Hillhouse Avenue 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -65084,10 +130554,157 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88491\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88491/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9960541725158691, + 0.998915433883667, + 0.9971513152122498, + 0.9943304061889648, + 0.9984537363052368, + 0.9946855306625366, + 0.9979982972145081, + 0.9989093542098999, + 0.9957635402679443, + 0.9963265061378479, + 0.9984753727912903, + 0.9988735318183899 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9166666666666666 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994749426841736, + 0.9989019632339478, + 0.998690664768219, + 0.9995080232620239, + 0.9959467053413391, + 0.9965544939041138, + 0.9980377554893494, + 0.9988973140716553, + 0.99808669090271, + 0.9984251260757446, + 0.9924820065498352, + 0.9720494747161865, + 0.998839795589447, + 0.9988471269607544 + ], + "sentiment_counts": { + "NEGATIVE": 6, + "POSITIVE": 8 + }, + "sentiment_distribution": { + "NEGATIVE": 0.42857142857142855, + "POSITIVE": 0.5714285714285714 + }, + "sentiment_overall": [ + "POSITIVE", + 0.5714285714285714 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9889695644378662, + 0.9989218711853027, + 0.9989123344421387, + 0.8620133399963379, + 0.9992127418518066, + 0.9995037317276001, + 0.9929405450820923, + 0.9988833069801331, + 0.9987801909446716, + 0.9994089603424072, + 0.9989032745361328, + 0.9983540773391724, + 0.9982660412788391, + 0.999086856842041 + ], + "sentiment_counts": { + "NEGATIVE": 5, + "POSITIVE": 9 + }, + "sentiment_distribution": { + "NEGATIVE": 0.35714285714285715, + "POSITIVE": 0.6428571428571429 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6428571428571429 + ] + }, + "final_label": "POSITIVE", + "final_count": 28, + "final_proportion": 0.7, + "final_counts": { + "POSITIVE": 28, + "NEGATIVE": 12 + }, + "final_distribution": { + "POSITIVE": 0.7, + "NEGATIVE": 0.3 + } + } }, { "season_code": "202303", @@ -65124,7 +130741,7 @@ "11:35", "12:50", "AKW 100 - Arthur K. Watson Hall 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560119" + "https://map.yale.edu/?id=1910#!m/560119" ] ], "Wednesday": [ @@ -65132,7 +130749,7 @@ "11:35", "12:50", "AKW 100 - Arthur K. Watson Hall 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560119" + "https://map.yale.edu/?id=1910#!m/560119" ] ] }, @@ -65148,10 +130765,113 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88496\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88496/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9994145631790161, + 0.9989354014396667, + 0.9995054006576538, + 0.9994999170303345, + 0.9994945526123047, + 0.9994945526123047 + ], + "sentiment_counts": { + "NEGATIVE": 6, + "POSITIVE": 0 + }, + "sentiment_distribution": { + "NEGATIVE": 1.0, + "POSITIVE": 0.0 + }, + "sentiment_overall": [ + "NEGATIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9995094537734985, + 0.9995056390762329, + 0.9911126494407654, + 0.999471127986908, + 0.9995064735412598 + ], + "sentiment_counts": { + "NEGATIVE": 5, + "POSITIVE": 0 + }, + "sentiment_distribution": { + "NEGATIVE": 1.0, + "POSITIVE": 0.0 + }, + "sentiment_overall": [ + "NEGATIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9995007514953613, + 0.989188015460968, + 0.9995124340057373, + 0.9980652928352356, + 0.9995068311691284, + 0.9993913173675537, + 0.9995125532150269 + ], + "sentiment_counts": { + "NEGATIVE": 6, + "POSITIVE": 1 + }, + "sentiment_distribution": { + "NEGATIVE": 0.8571428571428571, + "POSITIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.8571428571428571 + ] + }, + "final_label": "NEGATIVE", + "final_count": 17, + "final_proportion": 0.9444444444444444, + "final_counts": { + "NEGATIVE": 17, + "POSITIVE": 1 + }, + "final_distribution": { + "NEGATIVE": 0.9444444444444444, + "POSITIVE": 0.05555555555555555 + } + } }, { "season_code": "202303", @@ -65188,7 +130908,7 @@ "16:00", "17:15", "LC 102 - Linsly-Chittenden Hall 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -65196,7 +130916,7 @@ "16:00", "17:15", "LC 102 - Linsly-Chittenden Hall 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -65212,10 +130932,337 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88501\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88501/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988201260566711, + 0.9984982013702393, + 0.9987972974777222, + 0.9988458156585693, + 0.9984965324401855, + 0.9987080097198486, + 0.9987106323242188, + 0.9988400340080261, + 0.9976924657821655, + 0.9987903237342834, + 0.9986553192138672, + 0.9988094568252563, + 0.999496340751648, + 0.9989088773727417, + 0.9966338276863098, + 0.9978949427604675, + 0.9989067316055298, + 0.9871025681495667, + 0.9970865845680237, + 0.9987561702728271, + 0.9989056587219238, + 0.9985981583595276, + 0.9989185333251953, + 0.9988191723823547, + 0.9989259839057922, + 0.9987181425094604, + 0.9989114999771118, + 0.9989132881164551, + 0.9988541603088379, + 0.9861499667167664, + 0.9983772039413452, + 0.9981811046600342, + 0.9985485672950745, + 0.9985902905464172, + 0.9988235831260681, + 0.9389298558235168, + 0.9988471269607544, + 0.9985871315002441 + ], + "sentiment_counts": { + "POSITIVE": 34, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.8947368421052632, + "NEGATIVE": 0.10526315789473684 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8947368421052632 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989340901374817, + 0.9988983869552612, + 0.9987074136734009, + 0.9971097111701965, + 0.9985629916191101, + 0.9989135265350342, + 0.9988791346549988, + 0.9989200830459595, + 0.9977752566337585, + 0.9986977577209473, + 0.998848557472229, + 0.9927440881729126, + 0.9988805651664734, + 0.9987917542457581, + 0.987338662147522, + 0.9912746548652649, + 0.9989246726036072, + 0.9988027811050415, + 0.9934846758842468, + 0.9983648657798767, + 0.9987314343452454, + 0.9988870024681091, + 0.9988459348678589, + 0.9988675117492676, + 0.9987760186195374, + 0.9989042282104492, + 0.9988844990730286, + 0.9988846182823181, + 0.9988886713981628, + 0.9989091157913208, + 0.9993040561676025, + 0.9988792538642883, + 0.9994871616363525, + 0.998316764831543, + 0.998897910118103, + 0.998894989490509, + 0.9989216327667236, + 0.9986051917076111, + 0.9986808896064758, + 0.9994763731956482 + ], + "sentiment_counts": { + "POSITIVE": 35, + "NEGATIVE": 5 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988716244697571, + 0.9989233613014221, + 0.9987291693687439, + 0.9987321496009827, + 0.9989294409751892, + 0.9989301562309265, + 0.9988906979560852, + 0.9986860156059265, + 0.99893718957901, + 0.9988406300544739, + 0.9981721639633179, + 0.997117280960083, + 0.9985195994377136, + 0.998935878276825, + 0.9989288449287415, + 0.9989386200904846, + 0.9933667778968811, + 0.9988895058631897, + 0.9988607168197632, + 0.9994487166404724, + 0.9986169338226318, + 0.9971490502357483, + 0.9988561868667603, + 0.9988948702812195, + 0.9988986253738403, + 0.9938787817955017, + 0.9987515211105347, + 0.9987756609916687, + 0.9963392019271851, + 0.9989240765571594, + 0.998816967010498, + 0.9988964796066284, + 0.9989309906959534, + 0.9980347752571106, + 0.9988775849342346, + 0.9988334774971008, + 0.9989073276519775, + 0.9988976716995239, + 0.9986885190010071, + 0.9986408352851868, + 0.9995071887969971, + 0.9986802935600281, + 0.9988841414451599, + 0.9988510608673096, + 0.9989033937454224, + 0.9988086223602295, + 0.9989023208618164, + 0.9964034557342529, + 0.9985396862030029, + 0.9985663294792175, + 0.9966192245483398, + 0.9912247061729431 + ], + "sentiment_counts": { + "POSITIVE": 48, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.9230769230769231, + "NEGATIVE": 0.07692307692307693 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9230769230769231 + ] + }, + "final_label": "POSITIVE", + "final_count": 117, + "final_proportion": 0.9, + "final_counts": { + "POSITIVE": 117, + "NEGATIVE": 13 + }, + "final_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + } + } }, { "season_code": "202303", @@ -65252,7 +131299,7 @@ "14:30", "15:45", "ML 211 - Mason Laboratory 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ], "Wednesday": [ @@ -65260,7 +131307,7 @@ "14:30", "15:45", "ML 211 - Mason Laboratory 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ] }, @@ -65274,10 +131321,113 @@ "classnotes": "", "final_exam": "Sunday, December 17, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88506\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88506/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9965715408325195, + 0.9988252520561218, + 0.9994800686836243, + 0.9988271594047546, + 0.9929701685905457, + 0.9988258481025696, + 0.9989184141159058 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9978392720222473, + 0.9994685053825378, + 0.9988452196121216, + 0.9873221516609192, + 0.9977244734764099, + 0.9958679676055908 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9987356066703796, + 0.9995132684707642, + 0.997735857963562, + 0.9959402084350586, + 0.9991466999053955 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.4, + "NEGATIVE": 0.6 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.6 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 0.6111111111111112, + "final_counts": { + "POSITIVE": 11, + "NEGATIVE": 7 + }, + "final_distribution": { + "POSITIVE": 0.6111111111111112, + "NEGATIVE": 0.3888888888888889 + } + } }, { "season_code": "202303", @@ -65314,7 +131464,7 @@ "10:30", "11:20", "DAVIES AUD - Davies Auditorium, Becton Ctr AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ], "Wednesday": [ @@ -65322,7 +131472,7 @@ "10:30", "11:20", "DAVIES AUD - Davies Auditorium, Becton Ctr AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ], "Friday": [ @@ -65330,7 +131480,7 @@ "10:30", "11:20", "DAVIES AUD - Davies Auditorium, Becton Ctr AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ] }, @@ -65346,10 +131496,327 @@ "classnotes": "", "final_exam": "Monday, December 18, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88511\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88511/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9688593149185181, + 0.9865905046463013, + 0.9987192153930664, + 0.9988564252853394, + 0.9985851049423218, + 0.9986163377761841, + 0.9978458881378174, + 0.9989339709281921, + 0.9994887113571167, + 0.9983983635902405, + 0.9987102746963501, + 0.9974105954170227, + 0.9985336065292358, + 0.9988141059875488, + 0.9987143278121948, + 0.998610258102417, + 0.9989308714866638, + 0.9943863153457642, + 0.9895584583282471, + 0.9983822107315063, + 0.9987443685531616, + 0.9917942881584167, + 0.9988210797309875, + 0.9923660159111023, + 0.9933772683143616, + 0.9980913996696472, + 0.9988394379615784, + 0.9987247586250305, + 0.998840868473053, + 0.9977172613143921, + 0.9718329906463623, + 0.9894317388534546, + 0.9986679553985596, + 0.9968650937080383, + 0.9988590478897095, + 0.9985465407371521, + 0.998805046081543, + 0.9941376447677612, + 0.9988460540771484, + 0.9975758194923401, + 0.9988425970077515, + 0.9986787438392639, + 0.998900294303894 + ], + "sentiment_counts": { + "POSITIVE": 37, + "NEGATIVE": 6 + }, + "sentiment_distribution": { + "POSITIVE": 0.8604651162790697, + "NEGATIVE": 0.13953488372093023 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8604651162790697 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998810887336731, + 0.9994767308235168, + 0.9883294105529785, + 0.9994983673095703, + 0.9989124536514282, + 0.998913049697876, + 0.999500036239624, + 0.9994989633560181, + 0.9987743496894836, + 0.9995119571685791, + 0.9986691474914551, + 0.9987866282463074, + 0.9837093353271484, + 0.9985248446464539, + 0.9985672235488892, + 0.998695433139801, + 0.9986684322357178, + 0.9938772320747375, + 0.9995014667510986, + 0.9982434511184692, + 0.998930037021637, + 0.9988672733306885, + 0.9988982677459717, + 0.9995032548904419, + 0.9903244972229004, + 0.9914370179176331, + 0.998873770236969, + 0.9992358684539795, + 0.9862261414527893, + 0.9951045513153076, + 0.9988735318183899, + 0.9989056587219238, + 0.9956352114677429, + 0.9994124174118042, + 0.9988331198692322, + 0.9994266033172607, + 0.9989320635795593, + 0.9993591904640198, + 0.9987791180610657 + ], + "sentiment_counts": { + "NEGATIVE": 15, + "POSITIVE": 24 + }, + "sentiment_distribution": { + "NEGATIVE": 0.38461538461538464, + "POSITIVE": 0.6153846153846154 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6153846153846154 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9993384480476379, + 0.9835756421089172, + 0.9924382567405701, + 0.9989247918128967, + 0.9994959831237793, + 0.9980179071426392, + 0.9931269884109497, + 0.9988583326339722, + 0.997050404548645, + 0.9989763498306274, + 0.9988250136375427, + 0.9981396198272705, + 0.9993467926979065, + 0.998870313167572, + 0.9988921284675598, + 0.9994956254959106, + 0.998897910118103, + 0.9988631010055542, + 0.9994931221008301, + 0.9994744658470154, + 0.9988251328468323, + 0.998664140701294, + 0.998802900314331, + 0.9989356398582458, + 0.9968211650848389, + 0.9986617565155029, + 0.998824417591095, + 0.9988277554512024, + 0.9985809326171875, + 0.9988585710525513, + 0.9988939166069031, + 0.9983422756195068, + 0.9988263249397278, + 0.9987249970436096, + 0.9980016350746155, + 0.9988194108009338, + 0.9985291957855225, + 0.999494194984436, + 0.9983208775520325, + 0.9989181756973267, + 0.9980239868164062, + 0.9989070892333984, + 0.9994346499443054 + ], + "sentiment_counts": { + "NEGATIVE": 15, + "POSITIVE": 28 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3488372093023256, + "POSITIVE": 0.6511627906976745 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6511627906976745 + ] + }, + "final_label": "POSITIVE", + "final_count": 89, + "final_proportion": 0.712, + "final_counts": { + "POSITIVE": 89, + "NEGATIVE": 36 + }, + "final_distribution": { + "POSITIVE": 0.712, + "NEGATIVE": 0.288 + } + } }, { "season_code": "202303", @@ -65386,7 +131853,7 @@ "13:00", "14:15", "OML 202 - Osborn Memorial Laboratories 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/559958" + "https://map.yale.edu/?id=1910#!m/559958" ] ], "Thursday": [ @@ -65394,7 +131861,7 @@ "13:00", "14:15", "OML 202 - Osborn Memorial Laboratories 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/559958" + "https://map.yale.edu/?id=1910#!m/559958" ] ] }, @@ -65410,10 +131877,245 @@ "classnotes": "", "final_exam": "Saturday, December 16, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88516\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88516/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987187385559082, + 0.9986802935600281, + 0.9946881532669067, + 0.9982914328575134, + 0.9944856762886047, + 0.9988898634910583, + 0.9988640546798706, + 0.998457670211792, + 0.9988871216773987, + 0.9989270567893982, + 0.9980545043945312, + 0.9988265633583069, + 0.998748779296875, + 0.9986512064933777, + 0.9988828301429749, + 0.9983275532722473, + 0.9988068342208862, + 0.9986735582351685, + 0.9988184571266174, + 0.9988775849342346, + 0.9987779259681702, + 0.9988571405410767, + 0.9988307356834412, + 0.9986807703971863, + 0.9987013339996338, + 0.995612621307373 + ], + "sentiment_counts": { + "POSITIVE": 26, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988691210746765, + 0.9980301260948181, + 0.9989097118377686, + 0.9989237189292908, + 0.997226893901825, + 0.9989292025566101, + 0.998927891254425, + 0.9988503456115723, + 0.998703122138977, + 0.9982269406318665, + 0.9988698363304138, + 0.9982376098632812, + 0.9989215135574341, + 0.9989219903945923, + 0.9989295601844788, + 0.9994513392448425, + 0.998928964138031, + 0.998820960521698, + 0.9989343285560608, + 0.9987742304801941, + 0.9988901019096375, + 0.9985184073448181, + 0.9973636269569397, + 0.9889145493507385, + 0.99893718957901, + 0.9984405636787415, + 0.9988117218017578, + 0.9988896250724792, + 0.9989029169082642 + ], + "sentiment_counts": { + "POSITIVE": 27, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.9310344827586207, + "NEGATIVE": 0.06896551724137931 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9310344827586207 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998145580291748, + 0.9987664222717285, + 0.9994931221008301, + 0.9989137649536133, + 0.9889671206474304, + 0.9989157915115356, + 0.9987964630126953, + 0.998909592628479, + 0.9988767504692078, + 0.9979946613311768, + 0.9979002475738525, + 0.9988333582878113, + 0.9987624883651733, + 0.9986822009086609, + 0.9988871216773987, + 0.9987841248512268, + 0.998690664768219, + 0.9989245533943176, + 0.997262716293335, + 0.9917780160903931, + 0.9986587762832642, + 0.9989369511604309, + 0.9988058805465698, + 0.9819856882095337, + 0.9987706542015076, + 0.9988693594932556, + 0.9961573481559753, + 0.9995032548904419, + 0.993362307548523 + ], + "sentiment_counts": { + "POSITIVE": 23, + "NEGATIVE": 6 + }, + "sentiment_distribution": { + "POSITIVE": 0.7931034482758621, + "NEGATIVE": 0.20689655172413793 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7931034482758621 + ] + }, + "final_label": "POSITIVE", + "final_count": 76, + "final_proportion": 0.9047619047619048, + "final_counts": { + "POSITIVE": 76, + "NEGATIVE": 8 + }, + "final_distribution": { + "POSITIVE": 0.9047619047619048, + "NEGATIVE": 0.09523809523809523 + } + } }, { "season_code": "202303", @@ -65453,7 +132155,7 @@ "14:30", "15:45", "OML 202 - Osborn Memorial Laboratories 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/559958" + "https://map.yale.edu/?id=1910#!m/559958" ] ], "Thursday": [ @@ -65461,7 +132163,7 @@ "14:30", "15:45", "OML 202 - Osborn Memorial Laboratories 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/559958" + "https://map.yale.edu/?id=1910#!m/559958" ] ] }, @@ -65477,10 +132179,283 @@ "classnotes": "", "final_exam": "Monday, December 18, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88521\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88521/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9919100403785706, + 0.9988325238227844, + 0.9964786171913147, + 0.9947152733802795, + 0.9984924793243408, + 0.976839005947113, + 0.9988467693328857, + 0.9987207055091858, + 0.9981422424316406, + 0.9987279772758484, + 0.9988046884536743, + 0.994350016117096, + 0.9953840374946594, + 0.9988138675689697, + 0.9974631071090698, + 0.9988131523132324, + 0.9923452734947205, + 0.9965226650238037, + 0.9987471103668213, + 0.9986569881439209, + 0.9710251688957214, + 0.9974223375320435, + 0.9988958835601807, + 0.9987804293632507, + 0.9979081153869629, + 0.9984514713287354, + 0.9988380074501038, + 0.9986673593521118, + 0.9956004619598389, + 0.9988462924957275 + ], + "sentiment_counts": { + "POSITIVE": 29, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9666666666666667, + "NEGATIVE": 0.03333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9666666666666667 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9993919134140015, + 0.9993351101875305, + 0.9988922476768494, + 0.9894043207168579, + 0.9987276196479797, + 0.9994982481002808, + 0.9974958300590515, + 0.9956949949264526, + 0.9988040924072266, + 0.9938503503799438, + 0.9994334578514099, + 0.9980050921440125, + 0.998489499092102, + 0.993981659412384, + 0.9988732933998108, + 0.9919663667678833, + 0.998104453086853, + 0.9985716342926025, + 0.9887374639511108, + 0.9995051622390747, + 0.9988667964935303, + 0.997943103313446, + 0.9981968998908997, + 0.9988131523132324, + 0.9961226582527161, + 0.9995090961456299, + 0.9989169836044312, + 0.9988623857498169, + 0.9991952776908875, + 0.9988759160041809, + 0.9984427094459534, + 0.9114405512809753, + 0.9992982149124146, + 0.9988155364990234, + 0.9986497759819031, + 0.9988842606544495, + 0.9995089769363403, + 0.9987508058547974 + ], + "sentiment_counts": { + "NEGATIVE": 14, + "POSITIVE": 24 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3684210526315789, + "POSITIVE": 0.631578947368421 + }, + "sentiment_overall": [ + "POSITIVE", + 0.631578947368421 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9993125200271606, + 0.99913090467453, + 0.997117280960083, + 0.9930492639541626, + 0.9988143444061279, + 0.9995070695877075, + 0.9882400035858154, + 0.9920300245285034, + 0.9925994873046875, + 0.9958493709564209, + 0.9976881742477417, + 0.998933732509613, + 0.9985590577125549, + 0.9988967180252075, + 0.9989073276519775, + 0.9987862706184387, + 0.9993129968643188, + 0.9994926452636719, + 0.998902440071106, + 0.9802727103233337, + 0.9989045858383179, + 0.9994773268699646, + 0.9987978935241699, + 0.936108410358429, + 0.9994418025016785, + 0.9988647699356079, + 0.9988859295845032, + 0.9991738200187683, + 0.997117280960083, + 0.9978287816047668, + 0.9968593120574951, + 0.9989055395126343, + 0.9987260699272156, + 0.999510645866394, + 0.9982553124427795 + ], + "sentiment_counts": { + "NEGATIVE": 13, + "POSITIVE": 22 + }, + "sentiment_distribution": { + "NEGATIVE": 0.37142857142857144, + "POSITIVE": 0.6285714285714286 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6285714285714286 + ] + }, + "final_label": "POSITIVE", + "final_count": 75, + "final_proportion": 0.7281553398058253, + "final_counts": { + "POSITIVE": 75, + "NEGATIVE": 28 + }, + "final_distribution": { + "POSITIVE": 0.7281553398058253, + "NEGATIVE": 0.27184466019417475 + } + } }, { "season_code": "202303", @@ -65520,7 +132495,7 @@ "14:30", "15:45", "ML 211 - Mason Laboratory 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ], "Thursday": [ @@ -65528,7 +132503,7 @@ "14:30", "15:45", "ML 211 - Mason Laboratory 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ] }, @@ -65544,10 +132519,195 @@ "classnotes": "", "final_exam": "Monday, December 18, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88521\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88521/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9980202913284302, + 0.9982709884643555, + 0.9989245533943176, + 0.9988609552383423, + 0.9598024487495422, + 0.9931706190109253, + 0.9987776875495911, + 0.9858601093292236, + 0.9987264275550842, + 0.9987887740135193, + 0.9777711629867554, + 0.9987767338752747, + 0.9951291084289551, + 0.998191773891449, + 0.9985520243644714, + 0.9988378882408142, + 0.9987911581993103, + 0.9987897276878357 + ], + "sentiment_counts": { + "POSITIVE": 16, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9995086193084717, + 0.9900769591331482, + 0.9989175796508789, + 0.9985981583595276, + 0.9994997978210449, + 0.9995065927505493, + 0.9987748265266418, + 0.99888676404953, + 0.9949284791946411, + 0.9989014863967896, + 0.9994606375694275, + 0.9986649751663208, + 0.9995009899139404, + 0.9994705319404602, + 0.9995086193084717, + 0.9994907379150391, + 0.9994925260543823, + 0.9988619089126587, + 0.9994747042655945, + 0.9947689771652222 + ], + "sentiment_counts": { + "NEGATIVE": 12, + "POSITIVE": 8 + }, + "sentiment_distribution": { + "NEGATIVE": 0.6, + "POSITIVE": 0.4 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.6 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994856119155884, + 0.9982300400733948, + 0.9977570176124573, + 0.9849429130554199, + 0.9995068311691284, + 0.9994828701019287, + 0.9980394244194031, + 0.9983514547348022, + 0.9984443783760071, + 0.9989193677902222, + 0.9915136694908142, + 0.9698923826217651, + 0.9961826205253601, + 0.9994600415229797, + 0.9985527396202087, + 0.9984496831893921, + 0.999496340751648, + 0.9983711838722229, + 0.9963876008987427, + 0.9988017082214355, + 0.9954777359962463 + ], + "sentiment_counts": { + "NEGATIVE": 9, + "POSITIVE": 12 + }, + "sentiment_distribution": { + "NEGATIVE": 0.42857142857142855, + "POSITIVE": 0.5714285714285714 + }, + "sentiment_overall": [ + "POSITIVE", + 0.5714285714285714 + ] + }, + "final_label": "POSITIVE", + "final_count": 36, + "final_proportion": 0.6101694915254238, + "final_counts": { + "POSITIVE": 36, + "NEGATIVE": 23 + }, + "final_distribution": { + "POSITIVE": 0.6101694915254238, + "NEGATIVE": 0.3898305084745763 + } + } }, { "season_code": "202303", @@ -65587,10 +132747,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90394\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90394/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -65630,10 +132818,17 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90395\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90395/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -65673,7 +132868,7 @@ "13:00", "14:15", "DL 220 - Dunham Laboratory 220", - "https:\/\/map.yale.edu\/?id=1910#!m\/560005" + "https://map.yale.edu/?id=1910#!m/560005" ] ], "Wednesday": [ @@ -65681,7 +132876,7 @@ "13:00", "14:15", "DL 220 - Dunham Laboratory 220", - "https:\/\/map.yale.edu\/?id=1910#!m\/560005" + "https://map.yale.edu/?id=1910#!m/560005" ] ] }, @@ -65697,10 +132892,217 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88524\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88524/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9924529194831848, + 0.9987279772758484, + 0.9987279772758484, + 0.9987890124320984, + 0.9989033937454224, + 0.9985484480857849, + 0.9981978535652161, + 0.9953616261482239, + 0.9982884526252747, + 0.9957994818687439, + 0.9988964796066284, + 0.9988505840301514, + 0.9988560676574707, + 0.9987429976463318, + 0.9969436526298523, + 0.9987133741378784, + 0.9984778761863708, + 0.9988887906074524, + 0.9986696243286133, + 0.9989140033721924, + 0.9987586736679077 + ], + "sentiment_counts": { + "POSITIVE": 21, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9995099306106567, + 0.9973971843719482, + 0.9987622499465942, + 0.9988871216773987, + 0.9913256764411926, + 0.9992350339889526, + 0.9953546524047852, + 0.998285710811615, + 0.9988927245140076, + 0.9995074272155762, + 0.9968345761299133, + 0.9991773962974548, + 0.9988527297973633, + 0.9989284873008728, + 0.9944179058074951, + 0.9971157312393188, + 0.8418008685112, + 0.9941880702972412, + 0.999506950378418, + 0.9991389513015747, + 0.9989249110221863, + 0.997613787651062, + 0.9974688291549683 + ], + "sentiment_counts": { + "NEGATIVE": 8, + "POSITIVE": 15 + }, + "sentiment_distribution": { + "NEGATIVE": 0.34782608695652173, + "POSITIVE": 0.6521739130434783 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6521739130434783 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9991732239723206, + 0.9988592863082886, + 0.9989209175109863, + 0.9979552030563354, + 0.9980342984199524, + 0.998702883720398, + 0.9989016056060791, + 0.9961315393447876, + 0.9993544220924377, + 0.9992104768753052, + 0.9977651834487915, + 0.9986157417297363, + 0.9297592639923096, + 0.9989093542098999, + 0.9834940433502197, + 0.9788845777511597, + 0.9911550283432007, + 0.9988148212432861, + 0.9977685213088989, + 0.9994993209838867, + 0.9977942705154419, + 0.9982945322990417, + 0.9984955787658691, + 0.9989140033721924, + 0.9912704229354858, + 0.994962215423584 + ], + "sentiment_counts": { + "NEGATIVE": 10, + "POSITIVE": 16 + }, + "sentiment_distribution": { + "NEGATIVE": 0.38461538461538464, + "POSITIVE": 0.6153846153846154 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6153846153846154 + ] + }, + "final_label": "POSITIVE", + "final_count": 52, + "final_proportion": 0.7428571428571429, + "final_counts": { + "POSITIVE": 52, + "NEGATIVE": 18 + }, + "final_distribution": { + "POSITIVE": 0.7428571428571429, + "NEGATIVE": 0.2571428571428571 + } + } }, { "season_code": "202303", @@ -65737,7 +133139,7 @@ "16:00", "17:15", "DL 220 - Dunham Laboratory 220", - "https:\/\/map.yale.edu\/?id=1910#!m\/560005" + "https://map.yale.edu/?id=1910#!m/560005" ] ], "Wednesday": [ @@ -65745,7 +133147,7 @@ "16:00", "17:15", "DL 220 - Dunham Laboratory 220", - "https:\/\/map.yale.edu\/?id=1910#!m\/560005" + "https://map.yale.edu/?id=1910#!m/560005" ] ] }, @@ -65759,15 +133161,262 @@ "classnotes": "", "final_exam": "Sunday, December 17, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88527\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88527/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9610385894775391, + 0.9969666600227356, + 0.9988276362419128, + 0.9986710548400879, + 0.9989319443702698, + 0.9988262057304382, + 0.996674656867981, + 0.9971787929534912, + 0.9987751841545105, + 0.9994745850563049, + 0.9988635778427124, + 0.9988613128662109, + 0.950093150138855, + 0.9985535740852356, + 0.9968230724334717, + 0.9987533092498779, + 0.9838762879371643, + 0.9986544847488403, + 0.9987393021583557, + 0.9963825941085815, + 0.9973841309547424, + 0.9976859092712402, + 0.998920202255249, + 0.9813678860664368, + 0.9988157749176025, + 0.9988412261009216, + 0.999508261680603, + 0.9969396591186523, + 0.9989230036735535, + 0.9987861514091492, + 0.830959677696228 + ], + "sentiment_counts": { + "POSITIVE": 24, + "NEGATIVE": 7 + }, + "sentiment_distribution": { + "POSITIVE": 0.7741935483870968, + "NEGATIVE": 0.22580645161290322 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7741935483870968 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985567927360535, + 0.9994175434112549, + 0.9895406365394592, + 0.9988728165626526, + 0.999500036239624, + 0.996653139591217, + 0.9982340335845947, + 0.9941942095756531, + 0.9985747337341309, + 0.9991853833198547, + 0.9916185736656189, + 0.9944138526916504, + 0.9967346787452698, + 0.9883747100830078, + 0.9988490343093872, + 0.9987443685531616, + 0.9994940757751465, + 0.9972149133682251, + 0.9986585378646851, + 0.9925645589828491, + 0.9994966983795166, + 0.9989104270935059, + 0.9994940757751465, + 0.9988503456115723, + 0.9988771080970764, + 0.9987714886665344, + 0.9988487958908081, + 0.9989330172538757, + 0.9985848665237427, + 0.9945029020309448 + ], + "sentiment_counts": { + "POSITIVE": 18, + "NEGATIVE": 12 + }, + "sentiment_distribution": { + "POSITIVE": 0.6, + "NEGATIVE": 0.4 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988025426864624, + 0.99951171875, + 0.9987961053848267, + 0.9989069700241089, + 0.9967954754829407, + 0.9955778121948242, + 0.9976598024368286, + 0.9992547631263733, + 0.9984472393989563, + 0.997117280960083, + 0.9994964599609375, + 0.9987843632698059, + 0.9988849759101868, + 0.9890854954719543, + 0.9988711476325989, + 0.99892657995224, + 0.9986867308616638, + 0.991319477558136, + 0.9989138841629028, + 0.9974700212478638, + 0.9989035129547119, + 0.6165290474891663, + 0.9984599351882935, + 0.998891294002533, + 0.9989016056060791, + 0.9994962215423584, + 0.9989244341850281, + 0.9987015724182129, + 0.9832155108451843 + ], + "sentiment_counts": { + "POSITIVE": 21, + "NEGATIVE": 8 + }, + "sentiment_distribution": { + "POSITIVE": 0.7241379310344828, + "NEGATIVE": 0.27586206896551724 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7241379310344828 + ] + }, + "final_label": "POSITIVE", + "final_count": 63, + "final_proportion": 0.7, + "final_counts": { + "POSITIVE": 63, + "NEGATIVE": 27 + }, + "final_distribution": { + "POSITIVE": 0.7, + "NEGATIVE": 0.3 + } + } }, { "season_code": "202303", "requirements": "Prerequisite: CPSC 223 or equivalent or by permission of instructor.", - "description": "Ubiquitous computing is creating new canvases and opportunities for creative ideas. This class explores the use of microprocessors, distributed sensor networks, IoT, and intermedia systems for the purposes of creative expression.\u00a0The course is delivered in a mixed lecture and lab format that introduces the fundamental concepts and theory behind embedded systems as well as issues particular to their creative employment. The key objective of the course is for students to conceive of and implement creative uses of computation. To this end, skills to be obtained during the course are as follows: (1) appreciate the current efforts and motivation to push the limitations of computation for creative expression, both in new application and new foundational research; (2) weigh factors such as cost, power, processing, memory, I\/O capabilities, and networking capabilities when choosing a set of embedded devices and sensors; (3) contextualize unfamiliar hardware and languages through examples, documentation, and familiar design pattern; and (4) manage communication between multiple languages, devices, and protocols.\u00a0Additionally, at the end of the course students will have a portfolio of their work in the form of writing, code, video, audio, and physical artifacts.", + "description": "Ubiquitous computing is creating new canvases and opportunities for creative ideas. This class explores the use of microprocessors, distributed sensor networks, IoT, and intermedia systems for the purposes of creative expression.\u00a0The course is delivered in a mixed lecture and lab format that introduces the fundamental concepts and theory behind embedded systems as well as issues particular to their creative employment. The key objective of the course is for students to conceive of and implement creative uses of computation. To this end, skills to be obtained during the course are as follows: (1) appreciate the current efforts and motivation to push the limitations of computation for creative expression, both in new application and new foundational research; (2) weigh factors such as cost, power, processing, memory, I/O capabilities, and networking capabilities when choosing a set of embedded devices and sensors; (3) contextualize unfamiliar hardware and languages through examples, documentation, and familiar design pattern; and (4) manage communication between multiple languages, devices, and protocols.\u00a0Additionally, at the end of the course students will have a portfolio of their work in the form of writing, code, video, audio, and physical artifacts.", "short_title": "Creative Embedded Systems", "title": "Creative Embedded Systems", "school": "YC", @@ -65799,7 +133448,7 @@ "14:30", "16:20", "HLH17 05 - 17 Hillhouse Avenue 05", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Thursday": [ @@ -65807,7 +133456,7 @@ "14:30", "16:20", "HLH17 05 - 17 Hillhouse Avenue 05", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -65821,10 +133470,93 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88045\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88045/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989199638366699, + 0.9978237152099609, + 0.9987267851829529 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987057447433472, + 0.9932025074958801 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.998928964138031, + 0.998796820640564, + 0.9983677268028259 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 0.875, + "final_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + } + } }, { "season_code": "202303", @@ -65861,7 +133593,7 @@ "11:35", "12:50", "HLH17 115 - 17 Hillhouse Avenue 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Wednesday": [ @@ -65869,7 +133601,7 @@ "11:35", "12:50", "HLH17 115 - 17 Hillhouse Avenue 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -65885,10 +133617,125 @@ "classnotes": "", "final_exam": "Sunday, December 17, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90140\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/90140/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986732006072998, + 0.9966340661048889, + 0.9988125562667847, + 0.9970822930335999, + 0.9956140518188477, + 0.9987506866455078, + 0.998868465423584, + 0.9985648989677429 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9995073080062866, + 0.9994649291038513, + 0.9988933205604553, + 0.9971452355384827, + 0.9953417778015137, + 0.9914335012435913, + 0.9994708895683289, + 0.9994717240333557, + 0.9946249127388 + ], + "sentiment_counts": { + "NEGATIVE": 6, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.6666666666666666, + "POSITIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9995079040527344, + 0.9971007704734802, + 0.9931581616401672, + 0.9994971752166748, + 0.9971970319747925, + 0.99940025806427, + 0.9986842274665833 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 4 + }, + "sentiment_distribution": { + "NEGATIVE": 0.42857142857142855, + "POSITIVE": 0.5714285714285714 + }, + "sentiment_overall": [ + "POSITIVE", + 0.5714285714285714 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 0.625, + "final_counts": { + "POSITIVE": 15, + "NEGATIVE": 9 + }, + "final_distribution": { + "POSITIVE": 0.625, + "NEGATIVE": 0.375 + } + } }, { "season_code": "202303", @@ -65926,7 +133773,7 @@ "14:30", "15:45", "", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ], "Wednesday": [ @@ -65934,7 +133781,7 @@ "14:30", "15:45", "", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ] }, @@ -65950,10 +133797,365 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88955\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88955/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9950056672096252, + 0.9987213015556335, + 0.987885594367981, + 0.9972448348999023, + 0.9989010095596313, + 0.9988478422164917, + 0.9979903697967529, + 0.9986170530319214, + 0.9987978935241699, + 0.9981572031974792, + 0.9986188411712646, + 0.9983922839164734, + 0.9979497790336609, + 0.9988062381744385, + 0.9994910955429077, + 0.9961269497871399, + 0.99885094165802, + 0.996720016002655, + 0.9948543906211853, + 0.9839802980422974, + 0.9981649518013, + 0.9986490607261658, + 0.9987009763717651, + 0.9986648559570312, + 0.9962357878684998, + 0.9982619881629944, + 0.9987671375274658, + 0.9988031387329102, + 0.9975480437278748, + 0.9984102249145508, + 0.9967232346534729, + 0.9985305070877075, + 0.9870584607124329, + 0.9986283779144287, + 0.9952658414840698, + 0.9989122152328491, + 0.9987521171569824, + 0.9984373450279236, + 0.9989105463027954, + 0.9986997842788696, + 0.9946452379226685, + 0.9986391663551331, + 0.9965115189552307, + 0.9606721997261047, + 0.9988741278648376, + 0.9986796975135803, + 0.9985468983650208 + ], + "sentiment_counts": { + "NEGATIVE": 7, + "POSITIVE": 40 + }, + "sentiment_distribution": { + "NEGATIVE": 0.14893617021276595, + "POSITIVE": 0.851063829787234 + }, + "sentiment_overall": [ + "POSITIVE", + 0.851063829787234 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986296892166138, + 0.9922284483909607, + 0.9986522793769836, + 0.9988935589790344, + 0.9989228844642639, + 0.9987384676933289, + 0.992892861366272, + 0.9988791346549988, + 0.9981721639633179, + 0.9995057582855225, + 0.9995009899139404, + 0.9988886713981628, + 0.9990739822387695, + 0.9842146635055542, + 0.998836100101471, + 0.9986827969551086, + 0.9939263463020325, + 0.9988682270050049, + 0.9986762404441833, + 0.9989305138587952, + 0.98423832654953, + 0.9969916343688965, + 0.999432384967804, + 0.9988489151000977, + 0.9930724501609802, + 0.9913781881332397, + 0.9980915188789368, + 0.9995017051696777, + 0.9983935952186584, + 0.9977795481681824, + 0.9986087679862976, + 0.9988143444061279, + 0.9995061159133911, + 0.9972538352012634, + 0.9989041090011597, + 0.9958376884460449, + 0.9988200068473816, + 0.9989377856254578, + 0.9962252378463745, + 0.9994981288909912, + 0.9989064931869507, + 0.9988484382629395, + 0.9988783001899719, + 0.998849630355835, + 0.9989280104637146, + 0.9841583967208862, + 0.9988523721694946, + 0.9992202520370483, + 0.9980958104133606, + 0.9962540864944458, + 0.9985631108283997, + 0.9983794689178467 + ], + "sentiment_counts": { + "POSITIVE": 36, + "NEGATIVE": 16 + }, + "sentiment_distribution": { + "POSITIVE": 0.6923076923076923, + "NEGATIVE": 0.3076923076923077 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6923076923076923 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9971143007278442, + 0.998822033405304, + 0.9916883111000061, + 0.9890128374099731, + 0.9980857372283936, + 0.9984707236289978, + 0.9987896084785461, + 0.9985759258270264, + 0.9982770681381226, + 0.9919976592063904, + 0.9988874793052673, + 0.9974491000175476, + 0.9982703924179077, + 0.9954866766929626, + 0.9940745234489441, + 0.9971856474876404, + 0.9995120763778687, + 0.9980375170707703, + 0.9849517941474915, + 0.9989011287689209, + 0.9974441528320312, + 0.9955358505249023, + 0.9975392818450928, + 0.9988806843757629, + 0.9887963533401489, + 0.9942843317985535, + 0.9958794116973877, + 0.9989069700241089, + 0.996981680393219, + 0.8336849212646484, + 0.9981922507286072, + 0.9988653659820557, + 0.9874151349067688, + 0.9993547797203064, + 0.9988700747489929, + 0.9989194869995117, + 0.9989306330680847, + 0.9983794689178467, + 0.9989216327667236, + 0.9970815777778625, + 0.9984937906265259, + 0.9989219903945923, + 0.9985911250114441, + 0.9988914132118225, + 0.9984446167945862 + ], + "sentiment_counts": { + "NEGATIVE": 13, + "POSITIVE": 32 + }, + "sentiment_distribution": { + "NEGATIVE": 0.28888888888888886, + "POSITIVE": 0.7111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7111111111111111 + ] + }, + "final_label": "POSITIVE", + "final_count": 108, + "final_proportion": 0.75, + "final_counts": { + "NEGATIVE": 36, + "POSITIVE": 108 + }, + "final_distribution": { + "NEGATIVE": 0.25, + "POSITIVE": 0.75 + } + } }, { "season_code": "202303", @@ -65991,7 +134193,7 @@ "13:00", "14:15", "LUCE 101 - Luce Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ], "Thursday": [ @@ -65999,7 +134201,7 @@ "13:00", "14:15", "LUCE 101 - Luce Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ] }, @@ -66011,10 +134213,161 @@ "classnotes": "As well as CPSC 223, CPSC 202 is also a prerequisite for this course.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90381\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/90381/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9983129501342773, + 0.9981880784034729, + 0.9987486600875854, + 0.9973803162574768, + 0.9987442493438721, + 0.9981880784034729, + 0.9970513582229614, + 0.9827300310134888, + 0.9982990622520447, + 0.99774169921875, + 0.9985767602920532, + 0.9900229573249817, + 0.9985176920890808, + 0.9966140389442444, + 0.9912971258163452 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.7333333333333333, + "NEGATIVE": 0.26666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7333333333333333 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.99687659740448, + 0.9957608580589294, + 0.9961864352226257, + 0.9964085221290588, + 0.9921767115592957, + 0.99790358543396, + 0.9993769526481628, + 0.9983583092689514, + 0.9994648098945618, + 0.9980607628822327, + 0.9986996650695801, + 0.9995008707046509, + 0.9989210367202759 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.6923076923076923, + "NEGATIVE": 0.3076923076923077 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6923076923076923 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989087581634521, + 0.9986528158187866, + 0.9994997978210449, + 0.9978087544441223, + 0.998672604560852, + 0.9984862804412842, + 0.9988516569137573, + 0.9995077848434448, + 0.9989081621170044, + 0.9987632036209106, + 0.9937880635261536, + 0.9974592328071594, + 0.9980037808418274, + 0.9988064765930176 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.7142857142857143, + "NEGATIVE": 0.2857142857142857 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7142857142857143 + ] + }, + "final_label": "POSITIVE", + "final_count": 30, + "final_proportion": 0.7142857142857143, + "final_counts": { + "POSITIVE": 30, + "NEGATIVE": 12 + }, + "final_distribution": { + "POSITIVE": 0.7142857142857143, + "NEGATIVE": 0.2857142857142857 + } + } }, { "season_code": "202303", @@ -66052,7 +134405,7 @@ "14:30", "15:45", "HLH17 113 - 17 Hillhouse Avenue 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Thursday": [ @@ -66060,7 +134413,7 @@ "14:30", "15:45", "HLH17 113 - 17 Hillhouse Avenue 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -66072,15 +134425,120 @@ "classnotes": "", "final_exam": "Monday, December 18, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88055\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88055/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988825917243958, + 0.9988393187522888, + 0.9984134435653687, + 0.9988711476325989, + 0.9813324213027954, + 0.9987897276878357, + 0.9988980293273926 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987208247184753, + 0.9988168478012085, + 0.9988571405410767, + 0.9988160133361816, + 0.9989013671875, + 0.9901564121246338 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986693859100342, + 0.9982852339744568, + 0.9987860321998596, + 0.9987591505050659, + 0.9988049268722534, + 0.9989219903945923, + 0.997117280960083 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 20 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", "requirements": "Prerequisite: CPSC 223", - "description": "This course introduces students to a variety of advanced software engineering and programming techniques in the context of full-stack web programming. The focus of the course includes both client- and server-side programming (and database programming), client\/server communication, user interface programming, and parallel programming. This course is designed for students who have taken CPSC 223 (but do not need CPSC 323 or higher-level computer science systems courses) and wish to learn the complete programming framework of Web programming. For a systematic treatment of core software engineering techniques, using Web programming as a running example framework, consider taking CPSC 439, which targets students with more extensive programming experiences (after CPSC 323).", + "description": "This course introduces students to a variety of advanced software engineering and programming techniques in the context of full-stack web programming. The focus of the course includes both client- and server-side programming (and database programming), client/server communication, user interface programming, and parallel programming. This course is designed for students who have taken CPSC 223 (but do not need CPSC 323 or higher-level computer science systems courses) and wish to learn the complete programming framework of Web programming. For a systematic treatment of core software engineering techniques, using Web programming as a running example framework, consider taking CPSC 439, which targets students with more extensive programming experiences (after CPSC 323).", "short_title": "Full Stack Web Programming", "title": "Full Stack Web Programming", "school": "YC", @@ -66113,7 +134571,7 @@ "9:00", "10:15", "WTS A53 - Watson Center 60 Sachem Street A53", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -66121,7 +134579,7 @@ "9:00", "10:15", "WTS A53 - Watson Center 60 Sachem Street A53", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -66133,10 +134591,211 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88061\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88061/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986839890480042, + 0.9988417029380798, + 0.9958261847496033, + 0.9988553524017334, + 0.9987713694572449, + 0.9970709085464478, + 0.9841779470443726, + 0.9987540245056152, + 0.9875380992889404, + 0.9977498650550842, + 0.9981421232223511, + 0.9970081448554993, + 0.998534083366394, + 0.9641323685646057, + 0.9916312098503113, + 0.9986323714256287, + 0.9835339188575745, + 0.9985374212265015, + 0.9987970590591431, + 0.9941619038581848, + 0.9988393187522888, + 0.9988018274307251, + 0.9977924823760986, + 0.9989148378372192 + ], + "sentiment_counts": { + "POSITIVE": 22, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9166666666666666 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985438585281372, + 0.9867368340492249, + 0.9987665414810181, + 0.9955956339836121, + 0.9988861680030823, + 0.9991598129272461, + 0.9994889497756958, + 0.9950549602508545, + 0.9989308714866638, + 0.9988969564437866, + 0.999468982219696, + 0.998591959476471, + 0.9986936450004578, + 0.9959579110145569, + 0.999488353729248, + 0.9979023933410645, + 0.9988566637039185, + 0.9989124536514282, + 0.9987437129020691, + 0.9989338517189026 + ], + "sentiment_counts": { + "POSITIVE": 14, + "NEGATIVE": 6 + }, + "sentiment_distribution": { + "POSITIVE": 0.7, + "NEGATIVE": 0.3 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988314509391785, + 0.9995005130767822, + 0.9988478422164917, + 0.9986639022827148, + 0.998924195766449, + 0.9988825917243958, + 0.9892977476119995, + 0.9984093308448792, + 0.9991782307624817, + 0.9963738322257996, + 0.9989338517189026, + 0.9989016056060791, + 0.9987371563911438, + 0.999445378780365, + 0.9987609386444092, + 0.9981922507286072, + 0.9994919300079346, + 0.9950926303863525, + 0.9995074272155762, + 0.9829046726226807, + 0.9960823655128479, + 0.9987490177154541, + 0.997793436050415 + ], + "sentiment_counts": { + "POSITIVE": 16, + "NEGATIVE": 7 + }, + "sentiment_distribution": { + "POSITIVE": 0.6956521739130435, + "NEGATIVE": 0.30434782608695654 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6956521739130435 + ] + }, + "final_label": "POSITIVE", + "final_count": 52, + "final_proportion": 0.7761194029850746, + "final_counts": { + "POSITIVE": 52, + "NEGATIVE": 15 + }, + "final_distribution": { + "POSITIVE": 0.7761194029850746, + "NEGATIVE": 0.22388059701492538 + } + } }, { "season_code": "202303", @@ -66174,7 +134833,7 @@ "9:00", "10:15", "LOM 206 - Leet Oliver Memorial Hall 206", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ], "Thursday": [ @@ -66182,7 +134841,7 @@ "9:00", "10:15", "LOM 206 - Leet Oliver Memorial Hall 206", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ] }, @@ -66196,15 +134855,112 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90503\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90503/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "Prerequisite: CPSC 323, or CPSC 223 and significant experience with C\/C++ programming in another science, social science or engineering discipline, or permission of instructor.", - "description": "Practical introduction to parallel programming, emphasizing techniques and\u00a0algorithms suitable for scientific and engineering computations. Aspects\u00a0of processor and machine architecture. Techniques such as multithreading, message passing, and data parallel computing\u00a0using graphics processing units. Performance measurement, tuning,\u00a0and debugging of parallel programs. Parallel file systems and I\/O.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9974437952041626, + 0.9989262223243713, + 0.9974521994590759, + 0.9987373948097229, + 0.997627317905426 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988908171653748, + 0.9924730062484741, + 0.9987998008728027, + 0.9988676309585571 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987699389457703, + 0.9986943602561951, + 0.9988870024681091, + 0.9987899661064148, + 0.9988126754760742, + 0.998931348323822 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 0.9333333333333333, + "final_counts": { + "POSITIVE": 14, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9333333333333333, + "NEGATIVE": 0.06666666666666667 + } + } + }, + { + "season_code": "202303", + "requirements": "Prerequisite: CPSC 323, or CPSC 223 and significant experience with C/C++ programming in another science, social science or engineering discipline, or permission of instructor.", + "description": "Practical introduction to parallel programming, emphasizing techniques and\u00a0algorithms suitable for scientific and engineering computations. Aspects\u00a0of processor and machine architecture. Techniques such as multithreading, message passing, and data parallel computing\u00a0using graphics processing units. Performance measurement, tuning,\u00a0and debugging of parallel programs. Parallel file systems and I/O.", "short_title": "Parallel Programming Techniques", "title": "Parallel Programming Techniques", "school": "YC", @@ -66237,7 +134993,7 @@ "11:35", "12:50", "ML 104 - Mason Laboratory 104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ], "Thursday": [ @@ -66245,7 +135001,7 @@ "11:35", "12:50", "ML 104 - Mason Laboratory 104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ] }, @@ -66258,11 +135014,128 @@ "rp_attr": "This course meets during the Reading Period: the week between the last week of classes and finals week. Meets Reading Period", "classnotes": "", "final_exam": "Friday, December 15, 2023 at 2pm", - "course_home_url": "https:\/\/yale.instructure.com\/courses\/88068", - "syllabus_url": "", - "fysem": false, - "sysem": false, - "colsem": false + "course_home_url": "https://yale.instructure.com/courses/88068", + "syllabus_url": "", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986441731452942, + 0.9937130808830261, + 0.9988559484481812, + 0.9987562894821167, + 0.9988986253738403, + 0.9985052347183228, + 0.9984973669052124, + 0.9981302618980408 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9970754384994507, + 0.998927891254425, + 0.9987187385559082, + 0.9988545179367065, + 0.9988861680030823, + 0.998046875, + 0.9965280890464783, + 0.998848557472229 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 6 + }, + "sentiment_distribution": { + "NEGATIVE": 0.25, + "POSITIVE": 0.75 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994387030601501, + 0.9989175796508789, + 0.9985010623931885, + 0.9989185333251953, + 0.9988934397697449, + 0.9987677335739136, + 0.9972918629646301, + 0.9986605644226074, + 0.9974592328071594 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 6 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 0.8, + "final_counts": { + "POSITIVE": 20, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + } + } }, { "season_code": "202303", @@ -66300,7 +135173,7 @@ "13:00", "14:15", "WTS A48 - Watson Center 60 Sachem Street A48", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -66308,7 +135181,7 @@ "13:00", "14:15", "WTS A48 - Watson Center 60 Sachem Street A48", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -66320,10 +135193,105 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88073\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88073/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9902745485305786, + 0.9927800297737122, + 0.9974587559700012, + 0.99831223487854, + 0.9988828301429749 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.4, + "POSITIVE": 0.6 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998601496219635, + 0.9988631010055542, + 0.9988595247268677, + 0.9828025698661804 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9849947094917297, + 0.998084545135498, + 0.9988971948623657, + 0.9989269375801086, + 0.9988517761230469 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 4 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2, + "POSITIVE": 0.8 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 0.7857142857142857, + "final_counts": { + "NEGATIVE": 3, + "POSITIVE": 11 + }, + "final_distribution": { + "NEGATIVE": 0.21428571428571427, + "POSITIVE": 0.7857142857142857 + } + } }, { "season_code": "202303", @@ -66362,7 +135330,7 @@ "11:35", "12:50", "LC 211 - Linsly-Chittenden Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -66370,7 +135338,7 @@ "11:35", "12:50", "LC 211 - Linsly-Chittenden Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -66384,10 +135352,137 @@ "classnotes": "", "final_exam": "Sunday, December 17, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88081\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88081/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9977549910545349, + 0.9985780715942383, + 0.9987484216690063, + 0.9987838864326477, + 0.9995070695877075, + 0.996698260307312, + 0.9979314804077148, + 0.9988934397697449, + 0.9979191422462463, + 0.9988676309585571 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.99891197681427, + 0.9992156028747559, + 0.9983904361724854, + 0.998883068561554, + 0.998672604560852, + 0.9986215829849243, + 0.929544985294342, + 0.9981362819671631, + 0.9988934397697449, + 0.9989307522773743 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989087581634521, + 0.9995052814483643, + 0.9949973821640015, + 0.9987932443618774, + 0.9995144605636597, + 0.9974592328071594, + 0.9982625842094421, + 0.9909600019454956, + 0.9989174604415894, + 0.9989205598831177 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.7, + "NEGATIVE": 0.3 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7 + ] + }, + "final_label": "POSITIVE", + "final_count": 24, + "final_proportion": 0.8, + "final_counts": { + "POSITIVE": 24, + "NEGATIVE": 6 + }, + "final_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + } + } }, { "season_code": "202303", @@ -66425,7 +135520,7 @@ "13:00", "14:15", "WTS A30 - Watson Center 60 Sachem Street A30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -66433,7 +135528,7 @@ "13:00", "14:15", "WTS A30 - Watson Center 60 Sachem Street A30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -66447,10 +135542,121 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89093\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89093/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9970557689666748, + 0.9959064722061157, + 0.9981189370155334, + 0.9950937032699585, + 0.9987255930900574, + 0.9988172650337219, + 0.9952811598777771, + 0.9974871873855591 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988349080085754, + 0.9994317889213562, + 0.9945658445358276, + 0.9994649291038513, + 0.9972549080848694, + 0.998910665512085, + 0.9971938133239746 + ], + "sentiment_counts": { + "NEGATIVE": 4, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5714285714285714, + "POSITIVE": 0.42857142857142855 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.5714285714285714 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9980016350746155, + 0.9984959363937378, + 0.9979373216629028, + 0.9922854900360107, + 0.9994526505470276, + 0.998848557472229, + 0.9989007711410522 + ], + "sentiment_counts": { + "NEGATIVE": 4, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5714285714285714, + "POSITIVE": 0.42857142857142855 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.5714285714285714 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 0.6363636363636364, + "final_counts": { + "POSITIVE": 14, + "NEGATIVE": 8 + }, + "final_distribution": { + "POSITIVE": 0.6363636363636364, + "NEGATIVE": 0.36363636363636365 + } + } }, { "season_code": "202303", @@ -66488,7 +135694,7 @@ "9:00", "10:15", "GR109 ROSENFELD - 109 Grove Street ROSENFELD", - "https:\/\/map.yale.edu\/?id=1910#!m\/560109" + "https://map.yale.edu/?id=1910#!m/560109" ] ], "Thursday": [ @@ -66496,7 +135702,7 @@ "9:00", "10:15", "GR109 ROSENFELD - 109 Grove Street ROSENFELD", - "https:\/\/map.yale.edu\/?id=1910#!m\/560109" + "https://map.yale.edu/?id=1910#!m/560109" ] ] }, @@ -66510,15 +135716,162 @@ "classnotes": "Enrollment in this course is limited to 70 students.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88092\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88092/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9565058350563049, + 0.998736560344696, + 0.9932422041893005, + 0.9922522902488708, + 0.998918890953064, + 0.9936702251434326, + 0.9858997464179993, + 0.9805907607078552, + 0.6558809876441956, + 0.9834545850753784, + 0.9962859153747559, + 0.9983886480331421, + 0.9988996982574463, + 0.988751232624054, + 0.9985337257385254, + 0.9881278872489929 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.8125, + "NEGATIVE": 0.1875 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8125 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.998634397983551, + 0.9972367286682129, + 0.9995087385177612, + 0.9994982481002808, + 0.9926625490188599, + 0.9995051622390747, + 0.6347131729125977, + 0.9985974431037903, + 0.9992709755897522, + 0.999479353427887, + 0.9995083808898926 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 7 + }, + "sentiment_distribution": { + "POSITIVE": 0.36363636363636365, + "NEGATIVE": 0.6363636363636364 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.6363636363636364 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9971907734870911, + 0.9988498687744141, + 0.9995090961456299, + 0.9988172650337219, + 0.9986701011657715, + 0.9995137453079224, + 0.9974592328071594, + 0.9987180233001709, + 0.9986485838890076, + 0.9995005130767822, + 0.9986855387687683, + 0.9994839429855347, + 0.999504566192627 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 5 + }, + "sentiment_distribution": { + "POSITIVE": 0.6153846153846154, + "NEGATIVE": 0.38461538461538464 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6153846153846154 + ] + }, + "final_label": "POSITIVE", + "final_count": 25, + "final_proportion": 0.625, + "final_counts": { + "POSITIVE": 25, + "NEGATIVE": 15 + }, + "final_distribution": { + "POSITIVE": 0.625, + "NEGATIVE": 0.375 + } + } }, { "season_code": "202303", "requirements": "Prerequisite: CPSC 323.", - "description": "Today\u2019s internet scale applications and cloud services generate massive amounts of data. At the same time, the availability of inexpensive storage has made it possible for these services and applications to collect and store every piece of data they generate, in the hopes of improving their services by analyzing the collected data. This introduces interesting new opportunities and challenges designing systems for collecting, analyzing and serving the so called \"big data\".\u00a0This course looks at technology trends that have paved the way for big data applications, survey state of the art systems for storage and processing of big data, and future research\u00a0directions driven by open research problems. Our discussions span topics such as cluster architecture, big data analytics stacks, scheduling and resource management, batch and\u00a0stream analytics, graph processing, ML\/AI frameworks, serverless platforms and disaggregated architectures.", + "description": "Today\u2019s internet scale applications and cloud services generate massive amounts of data. At the same time, the availability of inexpensive storage has made it possible for these services and applications to collect and store every piece of data they generate, in the hopes of improving their services by analyzing the collected data. This introduces interesting new opportunities and challenges designing systems for collecting, analyzing and serving the so called \"big data\".\u00a0This course looks at technology trends that have paved the way for big data applications, survey state of the art systems for storage and processing of big data, and future research\u00a0directions driven by open research problems. Our discussions span topics such as cluster architecture, big data analytics stacks, scheduling and resource management, batch and\u00a0stream analytics, graph processing, ML/AI frameworks, serverless platforms and disaggregated architectures.", "short_title": "Big Data Systems: Trends & Ch...", "title": "Big Data Systems: Trends & Challenges", "school": "YC", @@ -66551,7 +135904,7 @@ "16:00", "17:15", "AKW 100 - Arthur K. Watson Hall 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560119" + "https://map.yale.edu/?id=1910#!m/560119" ] ], "Wednesday": [ @@ -66559,7 +135912,7 @@ "16:00", "17:15", "AKW 100 - Arthur K. Watson Hall 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560119" + "https://map.yale.edu/?id=1910#!m/560119" ] ] }, @@ -66571,10 +135924,111 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88098\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88098/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987433552742004, + 0.9987645149230957, + 0.9988573789596558, + 0.9986009001731873, + 0.9988906979560852, + 0.99874347448349 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988664388656616, + 0.9966738224029541, + 0.9988353848457336, + 0.9988271594047546, + 0.9988646507263184, + 0.9988957643508911 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984298348426819, + 0.9972814321517944, + 0.9989033937454224, + 0.9988318085670471, + 0.9988816380500793 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 4 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2, + "POSITIVE": 0.8 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 0.9411764705882353, + "final_counts": { + "POSITIVE": 16, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9411764705882353, + "NEGATIVE": 0.058823529411764705 + } + } }, { "season_code": "202303", @@ -66612,7 +136066,7 @@ "11:35", "12:50", "WTS A53 - Watson Center 60 Sachem Street A53", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -66620,7 +136074,7 @@ "11:35", "12:50", "WTS A53 - Watson Center 60 Sachem Street A53", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -66634,10 +136088,163 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88103\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88103/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988288283348083, + 0.9988104104995728, + 0.9988123178482056, + 0.9987577199935913, + 0.9978895783424377, + 0.9988429546356201, + 0.9987587928771973, + 0.9982705116271973, + 0.998868465423584, + 0.9988155364990234, + 0.9933852553367615, + 0.9984265565872192, + 0.978926956653595, + 0.9921481013298035, + 0.9974693059921265 + ], + "sentiment_counts": { + "POSITIVE": 15, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998507559299469, + 0.9988364577293396, + 0.9988464117050171, + 0.9982505440711975, + 0.9994891881942749, + 0.9984941482543945, + 0.9985504746437073, + 0.9988993406295776, + 0.9988406300544739, + 0.9989156723022461, + 0.9987127780914307, + 0.9907942414283752, + 0.9988858103752136 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 10 + }, + "sentiment_distribution": { + "NEGATIVE": 0.23076923076923078, + "POSITIVE": 0.7692307692307693 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7692307692307693 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998344898223877, + 0.9989272952079773, + 0.9988539218902588, + 0.9871330261230469, + 0.9988226294517517, + 0.9989007711410522, + 0.9986009001731873, + 0.9974592328071594, + 0.9988762736320496, + 0.9988338351249695, + 0.981654167175293, + 0.9974592328071594, + 0.9975538849830627, + 0.9964259266853333, + 0.9987510442733765 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8666666666666667, + "NEGATIVE": 0.13333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8666666666666667 + ] + }, + "final_label": "POSITIVE", + "final_count": 38, + "final_proportion": 0.8837209302325582, + "final_counts": { + "POSITIVE": 38, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.8837209302325582, + "NEGATIVE": 0.11627906976744186 + } + } }, { "season_code": "202303", @@ -66675,7 +136282,7 @@ "9:00", "10:15", "HLH17 113 - 17 Hillhouse Avenue 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Wednesday": [ @@ -66683,7 +136290,7 @@ "9:00", "10:15", "HLH17 113 - 17 Hillhouse Avenue 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -66697,10 +136304,113 @@ "classnotes": "", "final_exam": "Thursday, December 14, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88957\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88957/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989211559295654, + 0.9985724687576294, + 0.9988753199577332, + 0.9984742999076843, + 0.9988150596618652, + 0.9982039928436279 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989383816719055, + 0.9988693594932556, + 0.998927652835846, + 0.9989169836044312, + 0.9986825585365295, + 0.9987373948097229 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988877177238464, + 0.9988399147987366, + 0.9989185333251953, + 0.9989256262779236, + 0.9989122152328491, + 0.998893678188324, + 0.9988941550254822 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 19 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -66738,7 +136448,7 @@ "13:00", "14:15", "HLH17 113 - 17 Hillhouse Avenue 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Thursday": [ @@ -66746,7 +136456,7 @@ "13:00", "14:15", "HLH17 113 - 17 Hillhouse Avenue 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -66758,10 +136468,115 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90505\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90505/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9886825084686279, + 0.9982078075408936, + 0.9981864094734192, + 0.9992772936820984, + 0.9985266923904419, + 0.9987831711769104 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9985471367835999, + 0.9701759815216064, + 0.9957669973373413, + 0.9994369149208069, + 0.9989281296730042, + 0.9853928685188293, + 0.9994944334030151 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.5714285714285714, + "NEGATIVE": 0.42857142857142855 + }, + "sentiment_overall": [ + "POSITIVE", + 0.5714285714285714 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986972212791443, + 0.9985042810440063, + 0.9984171390533447, + 0.9901067614555359, + 0.9994481205940247, + 0.9987651109695435 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.3333333333333333, + "NEGATIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.6666666666666666 + ] + }, + "final_label": "neutral", + "final_count": 10, + "final_proportion": 0.5, + "final_counts": { + "POSITIVE": 10, + "NEGATIVE": 9 + }, + "final_distribution": { + "POSITIVE": 0.5263157894736842, + "NEGATIVE": 0.47368421052631576 + } + } }, { "season_code": "202303", @@ -66799,7 +136614,7 @@ "16:00", "17:15", "HLH17 115 - 17 Hillhouse Avenue 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Wednesday": [ @@ -66807,7 +136622,7 @@ "16:00", "17:15", "HLH17 115 - 17 Hillhouse Avenue 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -66821,10 +136636,119 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90517\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90517/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988417029380798, + 0.9843554496765137, + 0.9988755583763123, + 0.989150881767273, + 0.9988884329795837, + 0.9982947707176208 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984492063522339, + 0.9989169836044312, + 0.9989245533943176, + 0.9901943802833557, + 0.998818576335907, + 0.9989221096038818, + 0.9988728165626526 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987560510635376, + 0.9989346861839294, + 0.9989159107208252, + 0.9988002777099609, + 0.9989123344421387, + 0.9988081455230713, + 0.998928964138031, + 0.9989093542098999 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 0.9047619047619048, + "final_counts": { + "POSITIVE": 19, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9047619047619048, + "NEGATIVE": 0.09523809523809523 + } + } }, { "season_code": "202303", @@ -66862,7 +136786,7 @@ "9:00", "10:15", "HLH17 03 - 17 Hillhouse Avenue 03", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Wednesday": [ @@ -66870,7 +136794,7 @@ "9:00", "10:15", "HLH17 03 - 17 Hillhouse Avenue 03", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -66882,10 +136806,129 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88109\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88109/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9891919493675232, + 0.9969294667243958, + 0.9987208247184753, + 0.9983021020889282, + 0.9995021820068359, + 0.9986868500709534, + 0.9978420734405518, + 0.9987371563911438, + 0.9987381100654602 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9994896650314331, + 0.9974488615989685, + 0.9925354719161987, + 0.9989194869995117, + 0.9994373917579651, + 0.9985479712486267, + 0.9830818772315979, + 0.9988962411880493, + 0.9990648627281189 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 6 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.999514102935791, + 0.9978153705596924, + 0.9956468939781189, + 0.9988570213317871, + 0.9983184337615967, + 0.998895525932312, + 0.9968982934951782, + 0.9988484382629395 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 5 + }, + "sentiment_distribution": { + "NEGATIVE": 0.375, + "POSITIVE": 0.625 + }, + "sentiment_overall": [ + "POSITIVE", + 0.625 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 0.7307692307692307, + "final_counts": { + "POSITIVE": 19, + "NEGATIVE": 7 + }, + "final_distribution": { + "POSITIVE": 0.7307692307692307, + "NEGATIVE": 0.2692307692307692 + } + } }, { "season_code": "202303", @@ -66923,7 +136966,7 @@ "11:35", "12:50", "WTS A30 - Watson Center 60 Sachem Street A30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -66931,7 +136974,7 @@ "11:35", "12:50", "WTS A30 - Watson Center 60 Sachem Street A30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -66945,10 +136988,119 @@ "classnotes": "", "final_exam": "Sunday, December 17, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88116\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88116/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9963935017585754, + 0.9954107403755188, + 0.9985264539718628, + 0.9987058639526367, + 0.998921275138855, + 0.9988309741020203, + 0.9988670349121094 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981038570404053, + 0.9989176988601685, + 0.9988858103752136, + 0.998884379863739, + 0.9989327788352966, + 0.9987719655036926, + 0.9988874793052673 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9851148724555969, + 0.9988227486610413, + 0.9989284873008728, + 0.9988896250724792, + 0.9989250302314758, + 0.9989327788352966, + 0.9987980127334595 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 6 + }, + "sentiment_distribution": { + "NEGATIVE": 0.14285714285714285, + "POSITIVE": 0.8571428571428571 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 0.9523809523809523, + "final_counts": { + "POSITIVE": 20, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9523809523809523, + "NEGATIVE": 0.047619047619047616 + } + } }, { "season_code": "202303", @@ -66986,7 +137138,7 @@ "14:30", "15:45", "LOM 215 - Leet Oliver Memorial Hall 215", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ], "Thursday": [ @@ -66994,7 +137146,7 @@ "14:30", "15:45", "LOM 215 - Leet Oliver Memorial Hall 215", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ] }, @@ -67008,10 +137160,95 @@ "classnotes": "", "final_exam": "Monday, December 18, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88128\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88128/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.996116042137146, + 0.9989221096038818, + 0.998927891254425, + 0.9987618923187256 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9972711205482483, + 0.9988767504692078, + 0.9962753057479858 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9980807304382324, + 0.9988749623298645, + 0.9988299012184143 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 10 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -67067,17 +137304,162 @@ ], "areas": [], "flags": [ - "YC CSEC: Electv intrsctn CS\/EC" + "YC CSEC: Electv intrsctn CS/EC" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88133\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88133/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988324046134949, + 0.9988355040550232, + 0.9857977032661438, + 0.9963248372077942, + 0.998849630355835, + 0.8932063579559326, + 0.9988634586334229, + 0.9916286468505859, + 0.9985394477844238, + 0.9963003396987915, + 0.9959366321563721, + 0.9982055425643921, + 0.9947319030761719 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8461538461538461, + "NEGATIVE": 0.15384615384615385 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8461538461538461 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.99875807762146, + 0.9989234805107117, + 0.9987952709197998, + 0.9988889098167419, + 0.9988746047019958, + 0.9988798499107361, + 0.9989303946495056, + 0.9988372921943665, + 0.9988849759101868, + 0.9987475872039795, + 0.9988380074501038, + 0.9989011287689209, + 0.9989206790924072 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988904595375061, + 0.998810887336731, + 0.9954487681388855, + 0.9987718462944031, + 0.9988928437232971, + 0.9989332556724548, + 0.9955151677131653, + 0.9987506866455078, + 0.9986296892166138, + 0.9989093542098999, + 0.9989012479782104, + 0.9989007711410522, + 0.9989063739776611 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 37, + "final_proportion": 0.9487179487179487, + "final_counts": { + "POSITIVE": 37, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9487179487179487, + "NEGATIVE": 0.05128205128205128 + } + } }, { "season_code": "202303", @@ -67115,7 +137497,7 @@ "14:30", "15:45", "WTS A48 - Watson Center 60 Sachem Street A48", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -67123,7 +137505,7 @@ "14:30", "15:45", "WTS A48 - Watson Center 60 Sachem Street A48", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -67137,10 +137519,135 @@ "classnotes": "The enrollment cap for this course is 15-20 students.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88140\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88140/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989233613014221, + 0.9994978904724121, + 0.998636782169342, + 0.9978957176208496, + 0.9970661997795105, + 0.9988405108451843, + 0.9989179372787476, + 0.9988856911659241, + 0.9988443851470947, + 0.9988539218902588 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9846296906471252, + 0.9987533092498779, + 0.9957916736602783, + 0.9966896772384644, + 0.9984727501869202, + 0.9988600015640259, + 0.9986751675605774, + 0.9988541603088379, + 0.998427152633667, + 0.9989393353462219 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989253878593445, + 0.9994524121284485, + 0.9975703358650208, + 0.9980243444442749, + 0.9988765120506287, + 0.9987466335296631, + 0.9982553124427795, + 0.9984489679336548, + 0.9989175796508789 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.7777777777777778, + "NEGATIVE": 0.2222222222222222 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7777777777777778 + ] + }, + "final_label": "POSITIVE", + "final_count": 26, + "final_proportion": 0.896551724137931, + "final_counts": { + "POSITIVE": 26, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.896551724137931, + "NEGATIVE": 0.10344827586206896 + } + } }, { "season_code": "202303", @@ -67178,7 +137685,7 @@ "13:00", "14:15", "LOM 214 - Leet Oliver Memorial Hall 214", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ], "Thursday": [ @@ -67186,7 +137693,7 @@ "13:00", "14:15", "LOM 214 - Leet Oliver Memorial Hall 214", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ] }, @@ -67200,10 +137707,109 @@ "classnotes": "The enrollment cap for this course is 18 students.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88145\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88145/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985462427139282, + 0.9987738728523254, + 0.9988095760345459, + 0.9964200258255005, + 0.9980975985527039, + 0.9986030459403992 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989332556724548, + 0.998916506767273, + 0.9986016154289246, + 0.998770534992218, + 0.9989192485809326 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988940358161926, + 0.9985243678092957, + 0.9987813830375671, + 0.9980826377868652, + 0.9911006093025208, + 0.9989169836044312 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 17 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -67241,7 +137847,7 @@ "9:25", "11:15", "HLH17 115 - 17 Hillhouse Avenue 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -67253,10 +137859,105 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88151\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88151/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988753199577332, + 0.9969730377197266, + 0.9941633343696594, + 0.9981389045715332 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981167316436768, + 0.9989184141159058, + 0.9994053840637207, + 0.9987159967422485, + 0.9961613416671753 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988859295845032, + 0.9989186525344849, + 0.9995155334472656, + 0.9916175007820129, + 0.9985190033912659 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 0.8571428571428571, + "final_counts": { + "POSITIVE": 12, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + } + } }, { "season_code": "202303", @@ -67294,7 +137995,7 @@ "14:30", "15:45", "WTS A60 - Watson Center 60 Sachem Street A60", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -67302,7 +138003,7 @@ "14:30", "15:45", "WTS A60 - Watson Center 60 Sachem Street A60", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -67316,10 +138017,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88156\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88156/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -67357,7 +138086,7 @@ "10:30", "11:20", "ML 211 - Mason Laboratory 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ], "Wednesday": [ @@ -67365,7 +138094,7 @@ "10:30", "11:20", "ML 211 - Mason Laboratory 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ], "Friday": [ @@ -67373,7 +138102,7 @@ "10:30", "11:20", "ML 211 - Mason Laboratory 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ] }, @@ -67387,10 +138116,173 @@ "classnotes": "", "final_exam": "Monday, December 18, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88161\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88161/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9888026118278503, + 0.998839795589447, + 0.9518362283706665, + 0.9987136125564575, + 0.9987118244171143, + 0.9989069700241089, + 0.9987861514091492, + 0.9988628625869751, + 0.9988941550254822, + 0.9987439513206482, + 0.9983226656913757, + 0.9987233281135559, + 0.9988724589347839, + 0.9982538819313049, + 0.9986503720283508, + 0.9978836178779602 + ], + "sentiment_counts": { + "POSITIVE": 16, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.996032178401947, + 0.9943087697029114, + 0.9987732768058777, + 0.9988034963607788, + 0.9982774257659912, + 0.9980450868606567, + 0.9988870024681091, + 0.9985285997390747, + 0.998906135559082, + 0.9988590478897095, + 0.9994857311248779, + 0.9944779872894287, + 0.9988191723823547, + 0.9992984533309937, + 0.9988895058631897, + 0.9989913105964661, + 0.9988883137702942 + ], + "sentiment_counts": { + "POSITIVE": 14, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.8235294117647058, + "NEGATIVE": 0.17647058823529413 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8235294117647058 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989145994186401, + 0.9982798099517822, + 0.997870683670044, + 0.9988983869552612, + 0.9986252784729004, + 0.9988716244697571, + 0.998757004737854, + 0.9988759160041809, + 0.9995135068893433, + 0.9986383318901062, + 0.9909915924072266, + 0.9983916878700256, + 0.9994853734970093, + 0.9970273375511169, + 0.998869001865387 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 5 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 40, + "final_proportion": 0.8333333333333334, + "final_counts": { + "POSITIVE": 40, + "NEGATIVE": 8 + }, + "final_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + } + } }, { "season_code": "202303", @@ -67428,7 +138320,7 @@ "9:00", "10:15", "DL 220 - Dunham Laboratory 220", - "https:\/\/map.yale.edu\/?id=1910#!m\/560005" + "https://map.yale.edu/?id=1910#!m/560005" ] ], "Thursday": [ @@ -67436,7 +138328,7 @@ "9:00", "10:15", "DL 220 - Dunham Laboratory 220", - "https:\/\/map.yale.edu\/?id=1910#!m\/560005" + "https://map.yale.edu/?id=1910#!m/560005" ] ] }, @@ -67445,17 +138337,170 @@ ], "areas": [], "flags": [ - "YC CSEC: Electv intrsctn CS\/EC" + "YC CSEC: Electv intrsctn CS/EC" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88165\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88165/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9978006482124329, + 0.9987558126449585, + 0.9987701773643494, + 0.997399091720581, + 0.9987075328826904, + 0.9987804293632507, + 0.9962253570556641, + 0.9985923171043396, + 0.9984317421913147, + 0.9988818764686584, + 0.9938856959342957, + 0.9987685084342957, + 0.998296320438385, + 0.998890221118927, + 0.9986236095428467 + ], + "sentiment_counts": { + "POSITIVE": 15, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998815655708313, + 0.9988491535186768, + 0.997669517993927, + 0.9984259605407715, + 0.9987540245056152, + 0.998853325843811, + 0.9987395405769348, + 0.9994823932647705, + 0.9988351464271545, + 0.9989105463027954, + 0.9988320469856262, + 0.9989383816719055, + 0.9987911581993103 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8461538461538461, + "NEGATIVE": 0.15384615384615385 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8461538461538461 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982553124427795, + 0.9988589286804199, + 0.9988686442375183, + 0.9892336130142212, + 0.9989041090011597, + 0.9995026588439941, + 0.9983999133110046, + 0.997602641582489, + 0.9989138841629028, + 0.9982569813728333, + 0.998831570148468, + 0.9988561868667603, + 0.9988614320755005, + 0.9989277720451355, + 0.9988240599632263 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8666666666666667, + "NEGATIVE": 0.13333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8666666666666667 + ] + }, + "final_label": "POSITIVE", + "final_count": 39, + "final_proportion": 0.9069767441860465, + "final_counts": { + "POSITIVE": 39, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.9069767441860465, + "NEGATIVE": 0.09302325581395349 + } + } }, { "season_code": "202303", @@ -67497,7 +138542,7 @@ "14:30", "15:45", "WTS A51 - Watson Center 60 Sachem Street A51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -67505,7 +138550,7 @@ "14:30", "15:45", "WTS A51 - Watson Center 60 Sachem Street A51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -67521,10 +138566,133 @@ "classnotes": "", "final_exam": "Sunday, December 17, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88172\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88172/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9980304837226868, + 0.9986047148704529, + 0.9162562489509583, + 0.9986104965209961, + 0.9976143836975098, + 0.998491644859314, + 0.9988740086555481, + 0.9988579750061035, + 0.9949612617492676 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989176988601685, + 0.9995079040527344, + 0.9989275336265564, + 0.9894932508468628, + 0.9986346364021301, + 0.998930037021637, + 0.9988192915916443, + 0.9995110034942627 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989182949066162, + 0.999414324760437, + 0.9994677901268005, + 0.9995068311691284, + 0.9987934827804565, + 0.9987847208976746, + 0.9989137649536133, + 0.9989270567893982, + 0.998902440071106, + 0.9983886480331421, + 0.9988535642623901 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.6363636363636364, + "NEGATIVE": 0.36363636363636365 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6363636363636364 + ] + }, + "final_label": "POSITIVE", + "final_count": 22, + "final_proportion": 0.7857142857142857, + "final_counts": { + "POSITIVE": 22, + "NEGATIVE": 6 + }, + "final_distribution": { + "POSITIVE": 0.7857142857142857, + "NEGATIVE": 0.21428571428571427 + } + } }, { "season_code": "202303", @@ -67562,7 +138730,7 @@ "11:35", "12:50", "ML 211 - Mason Laboratory 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ], "Wednesday": [ @@ -67570,7 +138738,7 @@ "11:35", "12:50", "ML 211 - Mason Laboratory 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ] }, @@ -67584,10 +138752,209 @@ "classnotes": "", "final_exam": "Sunday, December 17, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88177\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88177/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988006353378296, + 0.9986510872840881, + 0.9222248792648315, + 0.9987744688987732, + 0.9981922507286072, + 0.9979870319366455, + 0.9989125728607178, + 0.9957135915756226, + 0.9982865452766418, + 0.9896043539047241, + 0.9977626800537109, + 0.8980374336242676, + 0.9988601207733154, + 0.9989213943481445, + 0.9986535310745239, + 0.9979908466339111, + 0.996588945388794, + 0.9989297986030579, + 0.9957885146141052, + 0.9901779294013977, + 0.9987956285476685 + ], + "sentiment_counts": { + "POSITIVE": 19, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.9047619047619048, + "NEGATIVE": 0.09523809523809523 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9047619047619048 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988762736320496, + 0.9989205598831177, + 0.9994945526123047, + 0.9989128112792969, + 0.9988872408866882, + 0.9951027631759644, + 0.9989362359046936, + 0.9987945556640625, + 0.998894989490509, + 0.9986488223075867, + 0.9989171028137207, + 0.990568220615387, + 0.9988799691200256, + 0.9988860487937927, + 0.9987278580665588, + 0.9980523586273193, + 0.9985501170158386, + 0.9989235997200012, + 0.998927652835846, + 0.9989209175109863, + 0.9989359974861145 + ], + "sentiment_counts": { + "POSITIVE": 19, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.9047619047619048, + "NEGATIVE": 0.09523809523809523 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9047619047619048 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998497486114502, + 0.9988940358161926, + 0.998909592628479, + 0.9995094537734985, + 0.9989387392997742, + 0.9988905787467957, + 0.9994975328445435, + 0.9989282488822937, + 0.9892423748970032, + 0.9988747239112854, + 0.9985957741737366, + 0.9989225268363953, + 0.9967172741889954, + 0.9986648559570312, + 0.9989251494407654, + 0.9989364743232727, + 0.9987188577651978, + 0.998871386051178, + 0.9966841340065002, + 0.9989344477653503, + 0.9988658428192139, + 0.9988638162612915, + 0.9988710284233093, + 0.998879611492157 + ], + "sentiment_counts": { + "POSITIVE": 20, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 58, + "final_proportion": 0.8787878787878788, + "final_counts": { + "POSITIVE": 58, + "NEGATIVE": 8 + }, + "final_distribution": { + "POSITIVE": 0.8787878787878788, + "NEGATIVE": 0.12121212121212122 + } + } }, { "season_code": "202303", @@ -67625,7 +138992,7 @@ "13:00", "14:15", "", - "https:\/\/map.yale.edu\/?id=1910#!m\/559958" + "https://map.yale.edu/?id=1910#!m/559958" ] ], "Wednesday": [ @@ -67633,7 +139000,7 @@ "13:00", "14:15", "", - "https:\/\/map.yale.edu\/?id=1910#!m\/559958" + "https://map.yale.edu/?id=1910#!m/559958" ] ] }, @@ -67645,10 +139012,179 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88958\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88958/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987244009971619, + 0.9988738894462585, + 0.9986950755119324, + 0.9969314336776733, + 0.9908787608146667, + 0.9945802092552185, + 0.9988906979560852, + 0.9986470341682434, + 0.9988321661949158, + 0.9985445737838745, + 0.9898091554641724, + 0.9969488978385925, + 0.9984946250915527, + 0.9849731922149658, + 0.9988033771514893, + 0.998753547668457, + 0.9987117052078247 + ], + "sentiment_counts": { + "POSITIVE": 15, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8823529411764706, + "NEGATIVE": 0.11764705882352941 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8823529411764706 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989293217658997, + 0.9986662864685059, + 0.9988954067230225, + 0.9989134073257446, + 0.9995043277740479, + 0.9970638155937195, + 0.998863697052002, + 0.9988654851913452, + 0.9989155530929565, + 0.9987778067588806, + 0.9987851977348328, + 0.9987196922302246, + 0.9988958835601807, + 0.9988250136375427, + 0.9988995790481567, + 0.998582124710083 + ], + "sentiment_counts": { + "POSITIVE": 15, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9375, + "NEGATIVE": 0.0625 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9375 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987850785255432, + 0.9988394379615784, + 0.9988069534301758, + 0.9988887906074524, + 0.9987743496894836, + 0.998848557472229, + 0.9989038705825806, + 0.9988901019096375, + 0.9988873600959778, + 0.9989008903503418, + 0.9989239573478699, + 0.9986293315887451, + 0.9988412261009216, + 0.9982553124427795, + 0.9972163438796997, + 0.9955366849899292, + 0.9989117383956909, + 0.9981922507286072 + ], + "sentiment_counts": { + "POSITIVE": 17, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9444444444444444, + "NEGATIVE": 0.05555555555555555 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9444444444444444 + ] + }, + "final_label": "POSITIVE", + "final_count": 47, + "final_proportion": 0.9215686274509803, + "final_counts": { + "POSITIVE": 47, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.9215686274509803, + "NEGATIVE": 0.0784313725490196 + } + } }, { "season_code": "202303", @@ -67686,7 +139222,7 @@ "16:00", "17:15", "ML 211 - Mason Laboratory 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ], "Wednesday": [ @@ -67694,7 +139230,7 @@ "16:00", "17:15", "ML 211 - Mason Laboratory 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ] }, @@ -67708,10 +139244,287 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88187\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88187/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9956016540527344, + 0.9955534338951111, + 0.9984890222549438, + 0.9987965822219849, + 0.9986567497253418, + 0.9988981485366821, + 0.998431384563446, + 0.9983335137367249, + 0.9966933727264404, + 0.9986529350280762, + 0.996533989906311, + 0.9960529804229736, + 0.9987794756889343, + 0.9841744303703308, + 0.9987391829490662, + 0.9967755675315857, + 0.9931696653366089, + 0.9987061023712158, + 0.8607230186462402, + 0.9897584915161133, + 0.997795820236206, + 0.9981570839881897, + 0.9987761378288269, + 0.998696506023407, + 0.9971650242805481, + 0.9987908005714417, + 0.9983803033828735, + 0.9942929744720459, + 0.9984400868415833, + 0.9973633885383606, + 0.9985993504524231, + 0.9987301230430603, + 0.9955810904502869, + 0.9987491369247437, + 0.9982885718345642 + ], + "sentiment_counts": { + "POSITIVE": 33, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.9428571428571428, + "NEGATIVE": 0.05714285714285714 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9428571428571428 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994133710861206, + 0.9994531273841858, + 0.9969255328178406, + 0.9982605576515198, + 0.9988818764686584, + 0.9989174604415894, + 0.9987541437149048, + 0.9880692362785339, + 0.9985038042068481, + 0.9986971020698547, + 0.9986907839775085, + 0.9988742470741272, + 0.9973370432853699, + 0.9983657002449036, + 0.9988595247268677, + 0.999439537525177, + 0.9986893534660339, + 0.9835627675056458, + 0.998773992061615, + 0.9985527396202087, + 0.9987265467643738, + 0.9989264607429504, + 0.9988880753517151, + 0.9986481070518494, + 0.998688280582428, + 0.9994719624519348, + 0.9987939596176147, + 0.9989213943481445, + 0.9994775652885437, + 0.997134804725647, + 0.9989156723022461, + 0.9987610578536987, + 0.9989259839057922, + 0.9972104430198669 + ], + "sentiment_counts": { + "NEGATIVE": 8, + "POSITIVE": 26 + }, + "sentiment_distribution": { + "NEGATIVE": 0.23529411764705882, + "POSITIVE": 0.7647058823529411 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7647058823529411 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994906187057495, + 0.9983776807785034, + 0.998745322227478, + 0.9933195114135742, + 0.9981069564819336, + 0.9988157749176025, + 0.9981096982955933, + 0.9942588806152344, + 0.9821963310241699, + 0.9978097081184387, + 0.9988908171653748, + 0.9988699555397034, + 0.9991828799247742, + 0.9981873631477356, + 0.998134195804596, + 0.9985702037811279, + 0.998212456703186, + 0.9985405206680298, + 0.9969909191131592, + 0.9985474944114685, + 0.997117280960083, + 0.9987704157829285, + 0.9982147216796875, + 0.9981374740600586, + 0.998840868473053, + 0.9989215135574341, + 0.9987092018127441, + 0.9988038539886475, + 0.9994993209838867, + 0.99888676404953, + 0.997260570526123, + 0.9982970356941223, + 0.99872225522995, + 0.9988256096839905, + 0.9987736344337463, + 0.9989091157913208 + ], + "sentiment_counts": { + "NEGATIVE": 9, + "POSITIVE": 27 + }, + "sentiment_distribution": { + "NEGATIVE": 0.25, + "POSITIVE": 0.75 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 86, + "final_proportion": 0.819047619047619, + "final_counts": { + "POSITIVE": 86, + "NEGATIVE": 19 + }, + "final_distribution": { + "POSITIVE": 0.819047619047619, + "NEGATIVE": 0.18095238095238095 + } + } }, { "season_code": "202303", @@ -67749,7 +139562,7 @@ "9:00", "10:15", "WTS A30 - Watson Center 60 Sachem Street A30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -67757,7 +139570,7 @@ "9:00", "10:15", "WTS A30 - Watson Center 60 Sachem Street A30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -67771,10 +139584,107 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88192\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88192/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987952709197998, + 0.9985272884368896, + 0.9988598823547363, + 0.9957899451255798, + 0.9988356232643127 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989092350006104, + 0.9755826592445374, + 0.9988962411880493, + 0.998916506767273, + 0.9989230036735535 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987333416938782, + 0.9981922507286072, + 0.9989343285560608, + 0.9987199306488037, + 0.998895525932312 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 0.9333333333333333, + "final_counts": { + "POSITIVE": 14, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9333333333333333, + "NEGATIVE": 0.06666666666666667 + } + } }, { "season_code": "202303", @@ -67832,10 +139742,185 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90518\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/90518/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982568621635437, + 0.9988756775856018, + 0.9987196922302246, + 0.9984669089317322, + 0.9988195300102234, + 0.9566797614097595, + 0.9983799457550049, + 0.9988008737564087, + 0.9989036321640015, + 0.998893678188324, + 0.9988264441490173, + 0.9972211122512817, + 0.9870352149009705, + 0.9958866238594055, + 0.9986496567726135, + 0.998857855796814, + 0.9913604855537415 + ], + "sentiment_counts": { + "POSITIVE": 16, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9411764705882353, + "NEGATIVE": 0.058823529411764705 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9411764705882353 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9925098419189453, + 0.9988904595375061, + 0.9988144636154175, + 0.9987426400184631, + 0.9994922876358032, + 0.983822762966156, + 0.9986850619316101, + 0.9919477105140686, + 0.9994812607765198, + 0.9988818764686584, + 0.9995064735412598, + 0.9971967935562134, + 0.9977450966835022, + 0.9963958859443665, + 0.9987874627113342, + 0.9945496916770935, + 0.9986103773117065 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.7647058823529411, + "NEGATIVE": 0.23529411764705882 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7647058823529411 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983428716659546, + 0.9986721277236938, + 0.9989225268363953, + 0.9988548755645752, + 0.9970477223396301, + 0.9987881779670715, + 0.9994984865188599, + 0.9974592328071594, + 0.9979725480079651, + 0.9951942563056946, + 0.9989296793937683, + 0.9995131492614746, + 0.997117280960083, + 0.9956783652305603, + 0.9988804459571838, + 0.9988746047019958, + 0.9988732933998108, + 0.9982553124427795, + 0.9989259839057922, + 0.9961621761322021 + ], + "sentiment_counts": { + "POSITIVE": 18, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "final_label": "POSITIVE", + "final_count": 47, + "final_proportion": 0.8703703703703703, + "final_counts": { + "POSITIVE": 47, + "NEGATIVE": 7 + }, + "final_distribution": { + "POSITIVE": 0.8703703703703703, + "NEGATIVE": 0.12962962962962962 + } + } }, { "season_code": "202303", @@ -67872,7 +139957,7 @@ "13:30", "15:20", "WTS A53 - Watson Center 60 Sachem Street A53", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -67884,10 +139969,213 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88198\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88198/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986338019371033, + 0.9987049102783203, + 0.9978544116020203, + 0.9978123903274536, + 0.9987741112709045, + 0.9988017082214355, + 0.9980619549751282, + 0.9983086585998535, + 0.9988283514976501, + 0.9984303116798401, + 0.9967623949050903, + 0.9755088090896606, + 0.9985363483428955, + 0.9969655871391296, + 0.996890127658844, + 0.9981538653373718, + 0.9988841414451599, + 0.9986842274665833, + 0.9984875917434692, + 0.9989113807678223, + 0.9982422590255737, + 0.9988024234771729 + ], + "sentiment_counts": { + "POSITIVE": 22, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9956525564193726, + 0.9982234835624695, + 0.9942487478256226, + 0.9897472858428955, + 0.9987791180610657, + 0.9994480013847351, + 0.998950183391571, + 0.998653769493103, + 0.998751163482666, + 0.9957112073898315, + 0.9982181191444397, + 0.9989362359046936, + 0.9966607093811035, + 0.9988137483596802, + 0.9988558292388916, + 0.9772343635559082, + 0.9816598296165466, + 0.9986525177955627, + 0.998539924621582, + 0.9994856119155884, + 0.9989317059516907, + 0.9978522062301636, + 0.9985415935516357, + 0.9989073276519775, + 0.9994624257087708, + 0.9995032548904419 + ], + "sentiment_counts": { + "POSITIVE": 19, + "NEGATIVE": 7 + }, + "sentiment_distribution": { + "POSITIVE": 0.7307692307692307, + "NEGATIVE": 0.2692307692307692 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7307692307692307 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9984230995178223, + 0.9967634677886963, + 0.9995054006576538, + 0.9988812804222107, + 0.9978918433189392, + 0.9942209720611572, + 0.998786985874176, + 0.9942253232002258, + 0.9988166093826294, + 0.9817121028900146, + 0.9984627962112427, + 0.9969989061355591, + 0.9988985061645508, + 0.9968825578689575, + 0.99104905128479, + 0.9945178627967834, + 0.9987912774085999, + 0.9986942410469055, + 0.9987484216690063, + 0.9925111532211304 + ], + "sentiment_counts": { + "POSITIVE": 16, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 57, + "final_proportion": 0.8382352941176471, + "final_counts": { + "POSITIVE": 57, + "NEGATIVE": 11 + }, + "final_distribution": { + "POSITIVE": 0.8382352941176471, + "NEGATIVE": 0.16176470588235295 + } + } }, { "season_code": "202303", @@ -67925,7 +140213,7 @@ "14:30", "15:45", "HLH17 113 - 17 Hillhouse Avenue 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Thursday": [ @@ -67933,7 +140221,7 @@ "14:30", "15:45", "HLH17 113 - 17 Hillhouse Avenue 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -67945,15 +140233,120 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88055\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88055/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "", - "description": "This course introduces students to a variety of advanced software engineering and programming techniques in the context of full-stack web programming. The focus of the course includes both client- and server-side programming (and database programming), client\/server communication, user interface programming, and parallel programming.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988825917243958, + 0.9988393187522888, + 0.9984134435653687, + 0.9988711476325989, + 0.9813324213027954, + 0.9987897276878357, + 0.9988980293273926 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987208247184753, + 0.9988168478012085, + 0.9988571405410767, + 0.9988160133361816, + 0.9989013671875, + 0.9901564121246338 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986693859100342, + 0.9982852339744568, + 0.9987860321998596, + 0.9987591505050659, + 0.9988049268722534, + 0.9989219903945923, + 0.997117280960083 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 20 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } + }, + { + "season_code": "202303", + "requirements": "", + "description": "This course introduces students to a variety of advanced software engineering and programming techniques in the context of full-stack web programming. The focus of the course includes both client- and server-side programming (and database programming), client/server communication, user interface programming, and parallel programming.", "short_title": "Full Stack Web Programming", "title": "Full Stack Web Programming", "school": "GS", @@ -67986,7 +140379,7 @@ "9:00", "10:15", "WTS A53 - Watson Center 60 Sachem Street A53", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -67994,7 +140387,7 @@ "9:00", "10:15", "WTS A53 - Watson Center 60 Sachem Street A53", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -68006,10 +140399,211 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88061\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88061/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986839890480042, + 0.9988417029380798, + 0.9958261847496033, + 0.9988553524017334, + 0.9987713694572449, + 0.9970709085464478, + 0.9841779470443726, + 0.9987540245056152, + 0.9875380992889404, + 0.9977498650550842, + 0.9981421232223511, + 0.9970081448554993, + 0.998534083366394, + 0.9641323685646057, + 0.9916312098503113, + 0.9986323714256287, + 0.9835339188575745, + 0.9985374212265015, + 0.9987970590591431, + 0.9941619038581848, + 0.9988393187522888, + 0.9988018274307251, + 0.9977924823760986, + 0.9989148378372192 + ], + "sentiment_counts": { + "POSITIVE": 22, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9166666666666666 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985438585281372, + 0.9867368340492249, + 0.9987665414810181, + 0.9955956339836121, + 0.9988861680030823, + 0.9991598129272461, + 0.9994889497756958, + 0.9950549602508545, + 0.9989308714866638, + 0.9988969564437866, + 0.999468982219696, + 0.998591959476471, + 0.9986936450004578, + 0.9959579110145569, + 0.999488353729248, + 0.9979023933410645, + 0.9988566637039185, + 0.9989124536514282, + 0.9987437129020691, + 0.9989338517189026 + ], + "sentiment_counts": { + "POSITIVE": 14, + "NEGATIVE": 6 + }, + "sentiment_distribution": { + "POSITIVE": 0.7, + "NEGATIVE": 0.3 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988314509391785, + 0.9995005130767822, + 0.9988478422164917, + 0.9986639022827148, + 0.998924195766449, + 0.9988825917243958, + 0.9892977476119995, + 0.9984093308448792, + 0.9991782307624817, + 0.9963738322257996, + 0.9989338517189026, + 0.9989016056060791, + 0.9987371563911438, + 0.999445378780365, + 0.9987609386444092, + 0.9981922507286072, + 0.9994919300079346, + 0.9950926303863525, + 0.9995074272155762, + 0.9829046726226807, + 0.9960823655128479, + 0.9987490177154541, + 0.997793436050415 + ], + "sentiment_counts": { + "POSITIVE": 16, + "NEGATIVE": 7 + }, + "sentiment_distribution": { + "POSITIVE": 0.6956521739130435, + "NEGATIVE": 0.30434782608695654 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6956521739130435 + ] + }, + "final_label": "POSITIVE", + "final_count": 52, + "final_proportion": 0.7761194029850746, + "final_counts": { + "POSITIVE": 52, + "NEGATIVE": 15 + }, + "final_distribution": { + "POSITIVE": 0.7761194029850746, + "NEGATIVE": 0.22388059701492538 + } + } }, { "season_code": "202303", @@ -68047,7 +140641,7 @@ "9:00", "10:15", "LOM 206 - Leet Oliver Memorial Hall 206", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ], "Thursday": [ @@ -68055,7 +140649,7 @@ "9:00", "10:15", "LOM 206 - Leet Oliver Memorial Hall 206", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ] }, @@ -68067,15 +140661,112 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90503\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90503/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "", - "description": "Practical introduction to parallel programming, emphasizing techniques and algorithms suitable for scientific and engineering computations. Aspects of processor and machine architecture. Techniques such as multithreading, message passing, and data parallel computing using graphics processing units. Performance measurement, tuning, and debugging of parallel programs. Parallel file systems and I\/O.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9974437952041626, + 0.9989262223243713, + 0.9974521994590759, + 0.9987373948097229, + 0.997627317905426 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988908171653748, + 0.9924730062484741, + 0.9987998008728027, + 0.9988676309585571 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987699389457703, + 0.9986943602561951, + 0.9988870024681091, + 0.9987899661064148, + 0.9988126754760742, + 0.998931348323822 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 0.9333333333333333, + "final_counts": { + "POSITIVE": 14, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9333333333333333, + "NEGATIVE": 0.06666666666666667 + } + } + }, + { + "season_code": "202303", + "requirements": "", + "description": "Practical introduction to parallel programming, emphasizing techniques and algorithms suitable for scientific and engineering computations. Aspects of processor and machine architecture. Techniques such as multithreading, message passing, and data parallel computing using graphics processing units. Performance measurement, tuning, and debugging of parallel programs. Parallel file systems and I/O.", "short_title": "Parallel Programming Techniques", "title": "Parallel Programming Techniques", "school": "GS", @@ -68108,7 +140799,7 @@ "11:35", "12:50", "ML 104 - Mason Laboratory 104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ], "Thursday": [ @@ -68116,7 +140807,7 @@ "11:35", "12:50", "ML 104 - Mason Laboratory 104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ] }, @@ -68127,11 +140818,128 @@ "rp_attr": "", "classnotes": "", "final_exam": "", - "course_home_url": "https:\/\/yale.instructure.com\/courses\/88068", + "course_home_url": "https://yale.instructure.com/courses/88068", "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986441731452942, + 0.9937130808830261, + 0.9988559484481812, + 0.9987562894821167, + 0.9988986253738403, + 0.9985052347183228, + 0.9984973669052124, + 0.9981302618980408 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9970754384994507, + 0.998927891254425, + 0.9987187385559082, + 0.9988545179367065, + 0.9988861680030823, + 0.998046875, + 0.9965280890464783, + 0.998848557472229 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 6 + }, + "sentiment_distribution": { + "NEGATIVE": 0.25, + "POSITIVE": 0.75 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994387030601501, + 0.9989175796508789, + 0.9985010623931885, + 0.9989185333251953, + 0.9988934397697449, + 0.9987677335739136, + 0.9972918629646301, + 0.9986605644226074, + 0.9974592328071594 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 6 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 0.8, + "final_counts": { + "POSITIVE": 20, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + } + } }, { "season_code": "202303", @@ -68169,7 +140977,7 @@ "13:00", "14:15", "WTS A48 - Watson Center 60 Sachem Street A48", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -68177,7 +140985,7 @@ "13:00", "14:15", "WTS A48 - Watson Center 60 Sachem Street A48", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -68189,10 +140997,105 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88073\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88073/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9902745485305786, + 0.9927800297737122, + 0.9974587559700012, + 0.99831223487854, + 0.9988828301429749 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.4, + "POSITIVE": 0.6 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998601496219635, + 0.9988631010055542, + 0.9988595247268677, + 0.9828025698661804 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9849947094917297, + 0.998084545135498, + 0.9988971948623657, + 0.9989269375801086, + 0.9988517761230469 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 4 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2, + "POSITIVE": 0.8 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 0.7857142857142857, + "final_counts": { + "NEGATIVE": 3, + "POSITIVE": 11 + }, + "final_distribution": { + "NEGATIVE": 0.21428571428571427, + "POSITIVE": 0.7857142857142857 + } + } }, { "season_code": "202303", @@ -68231,7 +141134,7 @@ "11:35", "12:50", "LC 211 - Linsly-Chittenden Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -68239,7 +141142,7 @@ "11:35", "12:50", "LC 211 - Linsly-Chittenden Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -68251,10 +141154,137 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88081\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88081/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9977549910545349, + 0.9985780715942383, + 0.9987484216690063, + 0.9987838864326477, + 0.9995070695877075, + 0.996698260307312, + 0.9979314804077148, + 0.9988934397697449, + 0.9979191422462463, + 0.9988676309585571 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.99891197681427, + 0.9992156028747559, + 0.9983904361724854, + 0.998883068561554, + 0.998672604560852, + 0.9986215829849243, + 0.929544985294342, + 0.9981362819671631, + 0.9988934397697449, + 0.9989307522773743 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989087581634521, + 0.9995052814483643, + 0.9949973821640015, + 0.9987932443618774, + 0.9995144605636597, + 0.9974592328071594, + 0.9982625842094421, + 0.9909600019454956, + 0.9989174604415894, + 0.9989205598831177 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.7, + "NEGATIVE": 0.3 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7 + ] + }, + "final_label": "POSITIVE", + "final_count": 24, + "final_proportion": 0.8, + "final_counts": { + "POSITIVE": 24, + "NEGATIVE": 6 + }, + "final_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + } + } }, { "season_code": "202303", @@ -68292,7 +141322,7 @@ "13:00", "14:15", "WTS A30 - Watson Center 60 Sachem Street A30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -68300,7 +141330,7 @@ "13:00", "14:15", "WTS A30 - Watson Center 60 Sachem Street A30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -68312,10 +141342,121 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89093\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89093/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9970557689666748, + 0.9959064722061157, + 0.9981189370155334, + 0.9950937032699585, + 0.9987255930900574, + 0.9988172650337219, + 0.9952811598777771, + 0.9974871873855591 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988349080085754, + 0.9994317889213562, + 0.9945658445358276, + 0.9994649291038513, + 0.9972549080848694, + 0.998910665512085, + 0.9971938133239746 + ], + "sentiment_counts": { + "NEGATIVE": 4, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5714285714285714, + "POSITIVE": 0.42857142857142855 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.5714285714285714 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9980016350746155, + 0.9984959363937378, + 0.9979373216629028, + 0.9922854900360107, + 0.9994526505470276, + 0.998848557472229, + 0.9989007711410522 + ], + "sentiment_counts": { + "NEGATIVE": 4, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5714285714285714, + "POSITIVE": 0.42857142857142855 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.5714285714285714 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 0.6363636363636364, + "final_counts": { + "POSITIVE": 14, + "NEGATIVE": 8 + }, + "final_distribution": { + "POSITIVE": 0.6363636363636364, + "NEGATIVE": 0.36363636363636365 + } + } }, { "season_code": "202303", @@ -68353,7 +141494,7 @@ "9:00", "10:15", "GR109 ROSENFELD - 109 Grove Street ROSENFELD", - "https:\/\/map.yale.edu\/?id=1910#!m\/560109" + "https://map.yale.edu/?id=1910#!m/560109" ] ], "Thursday": [ @@ -68361,7 +141502,7 @@ "9:00", "10:15", "GR109 ROSENFELD - 109 Grove Street ROSENFELD", - "https:\/\/map.yale.edu\/?id=1910#!m\/560109" + "https://map.yale.edu/?id=1910#!m/560109" ] ] }, @@ -68373,15 +141514,162 @@ "classnotes": "Enrollment in this course is limited to 70 students.", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88092\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "", - "description": "Today\u2019s Internet-scale applications and cloud services generate massive amounts of data. At the same time, the availability of inexpensive storage has made it possible for these services and applications to collect and store every piece of data they generate, in the hopes of improving their services by analyzing the collected data. This introduces interesting new opportunities and challenges designing systems for collecting, analyzing, and serving the so-called big data.\u00a0This course looks at technology trends that have paved the way for big data applications, surveys state-of-the-art systems for storage and processing of big data, and considers future research\u00a0directions driven by open research problems. Our discussions span topics such as cluster architecture, big data analytics stacks, scheduling and resource management, batch and\u00a0stream analytics, graph processing, ML\/AI frameworks, and serverless platforms and disaggregated architectures.", + "syllabus_url": "https://yale.instructure.com/courses/88092/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9565058350563049, + 0.998736560344696, + 0.9932422041893005, + 0.9922522902488708, + 0.998918890953064, + 0.9936702251434326, + 0.9858997464179993, + 0.9805907607078552, + 0.6558809876441956, + 0.9834545850753784, + 0.9962859153747559, + 0.9983886480331421, + 0.9988996982574463, + 0.988751232624054, + 0.9985337257385254, + 0.9881278872489929 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.8125, + "NEGATIVE": 0.1875 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8125 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.998634397983551, + 0.9972367286682129, + 0.9995087385177612, + 0.9994982481002808, + 0.9926625490188599, + 0.9995051622390747, + 0.6347131729125977, + 0.9985974431037903, + 0.9992709755897522, + 0.999479353427887, + 0.9995083808898926 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 7 + }, + "sentiment_distribution": { + "POSITIVE": 0.36363636363636365, + "NEGATIVE": 0.6363636363636364 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.6363636363636364 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9971907734870911, + 0.9988498687744141, + 0.9995090961456299, + 0.9988172650337219, + 0.9986701011657715, + 0.9995137453079224, + 0.9974592328071594, + 0.9987180233001709, + 0.9986485838890076, + 0.9995005130767822, + 0.9986855387687683, + 0.9994839429855347, + 0.999504566192627 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 5 + }, + "sentiment_distribution": { + "POSITIVE": 0.6153846153846154, + "NEGATIVE": 0.38461538461538464 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6153846153846154 + ] + }, + "final_label": "POSITIVE", + "final_count": 25, + "final_proportion": 0.625, + "final_counts": { + "POSITIVE": 25, + "NEGATIVE": 15 + }, + "final_distribution": { + "POSITIVE": 0.625, + "NEGATIVE": 0.375 + } + } + }, + { + "season_code": "202303", + "requirements": "", + "description": "Today\u2019s Internet-scale applications and cloud services generate massive amounts of data. At the same time, the availability of inexpensive storage has made it possible for these services and applications to collect and store every piece of data they generate, in the hopes of improving their services by analyzing the collected data. This introduces interesting new opportunities and challenges designing systems for collecting, analyzing, and serving the so-called big data.\u00a0This course looks at technology trends that have paved the way for big data applications, surveys state-of-the-art systems for storage and processing of big data, and considers future research\u00a0directions driven by open research problems. Our discussions span topics such as cluster architecture, big data analytics stacks, scheduling and resource management, batch and\u00a0stream analytics, graph processing, ML/AI frameworks, and serverless platforms and disaggregated architectures.", "short_title": "Big Data Systems: Trends and ...", "title": "Big Data Systems: Trends and Challenges", "school": "GS", @@ -68414,7 +141702,7 @@ "16:00", "17:15", "AKW 100 - Arthur K. Watson Hall 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560119" + "https://map.yale.edu/?id=1910#!m/560119" ] ], "Wednesday": [ @@ -68422,7 +141710,7 @@ "16:00", "17:15", "AKW 100 - Arthur K. Watson Hall 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560119" + "https://map.yale.edu/?id=1910#!m/560119" ] ] }, @@ -68434,10 +141722,111 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88098\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88098/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987433552742004, + 0.9987645149230957, + 0.9988573789596558, + 0.9986009001731873, + 0.9988906979560852, + 0.99874347448349 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988664388656616, + 0.9966738224029541, + 0.9988353848457336, + 0.9988271594047546, + 0.9988646507263184, + 0.9988957643508911 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984298348426819, + 0.9972814321517944, + 0.9989033937454224, + 0.9988318085670471, + 0.9988816380500793 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 4 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2, + "POSITIVE": 0.8 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 0.9411764705882353, + "final_counts": { + "POSITIVE": 16, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9411764705882353, + "NEGATIVE": 0.058823529411764705 + } + } }, { "season_code": "202303", @@ -68475,7 +141864,7 @@ "11:35", "12:50", "WTS A53 - Watson Center 60 Sachem Street A53", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -68483,7 +141872,7 @@ "11:35", "12:50", "WTS A53 - Watson Center 60 Sachem Street A53", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -68495,15 +141884,168 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88103\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88103/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "", - "description": "This course covers advanced topics in Database Systems, explaining on the material covered in CPSC\u00a0437\/537. Topics covered include complex data types, application development, big data, data analytics,\u00a0parallel and distributed storage, parallel and distributed query processing, advanced indexing techniques,\u00a0advanced relational database design, and object-based databases.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988288283348083, + 0.9988104104995728, + 0.9988123178482056, + 0.9987577199935913, + 0.9978895783424377, + 0.9988429546356201, + 0.9987587928771973, + 0.9982705116271973, + 0.998868465423584, + 0.9988155364990234, + 0.9933852553367615, + 0.9984265565872192, + 0.978926956653595, + 0.9921481013298035, + 0.9974693059921265 + ], + "sentiment_counts": { + "POSITIVE": 15, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998507559299469, + 0.9988364577293396, + 0.9988464117050171, + 0.9982505440711975, + 0.9994891881942749, + 0.9984941482543945, + 0.9985504746437073, + 0.9988993406295776, + 0.9988406300544739, + 0.9989156723022461, + 0.9987127780914307, + 0.9907942414283752, + 0.9988858103752136 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 10 + }, + "sentiment_distribution": { + "NEGATIVE": 0.23076923076923078, + "POSITIVE": 0.7692307692307693 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7692307692307693 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998344898223877, + 0.9989272952079773, + 0.9988539218902588, + 0.9871330261230469, + 0.9988226294517517, + 0.9989007711410522, + 0.9986009001731873, + 0.9974592328071594, + 0.9988762736320496, + 0.9988338351249695, + 0.981654167175293, + 0.9974592328071594, + 0.9975538849830627, + 0.9964259266853333, + 0.9987510442733765 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8666666666666667, + "NEGATIVE": 0.13333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8666666666666667 + ] + }, + "final_label": "POSITIVE", + "final_count": 38, + "final_proportion": 0.8837209302325582, + "final_counts": { + "POSITIVE": 38, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.8837209302325582, + "NEGATIVE": 0.11627906976744186 + } + } + }, + { + "season_code": "202303", + "requirements": "", + "description": "This course covers advanced topics in Database Systems, explaining on the material covered in CPSC\u00a0437/537. Topics covered include complex data types, application development, big data, data analytics,\u00a0parallel and distributed storage, parallel and distributed query processing, advanced indexing techniques,\u00a0advanced relational database design, and object-based databases.", "short_title": "Database Design and Implement...", "title": "Database Design and Implementation", "school": "GS", @@ -68536,7 +142078,7 @@ "9:00", "10:15", "HLH17 113 - 17 Hillhouse Avenue 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Wednesday": [ @@ -68544,7 +142086,7 @@ "9:00", "10:15", "HLH17 113 - 17 Hillhouse Avenue 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -68556,10 +142098,113 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88957\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88957/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989211559295654, + 0.9985724687576294, + 0.9988753199577332, + 0.9984742999076843, + 0.9988150596618652, + 0.9982039928436279 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989383816719055, + 0.9988693594932556, + 0.998927652835846, + 0.9989169836044312, + 0.9986825585365295, + 0.9987373948097229 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988877177238464, + 0.9988399147987366, + 0.9989185333251953, + 0.9989256262779236, + 0.9989122152328491, + 0.998893678188324, + 0.9988941550254822 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 19 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -68597,7 +142242,7 @@ "13:00", "14:15", "HLH17 113 - 17 Hillhouse Avenue 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Thursday": [ @@ -68605,7 +142250,7 @@ "13:00", "14:15", "HLH17 113 - 17 Hillhouse Avenue 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -68617,10 +142262,115 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90505\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90505/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9886825084686279, + 0.9982078075408936, + 0.9981864094734192, + 0.9992772936820984, + 0.9985266923904419, + 0.9987831711769104 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9985471367835999, + 0.9701759815216064, + 0.9957669973373413, + 0.9994369149208069, + 0.9989281296730042, + 0.9853928685188293, + 0.9994944334030151 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.5714285714285714, + "NEGATIVE": 0.42857142857142855 + }, + "sentiment_overall": [ + "POSITIVE", + 0.5714285714285714 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986972212791443, + 0.9985042810440063, + 0.9984171390533447, + 0.9901067614555359, + 0.9994481205940247, + 0.9987651109695435 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.3333333333333333, + "NEGATIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.6666666666666666 + ] + }, + "final_label": "neutral", + "final_count": 10, + "final_proportion": 0.5, + "final_counts": { + "POSITIVE": 10, + "NEGATIVE": 9 + }, + "final_distribution": { + "POSITIVE": 0.5263157894736842, + "NEGATIVE": 0.47368421052631576 + } + } }, { "season_code": "202303", @@ -68658,7 +142408,7 @@ "16:00", "17:15", "HLH17 115 - 17 Hillhouse Avenue 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Wednesday": [ @@ -68666,7 +142416,7 @@ "16:00", "17:15", "HLH17 115 - 17 Hillhouse Avenue 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -68680,10 +142430,119 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90517\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90517/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988417029380798, + 0.9843554496765137, + 0.9988755583763123, + 0.989150881767273, + 0.9988884329795837, + 0.9982947707176208 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984492063522339, + 0.9989169836044312, + 0.9989245533943176, + 0.9901943802833557, + 0.998818576335907, + 0.9989221096038818, + 0.9988728165626526 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987560510635376, + 0.9989346861839294, + 0.9989159107208252, + 0.9988002777099609, + 0.9989123344421387, + 0.9988081455230713, + 0.998928964138031, + 0.9989093542098999 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 0.9047619047619048, + "final_counts": { + "POSITIVE": 19, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9047619047619048, + "NEGATIVE": 0.09523809523809523 + } + } }, { "season_code": "202303", @@ -68721,7 +142580,7 @@ "9:00", "10:15", "HLH17 03 - 17 Hillhouse Avenue 03", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Wednesday": [ @@ -68729,7 +142588,7 @@ "9:00", "10:15", "HLH17 03 - 17 Hillhouse Avenue 03", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -68741,10 +142600,129 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88109\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88109/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9891919493675232, + 0.9969294667243958, + 0.9987208247184753, + 0.9983021020889282, + 0.9995021820068359, + 0.9986868500709534, + 0.9978420734405518, + 0.9987371563911438, + 0.9987381100654602 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9994896650314331, + 0.9974488615989685, + 0.9925354719161987, + 0.9989194869995117, + 0.9994373917579651, + 0.9985479712486267, + 0.9830818772315979, + 0.9988962411880493, + 0.9990648627281189 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 6 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.999514102935791, + 0.9978153705596924, + 0.9956468939781189, + 0.9988570213317871, + 0.9983184337615967, + 0.998895525932312, + 0.9968982934951782, + 0.9988484382629395 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 5 + }, + "sentiment_distribution": { + "NEGATIVE": 0.375, + "POSITIVE": 0.625 + }, + "sentiment_overall": [ + "POSITIVE", + 0.625 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 0.7307692307692307, + "final_counts": { + "POSITIVE": 19, + "NEGATIVE": 7 + }, + "final_distribution": { + "POSITIVE": 0.7307692307692307, + "NEGATIVE": 0.2692307692307692 + } + } }, { "season_code": "202303", @@ -68782,7 +142760,7 @@ "11:35", "12:50", "WTS A30 - Watson Center 60 Sachem Street A30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -68790,7 +142768,7 @@ "11:35", "12:50", "WTS A30 - Watson Center 60 Sachem Street A30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -68802,10 +142780,119 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88116\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88116/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9963935017585754, + 0.9954107403755188, + 0.9985264539718628, + 0.9987058639526367, + 0.998921275138855, + 0.9988309741020203, + 0.9988670349121094 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981038570404053, + 0.9989176988601685, + 0.9988858103752136, + 0.998884379863739, + 0.9989327788352966, + 0.9987719655036926, + 0.9988874793052673 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9851148724555969, + 0.9988227486610413, + 0.9989284873008728, + 0.9988896250724792, + 0.9989250302314758, + 0.9989327788352966, + 0.9987980127334595 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 6 + }, + "sentiment_distribution": { + "NEGATIVE": 0.14285714285714285, + "POSITIVE": 0.8571428571428571 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 0.9523809523809523, + "final_counts": { + "POSITIVE": 20, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9523809523809523, + "NEGATIVE": 0.047619047619047616 + } + } }, { "season_code": "202303", @@ -68842,7 +142929,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -68882,7 +142997,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -68920,7 +143063,7 @@ "14:30", "15:45", "LOM 215 - Leet Oliver Memorial Hall 215", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ], "Thursday": [ @@ -68928,7 +143071,7 @@ "14:30", "15:45", "LOM 215 - Leet Oliver Memorial Hall 215", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ] }, @@ -68940,10 +143083,95 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88128\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88128/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.996116042137146, + 0.9989221096038818, + 0.998927891254425, + 0.9987618923187256 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9972711205482483, + 0.9988767504692078, + 0.9962753057479858 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9980807304382324, + 0.9988749623298645, + 0.9988299012184143 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 10 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -69002,10 +143230,155 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88133\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88133/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988324046134949, + 0.9988355040550232, + 0.9857977032661438, + 0.9963248372077942, + 0.998849630355835, + 0.8932063579559326, + 0.9988634586334229, + 0.9916286468505859, + 0.9985394477844238, + 0.9963003396987915, + 0.9959366321563721, + 0.9982055425643921, + 0.9947319030761719 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8461538461538461, + "NEGATIVE": 0.15384615384615385 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8461538461538461 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.99875807762146, + 0.9989234805107117, + 0.9987952709197998, + 0.9988889098167419, + 0.9988746047019958, + 0.9988798499107361, + 0.9989303946495056, + 0.9988372921943665, + 0.9988849759101868, + 0.9987475872039795, + 0.9988380074501038, + 0.9989011287689209, + 0.9989206790924072 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988904595375061, + 0.998810887336731, + 0.9954487681388855, + 0.9987718462944031, + 0.9988928437232971, + 0.9989332556724548, + 0.9955151677131653, + 0.9987506866455078, + 0.9986296892166138, + 0.9989093542098999, + 0.9989012479782104, + 0.9989007711410522, + 0.9989063739776611 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 37, + "final_proportion": 0.9487179487179487, + "final_counts": { + "POSITIVE": 37, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9487179487179487, + "NEGATIVE": 0.05128205128205128 + } + } }, { "season_code": "202303", @@ -69043,7 +143416,7 @@ "14:30", "15:45", "WTS A48 - Watson Center 60 Sachem Street A48", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -69051,7 +143424,7 @@ "14:30", "15:45", "WTS A48 - Watson Center 60 Sachem Street A48", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -69063,10 +143436,135 @@ "classnotes": "The enrollment cap for this course is 15-20 students.", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88140\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88140/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989233613014221, + 0.9994978904724121, + 0.998636782169342, + 0.9978957176208496, + 0.9970661997795105, + 0.9988405108451843, + 0.9989179372787476, + 0.9988856911659241, + 0.9988443851470947, + 0.9988539218902588 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9846296906471252, + 0.9987533092498779, + 0.9957916736602783, + 0.9966896772384644, + 0.9984727501869202, + 0.9988600015640259, + 0.9986751675605774, + 0.9988541603088379, + 0.998427152633667, + 0.9989393353462219 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989253878593445, + 0.9994524121284485, + 0.9975703358650208, + 0.9980243444442749, + 0.9988765120506287, + 0.9987466335296631, + 0.9982553124427795, + 0.9984489679336548, + 0.9989175796508789 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.7777777777777778, + "NEGATIVE": 0.2222222222222222 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7777777777777778 + ] + }, + "final_label": "POSITIVE", + "final_count": 26, + "final_proportion": 0.896551724137931, + "final_counts": { + "POSITIVE": 26, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.896551724137931, + "NEGATIVE": 0.10344827586206896 + } + } }, { "season_code": "202303", @@ -69104,7 +143602,7 @@ "13:00", "14:15", "LOM 214 - Leet Oliver Memorial Hall 214", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ], "Thursday": [ @@ -69112,7 +143610,7 @@ "13:00", "14:15", "LOM 214 - Leet Oliver Memorial Hall 214", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ] }, @@ -69124,15 +143622,114 @@ "classnotes": "The enrollment cap for this course is 18 students.", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88145\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88145/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985462427139282, + 0.9987738728523254, + 0.9988095760345459, + 0.9964200258255005, + 0.9980975985527039, + 0.9986030459403992 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989332556724548, + 0.998916506767273, + 0.9986016154289246, + 0.998770534992218, + 0.9989192485809326 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988940358161926, + 0.9985243678092957, + 0.9987813830375671, + 0.9980826377868652, + 0.9911006093025208, + 0.9989169836044312 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 17 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", "requirements": "Solid mathematical and programming background is necessary to enroll in this course. CPSC 365 and S&DS 251 are recommended.", - "description": "Today\u2019s society comprises humans living in an interconnected world that is intertwined with a variety of sensing, communicating, and computing devices. Human-generated data is being recorded at unprecedented rates and scales, and powerful AI and ML algorithms, which are capable of learning from such data, are increasingly controlling various aspects of modern society: from social interactions. These data-driven decision-making algorithms have a tremendous potential to change our lives for the better, but, via the ability to mimic and nudge human behavior, they also have the potential to be discriminatory, reinforce societal prejudices, violate privacy, polarize opinions, and influence democratic processes.\u00a0Thus, designing effective tools to govern modern society which reinforce its cherished values such as equity, justice, democracy, health, privacy, etc. has become paramount and requires a foundational understanding of how humans, data, and algorithms interact.\u00a0This course is for students who would like to understand and address some of the key challenges and emerging topics at the aforementioned interplay between computation and society. On the one hand, we study human decision-making processes and view them through the lens of computation, and on the other hand we\u00a0study and address the limitations of artificial decision-making algorithms when deployed in various societal contexts. The focus is on developing solutions through a combination of foundational work such as coming up with the right definitions, modeling, algorithms, and empirical evaluation. The current focus is on bias and privacy, with additional topics including robustness, polarization, and democratic representation.\u00a0The grade will be based on class participation and a project. The project grade will be determined by a midterm and endterm report\/presentation.\u00a0The course has four primary modules: (1)\u00a0Data:\u00a0human-generated data;\u00a0data collection and aggregation; (2)\u00a0Decision-Making Algorithms:\u00a0human decision-making algorithms;\u00a0traditional algorithmic decision-making models and methods;\u00a0machine learning-based decision-making models and methods; (3)\u00a0Bias: socio-technical contexts and underlying computational problems;\u00a0definitions of fairness;\u00a0interventions for ensuring fairness;\u00a0human biases through the lens of computation; privacy;\u00a0need for definitions of privacy;\u00a0differential privacy;\u00a0beyond differential privacy; (4)\u00a0Other topics:\u00a0robustness;\u00a0polarization;\u00a0elections and social choice.", + "description": "Today\u2019s society comprises humans living in an interconnected world that is intertwined with a variety of sensing, communicating, and computing devices. Human-generated data is being recorded at unprecedented rates and scales, and powerful AI and ML algorithms, which are capable of learning from such data, are increasingly controlling various aspects of modern society: from social interactions. These data-driven decision-making algorithms have a tremendous potential to change our lives for the better, but, via the ability to mimic and nudge human behavior, they also have the potential to be discriminatory, reinforce societal prejudices, violate privacy, polarize opinions, and influence democratic processes.\u00a0Thus, designing effective tools to govern modern society which reinforce its cherished values such as equity, justice, democracy, health, privacy, etc. has become paramount and requires a foundational understanding of how humans, data, and algorithms interact.\u00a0This course is for students who would like to understand and address some of the key challenges and emerging topics at the aforementioned interplay between computation and society. On the one hand, we study human decision-making processes and view them through the lens of computation, and on the other hand we\u00a0study and address the limitations of artificial decision-making algorithms when deployed in various societal contexts. The focus is on developing solutions through a combination of foundational work such as coming up with the right definitions, modeling, algorithms, and empirical evaluation. The current focus is on bias and privacy, with additional topics including robustness, polarization, and democratic representation.\u00a0The grade will be based on class participation and a project. The project grade will be determined by a midterm and endterm report/presentation.\u00a0The course has four primary modules: (1)\u00a0Data:\u00a0human-generated data;\u00a0data collection and aggregation; (2)\u00a0Decision-Making Algorithms:\u00a0human decision-making algorithms;\u00a0traditional algorithmic decision-making models and methods;\u00a0machine learning-based decision-making models and methods; (3)\u00a0Bias: socio-technical contexts and underlying computational problems;\u00a0definitions of fairness;\u00a0interventions for ensuring fairness;\u00a0human biases through the lens of computation; privacy;\u00a0need for definitions of privacy;\u00a0differential privacy;\u00a0beyond differential privacy; (4)\u00a0Other topics:\u00a0robustness;\u00a0polarization;\u00a0elections and social choice.", "short_title": "Algorithms and their Societal...", "title": "Algorithms and their Societal Implications", "school": "GS", @@ -69165,7 +143762,7 @@ "9:25", "11:15", "HLH17 115 - 17 Hillhouse Avenue 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -69177,10 +143774,105 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88151\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88151/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988753199577332, + 0.9969730377197266, + 0.9941633343696594, + 0.9981389045715332 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981167316436768, + 0.9989184141159058, + 0.9994053840637207, + 0.9987159967422485, + 0.9961613416671753 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988859295845032, + 0.9989186525344849, + 0.9995155334472656, + 0.9916175007820129, + 0.9985190033912659 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 0.8571428571428571, + "final_counts": { + "POSITIVE": 12, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + } + } }, { "season_code": "202303", @@ -69218,7 +143910,7 @@ "14:30", "15:45", "WTS A60 - Watson Center 60 Sachem Street A60", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -69226,7 +143918,7 @@ "14:30", "15:45", "WTS A60 - Watson Center 60 Sachem Street A60", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -69238,10 +143930,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88156\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88156/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -69279,7 +143999,7 @@ "13:00", "14:15", "LUCE 101 - Luce Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ], "Thursday": [ @@ -69287,7 +144007,7 @@ "13:00", "14:15", "LUCE 101 - Luce Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ] }, @@ -69299,10 +144019,161 @@ "classnotes": "As well as CPSC 223, CPSC 202 is also a prerequisite for this course.", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90381\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/90381/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9983129501342773, + 0.9981880784034729, + 0.9987486600875854, + 0.9973803162574768, + 0.9987442493438721, + 0.9981880784034729, + 0.9970513582229614, + 0.9827300310134888, + 0.9982990622520447, + 0.99774169921875, + 0.9985767602920532, + 0.9900229573249817, + 0.9985176920890808, + 0.9966140389442444, + 0.9912971258163452 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.7333333333333333, + "NEGATIVE": 0.26666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7333333333333333 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.99687659740448, + 0.9957608580589294, + 0.9961864352226257, + 0.9964085221290588, + 0.9921767115592957, + 0.99790358543396, + 0.9993769526481628, + 0.9983583092689514, + 0.9994648098945618, + 0.9980607628822327, + 0.9986996650695801, + 0.9995008707046509, + 0.9989210367202759 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.6923076923076923, + "NEGATIVE": 0.3076923076923077 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6923076923076923 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989087581634521, + 0.9986528158187866, + 0.9994997978210449, + 0.9978087544441223, + 0.998672604560852, + 0.9984862804412842, + 0.9988516569137573, + 0.9995077848434448, + 0.9989081621170044, + 0.9987632036209106, + 0.9937880635261536, + 0.9974592328071594, + 0.9980037808418274, + 0.9988064765930176 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.7142857142857143, + "NEGATIVE": 0.2857142857142857 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7142857142857143 + ] + }, + "final_label": "POSITIVE", + "final_count": 30, + "final_proportion": 0.7142857142857143, + "final_counts": { + "POSITIVE": 30, + "NEGATIVE": 12 + }, + "final_distribution": { + "POSITIVE": 0.7142857142857143, + "NEGATIVE": 0.2857142857142857 + } + } }, { "season_code": "202303", @@ -69340,7 +144211,7 @@ "10:30", "11:20", "ML 211 - Mason Laboratory 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ], "Wednesday": [ @@ -69348,7 +144219,7 @@ "10:30", "11:20", "ML 211 - Mason Laboratory 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ], "Friday": [ @@ -69356,7 +144227,7 @@ "10:30", "11:20", "ML 211 - Mason Laboratory 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ] }, @@ -69368,10 +144239,173 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88161\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88161/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9888026118278503, + 0.998839795589447, + 0.9518362283706665, + 0.9987136125564575, + 0.9987118244171143, + 0.9989069700241089, + 0.9987861514091492, + 0.9988628625869751, + 0.9988941550254822, + 0.9987439513206482, + 0.9983226656913757, + 0.9987233281135559, + 0.9988724589347839, + 0.9982538819313049, + 0.9986503720283508, + 0.9978836178779602 + ], + "sentiment_counts": { + "POSITIVE": 16, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.996032178401947, + 0.9943087697029114, + 0.9987732768058777, + 0.9988034963607788, + 0.9982774257659912, + 0.9980450868606567, + 0.9988870024681091, + 0.9985285997390747, + 0.998906135559082, + 0.9988590478897095, + 0.9994857311248779, + 0.9944779872894287, + 0.9988191723823547, + 0.9992984533309937, + 0.9988895058631897, + 0.9989913105964661, + 0.9988883137702942 + ], + "sentiment_counts": { + "POSITIVE": 14, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.8235294117647058, + "NEGATIVE": 0.17647058823529413 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8235294117647058 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989145994186401, + 0.9982798099517822, + 0.997870683670044, + 0.9988983869552612, + 0.9986252784729004, + 0.9988716244697571, + 0.998757004737854, + 0.9988759160041809, + 0.9995135068893433, + 0.9986383318901062, + 0.9909915924072266, + 0.9983916878700256, + 0.9994853734970093, + 0.9970273375511169, + 0.998869001865387 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 5 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 40, + "final_proportion": 0.8333333333333334, + "final_counts": { + "POSITIVE": 40, + "NEGATIVE": 8 + }, + "final_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + } + } }, { "season_code": "202303", @@ -69409,7 +144443,7 @@ "9:00", "10:15", "DL 220 - Dunham Laboratory 220", - "https:\/\/map.yale.edu\/?id=1910#!m\/560005" + "https://map.yale.edu/?id=1910#!m/560005" ] ], "Thursday": [ @@ -69417,7 +144451,7 @@ "9:00", "10:15", "DL 220 - Dunham Laboratory 220", - "https:\/\/map.yale.edu\/?id=1910#!m\/560005" + "https://map.yale.edu/?id=1910#!m/560005" ] ] }, @@ -69429,10 +144463,163 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88165\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88165/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9978006482124329, + 0.9987558126449585, + 0.9987701773643494, + 0.997399091720581, + 0.9987075328826904, + 0.9987804293632507, + 0.9962253570556641, + 0.9985923171043396, + 0.9984317421913147, + 0.9988818764686584, + 0.9938856959342957, + 0.9987685084342957, + 0.998296320438385, + 0.998890221118927, + 0.9986236095428467 + ], + "sentiment_counts": { + "POSITIVE": 15, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998815655708313, + 0.9988491535186768, + 0.997669517993927, + 0.9984259605407715, + 0.9987540245056152, + 0.998853325843811, + 0.9987395405769348, + 0.9994823932647705, + 0.9988351464271545, + 0.9989105463027954, + 0.9988320469856262, + 0.9989383816719055, + 0.9987911581993103 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8461538461538461, + "NEGATIVE": 0.15384615384615385 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8461538461538461 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982553124427795, + 0.9988589286804199, + 0.9988686442375183, + 0.9892336130142212, + 0.9989041090011597, + 0.9995026588439941, + 0.9983999133110046, + 0.997602641582489, + 0.9989138841629028, + 0.9982569813728333, + 0.998831570148468, + 0.9988561868667603, + 0.9988614320755005, + 0.9989277720451355, + 0.9988240599632263 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8666666666666667, + "NEGATIVE": 0.13333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8666666666666667 + ] + }, + "final_label": "POSITIVE", + "final_count": 39, + "final_proportion": 0.9069767441860465, + "final_counts": { + "POSITIVE": 39, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.9069767441860465, + "NEGATIVE": 0.09302325581395349 + } + } }, { "season_code": "202303", @@ -69474,7 +144661,7 @@ "14:30", "15:45", "WTS A51 - Watson Center 60 Sachem Street A51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -69482,7 +144669,7 @@ "14:30", "15:45", "WTS A51 - Watson Center 60 Sachem Street A51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -69494,10 +144681,133 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88172\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88172/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9980304837226868, + 0.9986047148704529, + 0.9162562489509583, + 0.9986104965209961, + 0.9976143836975098, + 0.998491644859314, + 0.9988740086555481, + 0.9988579750061035, + 0.9949612617492676 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989176988601685, + 0.9995079040527344, + 0.9989275336265564, + 0.9894932508468628, + 0.9986346364021301, + 0.998930037021637, + 0.9988192915916443, + 0.9995110034942627 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989182949066162, + 0.999414324760437, + 0.9994677901268005, + 0.9995068311691284, + 0.9987934827804565, + 0.9987847208976746, + 0.9989137649536133, + 0.9989270567893982, + 0.998902440071106, + 0.9983886480331421, + 0.9988535642623901 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.6363636363636364, + "NEGATIVE": 0.36363636363636365 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6363636363636364 + ] + }, + "final_label": "POSITIVE", + "final_count": 22, + "final_proportion": 0.7857142857142857, + "final_counts": { + "POSITIVE": 22, + "NEGATIVE": 6 + }, + "final_distribution": { + "POSITIVE": 0.7857142857142857, + "NEGATIVE": 0.21428571428571427 + } + } }, { "season_code": "202303", @@ -69535,7 +144845,7 @@ "11:35", "12:50", "ML 211 - Mason Laboratory 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ], "Wednesday": [ @@ -69543,7 +144853,7 @@ "11:35", "12:50", "ML 211 - Mason Laboratory 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ] }, @@ -69555,10 +144865,209 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88177\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88177/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988006353378296, + 0.9986510872840881, + 0.9222248792648315, + 0.9987744688987732, + 0.9981922507286072, + 0.9979870319366455, + 0.9989125728607178, + 0.9957135915756226, + 0.9982865452766418, + 0.9896043539047241, + 0.9977626800537109, + 0.8980374336242676, + 0.9988601207733154, + 0.9989213943481445, + 0.9986535310745239, + 0.9979908466339111, + 0.996588945388794, + 0.9989297986030579, + 0.9957885146141052, + 0.9901779294013977, + 0.9987956285476685 + ], + "sentiment_counts": { + "POSITIVE": 19, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.9047619047619048, + "NEGATIVE": 0.09523809523809523 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9047619047619048 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988762736320496, + 0.9989205598831177, + 0.9994945526123047, + 0.9989128112792969, + 0.9988872408866882, + 0.9951027631759644, + 0.9989362359046936, + 0.9987945556640625, + 0.998894989490509, + 0.9986488223075867, + 0.9989171028137207, + 0.990568220615387, + 0.9988799691200256, + 0.9988860487937927, + 0.9987278580665588, + 0.9980523586273193, + 0.9985501170158386, + 0.9989235997200012, + 0.998927652835846, + 0.9989209175109863, + 0.9989359974861145 + ], + "sentiment_counts": { + "POSITIVE": 19, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.9047619047619048, + "NEGATIVE": 0.09523809523809523 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9047619047619048 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998497486114502, + 0.9988940358161926, + 0.998909592628479, + 0.9995094537734985, + 0.9989387392997742, + 0.9988905787467957, + 0.9994975328445435, + 0.9989282488822937, + 0.9892423748970032, + 0.9988747239112854, + 0.9985957741737366, + 0.9989225268363953, + 0.9967172741889954, + 0.9986648559570312, + 0.9989251494407654, + 0.9989364743232727, + 0.9987188577651978, + 0.998871386051178, + 0.9966841340065002, + 0.9989344477653503, + 0.9988658428192139, + 0.9988638162612915, + 0.9988710284233093, + 0.998879611492157 + ], + "sentiment_counts": { + "POSITIVE": 20, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 58, + "final_proportion": 0.8787878787878788, + "final_counts": { + "POSITIVE": 58, + "NEGATIVE": 8 + }, + "final_distribution": { + "POSITIVE": 0.8787878787878788, + "NEGATIVE": 0.12121212121212122 + } + } }, { "season_code": "202303", @@ -69596,7 +145105,7 @@ "13:00", "14:15", "", - "https:\/\/map.yale.edu\/?id=1910#!m\/559958" + "https://map.yale.edu/?id=1910#!m/559958" ] ], "Wednesday": [ @@ -69604,7 +145113,7 @@ "13:00", "14:15", "", - "https:\/\/map.yale.edu\/?id=1910#!m\/559958" + "https://map.yale.edu/?id=1910#!m/559958" ] ] }, @@ -69616,10 +145125,179 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88958\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88958/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987244009971619, + 0.9988738894462585, + 0.9986950755119324, + 0.9969314336776733, + 0.9908787608146667, + 0.9945802092552185, + 0.9988906979560852, + 0.9986470341682434, + 0.9988321661949158, + 0.9985445737838745, + 0.9898091554641724, + 0.9969488978385925, + 0.9984946250915527, + 0.9849731922149658, + 0.9988033771514893, + 0.998753547668457, + 0.9987117052078247 + ], + "sentiment_counts": { + "POSITIVE": 15, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8823529411764706, + "NEGATIVE": 0.11764705882352941 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8823529411764706 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989293217658997, + 0.9986662864685059, + 0.9988954067230225, + 0.9989134073257446, + 0.9995043277740479, + 0.9970638155937195, + 0.998863697052002, + 0.9988654851913452, + 0.9989155530929565, + 0.9987778067588806, + 0.9987851977348328, + 0.9987196922302246, + 0.9988958835601807, + 0.9988250136375427, + 0.9988995790481567, + 0.998582124710083 + ], + "sentiment_counts": { + "POSITIVE": 15, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9375, + "NEGATIVE": 0.0625 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9375 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987850785255432, + 0.9988394379615784, + 0.9988069534301758, + 0.9988887906074524, + 0.9987743496894836, + 0.998848557472229, + 0.9989038705825806, + 0.9988901019096375, + 0.9988873600959778, + 0.9989008903503418, + 0.9989239573478699, + 0.9986293315887451, + 0.9988412261009216, + 0.9982553124427795, + 0.9972163438796997, + 0.9955366849899292, + 0.9989117383956909, + 0.9981922507286072 + ], + "sentiment_counts": { + "POSITIVE": 17, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9444444444444444, + "NEGATIVE": 0.05555555555555555 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9444444444444444 + ] + }, + "final_label": "POSITIVE", + "final_count": 47, + "final_proportion": 0.9215686274509803, + "final_counts": { + "POSITIVE": 47, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.9215686274509803, + "NEGATIVE": 0.0784313725490196 + } + } }, { "season_code": "202303", @@ -69657,7 +145335,7 @@ "16:00", "17:15", "ML 211 - Mason Laboratory 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ], "Wednesday": [ @@ -69665,7 +145343,7 @@ "16:00", "17:15", "ML 211 - Mason Laboratory 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ] }, @@ -69677,10 +145355,287 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88187\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88187/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9956016540527344, + 0.9955534338951111, + 0.9984890222549438, + 0.9987965822219849, + 0.9986567497253418, + 0.9988981485366821, + 0.998431384563446, + 0.9983335137367249, + 0.9966933727264404, + 0.9986529350280762, + 0.996533989906311, + 0.9960529804229736, + 0.9987794756889343, + 0.9841744303703308, + 0.9987391829490662, + 0.9967755675315857, + 0.9931696653366089, + 0.9987061023712158, + 0.8607230186462402, + 0.9897584915161133, + 0.997795820236206, + 0.9981570839881897, + 0.9987761378288269, + 0.998696506023407, + 0.9971650242805481, + 0.9987908005714417, + 0.9983803033828735, + 0.9942929744720459, + 0.9984400868415833, + 0.9973633885383606, + 0.9985993504524231, + 0.9987301230430603, + 0.9955810904502869, + 0.9987491369247437, + 0.9982885718345642 + ], + "sentiment_counts": { + "POSITIVE": 33, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.9428571428571428, + "NEGATIVE": 0.05714285714285714 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9428571428571428 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994133710861206, + 0.9994531273841858, + 0.9969255328178406, + 0.9982605576515198, + 0.9988818764686584, + 0.9989174604415894, + 0.9987541437149048, + 0.9880692362785339, + 0.9985038042068481, + 0.9986971020698547, + 0.9986907839775085, + 0.9988742470741272, + 0.9973370432853699, + 0.9983657002449036, + 0.9988595247268677, + 0.999439537525177, + 0.9986893534660339, + 0.9835627675056458, + 0.998773992061615, + 0.9985527396202087, + 0.9987265467643738, + 0.9989264607429504, + 0.9988880753517151, + 0.9986481070518494, + 0.998688280582428, + 0.9994719624519348, + 0.9987939596176147, + 0.9989213943481445, + 0.9994775652885437, + 0.997134804725647, + 0.9989156723022461, + 0.9987610578536987, + 0.9989259839057922, + 0.9972104430198669 + ], + "sentiment_counts": { + "NEGATIVE": 8, + "POSITIVE": 26 + }, + "sentiment_distribution": { + "NEGATIVE": 0.23529411764705882, + "POSITIVE": 0.7647058823529411 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7647058823529411 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994906187057495, + 0.9983776807785034, + 0.998745322227478, + 0.9933195114135742, + 0.9981069564819336, + 0.9988157749176025, + 0.9981096982955933, + 0.9942588806152344, + 0.9821963310241699, + 0.9978097081184387, + 0.9988908171653748, + 0.9988699555397034, + 0.9991828799247742, + 0.9981873631477356, + 0.998134195804596, + 0.9985702037811279, + 0.998212456703186, + 0.9985405206680298, + 0.9969909191131592, + 0.9985474944114685, + 0.997117280960083, + 0.9987704157829285, + 0.9982147216796875, + 0.9981374740600586, + 0.998840868473053, + 0.9989215135574341, + 0.9987092018127441, + 0.9988038539886475, + 0.9994993209838867, + 0.99888676404953, + 0.997260570526123, + 0.9982970356941223, + 0.99872225522995, + 0.9988256096839905, + 0.9987736344337463, + 0.9989091157913208 + ], + "sentiment_counts": { + "NEGATIVE": 9, + "POSITIVE": 27 + }, + "sentiment_distribution": { + "NEGATIVE": 0.25, + "POSITIVE": 0.75 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 86, + "final_proportion": 0.819047619047619, + "final_counts": { + "POSITIVE": 86, + "NEGATIVE": 19 + }, + "final_distribution": { + "POSITIVE": 0.819047619047619, + "NEGATIVE": 0.18095238095238095 + } + } }, { "season_code": "202303", @@ -69718,7 +145673,7 @@ "9:00", "10:15", "WTS A30 - Watson Center 60 Sachem Street A30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -69726,7 +145681,7 @@ "9:00", "10:15", "WTS A30 - Watson Center 60 Sachem Street A30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -69738,14 +145693,111 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88192\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88192/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "Prerequisite: either CPSC 477\/577 or CPSC 480\/580, or permission of the instructor.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987952709197998, + 0.9985272884368896, + 0.9988598823547363, + 0.9957899451255798, + 0.9988356232643127 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989092350006104, + 0.9755826592445374, + 0.9988962411880493, + 0.998916506767273, + 0.9989230036735535 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987333416938782, + 0.9981922507286072, + 0.9989343285560608, + 0.9987199306488037, + 0.998895525932312 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 0.9333333333333333, + "final_counts": { + "POSITIVE": 14, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9333333333333333, + "NEGATIVE": 0.06666666666666667 + } + } + }, + { + "season_code": "202303", + "requirements": "Prerequisite: either CPSC 477/577 or CPSC 480/580, or permission of the instructor.", "description": "\u200b\u200bFoundation models are a recent class of AI models that are large-scale in terms of number of parameters and are trained on broad data (generally using self-supervision at scale). These models have demonstrated exceptional capabilities in natural language processing, computer vision, and other tasks. Examples of foundation models are GPT-4, ChatGPT, GPT-3, Dall-E, Stable Diffusion, etc.\u00a0In this course, we discuss building blocks of foundation models, including transformers, self-supervised learning, transfer learning, learning from human feedback, power of scale, large language models, in-context learning, chain-of-thought prompting, parameter-efficient fine-tuning, vision transformers, diffusion models, generative modeling, safety, ethical and societal considerations, their impact, etc. While the course primarily focuses on advances on large language models, we also cover foundation models in computer vision, as well as multi-modal foundation models.", "short_title": "AI Foundation Models", "title": "AI Foundation Models", @@ -69799,10 +145851,185 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90518\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90518/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982568621635437, + 0.9988756775856018, + 0.9987196922302246, + 0.9984669089317322, + 0.9988195300102234, + 0.9566797614097595, + 0.9983799457550049, + 0.9988008737564087, + 0.9989036321640015, + 0.998893678188324, + 0.9988264441490173, + 0.9972211122512817, + 0.9870352149009705, + 0.9958866238594055, + 0.9986496567726135, + 0.998857855796814, + 0.9913604855537415 + ], + "sentiment_counts": { + "POSITIVE": 16, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9411764705882353, + "NEGATIVE": 0.058823529411764705 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9411764705882353 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9925098419189453, + 0.9988904595375061, + 0.9988144636154175, + 0.9987426400184631, + 0.9994922876358032, + 0.983822762966156, + 0.9986850619316101, + 0.9919477105140686, + 0.9994812607765198, + 0.9988818764686584, + 0.9995064735412598, + 0.9971967935562134, + 0.9977450966835022, + 0.9963958859443665, + 0.9987874627113342, + 0.9945496916770935, + 0.9986103773117065 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.7647058823529411, + "NEGATIVE": 0.23529411764705882 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7647058823529411 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983428716659546, + 0.9986721277236938, + 0.9989225268363953, + 0.9988548755645752, + 0.9970477223396301, + 0.9987881779670715, + 0.9994984865188599, + 0.9974592328071594, + 0.9979725480079651, + 0.9951942563056946, + 0.9989296793937683, + 0.9995131492614746, + 0.997117280960083, + 0.9956783652305603, + 0.9988804459571838, + 0.9988746047019958, + 0.9988732933998108, + 0.9982553124427795, + 0.9989259839057922, + 0.9961621761322021 + ], + "sentiment_counts": { + "POSITIVE": 18, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "final_label": "POSITIVE", + "final_count": 47, + "final_proportion": 0.8703703703703703, + "final_counts": { + "POSITIVE": 47, + "NEGATIVE": 7 + }, + "final_distribution": { + "POSITIVE": 0.8703703703703703, + "NEGATIVE": 0.12962962962962962 + } + } }, { "season_code": "202303", @@ -69843,7 +146070,7 @@ "15:30", "17:20", "WTS B74 - Watson Center 60 Sachem Street B74", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -69855,10 +146082,38 @@ "classnotes": "Instructor Permission Required. If you wish to enroll for Fall 2023, please contact the instructors by email (Joan.Feigenbaum@yale.edu and Edward.Wittenstein@yale.edu).", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88864\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88864/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -69897,7 +146152,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -69934,7 +146217,7 @@ "14:30", "15:45", "WTS B31 - Watson Center 60 Sachem Street B31", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -69942,7 +146225,7 @@ "14:30", "15:45", "WTS B31 - Watson Center 60 Sachem Street B31", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -69954,10 +146237,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91266\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91266/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -69994,7 +146305,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -70037,7 +146376,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -70077,10 +146444,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88987\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88987/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -70123,7 +146518,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -70163,15 +146586,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88988\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88988/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "This course forms a vital part of research ethics training, aiming to instill moral research codes in graduate students of computer science, math, and applied math. By devling into case studies and real-life examples related to research misconduct, students will grasp core ethical principles in research and academia. The course also offers an opportunity to explore the societal impacts of research in computer science, math, and applied math. This course is designed specifically for first-year graduate students in computer science\/applied math\/math. Successful completion of the course necessitates in-person attendance on eight occasions; virtual participation will not fulfill this requirement. In cases where illness, job interviews, or unforeseen circumstances prevent attendance, makeup sessions will be offered. This course is 0 credits for YC students.", + "description": "This course forms a vital part of research ethics training, aiming to instill moral research codes in graduate students of computer science, math, and applied math. By devling into case studies and real-life examples related to research misconduct, students will grasp core ethical principles in research and academia. The course also offers an opportunity to explore the societal impacts of research in computer science, math, and applied math. This course is designed specifically for first-year graduate students in computer science/applied math/math. Successful completion of the course necessitates in-person attendance on eight occasions; virtual participation will not fulfill this requirement. In cases where illness, job interviews, or unforeseen circumstances prevent attendance, makeup sessions will be offered. This course is 0 credits for YC students.", "short_title": "Ethical Conduct of Research f...", "title": "Ethical Conduct of Research for Master\u2019s Students", "school": "GS", @@ -70203,7 +146654,7 @@ "13:30", "14:20", "WTS A51 - Watson Center 60 Sachem Street A51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -70215,10 +146666,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88866\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88866/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -70256,7 +146735,7 @@ "14:30", "15:20", "WTS A51 - Watson Center 60 Sachem Street A51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -70268,15 +146747,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88867\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88867/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "This course is an intensive analysis of the principles of excellent writing for Ph.D. students and scientists preparing a range of texts including research papers, conference posters, technical reports, research statements, grant proposals, correspondence, science and industry blogs, and other relevant documents.\u00a0We look at the components of rhetorical positioning in the development of a clear, interesting, and rigorous science research paper. Some of the sub-genres we analyze and practice include the introduction, literature review, methodology, data commentary, results\/discussion, conclusion, and abstract. In addition to the research paper, we practice other types of texts including research statements, requests for funding, bio-data statements, and blogs.\u00a0We also discuss how writers can develop content and fluency as well as strategies for redrafting and editing. Students receive detailed feedback on their writing with a focus on clarity, precision, tone, and readability.", + "description": "This course is an intensive analysis of the principles of excellent writing for Ph.D. students and scientists preparing a range of texts including research papers, conference posters, technical reports, research statements, grant proposals, correspondence, science and industry blogs, and other relevant documents.\u00a0We look at the components of rhetorical positioning in the development of a clear, interesting, and rigorous science research paper. Some of the sub-genres we analyze and practice include the introduction, literature review, methodology, data commentary, results/discussion, conclusion, and abstract. In addition to the research paper, we practice other types of texts including research statements, requests for funding, bio-data statements, and blogs.\u00a0We also discuss how writers can develop content and fluency as well as strategies for redrafting and editing. Students receive detailed feedback on their writing with a focus on clarity, precision, tone, and readability.", "short_title": "Academic Writing", "title": "Academic Writing", "school": "GS", @@ -70308,7 +146815,7 @@ "10:10", "12:00", "WTS A38 - Watson Center 60 Sachem Street A38", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -70320,10 +146827,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92186\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92186/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -70369,15 +146904,434 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88485\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "", - "description": "This drawing course is designed for individuals with different backgrounds in drawing and studio art including those with little or no experience. It aims to give a comprehensive overview of the practice of drawing as well as contemporary trends in art and culture. Critical essays, group critique, and final individual projects are key elements of the course. Students build a vocabulary to evaluate work through the hands-on experience of looking and making.\u00a0For the first part of the semester, students work primarily from nature\/observation to develop technical skills and build a formal vocabulary: line and contour, shape, value and light, space and volume, and so on. Subjects for class and homework assignments include: still life, interior, landscape, portrait, and self-portrait, personal narrative, memory, non-figurative abstraction, and so on. Students collaborate regularly on assignments through drawing, strategizing, feedback, and critique. Near the end of the semester students design and execute individual projects to be presented for class critique.", + "syllabus_url": "https://yale.instructure.com/courses/88485/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985248446464539, + 0.998282790184021, + 0.9989011287689209, + 0.9982892870903015, + 0.9942522644996643, + 0.998856782913208, + 0.9986053109169006, + 0.9983623623847961, + 0.9984409213066101, + 0.9738075733184814, + 0.9988273978233337, + 0.9978245496749878, + 0.997955322265625, + 0.998875081539154, + 0.6495741605758667, + 0.998689591884613, + 0.9988683462142944, + 0.998897910118103, + 0.9727877974510193, + 0.9987952709197998, + 0.9982591271400452, + 0.9965298771858215, + 0.9987176656723022, + 0.9977856874465942, + 0.9983890056610107, + 0.9885473251342773, + 0.998818576335907, + 0.9989117383956909, + 0.9987186193466187, + 0.9987841248512268, + 0.9938516616821289, + 0.9988874793052673, + 0.9989206790924072, + 0.9987849593162537, + 0.9976280331611633, + 0.9989155530929565, + 0.9320856928825378, + 0.9987971782684326, + 0.9933223128318787, + 0.9986565113067627, + 0.9988251328468323, + 0.9891356229782104, + 0.998904824256897, + 0.9958065748214722, + 0.9989027976989746, + 0.998893678188324, + 0.9988226294517517, + 0.998829185962677, + 0.9986199140548706, + 0.9977703094482422, + 0.9985156655311584, + 0.9824815392494202, + 0.999504804611206, + 0.9657548069953918, + 0.9989086389541626, + 0.9988365769386292, + 0.9941275119781494, + 0.9989027976989746, + 0.9954646229743958, + 0.9986227750778198 + ], + "sentiment_counts": { + "POSITIVE": 55, + "NEGATIVE": 5 + }, + "sentiment_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9166666666666666 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988631010055542, + 0.9995100498199463, + 0.9962366223335266, + 0.9989163875579834, + 0.9986844658851624, + 0.9970033764839172, + 0.9949133396148682, + 0.9986380934715271, + 0.9988971948623657, + 0.9995076656341553, + 0.998777449131012, + 0.9988613128662109, + 0.9989032745361328, + 0.9985942244529724, + 0.999466598033905, + 0.9989192485809326, + 0.9987438321113586, + 0.8179805278778076, + 0.9957016110420227, + 0.9789550304412842, + 0.9988613128662109, + 0.999081015586853, + 0.9986360669136047, + 0.9988188147544861, + 0.9988540410995483, + 0.9969159364700317, + 0.9988542795181274, + 0.998906135559082, + 0.9924535155296326, + 0.9965930581092834, + 0.9847599864006042, + 0.9989244341850281, + 0.9989110231399536, + 0.9983861446380615, + 0.9989160299301147, + 0.9982025623321533, + 0.998211145401001, + 0.9989010095596313, + 0.9952903985977173, + 0.9955908060073853, + 0.9912976026535034, + 0.998566210269928, + 0.9976073503494263, + 0.9988736510276794, + 0.9989258646965027, + 0.9988747239112854, + 0.9989204406738281, + 0.9983785152435303, + 0.9985539317131042, + 0.9966625571250916, + 0.9988189339637756, + 0.9753856062889099, + 0.998789370059967, + 0.9989266991615295, + 0.99882572889328, + 0.9984778761863708, + 0.993923008441925 + ], + "sentiment_counts": { + "POSITIVE": 49, + "NEGATIVE": 8 + }, + "sentiment_distribution": { + "POSITIVE": 0.8596491228070176, + "NEGATIVE": 0.14035087719298245 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8596491228070176 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9982553124427795, + 0.9994798302650452, + 0.9989126920700073, + 0.9989290833473206, + 0.9989171028137207, + 0.9802833199501038, + 0.9987824559211731, + 0.9989213943481445, + 0.9989377856254578, + 0.9989093542098999, + 0.9989125728607178, + 0.9988260865211487, + 0.9988657236099243, + 0.9989223480224609, + 0.9971520900726318, + 0.9987009763717651, + 0.998620867729187, + 0.9989232420921326, + 0.9988918900489807, + 0.9985255599021912, + 0.9960018992424011, + 0.9812468886375427, + 0.9989387392997742, + 0.998883068561554, + 0.9971336126327515, + 0.9988946318626404, + 0.9987738728523254, + 0.9456210136413574, + 0.9984706044197083, + 0.9988767504692078, + 0.9994189739227295, + 0.9988344311714172, + 0.999494194984436, + 0.998907208442688, + 0.9987449645996094, + 0.998843789100647, + 0.9975925087928772, + 0.9989105463027954, + 0.997117280960083, + 0.9989373087882996, + 0.9989301562309265, + 0.9987967014312744, + 0.9990750551223755, + 0.998842179775238, + 0.9986733198165894, + 0.9988961219787598, + 0.9957271814346313, + 0.9953092932701111, + 0.9989056587219238, + 0.9988904595375061, + 0.9903620481491089, + 0.9988688826560974, + 0.9974592328071594, + 0.9995003938674927, + 0.9988828301429749, + 0.9989369511604309, + 0.9989209175109863, + 0.9987724423408508, + 0.9994980096817017 + ], + "sentiment_counts": { + "POSITIVE": 49, + "NEGATIVE": 10 + }, + "sentiment_distribution": { + "POSITIVE": 0.8305084745762712, + "NEGATIVE": 0.1694915254237288 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8305084745762712 + ] + }, + "final_label": "POSITIVE", + "final_count": 153, + "final_proportion": 0.8693181818181818, + "final_counts": { + "POSITIVE": 153, + "NEGATIVE": 23 + }, + "final_distribution": { + "POSITIVE": 0.8693181818181818, + "NEGATIVE": 0.13068181818181818 + } + } + }, + { + "season_code": "202303", + "requirements": "", + "description": "This drawing course is designed for individuals with different backgrounds in drawing and studio art including those with little or no experience. It aims to give a comprehensive overview of the practice of drawing as well as contemporary trends in art and culture. Critical essays, group critique, and final individual projects are key elements of the course. Students build a vocabulary to evaluate work through the hands-on experience of looking and making.\u00a0For the first part of the semester, students work primarily from nature/observation to develop technical skills and build a formal vocabulary: line and contour, shape, value and light, space and volume, and so on. Subjects for class and homework assignments include: still life, interior, landscape, portrait, and self-portrait, personal narrative, memory, non-figurative abstraction, and so on. Students collaborate regularly on assignments through drawing, strategizing, feedback, and critique. Near the end of the semester students design and execute individual projects to be presented for class critique.", "short_title": "Drawing for Non-Art Majors", "title": "Drawing for Non-Art Majors", "school": "YC", @@ -70409,7 +147363,7 @@ "19:00", "22:00", "GREEN G01 - Green Hall (1156 Chapel) G01", - "https:\/\/map.yale.edu\/?id=1910#!m\/560064" + "https://map.yale.edu/?id=1910#!m/560064" ] ] }, @@ -70421,10 +147375,121 @@ "classnotes": "Students must request permission from the instructor to enroll by 5 pm on April 21. Please state briefly (under 200 words) your interest in this course and any relevant experience. Also, six spaces in this seminar are reserved for students in the sponsoring college, so please indicate your residential college. Falsifying this information will be subject to disciplinary action. Instructors will respond to requests by April 25.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89774\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89774/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": true + "colsem": true, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998799204826355, + 0.9989041090011597, + 0.9989044666290283, + 0.998927891254425, + 0.9929667711257935, + 0.9975923895835876 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989277720451355, + 0.9976128339767456, + 0.9989350438117981, + 0.9988977909088135, + 0.9988527297973633, + 0.9989128112792969, + 0.9988214373588562 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.99892657995224, + 0.9985396862030029, + 0.9989226460456848, + 0.9989344477653503, + 0.9989308714866638, + 0.9989299178123474, + 0.9989234805107117, + 0.9988526105880737, + 0.9987412095069885 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 21, + "final_proportion": 0.9545454545454546, + "final_counts": { + "POSITIVE": 21, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9545454545454546, + "NEGATIVE": 0.045454545454545456 + } + } }, { "season_code": "202303", @@ -70473,10 +147538,107 @@ "classnotes": "Enrollment limited to 12 students. \n\nStudents must request permission from the instructor to enroll by 5 pm on April 21. Please state briefly (under 200 words) your interest in this course and any relevant experience. Also, 4 spaces in this seminar are reserved for students in the sponsoring college, so please indicate your residential college. Falsifying this information will be subject to disciplinary action. Instructors will respond to requests by April 25.", "final_exam": "Wednesday, December 20, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89815\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89815/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": true + "colsem": true, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988572597503662, + 0.9989020824432373, + 0.996221661567688, + 0.9917665123939514, + 0.9985263347625732 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989302754402161, + 0.9989049434661865, + 0.9989380240440369, + 0.9989320635795593, + 0.9983128309249878 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989093542098999, + 0.9989363551139832, + 0.9989148378372192, + 0.9989235997200012, + 0.9981830716133118, + 0.9988616704940796 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 16 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -70513,7 +147675,7 @@ "15:30", "17:20", "WLH 011 - William L. Harkness Hall 011", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -70525,10 +147687,141 @@ "classnotes": "Students must request permission from the instructor to enroll by 5 pm on April 21. Please state briefly (under 200 words) your interest in this course and any relevant experience. Also, six spaces in this seminar are reserved for students in the sponsoring college, so please indicate your residential college. Falsifying this information will be subject to disciplinary action. Instructors will respond to requests by April 25.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89821\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": true + "syllabus_url": "https://yale.instructure.com/courses/89821/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": true, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983289837837219, + 0.9967719912528992, + 0.9988535642623901, + 0.9988201260566711, + 0.9987874627113342, + 0.9989087581634521, + 0.998810887336731, + 0.998721182346344, + 0.9988728165626526, + 0.9987420439720154, + 0.9987918734550476 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998909592628479, + 0.9989210367202759, + 0.9989153146743774, + 0.9989210367202759, + 0.9977864027023315, + 0.9988405108451843, + 0.9989039897918701, + 0.9989286065101624, + 0.9989054203033447, + 0.9989359974861145 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989124536514282, + 0.9980266690254211, + 0.998932421207428, + 0.9989027976989746, + 0.9982265830039978, + 0.998340368270874, + 0.9989147186279297, + 0.998880922794342, + 0.9989283680915833, + 0.9989381432533264, + 0.9986962676048279, + 0.9988862872123718 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 33, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 33 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -70565,7 +147858,7 @@ "15:30", "17:20", "LC 317 - Linsly-Chittenden Hall 317", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -70581,10 +147874,103 @@ "classnotes": "Students must request permission from the instructor to enroll by 5 pm on April 21. Please state briefly (under 200 words) your interest in this course and any relevant experience. Also, six spaces in this seminar are reserved for students in the sponsoring college, so please indicate your residential college. Falsifying this information will be subject to disciplinary action. Instructors will respond to requests by April 25.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89822\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89822/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": true + "colsem": true, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988970756530762, + 0.9989111423492432, + 0.9976077079772949, + 0.9989193677902222 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998908281326294, + 0.9989126920700073, + 0.9988889098167419, + 0.998891294002533, + 0.9977462887763977 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986341595649719, + 0.9989343285560608, + 0.9988858103752136, + 0.9988908171653748, + 0.9987842440605164 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 14 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -70627,7 +148013,80 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.993596076965332 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989553689956665 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 0 + }, + "sentiment_distribution": { + "NEGATIVE": 1.0, + "POSITIVE": 0.0 + }, + "sentiment_overall": [ + "NEGATIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9968456625938416 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 2, + "final_proportion": 0.6666666666666666, + "final_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + } + } }, { "season_code": "202303", @@ -70664,7 +148123,7 @@ "13:30", "15:20", "LC 206 - Linsly-Chittenden Hall 206", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -70676,10 +148135,87 @@ "classnotes": "Students must request permission from the instructor to enroll by 5 pm on April 21. Please state briefly (under 200 words) your interest in this course and any relevant experience. Also, six spaces in this seminar are reserved for students in the sponsoring college, so please indicate your residential college. Falsifying this information will be subject to disciplinary action. Instructors will respond to requests by April 25.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89823\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89823/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": true + "colsem": true, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988967180252075, + 0.998816728591919 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988909363746643, + 0.9988017082214355 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984509944915771, + 0.9988452196121216 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 6 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -70716,7 +148252,7 @@ "13:30", "15:20", "WALL81 401 - 81 Wall Street 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -70728,10 +148264,109 @@ "classnotes": "Students must request permission from the instructor to enroll by 5 pm on April 21. Please state briefly (under 200 words) your interest in this course and any relevant experience. Also, six spaces in this seminar are reserved for students in the sponsoring college, so please indicate your residential college. Falsifying this information will be subject to disciplinary action. Instructors will respond to requests by April 25.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89833\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89833/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": true + "colsem": true, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987792372703552, + 0.9988722205162048, + 0.9989182949066162, + 0.9986672401428223, + 0.9989383816719055, + 0.9985212683677673 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989233613014221, + 0.9989263415336609, + 0.9989243149757385, + 0.9989312291145325, + 0.9989251494407654 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989334940910339, + 0.998930037021637, + 0.9987888932228088, + 0.9988738894462585, + 0.9988971948623657, + 0.9989349246025085 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 17 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -70768,7 +148403,7 @@ "13:30", "15:20", "WLH 204 - William L. Harkness Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -70780,10 +148415,85 @@ "classnotes": "Students must request permission from the instructor to enroll by 5 pm on April 21. Please state briefly (under 200 words) your interest in this course and any relevant experience. Also, six spaces in this seminar are reserved for students in the sponsoring college, so please indicate your residential college. Falsifying this information will be subject to disciplinary action. Instructors will respond to requests by April 25.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89834\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89834/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": true + "colsem": true, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987581968307495 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988987445831299, + 0.9986530542373657 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.997657299041748, + 0.9988313317298889 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 5, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 5 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -70820,7 +148530,7 @@ "13:30", "15:20", "CO493 208 - 493 College Street 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560001" + "https://map.yale.edu/?id=1910#!m/560001" ] ] }, @@ -70834,10 +148544,149 @@ "classnotes": "Students must request permission from the instructor to enroll by 5 pm on April 21. Please state briefly (under 200 words) your interest in this course and any relevant experience. Also, six spaces in this seminar are reserved for students in the sponsoring college, so please indicate your residential college. Falsifying this information will be subject to disciplinary action. Instructors will respond to requests by April 25.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89835\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89835/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": true + "colsem": true, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989057779312134, + 0.9988616704940796, + 0.9989238381385803, + 0.998838484287262, + 0.998581051826477, + 0.9988983869552612, + 0.99864262342453, + 0.998853325843811, + 0.9987781643867493, + 0.9989042282104492 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989287257194519, + 0.9985287189483643, + 0.9989334940910339, + 0.9989389777183533, + 0.9989111423492432, + 0.9988792538642883, + 0.998837411403656, + 0.9989331364631653, + 0.9988413453102112, + 0.9989338517189026, + 0.9989114999771118, + 0.9989266991615295, + 0.9988947510719299 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998917818069458, + 0.9989219903945923, + 0.9987854361534119, + 0.9987993240356445, + 0.9989066123962402, + 0.9989375472068787, + 0.9986911416053772, + 0.9983211159706116, + 0.9981409311294556, + 0.9987461566925049, + 0.9986335635185242, + 0.9988610744476318, + 0.9985861778259277, + 0.9988113641738892 + ], + "sentiment_counts": { + "POSITIVE": 14, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 37, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 37 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -70877,7 +148726,7 @@ "15:30", "17:20", "WLH 209 - William L. Harkness Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -70889,10 +148738,95 @@ "classnotes": "Students must request permission from the instructor to enroll by 5 pm on April 21. Please state briefly (under 200 words) your interest in this course and any relevant experience. Also, six spaces in this seminar are reserved for students in the sponsoring college, so please indicate your residential college. Falsifying this information will be subject to disciplinary action. Instructors will respond to requests by April 25.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89836\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89836/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": true + "colsem": true, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985364675521851, + 0.9988314509391785, + 0.9989349246025085 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985833168029785, + 0.9989157915115356, + 0.998893678188324, + 0.9988973140716553 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984305500984192, + 0.9989243149757385, + 0.9989301562309265 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 10 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -70929,7 +148863,7 @@ "13:30", "15:20", "JE - JE", - "https:\/\/map.yale.edu\/?id=1910#!m\/560007" + "https://map.yale.edu/?id=1910#!m/560007" ] ] }, @@ -70941,10 +148875,151 @@ "classnotes": "Students must request permission from the instructor to enroll by 5 pm on April 21. Please follow the instructions in the \"selection process\" section of the expanded course description in Canvas. To be considered for this seminar, you need to pre-register following the procedures established by the Residential College Seminar Program and submit a \"statement of interest\" (limited to 1000 characters). Your \u201cstatement of interest\u201d should share concrete facts about who you are (your story) and your experiences. Think of it as a resume \"want ad\" style, with only key information. See the instructions in Canvas for further details. Registration worksheets open in Yale Course Search on April 17 at 8:00 am for rising seniors and on April 18 at 8:00 am for rising juniors, visiting students, and Eli Whitney students. You must submit your pre-registration and statement of interest no later than April 21 at 5:00 pm. \n\nAlso, six spaces in this seminar are reserved for students in the sponsoring college, so please indicate your residential college. Falsifying this information will be subject to disciplinary action. Instructors will respond to requests by April 25.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89837\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": true + "syllabus_url": "https://yale.instructure.com/courses/89837/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": true, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989198446273804, + 0.9989076852798462, + 0.9988645315170288, + 0.9989280104637146, + 0.9988312125205994, + 0.9988721013069153, + 0.9982489347457886, + 0.9989156723022461, + 0.9989269375801086, + 0.998914361000061, + 0.9982116222381592, + 0.9989103078842163 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989333748817444, + 0.9989319443702698, + 0.9989064931869507, + 0.9989336133003235, + 0.9989140033721924, + 0.9989315867424011, + 0.9988694787025452, + 0.9987132549285889, + 0.9989306330680847, + 0.9989336133003235, + 0.998918890953064, + 0.9989271759986877 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9976826906204224, + 0.9988994598388672, + 0.9985396862030029, + 0.9984413981437683, + 0.9989326596260071, + 0.9988712668418884, + 0.9989368319511414, + 0.9988678693771362, + 0.998896598815918, + 0.99871826171875, + 0.9982553124427795, + 0.9989205598831177, + 0.9985902905464172, + 0.9989151954650879 + ], + "sentiment_counts": { + "POSITIVE": 14, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 38, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 38 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -70981,7 +149056,7 @@ "15:30", "17:20", "WLH 203 - William L. Harkness Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -70993,10 +149068,87 @@ "classnotes": "Students must request permission from the instructor to enroll by 5 pm on April 21. Please state briefly (under 200 words) your interest in this course and any relevant experience. Also, six spaces in this seminar are reserved for students in the sponsoring college, so please indicate your residential college. Falsifying this information will be subject to disciplinary action. Instructors will respond to requests by April 25.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89842\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89842/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": true + "colsem": true, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988590478897095, + 0.998831570148468 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987899661064148, + 0.9987708926200867 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988763928413391, + 0.9952576756477356 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 6 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -71036,7 +149188,7 @@ "13:30", "15:20", "WALL53 108 - 53 Wall Street 108", - "https:\/\/map.yale.edu\/?id=1910#!m\/559554" + "https://map.yale.edu/?id=1910#!m/559554" ] ] }, @@ -71048,10 +149200,121 @@ "classnotes": "Students must request permission from the instructor to enroll by 5 pm on April 21. Please state briefly (under 200 words) your interest in this course and any relevant experience. Also, six spaces in this seminar are reserved for students in the sponsoring college, so please indicate your residential college. Falsifying this information will be subject to disciplinary action. Instructors will respond to requests by April 25.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89843\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89843/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": true + "colsem": true, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987014532089233, + 0.9989116191864014, + 0.9989224672317505, + 0.998843789100647, + 0.9987419247627258, + 0.9989128112792969, + 0.9989153146743774 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9995064735412598, + 0.9882943630218506, + 0.9989334940910339, + 0.9989374279975891, + 0.9968798160552979, + 0.9989331364631653, + 0.9989240765571594 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 6 + }, + "sentiment_distribution": { + "NEGATIVE": 0.14285714285714285, + "POSITIVE": 0.8571428571428571 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9974592328071594, + 0.999489426612854, + 0.9988968372344971, + 0.9989295601844788, + 0.9989311099052429, + 0.9994582533836365, + 0.9989218711853027, + 0.9989150762557983 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 0.8636363636363636, + "final_counts": { + "POSITIVE": 19, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.8636363636363636, + "NEGATIVE": 0.13636363636363635 + } + } }, { "season_code": "202303", @@ -71088,7 +149351,7 @@ "15:30", "17:20", "WLH 112 - William L. Harkness Hall 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -71100,10 +149363,97 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89844\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89844/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": true + "colsem": true, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988526105880737, + 0.9978424310684204, + 0.998918890953064 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998925507068634, + 0.9989041090011597, + 0.9989110231399536 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.993084192276001, + 0.9988874793052673, + 0.9989339709281921, + 0.998340368270874, + 0.9988697171211243 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 11 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -71140,7 +149490,7 @@ "9:25", "11:15", "WLH 210 - William L. Harkness Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -71152,15 +149502,43 @@ "classnotes": "Students must request permission from the instructor to enroll by 5 pm on April 21. Please state briefly (under 200 words) your interest in this course and any relevant experience. Also, six spaces in this seminar are reserved for students in the sponsoring college, so please indicate your residential college. Falsifying this information will be subject to disciplinary action. Instructors will respond to requests by April 25.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89846\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": true - }, - { - "season_code": "202303", - "requirements": "", - "description": "This course explores the multifaceted and multimedia approaches used in the industry of recording sound and designing the art objects that contain them. With a focus on experimental and conceptual applications of this technology, students engage in creating sonic\/visual works that subvert, alter or synthesize the various media forms that go into \u2018music production.\u2019 Alongside creative projects, historical and contemporary works of sound art and music production are examined as case studies to exemplify both the norms of the industry and works that subvert them.\u00a0Concepts related to the transmission and reception of sound through various media (tape, vinyl, MP3 etc.) are explored alongside the quirks, limitations and advantages of the milieu of hardware and software options (multi-track recording devices, DAWs etc.) both contemporary and antiquated that have been available to producers and artists alike over the last century and beyond.\u00a0Topics include formatting artwork for sound recordings, recording and editing sound, collaboration on production of both digital and physical media, and more.", + "syllabus_url": "https://yale.instructure.com/courses/89846/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": true, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } + }, + { + "season_code": "202303", + "requirements": "", + "description": "This course explores the multifaceted and multimedia approaches used in the industry of recording sound and designing the art objects that contain them. With a focus on experimental and conceptual applications of this technology, students engage in creating sonic/visual works that subvert, alter or synthesize the various media forms that go into \u2018music production.\u2019 Alongside creative projects, historical and contemporary works of sound art and music production are examined as case studies to exemplify both the norms of the industry and works that subvert them.\u00a0Concepts related to the transmission and reception of sound through various media (tape, vinyl, MP3 etc.) are explored alongside the quirks, limitations and advantages of the milieu of hardware and software options (multi-track recording devices, DAWs etc.) both contemporary and antiquated that have been available to producers and artists alike over the last century and beyond.\u00a0Topics include formatting artwork for sound recordings, recording and editing sound, collaboration on production of both digital and physical media, and more.", "short_title": "The Media of Sound: Experimen...", "title": "The Media of Sound: Experimental Approaches to Sound Recording and Media Design", "school": "YC", @@ -71192,7 +149570,7 @@ "15:30", "17:20", "CCAM 103 - Center for Collab Arts & Media 103", - "https:\/\/map.yale.edu\/?id=1910#!m\/560098" + "https://map.yale.edu/?id=1910#!m/560098" ] ] }, @@ -71204,10 +149582,101 @@ "classnotes": "Students must request permission from the instructor to enroll by 5 pm on April 21. Please state briefly (under 200 words) your interest in this course and any relevant experience.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89852\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89852/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": true + "colsem": true, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998805046081543, + 0.9988679885864258, + 0.9988971948623657, + 0.9988866448402405, + 0.9983265995979309 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998837411403656, + 0.9988899827003479, + 0.9989400506019592 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989007711410522, + 0.9988662004470825, + 0.9989105463027954, + 0.9988177418708801, + 0.9988529682159424 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 13 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -71271,7 +149740,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -71335,7 +149832,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -71372,7 +149897,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -71409,7 +149962,7 @@ "9:00", "10:10", "CR305 100 - 305 Crown Street 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560025" + "https://map.yale.edu/?id=1910#!m/560025" ] ], "Wednesday": [ @@ -71417,7 +149970,7 @@ "9:00", "10:10", "CR305 100 - 305 Crown Street 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560025" + "https://map.yale.edu/?id=1910#!m/560025" ] ] }, @@ -71429,10 +149982,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92142\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92142/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -71469,7 +150050,7 @@ "9:00", "12:15", "YK149 122 - 149 York Street 122", - "https:\/\/map.yale.edu\/?id=1910#!m\/560098" + "https://map.yale.edu/?id=1910#!m/560098" ] ] }, @@ -71484,7 +150065,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -71524,7 +150133,7 @@ "12:00", "13:30", "YK222 314 - 222 York Street 314", - "https:\/\/map.yale.edu\/?id=1910#!m\/559927" + "https://map.yale.edu/?id=1910#!m/559927" ] ] }, @@ -71539,7 +150148,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -71576,7 +150213,7 @@ "9:00", "11:30", "PK205 102 - 205 Park Street 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/559961" + "https://map.yale.edu/?id=1910#!m/559961" ] ] }, @@ -71588,10 +150225,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92096\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92096/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -71628,7 +150293,7 @@ "11:30", "13:30", "YK149 122 - 149 York Street 122", - "https:\/\/map.yale.edu\/?id=1910#!m\/560098" + "https://map.yale.edu/?id=1910#!m/560098" ] ] }, @@ -71640,15 +150305,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92098\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92098/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "Open to non-Theater Management and non-Drama students with prior permission of the instructor.", - "description": "This survey course explores the fundamentals of nonprofit theater marketing, communications, and audience development. Topics range from high-level strategic components such as branding, positioning, audience research, and budgeting (revenue and expense); to campaign tactics including digital channels, direct marketing, traditional advertising, partnerships, and publicity; to data-driven practices such as segmentation, campaign response data\/return on investment, and other key performance indicators. Students develop a single-ticket marketing plan.", + "description": "This survey course explores the fundamentals of nonprofit theater marketing, communications, and audience development. Topics range from high-level strategic components such as branding, positioning, audience research, and budgeting (revenue and expense); to campaign tactics including digital channels, direct marketing, traditional advertising, partnerships, and publicity; to data-driven practices such as segmentation, campaign response data/return on investment, and other key performance indicators. Students develop a single-ticket marketing plan.", "short_title": "Principles of Marketing and A...", "title": "Principles of Marketing and Audience Development", "school": "DR", @@ -71680,7 +150373,7 @@ "12:00", "13:30", "YK222 314 - 222 York Street 314", - "https:\/\/map.yale.edu\/?id=1910#!m\/559927" + "https://map.yale.edu/?id=1910#!m/559927" ] ] }, @@ -71692,10 +150385,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92314\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92314/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -71732,7 +150453,7 @@ "9:00", "10:30", "YK149 PAINT-SHOP - 149 York Street PAINT-SHOP", - "https:\/\/map.yale.edu\/?id=1910#!m\/560098" + "https://map.yale.edu/?id=1910#!m/560098" ] ] }, @@ -71744,10 +150465,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92103\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92103/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -71784,7 +150533,7 @@ "11:30", "13:30", "PK205 101 - 205 Park Street 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559961" + "https://map.yale.edu/?id=1910#!m/559961" ] ] }, @@ -71796,15 +150545,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92105\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92105/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "Open to non-Design students with permission of the instructor.", - "description": "A comprehensive overview of modern, fast-paced compositing and creation techniques for creating 2D and 3Dcontent. The creation of digital content and digital art has many far-reaching application across disciplines and across styles of work and thought. This course is focused on the fast-paced professional work flow of content creation for entertainment professionals, but the methods are universal in their scope and application. The course starts with fundamental industry standards such as Photoshop and AfterEffects; explores alternative emerging prosumer workflows and mobile platform creation; and begins to touch on advanced workflows in modeling\/shading\/rendering as fundamental components of Unreal engine, Unity, and Blender. Best professional practices are taught and adhered to throughout.", + "description": "A comprehensive overview of modern, fast-paced compositing and creation techniques for creating 2D and 3Dcontent. The creation of digital content and digital art has many far-reaching application across disciplines and across styles of work and thought. This course is focused on the fast-paced professional work flow of content creation for entertainment professionals, but the methods are universal in their scope and application. The course starts with fundamental industry standards such as Photoshop and AfterEffects; explores alternative emerging prosumer workflows and mobile platform creation; and begins to touch on advanced workflows in modeling/shading/rendering as fundamental components of Unreal engine, Unity, and Blender. Best professional practices are taught and adhered to throughout.", "short_title": "Digital Compositing & Creatio...", "title": "Digital Compositing & Creation for Designers", "school": "DR", @@ -71836,7 +150613,7 @@ "11:30", "13:30", "CCAM 110 - Center for Collab Arts & Media 110", - "https:\/\/map.yale.edu\/?id=1910#!m\/560098" + "https://map.yale.edu/?id=1910#!m/560098" ] ] }, @@ -71848,10 +150625,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92108\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92108/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -71888,7 +150693,7 @@ "10:00", "11:30", "PK205 102 - 205 Park Street 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/559961" + "https://map.yale.edu/?id=1910#!m/559961" ] ] }, @@ -71900,10 +150705,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92318\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92318/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -71940,7 +150773,7 @@ "12:00", "13:30", "YK222 EX - 222 York Street EX", - "https:\/\/map.yale.edu\/?id=1910#!m\/559927" + "https://map.yale.edu/?id=1910#!m/559927" ] ] }, @@ -71952,10 +150785,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92157\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92157/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -71995,7 +150856,7 @@ "9:00", "11:00", "PK205 101 - 205 Park Street 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559961" + "https://map.yale.edu/?id=1910#!m/559961" ] ] }, @@ -72007,10 +150868,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92113\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92113/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -72050,7 +150939,7 @@ "11:30", "13:30", "CR305 100 - 305 Crown Street 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560025" + "https://map.yale.edu/?id=1910#!m/560025" ] ] }, @@ -72062,10 +150951,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92158\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92158/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -72102,7 +151019,7 @@ "11:30", "13:30", "YK222 B1 - 222 York Street B1", - "https:\/\/map.yale.edu\/?id=1910#!m\/559927" + "https://map.yale.edu/?id=1910#!m/559927" ] ] }, @@ -72114,10 +151031,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92159\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92159/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -72154,7 +151099,7 @@ "9:00", "11:00", "CCAM 110 - Center for Collab Arts & Media 110", - "https:\/\/map.yale.edu\/?id=1910#!m\/560098" + "https://map.yale.edu/?id=1910#!m/560098" ] ] }, @@ -72166,14 +151111,42 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92121\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92121/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", - "requirements": "Open to non-Design and non-Drama students who have completed DRAM 158a\/b.", + "requirements": "Open to non-Design and non-Drama students who have completed DRAM 158a/b.", "description": "This course covers making and dealing with music for drama, with a focus on workflows, methods, and practical skills. Topics include: spotting, writing methods, demos, orchestration, creative studio techniques, sampling, budgeting, recording session preparation, mixing, delivery. Required of all sound designers. Open to non-Design and non-Drama students with prior permission of the instructor. Limited enrollment. Two hours a week.", "short_title": "Music Production for Drama", "title": "Music Production for Drama", @@ -72206,7 +151179,7 @@ "9:00", "11:00", "PK205 SEMINAR - 205 Park Street SEMINAR", - "https:\/\/map.yale.edu\/?id=1910#!m\/559961" + "https://map.yale.edu/?id=1910#!m/559961" ] ] }, @@ -72218,15 +151191,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92122\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92122/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "Open to non-Theater Management and non-Drama students with prior permission of the instructor.", - "description": "This course focuses on the fundamentals of commercial producing on Broadway. Among the topics to be covered: why produce commercially; who produces; Broadway and Off-Broadway; the relationships between commercial producers and nonprofits; and ethical issues in a commercial setting. Practical matters covered include optioning and developing work, raising money, creating budgets, and utilizing marketing\/press\/advertising to attract an audience.", + "description": "This course focuses on the fundamentals of commercial producing on Broadway. Among the topics to be covered: why produce commercially; who produces; Broadway and Off-Broadway; the relationships between commercial producers and nonprofits; and ethical issues in a commercial setting. Practical matters covered include optioning and developing work, raising money, creating budgets, and utilizing marketing/press/advertising to attract an audience.", "short_title": "Producing for the Commercial ...", "title": "Producing for the Commercial Theater", "school": "DR", @@ -72258,7 +151259,7 @@ "9:30", "13:00", "PK217 206 - 217 Park Street 206", - "https:\/\/map.yale.edu\/?id=1910#!m\/560070" + "https://map.yale.edu/?id=1910#!m/560070" ] ] }, @@ -72270,10 +151271,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92324\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92324/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -72310,7 +151339,7 @@ "9:00", "11:00", "YK212 106 - 212 York Street 106", - "https:\/\/map.yale.edu\/?id=1910#!m\/559604" + "https://map.yale.edu/?id=1910#!m/559604" ] ] }, @@ -72322,10 +151351,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92145\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92145/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -72362,7 +151419,7 @@ "11:30", "13:30", "CCAM 110 - Center for Collab Arts & Media 110", - "https:\/\/map.yale.edu\/?id=1910#!m\/560098" + "https://map.yale.edu/?id=1910#!m/560098" ] ] }, @@ -72374,10 +151431,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92131\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92131/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -72423,10 +151508,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91933\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91933/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -72463,7 +151576,7 @@ "11:40", "13:30", "PK217 206 - 217 Park Street 206", - "https:\/\/map.yale.edu\/?id=1910#!m\/560070" + "https://map.yale.edu/?id=1910#!m/560070" ] ] }, @@ -72475,15 +151588,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91934\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91934/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "Open to non-Dramaturgy and Dramatic Criticism students and non-Drama students with permission of the instructor.", - "description": "An exploration of the history and theory of dance and movement performances since 1900, with an emphasis on American concert-dance contexts, though discussion of vital alternative performance contexts is a key part of our term\u2019s work. This seminar combines extensive video viewing, whenever possible, with primary source readings from choreographers and critics, and recent dance studies scholarship. Artists\/topics covered include Isadora Duncan, Mary Wigman, Martha Graham, Doris Humphrey, Katherine Dunham, Pearl Primus, Jos\u00e9 Lim\u00f3n, tap dance, George Balanchine, Alvin Ailey, Tatsumi Hijikata\/Butoh, Cage\/Cunningham, Judson Dance Theater, Contact Improvisation, Pina Bausch\/Tanztheater Wuppertal, William Forsythe, Anne Teresa De Keersmaeker, Bill T. Jones, Ralph Lemon, Urban Bush Women, Xavier Le Roy, J\u00e9r\u00f4me Bel, Sarah Michelson.", + "description": "An exploration of the history and theory of dance and movement performances since 1900, with an emphasis on American concert-dance contexts, though discussion of vital alternative performance contexts is a key part of our term\u2019s work. This seminar combines extensive video viewing, whenever possible, with primary source readings from choreographers and critics, and recent dance studies scholarship. Artists/topics covered include Isadora Duncan, Mary Wigman, Martha Graham, Doris Humphrey, Katherine Dunham, Pearl Primus, Jos\u00e9 Lim\u00f3n, tap dance, George Balanchine, Alvin Ailey, Tatsumi Hijikata/Butoh, Cage/Cunningham, Judson Dance Theater, Contact Improvisation, Pina Bausch/Tanztheater Wuppertal, William Forsythe, Anne Teresa De Keersmaeker, Bill T. Jones, Ralph Lemon, Urban Bush Women, Xavier Le Roy, J\u00e9r\u00f4me Bel, Sarah Michelson.", "short_title": "Dance and Movement Performanc...", "title": "Dance and Movement Performance, 1900\u2013Present", "school": "DR", @@ -72515,7 +151656,7 @@ "11:40", "13:30", "CR305 009 - 305 Crown Street 009", - "https:\/\/map.yale.edu\/?id=1910#!m\/560025" + "https://map.yale.edu/?id=1910#!m/560025" ] ] }, @@ -72527,10 +151668,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91935\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91935/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -72567,7 +151736,7 @@ "9:00", "9:50", "CR305 100 - 305 Crown Street 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560025" + "https://map.yale.edu/?id=1910#!m/560025" ] ], "Thursday": [ @@ -72575,25 +151744,25 @@ "9:00", "9:50", "CR305 100 - 305 Crown Street 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560025" + "https://map.yale.edu/?id=1910#!m/560025" ], [ "10:00", "10:50", "PK205 102 - 205 Park Street 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/560025" + "https://map.yale.edu/?id=1910#!m/560025" ], [ "10:00", "10:50", "CR305 010 - 305 Crown Street 010", - "https:\/\/map.yale.edu\/?id=1910#!m\/560025" + "https://map.yale.edu/?id=1910#!m/560025" ], [ "10:00", "10:50", "CR305 100 - 305 Crown Street 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560025" + "https://map.yale.edu/?id=1910#!m/560025" ] ] }, @@ -72605,10 +151774,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91925\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91925/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -72646,7 +151843,7 @@ "11:30", "13:30", "STOECK 210 - Stoeckel Hall (renovated) 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ] }, @@ -72658,10 +151855,87 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90205\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90205/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988388419151306, + 0.9989207983016968 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989053010940552, + 0.9989216327667236 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989393353462219, + 0.9988183379173279 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 6 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -72698,13 +151972,13 @@ "9:00", "10:15", "HQ C64 - Humanities Quadrangle C64", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ], [ "11:35", "12:25", "HQ L02 - Humanities Quadrangle L02", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -72712,7 +151986,7 @@ "9:00", "10:15", "HQ C64 - Humanities Quadrangle C64", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -72728,10 +152002,87 @@ "classnotes": "", "final_exam": "Tuesday, December 19, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91268\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91268/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984270334243774, + 0.9988793730735779 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981476068496704, + 0.998490571975708 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988774657249451, + 0.9980607628822327 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 6 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -72768,7 +152119,7 @@ "9:00", "10:15", "HQ 309 - Humanities Quadrangle 309", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -72776,7 +152127,7 @@ "9:00", "10:15", "HQ 309 - Humanities Quadrangle 309", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Monday": [ @@ -72784,7 +152135,7 @@ "11:35", "12:25", "HQ L02 - Humanities Quadrangle L02", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -72800,10 +152151,113 @@ "classnotes": "", "final_exam": "Tuesday, December 19, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91269\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91269/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988386034965515, + 0.9954147338867188, + 0.9985712766647339, + 0.9989134073257446, + 0.9987801909446716, + 0.9983371496200562, + 0.9988090991973877 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986655712127686, + 0.9988188147544861, + 0.9989053010940552, + 0.9988425970077515, + 0.9994994401931763, + 0.9988504648208618 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988516569137573, + 0.9989104270935059, + 0.9989122152328491, + 0.9994927644729614, + 0.9988954067230225 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 0.8888888888888888, + "final_counts": { + "POSITIVE": 16, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + } + } }, { "season_code": "202303", @@ -72840,13 +152294,13 @@ "11:35", "12:25", "HQ L02 - Humanities Quadrangle L02", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ], [ "13:00", "14:15", "HQ 225 - Humanities Quadrangle 225", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -72854,7 +152308,7 @@ "13:00", "14:15", "HQ 225 - Humanities Quadrangle 225", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -72870,10 +152324,99 @@ "classnotes": "", "final_exam": "Tuesday, December 19, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91270\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91270/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986687898635864, + 0.9989368319511414, + 0.9988968372344971, + 0.998890221118927 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989145994186401, + 0.9988757967948914, + 0.9989239573478699, + 0.998700737953186 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988051652908325, + 0.9988583326339722, + 0.9989055395126343, + 0.9989194869995117 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 12 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -72910,7 +152453,7 @@ "13:00", "14:15", "WLH 013 - William L. Harkness Hall 013", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -72918,7 +152461,7 @@ "13:00", "14:15", "WLH 013 - William L. Harkness Hall 013", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Monday": [ @@ -72926,7 +152469,7 @@ "11:35", "12:25", "HQ L02 - Humanities Quadrangle L02", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -72942,10 +152485,119 @@ "classnotes": "", "final_exam": "Tuesday, December 19, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91271\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91271/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988846182823181, + 0.9988645315170288, + 0.9988223910331726, + 0.9988798499107361, + 0.9989204406738281, + 0.998890221118927, + 0.9986342787742615, + 0.9989055395126343 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988780617713928, + 0.9987996816635132, + 0.998907208442688, + 0.99893718957901, + 0.9988683462142944 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988409876823425, + 0.9988901019096375, + 0.9988725781440735, + 0.9988910555839539, + 0.9988676309585571, + 0.998619794845581, + 0.9984036087989807, + 0.9988460540771484, + 0.9989136457443237 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 22, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 22 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -72982,13 +152634,13 @@ "14:30", "15:45", "WLH 203 - William L. Harkness Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ], [ "11:35", "12:25", "HQ L02 - Humanities Quadrangle L02", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -72996,7 +152648,7 @@ "14:30", "15:45", "WLH 203 - William L. Harkness Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -73012,10 +152664,111 @@ "classnotes": "", "final_exam": "Tuesday, December 19, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91272\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91272/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988561868667603, + 0.9988954067230225, + 0.9989194869995117, + 0.9988692402839661, + 0.9985835552215576, + 0.9987094402313232 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989221096038818, + 0.9989266991615295, + 0.9988507032394409, + 0.996699869632721 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989404082298279, + 0.9988783001899719, + 0.9988905787467957, + 0.9989211559295654, + 0.9988476037979126, + 0.9989321827888489, + 0.9888258576393127, + 0.9986005425453186 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 18 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -73052,7 +152805,7 @@ "14:30", "15:45", "WALL53 B-02 - 53 Wall Street B-02", - "https:\/\/map.yale.edu\/?id=1910#!m\/559554" + "https://map.yale.edu/?id=1910#!m/559554" ] ], "Thursday": [ @@ -73060,7 +152813,7 @@ "14:30", "15:45", "WALL53 B-02 - 53 Wall Street B-02", - "https:\/\/map.yale.edu\/?id=1910#!m\/559554" + "https://map.yale.edu/?id=1910#!m/559554" ] ], "Monday": [ @@ -73068,7 +152821,7 @@ "11:35", "12:25", "HQ L02 - Humanities Quadrangle L02", - "https:\/\/map.yale.edu\/?id=1910#!m\/559554" + "https://map.yale.edu/?id=1910#!m/559554" ] ] }, @@ -73084,10 +152837,87 @@ "classnotes": "", "final_exam": "Tuesday, December 19, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91273\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91273/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984501600265503, + 0.9988896250724792 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988566637039185, + 0.9989302754402161 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9976826906204224, + 0.9989331364631653 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 6 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -73124,7 +152954,7 @@ "11:35", "12:50", "HQ C07 - Humanities Quadrangle C07", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -73132,7 +152962,7 @@ "11:35", "12:50", "HQ C07 - Humanities Quadrangle C07", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Monday": [ @@ -73140,7 +152970,7 @@ "11:35", "12:25", "HQ L02 - Humanities Quadrangle L02", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -73156,10 +152986,115 @@ "classnotes": "", "final_exam": "Tuesday, December 19, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91274\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91274/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987775683403015, + 0.9988954067230225, + 0.9976640939712524, + 0.9989239573478699, + 0.9989171028137207, + 0.9988166093826294 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989069700241089, + 0.9988815188407898, + 0.9988240599632263, + 0.9988337159156799, + 0.9988768696784973, + 0.9989185333251953, + 0.9989368319511414 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988415837287903, + 0.9989163875579834, + 0.9986114501953125, + 0.998898983001709, + 0.9987474679946899, + 0.9989076852798462, + 0.9988987445831299 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 20 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -73196,13 +153131,13 @@ "13:00", "14:15", "WLH 202 - William L. Harkness Hall 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ], [ "11:35", "12:25", "HQ L02 - Humanities Quadrangle L02", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -73210,7 +153145,7 @@ "13:00", "14:15", "WLH 202 - William L. Harkness Hall 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -73226,10 +153161,99 @@ "classnotes": "", "final_exam": "Tuesday, December 19, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91275\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91275/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988982677459717, + 0.9989056587219238, + 0.9986404776573181, + 0.9988793730735779 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989163875579834, + 0.9989093542098999, + 0.9989173412322998, + 0.9968722462654114 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988791346549988, + 0.9989224672317505, + 0.998925507068634, + 0.9988431930541992 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 12 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -73266,7 +153290,7 @@ "9:00", "10:15", "HQ 129 - Humanities Quadrangle 129", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -73274,13 +153298,13 @@ "9:00", "10:15", "HQ 129 - Humanities Quadrangle 129", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ], [ "11:35", "12:25", "HQ L02 - Humanities Quadrangle L02", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -73298,10 +153322,103 @@ "classnotes": "", "final_exam": "Friday, December 15, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91276\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91276/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989156723022461, + 0.9988334774971008, + 0.9986577033996582, + 0.9989379048347473, + 0.9987571239471436 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989005327224731, + 0.9989022016525269, + 0.990778923034668, + 0.9987970590591431, + 0.9988747239112854 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989035129547119, + 0.9989186525344849, + 0.9988343119621277, + 0.9984515905380249 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 14 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -73338,7 +153455,7 @@ "14:30", "15:45", "WLH 209 - William L. Harkness Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -73346,13 +153463,13 @@ "14:30", "15:45", "WLH 209 - William L. Harkness Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ], [ "11:35", "12:25", "HQ L02 - Humanities Quadrangle L02", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -73370,10 +153487,97 @@ "classnotes": "", "final_exam": "Friday, December 15, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91277\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91277/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984971284866333, + 0.9989135265350342, + 0.9988881945610046 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988144636154175, + 0.9988784193992615, + 0.9994174242019653, + 0.990757167339325 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982526898384094, + 0.9989078044891357, + 0.9986860156059265 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 0.9, + "final_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + } + } }, { "season_code": "202303", @@ -73410,7 +153614,7 @@ "13:00", "14:15", "WLH 007 - William L. Harkness Hall 007", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -73418,7 +153622,7 @@ "13:00", "14:15", "WLH 007 - William L. Harkness Hall 007", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -73426,7 +153630,7 @@ "11:35", "12:25", "HQ L02 - Humanities Quadrangle L02", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -73444,10 +153648,105 @@ "classnotes": "", "final_exam": "Friday, December 15, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91278\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91278/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9970157146453857, + 0.9988872408866882, + 0.9988865256309509, + 0.9988377690315247, + 0.9989012479782104 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988364577293396, + 0.9989163875579834, + 0.998930037021637, + 0.9988909363746643, + 0.9988034963607788 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9976826906204224, + 0.9988484382629395, + 0.998933732509613, + 0.9989239573478699, + 0.9989386200904846 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 15 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -73484,7 +153783,7 @@ "13:00", "14:15", "LC 203 - Linsly-Chittenden Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -73492,7 +153791,7 @@ "13:00", "14:15", "LC 203 - Linsly-Chittenden Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -73500,7 +153799,7 @@ "11:35", "12:25", "HQ L02 - Humanities Quadrangle L02", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -73518,10 +153817,103 @@ "classnotes": "", "final_exam": "Friday, December 15, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91279\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91279/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9945480227470398, + 0.9988850951194763, + 0.9989038705825806, + 0.9984404444694519 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.25, + "POSITIVE": 0.75 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986788630485535, + 0.9880332946777344, + 0.9985890984535217, + 0.9994839429855347, + 0.9983274340629578 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.997259259223938, + 0.9987668991088867, + 0.9988641738891602, + 0.9989308714866638 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 0.8461538461538461, + "final_counts": { + "NEGATIVE": 2, + "POSITIVE": 11 + }, + "final_distribution": { + "NEGATIVE": 0.15384615384615385, + "POSITIVE": 0.8461538461538461 + } + } }, { "season_code": "202303", @@ -73558,7 +153950,7 @@ "14:30", "15:45", "WALL81 101 - 81 Wall Street 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ], "Wednesday": [ @@ -73566,13 +153958,13 @@ "14:30", "15:45", "WALL81 101 - 81 Wall Street 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ], [ "11:35", "12:25", "HQ L02 - Humanities Quadrangle L02", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -73590,10 +153982,131 @@ "classnotes": "", "final_exam": "Friday, December 15, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91280\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91280/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998838484287262, + 0.9989137649536133, + 0.9988460540771484, + 0.9981380701065063, + 0.9988945126533508, + 0.998890221118927, + 0.9988981485366821, + 0.9989215135574341, + 0.9989093542098999 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9987466335296631, + 0.9988312125205994, + 0.9980955719947815, + 0.9984691739082336, + 0.9987316727638245, + 0.9988694787025452, + 0.9989098310470581, + 0.9989155530929565, + 0.991091251373291 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984846711158752, + 0.9989097118377686, + 0.998887836933136, + 0.9989074468612671, + 0.9989318251609802, + 0.9989205598831177, + 0.9989308714866638, + 0.9989215135574341, + 0.9989227652549744 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 26, + "final_proportion": 0.9629629629629629, + "final_counts": { + "POSITIVE": 26, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9629629629629629, + "NEGATIVE": 0.037037037037037035 + } + } }, { "season_code": "202303", @@ -73630,7 +154143,7 @@ "11:35", "12:50", "WALL81 401 - 81 Wall Street 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ], "Thursday": [ @@ -73638,7 +154151,7 @@ "11:35", "12:50", "WALL81 401 - 81 Wall Street 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ], "Wednesday": [ @@ -73646,7 +154159,7 @@ "11:35", "12:25", "HQ L02 - Humanities Quadrangle L02", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -73664,10 +154177,107 @@ "classnotes": "", "final_exam": "Friday, December 15, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91281\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91281/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989210367202759, + 0.998863935470581, + 0.9988527297973633, + 0.998893678188324, + 0.9966533780097961 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988701939582825, + 0.9987488985061646, + 0.9984525442123413, + 0.9988798499107361, + 0.9989217519760132, + 0.9989287257194519 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987484216690063, + 0.9989346861839294, + 0.9989317059516907, + 0.9988877177238464 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 0.9333333333333333, + "final_counts": { + "POSITIVE": 14, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9333333333333333, + "NEGATIVE": 0.06666666666666667 + } + } }, { "season_code": "202303", @@ -73704,7 +154314,7 @@ "11:35", "12:50", "HQ 309 - Humanities Quadrangle 309", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -73712,15 +154322,166 @@ "11:35", "12:50", "HQ 309 - Humanities Quadrangle 309", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" + ] + ], + "Wednesday": [ + [ + "11:35", + "12:25", + "HQ L02 - Humanities Quadrangle L02", + "https://map.yale.edu/?id=1910#!m/563690" + ] + ] + }, + "skills": [ + "WR" + ], + "areas": [ + "Hu" + ], + "flags": [ + "YC EP&E: Intro Ethics" + ], + "regnotes": "", + "rp_attr": "", + "classnotes": "", + "final_exam": "Friday, December 15, 2023 at 2pm", + "course_home_url": "", + "syllabus_url": "https://yale.instructure.com/courses/91282/assignments/syllabus", + "fysem": true, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989000558853149, + 0.9988909363746643 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9953420162200928, + 0.9987272620201111 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 1 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986492991447449, + 0.9989182949066162 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 5, + "final_proportion": 0.8333333333333334, + "final_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + } + } + }, + { + "season_code": "202303", + "requirements": "", + "description": "An examination of major figures in the history of Western philosophy with an aim of discerning characteristic philosophical problems and their interconnections. Emphasis on Plato and Aristotle in the fall term. In the spring term, modern philosophers include Descartes, Berkeley, Hume, Kant, and Nietzsche.", + "short_title": "Directed Studies: Philosophy", + "title": "Directed Studies: Philosophy", + "school": "YC", + "credits": 1.0, + "extra_info": "ACTIVE", + "professors": [ + "Mordechai Levy-Eichel" + ], + "professor_emails": [ + "mordechai.levy-eichel@yale.edu" + ], + "professor_ids": [ + "15635" + ], + "crn": "22374", + "crns": [ + "22374" + ], + "course_code": "DRST 003", + "subject": "DRST", + "number": "003", + "section": "8", + "times_summary": "MW 2:30pm-3:45pm + 1", + "locations_summary": "WLH 202 - William L. Harkness Hall 202 + 1", + "times_long_summary": "MW 2:30pm-3:45pm in WLH 202 - William L. Harkness Hall 202\nW 11:35am-12:25pm in HQ L02 - Humanities Quadrangle L02", + "times_by_day": { + "Monday": [ + [ + "14:30", + "15:45", + "WLH 202 - William L. Harkness Hall 202", + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ + [ + "14:30", + "15:45", + "WLH 202 - William L. Harkness Hall 202", + "https://map.yale.edu/?id=1910#!m/560127" + ], [ "11:35", "12:25", "HQ L02 - Humanities Quadrangle L02", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -73738,82 +154499,113 @@ "classnotes": "", "final_exam": "Friday, December 15, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91282\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91555/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "", - "description": "An examination of major figures in the history of Western philosophy with an aim of discerning characteristic philosophical problems and their interconnections. Emphasis on Plato and Aristotle in the fall term. In the spring term, modern philosophers include Descartes, Berkeley, Hume, Kant, and Nietzsche.", - "short_title": "Directed Studies: Philosophy", - "title": "Directed Studies: Philosophy", - "school": "YC", - "credits": 1.0, - "extra_info": "ACTIVE", - "professors": [ - "Mordechai Levy-Eichel" - ], - "professor_emails": [ - "mordechai.levy-eichel@yale.edu" - ], - "professor_ids": [ - "15635" - ], - "crn": "22374", - "crns": [ - "22374" - ], - "course_code": "DRST 003", - "subject": "DRST", - "number": "003", - "section": "8", - "times_summary": "MW 2:30pm-3:45pm + 1", - "locations_summary": "WLH 202 - William L. Harkness Hall 202 + 1", - "times_long_summary": "MW 2:30pm-3:45pm in WLH 202 - William L. Harkness Hall 202\nW 11:35am-12:25pm in HQ L02 - Humanities Quadrangle L02", - "times_by_day": { - "Monday": [ - [ - "14:30", - "15:45", - "WLH 202 - William L. Harkness Hall 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" - ] - ], - "Wednesday": [ - [ - "14:30", - "15:45", - "WLH 202 - William L. Harkness Hall 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" ], - [ - "11:35", - "12:25", - "HQ L02 - Humanities Quadrangle L02", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" - ] - ] - }, - "skills": [ - "WR" - ], - "areas": [ - "Hu" - ], - "flags": [ - "YC EP&E: Intro Ethics" - ], - "regnotes": "", - "rp_attr": "", - "classnotes": "", - "final_exam": "Friday, December 15, 2023 at 2pm", - "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91555\/assignments\/syllabus", - "fysem": true, - "sysem": false, - "colsem": false + "sentiment_scores": [ + 0.9984337687492371, + 0.9981213212013245, + 0.9988977909088135, + 0.9969226717948914, + 0.9988062381744385, + 0.9988381266593933 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988846182823181, + 0.999488353729248, + 0.9988879561424255, + 0.9988197684288025, + 0.9988186955451965, + 0.9977445602416992 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9969671368598938, + 0.9989138841629028, + 0.9989039897918701, + 0.998875081539154, + 0.9989296793937683, + 0.998832643032074 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 0.9444444444444444, + "final_counts": { + "POSITIVE": 17, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9444444444444444, + "NEGATIVE": 0.05555555555555555 + } + } }, { "season_code": "202303", @@ -73850,7 +154642,7 @@ "9:00", "10:15", "WLH 112 - William L. Harkness Hall 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -73858,7 +154650,7 @@ "9:00", "10:15", "WLH 112 - William L. Harkness Hall 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Friday": [ @@ -73866,7 +154658,7 @@ "11:35", "12:25", "HQ L02 - Humanities Quadrangle L02", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -73890,10 +154682,97 @@ "classnotes": "", "final_exam": "Sunday, December 17, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91283\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91283/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998927891254425, + 0.9989232420921326, + 0.9984235763549805, + 0.9989033937454224 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998925507068634, + 0.9986869692802429, + 0.9940983057022095 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989389777183533, + 0.9989311099052429, + 0.9989233613014221, + 0.9988278746604919 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 11 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -73930,7 +154809,7 @@ "14:30", "15:45", "WLH 007 - William L. Harkness Hall 007", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -73938,7 +154817,7 @@ "14:30", "15:45", "WLH 007 - William L. Harkness Hall 007", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Friday": [ @@ -73946,7 +154825,7 @@ "11:35", "12:25", "HQ L02 - Humanities Quadrangle L02", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -73970,10 +154849,103 @@ "classnotes": "", "final_exam": "Sunday, December 17, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91284\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91284/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988349080085754, + 0.9989187717437744, + 0.9986697435379028 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988478422164917, + 0.9989199638366699, + 0.9987523555755615, + 0.998927891254425, + 0.9974761605262756 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988659620285034, + 0.9989103078842163, + 0.9989352822303772, + 0.9989171028137207, + 0.969053328037262 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 0.8461538461538461, + "final_counts": { + "POSITIVE": 11, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8461538461538461, + "NEGATIVE": 0.15384615384615385 + } + } }, { "season_code": "202303", @@ -74010,7 +154982,7 @@ "14:30", "15:45", "LC 203 - Linsly-Chittenden Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -74018,7 +154990,7 @@ "14:30", "15:45", "LC 203 - Linsly-Chittenden Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Friday": [ @@ -74026,7 +154998,7 @@ "11:35", "12:25", "HQ L02 - Humanities Quadrangle L02", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -74050,10 +155022,111 @@ "classnotes": "", "final_exam": "Sunday, December 17, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91285\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91285/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988942742347717, + 0.998889148235321, + 0.9675979614257812, + 0.9988415837287903, + 0.9988755583763123, + 0.9988512992858887, + 0.9988617897033691 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989198446273804, + 0.9989332556724548, + 0.9989025592803955, + 0.9988021850585938, + 0.9989269375801086 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989243149757385, + 0.9989302754402161, + 0.9987577199935913, + 0.9989179372787476, + 0.9988824725151062, + 0.9988333582878113 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 18 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -74090,7 +155163,7 @@ "14:30", "15:45", "PH 207 - Phelps Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ], "Thursday": [ @@ -74098,7 +155171,7 @@ "14:30", "15:45", "PH 207 - Phelps Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ], "Friday": [ @@ -74106,7 +155179,7 @@ "11:35", "12:25", "HQ L02 - Humanities Quadrangle L02", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -74130,10 +155203,99 @@ "classnotes": "", "final_exam": "Sunday, December 17, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91286\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91286/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989266991615295, + 0.9988547563552856, + 0.9988903403282166, + 0.9988805651664734 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989263415336609, + 0.9989230036735535, + 0.9884859323501587, + 0.9887169599533081 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989388585090637, + 0.998909592628479, + 0.9987550973892212, + 0.9988791346549988 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 12 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -74170,7 +155332,7 @@ "14:30", "15:45", "HQ 401 - Humanities Quadrangle 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -74178,7 +155340,7 @@ "14:30", "15:45", "HQ 401 - Humanities Quadrangle 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Friday": [ @@ -74186,7 +155348,7 @@ "11:35", "12:25", "HQ L02 - Humanities Quadrangle L02", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -74210,10 +155372,103 @@ "classnotes": "", "final_exam": "Sunday, December 17, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91287\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91287/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.997273862361908, + 0.9004648327827454, + 0.9988614320755005, + 0.998890221118927, + 0.9978245496749878 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9895472526550293, + 0.9984796643257141, + 0.9988676309585571, + 0.9989210367202759, + 0.9988810420036316 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 4 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2, + "POSITIVE": 0.8 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986855387687683, + 0.9986603260040283, + 0.9983489513397217 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 0.7692307692307693, + "final_counts": { + "POSITIVE": 10, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.7692307692307693, + "NEGATIVE": 0.23076923076923078 + } + } }, { "season_code": "202303", @@ -74250,7 +155505,7 @@ "11:35", "12:50", "HQ 225 - Humanities Quadrangle 225", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -74258,7 +155513,7 @@ "11:35", "12:50", "HQ 225 - Humanities Quadrangle 225", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Friday": [ @@ -74266,7 +155521,7 @@ "11:35", "12:25", "HQ L02 - Humanities Quadrangle L02", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -74290,10 +155545,83 @@ "classnotes": "", "final_exam": "Sunday, December 17, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91288\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91288/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987993240356445, + 0.9987832903862 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987982511520386 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988605976104736 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 4, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 4 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -74330,7 +155658,7 @@ "11:35", "12:50", "HQ C65 - Humanities Quadrangle C65", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -74338,7 +155666,7 @@ "11:35", "12:50", "HQ C65 - Humanities Quadrangle C65", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Friday": [ @@ -74346,7 +155674,7 @@ "11:35", "12:25", "HQ L02 - Humanities Quadrangle L02", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -74370,10 +155698,137 @@ "classnotes": "", "final_exam": "Sunday, December 17, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91289\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91289/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989132881164551, + 0.9985783100128174, + 0.9989234805107117, + 0.9988872408866882, + 0.9988736510276794, + 0.998920202255249, + 0.9989166259765625, + 0.9987927675247192, + 0.9986404776573181, + 0.9973474740982056 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.998938262462616, + 0.9989005327224731, + 0.8884648680686951, + 0.9989286065101624, + 0.9986507296562195, + 0.9989206790924072, + 0.9988943934440613, + 0.9988947510719299, + 0.9988515377044678, + 0.9993740916252136 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9962732791900635, + 0.9982830286026001, + 0.9989137649536133, + 0.998933732509613, + 0.9986973404884338, + 0.9989145994186401, + 0.9989268183708191, + 0.9984112977981567, + 0.9988659620285034, + 0.9989235997200012 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 28, + "final_proportion": 0.9333333333333333, + "final_counts": { + "POSITIVE": 28, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9333333333333333, + "NEGATIVE": 0.06666666666666667 + } + } }, { "season_code": "202303", @@ -74410,7 +155865,7 @@ "9:00", "10:15", "HQ C07 - Humanities Quadrangle C07", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -74418,7 +155873,7 @@ "9:00", "10:15", "HQ C07 - Humanities Quadrangle C07", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Friday": [ @@ -74426,7 +155881,7 @@ "11:35", "12:25", "HQ L02 - Humanities Quadrangle L02", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -74450,10 +155905,115 @@ "classnotes": "", "final_exam": "Sunday, December 17, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91451\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91451/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989054203033447, + 0.9989070892333984, + 0.9982331991195679, + 0.9988879561424255, + 0.9987503290176392, + 0.9987524747848511, + 0.9986976385116577 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988896250724792, + 0.9954060316085815, + 0.9986176490783691, + 0.9904265999794006, + 0.9988759160041809, + 0.9963055849075317, + 0.9988941550254822 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989136457443237, + 0.9988253712654114, + 0.998914361000061, + 0.9989349246025085, + 0.9989112615585327, + 0.9989110231399536 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 20 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -74509,7 +156069,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -74565,7 +156153,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -74596,7 +156212,7 @@ "13:15", "14:30", "WLH 210 - William L. Harkness Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -74604,7 +156220,7 @@ "13:15", "14:30", "WLH 210 - William L. Harkness Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -74621,7 +156237,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -74660,7 +156304,7 @@ "13:00", "14:15", "LC 208 - Linsly-Chittenden Hall 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -74668,7 +156312,7 @@ "13:00", "14:15", "LC 208 - Linsly-Chittenden Hall 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -74686,10 +156330,99 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89882\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89882/assignments/syllabus", "fysem": true, "sysem": true, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998794436454773, + 0.9968249797821045 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9875105619430542, + 0.9986365437507629, + 0.9931440353393555, + 0.9988499879837036, + 0.9994962215423584 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.6, + "POSITIVE": 0.4 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.6 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9995063543319702, + 0.9986275434494019, + 0.9991681575775146, + 0.9989309906959534 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "final_label": "neutral", + "final_count": 6, + "final_proportion": 0.5, + "final_counts": { + "POSITIVE": 6, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.5454545454545454, + "NEGATIVE": 0.45454545454545453 + } + } }, { "season_code": "202303", @@ -74729,7 +156462,7 @@ "13:00", "14:15", "YSB MARSH - Yale Science Building MARSH", - "https:\/\/map.yale.edu\/?id=1910#!m\/563700" + "https://map.yale.edu/?id=1910#!m/563700" ] ], "Thursday": [ @@ -74737,7 +156470,7 @@ "13:00", "14:15", "YSB MARSH - Yale Science Building MARSH", - "https:\/\/map.yale.edu\/?id=1910#!m\/563700" + "https://map.yale.edu/?id=1910#!m/563700" ] ] }, @@ -74751,10 +156484,167 @@ "classnotes": "This course may not be taken after S&DS 100.", "final_exam": "Saturday, December 16, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88609\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88609/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986288547515869, + 0.9988621473312378, + 0.9988273978233337, + 0.9988383650779724, + 0.9988778233528137, + 0.9988755583763123, + 0.9976568222045898, + 0.9970819354057312, + 0.9884689450263977, + 0.9986579418182373, + 0.9984567165374756 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989280104637146, + 0.9988529682159424, + 0.9988390803337097, + 0.9994823932647705, + 0.9989215135574341, + 0.9995023012161255, + 0.9987731575965881, + 0.9988569021224976, + 0.9988815188407898, + 0.9971064925193787, + 0.9995018243789673, + 0.9994927644729614, + 0.998767614364624, + 0.9987525939941406, + 0.9995124340057373, + 0.9986024498939514, + 0.9879831075668335 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 6 + }, + "sentiment_distribution": { + "POSITIVE": 0.6470588235294118, + "NEGATIVE": 0.35294117647058826 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6470588235294118 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989308714866638, + 0.9988073110580444, + 0.9985104203224182, + 0.9987102746963501, + 0.9995104074478149, + 0.998910665512085, + 0.996212363243103, + 0.9987634420394897, + 0.9988951086997986, + 0.9988705515861511, + 0.9988967180252075, + 0.9982576966285706, + 0.9988644123077393, + 0.9870138764381409, + 0.9989023208618164, + 0.9995055198669434, + 0.9988780617713928 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 5 + }, + "sentiment_distribution": { + "POSITIVE": 0.7058823529411765, + "NEGATIVE": 0.29411764705882354 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7058823529411765 + ] + }, + "final_label": "POSITIVE", + "final_count": 34, + "final_proportion": 0.7555555555555555, + "final_counts": { + "POSITIVE": 34, + "NEGATIVE": 11 + }, + "final_distribution": { + "POSITIVE": 0.7555555555555555, + "NEGATIVE": 0.24444444444444444 + } + } }, { "season_code": "202303", @@ -74793,7 +156683,7 @@ "11:35", "12:50", "WTS A74 - Watson Center 60 Sachem Street A74", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -74801,7 +156691,7 @@ "11:35", "12:50", "WTS A74 - Watson Center 60 Sachem Street A74", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -74819,10 +156709,153 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88204\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88204/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9272934198379517, + 0.9985878467559814, + 0.995886504650116, + 0.9988849759101868, + 0.9967250227928162, + 0.996715784072876, + 0.9987239241600037, + 0.9933269023895264, + 0.998904824256897, + 0.9959312081336975, + 0.9956230521202087, + 0.998802661895752, + 0.9989074468612671 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 10 + }, + "sentiment_distribution": { + "NEGATIVE": 0.23076923076923078, + "POSITIVE": 0.7692307692307693 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7692307692307693 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989966750144958, + 0.9988179802894592, + 0.9995015859603882, + 0.9988968372344971, + 0.9988933205604553, + 0.9995001554489136, + 0.9978083968162537, + 0.9994285702705383, + 0.9989297986030579, + 0.999504566192627, + 0.9995123147964478, + 0.997967541217804, + 0.9973366856575012 + ], + "sentiment_counts": { + "NEGATIVE": 8, + "POSITIVE": 5 + }, + "sentiment_distribution": { + "NEGATIVE": 0.6153846153846154, + "POSITIVE": 0.38461538461538464 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.6153846153846154 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.993161678314209, + 0.9994816184043884, + 0.998925507068634, + 0.999483585357666, + 0.9983367919921875, + 0.9987724423408508, + 0.9985795021057129, + 0.9989207983016968, + 0.9983795881271362, + 0.9994837045669556, + 0.9971203804016113, + 0.9989166259765625 + ], + "sentiment_counts": { + "NEGATIVE": 7, + "POSITIVE": 5 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5833333333333334, + "POSITIVE": 0.4166666666666667 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.5833333333333334 + ] + }, + "final_label": "neutral", + "final_count": 20, + "final_proportion": 0.5, + "final_counts": { + "NEGATIVE": 18, + "POSITIVE": 20 + }, + "final_distribution": { + "NEGATIVE": 0.47368421052631576, + "POSITIVE": 0.5263157894736842 + } + } }, { "season_code": "202303", @@ -74854,7 +156887,7 @@ "13:30", "14:20", "WTS B51 - Watson Center 60 Sachem Street B51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -74875,7 +156908,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -74907,7 +156968,7 @@ "15:30", "16:20", "WTS B30 - Watson Center 60 Sachem Street B30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -74928,7 +156989,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -74960,7 +157049,7 @@ "9:25", "10:15", "WTS B52 - Watson Center 60 Sachem Street B52", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -74981,7 +157070,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -75013,7 +157130,7 @@ "10:30", "11:20", "DL 120 - Dunham Laboratory 120", - "https:\/\/map.yale.edu\/?id=1910#!m\/560005" + "https://map.yale.edu/?id=1910#!m/560005" ] ] }, @@ -75034,7 +157151,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -75072,7 +157217,7 @@ "11:35", "12:50", "ESC 110 - Environmental Sciences Center 110", - "https:\/\/map.yale.edu\/?id=1910#!m\/560020" + "https://map.yale.edu/?id=1910#!m/560020" ] ], "Thursday": [ @@ -75080,7 +157225,7 @@ "11:35", "12:50", "ESC 110 - Environmental Sciences Center 110", - "https:\/\/map.yale.edu\/?id=1910#!m\/560020" + "https://map.yale.edu/?id=1910#!m/560020" ] ] }, @@ -75098,10 +157243,103 @@ "classnotes": "", "final_exam": "Friday, December 15, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88209\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88209/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988059997558594, + 0.9862778782844543, + 0.998868465423584, + 0.9986211061477661 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.999498724937439, + 0.9988723397254944, + 0.9975464940071106, + 0.9863409399986267 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9995042085647583, + 0.9987009763717651, + 0.9987260699272156, + 0.9988865256309509, + 0.9994906187057495 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.4, + "POSITIVE": 0.6 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6 + ] + }, + "final_label": "POSITIVE", + "final_count": 8, + "final_proportion": 0.6153846153846154, + "final_counts": { + "POSITIVE": 8, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.6153846153846154, + "NEGATIVE": 0.38461538461538464 + } + } }, { "season_code": "202303", @@ -75148,7 +157386,7 @@ "Sc" ], "flags": [ - "YC E&EB: Intermdiate\/Advanced", + "YC E&EB: Intermdiate/Advanced", "YC E&EB: Biodiversity Elective", "YC E&EB: Organismal Elective", "YC E&EB: BS Elective" @@ -75158,10 +157396,38 @@ "classnotes": "", "final_exam": "Wednesday, December 20, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88214\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88214/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -75199,7 +157465,7 @@ "11:35", "12:50", "WLH 119 - William L. Harkness Hall 119", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -75207,7 +157473,7 @@ "11:35", "12:50", "WLH 119 - William L. Harkness Hall 119", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -75216,8 +157482,8 @@ "Sc" ], "flags": [ - "YC E&EB: Intermdiate\/Advanced", - "YC E&EB: Organismal Lec\/Labs", + "YC E&EB: Intermdiate/Advanced", + "YC E&EB: Organismal Lec/Labs", "YC E&EB: Biodiversity Elective", "YC E&EB: Organismal Elective", "YC E&EB: BS Elective" @@ -75227,10 +157493,279 @@ "classnotes": "", "final_exam": "Friday, December 15, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88219\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88219/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988898634910583, + 0.9987247586250305, + 0.998591959476471, + 0.9988454580307007, + 0.998884379863739, + 0.9980891346931458, + 0.9954284429550171, + 0.9994706511497498, + 0.9982112646102905, + 0.9984209537506104, + 0.9988793730735779, + 0.998860239982605, + 0.9988634586334229, + 0.9989029169082642, + 0.9988030195236206, + 0.9986668825149536, + 0.9980765581130981, + 0.9988792538642883, + 0.9988701939582825, + 0.9985744953155518, + 0.9987983703613281, + 0.9989328980445862, + 0.9988045692443848, + 0.9968608617782593, + 0.9987984895706177, + 0.9983364939689636, + 0.9987747073173523, + 0.9987479448318481, + 0.9988368153572083, + 0.9966322779655457 + ], + "sentiment_counts": { + "POSITIVE": 29, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9666666666666667, + "NEGATIVE": 0.03333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9666666666666667 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988577365875244, + 0.9988625049591064, + 0.9988403916358948, + 0.9988347887992859, + 0.9989129304885864, + 0.9989333748817444, + 0.9988948702812195, + 0.9993454813957214, + 0.9986165761947632, + 0.9920198321342468, + 0.9990277290344238, + 0.9987541437149048, + 0.9966214895248413, + 0.9989180564880371, + 0.9978874325752258, + 0.9988252520561218, + 0.9983211159706116, + 0.9986346364021301, + 0.9988561868667603, + 0.9983776807785034, + 0.998789370059967, + 0.998846173286438, + 0.9987924098968506, + 0.9936690926551819, + 0.9988409876823425, + 0.9988946318626404, + 0.9994940757751465, + 0.9982399940490723, + 0.9988546371459961, + 0.9989016056060791, + 0.9987982511520386, + 0.9988425970077515 + ], + "sentiment_counts": { + "POSITIVE": 27, + "NEGATIVE": 5 + }, + "sentiment_distribution": { + "POSITIVE": 0.84375, + "NEGATIVE": 0.15625 + }, + "sentiment_overall": [ + "POSITIVE", + 0.84375 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9990008473396301, + 0.998930037021637, + 0.9989010095596313, + 0.9974368810653687, + 0.9964280724525452, + 0.998885452747345, + 0.9989025592803955, + 0.9989094734191895, + 0.9987226128578186, + 0.9994860887527466, + 0.997718334197998, + 0.9989306330680847, + 0.9982213377952576, + 0.9994276165962219, + 0.9988909363746643, + 0.9987071752548218, + 0.9987542629241943, + 0.9988378882408142, + 0.9988915324211121, + 0.9987587928771973, + 0.9989142417907715, + 0.9806546568870544, + 0.9988058805465698, + 0.9988278746604919, + 0.9991194605827332, + 0.9986103773117065, + 0.9988067150115967, + 0.9986674785614014, + 0.997979462146759, + 0.9991852641105652, + 0.9946130514144897, + 0.9989120960235596, + 0.998785674571991, + 0.9988842606544495, + 0.9988962411880493, + 0.9989215135574341, + 0.9986974596977234, + 0.9908841252326965, + 0.9988816380500793 + ], + "sentiment_counts": { + "NEGATIVE": 9, + "POSITIVE": 30 + }, + "sentiment_distribution": { + "NEGATIVE": 0.23076923076923078, + "POSITIVE": 0.7692307692307693 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7692307692307693 + ] + }, + "final_label": "POSITIVE", + "final_count": 86, + "final_proportion": 0.8514851485148515, + "final_counts": { + "POSITIVE": 86, + "NEGATIVE": 15 + }, + "final_distribution": { + "POSITIVE": 0.8514851485148515, + "NEGATIVE": 0.1485148514851485 + } + } }, { "season_code": "202303", @@ -75277,7 +157812,7 @@ "Sc" ], "flags": [ - "YC E&EB: Organismal Lec\/Labs", + "YC E&EB: Organismal Lec/Labs", "YC E&EB: Biodiversity Elective", "YC E&EB: Organismal Elective", "YC E&EB: BS Elective" @@ -75287,10 +157822,125 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88224\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88224/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9963701963424683, + 0.9988002777099609, + 0.9989138841629028, + 0.9986428618431091, + 0.9984923601150513, + 0.9988766312599182, + 0.9989027976989746, + 0.9988815188407898 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985635876655579, + 0.9988563060760498, + 0.9988031387329102, + 0.9987438321113586, + 0.9980757236480713, + 0.9845659136772156, + 0.9989321827888489, + 0.998599112033844 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989198446273804, + 0.9987941980361938, + 0.9988930821418762, + 0.9989243149757385, + 0.9988273978233337, + 0.998916506767273, + 0.9987252354621887, + 0.9988815188407898 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 23, + "final_proportion": 0.9583333333333334, + "final_counts": { + "POSITIVE": 23, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9583333333333334, + "NEGATIVE": 0.041666666666666664 + } + } }, { "season_code": "202303", @@ -75327,7 +157977,7 @@ "13:30", "15:20", "OML 201 - Osborn Memorial Laboratories 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/559958" + "https://map.yale.edu/?id=1910#!m/559958" ] ] }, @@ -75341,10 +157991,101 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88229\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88229/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989308714866638, + 0.9986615180969238, + 0.9988390803337097, + 0.9989088773727417 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989374279975891, + 0.9987592697143555, + 0.9988971948623657, + 0.9989020824432373 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989245533943176, + 0.9981637597084045, + 0.9988956451416016, + 0.9988632202148438, + 0.9986594915390015 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 13 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -75381,7 +158122,7 @@ "9:00", "10:15", "OML 201 - Osborn Memorial Laboratories 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/559958" + "https://map.yale.edu/?id=1910#!m/559958" ] ], "Wednesday": [ @@ -75389,7 +158130,7 @@ "9:00", "10:15", "OML 201 - Osborn Memorial Laboratories 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/559958" + "https://map.yale.edu/?id=1910#!m/559958" ] ] }, @@ -75398,8 +158139,8 @@ "Sc" ], "flags": [ - "YC E&EB: Intermdiate\/Advanced", - "YC E&EB: Organismal Lec\/Labs", + "YC E&EB: Intermdiate/Advanced", + "YC E&EB: Organismal Lec/Labs", "YC E&EB: Organismal Elective" ], "regnotes": "", @@ -75407,10 +158148,105 @@ "classnotes": "", "final_exam": "Thursday, December 14, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89661\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89661/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988031387329102, + 0.9963639378547668, + 0.9970550537109375, + 0.9988250136375427 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988628625869751, + 0.9960404634475708, + 0.9983249306678772, + 0.9986538887023926, + 0.9989100694656372 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.995717465877533, + 0.998908519744873, + 0.9961276650428772, + 0.9989016056060791, + 0.9989307522773743 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.4, + "POSITIVE": 0.6 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 0.7857142857142857, + "final_counts": { + "POSITIVE": 11, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.7857142857142857, + "NEGATIVE": 0.21428571428571427 + } + } }, { "season_code": "202303", @@ -75448,7 +158284,7 @@ "13:00", "14:15", "OML 201 - Osborn Memorial Laboratories 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/559958" + "https://map.yale.edu/?id=1910#!m/559958" ] ], "Wednesday": [ @@ -75456,7 +158292,7 @@ "13:00", "14:15", "OML 201 - Osborn Memorial Laboratories 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/559958" + "https://map.yale.edu/?id=1910#!m/559958" ] ] }, @@ -75465,7 +158301,7 @@ "Sc" ], "flags": [ - "YC E&EB: Intermdiate\/Advanced", + "YC E&EB: Intermdiate/Advanced", "YC E&EB: BS Elective" ], "regnotes": "", @@ -75473,10 +158309,113 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88237\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88237/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.997724711894989, + 0.9982409477233887, + 0.998700737953186, + 0.9979210495948792, + 0.9985501170158386, + 0.9987649917602539 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989305138587952, + 0.9989288449287415, + 0.9994058609008789, + 0.9956576824188232, + 0.998928964138031, + 0.9989328980445862 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988508224487305, + 0.9989162683486938, + 0.9989092350006104, + 0.9975757002830505, + 0.9988259673118591, + 0.9988399147987366 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 0.8888888888888888, + "final_counts": { + "POSITIVE": 16, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + } + } }, { "season_code": "202303", @@ -75515,7 +158454,7 @@ "13:00", "14:15", "ESC 110 - Environmental Sciences Center 110", - "https:\/\/map.yale.edu\/?id=1910#!m\/560020" + "https://map.yale.edu/?id=1910#!m/560020" ] ], "Thursday": [ @@ -75523,7 +158462,7 @@ "13:00", "14:15", "ESC 110 - Environmental Sciences Center 110", - "https:\/\/map.yale.edu\/?id=1910#!m\/560020" + "https://map.yale.edu/?id=1910#!m/560020" ] ] }, @@ -75534,7 +158473,7 @@ "Sc" ], "flags": [ - "YC E&EB: Intermdiate\/Advanced", + "YC E&EB: Intermdiate/Advanced", "YC E&EB: Biodiversity Elective", "YC E&EB: BS Elective", "YC GLHTH: Health & Societies", @@ -75545,10 +158484,115 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88243\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88243/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998852014541626, + 0.9988372921943665, + 0.9988486766815186, + 0.9987121820449829, + 0.9988836646080017, + 0.9987913966178894, + 0.9955627918243408 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988150596618652, + 0.9972000122070312, + 0.998814582824707, + 0.9988952875137329, + 0.9989210367202759, + 0.9989161491394043 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9974592328071594, + 0.9987358450889587, + 0.9986060261726379, + 0.9988909363746643, + 0.998884379863739, + 0.9989176988601685 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 0.9473684210526315, + "final_counts": { + "POSITIVE": 18, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9473684210526315, + "NEGATIVE": 0.05263157894736842 + } + } }, { "season_code": "202303", @@ -75585,7 +158629,7 @@ "13:00", "14:15", "ESC 110 - Environmental Sciences Center 110", - "https:\/\/map.yale.edu\/?id=1910#!m\/560020" + "https://map.yale.edu/?id=1910#!m/560020" ] ], "Wednesday": [ @@ -75593,7 +158637,7 @@ "13:00", "14:15", "ESC 110 - Environmental Sciences Center 110", - "https:\/\/map.yale.edu\/?id=1910#!m\/560020" + "https://map.yale.edu/?id=1910#!m/560020" ] ] }, @@ -75602,7 +158646,7 @@ "Sc" ], "flags": [ - "YC E&EB: Intermdiate\/Advanced", + "YC E&EB: Intermdiate/Advanced", "YC E&EB: Organismal Elective", "YC E&EB: BS Elective" ], @@ -75611,10 +158655,38 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90178\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/90178/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -75655,7 +158727,7 @@ "14:30", "15:45", "SA10 10 - 10 Sachem Street 10", - "https:\/\/map.yale.edu\/?id=1910#!m\/559538" + "https://map.yale.edu/?id=1910#!m/559538" ] ], "Thursday": [ @@ -75663,7 +158735,7 @@ "14:30", "15:45", "SA10 10 - 10 Sachem Street 10", - "https:\/\/map.yale.edu\/?id=1910#!m\/559538" + "https://map.yale.edu/?id=1910#!m/559538" ] ] }, @@ -75680,15 +158752,116 @@ "classnotes": "Instructor permission is required. Students should request permission via YCS (not email) April 14-21. Those who are granted permission to take the class will be informed via YCS by April 25th.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88834\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88834/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "", - "description": "Individual or small-group study for qualified students who wish to investigate an area of ecology or evolutionary biology not presently covered by regular courses. A student must be sponsored by a faculty member who sets requirements and meets weekly with the student. One or more written examinations and\/or a term paper are required. To register, the student must submit a written plan of study approved by the faculty instructor to the director of undergraduate studies. Students are encouraged to apply during the term preceding the tutorial. Proposals must be submitted no later than the first day of the second week of the term in which the student enrolls in the tutorial. The final paper is due in the hands of the director of undergraduate studies by the last day of reading period in the term of enrollment. In special cases, with approval of the director of undergraduate studies, this course may be elected for more than one term, but only one term may be counted as an elective toward the requirements of the major. Normally, faculty sponsors must be members of the EEB department.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.995227575302124, + 0.9988653659820557, + 0.99817955493927, + 0.9986279010772705, + 0.9986945986747742, + 0.9986296892166138 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989110231399536, + 0.9940661191940308, + 0.9989171028137207, + 0.9986716508865356, + 0.9988534450531006 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998072624206543, + 0.9989064931869507, + 0.994411051273346, + 0.99556964635849, + 0.9988763928413391, + 0.9989089965820312 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 0.8823529411764706, + "final_counts": { + "POSITIVE": 15, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8823529411764706, + "NEGATIVE": 0.11764705882352941 + } + } + }, + { + "season_code": "202303", + "requirements": "", + "description": "Individual or small-group study for qualified students who wish to investigate an area of ecology or evolutionary biology not presently covered by regular courses. A student must be sponsored by a faculty member who sets requirements and meets weekly with the student. One or more written examinations and/or a term paper are required. To register, the student must submit a written plan of study approved by the faculty instructor to the director of undergraduate studies. Students are encouraged to apply during the term preceding the tutorial. Proposals must be submitted no later than the first day of the second week of the term in which the student enrolls in the tutorial. The final paper is due in the hands of the director of undergraduate studies by the last day of reading period in the term of enrollment. In special cases, with approval of the director of undergraduate studies, this course may be elected for more than one term, but only one term may be counted as an elective toward the requirements of the major. Normally, faculty sponsors must be members of the EEB department.", "short_title": "Tutorial", "title": "Tutorial", "school": "YC", @@ -75723,10 +158896,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88247\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88247/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -75766,10 +158967,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88252\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88252/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -75809,10 +159038,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88256\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88256/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -75852,10 +159109,89 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88260\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88260/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984428286552429, + 0.9988885521888733, + 0.9979485869407654 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988828301429749, + 0.9948148131370544 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9653533697128296 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 0 + }, + "sentiment_distribution": { + "NEGATIVE": 1.0, + "POSITIVE": 0.0 + }, + "sentiment_overall": [ + "NEGATIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 4, + "final_proportion": 0.6666666666666666, + "final_counts": { + "POSITIVE": 4, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + } + } }, { "season_code": "202303", @@ -75895,15 +159231,43 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88266\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88266/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "Topics to be announced. Graded Satisfactory\/Unsatisfactory.", + "description": "Topics to be announced. Graded Satisfactory/Unsatisfactory.", "short_title": "Advanced Topics in Ecology an...", "title": "Advanced Topics in Ecology and Evolutionary Biology", "school": "GS", @@ -75935,7 +159299,7 @@ "14:30", "16:30", "OML 201 - Osborn Memorial Laboratories 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/559958" + "https://map.yale.edu/?id=1910#!m/559958" ] ] }, @@ -75947,10 +159311,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88272\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88272/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -75990,7 +159382,7 @@ "13:00", "14:15", "YSB MARSH - Yale Science Building MARSH", - "https:\/\/map.yale.edu\/?id=1910#!m\/563700" + "https://map.yale.edu/?id=1910#!m/563700" ] ], "Thursday": [ @@ -75998,7 +159390,7 @@ "13:00", "14:15", "YSB MARSH - Yale Science Building MARSH", - "https:\/\/map.yale.edu\/?id=1910#!m\/563700" + "https://map.yale.edu/?id=1910#!m/563700" ] ] }, @@ -76010,10 +159402,167 @@ "classnotes": "This course may not be taken after S&DS 100.", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88609\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88609/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986288547515869, + 0.9988621473312378, + 0.9988273978233337, + 0.9988383650779724, + 0.9988778233528137, + 0.9988755583763123, + 0.9976568222045898, + 0.9970819354057312, + 0.9884689450263977, + 0.9986579418182373, + 0.9984567165374756 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989280104637146, + 0.9988529682159424, + 0.9988390803337097, + 0.9994823932647705, + 0.9989215135574341, + 0.9995023012161255, + 0.9987731575965881, + 0.9988569021224976, + 0.9988815188407898, + 0.9971064925193787, + 0.9995018243789673, + 0.9994927644729614, + 0.998767614364624, + 0.9987525939941406, + 0.9995124340057373, + 0.9986024498939514, + 0.9879831075668335 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 6 + }, + "sentiment_distribution": { + "POSITIVE": 0.6470588235294118, + "NEGATIVE": 0.35294117647058826 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6470588235294118 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989308714866638, + 0.9988073110580444, + 0.9985104203224182, + 0.9987102746963501, + 0.9995104074478149, + 0.998910665512085, + 0.996212363243103, + 0.9987634420394897, + 0.9988951086997986, + 0.9988705515861511, + 0.9988967180252075, + 0.9982576966285706, + 0.9988644123077393, + 0.9870138764381409, + 0.9989023208618164, + 0.9995055198669434, + 0.9988780617713928 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 5 + }, + "sentiment_distribution": { + "POSITIVE": 0.7058823529411765, + "NEGATIVE": 0.29411764705882354 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7058823529411765 + ] + }, + "final_label": "POSITIVE", + "final_count": 34, + "final_proportion": 0.7555555555555555, + "final_counts": { + "POSITIVE": 34, + "NEGATIVE": 11 + }, + "final_distribution": { + "POSITIVE": 0.7555555555555555, + "NEGATIVE": 0.24444444444444444 + } + } }, { "season_code": "202303", @@ -76052,7 +159601,7 @@ "11:35", "12:50", "WTS A74 - Watson Center 60 Sachem Street A74", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -76060,7 +159609,7 @@ "11:35", "12:50", "WTS A74 - Watson Center 60 Sachem Street A74", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -76074,10 +159623,153 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88204\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88204/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9272934198379517, + 0.9985878467559814, + 0.995886504650116, + 0.9988849759101868, + 0.9967250227928162, + 0.996715784072876, + 0.9987239241600037, + 0.9933269023895264, + 0.998904824256897, + 0.9959312081336975, + 0.9956230521202087, + 0.998802661895752, + 0.9989074468612671 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 10 + }, + "sentiment_distribution": { + "NEGATIVE": 0.23076923076923078, + "POSITIVE": 0.7692307692307693 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7692307692307693 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989966750144958, + 0.9988179802894592, + 0.9995015859603882, + 0.9988968372344971, + 0.9988933205604553, + 0.9995001554489136, + 0.9978083968162537, + 0.9994285702705383, + 0.9989297986030579, + 0.999504566192627, + 0.9995123147964478, + 0.997967541217804, + 0.9973366856575012 + ], + "sentiment_counts": { + "NEGATIVE": 8, + "POSITIVE": 5 + }, + "sentiment_distribution": { + "NEGATIVE": 0.6153846153846154, + "POSITIVE": 0.38461538461538464 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.6153846153846154 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.993161678314209, + 0.9994816184043884, + 0.998925507068634, + 0.999483585357666, + 0.9983367919921875, + 0.9987724423408508, + 0.9985795021057129, + 0.9989207983016968, + 0.9983795881271362, + 0.9994837045669556, + 0.9971203804016113, + 0.9989166259765625 + ], + "sentiment_counts": { + "NEGATIVE": 7, + "POSITIVE": 5 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5833333333333334, + "POSITIVE": 0.4166666666666667 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.5833333333333334 + ] + }, + "final_label": "neutral", + "final_count": 20, + "final_proportion": 0.5, + "final_counts": { + "NEGATIVE": 18, + "POSITIVE": 20 + }, + "final_distribution": { + "NEGATIVE": 0.47368421052631576, + "POSITIVE": 0.5263157894736842 + } + } }, { "season_code": "202303", @@ -76115,7 +159807,7 @@ "11:35", "12:50", "ESC 110 - Environmental Sciences Center 110", - "https:\/\/map.yale.edu\/?id=1910#!m\/560020" + "https://map.yale.edu/?id=1910#!m/560020" ] ], "Thursday": [ @@ -76123,7 +159815,7 @@ "11:35", "12:50", "ESC 110 - Environmental Sciences Center 110", - "https:\/\/map.yale.edu\/?id=1910#!m\/560020" + "https://map.yale.edu/?id=1910#!m/560020" ] ] }, @@ -76135,10 +159827,103 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88209\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88209/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988059997558594, + 0.9862778782844543, + 0.998868465423584, + 0.9986211061477661 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.999498724937439, + 0.9988723397254944, + 0.9975464940071106, + 0.9863409399986267 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9995042085647583, + 0.9987009763717651, + 0.9987260699272156, + 0.9988865256309509, + 0.9994906187057495 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.4, + "POSITIVE": 0.6 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6 + ] + }, + "final_label": "POSITIVE", + "final_count": 8, + "final_proportion": 0.6153846153846154, + "final_counts": { + "POSITIVE": 8, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.6153846153846154, + "NEGATIVE": 0.38461538461538464 + } + } }, { "season_code": "202303", @@ -76188,10 +159973,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88214\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88214/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -76229,7 +160042,7 @@ "11:35", "12:50", "WLH 119 - William L. Harkness Hall 119", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -76237,7 +160050,7 @@ "11:35", "12:50", "WLH 119 - William L. Harkness Hall 119", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -76249,10 +160062,279 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88219\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88219/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988898634910583, + 0.9987247586250305, + 0.998591959476471, + 0.9988454580307007, + 0.998884379863739, + 0.9980891346931458, + 0.9954284429550171, + 0.9994706511497498, + 0.9982112646102905, + 0.9984209537506104, + 0.9988793730735779, + 0.998860239982605, + 0.9988634586334229, + 0.9989029169082642, + 0.9988030195236206, + 0.9986668825149536, + 0.9980765581130981, + 0.9988792538642883, + 0.9988701939582825, + 0.9985744953155518, + 0.9987983703613281, + 0.9989328980445862, + 0.9988045692443848, + 0.9968608617782593, + 0.9987984895706177, + 0.9983364939689636, + 0.9987747073173523, + 0.9987479448318481, + 0.9988368153572083, + 0.9966322779655457 + ], + "sentiment_counts": { + "POSITIVE": 29, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9666666666666667, + "NEGATIVE": 0.03333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9666666666666667 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988577365875244, + 0.9988625049591064, + 0.9988403916358948, + 0.9988347887992859, + 0.9989129304885864, + 0.9989333748817444, + 0.9988948702812195, + 0.9993454813957214, + 0.9986165761947632, + 0.9920198321342468, + 0.9990277290344238, + 0.9987541437149048, + 0.9966214895248413, + 0.9989180564880371, + 0.9978874325752258, + 0.9988252520561218, + 0.9983211159706116, + 0.9986346364021301, + 0.9988561868667603, + 0.9983776807785034, + 0.998789370059967, + 0.998846173286438, + 0.9987924098968506, + 0.9936690926551819, + 0.9988409876823425, + 0.9988946318626404, + 0.9994940757751465, + 0.9982399940490723, + 0.9988546371459961, + 0.9989016056060791, + 0.9987982511520386, + 0.9988425970077515 + ], + "sentiment_counts": { + "POSITIVE": 27, + "NEGATIVE": 5 + }, + "sentiment_distribution": { + "POSITIVE": 0.84375, + "NEGATIVE": 0.15625 + }, + "sentiment_overall": [ + "POSITIVE", + 0.84375 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9990008473396301, + 0.998930037021637, + 0.9989010095596313, + 0.9974368810653687, + 0.9964280724525452, + 0.998885452747345, + 0.9989025592803955, + 0.9989094734191895, + 0.9987226128578186, + 0.9994860887527466, + 0.997718334197998, + 0.9989306330680847, + 0.9982213377952576, + 0.9994276165962219, + 0.9988909363746643, + 0.9987071752548218, + 0.9987542629241943, + 0.9988378882408142, + 0.9988915324211121, + 0.9987587928771973, + 0.9989142417907715, + 0.9806546568870544, + 0.9988058805465698, + 0.9988278746604919, + 0.9991194605827332, + 0.9986103773117065, + 0.9988067150115967, + 0.9986674785614014, + 0.997979462146759, + 0.9991852641105652, + 0.9946130514144897, + 0.9989120960235596, + 0.998785674571991, + 0.9988842606544495, + 0.9988962411880493, + 0.9989215135574341, + 0.9986974596977234, + 0.9908841252326965, + 0.9988816380500793 + ], + "sentiment_counts": { + "NEGATIVE": 9, + "POSITIVE": 30 + }, + "sentiment_distribution": { + "NEGATIVE": 0.23076923076923078, + "POSITIVE": 0.7692307692307693 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7692307692307693 + ] + }, + "final_label": "POSITIVE", + "final_count": 86, + "final_proportion": 0.8514851485148515, + "final_counts": { + "POSITIVE": 86, + "NEGATIVE": 15 + }, + "final_distribution": { + "POSITIVE": 0.8514851485148515, + "NEGATIVE": 0.1485148514851485 + } + } }, { "season_code": "202303", @@ -76302,10 +160384,125 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88224\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88224/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9963701963424683, + 0.9988002777099609, + 0.9989138841629028, + 0.9986428618431091, + 0.9984923601150513, + 0.9988766312599182, + 0.9989027976989746, + 0.9988815188407898 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985635876655579, + 0.9988563060760498, + 0.9988031387329102, + 0.9987438321113586, + 0.9980757236480713, + 0.9845659136772156, + 0.9989321827888489, + 0.998599112033844 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989198446273804, + 0.9987941980361938, + 0.9988930821418762, + 0.9989243149757385, + 0.9988273978233337, + 0.998916506767273, + 0.9987252354621887, + 0.9988815188407898 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 23, + "final_proportion": 0.9583333333333334, + "final_counts": { + "POSITIVE": 23, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9583333333333334, + "NEGATIVE": 0.041666666666666664 + } + } }, { "season_code": "202303", @@ -76343,7 +160540,7 @@ "13:00", "14:15", "OML 201 - Osborn Memorial Laboratories 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/559958" + "https://map.yale.edu/?id=1910#!m/559958" ] ], "Wednesday": [ @@ -76351,7 +160548,7 @@ "13:00", "14:15", "OML 201 - Osborn Memorial Laboratories 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/559958" + "https://map.yale.edu/?id=1910#!m/559958" ] ] }, @@ -76363,10 +160560,113 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88237\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88237/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.997724711894989, + 0.9982409477233887, + 0.998700737953186, + 0.9979210495948792, + 0.9985501170158386, + 0.9987649917602539 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989305138587952, + 0.9989288449287415, + 0.9994058609008789, + 0.9956576824188232, + 0.998928964138031, + 0.9989328980445862 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988508224487305, + 0.9989162683486938, + 0.9989092350006104, + 0.9975757002830505, + 0.9988259673118591, + 0.9988399147987366 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 0.8888888888888888, + "final_counts": { + "POSITIVE": 16, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + } + } }, { "season_code": "202303", @@ -76405,7 +160705,7 @@ "13:00", "14:15", "ESC 110 - Environmental Sciences Center 110", - "https:\/\/map.yale.edu\/?id=1910#!m\/560020" + "https://map.yale.edu/?id=1910#!m/560020" ] ], "Thursday": [ @@ -76413,7 +160713,7 @@ "13:00", "14:15", "ESC 110 - Environmental Sciences Center 110", - "https:\/\/map.yale.edu\/?id=1910#!m\/560020" + "https://map.yale.edu/?id=1910#!m/560020" ] ] }, @@ -76425,10 +160725,115 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88243\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88243/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998852014541626, + 0.9988372921943665, + 0.9988486766815186, + 0.9987121820449829, + 0.9988836646080017, + 0.9987913966178894, + 0.9955627918243408 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988150596618652, + 0.9972000122070312, + 0.998814582824707, + 0.9988952875137329, + 0.9989210367202759, + 0.9989161491394043 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9974592328071594, + 0.9987358450889587, + 0.9986060261726379, + 0.9988909363746643, + 0.998884379863739, + 0.9989176988601685 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 0.9473684210526315, + "final_counts": { + "POSITIVE": 18, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9473684210526315, + "NEGATIVE": 0.05263157894736842 + } + } }, { "season_code": "202303", @@ -76465,7 +160870,7 @@ "9:25", "11:15", "OML 201 - Osborn Memorial Laboratories 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/559958" + "https://map.yale.edu/?id=1910#!m/559958" ] ] }, @@ -76477,10 +160882,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90180\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90180/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -76517,7 +160950,7 @@ "9:25", "11:15", "OML 201 - Osborn Memorial Laboratories 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/559958" + "https://map.yale.edu/?id=1910#!m/559958" ] ] }, @@ -76529,10 +160962,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90181\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90181/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -76569,7 +161030,7 @@ "13:30", "15:20", "WTS B51 - Watson Center 60 Sachem Street B51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -76581,10 +161042,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90182\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90182/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -76627,7 +161116,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -76670,12 +161187,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "Topics and class time are chosen by the participants, and have included reading books and\/or a series of papers on particular topics (e.g., homology; morphological phylogenetics; evolution of egg colors and exposed nesting in dinosaurs\/birds; origin of snake ecology; conflicts between morphology and molecules; role of fossils in phylogenetic inference).", + "description": "Topics and class time are chosen by the participants, and have included reading books and/or a series of papers on particular topics (e.g., homology; morphological phylogenetics; evolution of egg colors and exposed nesting in dinosaurs/birds; origin of snake ecology; conflicts between morphology and molecules; role of fossils in phylogenetic inference).", "short_title": "Seminar in Systematics", "title": "Seminar in Systematics", "school": "GS", @@ -76711,10 +161256,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90192\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90192/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -76752,7 +161325,7 @@ "13:30", "15:20", "HQ 213 - Humanities Quadrangle 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -76764,10 +161337,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88604\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88604/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -76813,7 +161414,7 @@ "15:30", "17:20", "HQ 209 - Humanities Quadrangle 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -76825,10 +161426,97 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88908\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88908/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988865256309509, + 0.9988441467285156, + 0.9987584352493286, + 0.9989197254180908 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989302754402161, + 0.998914361000061, + 0.9977319240570068 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988856911659241, + 0.9989079236984253, + 0.9989084005355835, + 0.9989058971405029 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 11 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -76865,7 +161553,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -76905,7 +161621,7 @@ "10:30", "11:20", "WLH 119 - William L. Harkness Hall 119", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -76913,7 +161629,7 @@ "10:30", "11:20", "WLH 119 - William L. Harkness Hall 119", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -76930,10 +161646,129 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89330\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89330/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989168643951416, + 0.9988473653793335, + 0.9987714886665344, + 0.9987844824790955, + 0.9986546039581299, + 0.9988982677459717, + 0.9989064931869507 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989263415336609, + 0.9988247752189636, + 0.9989228844642639, + 0.9985866546630859, + 0.9988899827003479, + 0.9988968372344971, + 0.9988973140716553, + 0.9988595247268677 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989326596260071, + 0.9989070892333984, + 0.9981922507286072, + 0.9982553124427795, + 0.9985001087188721, + 0.9968937635421753, + 0.9989194869995117, + 0.9988752007484436, + 0.9989221096038818, + 0.9985120892524719, + 0.9989042282104492, + 0.9988299012184143 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 27, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 27 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -76967,7 +161802,7 @@ "10:30", "11:20", "WLH 014 - William L. Harkness Hall 014", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -76986,7 +161821,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -77020,7 +161883,7 @@ "10:30", "11:20", "LORIA 360 - Loria Center 360", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -77039,7 +161902,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -77073,7 +161964,7 @@ "16:00", "16:50", "HQ 129 - Humanities Quadrangle 129", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -77092,7 +161983,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -77126,7 +162045,7 @@ "13:30", "14:20", "WALL81 401 - 81 Wall Street 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -77145,7 +162064,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -77179,7 +162126,7 @@ "10:30", "11:20", "HQ 123 - Humanities Quadrangle 123", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -77198,7 +162145,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -77238,7 +162213,7 @@ "14:30", "15:45", "HQ 227 - Humanities Quadrangle 227", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -77246,7 +162221,7 @@ "14:30", "15:45", "HQ 227 - Humanities Quadrangle 227", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -77265,10 +162240,113 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91565\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91565/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9980986714363098, + 0.998824417591095, + 0.9982035160064697, + 0.9987812638282776, + 0.9988441467285156, + 0.9988885521888733 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987928867340088, + 0.9989217519760132, + 0.9988355040550232, + 0.9989357590675354, + 0.9987519979476929, + 0.998730480670929 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988663196563721, + 0.9988304972648621, + 0.9988301396369934, + 0.9989150762557983, + 0.9974507689476013, + 0.9988853335380554, + 0.9989401698112488 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 19 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -77306,7 +162384,7 @@ "11:35", "12:50", "HQ 109 - Humanities Quadrangle 109", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -77314,7 +162392,7 @@ "11:35", "12:50", "HQ 109 - Humanities Quadrangle 109", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -77328,10 +162406,83 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90172\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90172/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983277916908264 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988871216773987 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988648891448975, + 0.998920202255249 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 4, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 4 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -77383,10 +162534,63 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92571\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92571/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988359808921814 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998896598815918, + 0.9988890290260315 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 3, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 3 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -77431,7 +162635,7 @@ "13:30", "15:20", "YK220 001 - 220 York Street 001", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ] }, @@ -77448,10 +162652,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90520\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90520/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -77488,7 +162720,7 @@ "13:00", "14:15", "HQ C15 - Humanities Quadrangle C15", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -77496,7 +162728,7 @@ "13:00", "14:15", "HQ C15 - Humanities Quadrangle C15", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -77510,10 +162742,81 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89736\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89736/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.998904824256897 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.998826801776886 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989191293716431 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 3, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 3 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -77551,7 +162854,7 @@ "11:35", "12:50", "HQ 127 - Humanities Quadrangle 127", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -77559,7 +162862,7 @@ "11:35", "12:50", "HQ 127 - Humanities Quadrangle 127", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -77573,10 +162876,83 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90392\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90392/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.99892657995224 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9968070983886719 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 0 + }, + "sentiment_distribution": { + "NEGATIVE": 1.0, + "POSITIVE": 0.0 + }, + "sentiment_overall": [ + "NEGATIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986162185668945 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 2, + "final_proportion": 0.6666666666666666, + "final_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + } + } }, { "season_code": "202303", @@ -77622,7 +162998,7 @@ "15:30", "17:20", "HQ C03 - Humanities Quadrangle C03", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -77638,10 +163014,101 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89026\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89026/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988987445831299, + 0.9986571073532104, + 0.9933185577392578, + 0.9986230134963989 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989332556724548, + 0.9987208247184753, + 0.998921275138855 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9963036775588989, + 0.9982940554618835, + 0.9988642930984497, + 0.9975757002830505, + 0.9988969564437866, + 0.9988803267478943 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 13 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -77681,7 +163148,7 @@ "13:30", "15:20", "SML 207 - Sterling Memorial Library 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/563698" + "https://map.yale.edu/?id=1910#!m/563698" ] ] }, @@ -77695,10 +163162,93 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89328\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89328/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9973381161689758, + 0.9987082481384277, + 0.9987841248512268 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989356398582458, + 0.9989123344421387, + 0.9987647533416748 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998940646648407, + 0.9989020824432373, + 0.9984884262084961 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 9 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -77737,7 +163287,7 @@ "9:00", "10:15", "HQ 132 - Humanities Quadrangle 132", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -77745,7 +163295,7 @@ "9:00", "10:15", "HQ 132 - Humanities Quadrangle 132", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -77759,10 +163309,103 @@ "classnotes": "", "final_exam": "Thursday, December 14, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89550\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89550/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987145662307739, + 0.9989019632339478, + 0.9988653659820557, + 0.9986188411712646, + 0.9988191723823547 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989017248153687, + 0.9988986253738403, + 0.9943259358406067, + 0.9985978007316589 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998857855796814, + 0.9989315867424011, + 0.9995167255401611, + 0.998768150806427 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 0.8461538461538461, + "final_counts": { + "POSITIVE": 11, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8461538461538461, + "NEGATIVE": 0.15384615384615385 + } + } }, { "season_code": "202303", @@ -77805,7 +163448,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -77848,7 +163519,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -77891,7 +163590,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -77934,7 +163661,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -77977,14 +163732,42 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "No knowledge of Japanese required. A previous college-level course in the study of literary texts is recommended but not required.", "description": "A reading of the central work of prose fiction in the Japanese classical tradition in its entirety (in English translation) along with some examples of predecessors, parodies, and adaptations (the latter include Noh plays and twentieth-century short stories). Topics of discussion include narrative form, poetics, gendered authorship and readership, and the processes and premises that have given The Tale of Genji its place in world literature. Attention is also given to the text's special relationship to visual culture.", - "short_title": "The Tale of Genji<\/i>", - "title": "The Tale of Genji<\/i>", + "short_title": "The Tale of Genji", + "title": "The Tale of Genji", "school": "GS", "credits": 1.0, "extra_info": "ACTIVE", @@ -78017,7 +163800,7 @@ "14:30", "15:45", "HQ 227 - Humanities Quadrangle 227", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -78025,7 +163808,7 @@ "14:30", "15:45", "HQ 227 - Humanities Quadrangle 227", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -78039,10 +163822,113 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91565\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91565/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9980986714363098, + 0.998824417591095, + 0.9982035160064697, + 0.9987812638282776, + 0.9988441467285156, + 0.9988885521888733 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987928867340088, + 0.9989217519760132, + 0.9988355040550232, + 0.9989357590675354, + 0.9987519979476929, + 0.998730480670929 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988663196563721, + 0.9988304972648621, + 0.9988301396369934, + 0.9989150762557983, + 0.9974507689476013, + 0.9988853335380554, + 0.9989401698112488 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 19 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -78094,7 +163980,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -78131,7 +164045,7 @@ "13:00", "14:15", "HQ 127 - Humanities Quadrangle 127", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -78139,7 +164053,7 @@ "13:00", "14:15", "HQ 127 - Humanities Quadrangle 127", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -78151,10 +164065,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89737\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89737/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -78192,7 +164134,7 @@ "11:35", "12:50", "HQ 127 - Humanities Quadrangle 127", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -78200,7 +164142,7 @@ "11:35", "12:50", "HQ 127 - Humanities Quadrangle 127", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -78212,10 +164154,83 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90392\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90392/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.99892657995224 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9968070983886719 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 0 + }, + "sentiment_distribution": { + "NEGATIVE": 1.0, + "POSITIVE": 0.0 + }, + "sentiment_overall": [ + "NEGATIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986162185668945 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 2, + "final_proportion": 0.6666666666666666, + "final_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + } + } }, { "season_code": "202303", @@ -78261,7 +164276,7 @@ "15:30", "17:20", "HQ C03 - Humanities Quadrangle C03", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -78273,10 +164288,101 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89026\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89026/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988987445831299, + 0.9986571073532104, + 0.9933185577392578, + 0.9986230134963989 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989332556724548, + 0.9987208247184753, + 0.998921275138855 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9963036775588989, + 0.9982940554618835, + 0.9988642930984497, + 0.9975757002830505, + 0.9988969564437866, + 0.9988803267478943 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 13 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -78316,7 +164422,7 @@ "13:30", "15:20", "SML 207 - Sterling Memorial Library 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/563698" + "https://map.yale.edu/?id=1910#!m/563698" ] ] }, @@ -78328,10 +164434,93 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89328\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89328/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9973381161689758, + 0.9987082481384277, + 0.9987841248512268 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989356398582458, + 0.9989123344421387, + 0.9987647533416748 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998940646648407, + 0.9989020824432373, + 0.9984884262084961 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 9 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -78370,7 +164559,7 @@ "9:00", "10:15", "HQ 132 - Humanities Quadrangle 132", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -78378,7 +164567,7 @@ "9:00", "10:15", "HQ 132 - Humanities Quadrangle 132", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -78390,10 +164579,103 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89550\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89550/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987145662307739, + 0.9989019632339478, + 0.9988653659820557, + 0.9986188411712646, + 0.9988191723823547 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989017248153687, + 0.9988986253738403, + 0.9943259358406067, + 0.9985978007316589 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998857855796814, + 0.9989315867424011, + 0.9995167255401611, + 0.998768150806427 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 0.8461538461538461, + "final_counts": { + "POSITIVE": 11, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8461538461538461, + "NEGATIVE": 0.15384615384615385 + } + } }, { "season_code": "202303", @@ -78431,7 +164713,7 @@ "13:30", "16:30", "SML 218 - Sterling Memorial Library 218", - "https:\/\/map.yale.edu\/?id=1910#!m\/563698" + "https://map.yale.edu/?id=1910#!m/563698" ] ] }, @@ -78443,10 +164725,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88907\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88907/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -78483,7 +164793,7 @@ "13:30", "15:20", "HQ 113 - Humanities Quadrangle 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -78495,10 +164805,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89321\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89321/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -78536,7 +164874,7 @@ "15:30", "17:20", "SML 207 - Sterling Memorial Library 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/563698" + "https://map.yale.edu/?id=1910#!m/563698" ] ] }, @@ -78548,10 +164886,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89326\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89326/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -78600,10 +164945,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92612\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92612/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -78640,7 +165013,7 @@ "9:25", "11:15", "HQ 313 - Humanities Quadrangle 313", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -78655,7 +165028,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -78698,7 +165099,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -78741,7 +165170,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -78779,7 +165236,7 @@ "11:35", "12:50", "LORIA 360 - Loria Center 360", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ], "Thursday": [ @@ -78787,7 +165244,7 @@ "11:35", "12:50", "LORIA 360 - Loria Center 360", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -78801,10 +165258,95 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88348\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88348/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988706707954407, + 0.9987280964851379, + 0.998807430267334 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982213377952576, + 0.9989001750946045, + 0.9989320635795593 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989290833473206, + 0.855560302734375, + 0.9989018440246582 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 8, + "final_proportion": 0.8888888888888888, + "final_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + } + } }, { "season_code": "202303", @@ -78842,7 +165384,7 @@ "13:00", "14:15", "WLH 210 - William L. Harkness Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -78850,7 +165392,7 @@ "13:00", "14:15", "WLH 210 - William L. Harkness Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -78873,10 +165415,111 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90212\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90212/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989117383956909, + 0.9989144802093506, + 0.9989199638366699, + 0.9989251494407654 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998914361000061, + 0.9989168643951416, + 0.9989113807678223, + 0.9988476037979126, + 0.9985665678977966, + 0.9989056587219238 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989210367202759, + 0.9989118576049805, + 0.9987803101539612, + 0.9980016350746155, + 0.9986502528190613, + 0.9994732737541199, + 0.9989295601844788 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.7142857142857143, + "NEGATIVE": 0.2857142857142857 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7142857142857143 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 0.8823529411764706, + "final_counts": { + "POSITIVE": 15, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8823529411764706, + "NEGATIVE": 0.11764705882352941 + } + } }, { "season_code": "202303", @@ -78914,7 +165557,7 @@ "14:30", "15:20", "WLH 119 - William L. Harkness Hall 119", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -78922,7 +165565,7 @@ "14:30", "15:20", "WLH 119 - William L. Harkness Hall 119", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -78949,10 +165592,159 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88149\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88149/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987818598747253, + 0.9826768040657043, + 0.9962537288665771, + 0.9955822825431824, + 0.9987149238586426, + 0.9988287091255188, + 0.9989134073257446, + 0.9983553290367126, + 0.998723566532135, + 0.9980182647705078, + 0.9994539618492126, + 0.998902440071106, + 0.9988988637924194, + 0.9987962245941162 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988036155700684, + 0.9995063543319702, + 0.9995020627975464, + 0.9795803427696228, + 0.983352780342102, + 0.9988552331924438, + 0.996833860874176, + 0.9994931221008301, + 0.9988258481025696, + 0.9963216781616211, + 0.9970806241035461, + 0.999502420425415, + 0.9986687898635864 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 7 + }, + "sentiment_distribution": { + "POSITIVE": 0.46153846153846156, + "NEGATIVE": 0.5384615384615384 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9994708895683289, + 0.9986889958381653, + 0.9994992017745972, + 0.997117280960083, + 0.9995104074478149, + 0.9985820055007935, + 0.9989063739776611, + 0.9988635778427124, + 0.9952527284622192, + 0.9987978935241699, + 0.9988712668418884, + 0.9995067119598389, + 0.9994953870773315, + 0.9994696974754333 + ], + "sentiment_counts": { + "NEGATIVE": 9, + "POSITIVE": 5 + }, + "sentiment_distribution": { + "NEGATIVE": 0.6428571428571429, + "POSITIVE": 0.35714285714285715 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.6428571428571429 + ] + }, + "final_label": "POSITIVE", + "final_count": 23, + "final_proportion": 0.5609756097560976, + "final_counts": { + "POSITIVE": 23, + "NEGATIVE": 18 + }, + "final_distribution": { + "POSITIVE": 0.5609756097560976, + "NEGATIVE": 0.43902439024390244 + } + } }, { "season_code": "202303", @@ -78984,7 +165776,7 @@ "15:30", "16:20", "WLH 115 - William L. Harkness Hall 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -79014,7 +165806,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -79046,7 +165866,7 @@ "13:30", "14:20", "WLH 004 - William L. Harkness Hall 004", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -79076,7 +165896,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -79108,7 +165956,7 @@ "15:30", "16:20", "CO493 103 - 493 College Street 103", - "https:\/\/map.yale.edu\/?id=1910#!m\/560001" + "https://map.yale.edu/?id=1910#!m/560001" ] ] }, @@ -79138,7 +165986,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -79170,7 +166046,7 @@ "17:00", "17:50", "WLH 003 - William L. Harkness Hall 003", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -79200,7 +166076,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -79240,7 +166144,7 @@ "10:30", "11:20", "WLH 119 - William L. Harkness Hall 119", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -79248,7 +166152,7 @@ "10:30", "11:20", "WLH 119 - William L. Harkness Hall 119", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -79265,10 +166169,129 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89330\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89330/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989168643951416, + 0.9988473653793335, + 0.9987714886665344, + 0.9987844824790955, + 0.9986546039581299, + 0.9988982677459717, + 0.9989064931869507 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989263415336609, + 0.9988247752189636, + 0.9989228844642639, + 0.9985866546630859, + 0.9988899827003479, + 0.9988968372344971, + 0.9988973140716553, + 0.9988595247268677 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989326596260071, + 0.9989070892333984, + 0.9981922507286072, + 0.9982553124427795, + 0.9985001087188721, + 0.9968937635421753, + 0.9989194869995117, + 0.9988752007484436, + 0.9989221096038818, + 0.9985120892524719, + 0.9989042282104492, + 0.9988299012184143 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 27, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 27 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -79302,7 +166325,7 @@ "10:30", "11:20", "WLH 014 - William L. Harkness Hall 014", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -79321,7 +166344,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -79355,7 +166406,7 @@ "10:30", "11:20", "LORIA 360 - Loria Center 360", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -79374,7 +166425,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -79408,7 +166487,7 @@ "16:00", "16:50", "HQ 129 - Humanities Quadrangle 129", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -79427,7 +166506,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -79461,7 +166568,7 @@ "13:30", "14:20", "WALL81 401 - 81 Wall Street 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -79480,7 +166587,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -79514,7 +166649,7 @@ "10:30", "11:20", "HQ 123 - Humanities Quadrangle 123", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -79533,7 +166668,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -79571,7 +166734,7 @@ "13:30", "15:20", "WTS A74 - Watson Center 60 Sachem Street A74", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -79588,10 +166751,127 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89228\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89228/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986579418182373, + 0.9988059997558594, + 0.9987230896949768, + 0.998703122138977, + 0.9989176988601685, + 0.9985668063163757, + 0.9989176988601685, + 0.9987842440605164 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.997706413269043, + 0.9989296793937683, + 0.9988983869552612, + 0.9989103078842163, + 0.9989020824432373, + 0.9987642765045166, + 0.9988687634468079, + 0.9994837045669556, + 0.9935637712478638 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988561868667603, + 0.9982550740242004, + 0.9988524913787842, + 0.9988356232643127, + 0.9989141225814819, + 0.9987987279891968, + 0.9980652928352356, + 0.9925879836082458 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 22, + "final_proportion": 0.88, + "final_counts": { + "POSITIVE": 22, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.88, + "NEGATIVE": 0.12 + } + } }, { "season_code": "202303", @@ -79637,7 +166917,7 @@ "15:30", "17:20", "HQ C03 - Humanities Quadrangle C03", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -79653,10 +166933,101 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89026\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89026/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988987445831299, + 0.9986571073532104, + 0.9933185577392578, + 0.9986230134963989 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989332556724548, + 0.9987208247184753, + 0.998921275138855 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9963036775588989, + 0.9982940554618835, + 0.9988642930984497, + 0.9975757002830505, + 0.9988969564437866, + 0.9988803267478943 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 13 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -79695,7 +167066,7 @@ "13:30", "15:20", "WTS B39 - Watson Center 60 Sachem Street B39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -79710,10 +167081,89 @@ "classnotes": "Please request permission via the system. Please do not email the instructor directly.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88793\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88793/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988201260566711, + 0.9989142417907715, + 0.9987363219261169 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986193180084229 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9971531629562378, + 0.9989404082298279, + 0.9989078044891357 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 7 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -79753,7 +167203,7 @@ "13:30", "15:20", "SML 207 - Sterling Memorial Library 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/563698" + "https://map.yale.edu/?id=1910#!m/563698" ] ] }, @@ -79767,10 +167217,93 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89328\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89328/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9973381161689758, + 0.9987082481384277, + 0.9987841248512268 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989356398582458, + 0.9989123344421387, + 0.9987647533416748 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998940646648407, + 0.9989020824432373, + 0.9984884262084961 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 9 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -79810,7 +167343,7 @@ "9:25", "11:15", "SA10 212 - 10 Sachem Street 212", - "https:\/\/map.yale.edu\/?id=1910#!m\/559538" + "https://map.yale.edu/?id=1910#!m/559538" ] ] }, @@ -79827,10 +167360,99 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88829\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88829/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987686276435852, + 0.9988858103752136, + 0.9988728165626526, + 0.9988781809806824, + 0.9989243149757385 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988110065460205, + 0.9958828687667847, + 0.9989339709281921 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9947245717048645, + 0.9982553124427795, + 0.9989066123962402, + 0.9989018440246582 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 12 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -79877,7 +167499,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -79915,7 +167565,7 @@ "11:35", "12:50", "HQ 109 - Humanities Quadrangle 109", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -79923,7 +167573,7 @@ "11:35", "12:50", "HQ 109 - Humanities Quadrangle 109", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -79937,10 +167587,83 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90172\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90172/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983277916908264 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988871216773987 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988648891448975, + 0.998920202255249 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 4, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 4 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -79978,7 +167701,7 @@ "9:25", "11:15", "LORIA 259 - Loria Center 259", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -79989,17 +167712,128 @@ "flags": [ "YC HistofArt: Post-1800", "YC HistofArt: Transregional", - "YC HistofArt: Asia\/Near East" + "YC HistofArt: Asia/Near East" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88389\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88389/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989315867424011, + 0.9988993406295776, + 0.9989043474197388, + 0.9994888305664062, + 0.9986909031867981, + 0.9988388419151306 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988446235656738, + 0.9989374279975891, + 0.9989249110221863, + 0.9989225268363953, + 0.9989952445030212, + 0.9989197254180908, + 0.993582010269165 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.7142857142857143, + "NEGATIVE": 0.2857142857142857 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7142857142857143 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988806843757629, + 0.9988413453102112, + 0.9988301396369934, + 0.998763918876648, + 0.9983333945274353, + 0.999510645866394, + 0.9988905787467957, + 0.9988446235656738, + 0.9995030164718628 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.7777777777777778, + "NEGATIVE": 0.2222222222222222 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7777777777777778 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 0.7727272727272727, + "final_counts": { + "POSITIVE": 17, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.7727272727272727, + "NEGATIVE": 0.22727272727272727 + } + } }, { "season_code": "202303", @@ -80037,7 +167871,7 @@ "13:30", "15:20", "GR109 ROSENFELD - 109 Grove Street ROSENFELD", - "https:\/\/map.yale.edu\/?id=1910#!m\/560109" + "https://map.yale.edu/?id=1910#!m/560109" ] ] }, @@ -80051,10 +167885,187 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88721\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88721/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989282488822937, + 0.9988420605659485, + 0.998795747756958, + 0.9986586570739746, + 0.9988910555839539, + 0.9988759160041809, + 0.9986237287521362, + 0.9987894892692566, + 0.998795747756958, + 0.9988580942153931, + 0.997780978679657, + 0.998282790184021, + 0.9989159107208252, + 0.9988656044006348, + 0.9989101886749268, + 0.9880385994911194 + ], + "sentiment_counts": { + "POSITIVE": 16, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989274144172668, + 0.9988216757774353, + 0.9690937399864197, + 0.9987443685531616, + 0.9985485672950745, + 0.9988455772399902, + 0.9988844990730286, + 0.9989063739776611, + 0.9974096417427063, + 0.998668909072876, + 0.9989253878593445, + 0.9988467693328857, + 0.8169734477996826, + 0.998734176158905, + 0.993306577205658, + 0.9989151954650879, + 0.998880922794342, + 0.998865008354187, + 0.998916745185852, + 0.9989239573478699, + 0.9988648891448975 + ], + "sentiment_counts": { + "POSITIVE": 20, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9523809523809523, + "NEGATIVE": 0.047619047619047616 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9523809523809523 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989144802093506, + 0.9989351630210876, + 0.9986086487770081, + 0.9955018162727356, + 0.9989026784896851, + 0.9989323019981384, + 0.9988631010055542, + 0.9989016056060791, + 0.9988828301429749, + 0.9988234639167786, + 0.9988476037979126, + 0.9989367127418518, + 0.9988658428192139, + 0.9985047578811646, + 0.9989325404167175, + 0.9987475872039795, + 0.9989210367202759, + 0.9988256096839905 + ], + "sentiment_counts": { + "POSITIVE": 18, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 54, + "final_proportion": 0.9818181818181818, + "final_counts": { + "POSITIVE": 54, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9818181818181818, + "NEGATIVE": 0.01818181818181818 + } + } }, { "season_code": "202303", @@ -80097,7 +168108,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -80140,7 +168179,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -80183,7 +168250,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -80221,7 +168316,7 @@ "13:30", "15:20", "WLH 014 - William L. Harkness Hall 014", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -80233,10 +168328,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88737\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88737/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -80275,7 +168398,7 @@ "13:30", "15:20", "SA10 212 - 10 Sachem Street 212", - "https:\/\/map.yale.edu\/?id=1910#!m\/559538" + "https://map.yale.edu/?id=1910#!m/559538" ] ] }, @@ -80287,10 +168410,91 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88831\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88831/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989162683486938, + 0.9986989498138428, + 0.9953101277351379 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988025426864624, + 0.9976994395256042 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989282488822937, + 0.9987547397613525, + 0.9935880899429321 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 8, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 8 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -80330,7 +168534,7 @@ "9:25", "11:15", "SA10 212 - 10 Sachem Street 212", - "https:\/\/map.yale.edu\/?id=1910#!m\/559538" + "https://map.yale.edu/?id=1910#!m/559538" ] ] }, @@ -80342,10 +168546,99 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88829\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88829/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987686276435852, + 0.9988858103752136, + 0.9988728165626526, + 0.9988781809806824, + 0.9989243149757385 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988110065460205, + 0.9958828687667847, + 0.9989339709281921 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9947245717048645, + 0.9982553124427795, + 0.9989066123962402, + 0.9989018440246582 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 12 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -80391,7 +168684,7 @@ "15:30", "17:20", "HQ C03 - Humanities Quadrangle C03", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -80403,10 +168696,101 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89026\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89026/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988987445831299, + 0.9986571073532104, + 0.9933185577392578, + 0.9986230134963989 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989332556724548, + 0.9987208247184753, + 0.998921275138855 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9963036775588989, + 0.9982940554618835, + 0.9988642930984497, + 0.9975757002830505, + 0.9988969564437866, + 0.9988803267478943 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 13 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -80446,7 +168830,7 @@ "13:30", "15:20", "SML 207 - Sterling Memorial Library 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/563698" + "https://map.yale.edu/?id=1910#!m/563698" ] ] }, @@ -80458,10 +168842,93 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89328\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89328/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9973381161689758, + 0.9987082481384277, + 0.9987841248512268 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989356398582458, + 0.9989123344421387, + 0.9987647533416748 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998940646648407, + 0.9989020824432373, + 0.9984884262084961 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 9 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -80504,7 +168971,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -80547,7 +169042,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -80590,7 +169113,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -80633,7 +169184,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -80670,7 +169249,7 @@ "11:35", "12:50", "WLH 114 - William L. Harkness Hall 114", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -80678,7 +169257,7 @@ "11:35", "12:50", "WLH 114 - William L. Harkness Hall 114", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Friday": [ @@ -80686,7 +169265,7 @@ "9:25", "10:15", "WLH 113 - William L. Harkness Hall 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -80706,10 +169285,101 @@ "classnotes": "", "final_exam": "Saturday, December 16, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88291\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88291/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987121820449829, + 0.9988240599632263, + 0.9981144666671753, + 0.9987512826919556, + 0.9989169836044312 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989128112792969, + 0.9745082855224609, + 0.9904627203941345 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989176988601685, + 0.998925507068634, + 0.9981922507286072, + 0.9989368319511414 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 0.9166666666666666, + "final_counts": { + "POSITIVE": 11, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + } + } }, { "season_code": "202303", @@ -80746,7 +169416,7 @@ "13:00", "14:15", "WLH 114 - William L. Harkness Hall 114", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -80754,7 +169424,7 @@ "13:00", "14:15", "WLH 114 - William L. Harkness Hall 114", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -80774,10 +169444,99 @@ "classnotes": "", "final_exam": "Saturday, December 16, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88294\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88294/assignments/syllabus", "fysem": true, "sysem": true, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987112283706665, + 0.9988744854927063, + 0.9979240894317627 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988417029380798, + 0.9989181756973267, + 0.9989160299301147, + 0.9988418221473694 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9978525638580322, + 0.9988081455230713, + 0.9989175796508789, + 0.9989118576049805 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.25, + "POSITIVE": 0.75 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 0.9090909090909091, + "final_counts": { + "POSITIVE": 10, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + } + } }, { "season_code": "202303", @@ -80814,7 +169573,7 @@ "14:30", "15:45", "WLH 114 - William L. Harkness Hall 114", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -80822,7 +169581,7 @@ "14:30", "15:45", "WLH 114 - William L. Harkness Hall 114", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -80842,10 +169601,135 @@ "classnotes": "", "final_exam": "Saturday, December 16, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88298\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88298/assignments/syllabus", "fysem": true, "sysem": true, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989233613014221, + 0.994625985622406, + 0.9989053010940552, + 0.998515784740448, + 0.9988353848457336, + 0.9989027976989746, + 0.9987810254096985, + 0.9982588887214661 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988757967948914, + 0.9973719120025635, + 0.9987793564796448, + 0.9989367127418518, + 0.9989064931869507, + 0.9988875985145569, + 0.9986668825149536, + 0.9987688660621643, + 0.9988241791725159, + 0.9994935989379883, + 0.9988646507263184 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9090909090909091 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988933205604553, + 0.997880220413208, + 0.9988799691200256, + 0.99891197681427, + 0.9987733960151672, + 0.8975776433944702, + 0.9988192915916443, + 0.9986873269081116, + 0.9988740086555481, + 0.9989274144172668 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 28, + "final_proportion": 0.9655172413793104, + "final_counts": { + "POSITIVE": 28, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9655172413793104, + "NEGATIVE": 0.034482758620689655 + } + } }, { "season_code": "202303", @@ -80882,7 +169766,7 @@ "11:35", "12:50", "WLH 117 - William L. Harkness Hall 117", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -80890,7 +169774,7 @@ "11:35", "12:50", "WLH 117 - William L. Harkness Hall 117", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -80910,10 +169794,137 @@ "classnotes": "", "final_exam": "Saturday, December 16, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90141\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90141/assignments/syllabus", "fysem": true, "sysem": true, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988346695899963, + 0.9988166093826294, + 0.9977375268936157, + 0.9989305138587952, + 0.9942367076873779, + 0.9986932873725891, + 0.9988958835601807, + 0.9972589015960693, + 0.9988512992858887, + 0.9989203214645386 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9939548373222351, + 0.9994705319404602, + 0.9988273978233337, + 0.998914361000061, + 0.9992619156837463, + 0.9988428354263306, + 0.9972388744354248, + 0.9988425970077515, + 0.9984519481658936, + 0.9988992214202881, + 0.9978652596473694 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 8 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2727272727272727, + "POSITIVE": 0.7272727272727273 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7272727272727273 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.999491810798645, + 0.9782375693321228, + 0.998913049697876, + 0.9984146356582642, + 0.9988096952438354, + 0.9981564879417419, + 0.9989294409751892, + 0.9988663196563721, + 0.9988883137702942 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 7 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2222222222222222, + "POSITIVE": 0.7777777777777778 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7777777777777778 + ] + }, + "final_label": "POSITIVE", + "final_count": 24, + "final_proportion": 0.8, + "final_counts": { + "POSITIVE": 24, + "NEGATIVE": 6 + }, + "final_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + } + } }, { "season_code": "202303", @@ -80950,7 +169961,7 @@ "14:30", "15:45", "WLH 113 - William L. Harkness Hall 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -80958,7 +169969,7 @@ "14:30", "15:45", "WLH 113 - William L. Harkness Hall 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -80975,10 +169986,129 @@ "classnotes": "", "final_exam": "Saturday, December 16, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89740\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89740/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9943242073059082, + 0.9988025426864624, + 0.9987066984176636, + 0.9920416474342346, + 0.9988847374916077, + 0.9985734224319458, + 0.9988297820091248, + 0.9988522529602051 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998915433883667, + 0.9791010618209839, + 0.9988157749176025, + 0.9941177368164062, + 0.9994920492172241, + 0.9988777041435242, + 0.9988892674446106, + 0.9987527132034302, + 0.9988815188407898 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.7777777777777778, + "NEGATIVE": 0.2222222222222222 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7777777777777778 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982553124427795, + 0.9988254904747009, + 0.99882572889328, + 0.998848557472229, + 0.9950506091117859, + 0.9988980293273926, + 0.9988724589347839, + 0.9983780384063721, + 0.9988766312599182 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 24, + "final_proportion": 0.9230769230769231, + "final_counts": { + "POSITIVE": 24, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9230769230769231, + "NEGATIVE": 0.07692307692307693 + } + } }, { "season_code": "202303", @@ -81015,7 +170145,7 @@ "13:00", "14:15", "YSB MARSH - Yale Science Building MARSH", - "https:\/\/map.yale.edu\/?id=1910#!m\/563700" + "https://map.yale.edu/?id=1910#!m/563700" ] ], "Wednesday": [ @@ -81023,7 +170153,7 @@ "13:00", "14:15", "YSB MARSH - Yale Science Building MARSH", - "https:\/\/map.yale.edu\/?id=1910#!m\/563700" + "https://map.yale.edu/?id=1910#!m/563700" ] ] }, @@ -81043,10 +170173,887 @@ "classnotes": "", "final_exam": "Saturday, December 16, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89292\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89292/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9971601963043213, + 0.9987934827804565, + 0.998174786567688, + 0.9971694350242615, + 0.9988877177238464, + 0.9839020371437073, + 0.9989299178123474, + 0.9987983703613281, + 0.9988213181495667, + 0.9988313317298889, + 0.9913416504859924, + 0.9986781477928162, + 0.99854576587677, + 0.9953715205192566, + 0.9978996515274048, + 0.9988370537757874, + 0.9972827434539795, + 0.9986659288406372, + 0.9984875917434692, + 0.9987840056419373, + 0.9989016056060791, + 0.9975879192352295, + 0.9986991882324219, + 0.9961494207382202, + 0.9980435371398926, + 0.9960896968841553, + 0.9986432194709778, + 0.9986854195594788, + 0.9982854723930359, + 0.9987543821334839, + 0.9987640380859375, + 0.999496579170227, + 0.9983195662498474, + 0.996956467628479, + 0.9987539052963257, + 0.9979702830314636, + 0.9821585416793823, + 0.9988284707069397, + 0.9988595247268677, + 0.9988507032394409, + 0.9903754591941833, + 0.9941644072532654, + 0.9988889098167419, + 0.9986720085144043, + 0.9986635446548462, + 0.9985646605491638, + 0.9988622665405273, + 0.9837497472763062, + 0.9984815716743469, + 0.7582558989524841, + 0.9986785054206848, + 0.9962875843048096, + 0.9988138675689697, + 0.9874908328056335, + 0.9987077713012695, + 0.9980342984199524, + 0.9994822144508362, + 0.9988234639167786, + 0.9989153146743774, + 0.9988260865211487, + 0.9987608194351196, + 0.9981461763381958, + 0.9980413913726807, + 0.9989357590675354, + 0.9907682538032532, + 0.9978480339050293, + 0.9988792538642883, + 0.9987873435020447, + 0.9988518953323364, + 0.9988663196563721, + 0.9978196620941162, + 0.9968515038490295, + 0.9989105463027954, + 0.9988666772842407, + 0.9988147020339966, + 0.9987068176269531, + 0.9987917542457581, + 0.9988206028938293, + 0.9987743496894836, + 0.9989053010940552, + 0.9989088773727417, + 0.9974736571311951, + 0.9978210926055908, + 0.9984481334686279, + 0.9987922310829163, + 0.9987687468528748, + 0.9988139867782593, + 0.9983635544776917, + 0.9987651109695435, + 0.998443067073822, + 0.9981595873832703, + 0.9988242983818054, + 0.9985425472259521, + 0.9988211989402771, + 0.998932421207428, + 0.9979016780853271, + 0.9988848567008972, + 0.9974046349525452, + 0.9981586337089539, + 0.9989025592803955, + 0.9966437816619873, + 0.9956759810447693, + 0.9987635612487793, + 0.9988852143287659, + 0.9985306262969971, + 0.9988784193992615, + 0.9988314509391785, + 0.998862624168396, + 0.9575973153114319, + 0.998087465763092, + 0.9966542720794678, + 0.9987983703613281, + 0.9981618523597717, + 0.9989126920700073, + 0.9986936450004578, + 0.9987590312957764, + 0.9988749623298645, + 0.9983406066894531, + 0.998768150806427, + 0.9617675542831421, + 0.9988904595375061, + 0.9925804138183594, + 0.9987974166870117 + ], + "sentiment_counts": { + "POSITIVE": 111, + "NEGATIVE": 12 + }, + "sentiment_distribution": { + "POSITIVE": 0.9024390243902439, + "NEGATIVE": 0.0975609756097561 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9024390243902439 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9993652701377869, + 0.9988125562667847, + 0.9877399802207947, + 0.9978971481323242, + 0.9986165761947632, + 0.9994215965270996, + 0.9973964691162109, + 0.9968634843826294, + 0.9978308081626892, + 0.9994900226593018, + 0.9995055198669434, + 0.9974337220191956, + 0.9984057545661926, + 0.9994677901268005, + 0.9907774925231934, + 0.9988409876823425, + 0.9995049238204956, + 0.9979183077812195, + 0.9961836934089661, + 0.9993917942047119, + 0.9987737536430359, + 0.9988811612129211, + 0.998820960521698, + 0.9995092153549194, + 0.9988718628883362, + 0.9987356066703796, + 0.9971700310707092, + 0.9986417889595032, + 0.9976348876953125, + 0.9986459612846375, + 0.9952452778816223, + 0.9984591007232666, + 0.9817420840263367, + 0.9968253374099731, + 0.9983955025672913, + 0.9988538026809692, + 0.9977129697799683, + 0.9987611770629883, + 0.9989147186279297, + 0.9994344115257263, + 0.9993785619735718, + 0.9981478452682495, + 0.999494194984436, + 0.9988259673118591, + 0.9962630867958069, + 0.999517560005188, + 0.9916679263114929, + 0.9987131357192993, + 0.9988563060760498, + 0.9987758994102478, + 0.99852055311203, + 0.975670576095581, + 0.9988870024681091, + 0.998339056968689, + 0.998842716217041, + 0.9961327314376831, + 0.9894772171974182, + 0.9981719255447388, + 0.9987227320671082, + 0.9994986057281494, + 0.9914655089378357, + 0.9994930028915405, + 0.9987187385559082, + 0.9810096025466919, + 0.9994884729385376, + 0.9987096786499023, + 0.9988517761230469, + 0.9987183809280396, + 0.9968882203102112, + 0.9933128952980042, + 0.9939551949501038, + 0.9952557682991028, + 0.9986237287521362, + 0.9995055198669434, + 0.9980180263519287, + 0.999508261680603, + 0.9983435869216919, + 0.9988090991973877, + 0.9904781579971313, + 0.9985405206680298, + 0.9986743927001953, + 0.9976807832717896, + 0.9989205598831177, + 0.9987267851829529, + 0.9980831146240234, + 0.9994889497756958, + 0.9989075660705566, + 0.9989287257194519, + 0.9984226226806641, + 0.9988816380500793, + 0.9985079169273376, + 0.9976351261138916, + 0.9988762736320496, + 0.9928954243659973, + 0.9991695880889893, + 0.9994995594024658, + 0.9983747005462646, + 0.9981111288070679, + 0.9938321113586426, + 0.9995075464248657, + 0.9965458512306213, + 0.9973623156547546, + 0.9986680746078491, + 0.9994966983795166, + 0.9995049238204956, + 0.9995027780532837, + 0.9981741905212402, + 0.9994233846664429, + 0.9951825737953186, + 0.9988718628883362, + 0.9979819059371948, + 0.9906888008117676, + 0.9989271759986877, + 0.9982283711433411, + 0.9988805651664734, + 0.9963052272796631, + 0.9982914328575134, + 0.9987873435020447, + 0.9945525527000427, + 0.9988786578178406, + 0.9985306262969971, + 0.9988126754760742, + 0.9874964952468872, + 0.9985210299491882, + 0.9987622499465942, + 0.9920775294303894, + 0.99237459897995, + 0.9994912147521973, + 0.9984012246131897, + 0.9983658194541931, + 0.9973848462104797, + 0.9986715316772461, + 0.9989100694656372, + 0.9982900023460388, + 0.9819011092185974, + 0.9994862079620361, + 0.998817503452301, + 0.9993263483047485, + 0.9962607026100159, + 0.9994924068450928, + 0.9982269406318665, + 0.9994839429855347, + 0.9937008619308472 + ], + "sentiment_counts": { + "NEGATIVE": 57, + "POSITIVE": 86 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3986013986013986, + "POSITIVE": 0.6013986013986014 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6013986013986014 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9980016350746155, + 0.997117280960083, + 0.9987770915031433, + 0.9986761212348938, + 0.9974592328071594, + 0.981088399887085, + 0.9986780285835266, + 0.9963808655738831, + 0.9986178874969482, + 0.9986791014671326, + 0.9983592629432678, + 0.9988446235656738, + 0.998643696308136, + 0.9981873631477356, + 0.9989169836044312, + 0.9987779259681702, + 0.9988634586334229, + 0.9977553486824036, + 0.9984506368637085, + 0.9989221096038818, + 0.9968850016593933, + 0.9995026588439941, + 0.9987383484840393, + 0.9972994923591614, + 0.9898375272750854, + 0.9968166947364807, + 0.9987362027168274, + 0.9984657764434814, + 0.9992567896842957, + 0.9989156723022461, + 0.9995037317276001, + 0.9949824810028076, + 0.9989907145500183, + 0.9979299306869507, + 0.99516761302948, + 0.9985834360122681, + 0.9994891881942749, + 0.9988158941268921, + 0.9955046772956848, + 0.9988897442817688, + 0.9774608612060547, + 0.99950110912323, + 0.9995130300521851, + 0.9507399797439575, + 0.998927652835846, + 0.9969498515129089, + 0.9965617060661316, + 0.9982296824455261, + 0.9989078044891357, + 0.9989374279975891, + 0.9986591339111328, + 0.9972620010375977, + 0.997117280960083, + 0.9969266057014465, + 0.9978926777839661, + 0.9982553124427795, + 0.9989191293716431, + 0.998802661895752, + 0.9982038736343384, + 0.9986905455589294, + 0.9959046244621277, + 0.9993619322776794, + 0.9988164901733398, + 0.9949447512626648, + 0.99880051612854, + 0.9977966547012329, + 0.9988219141960144, + 0.9989125728607178, + 0.9987611770629883, + 0.9989112615585327, + 0.9987809062004089, + 0.9982926249504089, + 0.9989258646965027, + 0.9986982345581055, + 0.9984586238861084, + 0.9854615926742554, + 0.9982410669326782, + 0.9994677901268005, + 0.9820661544799805, + 0.999494194984436, + 0.9988908171653748, + 0.9989114999771118, + 0.9988585710525513, + 0.9989070892333984, + 0.9995089769363403, + 0.9925222992897034, + 0.9976561069488525, + 0.9986531734466553, + 0.998869001865387, + 0.9986886382102966, + 0.9994933605194092, + 0.9984045624732971, + 0.9661039113998413, + 0.9988853335380554, + 0.9844527840614319, + 0.9994951486587524, + 0.9988839030265808, + 0.998002827167511, + 0.999473512172699, + 0.9989026784896851, + 0.9985631108283997, + 0.9987545013427734, + 0.9989216327667236, + 0.9987689852714539, + 0.9994733929634094, + 0.9988805651664734, + 0.9985373020172119, + 0.9989019632339478, + 0.9988254904747009, + 0.9975860118865967, + 0.9988754391670227, + 0.9987080097198486, + 0.9966537952423096, + 0.9978852868080139, + 0.9838541150093079, + 0.9986024498939514, + 0.9988871216773987, + 0.9985306262969971, + 0.9983704686164856, + 0.9987653493881226, + 0.9987988471984863, + 0.9988265633583069, + 0.9964821338653564, + 0.9556954503059387, + 0.9995006322860718, + 0.9994891881942749, + 0.9980592131614685, + 0.9794720411300659, + 0.9984797835350037, + 0.9988881945610046, + 0.9987032413482666, + 0.9975547194480896, + 0.999497652053833, + 0.9987913966178894, + 0.9988988637924194, + 0.9918283224105835, + 0.9986740350723267, + 0.9988561868667603, + 0.9988248944282532 + ], + "sentiment_counts": { + "NEGATIVE": 42, + "POSITIVE": 97 + }, + "sentiment_distribution": { + "NEGATIVE": 0.302158273381295, + "POSITIVE": 0.697841726618705 + }, + "sentiment_overall": [ + "POSITIVE", + 0.697841726618705 + ] + }, + "final_label": "POSITIVE", + "final_count": 294, + "final_proportion": 0.725925925925926, + "final_counts": { + "POSITIVE": 294, + "NEGATIVE": 111 + }, + "final_distribution": { + "POSITIVE": 0.725925925925926, + "NEGATIVE": 0.2740740740740741 + } + } }, { "season_code": "202303", @@ -81077,7 +171084,7 @@ "16:00", "16:50", "HQ 309 - Humanities Quadrangle 309", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -81100,7 +171107,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -81131,7 +171166,7 @@ "17:00", "17:50", "HQ 309 - Humanities Quadrangle 309", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -81154,7 +171189,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -81185,7 +171248,7 @@ "19:00", "19:50", "WLH 209 - William L. Harkness Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -81208,7 +171271,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -81239,7 +171330,7 @@ "20:00", "20:50", "WLH 209 - William L. Harkness Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -81262,7 +171353,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -81293,7 +171412,7 @@ "16:00", "16:50", "WLH 006 - William L. Harkness Hall 006", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -81316,7 +171435,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -81347,7 +171494,7 @@ "17:00", "17:50", "WLH 006 - William L. Harkness Hall 006", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -81370,7 +171517,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -81401,7 +171576,7 @@ "19:00", "19:50", "HQ 209 - Humanities Quadrangle 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -81424,7 +171599,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -81455,7 +171658,7 @@ "20:00", "20:50", "HQ 209 - Humanities Quadrangle 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -81478,7 +171681,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -81509,7 +171740,7 @@ "10:30", "11:20", "WTS A42 - Watson Center 60 Sachem Street A42", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -81532,7 +171763,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -81563,7 +171822,7 @@ "11:35", "12:25", "WTS A51 - Watson Center 60 Sachem Street A51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -81586,7 +171845,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -81617,7 +171904,7 @@ "10:30", "11:20", "WLH 117 - William L. Harkness Hall 117", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -81640,7 +171927,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -81671,7 +171986,7 @@ "13:30", "14:20", "WLH 117 - William L. Harkness Hall 117", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -81694,7 +172009,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -81725,7 +172068,7 @@ "16:00", "16:50", "WLH 009 - William L. Harkness Hall 009", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -81748,7 +172091,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -81779,7 +172150,7 @@ "17:00", "17:50", "WLH 009 - William L. Harkness Hall 009", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -81802,7 +172173,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -81833,7 +172232,7 @@ "19:00", "19:50", "LC 103 - Linsly-Chittenden Hall 103", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -81856,7 +172255,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -81887,7 +172314,7 @@ "20:00", "20:50", "LC 103 - Linsly-Chittenden Hall 103", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -81910,7 +172337,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -81941,7 +172396,7 @@ "16:00", "16:50", "HQ 313 - Humanities Quadrangle 313", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -81964,7 +172419,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -81995,7 +172478,7 @@ "17:00", "17:50", "HQ 313 - Humanities Quadrangle 313", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -82018,7 +172501,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -82049,7 +172560,7 @@ "19:00", "19:50", "HLH17 03 - 17 Hillhouse Avenue 03", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -82072,7 +172583,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -82103,7 +172642,7 @@ "20:00", "20:50", "HLH17 03 - 17 Hillhouse Avenue 03", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -82126,7 +172665,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -82157,7 +172724,7 @@ "11:35", "12:25", "WLH 203 - William L. Harkness Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -82180,7 +172747,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -82211,7 +172806,7 @@ "16:00", "16:50", "HQ C15 - Humanities Quadrangle C15", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -82234,7 +172829,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -82265,7 +172888,7 @@ "17:00", "17:50", "LC 204 - Linsly-Chittenden Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -82288,7 +172911,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -82325,7 +172976,7 @@ "11:35", "12:50", "LUCE 101 - Luce Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ], "Wednesday": [ @@ -82333,7 +172984,7 @@ "11:35", "12:50", "LUCE 101 - Luce Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ] }, @@ -82350,10 +173001,239 @@ "classnotes": "", "final_exam": "Saturday, December 16, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89715\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89715/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9993294477462769, + 0.9988617897033691, + 0.9987965822219849, + 0.9988856911659241, + 0.9987187385559082, + 0.9987314343452454, + 0.9985125660896301, + 0.998853325843811, + 0.9988747239112854, + 0.9987320303916931, + 0.9989301562309265, + 0.9988964796066284, + 0.9984777569770813, + 0.996831476688385, + 0.9985519051551819, + 0.9987887740135193, + 0.998791515827179, + 0.998710036277771, + 0.9987630844116211, + 0.9986018538475037, + 0.9989264607429504, + 0.9989213943481445, + 0.9977148771286011, + 0.9920018911361694, + 0.9989292025566101 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 23 + }, + "sentiment_distribution": { + "NEGATIVE": 0.08, + "POSITIVE": 0.92 + }, + "sentiment_overall": [ + "POSITIVE", + 0.92 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988861680030823, + 0.998915433883667, + 0.9989319443702698, + 0.99826979637146, + 0.9988685846328735, + 0.998675525188446, + 0.9974821209907532, + 0.9986655712127686, + 0.998891294002533, + 0.9987226128578186, + 0.9992251396179199, + 0.9988589286804199, + 0.9989294409751892, + 0.9987640380859375, + 0.998783528804779, + 0.9988746047019958, + 0.9938095211982727, + 0.9989172220230103, + 0.9987760186195374, + 0.9985793828964233, + 0.9989084005355835, + 0.9988847374916077, + 0.9984319806098938, + 0.998916506767273, + 0.9989352822303772, + 0.9876745343208313, + 0.9913779497146606, + 0.9989294409751892 + ], + "sentiment_counts": { + "POSITIVE": 27, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9642857142857143, + "NEGATIVE": 0.03571428571428571 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9642857142857143 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988403916358948, + 0.9981922507286072, + 0.9987803101539612, + 0.9989057779312134, + 0.9981400966644287, + 0.9989290833473206, + 0.9993723034858704, + 0.9988232254981995, + 0.9984563589096069, + 0.9986979961395264, + 0.9985209107398987, + 0.9987143278121948, + 0.9988340735435486, + 0.9989125728607178, + 0.9988608360290527, + 0.9990836381912231, + 0.9988431930541992, + 0.9989187717437744, + 0.9981561303138733, + 0.9988110065460205, + 0.9987850785255432, + 0.9986805319786072, + 0.9989175796508789, + 0.9979792237281799, + 0.9988062381744385, + 0.9989318251609802, + 0.8905333876609802, + 0.9987547397613525 + ], + "sentiment_counts": { + "POSITIVE": 24, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "final_label": "POSITIVE", + "final_count": 74, + "final_proportion": 0.9135802469135802, + "final_counts": { + "NEGATIVE": 7, + "POSITIVE": 74 + }, + "final_distribution": { + "NEGATIVE": 0.08641975308641975, + "POSITIVE": 0.9135802469135802 + } + } }, { "season_code": "202303", @@ -82384,7 +173264,7 @@ "19:00", "19:50", "LC 213 - Linsly-Chittenden Hall 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -82404,7 +173284,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -82435,7 +173343,7 @@ "20:00", "20:50", "LC 213 - Linsly-Chittenden Hall 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -82455,7 +173363,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -82514,7 +173450,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -82545,7 +173509,7 @@ "14:30", "15:20", "LC 206 - Linsly-Chittenden Hall 206", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -82565,7 +173529,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -82596,7 +173588,7 @@ "15:30", "16:20", "LC 205 - Linsly-Chittenden Hall 205", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -82616,7 +173608,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -82675,7 +173695,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -82706,7 +173754,7 @@ "10:30", "11:20", "WLH 002 - William L. Harkness Hall 002", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -82726,7 +173774,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -82757,7 +173833,7 @@ "11:35", "12:25", "WLH 002 - William L. Harkness Hall 002", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -82777,12 +173853,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "Prerequisites: ECON 108, 110, 115, or equivalent and familiarity with single variable calculus. Students who have taken ECON 131 may not receive major credit for this course.", - "description": "Introduction to data analysis from the beginning of the econometrics sequence; exposure to modern empirical economics; and development of credible economic analysis. This course emphasizes working directly and early with data, through such economic examples as studies of environmental\/natural resource economics, intergenerational mobility, discrimination, and finance. Topics include: probability, statistics, and sampling; selection, causation and causal inference; regression and model specification; and machine learning and big data.", + "description": "Introduction to data analysis from the beginning of the econometrics sequence; exposure to modern empirical economics; and development of credible economic analysis. This course emphasizes working directly and early with data, through such economic examples as studies of environmental/natural resource economics, intergenerational mobility, discrimination, and finance. Topics include: probability, statistics, and sampling; selection, causation and causal inference; regression and model specification; and machine learning and big data.", "short_title": "Introduction to Data Analysis...", "title": "Introduction to Data Analysis and Econometrics", "school": "YC", @@ -82814,7 +173918,7 @@ "13:00", "14:15", "DAVIES AUD - Davies Auditorium, Becton Ctr AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ], "Thursday": [ @@ -82822,7 +173926,7 @@ "13:00", "14:15", "DAVIES AUD - Davies Auditorium, Becton Ctr AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ] }, @@ -82844,15 +173948,324 @@ "classnotes": "", "final_exam": "Saturday, December 16, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89396\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89396/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986878037452698, + 0.9986899495124817, + 0.9984320998191833, + 0.9530913829803467, + 0.9987797141075134, + 0.9988725781440735, + 0.9942674040794373, + 0.9986752867698669, + 0.9987488985061646, + 0.998577356338501, + 0.9989124536514282, + 0.9817039370536804, + 0.996209979057312, + 0.9988943934440613, + 0.9991519451141357, + 0.9965401887893677, + 0.9988285899162292, + 0.9802906513214111, + 0.9976065158843994, + 0.995984673500061, + 0.9987199306488037, + 0.9988682270050049, + 0.9944742321968079, + 0.998749852180481, + 0.9943513870239258, + 0.9988386034965515, + 0.9975134134292603, + 0.9986072182655334, + 0.9977813363075256, + 0.9986024498939514, + 0.9989216327667236, + 0.9916663765907288, + 0.9984757304191589, + 0.9989166259765625, + 0.9967464208602905, + 0.9940312504768372, + 0.9987633228302002, + 0.9988228678703308, + 0.9987200498580933, + 0.998887836933136, + 0.9987882971763611 + ], + "sentiment_counts": { + "POSITIVE": 38, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.926829268292683, + "NEGATIVE": 0.07317073170731707 + }, + "sentiment_overall": [ + "POSITIVE", + 0.926829268292683 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9918580651283264, + 0.998711347579956, + 0.9978392720222473, + 0.9954368472099304, + 0.9988956451416016, + 0.9984571933746338, + 0.9961605072021484, + 0.9988856911659241, + 0.9986770749092102, + 0.9989228844642639, + 0.9987741112709045, + 0.9988704323768616, + 0.998842716217041, + 0.998859167098999, + 0.9984608888626099, + 0.9989120960235596, + 0.998872697353363, + 0.9989376664161682, + 0.9982706308364868, + 0.9989332556724548, + 0.9989036321640015, + 0.9988003969192505, + 0.9988850951194763, + 0.9989206790924072, + 0.9989339709281921, + 0.9989235997200012, + 0.9981263279914856, + 0.9987307190895081, + 0.9984320998191833, + 0.9988777041435242, + 0.9989087581634521, + 0.9988114833831787, + 0.9985300302505493, + 0.9989233613014221, + 0.9976045489311218, + 0.9988840222358704, + 0.9987616539001465, + 0.9988988637924194, + 0.9988875985145569, + 0.9989344477653503 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 37 + }, + "sentiment_distribution": { + "NEGATIVE": 0.075, + "POSITIVE": 0.925 + }, + "sentiment_overall": [ + "POSITIVE", + 0.925 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9929684996604919, + 0.9748435616493225, + 0.9989270567893982, + 0.9976481795310974, + 0.9989344477653503, + 0.9935430288314819, + 0.9948187470436096, + 0.9987731575965881, + 0.9986268281936646, + 0.9974057078361511, + 0.9987468719482422, + 0.9967971444129944, + 0.9989228844642639, + 0.9978681802749634, + 0.9989039897918701, + 0.9989128112792969, + 0.9957310557365417, + 0.9989104270935059, + 0.9988842606544495, + 0.9988930821418762, + 0.9988271594047546, + 0.9989204406738281, + 0.9964824914932251, + 0.9989080429077148, + 0.9989225268363953, + 0.9987785220146179, + 0.9988411068916321, + 0.9977654218673706, + 0.9988226294517517, + 0.9989104270935059, + 0.9988604784011841, + 0.9987905621528625, + 0.9988701939582825, + 0.9984412789344788, + 0.9994974136352539, + 0.9988837838172913, + 0.9970548152923584, + 0.9928795695304871, + 0.9988700747489929, + 0.9988788962364197 + ], + "sentiment_counts": { + "NEGATIVE": 5, + "POSITIVE": 35 + }, + "sentiment_distribution": { + "NEGATIVE": 0.125, + "POSITIVE": 0.875 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "final_label": "POSITIVE", + "final_count": 110, + "final_proportion": 0.9090909090909091, + "final_counts": { + "POSITIVE": 110, + "NEGATIVE": 11 + }, + "final_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + } + } }, { "season_code": "202303", "requirements": "Prerequisites: ECON 108, 110, 115, or equivalent and familiarity with single variable calculus. Students who have taken ECON 131 may not receive major credit for this course.", - "description": "Introduction to data analysis from the beginning of the econometrics sequence; exposure to modern empirical economics; and development of credible economic analysis. This course emphasizes working directly and early with data, through such economic examples as studies of environmental\/natural resource economics, intergenerational mobility, discrimination, and finance. Topics include: probability, statistics, and sampling; selection, causation and causal inference; regression and model specification; and machine learning and big data.", + "description": "Introduction to data analysis from the beginning of the econometrics sequence; exposure to modern empirical economics; and development of credible economic analysis. This course emphasizes working directly and early with data, through such economic examples as studies of environmental/natural resource economics, intergenerational mobility, discrimination, and finance. Topics include: probability, statistics, and sampling; selection, causation and causal inference; regression and model specification; and machine learning and big data.", "short_title": "Introduction to Data Analysis...", "title": "Introduction to Data Analysis and Econometrics", "school": "YC", @@ -82878,7 +174291,7 @@ "16:00", "16:50", "WLH 009 - William L. Harkness Hall 009", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -82903,12 +174316,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "Prerequisites: ECON 108, 110, 115, or equivalent and familiarity with single variable calculus. Students who have taken ECON 131 may not receive major credit for this course.", - "description": "Introduction to data analysis from the beginning of the econometrics sequence; exposure to modern empirical economics; and development of credible economic analysis. This course emphasizes working directly and early with data, through such economic examples as studies of environmental\/natural resource economics, intergenerational mobility, discrimination, and finance. Topics include: probability, statistics, and sampling; selection, causation and causal inference; regression and model specification; and machine learning and big data.", + "description": "Introduction to data analysis from the beginning of the econometrics sequence; exposure to modern empirical economics; and development of credible economic analysis. This course emphasizes working directly and early with data, through such economic examples as studies of environmental/natural resource economics, intergenerational mobility, discrimination, and finance. Topics include: probability, statistics, and sampling; selection, causation and causal inference; regression and model specification; and machine learning and big data.", "short_title": "Introduction to Data Analysis...", "title": "Introduction to Data Analysis and Econometrics", "school": "YC", @@ -82934,7 +174375,7 @@ "17:00", "17:50", "WLH 009 - William L. Harkness Hall 009", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -82959,12 +174400,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "Prerequisites: ECON 108, 110, 115, or equivalent and familiarity with single variable calculus. Students who have taken ECON 131 may not receive major credit for this course.", - "description": "Introduction to data analysis from the beginning of the econometrics sequence; exposure to modern empirical economics; and development of credible economic analysis. This course emphasizes working directly and early with data, through such economic examples as studies of environmental\/natural resource economics, intergenerational mobility, discrimination, and finance. Topics include: probability, statistics, and sampling; selection, causation and causal inference; regression and model specification; and machine learning and big data.", + "description": "Introduction to data analysis from the beginning of the econometrics sequence; exposure to modern empirical economics; and development of credible economic analysis. This course emphasizes working directly and early with data, through such economic examples as studies of environmental/natural resource economics, intergenerational mobility, discrimination, and finance. Topics include: probability, statistics, and sampling; selection, causation and causal inference; regression and model specification; and machine learning and big data.", "short_title": "Introduction to Data Analysis...", "title": "Introduction to Data Analysis and Econometrics", "school": "YC", @@ -82990,7 +174459,7 @@ "19:00", "19:50", "WTS B39 - Watson Center 60 Sachem Street B39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -83015,12 +174484,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "Prerequisites: ECON 108, 110, 115, or equivalent and familiarity with single variable calculus. Students who have taken ECON 131 may not receive major credit for this course.", - "description": "Introduction to data analysis from the beginning of the econometrics sequence; exposure to modern empirical economics; and development of credible economic analysis. This course emphasizes working directly and early with data, through such economic examples as studies of environmental\/natural resource economics, intergenerational mobility, discrimination, and finance. Topics include: probability, statistics, and sampling; selection, causation and causal inference; regression and model specification; and machine learning and big data.", + "description": "Introduction to data analysis from the beginning of the econometrics sequence; exposure to modern empirical economics; and development of credible economic analysis. This course emphasizes working directly and early with data, through such economic examples as studies of environmental/natural resource economics, intergenerational mobility, discrimination, and finance. Topics include: probability, statistics, and sampling; selection, causation and causal inference; regression and model specification; and machine learning and big data.", "short_title": "Introduction to Data Analysis...", "title": "Introduction to Data Analysis and Econometrics", "school": "YC", @@ -83046,7 +174543,7 @@ "20:00", "20:50", "WTS B39 - Watson Center 60 Sachem Street B39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -83071,12 +174568,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "Prerequisites: ECON 108, 110, 115, or equivalent and familiarity with single variable calculus. Students who have taken ECON 131 may not receive major credit for this course.", - "description": "Introduction to data analysis from the beginning of the econometrics sequence; exposure to modern empirical economics; and development of credible economic analysis. This course emphasizes working directly and early with data, through such economic examples as studies of environmental\/natural resource economics, intergenerational mobility, discrimination, and finance. Topics include: probability, statistics, and sampling; selection, causation and causal inference; regression and model specification; and machine learning and big data.", + "description": "Introduction to data analysis from the beginning of the econometrics sequence; exposure to modern empirical economics; and development of credible economic analysis. This course emphasizes working directly and early with data, through such economic examples as studies of environmental/natural resource economics, intergenerational mobility, discrimination, and finance. Topics include: probability, statistics, and sampling; selection, causation and causal inference; regression and model specification; and machine learning and big data.", "short_title": "Introduction to Data Analysis...", "title": "Introduction to Data Analysis and Econometrics", "school": "YC", @@ -83102,7 +174627,7 @@ "9:25", "10:15", "WLH 209 - William L. Harkness Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -83127,12 +174652,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "Prerequisites: ECON 108, 110, 115, or equivalent and familiarity with single variable calculus. Students who have taken ECON 131 may not receive major credit for this course.", - "description": "Introduction to data analysis from the beginning of the econometrics sequence; exposure to modern empirical economics; and development of credible economic analysis. This course emphasizes working directly and early with data, through such economic examples as studies of environmental\/natural resource economics, intergenerational mobility, discrimination, and finance. Topics include: probability, statistics, and sampling; selection, causation and causal inference; regression and model specification; and machine learning and big data.", + "description": "Introduction to data analysis from the beginning of the econometrics sequence; exposure to modern empirical economics; and development of credible economic analysis. This course emphasizes working directly and early with data, through such economic examples as studies of environmental/natural resource economics, intergenerational mobility, discrimination, and finance. Topics include: probability, statistics, and sampling; selection, causation and causal inference; regression and model specification; and machine learning and big data.", "short_title": "Introduction to Data Analysis...", "title": "Introduction to Data Analysis and Econometrics", "school": "YC", @@ -83158,7 +174711,7 @@ "10:30", "11:20", "WLH 209 - William L. Harkness Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -83183,12 +174736,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "Prerequisites: ECON 108, 110, 115, or equivalent and familiarity with single variable calculus. Students who have taken ECON 131 may not receive major credit for this course.", - "description": "Introduction to data analysis from the beginning of the econometrics sequence; exposure to modern empirical economics; and development of credible economic analysis. This course emphasizes working directly and early with data, through such economic examples as studies of environmental\/natural resource economics, intergenerational mobility, discrimination, and finance. Topics include: probability, statistics, and sampling; selection, causation and causal inference; regression and model specification; and machine learning and big data.", + "description": "Introduction to data analysis from the beginning of the econometrics sequence; exposure to modern empirical economics; and development of credible economic analysis. This course emphasizes working directly and early with data, through such economic examples as studies of environmental/natural resource economics, intergenerational mobility, discrimination, and finance. Topics include: probability, statistics, and sampling; selection, causation and causal inference; regression and model specification; and machine learning and big data.", "short_title": "Introduction to Data Analysis...", "title": "Introduction to Data Analysis and Econometrics", "school": "YC", @@ -83214,7 +174795,7 @@ "14:30", "15:20", "WLH 007 - William L. Harkness Hall 007", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -83239,12 +174820,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "Prerequisites: ECON 108, 110, 115, or equivalent and familiarity with single variable calculus. Students who have taken ECON 131 may not receive major credit for this course.", - "description": "Introduction to data analysis from the beginning of the econometrics sequence; exposure to modern empirical economics; and development of credible economic analysis. This course emphasizes working directly and early with data, through such economic examples as studies of environmental\/natural resource economics, intergenerational mobility, discrimination, and finance. Topics include: probability, statistics, and sampling; selection, causation and causal inference; regression and model specification; and machine learning and big data.", + "description": "Introduction to data analysis from the beginning of the econometrics sequence; exposure to modern empirical economics; and development of credible economic analysis. This course emphasizes working directly and early with data, through such economic examples as studies of environmental/natural resource economics, intergenerational mobility, discrimination, and finance. Topics include: probability, statistics, and sampling; selection, causation and causal inference; regression and model specification; and machine learning and big data.", "short_title": "Introduction to Data Analysis...", "title": "Introduction to Data Analysis and Econometrics", "school": "YC", @@ -83270,7 +174879,7 @@ "15:30", "16:20", "WLH 007 - William L. Harkness Hall 007", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -83295,12 +174904,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "Prerequisites: ECON 108, 110, 115, or equivalent and familiarity with single variable calculus. Students who have taken ECON 131 may not receive major credit for this course.", - "description": "Introduction to data analysis from the beginning of the econometrics sequence; exposure to modern empirical economics; and development of credible economic analysis. This course emphasizes working directly and early with data, through such economic examples as studies of environmental\/natural resource economics, intergenerational mobility, discrimination, and finance. Topics include: probability, statistics, and sampling; selection, causation and causal inference; regression and model specification; and machine learning and big data.", + "description": "Introduction to data analysis from the beginning of the econometrics sequence; exposure to modern empirical economics; and development of credible economic analysis. This course emphasizes working directly and early with data, through such economic examples as studies of environmental/natural resource economics, intergenerational mobility, discrimination, and finance. Topics include: probability, statistics, and sampling; selection, causation and causal inference; regression and model specification; and machine learning and big data.", "short_title": "Introduction to Data Analysis...", "title": "Introduction to Data Analysis and Econometrics", "school": "YC", @@ -83326,7 +174963,7 @@ "11:35", "12:25", "LC 204 - Linsly-Chittenden Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -83351,7 +174988,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -83388,7 +175053,7 @@ "13:00", "14:15", "SSS 114 - Sheffield-Sterling-Strathcona 114", - "https:\/\/map.yale.edu\/?id=1910#!m\/563689" + "https://map.yale.edu/?id=1910#!m/563689" ] ], "Wednesday": [ @@ -83396,7 +175061,7 @@ "13:00", "14:15", "SSS 114 - Sheffield-Sterling-Strathcona 114", - "https:\/\/map.yale.edu\/?id=1910#!m\/563689" + "https://map.yale.edu/?id=1910#!m/563689" ] ] }, @@ -83415,10 +175080,593 @@ "classnotes": "", "final_exam": "Wednesday, December 20, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89293\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89293/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998902440071106, + 0.9980542659759521, + 0.9931963682174683, + 0.908267617225647, + 0.9973836541175842, + 0.9980126619338989, + 0.9986252784729004, + 0.9986870884895325, + 0.9994144439697266, + 0.9955132603645325, + 0.9967353940010071, + 0.9972322583198547, + 0.9986565113067627, + 0.9978912472724915, + 0.9984550476074219, + 0.998920202255249, + 0.998791515827179, + 0.9987770915031433, + 0.9989148378372192, + 0.9987611770629883, + 0.996894121170044, + 0.995213508605957, + 0.9973757266998291, + 0.9987351298332214, + 0.9809515476226807, + 0.9995052814483643, + 0.9989181756973267, + 0.9986973404884338, + 0.9995080232620239, + 0.9988443851470947, + 0.9992181062698364, + 0.9986433386802673, + 0.9989323019981384, + 0.9986634254455566, + 0.998561680316925, + 0.9956265687942505, + 0.9876014590263367, + 0.9964699745178223, + 0.9989233613014221, + 0.9972217082977295, + 0.9983357787132263, + 0.9949215054512024, + 0.9989293217658997, + 0.9989058971405029, + 0.9988038539886475, + 0.9987298846244812, + 0.9986880421638489, + 0.997611403465271, + 0.9989150762557983, + 0.9988759160041809, + 0.9984044432640076, + 0.9987288117408752, + 0.998755693435669, + 0.9987620115280151, + 0.9988344311714172, + 0.9982889294624329, + 0.9986339211463928, + 0.9991623163223267, + 0.9989117383956909, + 0.9986674785614014, + 0.9987508058547974, + 0.9901453852653503, + 0.9987694621086121, + 0.87269127368927, + 0.9987223744392395, + 0.9985575079917908, + 0.9399320483207703, + 0.9988527297973633, + 0.9979045391082764, + 0.9989018440246582, + 0.9987168312072754, + 0.9986978769302368, + 0.998719334602356, + 0.9988027811050415, + 0.995218813419342, + 0.9987860321998596, + 0.9989114999771118, + 0.99874347448349, + 0.9988135099411011, + 0.9986183643341064, + 0.9977253079414368 + ], + "sentiment_counts": { + "POSITIVE": 71, + "NEGATIVE": 10 + }, + "sentiment_distribution": { + "POSITIVE": 0.8765432098765432, + "NEGATIVE": 0.12345679012345678 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8765432098765432 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994557499885559, + 0.990338146686554, + 0.9988542795181274, + 0.9988942742347717, + 0.99265056848526, + 0.9988526105880737, + 0.9974426031112671, + 0.9912290573120117, + 0.9986609220504761, + 0.9994120597839355, + 0.9988203644752502, + 0.9994753003120422, + 0.9988186955451965, + 0.9988180994987488, + 0.9966273903846741, + 0.9984580278396606, + 0.9987248778343201, + 0.9981251358985901, + 0.9557510614395142, + 0.9988875985145569, + 0.9989228844642639, + 0.9984979629516602, + 0.9986733198165894, + 0.998849630355835, + 0.9988908171653748, + 0.999472439289093, + 0.9995068311691284, + 0.9989076852798462, + 0.9994920492172241, + 0.9989213943481445, + 0.9987315535545349, + 0.9952207207679749, + 0.9994993209838867, + 0.9985951781272888, + 0.9988707900047302, + 0.9977506995201111, + 0.998831570148468, + 0.9989193677902222, + 0.9993402361869812, + 0.9994655251502991, + 0.9988915324211121, + 0.9988808035850525, + 0.9922074675559998, + 0.9951726794242859, + 0.9988939166069031, + 0.9950429201126099, + 0.9989126920700073, + 0.9995033740997314, + 0.9994865655899048, + 0.9902665019035339, + 0.9988928437232971, + 0.9994438290596008, + 0.9989120960235596, + 0.998664379119873, + 0.9985736608505249, + 0.9963029623031616, + 0.9989118576049805, + 0.9858705401420593, + 0.9994584918022156, + 0.9988116025924683, + 0.9987051486968994, + 0.9983685612678528, + 0.9975912570953369, + 0.9989156723022461, + 0.9946349859237671, + 0.9988106489181519, + 0.9994945526123047, + 0.9989093542098999, + 0.9994600415229797, + 0.5228556990623474, + 0.9994142055511475, + 0.9974779486656189, + 0.9989123344421387, + 0.9988722205162048, + 0.9972629547119141, + 0.9980132579803467, + 0.9986477494239807, + 0.9966411590576172, + 0.9983653426170349, + 0.9988943934440613, + 0.9987132549285889, + 0.9989333748817444, + 0.9988114833831787, + 0.9983317255973816, + 0.9985278844833374, + 0.998867392539978 + ], + "sentiment_counts": { + "NEGATIVE": 22, + "POSITIVE": 64 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2558139534883721, + "POSITIVE": 0.7441860465116279 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7441860465116279 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985572695732117, + 0.9973322153091431, + 0.9994733929634094, + 0.9987577199935913, + 0.9980652928352356, + 0.9988025426864624, + 0.9953395128250122, + 0.9910076260566711, + 0.998862624168396, + 0.9985871315002441, + 0.9980511665344238, + 0.9994329810142517, + 0.9983008503913879, + 0.9969969987869263, + 0.9971044659614563, + 0.9977745413780212, + 0.9933443069458008, + 0.9988378882408142, + 0.998630702495575, + 0.997117280960083, + 0.996874213218689, + 0.9989006519317627, + 0.99871826171875, + 0.9994982481002808, + 0.997117280960083, + 0.997117280960083, + 0.9987545013427734, + 0.9977413415908813, + 0.9978746175765991, + 0.9994602799415588, + 0.9983267188072205, + 0.997619092464447, + 0.9988986253738403, + 0.9969347715377808, + 0.9995073080062866, + 0.997650682926178, + 0.9926854372024536, + 0.9986513257026672, + 0.9988831877708435, + 0.9887030124664307, + 0.9981045722961426, + 0.9989296793937683, + 0.9867892861366272, + 0.9931343793869019, + 0.98621666431427, + 0.9988731741905212, + 0.99820876121521, + 0.9982553124427795, + 0.9987988471984863, + 0.9988941550254822, + 0.9988580942153931, + 0.9957177042961121, + 0.996243953704834, + 0.9950929880142212, + 0.9988841414451599, + 0.9988756775856018, + 0.9986006617546082, + 0.9994971752166748, + 0.9987581968307495, + 0.9905076026916504, + 0.9980016350746155, + 0.9985105395317078, + 0.9988967180252075, + 0.9989297986030579, + 0.9993215799331665, + 0.9994962215423584, + 0.9893848299980164, + 0.9988974332809448, + 0.9988993406295776, + 0.9989288449287415, + 0.9972749352455139, + 0.9914798736572266, + 0.999500036239624, + 0.9989326596260071, + 0.9988033771514893, + 0.998586893081665, + 0.9872540831565857, + 0.9982837438583374, + 0.9988308548927307, + 0.9988104104995728, + 0.9981922507286072, + 0.9904254078865051, + 0.9989259839057922, + 0.9995090961456299, + 0.9995059967041016, + 0.9976826906204224, + 0.9988986253738403, + 0.9987205266952515, + 0.998322069644928, + 0.9986206293106079, + 0.9989193677902222 + ], + "sentiment_counts": { + "NEGATIVE": 31, + "POSITIVE": 60 + }, + "sentiment_distribution": { + "NEGATIVE": 0.34065934065934067, + "POSITIVE": 0.6593406593406593 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6593406593406593 + ] + }, + "final_label": "POSITIVE", + "final_count": 195, + "final_proportion": 0.7558139534883721, + "final_counts": { + "POSITIVE": 195, + "NEGATIVE": 63 + }, + "final_distribution": { + "POSITIVE": 0.7558139534883721, + "NEGATIVE": 0.2441860465116279 + } + } }, { "season_code": "202303", @@ -83449,7 +175697,7 @@ "16:00", "16:50", "WLH 013 - William L. Harkness Hall 013", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -83471,7 +175719,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -83502,7 +175778,7 @@ "17:00", "17:50", "WLH 013 - William L. Harkness Hall 013", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -83524,7 +175800,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -83555,7 +175859,7 @@ "16:00", "16:50", "WLH 202 - William L. Harkness Hall 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -83577,7 +175881,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -83608,7 +175940,7 @@ "17:00", "17:50", "WLH 202 - William L. Harkness Hall 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -83630,7 +175962,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -83661,7 +176021,7 @@ "19:00", "19:50", "WLH 007 - William L. Harkness Hall 007", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -83683,7 +176043,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -83714,7 +176102,7 @@ "20:00", "20:50", "WLH 007 - William L. Harkness Hall 007", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -83736,7 +176124,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -83767,7 +176183,7 @@ "16:00", "16:50", "WLH 007 - William L. Harkness Hall 007", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -83789,7 +176205,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -83820,7 +176264,7 @@ "17:00", "17:50", "WLH 007 - William L. Harkness Hall 007", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -83842,7 +176286,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -83873,7 +176345,7 @@ "16:00", "16:50", "WLH 013 - William L. Harkness Hall 013", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -83895,7 +176367,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -83926,7 +176426,7 @@ "17:00", "17:50", "WLH 013 - William L. Harkness Hall 013", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -83948,7 +176448,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -83979,7 +176507,7 @@ "10:30", "11:20", "LC 103 - Linsly-Chittenden Hall 103", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -84001,7 +176529,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -84032,7 +176588,7 @@ "11:35", "12:25", "LC 103 - Linsly-Chittenden Hall 103", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -84054,7 +176610,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -84085,7 +176669,7 @@ "10:30", "11:20", "WLH 211 - William L. Harkness Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -84107,7 +176691,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -84138,7 +176750,7 @@ "11:35", "12:25", "WLH 211 - William L. Harkness Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -84160,7 +176772,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -84191,7 +176831,7 @@ "19:00", "19:50", "WTS A68 - Watson Center 60 Sachem Street A68", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -84213,7 +176853,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -84244,7 +176912,7 @@ "20:00", "20:50", "WTS A68 - Watson Center 60 Sachem Street A68", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -84266,7 +176934,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -84297,7 +176993,7 @@ "16:00", "16:50", "WTS B39 - Watson Center 60 Sachem Street B39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -84319,7 +177015,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -84350,7 +177074,7 @@ "17:00", "17:50", "WTS B31 - Watson Center 60 Sachem Street B31", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -84372,7 +177096,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -84409,7 +177161,7 @@ "11:35", "12:50", "DL 220 - Dunham Laboratory 220", - "https:\/\/map.yale.edu\/?id=1910#!m\/560005" + "https://map.yale.edu/?id=1910#!m/560005" ] ], "Wednesday": [ @@ -84417,7 +177169,7 @@ "11:35", "12:50", "DL 220 - Dunham Laboratory 220", - "https:\/\/map.yale.edu\/?id=1910#!m\/560005" + "https://map.yale.edu/?id=1910#!m/560005" ] ] }, @@ -84436,10 +177188,281 @@ "classnotes": "", "final_exam": "Sunday, December 17, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89555\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89555/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9949637651443481, + 0.9987853169441223, + 0.998927652835846, + 0.9979610443115234, + 0.998721182346344, + 0.998626708984375, + 0.9994986057281494, + 0.9967431426048279, + 0.997580885887146, + 0.9987976551055908, + 0.9141595959663391, + 0.9989012479782104, + 0.9969388246536255, + 0.9986214637756348, + 0.9987804293632507, + 0.9986635446548462, + 0.9987194538116455, + 0.9989678859710693, + 0.9986931681632996, + 0.9986597299575806, + 0.9986506104469299, + 0.9921349287033081, + 0.998854398727417, + 0.9985999464988708, + 0.9988440275192261, + 0.9988262057304382, + 0.9987745881080627, + 0.9988222718238831, + 0.9038465619087219, + 0.9972049593925476, + 0.9987207055091858, + 0.9994795918464661, + 0.9916952252388 + ], + "sentiment_counts": { + "POSITIVE": 26, + "NEGATIVE": 7 + }, + "sentiment_distribution": { + "POSITIVE": 0.7878787878787878, + "NEGATIVE": 0.21212121212121213 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7878787878787878 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988862872123718, + 0.9980637431144714, + 0.9994825124740601, + 0.9985756874084473, + 0.9975900650024414, + 0.9995064735412598, + 0.9994971752166748, + 0.9994809031486511, + 0.997725784778595, + 0.9989412426948547, + 0.9988382458686829, + 0.9976254105567932, + 0.9995056390762329, + 0.9994940757751465, + 0.9963962435722351, + 0.9946787357330322, + 0.9994922876358032, + 0.9986847043037415, + 0.9984320998191833, + 0.9989101886749268, + 0.9988250136375427, + 0.999483585357666, + 0.999504566192627, + 0.998855710029602, + 0.9793256521224976, + 0.998389482498169, + 0.991724967956543, + 0.9982486963272095, + 0.9987438321113586, + 0.9994634985923767, + 0.9995037317276001, + 0.9880282878875732, + 0.9982357025146484, + 0.9995157718658447, + 0.9984745383262634 + ], + "sentiment_counts": { + "POSITIVE": 16, + "NEGATIVE": 19 + }, + "sentiment_distribution": { + "POSITIVE": 0.45714285714285713, + "NEGATIVE": 0.5428571428571428 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9912900924682617, + 0.9900437593460083, + 0.9995057582855225, + 0.9995026588439941, + 0.9994919300079346, + 0.9995077848434448, + 0.9994869232177734, + 0.9994045495986938, + 0.9713664650917053, + 0.9995003938674927, + 0.9926744103431702, + 0.9955140948295593, + 0.997117280960083, + 0.9994887113571167, + 0.9855538010597229, + 0.9963068962097168, + 0.9974592328071594, + 0.9974361062049866, + 0.99839848279953, + 0.9995009899139404, + 0.9983392953872681, + 0.99699866771698, + 0.999505877494812, + 0.9995115995407104, + 0.9852136969566345, + 0.9988697171211243, + 0.999495267868042, + 0.9990290403366089, + 0.9988376498222351, + 0.9994908571243286, + 0.998755931854248, + 0.9994723200798035, + 0.9988196492195129, + 0.9984861016273499 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 24 + }, + "sentiment_distribution": { + "POSITIVE": 0.29411764705882354, + "NEGATIVE": 0.7058823529411765 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.7058823529411765 + ] + }, + "final_label": "neutral", + "final_count": 52, + "final_proportion": 0.5, + "final_counts": { + "POSITIVE": 52, + "NEGATIVE": 50 + }, + "final_distribution": { + "POSITIVE": 0.5098039215686274, + "NEGATIVE": 0.49019607843137253 + } + } }, { "season_code": "202303", @@ -84470,7 +177493,7 @@ "16:00", "16:50", "WLH 211 - William L. Harkness Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -84492,7 +177515,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -84523,7 +177574,7 @@ "17:00", "17:50", "WLH 211 - William L. Harkness Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -84545,7 +177596,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -84576,7 +177655,7 @@ "19:00", "19:50", "WLH 013 - William L. Harkness Hall 013", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -84598,7 +177677,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -84629,7 +177736,7 @@ "20:00", "20:50", "WLH 013 - William L. Harkness Hall 013", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -84651,7 +177758,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -84682,7 +177817,7 @@ "16:00", "16:50", "WLH 001 - William L. Harkness Hall 001", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -84704,7 +177839,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -84735,7 +177898,7 @@ "17:00", "17:50", "WLH 001 - William L. Harkness Hall 001", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -84757,7 +177920,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -84788,7 +177979,7 @@ "19:00", "19:50", "WTS A39 - Watson Center 60 Sachem Street A39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -84810,7 +178001,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -84841,7 +178060,7 @@ "20:00", "20:50", "WTS A39 - Watson Center 60 Sachem Street A39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -84863,7 +178082,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -84900,7 +178147,7 @@ "14:30", "15:45", "WLH 208 - William L. Harkness Hall 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -84908,7 +178155,7 @@ "14:30", "15:45", "WLH 208 - William L. Harkness Hall 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -84930,10 +178177,195 @@ "classnotes": "", "final_exam": "Sunday, December 17, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89556\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89556/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985387325286865, + 0.9984423518180847, + 0.9932316541671753, + 0.9958916902542114, + 0.9986622333526611, + 0.9993996620178223, + 0.9989031553268433, + 0.9987813830375671, + 0.9987518787384033, + 0.9984800219535828, + 0.9987853169441223, + 0.9988678693771362, + 0.9989272952079773, + 0.9988118410110474, + 0.9987804293632507, + 0.9987967014312744, + 0.9988285899162292, + 0.9722809791564941, + 0.9987245202064514, + 0.9988594055175781 + ], + "sentiment_counts": { + "POSITIVE": 18, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9875061511993408, + 0.9984650611877441, + 0.9985561966896057, + 0.9985124468803406, + 0.9983249306678772, + 0.9995015859603882, + 0.9985670447349548, + 0.9995012283325195, + 0.9985657334327698, + 0.9987943172454834, + 0.9945582151412964, + 0.9988405108451843, + 0.9989179372787476, + 0.9989351630210876, + 0.9976269602775574, + 0.9995105266571045, + 0.9957221746444702, + 0.9989207983016968, + 0.9994695782661438, + 0.999414324760437 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 8 + }, + "sentiment_distribution": { + "POSITIVE": 0.6, + "NEGATIVE": 0.4 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9906511306762695, + 0.9810572862625122, + 0.9930939674377441, + 0.9819062948226929, + 0.9994838237762451, + 0.9983184337615967, + 0.9988553524017334, + 0.9989187717437744, + 0.9988860487937927, + 0.9956057667732239, + 0.9921727180480957, + 0.9988526105880737, + 0.9989055395126343, + 0.9948558807373047, + 0.9995036125183105, + 0.998274564743042, + 0.9989238381385803, + 0.998349666595459, + 0.9995135068893433 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 7 + }, + "sentiment_distribution": { + "POSITIVE": 0.631578947368421, + "NEGATIVE": 0.3684210526315789 + }, + "sentiment_overall": [ + "POSITIVE", + 0.631578947368421 + ] + }, + "final_label": "POSITIVE", + "final_count": 42, + "final_proportion": 0.711864406779661, + "final_counts": { + "POSITIVE": 42, + "NEGATIVE": 17 + }, + "final_distribution": { + "POSITIVE": 0.711864406779661, + "NEGATIVE": 0.288135593220339 + } + } }, { "season_code": "202303", @@ -84964,7 +178396,7 @@ "16:00", "16:50", "WLH 003 - William L. Harkness Hall 003", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -84989,7 +178421,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -85020,7 +178480,7 @@ "17:00", "17:50", "WLH 003 - William L. Harkness Hall 003", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -85045,7 +178505,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -85109,7 +178597,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -85146,7 +178662,7 @@ "9:00", "10:15", "LUCE 202 - Luce Hall 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ], "Thursday": [ @@ -85154,7 +178670,7 @@ "9:00", "10:15", "LUCE 202 - Luce Hall 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ] }, @@ -85174,10 +178690,115 @@ "classnotes": "", "final_exam": "Saturday, December 16, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89716\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89716/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983705878257751, + 0.9977418184280396, + 0.9989256262779236, + 0.9988391995429993, + 0.9987163543701172 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9905487895011902, + 0.9981308579444885, + 0.9989026784896851, + 0.9989174604415894, + 0.998897910118103, + 0.9981677532196045 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 5 + }, + "sentiment_distribution": { + "NEGATIVE": 0.16666666666666666, + "POSITIVE": 0.8333333333333334 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.997117280960083, + 0.9988868832588196, + 0.9987200498580933, + 0.9989308714866638, + 0.9988468885421753, + 0.9982385635375977, + 0.998925507068634, + 0.9993085861206055 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 0.8947368421052632, + "final_counts": { + "POSITIVE": 17, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8947368421052632, + "NEGATIVE": 0.10526315789473684 + } + } }, { "season_code": "202303", @@ -85214,7 +178835,7 @@ "16:00", "17:15", "WTS A30 - Watson Center 60 Sachem Street A30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -85222,7 +178843,7 @@ "16:00", "17:15", "WTS A30 - Watson Center 60 Sachem Street A30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -85243,10 +178864,125 @@ "classnotes": "", "final_exam": "Sunday, December 17, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89557\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89557/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9995013475418091, + 0.9967516660690308, + 0.9989251494407654, + 0.9983527660369873, + 0.9980781078338623, + 0.9988200068473816, + 0.9632000923156738 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 6 + }, + "sentiment_distribution": { + "NEGATIVE": 0.14285714285714285, + "POSITIVE": 0.8571428571428571 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9995057582855225, + 0.9994078874588013, + 0.986194372177124, + 0.9984064698219299, + 0.9989038705825806, + 0.998818576335907, + 0.9975300431251526, + 0.9994951486587524 + ], + "sentiment_counts": { + "NEGATIVE": 4, + "POSITIVE": 4 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9993709921836853, + 0.9988718628883362, + 0.9978038668632507, + 0.9995062351226807, + 0.9814485907554626, + 0.9986762404441833, + 0.9989175796508789, + 0.9994822144508362, + 0.9968695044517517 + ], + "sentiment_counts": { + "NEGATIVE": 5, + "POSITIVE": 4 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5555555555555556, + "POSITIVE": 0.4444444444444444 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.5555555555555556 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 0.5833333333333334, + "final_counts": { + "NEGATIVE": 10, + "POSITIVE": 14 + }, + "final_distribution": { + "NEGATIVE": 0.4166666666666667, + "POSITIVE": 0.5833333333333334 + } + } }, { "season_code": "202303", @@ -85286,7 +179022,7 @@ "11:35", "12:50", "YSB MARSH - Yale Science Building MARSH", - "https:\/\/map.yale.edu\/?id=1910#!m\/563700" + "https://map.yale.edu/?id=1910#!m/563700" ] ], "Thursday": [ @@ -85294,7 +179030,7 @@ "11:35", "12:50", "YSB MARSH - Yale Science Building MARSH", - "https:\/\/map.yale.edu\/?id=1910#!m\/563700" + "https://map.yale.edu/?id=1910#!m/563700" ] ] }, @@ -85313,10 +179049,589 @@ "classnotes": "", "final_exam": "Friday, December 15, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88301\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88301/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988328814506531, + 0.9987678527832031, + 0.9989029169082642, + 0.9987850785255432, + 0.9985333681106567, + 0.998874843120575, + 0.9987993240356445, + 0.9916856288909912, + 0.9987795948982239, + 0.992846667766571, + 0.9989186525344849, + 0.9987413287162781, + 0.9857977032661438, + 0.9986491799354553, + 0.9988352656364441, + 0.9988735318183899, + 0.9989136457443237, + 0.9989369511604309, + 0.9984112977981567, + 0.998889148235321, + 0.9985790252685547, + 0.9989058971405029, + 0.9988297820091248, + 0.9988999366760254, + 0.9987982511520386, + 0.9975742697715759, + 0.997580885887146, + 0.9989216327667236, + 0.9987282156944275, + 0.99814772605896, + 0.9989179372787476, + 0.99883633852005, + 0.9376633167266846, + 0.99861741065979, + 0.9987965822219849, + 0.9989234805107117, + 0.998908281326294, + 0.9838896989822388, + 0.9987568855285645, + 0.9987894892692566, + 0.9988409876823425, + 0.9988536834716797, + 0.998916506767273, + 0.9987753033638, + 0.9988309741020203, + 0.9986878037452698, + 0.9992117881774902, + 0.9988033771514893, + 0.998843789100647, + 0.9776723980903625, + 0.9975645542144775, + 0.9988446235656738, + 0.9988473653793335, + 0.9986982345581055, + 0.9903036952018738, + 0.9705064296722412, + 0.9989140033721924, + 0.9988831877708435, + 0.998897910118103, + 0.993658721446991, + 0.9988058805465698, + 0.9988296627998352, + 0.9988345503807068, + 0.9988833069801331, + 0.9988095760345459, + 0.9907042384147644, + 0.9988505840301514, + 0.9987712502479553, + 0.9987385869026184, + 0.9988734126091003, + 0.99809330701828, + 0.9989033937454224, + 0.9989109039306641, + 0.9988868832588196, + 0.9988898634910583, + 0.9947611689567566 + ], + "sentiment_counts": { + "POSITIVE": 69, + "NEGATIVE": 7 + }, + "sentiment_distribution": { + "POSITIVE": 0.9078947368421053, + "NEGATIVE": 0.09210526315789473 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9078947368421053 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988524913787842, + 0.9989342093467712, + 0.9989349246025085, + 0.9952126741409302, + 0.9986928105354309, + 0.9988322854042053, + 0.9987527132034302, + 0.9988521337509155, + 0.9984802603721619, + 0.9989323019981384, + 0.9988800883293152, + 0.9988971948623657, + 0.9989069700241089, + 0.9988536834716797, + 0.9974876642227173, + 0.9984444975852966, + 0.9994601607322693, + 0.9973527193069458, + 0.9988449811935425, + 0.9988797307014465, + 0.9988973140716553, + 0.9988452196121216, + 0.9986401200294495, + 0.9988596439361572, + 0.9989132881164551, + 0.9988672733306885, + 0.9989253878593445, + 0.9988951086997986, + 0.9989296793937683, + 0.8647946715354919, + 0.9988044500350952, + 0.9988201260566711, + 0.9988527297973633, + 0.9988943934440613, + 0.998814582824707, + 0.9907764792442322, + 0.9958012700080872, + 0.9988685846328735, + 0.997369647026062, + 0.9677252173423767, + 0.9988704323768616, + 0.998880922794342, + 0.9986574649810791, + 0.9988893866539001, + 0.9986768364906311, + 0.9994491934776306, + 0.9989185333251953, + 0.9988904595375061, + 0.9989345669746399, + 0.9987977743148804, + 0.9989196062088013, + 0.9871354699134827, + 0.9989036321640015, + 0.997565507888794, + 0.9994885921478271, + 0.9989306330680847, + 0.9986711740493774, + 0.9976551532745361, + 0.9987519979476929, + 0.9989110231399536, + 0.9987799525260925, + 0.9988604784011841, + 0.9989546537399292, + 0.999433696269989, + 0.9988986253738403, + 0.9988963603973389, + 0.9988654851913452, + 0.998879611492157, + 0.9993359446525574, + 0.9988881945610046, + 0.9988303780555725, + 0.9988094568252563, + 0.9988603591918945, + 0.998600423336029, + 0.9989230036735535, + 0.9987108707427979, + 0.9984436631202698, + 0.9948320388793945, + 0.9988206028938293, + 0.9974150657653809, + 0.9988582134246826, + 0.9989387392997742, + 0.9988917708396912, + 0.9988988637924194, + 0.9987918734550476, + 0.9986183643341064 + ], + "sentiment_counts": { + "POSITIVE": 75, + "NEGATIVE": 11 + }, + "sentiment_distribution": { + "POSITIVE": 0.872093023255814, + "NEGATIVE": 0.12790697674418605 + }, + "sentiment_overall": [ + "POSITIVE", + 0.872093023255814 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988653659820557, + 0.997117280960083, + 0.9982553124427795, + 0.9988961219787598, + 0.9989204406738281, + 0.9989281296730042, + 0.9988858103752136, + 0.9989022016525269, + 0.9989365935325623, + 0.9897352457046509, + 0.9915253520011902, + 0.9988810420036316, + 0.998927891254425, + 0.9989368319511414, + 0.9989221096038818, + 0.9988188147544861, + 0.9986863732337952, + 0.9969866871833801, + 0.9981594681739807, + 0.9989274144172668, + 0.9988725781440735, + 0.9988383650779724, + 0.9989064931869507, + 0.9989125728607178, + 0.9989036321640015, + 0.9988792538642883, + 0.9989277720451355, + 0.9988688826560974, + 0.9989233613014221, + 0.9987791180610657, + 0.9950087070465088, + 0.9988943934440613, + 0.9988545179367065, + 0.9989001750946045, + 0.998924195766449, + 0.9982967972755432, + 0.9986022114753723, + 0.9981766939163208, + 0.998323380947113, + 0.9989210367202759, + 0.9980652928352356, + 0.9988710284233093, + 0.9988687634468079, + 0.9989157915115356, + 0.9987446069717407, + 0.9987768530845642, + 0.9986080527305603, + 0.9995026588439941, + 0.9988376498222351, + 0.998927891254425, + 0.9989131689071655, + 0.9989184141159058, + 0.9813989996910095, + 0.9988642930984497, + 0.9987595081329346, + 0.998931348323822, + 0.998908519744873, + 0.9988783001899719, + 0.9988755583763123, + 0.9983327984809875, + 0.9989163875579834, + 0.9994763731956482, + 0.9983184337615967, + 0.9988032579421997, + 0.9989168643951416, + 0.997117280960083, + 0.9988829493522644, + 0.9989328980445862, + 0.9988662004470825, + 0.9988217949867249, + 0.9986963868141174, + 0.9989078044891357, + 0.9989161491394043, + 0.9967746138572693, + 0.9989290833473206, + 0.9989135265350342, + 0.9988150596618652, + 0.9989153146743774, + 0.9989232420921326, + 0.9989031553268433, + 0.9989168643951416, + 0.9963138699531555, + 0.9983408451080322, + 0.9988994598388672, + 0.998891294002533, + 0.9988792538642883, + 0.9988793730735779, + 0.9988914132118225, + 0.9987395405769348, + 0.998927891254425, + 0.9988341927528381, + 0.998869001865387, + 0.9970780611038208, + 0.9982553124427795 + ], + "sentiment_counts": { + "POSITIVE": 85, + "NEGATIVE": 9 + }, + "sentiment_distribution": { + "POSITIVE": 0.9042553191489362, + "NEGATIVE": 0.09574468085106383 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9042553191489362 + ] + }, + "final_label": "POSITIVE", + "final_count": 229, + "final_proportion": 0.89453125, + "final_counts": { + "POSITIVE": 229, + "NEGATIVE": 27 + }, + "final_distribution": { + "POSITIVE": 0.89453125, + "NEGATIVE": 0.10546875 + } + } }, { "season_code": "202303", @@ -85348,7 +179663,7 @@ "16:00", "16:50", "WLH 002 - William L. Harkness Hall 002", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -85371,7 +179686,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -85403,7 +179746,7 @@ "17:00", "17:50", "WLH 002 - William L. Harkness Hall 002", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -85426,7 +179769,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -85458,7 +179829,7 @@ "16:00", "16:50", "WLH 209 - William L. Harkness Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -85481,7 +179852,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -85513,7 +179912,7 @@ "17:00", "17:50", "WLH 209 - William L. Harkness Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -85536,7 +179935,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -85568,7 +179995,7 @@ "19:00", "19:50", "WTS A38 - Watson Center 60 Sachem Street A38", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -85591,7 +180018,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -85623,7 +180078,7 @@ "20:00", "20:50", "WTS A38 - Watson Center 60 Sachem Street A38", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -85646,7 +180101,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -85678,7 +180161,7 @@ "19:00", "19:50", "WTS B31 - Watson Center 60 Sachem Street B31", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -85701,7 +180184,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -85733,7 +180244,7 @@ "20:00", "20:50", "WTS B31 - Watson Center 60 Sachem Street B31", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -85756,7 +180267,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -85788,7 +180327,7 @@ "9:25", "10:15", "WLH 009 - William L. Harkness Hall 009", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -85811,7 +180350,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -85843,7 +180410,7 @@ "10:30", "11:20", "WLH 113 - William L. Harkness Hall 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -85866,7 +180433,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -85898,7 +180493,7 @@ "9:25", "10:15", "WLH 007 - William L. Harkness Hall 007", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -85921,7 +180516,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -85953,7 +180576,7 @@ "10:30", "11:20", "WLH 007 - William L. Harkness Hall 007", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -85976,7 +180599,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -86008,7 +180659,7 @@ "16:00", "16:50", "WLH 003 - William L. Harkness Hall 003", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -86031,7 +180682,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -86063,7 +180742,7 @@ "17:00", "17:50", "WLH 003 - William L. Harkness Hall 003", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -86086,7 +180765,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -86118,7 +180825,7 @@ "19:00", "19:50", "WTS A35 - Watson Center 60 Sachem Street A35", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -86141,7 +180848,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -86173,7 +180908,7 @@ "20:00", "20:50", "WTS A35 - Watson Center 60 Sachem Street A35", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -86196,7 +180931,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -86228,7 +180991,7 @@ "9:25", "10:15", "WLH 002 - William L. Harkness Hall 002", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -86251,7 +181014,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -86288,7 +181079,7 @@ "14:30", "15:45", "LUCE 101 - Luce Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ], "Thursday": [ @@ -86296,7 +181087,7 @@ "14:30", "15:45", "LUCE 101 - Luce Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ] }, @@ -86311,13 +181102,198 @@ ], "regnotes": "", "rp_attr": "", - "classnotes": "Preregistration will occur with this form, https:\/\/forms.gle\/iRYxepG3vncEyG3X9 by the registrar deadline (4\/21) please submit this google form and request permission via Yale Course Search. ECON 170 is capped at 80 students; we anticipate the potential ability to admit students during add\/drop period as numbers fluctuate. Please note we will prioritize seniors during this time.", + "classnotes": "Preregistration will occur with this form, https://forms.gle/iRYxepG3vncEyG3X9 by the registrar deadline (4/21) please submit this google form and request permission via Yale Course Search. ECON 170 is capped at 80 students; we anticipate the potential ability to admit students during add/drop period as numbers fluctuate. Please note we will prioritize seniors during this time.", "final_exam": "Monday, December 18, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88306\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88306/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987566471099854, + 0.9988859295845032, + 0.9989344477653503, + 0.9987732768058777, + 0.9987360835075378, + 0.9989328980445862, + 0.9987238049507141, + 0.9988735318183899, + 0.9988192915916443, + 0.9989140033721924, + 0.9986312985420227, + 0.9987679123878479, + 0.9987195730209351, + 0.998810887336731, + 0.9988107681274414, + 0.9988998174667358, + 0.9989225268363953 + ], + "sentiment_counts": { + "POSITIVE": 17, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9738292694091797, + 0.9933395981788635, + 0.9994809031486511, + 0.9988546371459961, + 0.9989315867424011, + 0.9994329810142517, + 0.9987809062004089, + 0.9988429546356201, + 0.9989087581634521, + 0.9989076852798462, + 0.9995105266571045, + 0.9986599683761597, + 0.9989240765571594, + 0.9994693398475647, + 0.9989043474197388, + 0.9985516667366028, + 0.9989262223243713, + 0.9988254904747009, + 0.9977502226829529 + ], + "sentiment_counts": { + "NEGATIVE": 6, + "POSITIVE": 13 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3157894736842105, + "POSITIVE": 0.6842105263157895 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6842105263157895 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989022016525269, + 0.9994770884513855, + 0.9995059967041016, + 0.9989264607429504, + 0.9987642765045166, + 0.9989053010940552, + 0.9989145994186401, + 0.9938190579414368, + 0.9988269209861755, + 0.9986732006072998, + 0.9989333748817444, + 0.9988320469856262, + 0.9952734112739563, + 0.9989184141159058, + 0.9988992214202881, + 0.9986777901649475, + 0.9994428753852844, + 0.997765302658081, + 0.9985458850860596, + 0.9989290833473206, + 0.9987438321113586, + 0.9989292025566101, + 0.9988811612129211 + ], + "sentiment_counts": { + "POSITIVE": 19, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.8260869565217391, + "NEGATIVE": 0.17391304347826086 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8260869565217391 + ] + }, + "final_label": "POSITIVE", + "final_count": 49, + "final_proportion": 0.8305084745762712, + "final_counts": { + "POSITIVE": 49, + "NEGATIVE": 10 + }, + "final_distribution": { + "POSITIVE": 0.8305084745762712, + "NEGATIVE": 0.1694915254237288 + } + } }, { "season_code": "202303", @@ -86355,7 +181331,7 @@ "13:30", "15:20", "WTS B39 - Watson Center 60 Sachem Street B39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -86371,10 +181347,135 @@ "classnotes": "", "final_exam": "Saturday, December 16, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88350\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88350/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988607168197632, + 0.9987930059432983, + 0.9956015348434448, + 0.9988752007484436, + 0.9988914132118225, + 0.9988586902618408, + 0.9988834261894226, + 0.9989200830459595, + 0.9988687634468079, + 0.9986962676048279 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989223480224609, + 0.9989104270935059, + 0.9988895058631897, + 0.9988940358161926, + 0.9989246726036072, + 0.9989277720451355, + 0.9989312291145325, + 0.9989138841629028, + 0.9988887906074524 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989307522773743, + 0.9989123344421387, + 0.9988940358161926, + 0.9989190101623535, + 0.9976147413253784, + 0.998877227306366, + 0.9989363551139832, + 0.998934805393219, + 0.9989211559295654, + 0.9984446167945862, + 0.9989266991615295 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 30, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 30 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -86412,7 +181513,7 @@ "15:30", "17:20", "HLH31 108 - 31 Hillhouse Avenue 108", - "https:\/\/map.yale.edu\/?id=1910#!m\/559990" + "https://map.yale.edu/?id=1910#!m/559990" ] ] }, @@ -86429,10 +181530,117 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88927\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88927/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9980286955833435, + 0.9954778552055359, + 0.9935854077339172, + 0.9985163807868958, + 0.9987905621528625 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9903432130813599, + 0.9995087385177612, + 0.9986526966094971, + 0.9986698627471924, + 0.9995018243789673, + 0.9978821873664856, + 0.987128734588623 + ], + "sentiment_counts": { + "NEGATIVE": 7, + "POSITIVE": 0 + }, + "sentiment_distribution": { + "NEGATIVE": 1.0, + "POSITIVE": 0.0 + }, + "sentiment_overall": [ + "NEGATIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994736313819885, + 0.9995083808898926, + 0.9988324046134949, + 0.9983649849891663, + 0.9983184337615967, + 0.9460770487785339, + 0.9929104447364807, + 0.9879125952720642 + ], + "sentiment_counts": { + "NEGATIVE": 5, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.625, + "POSITIVE": 0.375 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.625 + ] + }, + "final_label": "NEGATIVE", + "final_count": 12, + "final_proportion": 0.6, + "final_counts": { + "POSITIVE": 8, + "NEGATIVE": 12 + }, + "final_distribution": { + "POSITIVE": 0.4, + "NEGATIVE": 0.6 + } + } }, { "season_code": "202303", @@ -86469,7 +181677,7 @@ "13:00", "14:15", "WLH 119 - William L. Harkness Hall 119", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -86477,7 +181685,7 @@ "13:00", "14:15", "WLH 119 - William L. Harkness Hall 119", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -86495,10 +181703,163 @@ "classnotes": "", "final_exam": "Saturday, December 16, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92495\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/92495/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988792538642883, + 0.9989240765571594, + 0.9984593391418457, + 0.9986810088157654, + 0.9985866546630859, + 0.9983481168746948, + 0.9987791180610657, + 0.9988683462142944, + 0.9988435506820679, + 0.9985306262969971, + 0.9988605976104736, + 0.8934918642044067, + 0.9987083673477173, + 0.9986457228660583 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9285714285714286, + "NEGATIVE": 0.07142857142857142 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9285714285714286 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987347722053528, + 0.9988757967948914, + 0.9989271759986877, + 0.9987595081329346, + 0.9987844824790955, + 0.9989088773727417, + 0.998755693435669, + 0.9985306262969971, + 0.9988114833831787, + 0.9986520409584045, + 0.9988717436790466, + 0.9989197254180908 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985319375991821, + 0.9985917210578918, + 0.9988731741905212, + 0.9988881945610046, + 0.9983657002449036, + 0.9946959614753723, + 0.9989239573478699, + 0.998340368270874, + 0.9989264607429504, + 0.997117280960083, + 0.998072624206543, + 0.9982640147209167, + 0.9988631010055542, + 0.9900847673416138, + 0.997117280960083, + 0.9988886713981628, + 0.9987596273422241 + ], + "sentiment_counts": { + "POSITIVE": 17, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 42, + "final_proportion": 0.9767441860465116, + "final_counts": { + "POSITIVE": 42, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9767441860465116, + "NEGATIVE": 0.023255813953488372 + } + } }, { "season_code": "202303", @@ -86529,7 +181890,7 @@ "14:30", "15:20", "WLH 115 - William L. Harkness Hall 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -86550,7 +181911,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -86581,7 +181970,7 @@ "19:00", "19:50", "WLH 006 - William L. Harkness Hall 006", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -86602,7 +181991,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -86633,7 +182050,7 @@ "16:00", "16:50", "WLH 003 - William L. Harkness Hall 003", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -86654,7 +182071,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -86685,7 +182130,7 @@ "17:00", "17:50", "HQ 309 - Humanities Quadrangle 309", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -86706,7 +182151,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -86737,7 +182210,7 @@ "16:30", "17:20", "WLH 002 - William L. Harkness Hall 002", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -86758,7 +182231,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -86789,7 +182290,7 @@ "19:00", "19:50", "WLH 007 - William L. Harkness Hall 007", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -86810,7 +182311,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -86847,7 +182376,7 @@ "14:30", "15:45", "WTS A30 - Watson Center 60 Sachem Street A30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -86855,7 +182384,7 @@ "14:30", "15:45", "WTS A30 - Watson Center 60 Sachem Street A30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -86872,10 +182401,149 @@ "classnotes": "", "final_exam": "Sunday, December 17, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89717\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89717/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985989928245544, + 0.9985907673835754, + 0.9988734126091003, + 0.9988892674446106, + 0.9989309906959534, + 0.9987769722938538, + 0.9986724853515625, + 0.9986625909805298, + 0.9988265633583069, + 0.9989282488822937, + 0.9986075758934021, + 0.9988065958023071 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988572597503662, + 0.9989036321640015, + 0.9988370537757874, + 0.9988351464271545, + 0.9982671737670898, + 0.9988917708396912, + 0.998727023601532, + 0.9987636804580688, + 0.9989075660705566, + 0.9988746047019958, + 0.9942712783813477, + 0.9989245533943176 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989088773727417, + 0.9988192915916443, + 0.9982786178588867, + 0.9982553124427795, + 0.9988897442817688, + 0.9988434314727783, + 0.9980708956718445, + 0.9983510971069336, + 0.997921884059906, + 0.998932421207428, + 0.9989219903945923, + 0.9937825798988342, + 0.9989111423492432 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 37, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 37 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -86912,7 +182580,7 @@ "11:35", "12:50", "WLH 116 - William L. Harkness Hall 116", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -86920,7 +182588,7 @@ "11:35", "12:50", "WLH 116 - William L. Harkness Hall 116", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -86938,10 +182606,119 @@ "classnotes": "", "final_exam": "Sunday, December 17, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89294\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89294/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9975312948226929, + 0.9989244341850281, + 0.99708491563797, + 0.9988318085670471, + 0.9989222288131714, + 0.9988994598388672 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988927245140076, + 0.9989272952079773, + 0.9988211989402771, + 0.9988686442375183, + 0.9970095157623291, + 0.9986656904220581, + 0.9989217519760132 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.7142857142857143, + "NEGATIVE": 0.2857142857142857 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7142857142857143 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9977638721466064, + 0.9988941550254822, + 0.9989221096038818, + 0.9983665347099304, + 0.9984291195869446, + 0.9981840252876282, + 0.9983404874801636, + 0.9961064457893372 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 0.9047619047619048, + "final_counts": { + "POSITIVE": 19, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9047619047619048, + "NEGATIVE": 0.09523809523809523 + } + } }, { "season_code": "202303", @@ -86972,7 +182749,7 @@ "19:00", "19:50", "WLH 009 - William L. Harkness Hall 009", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -86993,7 +182770,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -87024,7 +182829,7 @@ "20:00", "20:50", "WLH 009 - William L. Harkness Hall 009", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -87045,7 +182850,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -87076,7 +182909,7 @@ "19:00", "19:50", "WTS A42 - Watson Center 60 Sachem Street A42", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -87097,7 +182930,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -87128,7 +182989,7 @@ "20:00", "20:50", "WTS A42 - Watson Center 60 Sachem Street A42", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -87149,7 +183010,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -87186,10 +183075,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91382\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91382/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -87231,7 +183148,7 @@ "13:00", "14:20", "EVANS 2400 - Edward P Evans Hall 2400", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Thursday": [ @@ -87239,7 +183156,7 @@ "13:00", "14:20", "EVANS 2400 - Edward P Evans Hall 2400", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -87255,10 +183172,211 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91376\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91376/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989088773727417, + 0.9989094734191895, + 0.9963840246200562, + 0.9989087581634521, + 0.9988449811935425, + 0.998381495475769, + 0.9987321496009827, + 0.9932696223258972, + 0.9988447427749634, + 0.9987480640411377, + 0.998752236366272, + 0.9986697435379028, + 0.9925482869148254, + 0.9986465573310852, + 0.9987859129905701, + 0.9988889098167419, + 0.9988905787467957, + 0.9989097118377686, + 0.9987688660621643, + 0.9988158941268921, + 0.9988059997558594 + ], + "sentiment_counts": { + "POSITIVE": 20, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9523809523809523, + "NEGATIVE": 0.047619047619047616 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9523809523809523 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988442659378052, + 0.9989211559295654, + 0.9986534118652344, + 0.9987027645111084, + 0.9980021119117737, + 0.9988382458686829, + 0.9911856055259705, + 0.999417781829834, + 0.9979094862937927, + 0.9981579184532166, + 0.9980608820915222, + 0.9921026825904846, + 0.9991815686225891, + 0.9982477426528931, + 0.9595071077346802, + 0.9917184114456177, + 0.9948939085006714, + 0.9989126920700073, + 0.9988045692443848, + 0.9988516569137573, + 0.9988731741905212, + 0.9988073110580444, + 0.9989381432533264, + 0.998777449131012 + ], + "sentiment_counts": { + "POSITIVE": 18, + "NEGATIVE": 6 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994586110115051, + 0.9989323019981384, + 0.9978334307670593, + 0.9989314675331116, + 0.9989346861839294, + 0.9987173080444336, + 0.9989073276519775, + 0.9978169202804565, + 0.9478885531425476, + 0.9990455508232117, + 0.9988546371459961, + 0.9994947910308838, + 0.9967663288116455, + 0.998862624168396, + 0.9989227652549744, + 0.9989007711410522, + 0.998934805393219, + 0.9984074234962463, + 0.9986627101898193, + 0.9989176988601685, + 0.9987670183181763, + 0.9988954067230225 + ], + "sentiment_counts": { + "NEGATIVE": 4, + "POSITIVE": 18 + }, + "sentiment_distribution": { + "NEGATIVE": 0.18181818181818182, + "POSITIVE": 0.8181818181818182 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8181818181818182 + ] + }, + "final_label": "POSITIVE", + "final_count": 56, + "final_proportion": 0.835820895522388, + "final_counts": { + "POSITIVE": 56, + "NEGATIVE": 11 + }, + "final_distribution": { + "POSITIVE": 0.835820895522388, + "NEGATIVE": 0.16417910447761194 + } + } }, { "season_code": "202303", @@ -87296,7 +183414,7 @@ "14:30", "15:45", "", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ], "Wednesday": [ @@ -87304,7 +183422,7 @@ "14:30", "15:45", "", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ] }, @@ -87320,10 +183438,365 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88955\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88955/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9950056672096252, + 0.9987213015556335, + 0.987885594367981, + 0.9972448348999023, + 0.9989010095596313, + 0.9988478422164917, + 0.9979903697967529, + 0.9986170530319214, + 0.9987978935241699, + 0.9981572031974792, + 0.9986188411712646, + 0.9983922839164734, + 0.9979497790336609, + 0.9988062381744385, + 0.9994910955429077, + 0.9961269497871399, + 0.99885094165802, + 0.996720016002655, + 0.9948543906211853, + 0.9839802980422974, + 0.9981649518013, + 0.9986490607261658, + 0.9987009763717651, + 0.9986648559570312, + 0.9962357878684998, + 0.9982619881629944, + 0.9987671375274658, + 0.9988031387329102, + 0.9975480437278748, + 0.9984102249145508, + 0.9967232346534729, + 0.9985305070877075, + 0.9870584607124329, + 0.9986283779144287, + 0.9952658414840698, + 0.9989122152328491, + 0.9987521171569824, + 0.9984373450279236, + 0.9989105463027954, + 0.9986997842788696, + 0.9946452379226685, + 0.9986391663551331, + 0.9965115189552307, + 0.9606721997261047, + 0.9988741278648376, + 0.9986796975135803, + 0.9985468983650208 + ], + "sentiment_counts": { + "NEGATIVE": 7, + "POSITIVE": 40 + }, + "sentiment_distribution": { + "NEGATIVE": 0.14893617021276595, + "POSITIVE": 0.851063829787234 + }, + "sentiment_overall": [ + "POSITIVE", + 0.851063829787234 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986296892166138, + 0.9922284483909607, + 0.9986522793769836, + 0.9988935589790344, + 0.9989228844642639, + 0.9987384676933289, + 0.992892861366272, + 0.9988791346549988, + 0.9981721639633179, + 0.9995057582855225, + 0.9995009899139404, + 0.9988886713981628, + 0.9990739822387695, + 0.9842146635055542, + 0.998836100101471, + 0.9986827969551086, + 0.9939263463020325, + 0.9988682270050049, + 0.9986762404441833, + 0.9989305138587952, + 0.98423832654953, + 0.9969916343688965, + 0.999432384967804, + 0.9988489151000977, + 0.9930724501609802, + 0.9913781881332397, + 0.9980915188789368, + 0.9995017051696777, + 0.9983935952186584, + 0.9977795481681824, + 0.9986087679862976, + 0.9988143444061279, + 0.9995061159133911, + 0.9972538352012634, + 0.9989041090011597, + 0.9958376884460449, + 0.9988200068473816, + 0.9989377856254578, + 0.9962252378463745, + 0.9994981288909912, + 0.9989064931869507, + 0.9988484382629395, + 0.9988783001899719, + 0.998849630355835, + 0.9989280104637146, + 0.9841583967208862, + 0.9988523721694946, + 0.9992202520370483, + 0.9980958104133606, + 0.9962540864944458, + 0.9985631108283997, + 0.9983794689178467 + ], + "sentiment_counts": { + "POSITIVE": 36, + "NEGATIVE": 16 + }, + "sentiment_distribution": { + "POSITIVE": 0.6923076923076923, + "NEGATIVE": 0.3076923076923077 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6923076923076923 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9971143007278442, + 0.998822033405304, + 0.9916883111000061, + 0.9890128374099731, + 0.9980857372283936, + 0.9984707236289978, + 0.9987896084785461, + 0.9985759258270264, + 0.9982770681381226, + 0.9919976592063904, + 0.9988874793052673, + 0.9974491000175476, + 0.9982703924179077, + 0.9954866766929626, + 0.9940745234489441, + 0.9971856474876404, + 0.9995120763778687, + 0.9980375170707703, + 0.9849517941474915, + 0.9989011287689209, + 0.9974441528320312, + 0.9955358505249023, + 0.9975392818450928, + 0.9988806843757629, + 0.9887963533401489, + 0.9942843317985535, + 0.9958794116973877, + 0.9989069700241089, + 0.996981680393219, + 0.8336849212646484, + 0.9981922507286072, + 0.9988653659820557, + 0.9874151349067688, + 0.9993547797203064, + 0.9988700747489929, + 0.9989194869995117, + 0.9989306330680847, + 0.9983794689178467, + 0.9989216327667236, + 0.9970815777778625, + 0.9984937906265259, + 0.9989219903945923, + 0.9985911250114441, + 0.9988914132118225, + 0.9984446167945862 + ], + "sentiment_counts": { + "NEGATIVE": 13, + "POSITIVE": 32 + }, + "sentiment_distribution": { + "NEGATIVE": 0.28888888888888886, + "POSITIVE": 0.7111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7111111111111111 + ] + }, + "final_label": "POSITIVE", + "final_count": 108, + "final_proportion": 0.75, + "final_counts": { + "NEGATIVE": 36, + "POSITIVE": 108 + }, + "final_distribution": { + "NEGATIVE": 0.25, + "POSITIVE": 0.75 + } + } }, { "season_code": "202303", @@ -87361,7 +183834,7 @@ "9:00", "10:15", "WLH 117 - William L. Harkness Hall 117", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -87369,7 +183842,7 @@ "9:00", "10:15", "WLH 117 - William L. Harkness Hall 117", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -87387,10 +183860,141 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88315\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88315/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985432624816895, + 0.9973145127296448, + 0.9986433386802673, + 0.9987773299217224, + 0.9988104104995728, + 0.9989066123962402, + 0.998579740524292, + 0.9987529516220093, + 0.998931348323822, + 0.9799685478210449, + 0.9965944886207581 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981023669242859, + 0.998315691947937, + 0.9831795692443848, + 0.9987596273422241, + 0.9988415837287903, + 0.9987687468528748, + 0.9986729621887207, + 0.9987460374832153, + 0.99885094165802, + 0.9975958466529846, + 0.9983096122741699 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 8 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2727272727272727, + "POSITIVE": 0.7272727272727273 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7272727272727273 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9947223663330078, + 0.9988194108009338, + 0.9989078044891357, + 0.9863812327384949, + 0.9986194372177124, + 0.9960517287254333, + 0.9988394379615784, + 0.9923812747001648, + 0.9989345669746399, + 0.9945172667503357 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.6, + "NEGATIVE": 0.4 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6 + ] + }, + "final_label": "POSITIVE", + "final_count": 25, + "final_proportion": 0.78125, + "final_counts": { + "POSITIVE": 25, + "NEGATIVE": 7 + }, + "final_distribution": { + "POSITIVE": 0.78125, + "NEGATIVE": 0.21875 + } + } }, { "season_code": "202303", @@ -87427,7 +184031,7 @@ "13:00", "14:15", "WLH 207 - William L. Harkness Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -87435,7 +184039,7 @@ "13:00", "14:15", "WLH 207 - William L. Harkness Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -87456,10 +184060,139 @@ "classnotes": "", "final_exam": "Wednesday, December 20, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89295\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89295/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9965614676475525, + 0.9987984895706177, + 0.9983103275299072, + 0.9987635612487793, + 0.9988409876823425, + 0.9988738894462585, + 0.9975273013114929, + 0.9989180564880371, + 0.9988314509391785, + 0.996514618396759 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.998857855796814, + 0.9987898468971252, + 0.9705532193183899, + 0.9937223792076111, + 0.9987865090370178, + 0.9988810420036316, + 0.9988512992858887, + 0.9988706707954407, + 0.9975371360778809, + 0.9988924860954285, + 0.9988928437232971, + 0.9964970946311951 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.997421145439148, + 0.9989031553268433, + 0.9989038705825806, + 0.9984387755393982, + 0.9988002777099609, + 0.9986139535903931, + 0.7686424851417542, + 0.9986962676048279, + 0.9940286874771118 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 26, + "final_proportion": 0.8387096774193549, + "final_counts": { + "POSITIVE": 26, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.8387096774193549, + "NEGATIVE": 0.16129032258064516 + } + } }, { "season_code": "202303", @@ -87522,10 +184255,89 @@ "classnotes": "", "final_exam": "Wednesday, December 20, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88319\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88319/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985900521278381, + 0.9989251494407654 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986591339111328, + 0.9989367127418518 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986397624015808, + 0.9989387392997742 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 1 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "final_label": "POSITIVE", + "final_count": 5, + "final_proportion": 0.8333333333333334, + "final_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + } + } }, { "season_code": "202303", @@ -87586,10 +184398,155 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88133\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88133/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988324046134949, + 0.9988355040550232, + 0.9857977032661438, + 0.9963248372077942, + 0.998849630355835, + 0.8932063579559326, + 0.9988634586334229, + 0.9916286468505859, + 0.9985394477844238, + 0.9963003396987915, + 0.9959366321563721, + 0.9982055425643921, + 0.9947319030761719 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8461538461538461, + "NEGATIVE": 0.15384615384615385 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8461538461538461 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.99875807762146, + 0.9989234805107117, + 0.9987952709197998, + 0.9988889098167419, + 0.9988746047019958, + 0.9988798499107361, + 0.9989303946495056, + 0.9988372921943665, + 0.9988849759101868, + 0.9987475872039795, + 0.9988380074501038, + 0.9989011287689209, + 0.9989206790924072 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988904595375061, + 0.998810887336731, + 0.9954487681388855, + 0.9987718462944031, + 0.9988928437232971, + 0.9989332556724548, + 0.9955151677131653, + 0.9987506866455078, + 0.9986296892166138, + 0.9989093542098999, + 0.9989012479782104, + 0.9989007711410522, + 0.9989063739776611 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 37, + "final_proportion": 0.9487179487179487, + "final_counts": { + "POSITIVE": 37, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9487179487179487, + "NEGATIVE": 0.05128205128205128 + } + } }, { "season_code": "202303", @@ -87630,7 +184587,7 @@ "13:00", "14:15", "WTS A53 - Watson Center 60 Sachem Street A53", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -87638,7 +184595,7 @@ "13:00", "14:15", "WTS A53 - Watson Center 60 Sachem Street A53", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -87650,10 +184607,139 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88636\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88636/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.959989070892334, + 0.9527761340141296, + 0.9988590478897095, + 0.9956971406936646, + 0.9916312098503113, + 0.9925770163536072, + 0.9988011121749878, + 0.9887248873710632, + 0.9985653758049011, + 0.994544506072998 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 9 + }, + "sentiment_distribution": { + "NEGATIVE": 0.1, + "POSITIVE": 0.9 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9892269372940063, + 0.9988239407539368, + 0.9988969564437866, + 0.9983755350112915, + 0.9992402791976929, + 0.9986226558685303, + 0.9988595247268677, + 0.9988923668861389, + 0.9962666630744934, + 0.9983270764350891, + 0.9988239407539368 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9090909090909091 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9967639446258545, + 0.9989181756973267, + 0.9988960027694702, + 0.9984618425369263, + 0.9987673759460449, + 0.9987307190895081, + 0.9984799027442932, + 0.9994161128997803, + 0.9987605810165405, + 0.9988779425621033 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 8 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2, + "POSITIVE": 0.8 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 27, + "final_proportion": 0.8709677419354839, + "final_counts": { + "NEGATIVE": 4, + "POSITIVE": 27 + }, + "final_distribution": { + "NEGATIVE": 0.12903225806451613, + "POSITIVE": 0.8709677419354839 + } + } }, { "season_code": "202303", @@ -87690,7 +184776,7 @@ "9:00", "10:15", "WLH 112 - William L. Harkness Hall 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -87698,7 +184784,7 @@ "9:00", "10:15", "WLH 112 - William L. Harkness Hall 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -87716,10 +184802,93 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88323\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88323/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988766312599182, + 0.9987949132919312, + 0.9988923668861389 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998017430305481, + 0.9840914607048035, + 0.9988079071044922 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987607002258301, + 0.9954248070716858, + 0.9987071752548218 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 9 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -87756,7 +184925,7 @@ "13:00", "14:15", "WLH 117 - William L. Harkness Hall 117", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -87764,7 +184933,7 @@ "13:00", "14:15", "WLH 117 - William L. Harkness Hall 117", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -87783,10 +184952,119 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88327\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88327/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9959854483604431, + 0.998776376247406, + 0.9988849759101868, + 0.998663067817688, + 0.9987403750419617, + 0.9987807869911194, + 0.9213805794715881 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988019466400146, + 0.9930128455162048, + 0.9965248703956604, + 0.9994811415672302, + 0.9987640380859375, + 0.9988982677459717, + 0.9982845187187195 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.7142857142857143, + "NEGATIVE": 0.2857142857142857 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7142857142857143 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988620281219482, + 0.9823908805847168, + 0.9940341114997864, + 0.9929646253585815, + 0.9988502264022827, + 0.9988974332809448, + 0.9995092153549194 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.7142857142857143, + "NEGATIVE": 0.2857142857142857 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7142857142857143 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 0.8095238095238095, + "final_counts": { + "POSITIVE": 17, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.8095238095238095, + "NEGATIVE": 0.19047619047619047 + } + } }, { "season_code": "202303", @@ -87823,7 +185101,7 @@ "11:35", "12:50", "WLH 117 - William L. Harkness Hall 117", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -87831,7 +185109,7 @@ "11:35", "12:50", "WLH 117 - William L. Harkness Hall 117", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -87847,10 +185125,123 @@ "classnotes": "", "final_exam": "Sunday, December 17, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89296\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89296/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998837411403656, + 0.9988508224487305, + 0.9965057373046875, + 0.9982615113258362, + 0.9989147186279297, + 0.9987441301345825, + 0.9986973404884338, + 0.9988895058631897 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988791346549988, + 0.9994827508926392, + 0.9988583326339722, + 0.9987205862998962, + 0.9988672733306885, + 0.9985431432723999, + 0.9987428784370422 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988895058631897, + 0.9985295534133911, + 0.9987665414810181, + 0.9988641738891602, + 0.9989111423492432, + 0.998856782913208, + 0.998859167098999, + 0.9989023208618164 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "final_label": "POSITIVE", + "final_count": 21, + "final_proportion": 0.9130434782608695, + "final_counts": { + "POSITIVE": 21, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9130434782608695, + "NEGATIVE": 0.08695652173913043 + } + } }, { "season_code": "202303", @@ -87888,7 +185279,7 @@ "13:00", "14:15", "ML 107 - Mason Laboratory 107", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ], "Thursday": [ @@ -87896,7 +185287,7 @@ "13:00", "14:15", "ML 107 - Mason Laboratory 107", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ] }, @@ -87912,10 +185303,109 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89892\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89892/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988784193992615, + 0.9987830519676208, + 0.9986141920089722, + 0.9934698343276978, + 0.9989197254180908 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989343285560608, + 0.9988129138946533, + 0.998920202255249, + 0.998867392539978, + 0.9987447261810303, + 0.9989223480224609 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989390969276428, + 0.9987358450889587, + 0.9988126754760742, + 0.9988623857498169, + 0.9982798099517822, + 0.9989168643951416 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 17 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -87952,7 +185442,7 @@ "15:30", "17:20", "WLH 204 - William L. Harkness Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -87968,10 +185458,107 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89297\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89297/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987210631370544, + 0.9987119436264038, + 0.997822642326355, + 0.9987810254096985, + 0.99874347448349 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989318251609802, + 0.9989168643951416, + 0.9989321827888489, + 0.9989134073257446 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987813830375671, + 0.9987861514091492, + 0.998936116695404, + 0.9988932013511658, + 0.9989113807678223, + 0.9989089965820312, + 0.9989098310470581 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 16 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -88008,7 +185595,7 @@ "14:30", "15:45", "WTS B52 - Watson Center 60 Sachem Street B52", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -88016,7 +185603,7 @@ "14:30", "15:45", "WTS B52 - Watson Center 60 Sachem Street B52", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -88030,10 +185617,135 @@ "classnotes": "", "final_exam": "Monday, December 18, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88333\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88333/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9826884865760803, + 0.9989079236984253, + 0.998814582824707, + 0.9988111257553101, + 0.9983313679695129, + 0.9988616704940796, + 0.9988164901733398, + 0.9987152814865112, + 0.9988465309143066, + 0.9989286065101624 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989018440246582, + 0.9988401532173157, + 0.9988848567008972, + 0.9988744854927063, + 0.9994717240333557, + 0.9988986253738403, + 0.9983822107315063, + 0.9989235997200012, + 0.9988880753517151 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988277554512024, + 0.9988628625869751, + 0.9984159469604492, + 0.9989399313926697, + 0.9989036321640015, + 0.9987925291061401, + 0.998897910118103, + 0.9988719820976257, + 0.9989200830459595, + 0.9986750483512878 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 28, + "final_proportion": 0.9655172413793104, + "final_counts": { + "POSITIVE": 28, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9655172413793104, + "NEGATIVE": 0.034482758620689655 + } + } }, { "season_code": "202303", @@ -88072,7 +185784,7 @@ "9:25", "11:15", "WTS B74 - Watson Center 60 Sachem Street B74", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -88088,10 +185800,99 @@ "classnotes": "", "final_exam": "Thursday, December 14, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88359\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88359/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989244341850281, + 0.9989097118377686, + 0.9988629817962646, + 0.9989198446273804 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988501071929932, + 0.998322069644928, + 0.9988399147987366, + 0.998907208442688 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998898983001709, + 0.9988883137702942, + 0.9985051155090332, + 0.9983800649642944 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 12 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -88128,7 +185929,7 @@ "15:30", "17:20", "WLH 112 - William L. Harkness Hall 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -88145,10 +185946,123 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89298\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89298/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989293217658997, + 0.9935392737388611, + 0.9987460374832153, + 0.9986829161643982, + 0.9984152317047119, + 0.9988903403282166, + 0.998696506023407, + 0.9942752718925476 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988800883293152, + 0.9988825917243958, + 0.998812198638916, + 0.9988656044006348, + 0.9984152317047119, + 0.9989173412322998, + 0.9988055229187012, + 0.9989088773727417 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989218711853027, + 0.998907208442688, + 0.9988885521888733, + 0.9981922507286072, + 0.9984152317047119, + 0.9989284873008728, + 0.9988094568252563, + 0.9988107681274414 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 24, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 24 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -88186,7 +186100,7 @@ "9:25", "11:15", "WLH 002 - William L. Harkness Hall 002", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -88204,15 +186118,130 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88338\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88338/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "For further information, including relevant dates and deadlines, please see economics.yale.edu\/undergraduate\/senior-essay.", - "description": "Senior essays are an opportunity for students to engage in independent, original economic research. Essays are not reviews of the literature, rather each should be an examination of a hypothesis using the tools of economics. In particular, the essay must contain original research and\/or analysis. They can be theoretical, empirical or computational. The senior essays that receive A's and are awarded prizes are typically those that use economics tools (and, where appropriate, data) to offer fresh insights on questions.\u00a0\n\n\nStudents\u00a0enrolling in this one-term course need to find an advisor.\u00a0There are no page requirements or formatting requirements. Generally, essays run about 30 pages. Advice regarding bibliographies, graphs, etc. should be given by your advisor.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989088773727417, + 0.9987748265266418, + 0.9919078350067139, + 0.9985306262969971, + 0.9987499713897705, + 0.9987654685974121, + 0.9988027811050415, + 0.9988221526145935 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994059801101685, + 0.9978442192077637, + 0.9988561868667603, + 0.9985306262969971, + 0.9989045858383179, + 0.998904824256897, + 0.9986775517463684, + 0.9989215135574341 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 7 + }, + "sentiment_distribution": { + "NEGATIVE": 0.125, + "POSITIVE": 0.875 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986199140548706, + 0.9989172220230103, + 0.9985306262969971, + 0.9988866448402405, + 0.9986949563026428, + 0.9985295534133911, + 0.9988364577293396, + 0.9986392855644226 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 23, + "final_proportion": 0.9583333333333334, + "final_counts": { + "POSITIVE": 23, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9583333333333334, + "NEGATIVE": 0.041666666666666664 + } + } + }, + { + "season_code": "202303", + "requirements": "For further information, including relevant dates and deadlines, please see economics.yale.edu/undergraduate/senior-essay.", + "description": "Senior essays are an opportunity for students to engage in independent, original economic research. Essays are not reviews of the literature, rather each should be an examination of a hypothesis using the tools of economics. In particular, the essay must contain original research and/or analysis. They can be theoretical, empirical or computational. The senior essays that receive A's and are awarded prizes are typically those that use economics tools (and, where appropriate, data) to offer fresh insights on questions.\u00a0\n\n\nStudents\u00a0enrolling in this one-term course need to find an advisor.\u00a0There are no page requirements or formatting requirements. Generally, essays run about 30 pages. Advice regarding bibliographies, graphs, etc. should be given by your advisor.", "short_title": "The Senior Essay", "title": "The Senior Essay", "school": "YC", @@ -88252,14 +186281,151 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88344\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88344/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "The application form may be found here: https:\/\/economics.yale.edu\/undergraduate\/forms-documents", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988215565681458, + 0.9987232089042664, + 0.9987257122993469, + 0.993935763835907, + 0.9987646341323853, + 0.9956056475639343, + 0.9987077713012695, + 0.9889193177223206, + 0.9986478686332703, + 0.9988555908203125, + 0.9645057320594788, + 0.9985373020172119, + 0.9988483190536499 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988586902618408, + 0.998856782913208, + 0.9988780617713928, + 0.9986214637756348, + 0.9987894892692566, + 0.9988594055175781, + 0.9986625909805298, + 0.9988906979560852, + 0.9988799691200256, + 0.9988877177238464 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.78354811668396, + 0.9834083318710327, + 0.9984971284866333, + 0.9988756775856018, + 0.9988901019096375, + 0.9988059997558594, + 0.998870313167572, + 0.9989056587219238, + 0.9988627433776855, + 0.9988362193107605, + 0.997117280960083, + 0.9960201382637024, + 0.996579110622406 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 36, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 36 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } + }, + { + "season_code": "202303", + "requirements": "The application form may be found here: https://economics.yale.edu/undergraduate/forms-documents", "description": "Junior and senior economics majors desiring a directed reading course in special topics in economics not covered in other graduate or undergraduate courses may elect this course, not more than once, with written permission of the director of undergraduate studies and of the instructor. The instructor meets with the student regularly, typically for an hour a week, and the student writes a paper or a series of short essays. Junior and senior majors may take this course for a letter grade, but it does not meet the requirement for a department seminar.", "short_title": "Directed Reading", "title": "Directed Reading", @@ -88298,7 +186464,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -88338,7 +186532,7 @@ "10:00", "11:20", "TRUM87 B120 - 87 Trumbull Street B120", - "https:\/\/map.yale.edu\/?id=1910#!m\/559543" + "https://map.yale.edu/?id=1910#!m/559543" ] ], "Wednesday": [ @@ -88346,7 +186540,7 @@ "10:00", "11:20", "TRUM87 B120 - 87 Trumbull Street B120", - "https:\/\/map.yale.edu\/?id=1910#!m\/559543" + "https://map.yale.edu/?id=1910#!m/559543" ] ] }, @@ -88358,10 +186552,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89857\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89857/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -88401,7 +186623,7 @@ "10:00", "11:15", "TRUM87 B120 - 87 Trumbull Street B120", - "https:\/\/map.yale.edu\/?id=1910#!m\/559543" + "https://map.yale.edu/?id=1910#!m/559543" ] ], "Thursday": [ @@ -88409,7 +186631,7 @@ "10:00", "11:15", "TRUM87 B120 - 87 Trumbull Street B120", - "https:\/\/map.yale.edu\/?id=1910#!m\/559543" + "https://map.yale.edu/?id=1910#!m/559543" ] ] }, @@ -88421,10 +186643,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89860\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89860/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -88464,7 +186714,7 @@ "13:00", "14:15", "HLH28 A102 - 28 Hillhouse Avenue A102", - "https:\/\/map.yale.edu\/?id=1910#!m\/559988" + "https://map.yale.edu/?id=1910#!m/559988" ] ], "Thursday": [ @@ -88472,7 +186722,7 @@ "13:00", "14:15", "HLH28 A102 - 28 Hillhouse Avenue A102", - "https:\/\/map.yale.edu\/?id=1910#!m\/559988" + "https://map.yale.edu/?id=1910#!m/559988" ] ] }, @@ -88484,10 +186734,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89861\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89861/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -88518,7 +186796,7 @@ "12:00", "13:00", "TRUM87 B120 - 87 Trumbull Street B120", - "https:\/\/map.yale.edu\/?id=1910#!m\/559543" + "https://map.yale.edu/?id=1910#!m/559543" ] ] }, @@ -88533,7 +186811,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -88573,7 +186879,7 @@ "13:00", "14:15", "HLH28 A06 - 28 Hillhouse Avenue A06", - "https:\/\/map.yale.edu\/?id=1910#!m\/559988" + "https://map.yale.edu/?id=1910#!m/559988" ] ], "Thursday": [ @@ -88581,7 +186887,7 @@ "13:00", "14:15", "HLH28 A06 - 28 Hillhouse Avenue A06", - "https:\/\/map.yale.edu\/?id=1910#!m\/559988" + "https://map.yale.edu/?id=1910#!m/559988" ] ] }, @@ -88593,10 +186899,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89862\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89862/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -88630,10 +186964,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89864\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89864/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -88664,7 +187026,7 @@ "14:30", "15:50", "TRUM87 B120 - 87 Trumbull Street B120", - "https:\/\/map.yale.edu\/?id=1910#!m\/559543" + "https://map.yale.edu/?id=1910#!m/559543" ] ] }, @@ -88679,7 +187041,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -88710,7 +187100,7 @@ "12:00", "13:00", "TRUM87 B120 - 87 Trumbull Street B120", - "https:\/\/map.yale.edu\/?id=1910#!m\/559543" + "https://map.yale.edu/?id=1910#!m/559543" ] ] }, @@ -88725,7 +187115,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -88756,7 +187174,7 @@ "14:30", "15:50", "TRUM87 B120 - 87 Trumbull Street B120", - "https:\/\/map.yale.edu\/?id=1910#!m\/559543" + "https://map.yale.edu/?id=1910#!m/559543" ] ] }, @@ -88771,7 +187189,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -88808,7 +187254,7 @@ "14:30", "15:45", "LUCE 202 - Luce Hall 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ], "Wednesday": [ @@ -88816,7 +187262,7 @@ "14:30", "15:45", "LUCE 202 - Luce Hall 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ] }, @@ -88831,10 +187277,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89865\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89865/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -88871,7 +187345,7 @@ "9:00", "10:15", "ESC 110 - Environmental Sciences Center 110", - "https:\/\/map.yale.edu\/?id=1910#!m\/560020" + "https://map.yale.edu/?id=1910#!m/560020" ] ], "Thursday": [ @@ -88879,7 +187353,7 @@ "9:00", "10:15", "ESC 110 - Environmental Sciences Center 110", - "https:\/\/map.yale.edu\/?id=1910#!m\/560020" + "https://map.yale.edu/?id=1910#!m/560020" ] ] }, @@ -88891,10 +187365,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89866\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89866/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -88931,7 +187433,7 @@ "8:30", "9:50", "TRUM87 B120 - 87 Trumbull Street B120", - "https:\/\/map.yale.edu\/?id=1910#!m\/559543" + "https://map.yale.edu/?id=1910#!m/559543" ] ], "Wednesday": [ @@ -88939,7 +187441,7 @@ "8:30", "9:50", "TRUM87 B120 - 87 Trumbull Street B120", - "https:\/\/map.yale.edu\/?id=1910#!m\/559543" + "https://map.yale.edu/?id=1910#!m/559543" ] ] }, @@ -88953,10 +187455,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90062\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90062/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -88993,7 +187523,7 @@ "14:30", "17:30", "HLH28 A102 - 28 Hillhouse Avenue A102", - "https:\/\/map.yale.edu\/?id=1910#!m\/559988" + "https://map.yale.edu/?id=1910#!m/559988" ] ], "Friday": [ @@ -89001,7 +187531,7 @@ "14:30", "17:30", "HLH28 A102 - 28 Hillhouse Avenue A102", - "https:\/\/map.yale.edu\/?id=1910#!m\/559988" + "https://map.yale.edu/?id=1910#!m/559988" ] ] }, @@ -89013,10 +187543,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92368\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92368/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -89059,7 +187617,7 @@ "10:30", "11:50", "HLH28 106 - 28 Hillhouse Avenue 106", - "https:\/\/map.yale.edu\/?id=1910#!m\/559988" + "https://map.yale.edu/?id=1910#!m/559988" ] ], "Wednesday": [ @@ -89067,7 +187625,7 @@ "10:30", "11:50", "HLH28 106 - 28 Hillhouse Avenue 106", - "https:\/\/map.yale.edu\/?id=1910#!m\/559988" + "https://map.yale.edu/?id=1910#!m/559988" ] ] }, @@ -89079,10 +187637,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89867\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89867/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -89119,7 +187705,7 @@ "14:30", "15:45", "LUCE 202 - Luce Hall 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ], "Thursday": [ @@ -89127,7 +187713,7 @@ "14:30", "15:45", "LUCE 202 - Luce Hall 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ] }, @@ -89142,10 +187728,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89947\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89947/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -89176,7 +187790,7 @@ "14:30", "15:30", "HLH28 106 - 28 Hillhouse Avenue 106", - "https:\/\/map.yale.edu\/?id=1910#!m\/559988" + "https://map.yale.edu/?id=1910#!m/559988" ] ] }, @@ -89191,7 +187805,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -89222,7 +187864,7 @@ "12:00", "13:00", "HLH28 106 - 28 Hillhouse Avenue 106", - "https:\/\/map.yale.edu\/?id=1910#!m\/559988" + "https://map.yale.edu/?id=1910#!m/559988" ] ] }, @@ -89237,7 +187879,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -89268,7 +187938,7 @@ "12:00", "13:00", "HLH28 A102 - 28 Hillhouse Avenue A102", - "https:\/\/map.yale.edu\/?id=1910#!m\/559988" + "https://map.yale.edu/?id=1910#!m/559988" ] ] }, @@ -89283,7 +187953,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -89314,7 +188012,7 @@ "16:00", "17:30", "TRUM87 B120 - 87 Trumbull Street B120", - "https:\/\/map.yale.edu\/?id=1910#!m\/559543" + "https://map.yale.edu/?id=1910#!m/559543" ] ] }, @@ -89329,7 +188027,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -89369,7 +188095,7 @@ "10:30", "11:50", "HLH28 A06 - 28 Hillhouse Avenue A06", - "https:\/\/map.yale.edu\/?id=1910#!m\/559988" + "https://map.yale.edu/?id=1910#!m/559988" ] ], "Thursday": [ @@ -89377,7 +188103,7 @@ "10:30", "11:50", "HLH28 A06 - 28 Hillhouse Avenue A06", - "https:\/\/map.yale.edu\/?id=1910#!m\/559988" + "https://map.yale.edu/?id=1910#!m/559988" ] ] }, @@ -89389,10 +188115,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89948\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89948/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -89423,7 +188177,7 @@ "12:00", "13:00", "HLH28 106 - 28 Hillhouse Avenue 106", - "https:\/\/map.yale.edu\/?id=1910#!m\/559988" + "https://map.yale.edu/?id=1910#!m/559988" ] ] }, @@ -89438,7 +188192,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -89469,7 +188251,7 @@ "14:30", "15:50", "HLH28 106 - 28 Hillhouse Avenue 106", - "https:\/\/map.yale.edu\/?id=1910#!m\/559988" + "https://map.yale.edu/?id=1910#!m/559988" ] ] }, @@ -89484,7 +188266,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -89521,7 +188331,7 @@ "9:00", "10:15", "HLH28 A06 - 28 Hillhouse Avenue A06", - "https:\/\/map.yale.edu\/?id=1910#!m\/559988" + "https://map.yale.edu/?id=1910#!m/559988" ] ], "Thursday": [ @@ -89529,7 +188339,7 @@ "9:00", "10:15", "HLH28 A06 - 28 Hillhouse Avenue A06", - "https:\/\/map.yale.edu\/?id=1910#!m\/559988" + "https://map.yale.edu/?id=1910#!m/559988" ] ], "Monday": [ @@ -89537,7 +188347,7 @@ "13:15", "14:15", "HLH28 A06 - 28 Hillhouse Avenue A06", - "https:\/\/map.yale.edu\/?id=1910#!m\/559988" + "https://map.yale.edu/?id=1910#!m/559988" ] ] }, @@ -89549,10 +188359,38 @@ "classnotes": "Attendance at the Labor Reading Group is a required component of enrollment for this course. The Labor Reading Group meets on Mondays 1:15-2:15pm", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89949\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89949/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -89583,7 +188421,7 @@ "15:30", "17:00", "TRUM87 B120 - 87 Trumbull Street B120", - "https:\/\/map.yale.edu\/?id=1910#!m\/559543" + "https://map.yale.edu/?id=1910#!m/559543" ] ] }, @@ -89598,7 +188436,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -89629,7 +188495,7 @@ "12:00", "13:00", "HLH28 106 - 28 Hillhouse Avenue 106", - "https:\/\/map.yale.edu\/?id=1910#!m\/559988" + "https://map.yale.edu/?id=1910#!m/559988" ] ] }, @@ -89644,7 +188510,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -89685,7 +188579,7 @@ "16:00", "19:00", "EVANS 4230 - Edward P Evans Hall 4230", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -89697,10 +188591,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89950\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89950/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -89735,10 +188657,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90733\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90733/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -89776,7 +188726,7 @@ "16:10", "19:10", "EVANS 2210 - Edward P Evans Hall 2210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -89788,10 +188738,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90735\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90735/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -89828,12 +188806,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "Major topics in public finance including externalities, public goods, benefit\/cost analysis, fiscal federalism, social insurance, retirement savings, poverty and inequality, taxation, and others. Applications are provided to crime, education, environment and energy, health and health insurance, housing, and other markets and domains. The course covers a variety of applied methods including sufficient statistics, randomized control trials, hedonic models, regression discontinuity, discrete choice, spatial equilibrium, dynamic growth models, differences-in-differences, integrated assessment models, applied general equilibrium, event studies, firm production functions, learning models, general method of moments, and propensity-score reweighting estimators.", + "description": "Major topics in public finance including externalities, public goods, benefit/cost analysis, fiscal federalism, social insurance, retirement savings, poverty and inequality, taxation, and others. Applications are provided to crime, education, environment and energy, health and health insurance, housing, and other markets and domains. The course covers a variety of applied methods including sufficient statistics, randomized control trials, hedonic models, regression discontinuity, discrete choice, spatial equilibrium, dynamic growth models, differences-in-differences, integrated assessment models, applied general equilibrium, event studies, firm production functions, learning models, general method of moments, and propensity-score reweighting estimators.", "short_title": "Public Finance I", "title": "Public Finance I", "school": "GS", @@ -89865,7 +188871,7 @@ "9:00", "10:15", "HLH28 106 - 28 Hillhouse Avenue 106", - "https:\/\/map.yale.edu\/?id=1910#!m\/559988" + "https://map.yale.edu/?id=1910#!m/559988" ] ], "Wednesday": [ @@ -89873,7 +188879,7 @@ "9:00", "10:15", "HLH28 106 - 28 Hillhouse Avenue 106", - "https:\/\/map.yale.edu\/?id=1910#!m\/559988" + "https://map.yale.edu/?id=1910#!m/559988" ] ] }, @@ -89888,10 +188894,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89951\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89951/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -89922,7 +188956,7 @@ "12:00", "13:00", "HLH28 A06 - 28 Hillhouse Avenue A06", - "https:\/\/map.yale.edu\/?id=1910#!m\/559988" + "https://map.yale.edu/?id=1910#!m/559988" ] ] }, @@ -89937,7 +188971,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -89977,7 +189039,7 @@ "13:00", "14:15", "HLH28 106 - 28 Hillhouse Avenue 106", - "https:\/\/map.yale.edu\/?id=1910#!m\/559988" + "https://map.yale.edu/?id=1910#!m/559988" ] ], "Wednesday": [ @@ -89985,7 +189047,7 @@ "13:00", "14:15", "HLH28 106 - 28 Hillhouse Avenue 106", - "https:\/\/map.yale.edu\/?id=1910#!m\/559988" + "https://map.yale.edu/?id=1910#!m/559988" ] ] }, @@ -89997,10 +189059,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89952\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89952/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -90037,7 +189127,7 @@ "16:00", "19:00", "HLH28 A102 - 28 Hillhouse Avenue A102", - "https:\/\/map.yale.edu\/?id=1910#!m\/559988" + "https://map.yale.edu/?id=1910#!m/559988" ] ] }, @@ -90049,15 +189139,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89877\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89877/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "Workshop\/seminar for presentations and discussion on topics in the field of international trade.", + "description": "Workshop/seminar for presentations and discussion on topics in the field of international trade.", "short_title": "Workshop: International Trade", "title": "Workshop: International Trade", "school": "GS", @@ -90084,7 +189202,7 @@ "14:30", "15:50", "HLH28 106 - 28 Hillhouse Avenue 106", - "https:\/\/map.yale.edu\/?id=1910#!m\/559988" + "https://map.yale.edu/?id=1910#!m/559988" ] ] }, @@ -90099,7 +189217,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -90139,7 +189285,7 @@ "16:00", "17:30", "HLH28 A06 - 28 Hillhouse Avenue A06", - "https:\/\/map.yale.edu\/?id=1910#!m\/559988" + "https://map.yale.edu/?id=1910#!m/559988" ] ], "Wednesday": [ @@ -90147,7 +189293,7 @@ "16:00", "17:30", "HLH28 A06 - 28 Hillhouse Avenue A06", - "https:\/\/map.yale.edu\/?id=1910#!m\/559988" + "https://map.yale.edu/?id=1910#!m/559988" ] ] }, @@ -90159,10 +189305,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89878\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89878/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -90203,7 +189377,7 @@ "9:00", "10:20", "HLH28 A102 - 28 Hillhouse Avenue A102", - "https:\/\/map.yale.edu\/?id=1910#!m\/559988" + "https://map.yale.edu/?id=1910#!m/559988" ] ], "Wednesday": [ @@ -90211,7 +189385,7 @@ "9:00", "10:20", "HLH28 A102 - 28 Hillhouse Avenue A102", - "https:\/\/map.yale.edu\/?id=1910#!m\/559988" + "https://map.yale.edu/?id=1910#!m/559988" ] ] }, @@ -90223,10 +189397,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89879\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89879/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -90257,7 +189459,7 @@ "14:30", "15:50", "TRUM87 B120 - 87 Trumbull Street B120", - "https:\/\/map.yale.edu\/?id=1910#!m\/559543" + "https://map.yale.edu/?id=1910#!m/559543" ] ] }, @@ -90272,7 +189474,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -90303,7 +189533,7 @@ "12:00", "13:00", "TRUM87 B120 - 87 Trumbull Street B120", - "https:\/\/map.yale.edu\/?id=1910#!m\/559543" + "https://map.yale.edu/?id=1910#!m/559543" ] ] }, @@ -90318,7 +189548,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -90355,7 +189613,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -90393,7 +189679,7 @@ "9:00", "10:15", "HQ C11 - Humanities Quadrangle C11", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -90401,7 +189687,7 @@ "9:00", "10:15", "HQ C11 - Humanities Quadrangle C11", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -90417,10 +189703,129 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89768\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89768/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989151954650879, + 0.9989203214645386, + 0.9988577365875244, + 0.9989153146743774, + 0.9989333748817444, + 0.9988754391670227, + 0.998689591884613, + 0.9989070892333984 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988741278648376, + 0.9971822500228882, + 0.9954577684402466, + 0.998915433883667, + 0.9989280104637146, + 0.9988555908203125, + 0.9994416832923889, + 0.9988996982574463, + 0.9988652467727661 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989379048347473, + 0.9989138841629028, + 0.998704195022583, + 0.9989247918128967, + 0.9989290833473206, + 0.998908281326294, + 0.997117280960083, + 0.9988497495651245, + 0.9989017248153687 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 25, + "final_proportion": 0.9615384615384616, + "final_counts": { + "POSITIVE": 25, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9615384615384616, + "NEGATIVE": 0.038461538461538464 + } + } }, { "season_code": "202303", @@ -90459,7 +189864,7 @@ "10:30", "11:20", "DAVIES AUD - Davies Auditorium, Becton Ctr AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ], "Thursday": [ @@ -90467,7 +189872,7 @@ "10:30", "11:20", "DAVIES AUD - Davies Auditorium, Becton Ctr AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ] }, @@ -90476,7 +189881,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC Urban Studies: Elective" ], @@ -90485,10 +189890,371 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88356\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88356/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988580942153931, + 0.9988933205604553, + 0.9935644268989563, + 0.9988135099411011, + 0.9988798499107361, + 0.9989247918128967, + 0.998908281326294, + 0.9989100694656372, + 0.9988325238227844, + 0.998337984085083, + 0.9869850277900696, + 0.9988309741020203, + 0.9847789406776428, + 0.9987959861755371, + 0.9987338185310364, + 0.9977317452430725, + 0.9988170862197876, + 0.9988971948623657, + 0.9988811612129211, + 0.9988672733306885, + 0.9987605810165405, + 0.9987659454345703, + 0.9986144304275513, + 0.9989199638366699, + 0.9988048076629639, + 0.9988235831260681, + 0.9986653327941895, + 0.9972550272941589, + 0.9988871216773987, + 0.9989134073257446, + 0.9988449811935425, + 0.9985390901565552, + 0.9988528490066528, + 0.9989044666290283, + 0.9988409876823425, + 0.9987278580665588, + 0.99891197681427, + 0.998818576335907, + 0.9988429546356201, + 0.9987229704856873, + 0.9987930059432983, + 0.9981689453125, + 0.9988182187080383, + 0.9995068311691284, + 0.9989205598831177, + 0.9989033937454224, + 0.9988229870796204 + ], + "sentiment_counts": { + "POSITIVE": 45, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.9574468085106383, + "NEGATIVE": 0.0425531914893617 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9574468085106383 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9973184466362, + 0.9989109039306641, + 0.994390070438385, + 0.9991052746772766, + 0.9988088607788086, + 0.99883633852005, + 0.9989284873008728, + 0.9988529682159424, + 0.998898983001709, + 0.9988847374916077, + 0.999250590801239, + 0.9986774325370789, + 0.9913535714149475, + 0.9956082701683044, + 0.9989192485809326, + 0.9986966252326965, + 0.998903751373291, + 0.9988358616828918, + 0.9978052973747253, + 0.9988744854927063, + 0.9989050626754761, + 0.9988178610801697, + 0.9946604371070862, + 0.968665361404419, + 0.9989261031150818, + 0.9986652135848999, + 0.9986633062362671, + 0.9981853365898132, + 0.9988303780555725, + 0.9968847632408142, + 0.9984055161476135, + 0.9989076852798462, + 0.9989191293716431, + 0.9967622756958008, + 0.9984508752822876, + 0.9987938404083252, + 0.9989098310470581, + 0.9989001750946045, + 0.9988588094711304, + 0.9991763234138489, + 0.9961057305335999, + 0.998770534992218, + 0.9932490587234497, + 0.9989251494407654, + 0.9982069730758667, + 0.9995063543319702, + 0.9988446235656738, + 0.9989081621170044, + 0.9988573789596558 + ], + "sentiment_counts": { + "POSITIVE": 42, + "NEGATIVE": 7 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988216757774353, + 0.9989269375801086, + 0.9967269897460938, + 0.997117280960083, + 0.998863935470581, + 0.9988920092582703, + 0.9988962411880493, + 0.9988969564437866, + 0.9989368319511414, + 0.9960112571716309, + 0.9988152980804443, + 0.998790442943573, + 0.9964878559112549, + 0.9989336133003235, + 0.9981259703636169, + 0.9989203214645386, + 0.9989221096038818, + 0.9989261031150818, + 0.998881995677948, + 0.9989110231399536, + 0.9989194869995117, + 0.9982553124427795, + 0.9989194869995117, + 0.999506950378418, + 0.9988441467285156, + 0.9987201690673828, + 0.998923122882843, + 0.9988987445831299, + 0.9988100528717041, + 0.9988017082214355, + 0.9989295601844788, + 0.998857855796814, + 0.9974476099014282, + 0.9994902610778809, + 0.9989234805107117, + 0.9989171028137207, + 0.9988625049591064, + 0.9988831877708435, + 0.9988987445831299, + 0.9988879561424255, + 0.9988844990730286, + 0.9988759160041809, + 0.9989005327224731, + 0.998907208442688, + 0.9989086389541626, + 0.9981536269187927, + 0.9988756775856018, + 0.9995146989822388, + 0.9988445043563843, + 0.9989041090011597, + 0.9984390139579773 + ], + "sentiment_counts": { + "POSITIVE": 45, + "NEGATIVE": 6 + }, + "sentiment_distribution": { + "POSITIVE": 0.8823529411764706, + "NEGATIVE": 0.11764705882352941 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8823529411764706 + ] + }, + "final_label": "POSITIVE", + "final_count": 132, + "final_proportion": 0.8979591836734694, + "final_counts": { + "POSITIVE": 132, + "NEGATIVE": 15 + }, + "final_distribution": { + "POSITIVE": 0.8979591836734694, + "NEGATIVE": 0.10204081632653061 + } + } }, { "season_code": "202303", @@ -90521,7 +190287,7 @@ "19:00", "19:50", "HQ C03 - Humanities Quadrangle C03", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -90530,7 +190296,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -90541,7 +190307,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -90574,7 +190368,7 @@ "20:00", "20:50", "HQ C03 - Humanities Quadrangle C03", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -90583,7 +190377,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -90594,7 +190388,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -90627,7 +190449,7 @@ "19:00", "19:50", "HQ 213 - Humanities Quadrangle 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -90636,7 +190458,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -90647,7 +190469,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -90680,7 +190530,7 @@ "20:00", "20:50", "HQ 213 - Humanities Quadrangle 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -90689,7 +190539,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -90700,7 +190550,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -90733,7 +190611,7 @@ "10:30", "11:20", "HQ 313 - Humanities Quadrangle 313", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -90742,7 +190620,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -90753,7 +190631,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -90786,7 +190692,7 @@ "9:25", "10:15", "HQ 313 - Humanities Quadrangle 313", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -90795,7 +190701,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -90806,7 +190712,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -90839,7 +190773,7 @@ "11:35", "12:25", "HQ C07 - Humanities Quadrangle C07", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -90848,7 +190782,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -90859,7 +190793,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -90892,7 +190854,7 @@ "9:25", "10:15", "WALL81 101 - 81 Wall Street 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -90901,7 +190863,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -90912,7 +190874,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -90945,7 +190935,7 @@ "10:30", "11:20", "HQ C07 - Humanities Quadrangle C07", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -90954,7 +190944,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -90965,7 +190955,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -91003,7 +191021,7 @@ "11:35", "12:50", "LC 204 - Linsly-Chittenden Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -91011,7 +191029,7 @@ "11:35", "12:50", "LC 204 - Linsly-Chittenden Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -91027,15 +191045,96 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88518\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88518/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989185333251953, + 0.9987103939056396 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.998817503452301 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988135099411011, + 0.9989168643951416, + 0.9979689717292786, + 0.997117280960083 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 0.8571428571428571, + "final_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + } + } }, { "season_code": "202303", "requirements": "Priority given to juniors, seniors, Ed Study students.", - "description": "This course is first in a sequence including Theory and Practice of Early Childhood Education (CHLD127\/PSYCH 127\/EDST 127) and Language Literacy and Play (CHLD 128\/PSYCH 128\/EDST 128). This course provides students a theoretical base in child development and behavior and tools to sensitively and carefully observer infants and young children. The seminar will consider aspects of cognitive, social, and emotional development. An assumption of this course is that it is not possible to understand children \u2013 their behavior and development\u2014without understanding their families and culture and the relationships between children and parents. The course will give an overview of the major theories in the field, focusing on the complex interaction between the developing self and the environment, exploring current research and theory as well as practice. Students will have the opportunity to see how programs for young children use psychodynamic and interactional theories to inform the development of their philosophy and curriculum. Weekly Observations:-Total Time Commitment 3 hours per week. Students will do two separate weekly observations over the course of the semester. They will observe in a group setting for 2 hours each each week at a Yale affiliated child care center.\u00a0 Students will also arrange to do a weekly 1 hour observation (either in person or virtually) of a child under the age of 6. Students must make their own arrangements for these individual observations. If it is not possible to arrange a child to observe, please do not apply to take this course. For a portion of class meetings, the class will divide into small supervisory discussion groups.", + "description": "This course is first in a sequence including Theory and Practice of Early Childhood Education (CHLD127/PSYCH 127/EDST 127) and Language Literacy and Play (CHLD 128/PSYCH 128/EDST 128). This course provides students a theoretical base in child development and behavior and tools to sensitively and carefully observer infants and young children. The seminar will consider aspects of cognitive, social, and emotional development. An assumption of this course is that it is not possible to understand children \u2013 their behavior and development\u2014without understanding their families and culture and the relationships between children and parents. The course will give an overview of the major theories in the field, focusing on the complex interaction between the developing self and the environment, exploring current research and theory as well as practice. Students will have the opportunity to see how programs for young children use psychodynamic and interactional theories to inform the development of their philosophy and curriculum. Weekly Observations:-Total Time Commitment 3 hours per week. Students will do two separate weekly observations over the course of the semester. They will observe in a group setting for 2 hours each each week at a Yale affiliated child care center.\u00a0 Students will also arrange to do a weekly 1 hour observation (either in person or virtually) of a child under the age of 6. Students must make their own arrangements for these individual observations. If it is not possible to arrange a child to observe, please do not apply to take this course. For a portion of class meetings, the class will divide into small supervisory discussion groups.", "short_title": "Child Development", "title": "Child Development", "school": "YC", @@ -91082,10 +191181,107 @@ "classnotes": "Permission of the instructors is REQUIRED for this seminar. Students should apply on the Yale Course Selection site between April 18 and April 21. Instructors will select students and construct a waiting list. Instructors will select students by April 25. Students should include on their application on Yale Course Site: Name, Class, Preferred Pronouns, Major, and if in Ed Studies; Briefly describe previous experience working with children; Why do you want to take this class?; Will you be able to identify a child to observe?; Is there anything else you think it would be helpful for us to know about you?\nPriority given to juniors, seniors, Ed Study students.", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88863\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88863/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989299178123474, + 0.9988211989402771, + 0.9982457160949707, + 0.9988716244697571, + 0.9988870024681091 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987554550170898, + 0.9989006519317627, + 0.9989153146743774, + 0.9977917671203613, + 0.9989138841629028 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985539317131042, + 0.9986905455589294, + 0.9989352822303772, + 0.9984605312347412, + 0.9989373087882996, + 0.998846173286438 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 16 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -91119,7 +191315,7 @@ "Hu" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC HIST: United States", "YC HIST: Ideas & Intellectuals", @@ -91136,7 +191332,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -91198,10 +191422,141 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88676\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88676/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986456036567688, + 0.9988774657249451, + 0.9989327788352966, + 0.9989345669746399, + 0.9989149570465088, + 0.9983288645744324, + 0.9987980127334595, + 0.9987825751304626, + 0.9985785484313965, + 0.9989069700241089, + 0.9989129304885864 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9090909090909091 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998831570148468, + 0.9986496567726135, + 0.9994625449180603, + 0.9988228678703308, + 0.9987140893936157, + 0.9970806241035461, + 0.9989080429077148, + 0.9986929297447205, + 0.9988840222358704 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.980938196182251, + 0.9984240531921387, + 0.9989258646965027, + 0.998872697353363, + 0.998907208442688, + 0.9946005344390869, + 0.9987576007843018, + 0.9987230896949768, + 0.9988779425621033, + 0.9945294260978699, + 0.998879611492157, + 0.9988798499107361 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 30, + "final_proportion": 0.9375, + "final_counts": { + "POSITIVE": 30, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9375, + "NEGATIVE": 0.0625 + } + } }, { "season_code": "202303", @@ -91241,7 +191596,7 @@ "10:30", "11:20", "WLH 208 - William L. Harkness Hall 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -91249,7 +191604,7 @@ "10:30", "11:20", "WLH 208 - William L. Harkness Hall 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -91266,10 +191621,169 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88673\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88673/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988219141960144, + 0.9989156723022461, + 0.9985854625701904, + 0.9985727071762085, + 0.9984737038612366, + 0.9987195730209351, + 0.9988293051719666, + 0.9984329342842102, + 0.9986252784729004, + 0.9876981377601624, + 0.9883335828781128, + 0.9987358450889587, + 0.9988998174667358, + 0.998866081237793 + ], + "sentiment_counts": { + "POSITIVE": 14, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989155530929565, + 0.9994785189628601, + 0.998521625995636, + 0.9988945126533508, + 0.9963717460632324, + 0.9867180585861206, + 0.9957274198532104, + 0.9987088441848755, + 0.9987577199935913, + 0.9988762736320496, + 0.9989169836044312, + 0.9988933205604553, + 0.9886779189109802, + 0.9972584247589111, + 0.9955506324768066, + 0.9986445307731628, + 0.9989122152328491 + ], + "sentiment_counts": { + "POSITIVE": 14, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.8235294117647058, + "NEGATIVE": 0.17647058823529413 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8235294117647058 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998892605304718, + 0.998927891254425, + 0.9987348914146423, + 0.9988842606544495, + 0.9985935091972351, + 0.9985440969467163, + 0.9974377155303955, + 0.9987136125564575, + 0.9982936978340149, + 0.9989369511604309, + 0.999471127986908, + 0.9958460927009583, + 0.9989161491394043, + 0.9953038692474365, + 0.9976192116737366 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8666666666666667, + "NEGATIVE": 0.13333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8666666666666667 + ] + }, + "final_label": "POSITIVE", + "final_count": 41, + "final_proportion": 0.8913043478260869, + "final_counts": { + "POSITIVE": 41, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.8913043478260869, + "NEGATIVE": 0.10869565217391304 + } + } }, { "season_code": "202303", @@ -91303,7 +191817,7 @@ "14:30", "15:20", "WTS B51 - Watson Center 60 Sachem Street B51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -91322,7 +191836,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -91383,7 +191925,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -91417,7 +191987,7 @@ "9:25", "10:15", "WLH 007 - William L. Harkness Hall 007", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -91436,7 +192006,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -91470,7 +192068,7 @@ "14:30", "15:20", "WTS A35 - Watson Center 60 Sachem Street A35", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -91489,7 +192087,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -91523,7 +192149,7 @@ "19:00", "19:50", "WTS A39 - Watson Center 60 Sachem Street A39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -91542,12 +192168,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "Theories, methodology, and applications of social psychology. Core topics include the self, social cognition\/social perception, attitudes and persuasion, group processes, conformity, human conflict and aggression, prejudice, prosocial behavior, and emotion.", + "description": "Theories, methodology, and applications of social psychology. Core topics include the self, social cognition/social perception, attitudes and persuasion, group processes, conformity, human conflict and aggression, prejudice, prosocial behavior, and emotion.", "short_title": "Social Psychology", "title": "Social Psychology", "school": "YC", @@ -91580,7 +192234,7 @@ "11:35", "12:50", "LORIA 250 - Loria Center 250", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ], "Thursday": [ @@ -91588,7 +192242,7 @@ "11:35", "12:50", "LORIA 250 - Loria Center 250", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -91606,10 +192260,287 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88679\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88679/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9933809041976929, + 0.9986317753791809, + 0.998664140701294, + 0.9987547397613525, + 0.9988232254981995, + 0.9988546371459961, + 0.9988433122634888, + 0.9967018961906433, + 0.9987812638282776, + 0.9987125396728516, + 0.9989268183708191, + 0.9988014698028564, + 0.9903088212013245, + 0.9979281425476074, + 0.9965671300888062, + 0.9986481070518494, + 0.9986938834190369, + 0.998433530330658, + 0.9989067316055298, + 0.9988921284675598, + 0.9978538155555725, + 0.998849630355835, + 0.9950997233390808, + 0.9988511800765991, + 0.9987849593162537, + 0.9987984895706177, + 0.9975492358207703, + 0.998508632183075, + 0.9987192153930664, + 0.9988345503807068, + 0.9989280104637146 + ], + "sentiment_counts": { + "POSITIVE": 31, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989767074584961, + 0.9973606467247009, + 0.9972483515739441, + 0.9988238215446472, + 0.9987732768058777, + 0.9988532066345215, + 0.9988682270050049, + 0.9985091090202332, + 0.9995059967041016, + 0.9953736662864685, + 0.9993438124656677, + 0.9943601489067078, + 0.9979274272918701, + 0.9980637431144714, + 0.9977554678916931, + 0.9989328980445862, + 0.9978444576263428, + 0.9979766011238098, + 0.9995001554489136, + 0.9988656044006348, + 0.998599112033844, + 0.9942446351051331, + 0.9983793497085571, + 0.9994813799858093, + 0.9988930821418762, + 0.992860734462738, + 0.9869468212127686, + 0.9983342289924622, + 0.9987730383872986, + 0.9989198446273804, + 0.9987573623657227, + 0.9986849427223206, + 0.9994219541549683, + 0.9987467527389526, + 0.9988996982574463 + ], + "sentiment_counts": { + "NEGATIVE": 11, + "POSITIVE": 24 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3142857142857143, + "POSITIVE": 0.6857142857142857 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6857142857142857 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994997978210449, + 0.9994944334030151, + 0.9986371397972107, + 0.9988129138946533, + 0.9987959861755371, + 0.9989148378372192, + 0.9987637996673584, + 0.9988922476768494, + 0.9986199140548706, + 0.9989269375801086, + 0.9995120763778687, + 0.9994949102401733, + 0.9989093542098999, + 0.998833954334259, + 0.9957626461982727, + 0.9988190531730652, + 0.9802748560905457, + 0.9989226460456848, + 0.9974592328071594, + 0.9636439085006714, + 0.9917340278625488, + 0.9987448453903198, + 0.9963002800941467, + 0.9974410533905029, + 0.9987788796424866, + 0.9995001554489136, + 0.9880059361457825, + 0.9987543821334839, + 0.9995026588439941, + 0.9988916516304016, + 0.9984466433525085, + 0.998646080493927, + 0.9988241791725159, + 0.9988924860954285, + 0.9987784028053284, + 0.9988920092582703, + 0.997117280960083, + 0.9989112615585327, + 0.9989294409751892 + ], + "sentiment_counts": { + "NEGATIVE": 9, + "POSITIVE": 30 + }, + "sentiment_distribution": { + "NEGATIVE": 0.23076923076923078, + "POSITIVE": 0.7692307692307693 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7692307692307693 + ] + }, + "final_label": "POSITIVE", + "final_count": 85, + "final_proportion": 0.8095238095238095, + "final_counts": { + "POSITIVE": 85, + "NEGATIVE": 20 + }, + "final_distribution": { + "POSITIVE": 0.8095238095238095, + "NEGATIVE": 0.19047619047619047 + } + } }, { "season_code": "202303", @@ -91648,7 +192579,7 @@ "14:30", "15:45", "AKW 100 - Arthur K. Watson Hall 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560119" + "https://map.yale.edu/?id=1910#!m/560119" ] ], "Thursday": [ @@ -91656,7 +192587,7 @@ "14:30", "15:45", "AKW 100 - Arthur K. Watson Hall 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560119" + "https://map.yale.edu/?id=1910#!m/560119" ] ] }, @@ -91676,10 +192607,89 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88910\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88910/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9941049814224243, + 0.9988222718238831 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986542463302612, + 0.9989334940910339, + 0.9973682761192322 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988647699356079, + 0.9987481832504272 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 7 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -91717,7 +192727,7 @@ "11:35", "12:50", "WALL53 AUD - 53 Wall Street AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/559554" + "https://map.yale.edu/?id=1910#!m/559554" ] ], "Wednesday": [ @@ -91725,7 +192735,7 @@ "11:35", "12:50", "WALL53 AUD - 53 Wall Street AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/559554" + "https://map.yale.edu/?id=1910#!m/559554" ] ] }, @@ -91742,10 +192752,357 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88685\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88685/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998197615146637, + 0.9987610578536987, + 0.9989292025566101, + 0.9988775849342346, + 0.9949585795402527, + 0.9986969828605652, + 0.9988065958023071, + 0.994756817817688, + 0.997622549533844, + 0.9987484216690063, + 0.9986918568611145, + 0.9986512064933777, + 0.9988096952438354, + 0.9989041090011597, + 0.9988215565681458, + 0.989736795425415, + 0.9985741376876831, + 0.9989306330680847, + 0.9984279870986938, + 0.9981676340103149, + 0.9981426000595093, + 0.9985300302505493, + 0.9952045679092407, + 0.9984226226806641, + 0.9987359642982483, + 0.9987486600875854, + 0.9984861016273499, + 0.9989129304885864, + 0.9942574501037598, + 0.9987589120864868, + 0.9987732768058777, + 0.9988375306129456, + 0.9986857771873474, + 0.9980003237724304, + 0.9988273978233337, + 0.9989169836044312, + 0.998776376247406, + 0.9988539218902588, + 0.9989140033721924, + 0.9989079236984253, + 0.9988309741020203, + 0.9984214305877686, + 0.9985519051551819, + 0.9986956715583801 + ], + "sentiment_counts": { + "POSITIVE": 44, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989078044891357, + 0.9988887906074524, + 0.9989331364631653, + 0.9987271428108215, + 0.9983048439025879, + 0.9971081614494324, + 0.999508261680603, + 0.9983891248703003, + 0.9988677501678467, + 0.998870313167572, + 0.9988020658493042, + 0.9993889331817627, + 0.9988803267478943, + 0.9986767172813416, + 0.9989001750946045, + 0.9995012283325195, + 0.9969968795776367, + 0.9986805319786072, + 0.9989257454872131, + 0.9990687966346741, + 0.9988425970077515, + 0.9985288381576538, + 0.9986006617546082, + 0.9975761771202087, + 0.9988862872123718, + 0.9986656904220581, + 0.9987732768058777, + 0.9986510872840881, + 0.9989004135131836, + 0.9982979893684387, + 0.9957631826400757, + 0.9988943934440613, + 0.9988917708396912, + 0.998530387878418, + 0.9978373646736145, + 0.9982385635375977, + 0.9989243149757385, + 0.9987059831619263, + 0.9989216327667236, + 0.9986579418182373, + 0.9989351630210876, + 0.998930037021637, + 0.9971528053283691, + 0.9945957064628601, + 0.9955506324768066, + 0.9994106292724609, + 0.9947861433029175 + ], + "sentiment_counts": { + "POSITIVE": 42, + "NEGATIVE": 5 + }, + "sentiment_distribution": { + "POSITIVE": 0.8936170212765957, + "NEGATIVE": 0.10638297872340426 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8936170212765957 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986977577209473, + 0.9988512992858887, + 0.9989211559295654, + 0.9989271759986877, + 0.9987316727638245, + 0.9995052814483643, + 0.9989030361175537, + 0.9988370537757874, + 0.999488115310669, + 0.998701810836792, + 0.9989282488822937, + 0.9989086389541626, + 0.998849630355835, + 0.9989280104637146, + 0.9989125728607178, + 0.9984808564186096, + 0.998450756072998, + 0.9995002746582031, + 0.9989247918128967, + 0.9988945126533508, + 0.9985295534133911, + 0.9988886713981628, + 0.9978489875793457, + 0.998059093952179, + 0.9989136457443237, + 0.9989151954650879, + 0.9988616704940796, + 0.9982989430427551, + 0.9987630844116211, + 0.9983460903167725, + 0.9988043308258057, + 0.9986734390258789, + 0.997422456741333, + 0.9988561868667603, + 0.9989295601844788, + 0.9988584518432617, + 0.9984458088874817, + 0.9987905621528625, + 0.9993946552276611, + 0.9989073276519775, + 0.9988856911659241, + 0.998643696308136, + 0.9989120960235596, + 0.9989008903503418, + 0.9974722266197205, + 0.9988330006599426, + 0.9842790961265564, + 0.9986854195594788, + 0.9982534050941467 + ], + "sentiment_counts": { + "POSITIVE": 44, + "NEGATIVE": 5 + }, + "sentiment_distribution": { + "POSITIVE": 0.8979591836734694, + "NEGATIVE": 0.10204081632653061 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8979591836734694 + ] + }, + "final_label": "POSITIVE", + "final_count": 130, + "final_proportion": 0.9285714285714286, + "final_counts": { + "POSITIVE": 130, + "NEGATIVE": 10 + }, + "final_distribution": { + "POSITIVE": 0.9285714285714286, + "NEGATIVE": 0.07142857142857142 + } + } }, { "season_code": "202303", @@ -91786,7 +193143,7 @@ "15:30", "17:20", "WLH 204 - William L. Harkness Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -91805,10 +193162,101 @@ "classnotes": "Priority is given to students in the Education Studies program (Scholar and Certificate) and then by course year. Please indicate your interest in the course as well as major, EDST program and whether you've taken EDST 110 when you request permission. ", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88362\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88362/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998609185218811, + 0.9988056421279907, + 0.9986715316772461 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989110231399536, + 0.9983341097831726, + 0.9988967180252075, + 0.9983867406845093 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998891294002533, + 0.9986816048622131, + 0.9988476037979126, + 0.9988846182823181, + 0.9989123344421387 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 0.9166666666666666, + "final_counts": { + "POSITIVE": 11, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + } + } }, { "season_code": "202303", @@ -91850,7 +193298,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -91889,7 +193365,7 @@ "13:30", "15:20", "HQ 109 - Humanities Quadrangle 109", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -91901,10 +193377,105 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90149\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90149/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988986253738403, + 0.9979442954063416, + 0.9988321661949158, + 0.9989218711853027, + 0.9988545179367065, + 0.9989042282104492 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989126920700073, + 0.998927891254425, + 0.9989326596260071 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998923122882843, + 0.9989029169082642, + 0.9988130331039429, + 0.9989113807678223, + 0.9989263415336609, + 0.9988991022109985 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 15 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -91942,7 +193513,7 @@ "13:30", "15:20", "WTS A42 - Watson Center 60 Sachem Street A42", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -91958,10 +193529,121 @@ "classnotes": "Lecturer Eleanor Schiff will be the instructor for this course, and Mira Debs is coordinating spring registration. Priority is given to students in the Education Studies program (Scholar and Certificate, PoliSci majors and then by course year. Please indicate your interest in the course as well as major, EDST program and whether you've taken EDST 110 when you request permission. ", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89315\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89315/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989320635795593, + 0.9986764788627625, + 0.9988188147544861, + 0.9988217949867249, + 0.9989272952079773, + 0.9987146854400635, + 0.998809814453125 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989213943481445, + 0.9988897442817688, + 0.9989352822303772, + 0.9989336133003235, + 0.998915433883667, + 0.9988200068473816, + 0.9989243149757385, + 0.9989070892333984 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989249110221863, + 0.9988890290260315, + 0.9989172220230103, + 0.9985882639884949, + 0.9989054203033447, + 0.9986616373062134, + 0.9987831711769104, + 0.9988707900047302 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 23, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 23 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -92001,7 +193683,7 @@ "14:30", "15:45", "DOW 112 - Dow Hall 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ], "Thursday": [ @@ -92009,7 +193691,7 @@ "14:30", "15:45", "DOW 112 - Dow Hall 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ] }, @@ -92021,7 +193703,7 @@ "YC EDST: Indv Society", "YC LING: Intermediate Courses", "YC LING: Breadth", - "YC LING Brdth: Lang&Mind\/Brain", + "YC LING Brdth: Lang&Mind/Brain", "YC LING: Elective" ], "regnotes": "", @@ -92029,10 +193711,107 @@ "classnotes": "", "final_exam": "Monday, December 18, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88196\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88196/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988497495651245, + 0.9988068342208862, + 0.995704710483551, + 0.9986888766288757, + 0.9985502362251282 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9994514584541321, + 0.9949553608894348, + 0.9987591505050659, + 0.9979653358459473, + 0.9988920092582703, + 0.9970979690551758 + ], + "sentiment_counts": { + "NEGATIVE": 4, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.6666666666666666, + "POSITIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9980016350746155, + 0.998740017414093, + 0.9933339953422546, + 0.9985765218734741 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 1 + }, + "sentiment_distribution": { + "NEGATIVE": 0.75, + "POSITIVE": 0.25 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.75 + ] + }, + "final_label": "neutral", + "final_count": 8, + "final_proportion": 0.5, + "final_counts": { + "POSITIVE": 8, + "NEGATIVE": 7 + }, + "final_distribution": { + "POSITIVE": 0.5333333333333333, + "NEGATIVE": 0.4666666666666667 + } + } }, { "season_code": "202303", @@ -92070,7 +193849,7 @@ "13:30", "15:20", "WLH 112 - William L. Harkness Hall 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -92090,10 +193869,151 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90504\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90504/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989103078842163, + 0.9989066123962402, + 0.9989203214645386, + 0.9987109899520874, + 0.9987649917602539, + 0.9987152814865112, + 0.998884379863739, + 0.9988817572593689, + 0.9981233477592468, + 0.9988403916358948, + 0.9988676309585571, + 0.9989094734191895 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989264607429504, + 0.9989283680915833, + 0.9986377358436584, + 0.9989169836044312, + 0.9988800883293152, + 0.9900264739990234, + 0.9988886713981628, + 0.9989290833473206, + 0.9989180564880371, + 0.9989356398582458, + 0.9988918900489807, + 0.9989092350006104 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982553124427795, + 0.9989264607429504, + 0.9989138841629028, + 0.9988846182823181, + 0.9989277720451355, + 0.9989349246025085, + 0.9988644123077393, + 0.9989233613014221, + 0.9989345669746399, + 0.9994413256645203, + 0.9989206790924072, + 0.9988952279090881, + 0.9989073276519775 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9230769230769231, + "NEGATIVE": 0.07692307692307693 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9230769230769231 + ] + }, + "final_label": "POSITIVE", + "final_count": 36, + "final_proportion": 0.972972972972973, + "final_counts": { + "POSITIVE": 36, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.972972972972973, + "NEGATIVE": 0.02702702702702703 + } + } }, { "season_code": "202303", @@ -92133,7 +194053,7 @@ "13:30", "15:20", "BASSLB L73 - Bass Library L73", - "https:\/\/map.yale.edu\/?id=1910#!m\/564574" + "https://map.yale.edu/?id=1910#!m/564574" ] ] }, @@ -92150,10 +194070,117 @@ "classnotes": "Priority is given to students in the Education Studies program (Scholar and Certificate) and then by course year. Please indicate your interest in the course as well as major, EDST program and whether you've taken EDST 110 when you request permission. ", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88372\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88372/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989351630210876, + 0.9988977909088135, + 0.9986785054206848, + 0.9987830519676208, + 0.9988526105880737, + 0.9989126920700073, + 0.9989137649536133 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9904847145080566, + 0.9988932013511658, + 0.9988967180252075, + 0.9989151954650879, + 0.9987911581993103, + 0.9989084005355835, + 0.998708963394165 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984983205795288, + 0.9975451827049255, + 0.9989197254180908, + 0.9989114999771118, + 0.9989051818847656, + 0.9987704157829285, + 0.9980980753898621 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 21, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 21 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -92192,7 +194219,7 @@ "15:30", "17:20", "HQ C03 - Humanities Quadrangle C03", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -92201,7 +194228,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC EDST: Social Context" ], @@ -92210,10 +194237,99 @@ "classnotes": "Priority is given to students in the Education Studies program (Scholar and Certificate) and then by course year. Please indicate your interest in the course as well as major, EDST program and whether you've taken EDST 110 when you request permission.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88377\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88377/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985948204994202, + 0.9988940358161926, + 0.9985036849975586, + 0.9987912774085999 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989103078842163, + 0.9989356398582458, + 0.9987566471099854, + 0.9989346861839294 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981096982955933, + 0.9989301562309265, + 0.9988565444946289, + 0.9983932375907898 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 12 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -92254,7 +194370,7 @@ "9:25", "11:15", "HQ C07 - Humanities Quadrangle C07", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -92276,15 +194392,98 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89002\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89002/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "", - "description": "This course introduces students to oral and written literature by\/for and\/or about children in Africa: from its oral origins in riddles, lullabies, playground verse, and folk narratives, to written texts in the form of drama, poetry, and prose. The course examines representative texts of the genre to address its historical background\/development and explore its distinctive (literary) qualities. Major themes and social issues that are dealt with in African children\u2019s literature (including cultural notions of childhood, gender, and power) as well as critical approaches to the genre are considered.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998885452747345, + 0.9988933205604553 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985866546630859, + 0.9988686442375183 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 1 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9983514547348022, + 0.9988250136375427, + 0.9973405003547668, + 0.999376118183136 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "final_label": "POSITIVE", + "final_count": 5, + "final_proportion": 0.625, + "final_counts": { + "POSITIVE": 5, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.625, + "NEGATIVE": 0.375 + } + } + }, + { + "season_code": "202303", + "requirements": "", + "description": "This course introduces students to oral and written literature by/for and/or about children in Africa: from its oral origins in riddles, lullabies, playground verse, and folk narratives, to written texts in the form of drama, poetry, and prose. The course examines representative texts of the genre to address its historical background/development and explore its distinctive (literary) qualities. Major themes and social issues that are dealt with in African children\u2019s literature (including cultural notions of childhood, gender, and power) as well as critical approaches to the genre are considered.", "short_title": "Children's Literature in Africa", "title": "Children's Literature in Africa", "school": "YC", @@ -92317,7 +194516,7 @@ "9:25", "11:15", "LC 105 - Linsly-Chittenden Hall 105", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -92333,10 +194532,38 @@ "classnotes": "", "final_exam": "Saturday, December 16, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90174\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/90174/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -92373,7 +194600,7 @@ "19:00", "20:50", "WLH 112 - William L. Harkness Hall 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -92389,10 +194616,121 @@ "classnotes": "Priority is given to students in the Education Studies program (Scholar and Certificate) and then by course year. Please indicate your interest in the course as well as major, EDST program and whether you've taken EDST 110 when you request permission. ", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88383\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88383/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9962582588195801, + 0.9987241625785828, + 0.9976640939712524, + 0.9988945126533508, + 0.9988662004470825, + 0.9989246726036072, + 0.9988783001899719 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 6 + }, + "sentiment_distribution": { + "NEGATIVE": 0.14285714285714285, + "POSITIVE": 0.8571428571428571 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9962582588195801, + 0.9947927594184875, + 0.9989062547683716, + 0.9986415505409241, + 0.9985290765762329, + 0.9989272952079773, + 0.9989114999771118, + 0.9988539218902588 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 7 + }, + "sentiment_distribution": { + "NEGATIVE": 0.125, + "POSITIVE": 0.875 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9962582588195801, + 0.9989101886749268, + 0.9989194869995117, + 0.9982553124427795, + 0.9989006519317627, + 0.9989159107208252, + 0.9988821148872375 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 6 + }, + "sentiment_distribution": { + "NEGATIVE": 0.14285714285714285, + "POSITIVE": 0.8571428571428571 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 0.8636363636363636, + "final_counts": { + "NEGATIVE": 3, + "POSITIVE": 19 + }, + "final_distribution": { + "NEGATIVE": 0.13636363636363635, + "POSITIVE": 0.8636363636363636 + } + } }, { "season_code": "202303", @@ -92431,7 +194769,7 @@ "15:30", "17:20", "WALL81 201 - 81 Wall Street 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -92447,15 +194785,138 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89995\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89995/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984252452850342, + 0.9989101886749268, + 0.9987581968307495, + 0.9988725781440735, + 0.9988523721694946, + 0.9989137649536133, + 0.9989171028137207, + 0.9988479614257812 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989363551139832, + 0.99854576587677, + 0.9984095692634583, + 0.9989093542098999, + 0.9988527297973633, + 0.998838484287262, + 0.9987959861755371, + 0.9988855719566345, + 0.9988068342208862 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987925291061401, + 0.9988791346549988, + 0.9989176988601685, + 0.9986522793769836, + 0.9989327788352966, + 0.9989359974861145, + 0.9988574981689453, + 0.998872697353363, + 0.9986566305160522, + 0.9989217519760132, + 0.9988479614257812, + 0.9986322522163391 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 29, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 29 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", "requirements": "Prerequisites: EDST 110 and two Education Studies electives. Enrollment limited to senior Education Studies Scholars.", - "description": "The first course in the yearlong sequence, followed by EDST 410\/EDST 490 preparing students for a\u00a0thesis-equivalent capstone project and overview of education studies methodologies and practical research design.", + "description": "The first course in the yearlong sequence, followed by EDST 410/EDST 490 preparing students for a\u00a0thesis-equivalent capstone project and overview of education studies methodologies and practical research design.", "short_title": "Senior Capstone (Fall)", "title": "Senior Capstone (Fall)", "school": "YC", @@ -92487,7 +194948,7 @@ "9:25", "11:15", "LC 317 - Linsly-Chittenden Hall 317", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -92499,10 +194960,127 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88390\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88390/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987350106239319, + 0.9987967014312744, + 0.9987143278121948, + 0.9959640502929688, + 0.9987177848815918, + 0.9988678693771362, + 0.9988887906074524, + 0.998917818069458 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989342093467712, + 0.998792290687561, + 0.9989226460456848, + 0.9968417882919312, + 0.9988617897033691, + 0.9988595247268677, + 0.9988897442817688, + 0.9989247918128967, + 0.9986972212791443, + 0.9989113807678223 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9854542016983032, + 0.9989327788352966, + 0.9968410730361938, + 0.9986502528190613, + 0.9989100694656372, + 0.9988422989845276, + 0.9987622499465942 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 5 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2857142857142857, + "POSITIVE": 0.7142857142857143 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7142857142857143 + ] + }, + "final_label": "POSITIVE", + "final_count": 23, + "final_proportion": 0.92, + "final_counts": { + "POSITIVE": 23, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.92, + "NEGATIVE": 0.08 + } + } }, { "season_code": "202303", @@ -92556,10 +195134,143 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88398\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88398/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988611936569214, + 0.9987620115280151, + 0.9988798499107361, + 0.9988970756530762, + 0.9989185333251953, + 0.9987565279006958, + 0.9982126951217651, + 0.9989251494407654, + 0.998863697052002, + 0.9987106323242188, + 0.9988821148872375 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989008903503418, + 0.9989385008811951, + 0.9988484382629395, + 0.9989181756973267, + 0.9989345669746399, + 0.9989308714866638, + 0.9988947510719299, + 0.9988442659378052, + 0.9989317059516907, + 0.9989373087882996, + 0.9989246726036072 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986888766288757, + 0.9989376664161682, + 0.9989281296730042, + 0.9989004135131836, + 0.9989299178123474, + 0.998927652835846, + 0.9989303946495056, + 0.9989246726036072, + 0.9988621473312378, + 0.9989288449287415, + 0.9988898634910583, + 0.998908519744873 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 34, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 34 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -92599,10 +195310,38 @@ "classnotes": "Independent study with Dr. Debs, arranged with student and instructor.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92743\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/92743/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -92639,7 +195378,7 @@ "11:35", "12:25", "DL 220 - Dunham Laboratory 220", - "https:\/\/map.yale.edu\/?id=1910#!m\/560005" + "https://map.yale.edu/?id=1910#!m/560005" ] ], "Thursday": [ @@ -92647,7 +195386,7 @@ "11:35", "12:25", "DL 220 - Dunham Laboratory 220", - "https:\/\/map.yale.edu\/?id=1910#!m\/560005" + "https://map.yale.edu/?id=1910#!m/560005" ] ] }, @@ -92667,10 +195406,253 @@ "classnotes": "", "final_exam": "Friday, December 15, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88404\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88404/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986786246299744, + 0.9986687898635864, + 0.9984742999076843, + 0.9988259673118591, + 0.9964534044265747, + 0.9971166849136353, + 0.9862949252128601, + 0.9570574760437012, + 0.9986959099769592, + 0.9989252686500549, + 0.998839795589447, + 0.9964669942855835, + 0.9983160495758057, + 0.9872482419013977, + 0.9988971948623657, + 0.9984569549560547, + 0.9964973330497742, + 0.9980265498161316, + 0.994179368019104, + 0.9881101846694946, + 0.9955810904502869, + 0.9980290532112122, + 0.9572175741195679, + 0.9986478686332703, + 0.9986767172813416, + 0.9988742470741272, + 0.9988372921943665, + 0.99872225522995, + 0.9988988637924194, + 0.9347624778747559 + ], + "sentiment_counts": { + "POSITIVE": 28, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.9333333333333333, + "NEGATIVE": 0.06666666666666667 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9333333333333333 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988791346549988, + 0.9993857145309448, + 0.9978280663490295, + 0.999504804611206, + 0.9989325404167175, + 0.9984186887741089, + 0.9984380602836609, + 0.9928915500640869, + 0.9988422989845276, + 0.5982338786125183, + 0.9989367127418518, + 0.9984930753707886, + 0.9994389414787292, + 0.9880332946777344, + 0.9993898868560791, + 0.9983073472976685, + 0.9960054755210876, + 0.9961562752723694, + 0.999496340751648, + 0.9988644123077393, + 0.9989080429077148, + 0.9987248778343201, + 0.9969162940979004, + 0.6901592016220093, + 0.9986975193023682, + 0.9982746839523315, + 0.9988502264022827, + 0.9989073276519775, + 0.9995055198669434 + ], + "sentiment_counts": { + "POSITIVE": 18, + "NEGATIVE": 11 + }, + "sentiment_distribution": { + "POSITIVE": 0.6206896551724138, + "NEGATIVE": 0.3793103448275862 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6206896551724138 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.6421231627464294, + 0.9993377327919006, + 0.9955744743347168, + 0.9995160102844238, + 0.9988652467727661, + 0.9645450711250305, + 0.9986147880554199, + 0.9955465793609619, + 0.9987898468971252, + 0.9994990825653076, + 0.9987717270851135, + 0.9994702935218811, + 0.9992021918296814, + 0.9974088072776794, + 0.9988454580307007, + 0.9994807839393616, + 0.987565815448761, + 0.9988804459571838, + 0.9994781613349915, + 0.9973939657211304, + 0.9989218711853027, + 0.9988131523132324, + 0.9988835453987122, + 0.997117280960083, + 0.998871386051178, + 0.9670897722244263, + 0.9980826377868652, + 0.9988225102424622, + 0.9991375207901001 + ], + "sentiment_counts": { + "NEGATIVE": 12, + "POSITIVE": 17 + }, + "sentiment_distribution": { + "NEGATIVE": 0.41379310344827586, + "POSITIVE": 0.5862068965517241 + }, + "sentiment_overall": [ + "POSITIVE", + 0.5862068965517241 + ] + }, + "final_label": "POSITIVE", + "final_count": 63, + "final_proportion": 0.7159090909090909, + "final_counts": { + "POSITIVE": 63, + "NEGATIVE": 25 + }, + "final_distribution": { + "POSITIVE": 0.7159090909090909, + "NEGATIVE": 0.2840909090909091 + } + } }, { "season_code": "202303", @@ -92701,7 +195683,7 @@ "13:30", "16:30", "WLH 117 - William L. Harkness Hall 117", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -92724,7 +195706,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -92755,7 +195765,7 @@ "13:30", "16:30", "HQ 401 - Humanities Quadrangle 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -92778,7 +195788,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -92809,7 +195847,7 @@ "15:30", "18:30", "WLH 114 - William L. Harkness Hall 114", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -92832,7 +195870,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -92869,7 +195935,7 @@ "14:30", "15:45", "BCT CO31 - Becton Center CO31", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ], "Wednesday": [ @@ -92877,7 +195943,7 @@ "14:30", "15:45", "BCT CO31 - Becton Center CO31", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ] }, @@ -92891,10 +195957,103 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88412\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88412/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988547563552856, + 0.9984765648841858, + 0.9980229139328003 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9987370371818542, + 0.9989283680915833, + 0.9995038509368896, + 0.9988677501678467, + 0.999286949634552 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.6, + "NEGATIVE": 0.4 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988375306129456, + 0.9995008707046509, + 0.9994950294494629, + 0.9989134073257446, + 0.997435986995697 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.6, + "NEGATIVE": 0.4 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 0.6923076923076923, + "final_counts": { + "POSITIVE": 9, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.6923076923076923, + "NEGATIVE": 0.3076923076923077 + } + } }, { "season_code": "202303", @@ -92940,7 +196099,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -92978,7 +196165,7 @@ "13:00", "14:15", "LOM 206 - Leet Oliver Memorial Hall 206", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ], "Thursday": [ @@ -92986,7 +196173,7 @@ "13:00", "14:15", "LOM 206 - Leet Oliver Memorial Hall 206", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ] }, @@ -93004,10 +196191,99 @@ "classnotes": "", "final_exam": "Saturday, December 16, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88423\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88423/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981690645217896, + 0.9980093836784363, + 0.9986830353736877 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988906979560852, + 0.9995096921920776, + 0.9987523555755615, + 0.9989132881164551 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9974592328071594, + 0.9986438155174255, + 0.9988709092140198, + 0.9989014863967896 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 0.8181818181818182, + "final_counts": { + "POSITIVE": 9, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8181818181818182, + "NEGATIVE": 0.18181818181818182 + } + } }, { "season_code": "202303", @@ -93044,7 +196320,7 @@ "11:35", "12:50", "BCT CO31 - Becton Center CO31", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ], "Thursday": [ @@ -93052,7 +196328,7 @@ "11:35", "12:50", "BCT CO31 - Becton Center CO31", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ] }, @@ -93066,10 +196342,103 @@ "classnotes": "", "final_exam": "Friday, December 15, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88432\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88432/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987701773643494, + 0.998367965221405, + 0.9987779259681702, + 0.9987673759460449 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987788796424866, + 0.9988609552383423, + 0.9987897276878357, + 0.9989297986030579, + 0.9989362359046936 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9974592328071594, + 0.9914824962615967, + 0.9988806843757629, + 0.998933732509613 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 0.9230769230769231, + "final_counts": { + "POSITIVE": 12, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9230769230769231, + "NEGATIVE": 0.07692307692307693 + } + } }, { "season_code": "202303", @@ -93107,7 +196476,7 @@ "11:35", "12:50", "HLH17 05 - 17 Hillhouse Avenue 05", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Thursday": [ @@ -93115,7 +196484,7 @@ "11:35", "12:50", "HLH17 05 - 17 Hillhouse Avenue 05", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -93129,10 +196498,101 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88438\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88438/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9973320960998535, + 0.9960830211639404, + 0.9761976599693298, + 0.9986955523490906 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.999508261680603, + 0.9986409544944763, + 0.9838866591453552, + 0.9995009899139404 + ], + "sentiment_counts": { + "NEGATIVE": 4, + "POSITIVE": 0 + }, + "sentiment_distribution": { + "NEGATIVE": 1.0, + "POSITIVE": 0.0 + }, + "sentiment_overall": [ + "NEGATIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9930610060691833, + 0.9976087808609009, + 0.9980787038803101, + 0.9994993209838867 + ], + "sentiment_counts": { + "NEGATIVE": 4, + "POSITIVE": 0 + }, + "sentiment_distribution": { + "NEGATIVE": 1.0, + "POSITIVE": 0.0 + }, + "sentiment_overall": [ + "NEGATIVE", + 1.0 + ] + }, + "final_label": "NEGATIVE", + "final_count": 9, + "final_proportion": 0.75, + "final_counts": { + "POSITIVE": 3, + "NEGATIVE": 9 + }, + "final_distribution": { + "POSITIVE": 0.25, + "NEGATIVE": 0.75 + } + } }, { "season_code": "202303", @@ -93171,7 +196631,7 @@ "13:00", "14:15", "DL 514 - Dunham Laboratory 514", - "https:\/\/map.yale.edu\/?id=1910#!m\/560005" + "https://map.yale.edu/?id=1910#!m/560005" ] ], "Wednesday": [ @@ -93179,7 +196639,7 @@ "13:00", "14:15", "DL 514 - Dunham Laboratory 514", - "https:\/\/map.yale.edu\/?id=1910#!m\/560005" + "https://map.yale.edu/?id=1910#!m/560005" ] ] }, @@ -93193,10 +196653,38 @@ "classnotes": "", "final_exam": "Wednesday, December 20, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88444\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88444/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -93234,7 +196722,7 @@ "11:35", "12:50", "HLH17 113 - 17 Hillhouse Avenue 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Wednesday": [ @@ -93242,7 +196730,7 @@ "11:35", "12:50", "HLH17 113 - 17 Hillhouse Avenue 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -93256,15 +196744,110 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88448\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88448/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988376498222351, + 0.9922738671302795, + 0.9989112615585327, + 0.9987784028053284 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989058971405029, + 0.9987263083457947, + 0.9980332255363464, + 0.9989101886749268 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988347887992859, + 0.9994828701019287, + 0.9974592328071594, + 0.9981922507286072, + 0.997117280960083, + 0.9987758994102478 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 0.8571428571428571, + "final_counts": { + "POSITIVE": 12, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + } + } }, { "season_code": "202303", "requirements": "Suggested prerequisites: MATH 241 or S&DS 238, S&DS 241; MATH 222, MATH 225, EENG 202 (preferred)", - "description": "Detection and estimation refers to the development and study of statistical theory and methods in settings involving stochastic signals and, more generally, stochastic processes or stochastic data, where the goal is (optimal) testing of possibly multiple hypotheses regarding the generative model of the data, (optimal) signal estimation from potentially noisy measurements\/observations, and parameter estimation whenever parametric signal\/data models are available. Although these problems often come up in the context of signal processing and communications, the concepts are fundamental to the basic statistical methodologies used broadly across science, medicine, and engineering. The course has been designed from a contemporary perspective, and includes new and cutting-edge topics such as risk-aware statistical estimation and intrinsic links with stochastic optimization and statistical learning.\n\nPrior knowledge of undergrad\/first-year-grad level probability would be ideal. Knowledge of real analysis\/measure theory would be even more ideal, but it is not required.", + "description": "Detection and estimation refers to the development and study of statistical theory and methods in settings involving stochastic signals and, more generally, stochastic processes or stochastic data, where the goal is (optimal) testing of possibly multiple hypotheses regarding the generative model of the data, (optimal) signal estimation from potentially noisy measurements/observations, and parameter estimation whenever parametric signal/data models are available. Although these problems often come up in the context of signal processing and communications, the concepts are fundamental to the basic statistical methodologies used broadly across science, medicine, and engineering. The course has been designed from a contemporary perspective, and includes new and cutting-edge topics such as risk-aware statistical estimation and intrinsic links with stochastic optimization and statistical learning.\n\nPrior knowledge of undergrad/first-year-grad level probability would be ideal. Knowledge of real analysis/measure theory would be even more ideal, but it is not required.", "short_title": "Detection and Estimation", "title": "Detection and Estimation", "school": "YC", @@ -93297,7 +196880,7 @@ "14:30", "15:45", "BCT 508A - Becton Center 508A", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ], "Thursday": [ @@ -93305,7 +196888,7 @@ "14:30", "15:45", "BCT 508A - Becton Center 508A", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ] }, @@ -93317,15 +196900,43 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89999\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89999/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "Experience with differential equations, linear algebra, and basic understanding of dynamics is required. Basic coding experience in e.g., python, c++, c, are also required. Juniors and seniors preferred.", - "description": "This course introduces fundamental concepts of robotics, optimal control, and reinforcement learning. Lectures cover topics on state representation, manipulator equations, forward\/inverse kinematics\/dynamics, planning and control of fully actuated and underactuated robots, operational space control, control via mathematical optimization, and reinforcement learning. The topics focus on connecting mathematical formulations to algorithmic implementation through simulated robotic systems. Coding assignments provide students experience setting up and interfacing with several simulated robotic systems, algorithmic implementation of several state-of-the-art methods, and a codebase for future use. Special topic lectures focus on recent developments in the field of robotics and highlight core research areas. A final class project takes place instead of a final exam where students leverage the codebase they have built throughout the course in a robot problem of their choosing.", + "description": "This course introduces fundamental concepts of robotics, optimal control, and reinforcement learning. Lectures cover topics on state representation, manipulator equations, forward/inverse kinematics/dynamics, planning and control of fully actuated and underactuated robots, operational space control, control via mathematical optimization, and reinforcement learning. The topics focus on connecting mathematical formulations to algorithmic implementation through simulated robotic systems. Coding assignments provide students experience setting up and interfacing with several simulated robotic systems, algorithmic implementation of several state-of-the-art methods, and a codebase for future use. Special topic lectures focus on recent developments in the field of robotics and highlight core research areas. A final class project takes place instead of a final exam where students leverage the codebase they have built throughout the course in a robot problem of their choosing.", "short_title": "Fundamentals of Robot Modelin...", "title": "Fundamentals of Robot Modeling and Control", "school": "YC", @@ -93359,7 +196970,7 @@ "16:00", "17:15", "HLH17 115 - 17 Hillhouse Avenue 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Thursday": [ @@ -93367,7 +196978,7 @@ "16:00", "17:15", "HLH17 115 - 17 Hillhouse Avenue 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -93379,10 +196990,115 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88762\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88762/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9939574003219604, + 0.9987218976020813, + 0.9988006353378296, + 0.9980480670928955, + 0.9947157502174377, + 0.998640239238739 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9967231154441833, + 0.9984797835350037, + 0.998910665512085, + 0.9994538426399231, + 0.9894299507141113 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.6, + "NEGATIVE": 0.4 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988191723823547, + 0.9989275336265564, + 0.998700737953186, + 0.9982008934020996, + 0.9717752933502197, + 0.9972643852233887, + 0.9986578226089478, + 0.9989294409751892 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 0.7368421052631579, + "final_counts": { + "POSITIVE": 14, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.7368421052631579, + "NEGATIVE": 0.2631578947368421 + } + } }, { "season_code": "202303", @@ -93424,7 +197140,7 @@ "11:35", "12:50", "LC 211 - Linsly-Chittenden Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -93432,7 +197148,7 @@ "11:35", "12:50", "LC 211 - Linsly-Chittenden Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -93444,10 +197160,41 @@ "classnotes": "", "final_exam": "Friday, December 15, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88328\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88328/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.99883633852005 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 1, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 1 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -93493,7 +197240,94 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985911250114441, + 0.9978415966033936, + 0.994602382183075, + 0.9987844824790955 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994829893112183, + 0.9987358450889587, + 0.9983677268028259 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9975392818450928, + 0.9986997842788696, + 0.997104823589325 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 0.9, + "final_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + } + } }, { "season_code": "202303", @@ -93539,7 +197373,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -93581,7 +197443,7 @@ "14:30", "15:45", "WTS A51 - Watson Center 60 Sachem Street A51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -93589,7 +197451,7 @@ "14:30", "15:45", "WTS A51 - Watson Center 60 Sachem Street A51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -93605,10 +197467,133 @@ "classnotes": "", "final_exam": "Sunday, December 17, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88172\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88172/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9980304837226868, + 0.9986047148704529, + 0.9162562489509583, + 0.9986104965209961, + 0.9976143836975098, + 0.998491644859314, + 0.9988740086555481, + 0.9988579750061035, + 0.9949612617492676 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989176988601685, + 0.9995079040527344, + 0.9989275336265564, + 0.9894932508468628, + 0.9986346364021301, + 0.998930037021637, + 0.9988192915916443, + 0.9995110034942627 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989182949066162, + 0.999414324760437, + 0.9994677901268005, + 0.9995068311691284, + 0.9987934827804565, + 0.9987847208976746, + 0.9989137649536133, + 0.9989270567893982, + 0.998902440071106, + 0.9983886480331421, + 0.9988535642623901 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.6363636363636364, + "NEGATIVE": 0.36363636363636365 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6363636363636364 + ] + }, + "final_label": "POSITIVE", + "final_count": 22, + "final_proportion": 0.7857142857142857, + "final_counts": { + "POSITIVE": 22, + "NEGATIVE": 6 + }, + "final_distribution": { + "POSITIVE": 0.7857142857142857, + "NEGATIVE": 0.21428571428571427 + } + } }, { "season_code": "202303", @@ -93646,7 +197631,7 @@ "9:00", "10:15", "HQ 229 - Humanities Quadrangle 229", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -93654,7 +197639,7 @@ "9:00", "10:15", "HQ 229 - Humanities Quadrangle 229", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -93668,10 +197653,107 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89645\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89645/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989014863967896, + 0.9987693428993225, + 0.9974597096443176, + 0.9989070892333984, + 0.9988665580749512, + 0.9988640546798706 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989234805107117, + 0.9988994598388672, + 0.9988835453987122, + 0.9988458156585693, + 0.9988681077957153 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989013671875, + 0.9988279938697815, + 0.9987292885780334, + 0.9989209175109863, + 0.9989325404167175 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 16 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -93709,7 +197791,7 @@ "9:00", "10:15", "YK220 004 - 220 York Street 004", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ], "Wednesday": [ @@ -93717,7 +197799,7 @@ "9:00", "10:15", "YK220 004 - 220 York Street 004", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ] }, @@ -93731,10 +197813,17 @@ "classnotes": "", "final_exam": "Thursday, December 14, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90063\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90063/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -93772,7 +197861,7 @@ "14:30", "15:45", "HQ 127 - Humanities Quadrangle 127", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -93780,7 +197869,7 @@ "14:30", "15:45", "HQ 127 - Humanities Quadrangle 127", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -93794,10 +197883,95 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89667\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89667/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987756609916687, + 0.9983857870101929, + 0.9988993406295776 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987674951553345, + 0.9878460764884949, + 0.99607914686203 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988749623298645, + 0.9889686107635498, + 0.9986794590950012 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 0.7777777777777778, + "final_counts": { + "POSITIVE": 7, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.7777777777777778, + "NEGATIVE": 0.2222222222222222 + } + } }, { "season_code": "202303", @@ -93835,7 +198009,7 @@ "16:00", "17:15", "HQ 127 - Humanities Quadrangle 127", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -93843,7 +198017,7 @@ "16:00", "17:15", "HQ 127 - Humanities Quadrangle 127", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -93857,10 +198031,38 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89668\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89668/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -93898,7 +198100,7 @@ "9:00", "10:15", "HQ 229 - Humanities Quadrangle 229", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -93906,7 +198108,7 @@ "9:00", "10:15", "HQ 229 - Humanities Quadrangle 229", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -93918,10 +198120,107 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89645\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89645/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989014863967896, + 0.9987693428993225, + 0.9974597096443176, + 0.9989070892333984, + 0.9988665580749512, + 0.9988640546798706 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989234805107117, + 0.9988994598388672, + 0.9988835453987122, + 0.9988458156585693, + 0.9988681077957153 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989013671875, + 0.9988279938697815, + 0.9987292885780334, + 0.9989209175109863, + 0.9989325404167175 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 16 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -93959,7 +198258,7 @@ "9:00", "10:15", "YK220 004 - 220 York Street 004", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ], "Wednesday": [ @@ -93967,7 +198266,7 @@ "9:00", "10:15", "YK220 004 - 220 York Street 004", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ] }, @@ -93979,10 +198278,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90063\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90063/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -94020,7 +198326,7 @@ "14:30", "15:45", "HQ 127 - Humanities Quadrangle 127", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -94028,7 +198334,7 @@ "14:30", "15:45", "HQ 127 - Humanities Quadrangle 127", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -94040,10 +198346,95 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89667\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89667/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987756609916687, + 0.9983857870101929, + 0.9988993406295776 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987674951553345, + 0.9878460764884949, + 0.99607914686203 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988749623298645, + 0.9889686107635498, + 0.9986794590950012 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 0.7777777777777778, + "final_counts": { + "POSITIVE": 7, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.7777777777777778, + "NEGATIVE": 0.2222222222222222 + } + } }, { "season_code": "202303", @@ -94081,7 +198472,7 @@ "16:00", "17:15", "HQ 127 - Humanities Quadrangle 127", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -94089,7 +198480,7 @@ "16:00", "17:15", "HQ 127 - Humanities Quadrangle 127", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -94101,10 +198492,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89668\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89668/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -94144,10 +198563,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90376\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90376/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -94187,10 +198634,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89669\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89669/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -94233,12 +198708,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "Not open to auditors.", - "description": "The objective of this course is to build a comprehensive working knowledge base for each of the primary physiologic systems that respond to acute and chronic environmental stressors, as well as chronic disease states. The course follows the general framework: (1) examine the structural and functional characteristics of given physiological system; (2) explore how both structure and function (within and between physiological systems) work to promote health; (3) explore how necessary features of each system (or integrated systems) are points of vulnerability that can lead to dysfunction and disease. In addition, this course offers the opportunity to examine each physiological system with respect to influences key to public health interest, e.g., age, race\/ethnicity, environmental exposures, chronic disease, microbial disease, and lifestyle, including the protection afforded by healthy lifestyle factors.", + "description": "The objective of this course is to build a comprehensive working knowledge base for each of the primary physiologic systems that respond to acute and chronic environmental stressors, as well as chronic disease states. The course follows the general framework: (1) examine the structural and functional characteristics of given physiological system; (2) explore how both structure and function (within and between physiological systems) work to promote health; (3) explore how necessary features of each system (or integrated systems) are points of vulnerability that can lead to dysfunction and disease. In addition, this course offers the opportunity to examine each physiological system with respect to influences key to public health interest, e.g., age, race/ethnicity, environmental exposures, chronic disease, microbial disease, and lifestyle, including the protection afforded by healthy lifestyle factors.", "short_title": "Physiology for Public Health", "title": "Physiology for Public Health", "school": "PH", @@ -94271,7 +198774,7 @@ "13:00", "14:50", "CO47 106B - 47 College Street (CLP) 106B", - "https:\/\/map.yale.edu\/?id=1910#!m\/559997" + "https://map.yale.edu/?id=1910#!m/559997" ] ] }, @@ -94285,10 +198788,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91060\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91060/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -94325,7 +198856,7 @@ "13:00", "14:50", "LEPH 103 - Laboratory of EPH 103", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ] }, @@ -94337,10 +198868,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91065\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91065/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -94377,7 +198936,7 @@ "12:00", "12:50", "LEPH 101 - Laboratory of EPH 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ] }, @@ -94392,7 +198951,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -94433,7 +199020,7 @@ "15:00", "16:50", "LEPH 101 - Laboratory of EPH 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ] }, @@ -94445,10 +199032,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91074\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91074/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -94491,10 +199106,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91079\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91079/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -94531,7 +199174,7 @@ "13:00", "14:50", "LEPH 101 - Laboratory of EPH 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ] }, @@ -94545,10 +199188,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91290\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91290/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -94585,7 +199256,7 @@ "16:30", "18:20", "LEPH 115 - Laboratory of EPH 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ], "Tuesday": [ @@ -94593,7 +199264,7 @@ "13:00", "13:50", "LEPH 115 - Laboratory of EPH 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ] }, @@ -94601,17 +199272,45 @@ "areas": [], "flags": [ "PH: Climate Change and Health", - "PH: Global Health, Psychosocial\/Social and behavioral\/Anthropology" + "PH: Global Health, Psychosocial/Social and behavioral/Anthropology" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91083\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91083/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -94649,7 +199348,7 @@ "10:00", "11:50", "LEPH 115 - Laboratory of EPH 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ], "Wednesday": [ @@ -94657,7 +199356,7 @@ "15:00", "15:50", "CO47 6 - 47 College Street (CLP) 6", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ] }, @@ -94671,10 +199370,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91088\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91088/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -94711,7 +199438,7 @@ "8:00", "9:50", "BML 131 - Brady Memorial Laboratory 131", - "https:\/\/map.yale.edu\/?id=1910#!m\/560069" + "https://map.yale.edu/?id=1910#!m/560069" ] ] }, @@ -94725,10 +199452,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91091\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91091/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -94768,7 +199523,7 @@ "13:00", "14:50", "LEPH 101 - Laboratory of EPH 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ] }, @@ -94780,10 +199535,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91096\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91096/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -94821,7 +199604,7 @@ "13:00", "15:50", "KRN G01 - Kroon Hall G01", - "https:\/\/map.yale.edu\/?id=1910#!m\/559995" + "https://map.yale.edu/?id=1910#!m/559995" ] ] }, @@ -94833,10 +199616,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90922\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90922/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -94879,7 +199690,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -94922,7 +199761,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -94959,12 +199826,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "This course is required of all EHS Ph.D. students during their first academic year. The research rotations are in EHS laboratories that are able to accommodate students. Research rotations are available for both \"dry\" (i.e., statistical analysis) and \"wet\" (i.e., bench) laboratory research groups. The student meets with the EHS graduate faculty member at the beginning of the rotation for an explanation of the goals and expectations of a student in the laboratory. The student becomes familiar with the research models, approaches, and methods utilized by the research group through interactions with other laboratory\/research personnel and from laboratory manuscripts. The student is expected to spend at least fifteen hours per week working in the laboratory or research group and to present a rotation seminar at the end of the rotation period.", + "description": "This course is required of all EHS Ph.D. students during their first academic year. The research rotations are in EHS laboratories that are able to accommodate students. Research rotations are available for both \"dry\" (i.e., statistical analysis) and \"wet\" (i.e., bench) laboratory research groups. The student meets with the EHS graduate faculty member at the beginning of the rotation for an explanation of the goals and expectations of a student in the laboratory. The student becomes familiar with the research models, approaches, and methods utilized by the research group through interactions with other laboratory/research personnel and from laboratory manuscripts. The student is expected to spend at least fifteen hours per week working in the laboratory or research group and to present a rotation seminar at the end of the rotation period.", "short_title": "Research Rotation", "title": "Research Rotation", "school": "PH", @@ -95002,7 +199897,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -95039,7 +199962,7 @@ "8:20", "10:20", "WLH 113 - William L. Harkness Hall 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -95047,7 +199970,7 @@ "8:20", "10:20", "WLH 113 - William L. Harkness Hall 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -95059,10 +199982,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92747\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92747/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -95099,7 +200050,7 @@ "8:20", "10:20", "WLH 117 - William L. Harkness Hall 117", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -95107,7 +200058,7 @@ "8:20", "10:20", "WLH 117 - William L. Harkness Hall 117", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -95119,10 +200070,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92748\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92748/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -95159,7 +200138,7 @@ "18:00", "20:00", "DOW B-21 - Dow Hall B-21", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ], "Thursday": [ @@ -95167,7 +200146,7 @@ "18:00", "20:00", "DOW B-21 - Dow Hall B-21", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ] }, @@ -95182,7 +200161,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -95219,7 +200226,7 @@ "16:00", "18:00", "DOW B-21 - Dow Hall B-21", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ] }, @@ -95234,7 +200241,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -95271,7 +200306,7 @@ "16:00", "18:00", "DOW B-21 - Dow Hall B-21", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ] }, @@ -95286,7 +200321,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -95323,7 +200386,7 @@ "18:00", "20:00", "DOW B-21 - Dow Hall B-21", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ] }, @@ -95338,12 +200401,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "(Intermediate\/high intermediate) This pronunciation course is designed to provide advanced level students with the tools they need to communicate clearly in English. The course focuses on the suprasegmental features of pronunciation: prominence, rhythm, and intonation as well as the discrete sounds of the English language. Using a communicative and interactive approach, the course provides extensive speaking practice that allows students to build their fluency, accuracy, and speaking confidence.", + "description": "(Intermediate/high intermediate) This pronunciation course is designed to provide advanced level students with the tools they need to communicate clearly in English. The course focuses on the suprasegmental features of pronunciation: prominence, rhythm, and intonation as well as the discrete sounds of the English language. Using a communicative and interactive approach, the course provides extensive speaking practice that allows students to build their fluency, accuracy, and speaking confidence.", "short_title": "Pronunciation 1", "title": "Pronunciation 1", "school": "GS", @@ -95375,7 +200466,7 @@ "8:30", "10:30", "HLH17 05 - 17 Hillhouse Avenue 05", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Wednesday": [ @@ -95383,7 +200474,7 @@ "8:30", "10:30", "HLH17 05 - 17 Hillhouse Avenue 05", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -95395,10 +200486,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92746\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92746/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -95435,7 +200554,7 @@ "16:00", "18:00", "DOW 100 - Dow Hall 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ], "Wednesday": [ @@ -95443,7 +200562,7 @@ "16:00", "18:00", "DOW 100 - Dow Hall 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ] }, @@ -95455,10 +200574,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92751\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92751/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -95495,7 +200642,7 @@ "18:00", "20:00", "DOW 112 - Dow Hall 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ], "Wednesday": [ @@ -95503,7 +200650,7 @@ "18:00", "20:00", "DOW 112 - Dow Hall 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ] }, @@ -95515,10 +200662,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92751\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92751/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -95555,7 +200730,7 @@ "16:00", "18:00", "DOW 215 - Dow Hall 215", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ], "Wednesday": [ @@ -95563,7 +200738,7 @@ "16:00", "18:00", "DOW 215 - Dow Hall 215", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ] }, @@ -95575,10 +200750,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92753\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92753/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -95615,7 +200818,7 @@ "18:00", "20:00", "DOW 215 - Dow Hall 215", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ], "Wednesday": [ @@ -95623,7 +200826,7 @@ "18:00", "20:00", "DOW 215 - Dow Hall 215", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ] }, @@ -95635,10 +200838,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92753\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92753/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -95675,7 +200906,7 @@ "8:30", "10:30", "HLH17 101 - 17 Hillhouse Avenue 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Thursday": [ @@ -95683,7 +200914,7 @@ "8:30", "10:30", "HLH17 101 - 17 Hillhouse Avenue 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -95695,10 +200926,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92756\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92756/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -95735,7 +200994,7 @@ "17:00", "19:00", "DOW B-21 - Dow Hall B-21", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ] }, @@ -95750,7 +201009,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -95790,7 +201077,7 @@ "12:00", "12:50", "LEPH WINSL - Laboratory of EPH WINSL", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ] }, @@ -95802,10 +201089,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91113\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91113/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -95842,7 +201157,7 @@ "13:00", "14:50", "CO47 106A - 47 College Street (CLP) 106A", - "https:\/\/map.yale.edu\/?id=1910#!m\/559997" + "https://map.yale.edu/?id=1910#!m/559997" ] ] }, @@ -95856,10 +201171,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91116\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91116/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -95900,7 +201243,7 @@ "15:00", "16:50", "LEPH 101 - Laboratory of EPH 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ] }, @@ -95914,10 +201257,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91074\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91074/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -95954,7 +201325,7 @@ "10:00", "11:50", "HOPE 216 - Hope 216", - "https:\/\/map.yale.edu\/?id=1910#!m\/560131" + "https://map.yale.edu/?id=1910#!m/560131" ] ] }, @@ -95968,10 +201339,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91119\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91119/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -96008,7 +201407,7 @@ "15:00", "16:50", "LEPH WINSL - Laboratory of EPH WINSL", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ] }, @@ -96022,10 +201421,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91123\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91123/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -96067,15 +201494,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91126\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91126/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "Malaria, tuberculosis, and HIV account for more than five million deaths worldwide each year. This course provides a deep foundation for understanding these pathogens and explores the public health issues that surround these infectious diseases in resource-limited settings. Emphasis is placed on issues in Africa, but contrasts for each disease are provided in the broader developing world. The course is divided into three sections, each focusing in depth on the individual infectious disease as well as discussions of interactions among the three diseases. The sections consist of three to four lectures each on the biology, individual consequences, and community\/public health impact of each infectious disease. Discussion of ongoing, field-based research projects involving the diseases is led by relevant faculty (research into practice). The course culminates with a critical discussion of major public health programmatic efforts to tackle these diseases, such as those of PEPFAR, the Bill & Melinda Gates Foundation, the Global Fund, and the Stop TB Partnership.", + "description": "Malaria, tuberculosis, and HIV account for more than five million deaths worldwide each year. This course provides a deep foundation for understanding these pathogens and explores the public health issues that surround these infectious diseases in resource-limited settings. Emphasis is placed on issues in Africa, but contrasts for each disease are provided in the broader developing world. The course is divided into three sections, each focusing in depth on the individual infectious disease as well as discussions of interactions among the three diseases. The sections consist of three to four lectures each on the biology, individual consequences, and community/public health impact of each infectious disease. Discussion of ongoing, field-based research projects involving the diseases is led by relevant faculty (research into practice). The course culminates with a critical discussion of major public health programmatic efforts to tackle these diseases, such as those of PEPFAR, the Bill & Melinda Gates Foundation, the Global Fund, and the Stop TB Partnership.", "short_title": "Tackling the Big Three: Malar...", "title": "Tackling the Big Three: Malaria, TB, and HIV in Resource-Limited Settings", "school": "PH", @@ -96108,7 +201563,7 @@ "10:00", "11:50", "CO47 106B - 47 College Street (CLP) 106B", - "https:\/\/map.yale.edu\/?id=1910#!m\/559997" + "https://map.yale.edu/?id=1910#!m/559997" ] ] }, @@ -96122,10 +201577,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91129\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91129/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -96163,14 +201646,14 @@ "10:00", "11:50", "CO47 106A - 47 College Street (CLP) 106A", - "https:\/\/map.yale.edu\/?id=1910#!m\/559997" + "https://map.yale.edu/?id=1910#!m/559997" ] ] }, "skills": [], "areas": [], "flags": [ - "PH: Global Health, Development\/Political Economy", + "PH: Global Health, Development/Political Economy", "PH: Public Health Modeling" ], "regnotes": "", @@ -96178,14 +201661,42 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91132\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91132/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", - "requirements": "Permission of the instructors required. The class is designed for students who are also taking, or have taken, EMD 596\/SBS 596. In addition to listing this course among experiential course selections, non-Law students should submit a CV and a statement of interest by 4:30 pm on August 12. This course meets according to the Law School calendar and may establish special sessions and makeup sessions to accommodate any difference between schedules on the main campus and in the Law School.", + "requirements": "Permission of the instructors required. The class is designed for students who are also taking, or have taken, EMD 596/SBS 596. In addition to listing this course among experiential course selections, non-Law students should submit a CV and a statement of interest by 4:30 pm on August 12. This course meets according to the Law School calendar and may establish special sessions and makeup sessions to accommodate any difference between schedules on the main campus and in the Law School.", "description": "This is an experiential learning course focused on domestic and transnational health justice work. Health justice work focuses on health equity and is committed to addressing the fundamental social causes of disease. It also emphases power-building and political economy, instead of viewing health as a technocratic field where issues are resolved through application of expertise alone. Students work on projects supervised by faculty and in collaboration with outside partners. Projects change according to the needs of our partners and are generally determined at the beginning of each term. Credits vary according to the time commitment required by the projects. The course is designed for public health and law students, but other students may enroll where appropriate given project needs.", "short_title": "Health Justice Practicum", "title": "Health Justice Practicum", @@ -96231,10 +201742,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91868\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91868/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -96271,7 +201810,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -96314,7 +201881,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -96357,7 +201952,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -96396,7 +202019,7 @@ "11:35", "12:50", "PH 312 - Phelps Hall 312", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ], "Wednesday": [ @@ -96404,7 +202027,7 @@ "11:35", "12:50", "PH 312 - Phelps Hall 312", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -96416,10 +202039,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89336\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89336/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -96474,10 +202125,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88475\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88475/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -96518,7 +202197,7 @@ "13:30", "15:20", "HQ 213 - Humanities Quadrangle 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -96530,10 +202209,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88710\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88710/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -96571,7 +202278,7 @@ "13:30", "15:20", "HQ 309 - Humanities Quadrangle 309", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -96583,15 +202290,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88297\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88297/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "What is the nature of the \"early modern\" as a temporal, conceptual, and socio-political category in humanistic study? How did it emerge as an interdisciplinary framework and how does it relate to concepts of the medieval, the Renaissance, classicism, and modernity? Can \"early modern\" be usefully deployed to speak of non-Western geographic and political formations, and if not, why?\u00a0Broadly focused on the historical period between 1350 and 1800, this seminar considers the many transitions to modernity across the globe and explores how scholars across the disciplines have crafted narratives to highlight its significance. Taken over an entire academic year, as two half-credit courses, the workshop provides a historiographic, theoretical, and methodological introduction to key questions in the field through a dynamic engagement with a series of research presentations by scholars within and beyond Yale (must be taken concurrently with EMST 800a\/801b). Required for students in the combined degree in Early Modern Studies and meets on alternating weeks.", + "description": "What is the nature of the \"early modern\" as a temporal, conceptual, and socio-political category in humanistic study? How did it emerge as an interdisciplinary framework and how does it relate to concepts of the medieval, the Renaissance, classicism, and modernity? Can \"early modern\" be usefully deployed to speak of non-Western geographic and political formations, and if not, why?\u00a0Broadly focused on the historical period between 1350 and 1800, this seminar considers the many transitions to modernity across the globe and explores how scholars across the disciplines have crafted narratives to highlight its significance. Taken over an entire academic year, as two half-credit courses, the workshop provides a historiographic, theoretical, and methodological introduction to key questions in the field through a dynamic engagement with a series of research presentations by scholars within and beyond Yale (must be taken concurrently with EMST 800a/801b). Required for students in the combined degree in Early Modern Studies and meets on alternating weeks.", "short_title": "Workshop in Early Modern Studies", "title": "Workshop in Early Modern Studies", "school": "GS", @@ -96623,7 +202358,7 @@ "9:25", "11:15", "HQ 209 - Humanities Quadrangle 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -96635,10 +202370,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88463\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88463/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -96679,7 +202442,7 @@ "9:25", "11:15", "LORIA 358 - Loria Center 358", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -96691,10 +202454,101 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90560\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90560/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986592531204224, + 0.9988952875137329, + 0.9987701773643494, + 0.9988460540771484 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9935285449028015, + 0.9989171028137207, + 0.9989343285560608, + 0.9988424181938171 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.25, + "POSITIVE": 0.75 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989013671875, + 0.9989137649536133, + 0.9989191293716431, + 0.9988372921943665 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 0.9166666666666666, + "final_counts": { + "POSITIVE": 11, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + } + } }, { "season_code": "202303", @@ -96732,7 +202586,7 @@ "13:30", "15:20", "CO493 103 - 493 College Street 103", - "https:\/\/map.yale.edu\/?id=1910#!m\/560001" + "https://map.yale.edu/?id=1910#!m/560001" ] ] }, @@ -96744,10 +202598,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88778\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88778/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -96786,7 +202668,7 @@ "13:30", "15:20", "LORIA 360 - Loria Center 360", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -96800,15 +202682,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91543\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91543/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "This year-long colloquium, taken as two half-credit courses, must be taken concurrently with EMST 700a\/701b. Students attend regular research presentations each semester by scholars within and beyond Yale, which will complement EMST 700. To be taken SAT\/UNSAT.", + "description": "This year-long colloquium, taken as two half-credit courses, must be taken concurrently with EMST 700a/701b. Students attend regular research presentations each semester by scholars within and beyond Yale, which will complement EMST 700. To be taken SAT/UNSAT.", "short_title": "Early Modern Colloquium", "title": "Early Modern Colloquium", "school": "GS", @@ -96843,10 +202753,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88468\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88468/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -96883,7 +202821,7 @@ "12:30", "14:15", "HQ 209 - Humanities Quadrangle 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -96895,10 +202833,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88473\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88473/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -96937,7 +202903,7 @@ "14:30", "15:45", "AKW 100 - Arthur K. Watson Hall 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560119" + "https://map.yale.edu/?id=1910#!m/560119" ] ], "Wednesday": [ @@ -96945,7 +202911,7 @@ "14:30", "15:45", "AKW 100 - Arthur K. Watson Hall 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560119" + "https://map.yale.edu/?id=1910#!m/560119" ] ] }, @@ -96962,10 +202928,97 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89886\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89886/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986398816108704, + 0.9933298230171204, + 0.9988352656364441 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9980518817901611, + 0.9994916915893555, + 0.9989367127418518 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 1 + }, + "sentiment_distribution": { + "NEGATIVE": 0.6666666666666666, + "POSITIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987200498580933, + 0.9951274394989014, + 0.9995146989822388, + 0.9989118576049805 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 0.7, + "final_counts": { + "POSITIVE": 7, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.7, + "NEGATIVE": 0.3 + } + } }, { "season_code": "202303", @@ -97004,7 +203057,7 @@ "11:35", "12:50", "AKW 100 - Arthur K. Watson Hall 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560119" + "https://map.yale.edu/?id=1910#!m/560119" ] ], "Thursday": [ @@ -97012,7 +203065,7 @@ "11:35", "12:50", "AKW 100 - Arthur K. Watson Hall 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560119" + "https://map.yale.edu/?id=1910#!m/560119" ] ] }, @@ -97029,15 +203082,118 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89887\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89887/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987208247184753, + 0.9986454844474792, + 0.9988088607788086, + 0.9988095760345459, + 0.9982357025146484, + 0.9987908005714417 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987173080444336, + 0.9984772801399231, + 0.9923027753829956, + 0.9988440275192261, + 0.9967209696769714, + 0.9891902208328247 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985961318016052, + 0.9976112842559814, + 0.99883633852005, + 0.997117280960083, + 0.9987201690673828, + 0.9985390901565552 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 0.9444444444444444, + "final_counts": { + "POSITIVE": 17, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9444444444444444, + "NEGATIVE": 0.05555555555555555 + } + } }, { "season_code": "202303", "requirements": "Priority to first-year students.", - "description": "An introduction to engineering, innovation, and design process. Principles of material selection, stoichiometry, modeling, data acquisition, sensors, rapid prototyping, and elementary microcontroller programming. Types of engineering and the roles engineers play in a wide range of organizations. Lectures are interspersed with practical exercises. Students work in small teams on an engineering\/innovation project at the end of the term.", + "description": "An introduction to engineering, innovation, and design process. Principles of material selection, stoichiometry, modeling, data acquisition, sensors, rapid prototyping, and elementary microcontroller programming. Types of engineering and the roles engineers play in a wide range of organizations. Lectures are interspersed with practical exercises. Students work in small teams on an engineering/innovation project at the end of the term.", "short_title": "Introduction to Engineering, ...", "title": "Introduction to Engineering, Innovation, and Design", "school": "YC", @@ -97072,7 +203228,7 @@ "9:25", "10:15", "HLH17 115 - 17 Hillhouse Avenue 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Wednesday": [ @@ -97080,7 +203236,7 @@ "9:25", "10:15", "HLH17 115 - 17 Hillhouse Avenue 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -97092,10 +203248,105 @@ "classnotes": "", "final_exam": "Thursday, December 14, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88478\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88478/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9968782663345337, + 0.9989049434661865, + 0.9988831877708435, + 0.9945808053016663, + 0.9977643489837646 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9986541271209717, + 0.9989211559295654, + 0.9934824109077454, + 0.999129593372345, + 0.9994818568229675 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.4, + "NEGATIVE": 0.6 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.6 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9957526922225952, + 0.998909592628479, + 0.9988960027694702, + 0.9915008544921875 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 0.7857142857142857, + "final_counts": { + "POSITIVE": 11, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.7857142857142857, + "NEGATIVE": 0.21428571428571427 + } + } }, { "season_code": "202303", @@ -97134,7 +203385,7 @@ "11:35", "12:50", "WTS A51 - Watson Center 60 Sachem Street A51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -97142,7 +203393,7 @@ "11:35", "12:50", "WTS A51 - Watson Center 60 Sachem Street A51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -97161,10 +203412,195 @@ "classnotes": "", "final_exam": "Friday, December 15, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88134\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88134/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984906911849976, + 0.9988023042678833, + 0.9981614947319031, + 0.9987499713897705, + 0.9987645149230957, + 0.9960381984710693, + 0.998710036277771, + 0.9987433552742004, + 0.9988502264022827, + 0.9987247586250305, + 0.998808741569519, + 0.9985186457633972, + 0.9989388585090637, + 0.9987329840660095, + 0.9987537860870361, + 0.9968116879463196, + 0.9988235831260681, + 0.9986103773117065, + 0.9986758828163147, + 0.9928240776062012 + ], + "sentiment_counts": { + "POSITIVE": 18, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989544153213501, + 0.9711685180664062, + 0.9987927675247192, + 0.98897385597229, + 0.9988085031509399, + 0.9983774423599243, + 0.9984245300292969, + 0.9988868832588196, + 0.9988409876823425, + 0.999488353729248, + 0.99888676404953, + 0.9847906231880188, + 0.9983874559402466, + 0.9988617897033691, + 0.9814188480377197, + 0.9985557198524475, + 0.9988850951194763, + 0.9920280575752258, + 0.9687473177909851 + ], + "sentiment_counts": { + "NEGATIVE": 7, + "POSITIVE": 12 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3684210526315789, + "POSITIVE": 0.631578947368421 + }, + "sentiment_overall": [ + "POSITIVE", + 0.631578947368421 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989383816719055, + 0.995375394821167, + 0.9988008737564087, + 0.9976392984390259, + 0.998902440071106, + 0.998846173286438, + 0.9989263415336609, + 0.9989063739776611, + 0.9988977909088135, + 0.9964461922645569, + 0.9988909363746643, + 0.9988394379615784, + 0.9987695813179016, + 0.9988173842430115, + 0.9994552731513977, + 0.9989340901374817, + 0.9972171783447266, + 0.9989266991615295, + 0.9988667964935303, + 0.9924772381782532 + ], + "sentiment_counts": { + "POSITIVE": 16, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 46, + "final_proportion": 0.7796610169491526, + "final_counts": { + "POSITIVE": 46, + "NEGATIVE": 13 + }, + "final_distribution": { + "POSITIVE": 0.7796610169491526, + "NEGATIVE": 0.22033898305084745 + } + } }, { "season_code": "202303", @@ -97201,7 +203637,7 @@ "19:30", "20:45", "HLH17 111 - 17 Hillhouse Avenue 111", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Thursday": [ @@ -97209,7 +203645,7 @@ "19:30", "20:45", "HLH17 111 - 17 Hillhouse Avenue 111", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -97226,10 +203662,111 @@ "classnotes": "", "final_exam": "Monday, December 18, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88482\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88482/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.998105525970459, + 0.9982932209968567, + 0.998187243938446, + 0.9941807389259338, + 0.9980711340904236, + 0.9962344765663147 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989364743232727, + 0.9989125728607178, + 0.9915789365768433, + 0.9989379048347473, + 0.9995008707046509 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.6, + "NEGATIVE": 0.4 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989380240440369, + 0.9988177418708801, + 0.9988914132118225, + 0.9978817105293274, + 0.9989272952079773, + 0.9995087385177612 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 0.7647058823529411, + "final_counts": { + "POSITIVE": 13, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.7647058823529411, + "NEGATIVE": 0.23529411764705882 + } + } }, { "season_code": "202303", @@ -97268,7 +203805,7 @@ "11:35", "12:50", "BASS 305 - Bass Center 305", - "https:\/\/map.yale.edu\/?id=1910#!m\/560102" + "https://map.yale.edu/?id=1910#!m/560102" ] ], "Wednesday": [ @@ -97276,7 +203813,7 @@ "11:35", "12:50", "BASS 305 - Bass Center 305", - "https:\/\/map.yale.edu\/?id=1910#!m\/560102" + "https://map.yale.edu/?id=1910#!m/560102" ] ] }, @@ -97292,10 +203829,171 @@ "classnotes": "", "final_exam": "Sunday, December 17, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88771\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88771/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998803973197937, + 0.9987347722053528, + 0.9963492155075073, + 0.9985039234161377, + 0.9985628724098206, + 0.998569130897522, + 0.9986530542373657, + 0.9987058639526367, + 0.9987446069717407, + 0.9935930371284485, + 0.9986722469329834, + 0.9987887740135193, + 0.998757004737854, + 0.9988603591918945 + ], + "sentiment_counts": { + "POSITIVE": 14, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9980083107948303, + 0.9986263513565063, + 0.999474823474884, + 0.9987298846244812, + 0.9967061877250671, + 0.9987862706184387, + 0.998763918876648, + 0.9989194869995117, + 0.9981575608253479, + 0.9980962872505188, + 0.9981945157051086, + 0.9989274144172668, + 0.9962016940116882, + 0.9984846711158752, + 0.9991961121559143, + 0.9988729357719421 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.8125, + "NEGATIVE": 0.1875 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8125 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985347986221313, + 0.9985034465789795, + 0.9986324906349182, + 0.9974417686462402, + 0.9989259839057922, + 0.9982158541679382, + 0.9954541921615601, + 0.9988993406295776, + 0.9965245127677917, + 0.9989294409751892, + 0.9988246560096741, + 0.9988030195236206, + 0.9988880753517151, + 0.9947750568389893, + 0.9976739287376404, + 0.9994606375694275, + 0.9984204769134521 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 14 + }, + "sentiment_distribution": { + "NEGATIVE": 0.17647058823529413, + "POSITIVE": 0.8235294117647058 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8235294117647058 + ] + }, + "final_label": "POSITIVE", + "final_count": 41, + "final_proportion": 0.8723404255319149, + "final_counts": { + "POSITIVE": 41, + "NEGATIVE": 6 + }, + "final_distribution": { + "POSITIVE": 0.8723404255319149, + "NEGATIVE": 0.1276595744680851 + } + } }, { "season_code": "202303", @@ -97333,7 +204031,7 @@ "13:00", "14:15", "ML 211 - Mason Laboratory 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ], "Wednesday": [ @@ -97341,7 +204039,7 @@ "13:00", "14:15", "ML 211 - Mason Laboratory 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ] }, @@ -97358,10 +204056,267 @@ "classnotes": "", "final_exam": "Wednesday, December 20, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88772\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88772/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981690645217896, + 0.9987472295761108, + 0.9987668991088867, + 0.998818576335907, + 0.9988495111465454, + 0.997275173664093, + 0.9987899661064148, + 0.997090220451355, + 0.9989247918128967, + 0.9784221649169922, + 0.9989253878593445, + 0.9986560344696045, + 0.9987531900405884, + 0.986297607421875, + 0.9912986159324646, + 0.9983521699905396, + 0.9970728158950806, + 0.9986922144889832, + 0.9985724687576294, + 0.9982007741928101, + 0.998608410358429, + 0.9986385703086853, + 0.9988858103752136, + 0.998916745185852, + 0.997649610042572 + ], + "sentiment_counts": { + "POSITIVE": 25, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988573789596558, + 0.998788058757782, + 0.9989294409751892, + 0.9994732737541199, + 0.9987879395484924, + 0.9989147186279297, + 0.9989355206489563, + 0.9987949132919312, + 0.9989222288131714, + 0.9986520409584045, + 0.9988614320755005, + 0.9988706707954407, + 0.9989026784896851, + 0.9989317059516907, + 0.9984515905380249, + 0.9988382458686829, + 0.9984170198440552, + 0.9989380240440369, + 0.9988976716995239, + 0.9989332556724548, + 0.9976444840431213, + 0.9989219903945923, + 0.9989376664161682, + 0.998889148235321, + 0.9989235997200012, + 0.9990711212158203, + 0.998930037021637, + 0.9989287257194519, + 0.9986893534660339, + 0.998918890953064, + 0.9967558979988098, + 0.9984676241874695, + 0.9987505674362183, + 0.9988909363746643 + ], + "sentiment_counts": { + "POSITIVE": 31, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.9117647058823529, + "NEGATIVE": 0.08823529411764706 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9117647058823529 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989073276519775, + 0.9980168342590332, + 0.9989277720451355, + 0.9984424710273743, + 0.998625636100769, + 0.9988402724266052, + 0.9987951517105103, + 0.9988994598388672, + 0.5030221939086914, + 0.9981922507286072, + 0.9988677501678467, + 0.9989018440246582, + 0.9988833069801331, + 0.9988716244697571, + 0.9994773268699646, + 0.9984058737754822, + 0.9988148212432861, + 0.998862624168396, + 0.9984946250915527, + 0.998878538608551, + 0.9963144659996033, + 0.994835376739502, + 0.9989325404167175, + 0.9989182949066162, + 0.9989327788352966, + 0.9989262223243713, + 0.9989097118377686, + 0.9989045858383179, + 0.9989336133003235, + 0.9989194869995117, + 0.9985528588294983, + 0.9989235997200012, + 0.9987350106239319, + 0.9985955357551575, + 0.9967658519744873, + 0.9930703043937683 + ], + "sentiment_counts": { + "POSITIVE": 34, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.9444444444444444, + "NEGATIVE": 0.05555555555555555 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9444444444444444 + ] + }, + "final_label": "POSITIVE", + "final_count": 90, + "final_proportion": 0.9473684210526315, + "final_counts": { + "POSITIVE": 90, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.9473684210526315, + "NEGATIVE": 0.05263157894736842 + } + } }, { "season_code": "202303", @@ -97398,7 +204353,7 @@ "11:35", "12:50", "BCT 107 - Becton Center 107", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ], "Thursday": [ @@ -97406,7 +204361,7 @@ "11:35", "12:50", "BCT 107 - Becton Center 107", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ] }, @@ -97420,14 +204375,109 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92616\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92616/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "Separate application required at: https:\/\/bit.ly\/ENAS403", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9978277087211609, + 0.9988607168197632, + 0.9988065958023071, + 0.9989264607429504, + 0.9989256262779236 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988666772842407, + 0.9989187717437744, + 0.9987986087799072, + 0.9988700747489929, + 0.9989303946495056 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986461997032166, + 0.9987875819206238, + 0.9987891316413879, + 0.9989056587219238, + 0.9989230036735535 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 15 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } + }, + { + "season_code": "202303", + "requirements": "Separate application required at: https://bit.ly/ENAS403", "description": "A survey of the origins, practice, and business models of venture capital with application to engineering science. Consideration of three major areas: the history and purpose of venture capital; the practical details of venture investing; and advanced topics on business models, technology ecosystems, and ethics. Particular exposure to principles of entrepreneurship, including intellectual property strategy, market validation, customer discovery, positioning, and capital formation.", "short_title": "Funding It: Innovation, Entre...", "title": "Funding It: Innovation, Entrepreneurship, and Venture Capital", @@ -97460,7 +204510,7 @@ "13:30", "15:20", "WLH 202 - William L. Harkness Hall 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -97469,17 +204519,116 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Interested students must submit the application found at this link: https:\/\/bit.ly\/ENAS403", + "classnotes": "Interested students must submit the application found at this link: https://bit.ly/ENAS403", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88487\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88487/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "Basic algebra and introductory calculus. Should not be taken by students who have already completed or are enrolled in AMTH 431\/S&DS 431 or a more advanced course in optimization, or S&DS 238 or S&DS 240 or a more advanced course in probability.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988679885864258, + 0.9988173842430115, + 0.9988681077957153, + 0.998698353767395 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989187717437744, + 0.9988646507263184, + 0.9989001750946045, + 0.9989340901374817, + 0.9988141059875488 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988375306129456, + 0.9982553124427795, + 0.9988823533058167, + 0.9983116388320923, + 0.9988164901733398, + 0.9984318614006042, + 0.9989225268363953, + 0.9987241625785828 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 17 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } + }, + { + "season_code": "202303", + "requirements": "Basic algebra and introductory calculus. Should not be taken by students who have already completed or are enrolled in AMTH 431/S&DS 431 or a more advanced course in optimization, or S&DS 238 or S&DS 240 or a more advanced course in probability.", "description": "Operations research (OR) is the science of decision making. Powerful software for formulating and solving OR models exists in the form of the Microsoft Excel spreadsheet package and its Solver Add-In. This class offers the opportunity to learn OR models in a class that emphasizes problem formulation, spreadsheet-based solution methods using Excel, and resulting insight. The actual mathematics of the various models employed are de-emphasized in favor of learning how to formulate and solve operations research problems. Models explored include linear programming, integer programming, network models, nonlinear programs, probability models, Markov chains, inventory models, and queueing models.", "short_title": "Introduction to Operations Re...", "title": "Introduction to Operations Research", @@ -97514,11 +204663,39 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", - "requirements": "Prerequisites: Math through first order differential equations, PHYS 180\/181, CHEM 161, BIOL 101\/102,\u00a0BENG\u00a0249 or other experience with scientific software like MATLAB\u00ae,\u00a0BENG 350 and BENG 410 (both of which can be taken at the same time as this course)", + "requirements": "Prerequisites: Math through first order differential equations, PHYS 180/181, CHEM 161, BIOL 101/102,\u00a0BENG\u00a0249 or other experience with scientific software like MATLAB\u00ae,\u00a0BENG 350 and BENG 410 (both of which can be taken at the same time as this course)", "description": "Detecting, measuring, and quantifying the structural and functional properties of tissue is of critical importance in both biomedical research and medicine. This course focuses on the practicalities of generating quantitative results from raw bioimaging and biosensing data to complement other courses focus on the theoretical foundations which enable the collection of these data. Participants in the course work with real, cutting-edge data collected here at Yale. They become familiar with an array of current software tools, denoising and processing techniques, and quantitative analysis methods that are used in the pursuit of extracting meaningful information from imaging data.\u00a0The subject matter of this course ranges from bioenergetics, metabolic pathways, molecular processes, brain receptor kinetics, protein expression and interactions to wide spread functional networks, long-range connectivity, and organ-level brain organization. The course provides a unique hands-on experience with processing and analyzing in vitro and in vivo bioimaging and biosensing data that is relevant to current research topics. The specific imaging modes which are covered include\u00a0in vivo\u00a0magnetic resonance spectroscopy (MRS) and spectroscopic imaging (MRSI), functional, structural, and molecular imaging (MRI), wide-field fluorescent optical imaging, and positron emission tomography (PET). The course provides the necessary background in biochemistry, bioenergetics, and biophysics for students to motivate the image manipulations which they learn to perform.", "short_title": "Practical Applications of Bio...", "title": "Practical Applications of Bioimaging and Biosensing", @@ -97559,7 +204736,7 @@ "13:00", "14:15", "PH 207 - Phelps Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -97573,10 +204750,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89940\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89940/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -97615,7 +204820,7 @@ "9:00", "10:15", "DL 220 - Dunham Laboratory 220", - "https:\/\/map.yale.edu\/?id=1910#!m\/560005" + "https://map.yale.edu/?id=1910#!m/560005" ] ], "Wednesday": [ @@ -97623,7 +204828,7 @@ "9:00", "10:15", "DL 220 - Dunham Laboratory 220", - "https:\/\/map.yale.edu\/?id=1910#!m\/560005" + "https://map.yale.edu/?id=1910#!m/560005" ] ] }, @@ -97640,15 +204845,118 @@ "classnotes": "", "final_exam": "Thursday, December 14, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88492\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88492/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9980227947235107, + 0.9977900981903076, + 0.9985235333442688, + 0.9984800219535828, + 0.9987670183181763, + 0.9988449811935425 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989159107208252, + 0.9989302754402161, + 0.9989073276519775, + 0.9987850785255432, + 0.998891294002533, + 0.998920202255249 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.997117280960083, + 0.9988473653793335, + 0.9989357590675354, + 0.9989168643951416, + 0.9988254904747009, + 0.9988704323768616, + 0.9989297986030579 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 19 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", "requirements": "Prerequisite: MENG 361.", - "description": "This course draws inspiration from nature and focuses on utilizing the fundamental concepts of fluid mechanics and soft matter physics to explain these phenomena. We study a broad range of problems related to i) nutrient transport in plants, slime molds, and fungi and the adaptation of their networks in dynamic environments, ii) collective behavior and chemotaxis of swimming microorganisms, and iii) pattern formation in nature, e.g. icicles, mud cracks, salt polygons, dendritic crystals, and Turing patterns. We also discuss how our understanding of these problems could be used to develop sustainable solutions for the society, e.g. designing synthetic trees to convert CO2 to oxygen, developing micro\/nano robots for biomedical applications, and utilizing pattern formation and self-assembly to make new materials.", + "description": "This course draws inspiration from nature and focuses on utilizing the fundamental concepts of fluid mechanics and soft matter physics to explain these phenomena. We study a broad range of problems related to i) nutrient transport in plants, slime molds, and fungi and the adaptation of their networks in dynamic environments, ii) collective behavior and chemotaxis of swimming microorganisms, and iii) pattern formation in nature, e.g. icicles, mud cracks, salt polygons, dendritic crystals, and Turing patterns. We also discuss how our understanding of these problems could be used to develop sustainable solutions for the society, e.g. designing synthetic trees to convert CO2 to oxygen, developing micro/nano robots for biomedical applications, and utilizing pattern formation and self-assembly to make new materials.", "short_title": "Fluid Mech of Natural Phenom:...", "title": "Fluid Mech of Natural Phenom: Fluid Mechanics of Natural Phe", "school": "YC", @@ -97677,15 +204985,43 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90549\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/90549/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "Prerequisite: MENG 361.", - "description": "This course draws inspiration from nature and focuses on utilizing the fundamental concepts of fluid mechanics and soft matter physics to explain these phenomena. We study a broad range of problems related to i) nutrient transport in plants, slime molds, and fungi and the adaptation of their networks in dynamic environments, ii) collective behavior and chemotaxis of swimming microorganisms, and iii) pattern formation in nature, e.g. icicles, mud cracks, salt polygons, dendritic crystals, and Turing patterns. We also discuss how our understanding of these problems could be used to develop sustainable solutions for the society, e.g. designing synthetic trees to convert CO2 to oxygen, developing micro\/nano robots for biomedical applications, and utilizing pattern formation and self-assembly to make new materials.", + "description": "This course draws inspiration from nature and focuses on utilizing the fundamental concepts of fluid mechanics and soft matter physics to explain these phenomena. We study a broad range of problems related to i) nutrient transport in plants, slime molds, and fungi and the adaptation of their networks in dynamic environments, ii) collective behavior and chemotaxis of swimming microorganisms, and iii) pattern formation in nature, e.g. icicles, mud cracks, salt polygons, dendritic crystals, and Turing patterns. We also discuss how our understanding of these problems could be used to develop sustainable solutions for the society, e.g. designing synthetic trees to convert CO2 to oxygen, developing micro/nano robots for biomedical applications, and utilizing pattern formation and self-assembly to make new materials.", "short_title": "Fluid Mech of Natural Phenom:...", "title": "Fluid Mech of Natural Phenom: Fluid Mechanics of Natural Phe", "school": "YC", @@ -97717,12 +205053,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "Prerequisite: MENG 361.", - "description": "This course draws inspiration from nature and focuses on utilizing the fundamental concepts of fluid mechanics and soft matter physics to explain these phenomena. We study a broad range of problems related to i) nutrient transport in plants, slime molds, and fungi and the adaptation of their networks in dynamic environments, ii) collective behavior and chemotaxis of swimming microorganisms, and iii) pattern formation in nature, e.g. icicles, mud cracks, salt polygons, dendritic crystals, and Turing patterns. We also discuss how our understanding of these problems could be used to develop sustainable solutions for the society, e.g. designing synthetic trees to convert CO2 to oxygen, developing micro\/nano robots for biomedical applications, and utilizing pattern formation and self-assembly to make new materials.", + "description": "This course draws inspiration from nature and focuses on utilizing the fundamental concepts of fluid mechanics and soft matter physics to explain these phenomena. We study a broad range of problems related to i) nutrient transport in plants, slime molds, and fungi and the adaptation of their networks in dynamic environments, ii) collective behavior and chemotaxis of swimming microorganisms, and iii) pattern formation in nature, e.g. icicles, mud cracks, salt polygons, dendritic crystals, and Turing patterns. We also discuss how our understanding of these problems could be used to develop sustainable solutions for the society, e.g. designing synthetic trees to convert CO2 to oxygen, developing micro/nano robots for biomedical applications, and utilizing pattern formation and self-assembly to make new materials.", "short_title": "Fluid Mechanics of Natural Ph...", "title": "Fluid Mechanics of Natural Phenomena", "school": "YC", @@ -97756,7 +205120,7 @@ "11:35", "12:50", "ML 104 - Mason Laboratory 104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ], "Wednesday": [ @@ -97764,7 +205128,7 @@ "11:35", "12:50", "ML 104 - Mason Laboratory 104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ] }, @@ -97778,10 +205142,111 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90549\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90549/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998904824256897, + 0.997648298740387, + 0.9989080429077148, + 0.9978927969932556, + 0.998863697052002, + 0.9987475872039795 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989355206489563, + 0.9988229870796204, + 0.9988677501678467, + 0.9983508586883545, + 0.9985163807868958, + 0.9989185333251953 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989367127418518, + 0.9988546371459961, + 0.9989064931869507, + 0.9975513815879822, + 0.9979827404022217, + 0.9989163875579834 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 18 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -97825,7 +205290,7 @@ "13:00", "14:15", "BCT CO31 - Becton Center CO31", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ], "Wednesday": [ @@ -97833,7 +205298,7 @@ "13:00", "14:15", "BCT CO31 - Becton Center CO31", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ] }, @@ -97845,15 +205310,106 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88317\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88317/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9980180263519287, + 0.9897744655609131, + 0.9909698367118835 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998838484287262, + 0.998853325843811, + 0.9988652467727661, + 0.9919430017471313 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.997117280960083, + 0.9987917542457581, + 0.9987760186195374, + 0.9988858103752136, + 0.9995028972625732 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 0.9166666666666666, + "final_counts": { + "POSITIVE": 11, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + } + } }, { "season_code": "202303", "requirements": "Prerequisites: MATH 120 and MB&B 600 or equivalents, or permission of the instructors.", - "description": "The course offers an introduction to quantitative methods relevant to analysis and interpretation of biophysical and biochemical data. Topics covered include statistical testing, data presentation, and error analysis; introduction to dynamical systems; analysis of large datasets; and Fourier analysis in signal\/image processing and macromolecular structural studies. The course also includes an introduction to basic programming skills and data analysis using MATLAB. Real data from research groups in MB&B are used for practice.", + "description": "The course offers an introduction to quantitative methods relevant to analysis and interpretation of biophysical and biochemical data. Topics covered include statistical testing, data presentation, and error analysis; introduction to dynamical systems; analysis of large datasets; and Fourier analysis in signal/image processing and macromolecular structural studies. The course also includes an introduction to basic programming skills and data analysis using MATLAB. Real data from research groups in MB&B are used for practice.", "short_title": "Quantitative Approaches in Bi...", "title": "Quantitative Approaches in Biophysics and Biochemistry", "school": "GS", @@ -97890,7 +205446,7 @@ "9:00", "10:15", "BASS 405 - Bass Center 405", - "https:\/\/map.yale.edu\/?id=1910#!m\/560102" + "https://map.yale.edu/?id=1910#!m/560102" ] ], "Thursday": [ @@ -97898,7 +205454,7 @@ "9:00", "10:15", "BASS 405 - Bass Center 405", - "https:\/\/map.yale.edu\/?id=1910#!m\/560102" + "https://map.yale.edu/?id=1910#!m/560102" ] ] }, @@ -97910,10 +205466,151 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89370\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89370/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986211061477661, + 0.9979197382926941, + 0.9974398612976074, + 0.9965272545814514, + 0.9986338019371033, + 0.9984960556030273, + 0.9987004995346069, + 0.9988278746604919, + 0.9871156215667725, + 0.9861375689506531, + 0.9986512064933777, + 0.9986913800239563 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.998908519744873, + 0.9995070695877075, + 0.9992726445198059, + 0.9989141225814819, + 0.9989199638366699, + 0.9988821148872375, + 0.998176097869873, + 0.998900294303894, + 0.9991794228553772, + 0.9991742968559265, + 0.9987002611160278, + 0.9987385869026184, + 0.9994890689849854 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 5 + }, + "sentiment_distribution": { + "POSITIVE": 0.6153846153846154, + "NEGATIVE": 0.38461538461538464 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6153846153846154 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988873600959778, + 0.9986721277236938, + 0.9988164901733398, + 0.9989210367202759, + 0.9981752634048462, + 0.9989155530929565, + 0.9988371729850769, + 0.9988906979560852, + 0.9995007514953613, + 0.9961637258529663, + 0.9995008707046509, + 0.9904946088790894 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 5 + }, + "sentiment_distribution": { + "POSITIVE": 0.5833333333333334, + "NEGATIVE": 0.4166666666666667 + }, + "sentiment_overall": [ + "POSITIVE", + 0.5833333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 27, + "final_proportion": 0.7297297297297297, + "final_counts": { + "POSITIVE": 27, + "NEGATIVE": 10 + }, + "final_distribution": { + "POSITIVE": 0.7297297297297297, + "NEGATIVE": 0.2702702702702703 + } + } }, { "season_code": "202303", @@ -97951,7 +205648,7 @@ "15:30", "17:20", "LOM 206 - Leet Oliver Memorial Hall 206", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ] }, @@ -97963,10 +205660,109 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88321\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88321/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986976385116577, + 0.99753737449646, + 0.9986910223960876, + 0.9987311959266663, + 0.995327353477478, + 0.9957432150840759 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9976624250411987, + 0.9989027976989746, + 0.9988775849342346, + 0.9988903403282166, + 0.9988693594932556, + 0.9988858103752136 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988420605659485, + 0.9988388419151306, + 0.9984643459320068, + 0.9987014532089233, + 0.9975998997688293 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 17 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -98009,15 +205805,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88754\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88754/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "This course is designed to give students an understanding of the healthcare legal landscape, medical imaging modalities, image acquisition and 3D model creation, surgical planning tools, computer navigation, and AR\/VR\/XR. The course is divided into three modules: (1) POC 3D Printing, (2) Introduction to Image Analysis and Image Processing, and (3) VR\/AR\/XR. Module one covers the basics of point of care 3D printing in medicine including medical image processing, 3D modeling, regulation, quality management, and printing validation. Module two introduces basics in medical imaging and analysis. Topics explored include PACS, DICOM, diagnostic imaging and analysis, metabolic imaging, image guided treatments, and clinical radiology. In module three, students explore use cases of extended reality (XR: augmented reality, virtual reality, mixed reality), play several XR experiences, and hear from experts in the field. This course is only open to graduate students enrolled in the M.S. in Personalized Medicine and Applied Engineering.", + "description": "This course is designed to give students an understanding of the healthcare legal landscape, medical imaging modalities, image acquisition and 3D model creation, surgical planning tools, computer navigation, and AR/VR/XR. The course is divided into three modules: (1) POC 3D Printing, (2) Introduction to Image Analysis and Image Processing, and (3) VR/AR/XR. Module one covers the basics of point of care 3D printing in medicine including medical image processing, 3D modeling, regulation, quality management, and printing validation. Module two introduces basics in medical imaging and analysis. Topics explored include PACS, DICOM, diagnostic imaging and analysis, metabolic imaging, image guided treatments, and clinical radiology. In module three, students explore use cases of extended reality (XR: augmented reality, virtual reality, mixed reality), play several XR experiences, and hear from experts in the field. This course is only open to graduate students enrolled in the M.S. in Personalized Medicine and Applied Engineering.", "short_title": "Personalized Medicine Seminar", "title": "Personalized Medicine Seminar", "school": "GS", @@ -98061,7 +205885,7 @@ "13:30", "15:20", "CO47 206A - 47 College Street (CLP) 206A", - "https:\/\/map.yale.edu\/?id=1910#!m\/559997" + "https://map.yale.edu/?id=1910#!m/559997" ] ] }, @@ -98073,15 +205897,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88755\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88755/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "This course incorporates an apprenticeship in the Yale Orthopaedics 3D Printing Lab or in a bioprinting lab within Biomedical Engineering or YSM assisting the in-house clinical engineer with the development and production of clinician requested patient specific 3D prints, custom surgical guides and molds.\u00a0The curriculum explores 3D printing technologies (pros\/cons, post processing requirements), FDA regulation, quality management, common 3D printer design and setup, preparing parts for the printer, printer maintenance and troubleshooting, post-processing, 3D printer validation.\u00a0Students have a bioprinting lab in which they 3D print tissues and learn about 4D printing and incorporation of biologics. This course is only open to graduate students enrolled in the M.S. in Personalized Medicine and Applied Engineering.", + "description": "This course incorporates an apprenticeship in the Yale Orthopaedics 3D Printing Lab or in a bioprinting lab within Biomedical Engineering or YSM assisting the in-house clinical engineer with the development and production of clinician requested patient specific 3D prints, custom surgical guides and molds.\u00a0The curriculum explores 3D printing technologies (pros/cons, post processing requirements), FDA regulation, quality management, common 3D printer design and setup, preparing parts for the printer, printer maintenance and troubleshooting, post-processing, 3D printer validation.\u00a0Students have a bioprinting lab in which they 3D print tissues and learn about 4D printing and incorporation of biologics. This course is only open to graduate students enrolled in the M.S. in Personalized Medicine and Applied Engineering.", "short_title": "Advanced Personalized Medicin...", "title": "Advanced Personalized Medicine Techniques", "school": "GS", @@ -98122,7 +205974,7 @@ "19:00", "20:50", "CO47 206A - 47 College Street (CLP) 206A", - "https:\/\/map.yale.edu\/?id=1910#!m\/559997" + "https://map.yale.edu/?id=1910#!m/559997" ] ] }, @@ -98134,15 +205986,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88756\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88756/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "Faculty-supervised individual projects with emphasis on research, laboratory, or theory. Students must define the scope of the proposed project with the faculty member who has agreed to act as supervisor and submit a thesis proposal for approval. Students have the option of working on 3D medical innovation projects with biomedical engineering companies, industry leaders of personalized medicine providing students with a year-long internship \/ \"internal interview\" with a biomedical technology company\u2019s engineering team. These projects may involve the student developing novel software, hardware, manufacturing validations, medical devices, surgical instruments, or 3D printing modalities. The class meets weekly to review topics such as IRB protocols, ethics and HIPAA, biostatistics, research design, scientific writing, and presentation skills. This course is open only to graduate students enrolled in the M.S. in Personalized Medicine and Applied Engineering.", + "description": "Faculty-supervised individual projects with emphasis on research, laboratory, or theory. Students must define the scope of the proposed project with the faculty member who has agreed to act as supervisor and submit a thesis proposal for approval. Students have the option of working on 3D medical innovation projects with biomedical engineering companies, industry leaders of personalized medicine providing students with a year-long internship / \"internal interview\" with a biomedical technology company\u2019s engineering team. These projects may involve the student developing novel software, hardware, manufacturing validations, medical devices, surgical instruments, or 3D printing modalities. The class meets weekly to review topics such as IRB protocols, ethics and HIPAA, biostatistics, research design, scientific writing, and presentation skills. This course is open only to graduate students enrolled in the M.S. in Personalized Medicine and Applied Engineering.", "short_title": "3D Personalized Medicine Mast...", "title": "3D Personalized Medicine Master\u2019s Research Thesis", "school": "GS", @@ -98174,7 +206054,7 @@ "14:00", "16:00", "CO47 206A - 47 College Street (CLP) 206A", - "https:\/\/map.yale.edu\/?id=1910#!m\/559997" + "https://map.yale.edu/?id=1910#!m/559997" ] ] }, @@ -98186,10 +206066,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88757\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88757/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -98229,7 +206137,7 @@ "13:00", "14:15", "HLH17 115 - 17 Hillhouse Avenue 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Thursday": [ @@ -98237,7 +206145,7 @@ "13:00", "14:15", "HLH17 115 - 17 Hillhouse Avenue 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -98249,10 +206157,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89265\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89265/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -98296,7 +206232,7 @@ "11:35", "12:50", "HLH17 03 - 17 Hillhouse Avenue 03", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Wednesday": [ @@ -98304,7 +206240,7 @@ "11:35", "12:50", "HLH17 03 - 17 Hillhouse Avenue 03", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -98316,10 +206252,93 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88325\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88325/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998680055141449, + 0.9851688146591187, + 0.9986096620559692 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994059801101685, + 0.9994997978210449, + 0.9987391829490662 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 1 + }, + "sentiment_distribution": { + "NEGATIVE": 0.6666666666666666, + "POSITIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9980016350746155, + 0.9988763928413391 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 1 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "final_label": "neutral", + "final_count": 0.5, + "final_proportion": 0.5, + "final_counts": { + "POSITIVE": 4, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + } + } }, { "season_code": "202303", @@ -98365,7 +206384,7 @@ "9:25", "10:15", "DAVIES AUD - Davies Auditorium, Becton Ctr AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ], "Wednesday": [ @@ -98373,7 +206392,7 @@ "9:25", "10:15", "DAVIES AUD - Davies Auditorium, Becton Ctr AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ], "Friday": [ @@ -98381,7 +206400,7 @@ "9:25", "10:15", "DAVIES AUD - Davies Auditorium, Becton Ctr AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ] }, @@ -98395,10 +206414,243 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88304\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88304/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989400506019592, + 0.9987356066703796, + 0.9988401532173157, + 0.9988483190536499, + 0.9987340569496155, + 0.9989243149757385, + 0.9981581568717957, + 0.9988138675689697, + 0.998855710029602, + 0.9988767504692078, + 0.997672975063324, + 0.9985867738723755, + 0.9987708926200867, + 0.9985735416412354, + 0.9977019429206848, + 0.9988190531730652, + 0.9987074136734009, + 0.9989060163497925, + 0.9975103139877319, + 0.9987026453018188, + 0.9986618757247925, + 0.9988909363746643, + 0.9978437423706055, + 0.9983353018760681, + 0.9985999464988708 + ], + "sentiment_counts": { + "POSITIVE": 25, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998848557472229, + 0.9993402361869812, + 0.9987609386444092, + 0.9989367127418518, + 0.9985036849975586, + 0.9989107847213745, + 0.9988788962364197, + 0.9987718462944031, + 0.9979021549224854, + 0.9987320303916931, + 0.998915433883667, + 0.9988909363746643, + 0.9995081424713135, + 0.9951971173286438, + 0.9987885355949402, + 0.9956823587417603, + 0.9983001351356506, + 0.9929627776145935, + 0.996518611907959, + 0.9988659620285034, + 0.9989122152328491, + 0.9994854927062988, + 0.9989089965820312, + 0.9989018440246582, + 0.9994179010391235, + 0.997342050075531, + 0.9988390803337097, + 0.9976304769515991, + 0.9986839890480042, + 0.9988480806350708 + ], + "sentiment_counts": { + "POSITIVE": 23, + "NEGATIVE": 7 + }, + "sentiment_distribution": { + "POSITIVE": 0.7666666666666667, + "NEGATIVE": 0.23333333333333334 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7666666666666667 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9943073391914368, + 0.9994959831237793, + 0.9987064599990845, + 0.9989296793937683, + 0.9986969828605652, + 0.9989004135131836, + 0.9988976716995239, + 0.9984064698219299, + 0.9987874627113342, + 0.9994966983795166, + 0.9988901019096375, + 0.9994984865188599, + 0.9989144802093506, + 0.9987828135490417, + 0.997117280960083, + 0.9971362352371216, + 0.9988127946853638, + 0.9988106489181519, + 0.9988019466400146, + 0.9968705773353577, + 0.9987626075744629, + 0.9989251494407654, + 0.9989131689071655, + 0.998771607875824, + 0.9962942004203796, + 0.9986621141433716, + 0.9647520780563354, + 0.9957173466682434 + ], + "sentiment_counts": { + "NEGATIVE": 7, + "POSITIVE": 21 + }, + "sentiment_distribution": { + "NEGATIVE": 0.25, + "POSITIVE": 0.75 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 69, + "final_proportion": 0.8313253012048193, + "final_counts": { + "POSITIVE": 69, + "NEGATIVE": 14 + }, + "final_distribution": { + "POSITIVE": 0.8313253012048193, + "NEGATIVE": 0.1686746987951807 + } + } }, { "season_code": "202303", @@ -98436,7 +206688,7 @@ "11:35", "12:50", "HLH17 03 - 17 Hillhouse Avenue 03", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Thursday": [ @@ -98444,7 +206696,7 @@ "11:35", "12:50", "HLH17 03 - 17 Hillhouse Avenue 03", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -98456,10 +206708,117 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88331\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88331/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998765230178833, + 0.9984782338142395, + 0.9879646301269531, + 0.9975425004959106, + 0.998648464679718, + 0.9961457252502441 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.998895525932312, + 0.9940738081932068, + 0.9981111288070679, + 0.9989359974861145, + 0.998446524143219, + 0.999504804611206 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.998863935470581, + 0.9902442693710327, + 0.9979193806648254, + 0.9988566637039185, + 0.9987976551055908, + 0.9988487958908081, + 0.9986647367477417, + 0.9957140684127808 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 0.85, + "final_counts": { + "POSITIVE": 17, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.85, + "NEGATIVE": 0.15 + } + } }, { "season_code": "202303", @@ -98498,7 +206857,7 @@ "9:00", "10:15", "SPL 57 - Sloane Physics Laboratory 57", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ], "Thursday": [ @@ -98506,7 +206865,7 @@ "9:00", "10:15", "SPL 57 - Sloane Physics Laboratory 57", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ] }, @@ -98518,14 +206877,141 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88307\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88307/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "Prerequisites: Math through first order differential equations, PHYS 180\/181, CHEM 161, BIOL 101\/102,\u00a0BENG\u00a0249 or other experience with scientific software like MATLAB,\u00a0BENG 350 and BENG 410 (both of which can be taken at the same time as this course)", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9980084300041199, + 0.9952059388160706, + 0.9987711310386658, + 0.9985912442207336, + 0.9986758828163147, + 0.9987612962722778, + 0.9986279010772705, + 0.9989132881164551, + 0.998666524887085 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987107515335083, + 0.9994276165962219, + 0.9985081553459167, + 0.998881995677948, + 0.9984063506126404, + 0.9987542629241943, + 0.9988656044006348, + 0.9989213943481445, + 0.9994737505912781, + 0.9981052875518799, + 0.9953397512435913 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.7272727272727273, + "NEGATIVE": 0.2727272727272727 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7272727272727273 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9976894855499268, + 0.9947992563247681, + 0.9987760186195374, + 0.9985904097557068, + 0.9985750913619995, + 0.998856782913208, + 0.9994845390319824, + 0.9989122152328491, + 0.9995036125183105, + 0.9850534796714783 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.7, + "NEGATIVE": 0.3 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7 + ] + }, + "final_label": "POSITIVE", + "final_count": 24, + "final_proportion": 0.8, + "final_counts": { + "POSITIVE": 24, + "NEGATIVE": 6 + }, + "final_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + } + } + }, + { + "season_code": "202303", + "requirements": "Prerequisites: Math through first order differential equations, PHYS 180/181, CHEM 161, BIOL 101/102,\u00a0BENG\u00a0249 or other experience with scientific software like MATLAB,\u00a0BENG 350 and BENG 410 (both of which can be taken at the same time as this course)", "description": "Detecting, measuring, and quantifying the structural and functional properties of tissue is of critical importance in both biomedical research and medicine. This course focuses on the practicalities of generating quantitative results from raw bioimaging and biosensing data to complement other courses focus on the theoretical foundations which enable the collection of these data. Participants in the course work with real, cutting-edge data collected here at Yale. They become familiar with an array of current software tools, denoising and processing techniques, and quantitative analysis methods that are used in the pursuit of extracting meaningful information from imaging data.\u00a0The subject matter of this course ranges from bioenergetics, metabolic pathways, molecular processes, brain receptor kinetics, protein expression and interactions to wide spread functional networks, long-range connectivity, and organ-level brain organization. The course provides a unique hands-on experience with processing and analyzing in vitro and in vivo bioimaging and biosensing data that is relevant to current research topics. The specific imaging modes which are covered include\u00a0in vivo\u00a0magnetic resonance spectroscopy (MRS) and spectroscopic imaging (MRSI), functional, structural, and molecular imaging (MRI), wide-field fluorescent optical imaging, and positron emission tomography (PET). The course provides the necessary background in biochemistry, bioenergetics, and biophysics for students to motivate the image manipulations which they learn to perform.", "short_title": "Practical Applications of Bio...", "title": "Practical Applications of Bioimaging and Biosensing", @@ -98566,7 +207052,7 @@ "13:00", "14:15", "PH 207 - Phelps Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -98578,10 +207064,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89940\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89940/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -98619,7 +207133,7 @@ "14:30", "15:45", "HLH17 115 - 17 Hillhouse Avenue 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Thursday": [ @@ -98627,7 +207141,7 @@ "14:30", "15:45", "HLH17 115 - 17 Hillhouse Avenue 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -98639,10 +207153,153 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88336\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88336/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9972953200340271, + 0.9985628724098206, + 0.9987183809280396, + 0.9985966086387634, + 0.9988521337509155, + 0.9986926913261414, + 0.9988006353378296, + 0.9987599849700928, + 0.9988366961479187, + 0.9803965091705322, + 0.9984556436538696 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9090909090909091 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987755417823792, + 0.9925625920295715, + 0.9988956451416016, + 0.9981335997581482, + 0.9985180497169495, + 0.998843789100647, + 0.9980113506317139, + 0.9987457990646362, + 0.9988111257553101, + 0.9995036125183105, + 0.9988495111465454, + 0.9986514449119568 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9969415068626404, + 0.9988873600959778, + 0.9988777041435242, + 0.9994924068450928, + 0.9987534284591675, + 0.9988927245140076, + 0.9984809756278992, + 0.8251410722732544, + 0.9981574416160583, + 0.9974549412727356, + 0.9989118576049805, + 0.9986857771873474, + 0.9987666606903076, + 0.9987686276435852, + 0.998847484588623 + ], + "sentiment_counts": { + "POSITIVE": 14, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9333333333333333, + "NEGATIVE": 0.06666666666666667 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9333333333333333 + ] + }, + "final_label": "POSITIVE", + "final_count": 34, + "final_proportion": 0.8947368421052632, + "final_counts": { + "POSITIVE": 34, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.8947368421052632, + "NEGATIVE": 0.10526315789473684 + } + } }, { "season_code": "202303", @@ -98684,7 +207341,7 @@ "14:30", "15:45", "WTS A51 - Watson Center 60 Sachem Street A51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -98692,7 +207349,7 @@ "14:30", "15:45", "WTS A51 - Watson Center 60 Sachem Street A51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -98704,10 +207361,133 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88172\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88172/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9980304837226868, + 0.9986047148704529, + 0.9162562489509583, + 0.9986104965209961, + 0.9976143836975098, + 0.998491644859314, + 0.9988740086555481, + 0.9988579750061035, + 0.9949612617492676 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989176988601685, + 0.9995079040527344, + 0.9989275336265564, + 0.9894932508468628, + 0.9986346364021301, + 0.998930037021637, + 0.9988192915916443, + 0.9995110034942627 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989182949066162, + 0.999414324760437, + 0.9994677901268005, + 0.9995068311691284, + 0.9987934827804565, + 0.9987847208976746, + 0.9989137649536133, + 0.9989270567893982, + 0.998902440071106, + 0.9983886480331421, + 0.9988535642623901 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.6363636363636364, + "NEGATIVE": 0.36363636363636365 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6363636363636364 + ] + }, + "final_label": "POSITIVE", + "final_count": 22, + "final_proportion": 0.7857142857142857, + "final_counts": { + "POSITIVE": 22, + "NEGATIVE": 6 + }, + "final_distribution": { + "POSITIVE": 0.7857142857142857, + "NEGATIVE": 0.21428571428571427 + } + } }, { "season_code": "202303", @@ -98744,7 +207524,7 @@ "16:00", "17:15", "BCT 508A - Becton Center 508A", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ], "Wednesday": [ @@ -98752,7 +207532,7 @@ "16:00", "17:15", "BCT 508A - Becton Center 508A", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ] }, @@ -98764,15 +207544,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92590\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92590/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "Aspects of computer-aided design and manufacture (CAD\/CAM). The computer\u2019s role in the mechanical design and manufacturing process; commercial tools for two- and three-dimensional drafting and assembly modeling; finite-element analysis software for modeling mechanical, thermal, and fluid systems.", + "description": "Aspects of computer-aided design and manufacture (CAD/CAM). The computer\u2019s role in the mechanical design and manufacturing process; commercial tools for two- and three-dimensional drafting and assembly modeling; finite-element analysis software for modeling mechanical, thermal, and fluid systems.", "short_title": "Computer-Aided Engineering", "title": "Computer-Aided Engineering", "school": "GS", @@ -98805,7 +207613,7 @@ "18:00", "19:15", "HLH17 111 - 17 Hillhouse Avenue 111", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Thursday": [ @@ -98813,7 +207621,7 @@ "18:00", "19:15", "HLH17 111 - 17 Hillhouse Avenue 111", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -98825,10 +207633,151 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88437\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88437/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9977865219116211, + 0.998738706111908, + 0.9986549615859985, + 0.999468982219696, + 0.9969555139541626, + 0.9987850785255432, + 0.9953248500823975, + 0.9981675148010254, + 0.9983589053153992, + 0.9985007047653198, + 0.9988182187080383, + 0.9983614087104797 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9166666666666666 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989338517189026, + 0.9980549812316895, + 0.9987107515335083, + 0.9994206428527832, + 0.998910665512085, + 0.9983294606208801, + 0.9989210367202759, + 0.995602011680603, + 0.9986373782157898, + 0.998836100101471, + 0.9980272650718689 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.6363636363636364, + "NEGATIVE": 0.36363636363636365 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6363636363636364 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989185333251953, + 0.9986827969551086, + 0.9987340569496155, + 0.9866887927055359, + 0.9988508224487305, + 0.9988948702812195, + 0.9988712668418884, + 0.9986787438392639, + 0.9988974332809448, + 0.9985710382461548, + 0.9959818124771118, + 0.9989252686500549, + 0.9994933605194092, + 0.9995121955871582 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "final_label": "POSITIVE", + "final_count": 30, + "final_proportion": 0.8108108108108109, + "final_counts": { + "POSITIVE": 30, + "NEGATIVE": 7 + }, + "final_distribution": { + "POSITIVE": 0.8108108108108109, + "NEGATIVE": 0.1891891891891892 + } + } }, { "season_code": "202303", @@ -98865,7 +207814,7 @@ "13:00", "14:15", "HLH17 03 - 17 Hillhouse Avenue 03", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Thursday": [ @@ -98873,7 +207822,7 @@ "13:00", "14:15", "HLH17 03 - 17 Hillhouse Avenue 03", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -98887,10 +207836,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88759\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88759/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -98928,7 +207905,7 @@ "13:00", "14:15", "WTS B31 - Watson Center 60 Sachem Street B31", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -98936,7 +207913,7 @@ "13:00", "14:15", "WTS B31 - Watson Center 60 Sachem Street B31", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -98948,10 +207925,91 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88760\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88760/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.995658278465271, + 0.9964227080345154, + 0.9988794922828674 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998923122882843, + 0.9983888864517212 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998380184173584, + 0.9986214637756348, + 0.9988856911659241 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 8, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 8 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -98989,7 +208047,7 @@ "14:30", "15:45", "ML 104 - Mason Laboratory 104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ], "Wednesday": [ @@ -98997,7 +208055,7 @@ "14:30", "15:45", "ML 104 - Mason Laboratory 104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ] }, @@ -99009,15 +208067,142 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88138\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88138/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985430240631104, + 0.9918023943901062, + 0.9988829493522644, + 0.9920275807380676, + 0.9988215565681458, + 0.9891701340675354, + 0.9988191723823547, + 0.9986979961395264, + 0.9986704587936401 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989206790924072, + 0.9989226460456848, + 0.9988677501678467, + 0.9988539218902588, + 0.9988883137702942, + 0.9994803071022034, + 0.9989338517189026, + 0.9988859295845032, + 0.9989122152328491, + 0.9988698363304138 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988501071929932, + 0.997117280960083, + 0.9989301562309265, + 0.9988414645195007, + 0.9989166259765625, + 0.9994953870773315, + 0.9989349246025085, + 0.997117280960083, + 0.9989134073257446, + 0.992523729801178, + 0.9988343119621277 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8181818181818182, + "NEGATIVE": 0.18181818181818182 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8181818181818182 + ] + }, + "final_label": "POSITIVE", + "final_count": 27, + "final_proportion": 0.9, + "final_counts": { + "POSITIVE": 27, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + } + } }, { "season_code": "202303", "requirements": "Prerequisites: Decision Analysis and Game Theory, Data Analysis and Statistics, or a demonstrated proficiency in quantitative methods.", - "description": "Building on earlier course work in quantitative analysis and statistics, Policy Modeling provides an operational framework for exploring the costs and benefits of public policy decisions. The techniques employed include \"back of the envelope\" probabilistic models, Markov processes, queuing theory, and linear\/integer programming. With an eye toward making better decisions, these techniques are applied to a number of important policy problems. In addition to lectures, assigned articles and text readings, and short problem sets, students are responsible for completing a take-home midterm exam and a number of cases. In some instances, it is possible to take a real problem from formulation to solution, and compare the student's own analysis to what actually happened.", + "description": "Building on earlier course work in quantitative analysis and statistics, Policy Modeling provides an operational framework for exploring the costs and benefits of public policy decisions. The techniques employed include \"back of the envelope\" probabilistic models, Markov processes, queuing theory, and linear/integer programming. With an eye toward making better decisions, these techniques are applied to a number of important policy problems. In addition to lectures, assigned articles and text readings, and short problem sets, students are responsible for completing a take-home midterm exam and a number of cases. In some instances, it is possible to take a real problem from formulation to solution, and compare the student's own analysis to what actually happened.", "short_title": "Policy Modeling", "title": "Policy Modeling", "school": "GS", @@ -99050,7 +208235,7 @@ "13:00", "14:20", "EVANS 4430 - Edward P Evans Hall 4430", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Thursday": [ @@ -99058,7 +208243,7 @@ "13:00", "14:20", "EVANS 4430 - Edward P Evans Hall 4430", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -99070,15 +208255,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91336\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91336/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "The purpose of this course is to introduce graduate students to state-of-the-art research in all areas of Mechanical Engineering & Materials Science (MEMS), as well as related disciplines, so that students understand the range of current research questions that are being addressed. An important goal is to encourage students to explore research topics beyond their particular field of study and develop the ability to contextualize their work in terms of larger research questions in MEMS. We therefore require that MEMS Ph.D. students enrolled in this course attend at least eight research seminars during the term: six must be part of the official MEMS seminar series, and two can be from any other relevant Yale graduate department\/program seminar series. This course is graded Sat\/Unsat with sign-in sheets used to monitor attendance. Required of first- and second-year MEMS Ph.D. students.", + "description": "The purpose of this course is to introduce graduate students to state-of-the-art research in all areas of Mechanical Engineering & Materials Science (MEMS), as well as related disciplines, so that students understand the range of current research questions that are being addressed. An important goal is to encourage students to explore research topics beyond their particular field of study and develop the ability to contextualize their work in terms of larger research questions in MEMS. We therefore require that MEMS Ph.D. students enrolled in this course attend at least eight research seminars during the term: six must be part of the official MEMS seminar series, and two can be from any other relevant Yale graduate department/program seminar series. This course is graded Sat/Unsat with sign-in sheets used to monitor attendance. Required of first- and second-year MEMS Ph.D. students.", "short_title": "Research Seminars in Mechanic...", "title": "Research Seminars in Mechanical Engineering & Materials Science", "school": "GS", @@ -99110,7 +208323,7 @@ "14:30", "15:30", "ML 107 - Mason Laboratory 107", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ] }, @@ -99125,7 +208338,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -99163,7 +208404,7 @@ "19:00", "20:15", "HLH17 115 - 17 Hillhouse Avenue 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Wednesday": [ @@ -99171,7 +208412,7 @@ "19:00", "20:15", "HLH17 115 - 17 Hillhouse Avenue 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -99183,10 +208424,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90069\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90069/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -99225,7 +208494,7 @@ "9:00", "10:15", "DL 220 - Dunham Laboratory 220", - "https:\/\/map.yale.edu\/?id=1910#!m\/560005" + "https://map.yale.edu/?id=1910#!m/560005" ] ], "Wednesday": [ @@ -99233,7 +208502,7 @@ "9:00", "10:15", "DL 220 - Dunham Laboratory 220", - "https:\/\/map.yale.edu\/?id=1910#!m\/560005" + "https://map.yale.edu/?id=1910#!m/560005" ] ] }, @@ -99245,14 +208514,117 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88492\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88492/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "Prerequisites: The course is designed for incoming graduate students (and advanced senior undergraduates). Experience with differential equations, linear algebra, PID control, and numerical methods for solving ordinary differential equations is required. Functional and object-oriented coding experience in e.g., python, C\/C++ is also required.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9980227947235107, + 0.9977900981903076, + 0.9985235333442688, + 0.9984800219535828, + 0.9987670183181763, + 0.9988449811935425 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989159107208252, + 0.9989302754402161, + 0.9989073276519775, + 0.9987850785255432, + 0.998891294002533, + 0.998920202255249 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.997117280960083, + 0.9988473653793335, + 0.9989357590675354, + 0.9989168643951416, + 0.9988254904747009, + 0.9988704323768616, + 0.9989297986030579 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 19 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } + }, + { + "season_code": "202303", + "requirements": "Prerequisites: The course is designed for incoming graduate students (and advanced senior undergraduates). Experience with differential equations, linear algebra, PID control, and numerical methods for solving ordinary differential equations is required. Functional and object-oriented coding experience in e.g., python, C/C++ is also required.", "description": "This course introduces fundamental concepts for modeling and controlling robotic systems. The course is divided into two components: Part 1 introduces mathematical tools for modeling and simulating complex robot dynamics, and Part 2 formulates various ways to control robots through comprehensive analysis of dynamics and a deep dive into control theory. Specific lecture topics cover an introduction to variational calculus, state representation, kinematics and dynamics, manipulator equations, contact dynamics and collision detection, observability and controllability, control of fully actuated and underactuated robots, model-based methods for control, and control for manipulation and locomotion.\u00a0The course focuses on connecting mathematical topics with concrete algorithmic implementation where the mid-term project assignment has students model the dynamics of a robot of their choosing. Coding assignments throughout the term provide experience setting up and interfacing with URDF\u2019s, automatic differentiation math libraries in python, and algorithmic implementation of state-of-the-art control methods. Students finish with a codebase and foundational knowledge for simulating and controlling general robotic systems. Special topic lectures focus on recent developments in the field of robotics and highlight core research areas. A final class project takes place instead of a final exam where students leverage the mid-term robot simulation to control the robot to perform a task of their choosing.", "short_title": "Fundamentals of Robot Modelin...", "title": "Fundamentals of Robot Modeling and Control", @@ -99287,7 +208659,7 @@ "16:00", "17:15", "HLH17 115 - 17 Hillhouse Avenue 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Thursday": [ @@ -99295,7 +208667,7 @@ "16:00", "17:15", "HLH17 115 - 17 Hillhouse Avenue 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -99307,15 +208679,120 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88762\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88762/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "", - "description": "This course draws inspiration from nature and focuses on utilizing the fundamental concepts of fluid mechanics and soft matter physics to explain these phenomena. We study a broad range of problems related to (1) nutrient transport in plants, slime molds, and fungi and the adaptation of their networks in dynamic environments, (2) collective behavior and chemotaxis of swimming microorganisms, and (3) pattern formation in nature, e.g. icicles, mud cracks, salt polygons, dendritic crystals, and Turing patterns. We also discuss how our understanding of these problems could be used to develop sustainable solutions for the society, e.g. designing synthetic trees to convert CO2 to oxygen, developing micro\/nano robots for biomedical applications, and utilizing pattern formation and self-assembly to make new materials.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9939574003219604, + 0.9987218976020813, + 0.9988006353378296, + 0.9980480670928955, + 0.9947157502174377, + 0.998640239238739 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9967231154441833, + 0.9984797835350037, + 0.998910665512085, + 0.9994538426399231, + 0.9894299507141113 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.6, + "NEGATIVE": 0.4 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988191723823547, + 0.9989275336265564, + 0.998700737953186, + 0.9982008934020996, + 0.9717752933502197, + 0.9972643852233887, + 0.9986578226089478, + 0.9989294409751892 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 0.7368421052631579, + "final_counts": { + "POSITIVE": 14, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.7368421052631579, + "NEGATIVE": 0.2631578947368421 + } + } + }, + { + "season_code": "202303", + "requirements": "", + "description": "This course draws inspiration from nature and focuses on utilizing the fundamental concepts of fluid mechanics and soft matter physics to explain these phenomena. We study a broad range of problems related to (1) nutrient transport in plants, slime molds, and fungi and the adaptation of their networks in dynamic environments, (2) collective behavior and chemotaxis of swimming microorganisms, and (3) pattern formation in nature, e.g. icicles, mud cracks, salt polygons, dendritic crystals, and Turing patterns. We also discuss how our understanding of these problems could be used to develop sustainable solutions for the society, e.g. designing synthetic trees to convert CO2 to oxygen, developing micro/nano robots for biomedical applications, and utilizing pattern formation and self-assembly to make new materials.", "short_title": "Fluid Mechanics of Natural Ph...", "title": "Fluid Mechanics of Natural Phenomena", "school": "GS", @@ -99349,7 +208826,7 @@ "11:35", "12:50", "ML 104 - Mason Laboratory 104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ], "Wednesday": [ @@ -99357,7 +208834,7 @@ "11:35", "12:50", "ML 104 - Mason Laboratory 104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ] }, @@ -99369,10 +208846,111 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90549\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90549/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998904824256897, + 0.997648298740387, + 0.9989080429077148, + 0.9978927969932556, + 0.998863697052002, + 0.9987475872039795 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989355206489563, + 0.9988229870796204, + 0.9988677501678467, + 0.9983508586883545, + 0.9985163807868958, + 0.9989185333251953 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989367127418518, + 0.9988546371459961, + 0.9989064931869507, + 0.9975513815879822, + 0.9979827404022217, + 0.9989163875579834 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 18 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -99409,7 +208987,7 @@ "11:35", "12:50", "TAC N135-MRRC - The Anlyan Center N135-MRRC", - "https:\/\/map.yale.edu\/?id=1910#!m\/563380" + "https://map.yale.edu/?id=1910#!m/563380" ] ], "Wednesday": [ @@ -99417,7 +208995,7 @@ "11:35", "12:50", "TAC N135-MRRC - The Anlyan Center N135-MRRC", - "https:\/\/map.yale.edu\/?id=1910#!m\/563380" + "https://map.yale.edu/?id=1910#!m/563380" ] ] }, @@ -99429,15 +209007,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88765\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88765/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "Detection and Estimation refers to the development and study of statistical theory and methods in settings involving stochastic signals and, more generally, stochastic processes or stochastic data, where the goal is (optimal) testing of possibly multiple hypotheses regarding the generative model of the data, (optimal) signal estimation from potentially noisy measurements\/observations, and parameter estimation whenever parametric signal\/data models are available. Although these problems often come up in the context of signal processing and communications, the concepts are fundamental to the basic statistical methodologies used broadly across science, medicine, and engineering. The course has been designed from a contemporary perspective, and includes new and cutting-edge topics such as risk-aware statistical estimation and intrinsic links with stochastic optimization and statistical learning.", + "description": "Detection and Estimation refers to the development and study of statistical theory and methods in settings involving stochastic signals and, more generally, stochastic processes or stochastic data, where the goal is (optimal) testing of possibly multiple hypotheses regarding the generative model of the data, (optimal) signal estimation from potentially noisy measurements/observations, and parameter estimation whenever parametric signal/data models are available. Although these problems often come up in the context of signal processing and communications, the concepts are fundamental to the basic statistical methodologies used broadly across science, medicine, and engineering. The course has been designed from a contemporary perspective, and includes new and cutting-edge topics such as risk-aware statistical estimation and intrinsic links with stochastic optimization and statistical learning.", "short_title": "Detection and Estimation", "title": "Detection and Estimation", "school": "GS", @@ -99470,7 +209076,7 @@ "14:30", "15:45", "BCT 508A - Becton Center 508A", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ], "Thursday": [ @@ -99478,7 +209084,7 @@ "14:30", "15:45", "BCT 508A - Becton Center 508A", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ] }, @@ -99490,10 +209096,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89999\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89999/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -99534,7 +209168,7 @@ "13:00", "14:15", "BCT 408A - Becton Center 408A", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ], "Thursday": [ @@ -99542,7 +209176,7 @@ "13:00", "14:15", "BCT 408A - Becton Center 408A", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ] }, @@ -99556,10 +209190,123 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89890\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89890/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987872242927551, + 0.9979719519615173, + 0.9987226128578186, + 0.999255359172821, + 0.9986827969551086, + 0.997454822063446, + 0.9974538683891296 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988425970077515, + 0.9989016056060791, + 0.9986081719398499, + 0.9990240335464478, + 0.9987753033638, + 0.9941311478614807, + 0.9948021173477173, + 0.9960088729858398 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984347224235535, + 0.9988204836845398, + 0.998898983001709, + 0.9988067150115967, + 0.998678982257843, + 0.9987913966178894, + 0.997117280960083, + 0.998788058757782 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 0.8695652173913043, + "final_counts": { + "POSITIVE": 20, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.8695652173913043, + "NEGATIVE": 0.13043478260869565 + } + } }, { "season_code": "202303", @@ -99598,7 +209345,7 @@ "13:00", "14:15", "DL 514 - Dunham Laboratory 514", - "https:\/\/map.yale.edu\/?id=1910#!m\/560005" + "https://map.yale.edu/?id=1910#!m/560005" ] ], "Wednesday": [ @@ -99606,7 +209353,7 @@ "13:00", "14:15", "DL 514 - Dunham Laboratory 514", - "https:\/\/map.yale.edu\/?id=1910#!m\/560005" + "https://map.yale.edu/?id=1910#!m/560005" ] ] }, @@ -99618,10 +209365,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88444\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88444/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -99663,7 +209438,7 @@ "11:35", "12:50", "LC 211 - Linsly-Chittenden Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -99671,7 +209446,7 @@ "11:35", "12:50", "LC 211 - Linsly-Chittenden Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -99683,14 +209458,45 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88328\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88328/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "Prerequisite: prior exposure to probability\/linear algebra\/matrix operations at basic undergraduate level is expected. Prior knowledge of programming language like Python NumPy is useful. Familiarity with digital system design with basic understanding of logic, memory, and related design components is expected.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.99883633852005 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 1, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 1 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } + }, + { + "season_code": "202303", + "requirements": "Prerequisite: prior exposure to probability/linear algebra/matrix operations at basic undergraduate level is expected. Prior knowledge of programming language like Python NumPy is useful. Familiarity with digital system design with basic understanding of logic, memory, and related design components is expected.", "description": "Neural networks (NNs) have become all-pervasive, giving us self-driving cars, Siri voice assistant, Alexa, and many more. While deep NNs deliver state-of-the-art accuracy on many artificial intelligence tasks, it comes at the cost of high computational complexity. Accordingly, designing efficient hardware architectures for deep neural networks is an important step toward enabling the wide deployment of NNs, particularly in low-power computing platforms, such as mobiles, embedded Internet of Things (IoT), and drones. This course aims to provide a thorough overview of deep learning techniques, while highlighting the key trends and advances toward efficient processing of deep learning in hardware systems, considering algorithm-hardware co-design techniques.", "short_title": "Neural Networks and Learning ...", "title": "Neural Networks and Learning Systems", @@ -99724,7 +209530,7 @@ "11:35", "12:50", "HLH17 113 - 17 Hillhouse Avenue 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Wednesday": [ @@ -99732,7 +209538,7 @@ "11:35", "12:50", "HLH17 113 - 17 Hillhouse Avenue 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -99744,10 +209550,105 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88448\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88448/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988376498222351, + 0.9922738671302795, + 0.9989112615585327, + 0.9987784028053284 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989058971405029, + 0.9987263083457947, + 0.9980332255363464, + 0.9989101886749268 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988347887992859, + 0.9994828701019287, + 0.9974592328071594, + 0.9981922507286072, + 0.997117280960083, + 0.9987758994102478 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 0.8571428571428571, + "final_counts": { + "POSITIVE": 12, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + } + } }, { "season_code": "202303", @@ -99785,7 +209686,7 @@ "11:35", "12:50", "HLH17 05 - 17 Hillhouse Avenue 05", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Thursday": [ @@ -99793,7 +209694,7 @@ "11:35", "12:50", "HLH17 05 - 17 Hillhouse Avenue 05", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -99805,10 +209706,101 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88438\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88438/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9973320960998535, + 0.9960830211639404, + 0.9761976599693298, + 0.9986955523490906 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.999508261680603, + 0.9986409544944763, + 0.9838866591453552, + 0.9995009899139404 + ], + "sentiment_counts": { + "NEGATIVE": 4, + "POSITIVE": 0 + }, + "sentiment_distribution": { + "NEGATIVE": 1.0, + "POSITIVE": 0.0 + }, + "sentiment_overall": [ + "NEGATIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9930610060691833, + 0.9976087808609009, + 0.9980787038803101, + 0.9994993209838867 + ], + "sentiment_counts": { + "NEGATIVE": 4, + "POSITIVE": 0 + }, + "sentiment_distribution": { + "NEGATIVE": 1.0, + "POSITIVE": 0.0 + }, + "sentiment_overall": [ + "NEGATIVE", + 1.0 + ] + }, + "final_label": "NEGATIVE", + "final_count": 9, + "final_proportion": 0.75, + "final_counts": { + "POSITIVE": 3, + "NEGATIVE": 9 + }, + "final_distribution": { + "POSITIVE": 0.25, + "NEGATIVE": 0.75 + } + } }, { "season_code": "202303", @@ -99845,7 +209837,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -99885,7 +209905,7 @@ "14:30", "15:45", "HLH17 03 - 17 Hillhouse Avenue 03", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Wednesday": [ @@ -99893,7 +209913,7 @@ "14:30", "15:45", "HLH17 03 - 17 Hillhouse Avenue 03", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -99905,10 +209925,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88768\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88768/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -99946,7 +209994,7 @@ "9:00", "10:15", "LC 318 - Linsly-Chittenden Hall 318", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -99954,7 +210002,7 @@ "9:00", "10:15", "LC 318 - Linsly-Chittenden Hall 318", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -99965,17 +210013,128 @@ "Hu" ], "flags": [ - "YC English: 18th\/19th Century " + "YC English: 18th/19th Century " ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88505\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88505/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989074468612671, + 0.9988558292388916, + 0.9988798499107361, + 0.9989087581634521, + 0.9988793730735779, + 0.9987648725509644, + 0.9988914132118225, + 0.9989262223243713 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989303946495056, + 0.9988623857498169, + 0.9988237023353577, + 0.9988784193992615, + 0.9988993406295776, + 0.9989063739776611, + 0.9989309906959534 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989225268363953, + 0.9989381432533264, + 0.9989181756973267, + 0.9876093864440918, + 0.9989049434661865, + 0.9989258646965027, + 0.9989282488822937, + 0.9989377856254578 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 23, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 23 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -100012,7 +210171,7 @@ "14:30", "15:45", "LC 205 - Linsly-Chittenden Hall 205", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -100020,7 +210179,7 @@ "14:30", "15:45", "LC 205 - Linsly-Chittenden Hall 205", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -100038,10 +210197,99 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89285\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89285/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998784601688385, + 0.9988652467727661, + 0.9976329803466797, + 0.998900294303894 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988364577293396, + 0.9988813996315002, + 0.9988920092582703, + 0.9988960027694702 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998754620552063, + 0.9988898634910583, + 0.9989113807678223, + 0.9989098310470581 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 12 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -100079,7 +210327,7 @@ "11:35", "12:50", "LC 203 - Linsly-Chittenden Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -100087,7 +210335,7 @@ "11:35", "12:50", "LC 203 - Linsly-Chittenden Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -100098,17 +210346,94 @@ "Hu" ], "flags": [ - "YC English: 20th\/21st Century" + "YC English: 20th/21st Century" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88716\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88716/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988920092582703, + 0.998714804649353 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987939596176147, + 0.998677670955658 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989349246025085, + 0.9988848567008972 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 6 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -100146,7 +210471,7 @@ "9:00", "10:15", "LORIA 358 - Loria Center 358", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ], "Wednesday": [ @@ -100154,7 +210479,7 @@ "9:00", "10:15", "LORIA 358 - Loria Center 358", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -100165,13 +210490,120 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "This course may satisfy a historical distribution requirement for prospective English majors with permission from the instructor and the DUS. The English Distribution Request Form is available at https:\/\/english.yale.edu\/undergraduate\/deadlines-and-forms.", + "classnotes": "This course may satisfy a historical distribution requirement for prospective English majors with permission from the instructor and the DUS. The English Distribution Request Form is available at https://english.yale.edu/undergraduate/deadlines-and-forms.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88510\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88510/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987868666648865, + 0.9986658096313477, + 0.998671293258667, + 0.9988376498222351, + 0.9984069466590881, + 0.9987953901290894, + 0.9988762736320496 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988855719566345, + 0.9988389611244202, + 0.9989253878593445, + 0.9989031553268433, + 0.9989117383956909, + 0.9988957643508911 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989027976989746, + 0.9930095672607422, + 0.9989042282104492, + 0.9989355206489563, + 0.9989022016525269, + 0.9974592328071594, + 0.9988712668418884, + 0.9989086389541626 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 21, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 21 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -100211,7 +210643,7 @@ "14:30", "15:45", "WLH 210 - William L. Harkness Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -100219,7 +210651,7 @@ "14:30", "15:45", "WLH 210 - William L. Harkness Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -100228,17 +210660,128 @@ "Hu" ], "flags": [ - "YC English: 20th\/21st Century" + "YC English: 20th/21st Century" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92208\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92208/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989194869995117, + 0.998807430267334, + 0.9989216327667236, + 0.9989217519760132, + 0.9988271594047546, + 0.9989245533943176, + 0.9988633394241333, + 0.9989174604415894 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989226460456848, + 0.9987207055091858, + 0.9989091157913208, + 0.9989288449287415, + 0.998916506767273, + 0.9985612034797668, + 0.9989011287689209, + 0.9988120794296265 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989247918128967, + 0.9989142417907715, + 0.9988695979118347, + 0.9988844990730286, + 0.9986010193824768, + 0.9988746047019958, + 0.9989295601844788 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 23, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 23 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -100275,7 +210818,7 @@ "14:30", "15:45", "WTS A68 - Watson Center 60 Sachem Street A68", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -100283,7 +210826,7 @@ "14:30", "15:45", "WTS A68 - Watson Center 60 Sachem Street A68", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -100297,10 +210840,87 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89682\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89682/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985659718513489, + 0.9988203644752502 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9833469390869141, + 0.9987867474555969 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 1 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.998900294303894 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 4, + "final_proportion": 0.8, + "final_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + } + } }, { "season_code": "202303", @@ -100337,7 +210957,7 @@ "9:00", "10:15", "BASSLB L73 - Bass Library L73", - "https:\/\/map.yale.edu\/?id=1910#!m\/564574" + "https://map.yale.edu/?id=1910#!m/564574" ] ], "Thursday": [ @@ -100345,7 +210965,7 @@ "9:00", "10:15", "BASSLB L73 - Bass Library L73", - "https:\/\/map.yale.edu\/?id=1910#!m\/564574" + "https://map.yale.edu/?id=1910#!m/564574" ] ] }, @@ -100359,10 +210979,111 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89688\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89688/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998895525932312, + 0.9989205598831177, + 0.9987448453903198, + 0.9989074468612671, + 0.998824417591095 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9982138872146606, + 0.998151957988739, + 0.9988553524017334, + 0.9888563752174377, + 0.9992173910140991, + 0.9995090961456299 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981206059455872, + 0.9987963438034058, + 0.9989079236984253, + 0.9989000558853149, + 0.9984594583511353, + 0.992671012878418 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 0.8823529411764706, + "final_counts": { + "POSITIVE": 15, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8823529411764706, + "NEGATIVE": 0.11764705882352941 + } + } }, { "season_code": "202303", @@ -100399,7 +211120,7 @@ "11:35", "12:50", "LC 319 - Linsly-Chittenden Hall 319", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -100407,7 +211128,7 @@ "11:35", "12:50", "LC 319 - Linsly-Chittenden Hall 319", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -100421,10 +211142,95 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89672\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89672/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998813271522522, + 0.9988969564437866, + 0.998715877532959, + 0.9988960027694702 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988076686859131, + 0.9989137649536133, + 0.9989210367202759 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989187717437744, + 0.9989187717437744, + 0.9989128112792969 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 10 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -100461,7 +211267,7 @@ "9:00", "10:15", "LC 104 - Linsly-Chittenden Hall 104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -100469,7 +211275,7 @@ "9:00", "10:15", "LC 104 - Linsly-Chittenden Hall 104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -100483,10 +211289,95 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89697\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89697/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989328980445862, + 0.9472460150718689 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9976217150688171, + 0.9988307356834412, + 0.9995007514953613 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989191293716431, + 0.9988928437232971, + 0.9988654851913452, + 0.999414324760437 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 0.6666666666666666, + "final_counts": { + "POSITIVE": 6, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + } + } }, { "season_code": "202303", @@ -100523,7 +211414,7 @@ "16:00", "17:15", "LC 210 - Linsly-Chittenden Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -100531,7 +211422,7 @@ "16:00", "17:15", "LC 210 - Linsly-Chittenden Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -100545,10 +211436,115 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89690\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89690/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985822439193726, + 0.9988896250724792, + 0.9988850951194763, + 0.998536229133606, + 0.998691737651825, + 0.9986636638641357 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989253878593445, + 0.9989272952079773, + 0.9987819790840149, + 0.9989244341850281, + 0.9988662004470825, + 0.9989327788352966, + 0.998868465423584 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989145994186401, + 0.9988983869552612, + 0.9989209175109863, + 0.998892605304718, + 0.9988724589347839, + 0.9988971948623657, + 0.9988719820976257 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 20 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -100585,7 +211581,7 @@ "9:00", "10:15", "LC 203 - Linsly-Chittenden Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -100593,7 +211589,7 @@ "9:00", "10:15", "LC 203 - Linsly-Chittenden Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -100607,10 +211603,97 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89699\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89699/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983499050140381, + 0.998907208442688, + 0.9988090991973877, + 0.9988941550254822 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988471269607544, + 0.9988670349121094, + 0.9600474834442139 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983307719230652, + 0.9988231062889099, + 0.9987552165985107, + 0.9988596439361572 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 11 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -100647,7 +211730,7 @@ "11:35", "12:50", "LC 213 - Linsly-Chittenden Hall 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -100655,7 +211738,7 @@ "11:35", "12:50", "LC 213 - Linsly-Chittenden Hall 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -100669,10 +211752,91 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89670\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89670/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988343119621277, + 0.9988740086555481, + 0.998700737953186 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988646507263184, + 0.9988572597503662 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986672401428223, + 0.99892657995224, + 0.995046854019165 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 8, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 8 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -100709,7 +211873,7 @@ "13:00", "14:15", "WALL53 B-02 - 53 Wall Street B-02", - "https:\/\/map.yale.edu\/?id=1910#!m\/559554" + "https://map.yale.edu/?id=1910#!m/559554" ] ], "Thursday": [ @@ -100717,7 +211881,7 @@ "13:00", "14:15", "WALL53 B-02 - 53 Wall Street B-02", - "https:\/\/map.yale.edu\/?id=1910#!m\/559554" + "https://map.yale.edu/?id=1910#!m/559554" ] ] }, @@ -100731,10 +211895,95 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89676\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89676/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986769556999207, + 0.9989333748817444, + 0.9987415671348572 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989338517189026, + 0.9989250302314758, + 0.9988806843757629 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988645315170288, + 0.9989369511604309, + 0.9989269375801086, + 0.9989104270935059 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 10 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -100771,7 +212020,7 @@ "13:00", "14:15", "LC 105 - Linsly-Chittenden Hall 105", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -100779,7 +212028,7 @@ "13:00", "14:15", "LC 105 - Linsly-Chittenden Hall 105", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -100793,10 +212042,109 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89687\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89687/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987958669662476, + 0.9989147186279297, + 0.9987918734550476, + 0.998875081539154, + 0.9988150596618652, + 0.9989363551139832 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998927652835846, + 0.9989186525344849, + 0.9989036321640015, + 0.9989157915115356, + 0.9989369511604309 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989275336265564, + 0.998908519744873, + 0.9982650876045227, + 0.9985789060592651, + 0.9989257454872131, + 0.9988596439361572 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 17 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -100833,7 +212181,7 @@ "11:35", "12:50", "LC 205 - Linsly-Chittenden Hall 205", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -100841,7 +212189,7 @@ "11:35", "12:50", "LC 205 - Linsly-Chittenden Hall 205", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -100855,10 +212203,89 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89679\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89679/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988401532173157, + 0.998908281326294 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9975233674049377, + 0.9986982345581055 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 1 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984209537506104, + 0.9979806542396545 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 5, + "final_proportion": 0.8333333333333334, + "final_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + } + } }, { "season_code": "202303", @@ -100895,7 +212322,7 @@ "13:00", "14:15", "RKZ 06 - Rosenkranz Hall 06", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ], "Thursday": [ @@ -100903,7 +212330,7 @@ "13:00", "14:15", "RKZ 06 - Rosenkranz Hall 06", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -100917,10 +212344,97 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89684\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89684/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988962411880493, + 0.9988390803337097, + 0.9985995888710022, + 0.9988546371459961 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9976722598075867, + 0.9989297986030579, + 0.9989262223243713 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9974592328071594, + 0.9989355206489563, + 0.998755693435669, + 0.9988514184951782 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 11 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -100957,7 +212471,7 @@ "13:00", "14:15", "LC 203 - Linsly-Chittenden Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -100965,7 +212479,7 @@ "13:00", "14:15", "LC 203 - Linsly-Chittenden Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -100979,10 +212493,101 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89686\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89686/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988613128662109, + 0.9986143112182617, + 0.9989128112792969, + 0.9988794922828674 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988999366760254, + 0.9989191293716431, + 0.9952782392501831, + 0.9989211559295654 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998806357383728, + 0.9989245533943176, + 0.9978983402252197, + 0.9989266991615295 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 0.9166666666666666, + "final_counts": { + "POSITIVE": 11, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + } + } }, { "season_code": "202303", @@ -101019,7 +212624,7 @@ "13:00", "14:15", "LC 105 - Linsly-Chittenden Hall 105", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -101027,7 +212632,7 @@ "13:00", "14:15", "LC 105 - Linsly-Chittenden Hall 105", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -101041,10 +212646,95 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89680\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89680/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988824725151062, + 0.998761773109436, + 0.9989301562309265, + 0.997912585735321 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988967180252075, + 0.9989221096038818, + 0.9989199638366699 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985834360122681, + 0.99891197681427, + 0.9988608360290527 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 10 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -101081,7 +212771,7 @@ "11:35", "12:50", "LC 204 - Linsly-Chittenden Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -101089,7 +212779,7 @@ "11:35", "12:50", "LC 204 - Linsly-Chittenden Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -101103,10 +212793,93 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89696\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89696/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988232254981995, + 0.998814582824707, + 0.9988790154457092 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988380074501038, + 0.9988941550254822, + 0.99892657995224 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998900294303894, + 0.9988980293273926, + 0.9988738894462585 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 9 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -101143,7 +212916,7 @@ "16:00", "17:15", "LC 210 - Linsly-Chittenden Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -101151,7 +212924,7 @@ "16:00", "17:15", "LC 210 - Linsly-Chittenden Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -101165,10 +212938,87 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89683\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89683/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986812472343445, + 0.9989118576049805 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986942410469055, + 0.9989070892333984 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989057779312134, + 0.9988731741905212 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 6 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -101205,7 +213055,7 @@ "11:35", "12:50", "LC 206 - Linsly-Chittenden Hall 206", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -101213,7 +213063,7 @@ "11:35", "12:50", "LC 206 - Linsly-Chittenden Hall 206", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -101227,10 +213077,97 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89685\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89685/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988672733306885, + 0.9987636804580688, + 0.9989149570465088, + 0.998534083366394 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989063739776611, + 0.9983710646629333, + 0.9989180564880371 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989044666290283, + 0.9989109039306641, + 0.9989314675331116, + 0.9988297820091248 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 11 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -101267,7 +213204,7 @@ "11:35", "12:50", "WLH 007 - William L. Harkness Hall 007", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -101275,7 +213212,7 @@ "11:35", "12:50", "WLH 007 - William L. Harkness Hall 007", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -101289,10 +213226,105 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89700\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89700/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988186955451965, + 0.9985914826393127, + 0.998927891254425, + 0.9989016056060791, + 0.9989066123962402 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988943934440613, + 0.9983845949172974, + 0.9989299178123474, + 0.9988164901733398, + 0.9989171028137207 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.99893718957901, + 0.9974592328071594, + 0.9988969564437866, + 0.9988810420036316, + 0.9989035129547119 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 15 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -101329,7 +213361,7 @@ "11:35", "12:50", "LC 212 - Linsly-Chittenden Hall 212", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -101337,7 +213369,7 @@ "11:35", "12:50", "LC 212 - Linsly-Chittenden Hall 212", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -101351,10 +213383,109 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89674\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89674/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988810420036316, + 0.9988905787467957, + 0.9989179372787476, + 0.9986829161643982, + 0.9988161325454712, + 0.9989023208618164 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9895560145378113, + 0.998894989490509, + 0.9989223480224609, + 0.9994592070579529, + 0.9988998174667358 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.4, + "POSITIVE": 0.6 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998863697052002, + 0.9989365935325623, + 0.9989100694656372, + 0.9989222288131714, + 0.9989150762557983 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 0.875, + "final_counts": { + "POSITIVE": 14, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + } + } }, { "season_code": "202303", @@ -101391,7 +213522,7 @@ "9:00", "10:15", "SML 120C - Sterling Memorial Library 120C", - "https:\/\/map.yale.edu\/?id=1910#!m\/563698" + "https://map.yale.edu/?id=1910#!m/563698" ] ], "Thursday": [ @@ -101399,7 +213530,7 @@ "9:00", "10:15", "SML 120C - Sterling Memorial Library 120C", - "https:\/\/map.yale.edu\/?id=1910#!m\/563698" + "https://map.yale.edu/?id=1910#!m/563698" ] ] }, @@ -101413,10 +213544,125 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88514\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88514/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982466697692871, + 0.9988443851470947, + 0.9980776309967041, + 0.9989045858383179, + 0.9987995624542236, + 0.9988213181495667, + 0.9988803267478943, + 0.99891197681427, + 0.9988847374916077 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988225102424622, + 0.99891197681427, + 0.9987169504165649, + 0.9988608360290527, + 0.9989176988601685, + 0.998938262462616, + 0.9989243149757385, + 0.9989326596260071 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998887836933136, + 0.9989301562309265, + 0.9978110194206238, + 0.9989219903945923, + 0.9988447427749634, + 0.9989269375801086, + 0.998927891254425, + 0.9988608360290527 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 25, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 25 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -101453,7 +213699,7 @@ "16:00", "17:15", "LC 206 - Linsly-Chittenden Hall 206", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -101461,7 +213707,7 @@ "16:00", "17:15", "LC 206 - Linsly-Chittenden Hall 206", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -101475,10 +213721,87 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89698\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89698/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988946318626404, + 0.9989039897918701 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988190531730652, + 0.998863697052002 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989076852798462, + 0.9972813129425049 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 6 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -101515,7 +213838,7 @@ "14:30", "15:45", "LC 208 - Linsly-Chittenden Hall 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -101523,7 +213846,7 @@ "14:30", "15:45", "LC 208 - Linsly-Chittenden Hall 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -101537,10 +213860,113 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89692\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89692/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9955922961235046, + 0.997557520866394, + 0.9963827133178711, + 0.9987836480140686, + 0.9988222718238831, + 0.9986804127693176 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987340569496155, + 0.9922698736190796, + 0.9983185529708862, + 0.998826801776886, + 0.9987208247184753, + 0.9988161325454712 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986030459403992, + 0.998908281326294, + 0.9988865256309509, + 0.998892605304718, + 0.9988596439361572, + 0.9972485899925232 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 0.9444444444444444, + "final_counts": { + "POSITIVE": 17, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9444444444444444, + "NEGATIVE": 0.05555555555555555 + } + } }, { "season_code": "202303", @@ -101577,7 +214003,7 @@ "14:30", "15:45", "LC 105 - Linsly-Chittenden Hall 105", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -101585,7 +214011,7 @@ "14:30", "15:45", "LC 105 - Linsly-Chittenden Hall 105", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -101599,10 +214025,107 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89675\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89675/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988815188407898, + 0.99891197681427, + 0.998927652835846, + 0.998908281326294 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988685846328735, + 0.9989315867424011, + 0.9988405108451843, + 0.99887615442276, + 0.9989318251609802 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989138841629028, + 0.9989387392997742, + 0.9989230036735535, + 0.9988088607788086, + 0.9989363551139832, + 0.9987408518791199, + 0.9989362359046936 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 16 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -101639,7 +214162,7 @@ "13:00", "14:15", "LC 318 - Linsly-Chittenden Hall 318", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -101647,7 +214170,7 @@ "13:00", "14:15", "LC 318 - Linsly-Chittenden Hall 318", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -101661,10 +214184,85 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89689\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89689/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981971383094788, + 0.9989020824432373 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985326528549194 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985365867614746, + 0.9989344477653503 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 5, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 5 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -101701,7 +214299,7 @@ "13:00", "14:15", "LC 104 - Linsly-Chittenden Hall 104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -101709,7 +214307,7 @@ "13:00", "14:15", "LC 104 - Linsly-Chittenden Hall 104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -101723,10 +214321,91 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89678\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89678/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987167119979858, + 0.9988499879837036, + 0.9989114999771118 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988709092140198, + 0.9988962411880493 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988664388656616, + 0.9989008903503418, + 0.9989016056060791 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 8, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 8 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -101763,7 +214442,7 @@ "14:30", "15:45", "LC 203 - Linsly-Chittenden Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -101771,7 +214450,7 @@ "14:30", "15:45", "LC 203 - Linsly-Chittenden Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -101785,10 +214464,87 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89695\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89695/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998932421207428, + 0.9986796975135803 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989137649536133, + 0.9989145994186401 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989155530929565, + 0.998907208442688 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 6 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -101825,7 +214581,7 @@ "14:30", "15:45", "WALL53 B-03 - 53 Wall Street B-03", - "https:\/\/map.yale.edu\/?id=1910#!m\/559554" + "https://map.yale.edu/?id=1910#!m/559554" ] ], "Thursday": [ @@ -101833,7 +214589,7 @@ "14:30", "15:45", "WALL53 B-03 - 53 Wall Street B-03", - "https:\/\/map.yale.edu\/?id=1910#!m\/559554" + "https://map.yale.edu/?id=1910#!m/559554" ] ] }, @@ -101847,10 +214603,93 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89693\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89693/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986012578010559, + 0.998879611492157, + 0.9986370205879211 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998862624168396, + 0.9986152648925781, + 0.9985657334327698 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987768530845642, + 0.997117280960083, + 0.9988149404525757 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 9 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -101887,7 +214726,7 @@ "11:35", "12:50", "YSB C142 - Yale Science Building C142", - "https:\/\/map.yale.edu\/?id=1910#!m\/563700" + "https://map.yale.edu/?id=1910#!m/563700" ] ], "Wednesday": [ @@ -101895,7 +214734,7 @@ "11:35", "12:50", "YSB C142 - Yale Science Building C142", - "https:\/\/map.yale.edu\/?id=1910#!m\/563700" + "https://map.yale.edu/?id=1910#!m/563700" ] ] }, @@ -101909,10 +214748,113 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89677\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89677/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989149570465088, + 0.9987955093383789, + 0.9989311099052429, + 0.998796820640564, + 0.999504566192627, + 0.9987665414810181 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998938262462616, + 0.9989103078842163, + 0.9989223480224609, + 0.998925507068634, + 0.9993287324905396, + 0.9986187219619751 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989364743232727, + 0.9988621473312378, + 0.9989225268363953, + 0.9989097118377686, + 0.9995075464248657, + 0.9988982677459717 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 0.8333333333333334, + "final_counts": { + "POSITIVE": 15, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + } + } }, { "season_code": "202303", @@ -101949,7 +214891,7 @@ "14:30", "15:45", "WTS A48 - Watson Center 60 Sachem Street A48", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -101957,7 +214899,7 @@ "14:30", "15:45", "WTS A48 - Watson Center 60 Sachem Street A48", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -101971,10 +214913,109 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89694\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89694/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998760461807251, + 0.9988362193107605, + 0.998730480670929, + 0.9988794922828674, + 0.9984326958656311, + 0.9988905787467957 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998877227306366, + 0.9989075660705566, + 0.9988880753517151, + 0.9989325404167175, + 0.9988489151000977, + 0.9989089965820312 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989074468612671, + 0.9987917542457581, + 0.9989086389541626, + 0.9986763596534729, + 0.9989197254180908 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 17 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -102011,7 +215052,7 @@ "9:00", "10:15", "YK220 002 - 220 York Street 002", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ], "Wednesday": [ @@ -102019,7 +215060,7 @@ "9:00", "10:15", "YK220 002 - 220 York Street 002", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ] }, @@ -102033,10 +215074,99 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89673\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89673/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988241791725159, + 0.9988412261009216, + 0.9980747699737549 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9981040954589844, + 0.9988442659378052, + 0.9985275268554688, + 0.9994503855705261 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9969158172607422, + 0.9989343285560608, + 0.9980502128601074, + 0.9994823932647705 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "final_label": "POSITIVE", + "final_count": 8, + "final_proportion": 0.7272727272727273, + "final_counts": { + "POSITIVE": 8, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.7272727272727273, + "NEGATIVE": 0.2727272727272727 + } + } }, { "season_code": "202303", @@ -102073,7 +215203,7 @@ "13:00", "14:15", "YK220 002 - 220 York Street 002", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ], "Thursday": [ @@ -102081,7 +215211,7 @@ "13:00", "14:15", "YK220 002 - 220 York Street 002", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ] }, @@ -102095,10 +215225,103 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89681\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89681/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988877177238464, + 0.9988045692443848, + 0.9988186955451965, + 0.998737633228302, + 0.9831616878509521 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9950891137123108, + 0.9987784028053284, + 0.9982775449752808, + 0.998938262462616 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988061189651489, + 0.9951928853988647, + 0.9955189228057861, + 0.9989338517189026, + 0.9981922507286072 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 14 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -102135,7 +215358,7 @@ "14:30", "15:45", "LC 104 - Linsly-Chittenden Hall 104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -102143,7 +215366,7 @@ "14:30", "15:45", "LC 104 - Linsly-Chittenden Hall 104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -102157,10 +215380,91 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89671\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89671/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985107779502869, + 0.9989271759986877, + 0.9989292025566101 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987809062004089, + 0.9982518553733826 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987183809280396, + 0.9988686442375183, + 0.9989314675331116 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 8, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 8 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -102197,7 +215501,7 @@ "16:00", "17:15", "LC 104 - Linsly-Chittenden Hall 104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -102205,7 +215509,7 @@ "16:00", "17:15", "LC 104 - Linsly-Chittenden Hall 104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -102219,10 +215523,111 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89691\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89691/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986563920974731, + 0.9989334940910339, + 0.9988571405410767, + 0.9988190531730652, + 0.9987177848815918, + 0.9988678693771362 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989307522773743, + 0.9989328980445862, + 0.9989020824432373, + 0.9989194869995117, + 0.9989145994186401, + 0.9988791346549988 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989389777183533, + 0.998927891254425, + 0.9988786578178406, + 0.9988617897033691, + 0.9989309906959534, + 0.998873770236969 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 18 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -102260,7 +215665,7 @@ "11:35", "12:50", "LC 204 - Linsly-Chittenden Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -102268,7 +215673,7 @@ "11:35", "12:50", "LC 204 - Linsly-Chittenden Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -102284,10 +215689,91 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88518\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88518/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989185333251953, + 0.9987103939056396 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.998817503452301 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988135099411011, + 0.9989168643951416, + 0.9979689717292786, + 0.997117280960083 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 0.8571428571428571, + "final_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + } + } }, { "season_code": "202303", @@ -102324,7 +215810,7 @@ "13:00", "14:15", "WALL53 B-03 - 53 Wall Street B-03", - "https:\/\/map.yale.edu\/?id=1910#!m\/559554" + "https://map.yale.edu/?id=1910#!m/559554" ] ], "Thursday": [ @@ -102332,7 +215818,7 @@ "13:00", "14:15", "WALL53 B-03 - 53 Wall Street B-03", - "https:\/\/map.yale.edu\/?id=1910#!m\/559554" + "https://map.yale.edu/?id=1910#!m/559554" ] ] }, @@ -102348,10 +215834,87 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88529\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88529/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982489347457886, + 0.9988479614257812, + 0.9989207983016968 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989047050476074 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986656904220581, + 0.9989058971405029 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 6 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -102388,7 +215951,7 @@ "14:30", "15:45", "LC 103 - Linsly-Chittenden Hall 103", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -102396,7 +215959,7 @@ "14:30", "15:45", "LC 103 - Linsly-Chittenden Hall 103", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -102412,10 +215975,117 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88523\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88523/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.99791020154953, + 0.9987123012542725, + 0.9988314509391785, + 0.9986816048622131, + 0.9988719820976257, + 0.9988300204277039, + 0.9989060163497925 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9978457689285278, + 0.9989297986030579, + 0.9989023208618164, + 0.998921275138855, + 0.9989252686500549, + 0.9989179372787476, + 0.9989225268363953 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989179372787476, + 0.9989198446273804, + 0.9967231154441833, + 0.9989339709281921, + 0.998931348323822, + 0.9989135265350342, + 0.9989355206489563 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 21, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 21 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -102452,7 +216122,7 @@ "14:30", "15:45", "LC 210 - Linsly-Chittenden Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -102460,7 +216130,7 @@ "14:30", "15:45", "LC 210 - Linsly-Chittenden Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -102476,10 +216146,61 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88526\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88526/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988872408866882 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989216327667236 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 2, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 2 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -102516,7 +216237,7 @@ "9:00", "10:15", "LC 319 - Linsly-Chittenden Hall 319", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -102524,7 +216245,7 @@ "9:00", "10:15", "LC 319 - Linsly-Chittenden Hall 319", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -102538,10 +216259,103 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88531\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88531/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988904595375061, + 0.9988671541213989, + 0.9995094537734985, + 0.9988779425621033 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989216327667236, + 0.9986999034881592, + 0.9994922876358032, + 0.9989272952079773 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987443685531616, + 0.9989053010940552, + 0.9989320635795593, + 0.9993477463722229, + 0.9977795481681824 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 0.7692307692307693, + "final_counts": { + "POSITIVE": 10, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.7692307692307693, + "NEGATIVE": 0.23076923076923078 + } + } }, { "season_code": "202303", @@ -102578,7 +216392,7 @@ "11:35", "12:50", "LC 104 - Linsly-Chittenden Hall 104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -102586,7 +216400,7 @@ "11:35", "12:50", "LC 104 - Linsly-Chittenden Hall 104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -102600,10 +216414,121 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89701\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89701/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988211989402771, + 0.997911274433136, + 0.9979920387268066, + 0.9989109039306641, + 0.9988357424736023, + 0.9987530708312988, + 0.9989094734191895, + 0.9987791180610657 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989239573478699, + 0.9988069534301758, + 0.9979355335235596, + 0.9988528490066528, + 0.998933732509613, + 0.998559296131134, + 0.9989222288131714, + 0.9988774657249451 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987260699272156, + 0.9988343119621277, + 0.9984146356582642, + 0.9989207983016968, + 0.9989105463027954, + 0.9989257454872131, + 0.9989375472068787 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 23, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 23 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -102640,7 +216565,7 @@ "11:35", "12:50", "LC 205 - Linsly-Chittenden Hall 205", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -102648,7 +216573,7 @@ "11:35", "12:50", "LC 205 - Linsly-Chittenden Hall 205", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -102662,10 +216587,109 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89702\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89702/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989075660705566, + 0.9989064931869507, + 0.9988917708396912, + 0.99892657995224, + 0.9988873600959778 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988290667533875, + 0.9989045858383179, + 0.9989323019981384, + 0.9988607168197632, + 0.9988265633583069 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989269375801086, + 0.9989222288131714, + 0.9989281296730042, + 0.9989321827888489, + 0.9983333945274353, + 0.9459581971168518 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 0.9375, + "final_counts": { + "POSITIVE": 15, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9375, + "NEGATIVE": 0.0625 + } + } }, { "season_code": "202303", @@ -102702,7 +216726,7 @@ "13:00", "14:15", "LC 318 - Linsly-Chittenden Hall 318", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -102710,7 +216734,7 @@ "13:00", "14:15", "LC 318 - Linsly-Chittenden Hall 318", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -102724,10 +216748,109 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89703\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89703/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987258315086365, + 0.9988991022109985, + 0.998791515827179, + 0.9981850981712341, + 0.9987459182739258 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989223480224609, + 0.9989319443702698, + 0.9988539218902588, + 0.853536069393158, + 0.9983785152435303 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989132881164551, + 0.9989288449287415, + 0.9985023736953735, + 0.9989066123962402, + 0.9968788623809814, + 0.9988883137702942 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 0.9375, + "final_counts": { + "POSITIVE": 15, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9375, + "NEGATIVE": 0.0625 + } + } }, { "season_code": "202303", @@ -102764,7 +216887,7 @@ "14:30", "15:45", "LC 318 - Linsly-Chittenden Hall 318", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -102772,7 +216895,7 @@ "14:30", "15:45", "LC 318 - Linsly-Chittenden Hall 318", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -102786,10 +216909,93 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89704\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89704/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988352656364441, + 0.9989112615585327, + 0.9989210367202759 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989181756973267, + 0.9987819790840149, + 0.9989122152328491 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989232420921326, + 0.9988759160041809, + 0.9988879561424255 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 9 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -102826,7 +217032,7 @@ "9:00", "10:15", "YK220 002 - 220 York Street 002", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ], "Thursday": [ @@ -102834,7 +217040,7 @@ "9:00", "10:15", "YK220 002 - 220 York Street 002", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ] }, @@ -102848,10 +217054,111 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89705\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89705/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9966307282447815, + 0.9988013505935669, + 0.9987494945526123, + 0.9988657236099243, + 0.9988226294517517 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987894892692566, + 0.9994863271713257, + 0.9989067316055298, + 0.9987008571624756, + 0.998823344707489, + 0.9988788962364197 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9990135431289673, + 0.9994713664054871, + 0.9988850951194763, + 0.9982779026031494, + 0.998931348323822, + 0.9989219903945923 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 4 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 0.8235294117647058, + "final_counts": { + "POSITIVE": 14, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.8235294117647058, + "NEGATIVE": 0.17647058823529413 + } + } }, { "season_code": "202303", @@ -102888,7 +217195,7 @@ "11:35", "12:50", "LC 105 - Linsly-Chittenden Hall 105", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -102896,7 +217203,7 @@ "11:35", "12:50", "LC 105 - Linsly-Chittenden Hall 105", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -102910,10 +217217,117 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89706\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89706/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998770534992218, + 0.9988080263137817, + 0.9989216327667236, + 0.9988203644752502, + 0.9986588954925537, + 0.9987975358963013, + 0.9986327290534973 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.998916506767273, + 0.9985635876655579, + 0.9988735318183899, + 0.998938262462616, + 0.9986187219619751, + 0.9921202659606934 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989240765571594, + 0.9988705515861511, + 0.9989079236984253, + 0.998910665512085, + 0.9989136457443237, + 0.9987120628356934, + 0.9988893866539001 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 0.95, + "final_counts": { + "POSITIVE": 19, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.95, + "NEGATIVE": 0.05 + } + } }, { "season_code": "202303", @@ -102950,7 +217364,7 @@ "16:00", "17:15", "LC 203 - Linsly-Chittenden Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -102958,7 +217372,7 @@ "16:00", "17:15", "LC 203 - Linsly-Chittenden Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -102972,10 +217386,103 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89707\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89707/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986237287521362, + 0.9987117052078247, + 0.9988518953323364, + 0.9988260865211487 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985199570655823, + 0.998916506767273, + 0.9988594055175781, + 0.9988601207733154, + 0.9986856579780579 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984363913536072, + 0.99892657995224, + 0.9989179372787476, + 0.99891197681427, + 0.9989234805107117 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 14 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -103012,7 +217519,7 @@ "9:00", "10:15", "LC 212 - Linsly-Chittenden Hall 212", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -103020,7 +217527,7 @@ "9:00", "10:15", "LC 212 - Linsly-Chittenden Hall 212", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -103034,10 +217541,111 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89708\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89708/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987488985061646, + 0.998820960521698, + 0.9987584352493286, + 0.9988825917243958, + 0.998379111289978, + 0.998801589012146 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988645315170288, + 0.9989171028137207, + 0.9988892674446106, + 0.9966758489608765, + 0.9986611604690552, + 0.9988312125205994 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989128112792969, + 0.9989363551139832, + 0.998916745185852, + 0.998921275138855, + 0.9988915324211121, + 0.9988861680030823 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 18 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -103074,7 +217682,7 @@ "14:30", "15:45", "LC 104 - Linsly-Chittenden Hall 104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -103082,7 +217690,7 @@ "14:30", "15:45", "LC 104 - Linsly-Chittenden Hall 104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -103096,10 +217704,97 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89709\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89709/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988885521888733, + 0.9988715052604675, + 0.9888134598731995, + 0.9988394379615784 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989346861839294, + 0.9989125728607178, + 0.9989385008811951 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989309906959534, + 0.9989068508148193, + 0.9989257454872131 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 0.9, + "final_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + } + } }, { "season_code": "202303", @@ -103136,7 +217831,7 @@ "13:00", "14:15", "LC 208 - Linsly-Chittenden Hall 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -103144,7 +217839,7 @@ "13:00", "14:15", "LC 208 - Linsly-Chittenden Hall 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -103158,10 +217853,117 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89710\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89710/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986156225204468, + 0.9988546371459961, + 0.9988640546798706, + 0.9988325238227844, + 0.9989064931869507, + 0.9988728165626526, + 0.9988678693771362 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988740086555481, + 0.9989261031150818, + 0.9989306330680847, + 0.9987127780914307, + 0.9989350438117981, + 0.9989209175109863, + 0.9989288449287415 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988430738449097, + 0.998925507068634, + 0.998677670955658, + 0.9988118410110474, + 0.9989363551139832, + 0.9988747239112854, + 0.9989344477653503 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 21, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 21 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -103198,7 +218000,7 @@ "9:00", "10:15", "LC 319 - Linsly-Chittenden Hall 319", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -103206,7 +218008,7 @@ "9:00", "10:15", "LC 319 - Linsly-Chittenden Hall 319", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -103220,10 +218022,97 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89711\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89711/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987584352493286, + 0.998822033405304, + 0.9988204836845398 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998923122882843, + 0.9988501071929932, + 0.9988584518432617 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984270334243774, + 0.9987401366233826, + 0.9989044666290283, + 0.998936116695404, + 0.9989238381385803 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 11 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -103260,7 +218149,7 @@ "14:30", "15:45", "LC 208 - Linsly-Chittenden Hall 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -103268,7 +218157,7 @@ "14:30", "15:45", "LC 208 - Linsly-Chittenden Hall 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -103282,10 +218171,111 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89712\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89712/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987427592277527, + 0.9986709356307983, + 0.9988730549812317, + 0.9984617233276367, + 0.9988672733306885, + 0.9987584352493286 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989319443702698, + 0.9980694651603699, + 0.9987226128578186, + 0.998849630355835, + 0.9987204074859619, + 0.9988933205604553 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989338517189026, + 0.9989006519317627, + 0.9989209175109863, + 0.9988802075386047, + 0.9989006519317627, + 0.9989038705825806 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 18 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -103322,7 +218312,7 @@ "13:00", "14:15", "LC 204 - Linsly-Chittenden Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -103330,7 +218320,7 @@ "13:00", "14:15", "LC 204 - Linsly-Chittenden Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -103344,10 +218334,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89713\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89713/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -103384,7 +218402,7 @@ "13:00", "14:15", "LORIA 259 - Loria Center 259", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ], "Wednesday": [ @@ -103392,7 +218410,7 @@ "13:00", "14:15", "LORIA 259 - Loria Center 259", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -103406,10 +218424,95 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89714\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89714/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989122152328491, + 0.9988635778427124, + 0.9988808035850525 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987851977348328, + 0.9989111423492432, + 0.998742401599884 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988976716995239, + 0.9987009763717651, + 0.9988968372344971, + 0.998889148235321 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 10 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -103446,7 +218549,7 @@ "11:35", "12:50", "LORIA 258 - Loria Center 258", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ], "Wednesday": [ @@ -103454,7 +218557,7 @@ "11:35", "12:50", "LORIA 258 - Loria Center 258", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -103470,10 +218573,103 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90717\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90717/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989091157913208, + 0.9988288283348083, + 0.9987964630126953, + 0.9988206028938293, + 0.9988207221031189 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988555908203125, + 0.9988685846328735, + 0.998862624168396, + 0.9988886713981628 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9941961765289307, + 0.9988666772842407, + 0.9988828301429749, + 0.9984583854675293, + 0.9989206790924072 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 14 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -103510,7 +218706,7 @@ "11:35", "12:50", "WLH 209 - William L. Harkness Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -103518,7 +218714,7 @@ "11:35", "12:50", "WLH 209 - William L. Harkness Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -103532,10 +218728,89 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88533\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88533/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986003041267395, + 0.9987751841545105 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987732768058777, + 0.9988769888877869 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.997117280960083, + 0.9988799691200256, + 0.9988186955451965 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 7 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -103572,7 +218847,7 @@ "11:35", "12:50", "LC 103 - Linsly-Chittenden Hall 103", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -103580,7 +218855,7 @@ "11:35", "12:50", "LC 103 - Linsly-Chittenden Hall 103", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -103594,10 +218869,109 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89653\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89653/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987075328826904, + 0.998891294002533, + 0.9986421465873718, + 0.9957382678985596, + 0.9989101886749268 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989001750946045, + 0.9989375472068787, + 0.9988850951194763, + 0.998853325843811, + 0.9989162683486938 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 4 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2, + "POSITIVE": 0.8 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982767105102539, + 0.992927610874176, + 0.9989256262779236, + 0.9986969828605652, + 0.9989173412322998, + 0.9989268183708191 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 0.875, + "final_counts": { + "POSITIVE": 14, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + } + } }, { "season_code": "202303", @@ -103634,7 +219008,7 @@ "11:35", "12:50", "WLH 002 - William L. Harkness Hall 002", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -103642,7 +219016,7 @@ "11:35", "12:50", "WLH 002 - William L. Harkness Hall 002", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -103656,10 +219030,123 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89654\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89654/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988600015640259, + 0.9988777041435242, + 0.9987363219261169, + 0.9984397292137146, + 0.9987775683403015, + 0.9988620281219482, + 0.9988998174667358 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988601207733154, + 0.9988466501235962, + 0.9989149570465088, + 0.9989227652549744, + 0.9989342093467712, + 0.9989031553268433, + 0.9989394545555115, + 0.9987541437149048 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.998910665512085, + 0.9989129304885864, + 0.9988856911659241, + 0.9989239573478699, + 0.9988937973976135, + 0.9988736510276794, + 0.9989345669746399, + 0.9995067119598389 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "final_label": "POSITIVE", + "final_count": 22, + "final_proportion": 0.9565217391304348, + "final_counts": { + "POSITIVE": 22, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9565217391304348, + "NEGATIVE": 0.043478260869565216 + } + } }, { "season_code": "202303", @@ -103696,7 +219183,7 @@ "11:35", "12:50", "LC 208 - Linsly-Chittenden Hall 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -103704,7 +219191,7 @@ "11:35", "12:50", "LC 208 - Linsly-Chittenden Hall 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -103718,10 +219205,93 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89655\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89655/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989004135131836, + 0.9985501170158386, + 0.9988805651664734 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984931945800781, + 0.9988929629325867, + 0.9970521926879883 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988154172897339, + 0.9988988637924194, + 0.9989186525344849 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 9 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -103758,7 +219328,7 @@ "13:00", "14:15", "LC 209 - Linsly-Chittenden Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -103766,7 +219336,7 @@ "13:00", "14:15", "LC 209 - Linsly-Chittenden Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -103782,10 +219352,99 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88534\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88534/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989207983016968, + 0.9986013770103455, + 0.998853325843811, + 0.998802661895752 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989097118377686, + 0.9993647933006287, + 0.998927891254425 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989302754402161, + 0.9988940358161926, + 0.9995028972625732, + 0.9989296793937683 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 0.8181818181818182, + "final_counts": { + "POSITIVE": 9, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8181818181818182, + "NEGATIVE": 0.18181818181818182 + } + } }, { "season_code": "202303", @@ -103822,7 +219481,7 @@ "13:00", "14:15", "LC 205 - Linsly-Chittenden Hall 205", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -103830,7 +219489,7 @@ "13:00", "14:15", "LC 205 - Linsly-Chittenden Hall 205", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -103846,10 +219505,81 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89263\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89263/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989381432533264 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989333748817444 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989161491394043 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 3, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 3 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -103886,7 +219616,7 @@ "11:35", "12:50", "LC 203 - Linsly-Chittenden Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -103894,7 +219624,7 @@ "11:35", "12:50", "LC 203 - Linsly-Chittenden Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -103910,10 +219640,89 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88535\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88535/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988664388656616, + 0.9988940358161926 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988930821418762, + 0.9989251494407654, + 0.9987276196479797 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989376664161682, + 0.998700737953186 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 7 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -103950,7 +219759,7 @@ "13:00", "14:15", "LC 104 - Linsly-Chittenden Hall 104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -103958,7 +219767,7 @@ "13:00", "14:15", "LC 104 - Linsly-Chittenden Hall 104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -103974,10 +219783,101 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89266\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89266/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982985854148865, + 0.9988853335380554, + 0.9995003938674927, + 0.9986739158630371 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988583326339722, + 0.9989053010940552, + 0.9995059967041016, + 0.9989087581634521 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987902045249939, + 0.9989307522773743, + 0.9995040893554688, + 0.9989314675331116 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 0.75, + "final_counts": { + "POSITIVE": 9, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + } + } }, { "season_code": "202303", @@ -104014,7 +219914,7 @@ "9:00", "10:15", "LC 203 - Linsly-Chittenden Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -104022,7 +219922,7 @@ "9:00", "10:15", "LC 203 - Linsly-Chittenden Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -104038,10 +219938,125 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89267\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89267/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989302754402161, + 0.9988929629325867, + 0.9979268312454224, + 0.9980400204658508, + 0.9988700747489929, + 0.9987377524375916, + 0.9988982677459717, + 0.9891201257705688 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988884329795837, + 0.9989138841629028, + 0.9988941550254822, + 0.9984942674636841, + 0.9989018440246582, + 0.9987358450889587, + 0.9989056587219238 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988994598388672, + 0.9987629652023315, + 0.9988462924957275, + 0.9915836453437805, + 0.9989191293716431, + 0.9989038705825806, + 0.9831286072731018, + 0.998871386051178, + 0.9980688691139221 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "final_label": "POSITIVE", + "final_count": 23, + "final_proportion": 0.9583333333333334, + "final_counts": { + "POSITIVE": 23, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9583333333333334, + "NEGATIVE": 0.041666666666666664 + } + } }, { "season_code": "202303", @@ -104078,7 +220093,7 @@ "11:35", "12:50", "WLH 202 - William L. Harkness Hall 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -104086,7 +220101,7 @@ "11:35", "12:50", "WLH 202 - William L. Harkness Hall 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -104104,10 +220119,111 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88536\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88536/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988428354263306, + 0.9988657236099243, + 0.9989054203033447, + 0.9988631010055542, + 0.9973165392875671, + 0.9986991882324219, + 0.9986568689346313 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.998880922794342, + 0.9989331364631653, + 0.9989376664161682, + 0.999352753162384 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989342093467712, + 0.9989264607429504, + 0.99892657995224, + 0.9988528490066528, + 0.9951021671295166, + 0.9924430251121521 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 0.8823529411764706, + "final_counts": { + "POSITIVE": 15, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8823529411764706, + "NEGATIVE": 0.11764705882352941 + } + } }, { "season_code": "202303", @@ -104144,7 +220260,7 @@ "9:00", "10:15", "LC 103 - Linsly-Chittenden Hall 103", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -104152,7 +220268,7 @@ "9:00", "10:15", "LC 103 - Linsly-Chittenden Hall 103", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -104170,10 +220286,61 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89268\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89268/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988896250724792 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984942674636841 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 2, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 2 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -104210,7 +220377,7 @@ "9:00", "10:15", "LC 105 - Linsly-Chittenden Hall 105", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -104218,7 +220385,7 @@ "9:00", "10:15", "LC 105 - Linsly-Chittenden Hall 105", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -104236,10 +220403,103 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89269\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89269/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985477328300476, + 0.9988263249397278, + 0.9988903403282166, + 0.998891294002533, + 0.9989225268363953 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986995458602905, + 0.9988983869552612, + 0.9989293217658997, + 0.9989001750946045, + 0.998927891254425 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989150762557983, + 0.9988328814506531, + 0.9989084005355835, + 0.9989252686500549 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 14 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -104276,7 +220536,7 @@ "14:30", "15:45", "LC 318 - Linsly-Chittenden Hall 318", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -104284,7 +220544,7 @@ "14:30", "15:45", "LC 318 - Linsly-Chittenden Hall 318", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -104302,10 +220562,99 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89270\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89270/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987921118736267, + 0.9988271594047546, + 0.9988226294517517, + 0.9988762736320496 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989088773727417, + 0.9987887740135193, + 0.9988538026809692 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988904595375061, + 0.9885227680206299, + 0.9988699555397034, + 0.9988540410995483 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 0.9090909090909091, + "final_counts": { + "POSITIVE": 10, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + } + } }, { "season_code": "202303", @@ -104342,7 +220691,7 @@ "9:00", "10:15", "LC 210 - Linsly-Chittenden Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -104350,7 +220699,7 @@ "9:00", "10:15", "LC 210 - Linsly-Chittenden Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -104366,10 +220715,123 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88537\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88537/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998814582824707, + 0.9988852143287659, + 0.9988844990730286, + 0.998775064945221, + 0.9988890290260315, + 0.9984567165374756, + 0.9988662004470825, + 0.9987108707427979 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989305138587952, + 0.9989042282104492, + 0.998927652835846, + 0.9988873600959778, + 0.998376727104187, + 0.9985664486885071, + 0.9989332556724548, + 0.9988937973976135 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989064931869507, + 0.9989338517189026, + 0.9989070892333984, + 0.9989239573478699, + 0.9977954626083374, + 0.9988971948623657, + 0.9989136457443237, + 0.9989169836044312 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 24, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 24 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -104406,7 +220868,7 @@ "9:00", "10:15", "LC 208 - Linsly-Chittenden Hall 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -104414,7 +220876,7 @@ "9:00", "10:15", "LC 208 - Linsly-Chittenden Hall 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -104430,10 +220892,123 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89271\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89271/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988011121749878, + 0.9987888932228088, + 0.9989140033721924, + 0.9989073276519775, + 0.998881995677948, + 0.9989226460456848, + 0.9988740086555481 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989277720451355, + 0.9986681938171387, + 0.9985851049423218, + 0.9988054037094116, + 0.9989262223243713, + 0.9987980127334595, + 0.9989339709281921, + 0.9989004135131836 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989339709281921, + 0.998917818069458, + 0.997117280960083, + 0.9989131689071655, + 0.9989325404167175, + 0.9977211356163025, + 0.9986080527305603, + 0.9989370703697205 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "final_label": "POSITIVE", + "final_count": 21, + "final_proportion": 0.9130434782608695, + "final_counts": { + "POSITIVE": 21, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9130434782608695, + "NEGATIVE": 0.08695652173913043 + } + } }, { "season_code": "202303", @@ -104473,7 +221048,7 @@ "14:30", "15:45", "LC 209 - Linsly-Chittenden Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -104481,7 +221056,7 @@ "14:30", "15:45", "LC 209 - Linsly-Chittenden Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -104497,10 +221072,123 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88538\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88538/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989283680915833, + 0.9980698227882385, + 0.9989109039306641, + 0.9989012479782104, + 0.9989288449287415, + 0.9989268183708191, + 0.9988389611244202, + 0.9987667798995972 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989386200904846, + 0.9989200830459595, + 0.9986739158630371, + 0.998127281665802, + 0.9988141059875488, + 0.99893718957901, + 0.9989105463027954, + 0.9989297986030579 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989369511604309, + 0.9975807666778564, + 0.9989223480224609, + 0.9989076852798462, + 0.9989245533943176, + 0.998906135559082, + 0.9988064765930176, + 0.9989016056060791 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 24, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 24 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -104538,7 +221226,7 @@ "13:00", "14:15", "WLH 001 - William L. Harkness Hall 001", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -104546,7 +221234,7 @@ "13:00", "14:15", "WLH 001 - William L. Harkness Hall 001", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -104562,10 +221250,89 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88539\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88539/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986720085144043, + 0.9986802935600281 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989331364631653, + 0.9986866116523743 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998340368270874, + 0.9989053010940552, + 0.998902440071106 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 7 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -104606,7 +221373,7 @@ "11:35", "12:50", "LC 209 - Linsly-Chittenden Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -104614,7 +221381,7 @@ "11:35", "12:50", "LC 209 - Linsly-Chittenden Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -104632,10 +221399,115 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89648\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89648/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987421631813049, + 0.9985588192939758, + 0.9986642599105835, + 0.9986306428909302, + 0.9987571239471436, + 0.9988455772399902, + 0.9986991882324219 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9978771209716797, + 0.9988460540771484, + 0.9988961219787598, + 0.9989224672317505, + 0.9988743662834167 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989064931869507, + 0.997453510761261, + 0.9988991022109985, + 0.9988448619842529, + 0.9980862140655518, + 0.9989029169082642, + 0.9989354014396667, + 0.9987841248512268 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 20 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -104678,7 +221550,7 @@ "10:30", "11:20", "LC 317 - Linsly-Chittenden Hall 317", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -104686,7 +221558,7 @@ "10:30", "11:20", "LC 317 - Linsly-Chittenden Hall 317", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -104705,10 +221577,107 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89272\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89272/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983270764350891, + 0.9988164901733398, + 0.9979806542396545, + 0.9987630844116211 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9983147382736206, + 0.9988991022109985, + 0.9994614720344543, + 0.9976310729980469, + 0.9976523518562317 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.6, + "POSITIVE": 0.4 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.6 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9994681477546692, + 0.9970071911811829, + 0.9857144951820374, + 0.998894989490509, + 0.9994803071022034, + 0.9983184337615967 + ], + "sentiment_counts": { + "NEGATIVE": 4, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.6666666666666666, + "POSITIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.6666666666666666 + ] + }, + "final_label": "neutral", + "final_count": 8, + "final_proportion": 0.5, + "final_counts": { + "POSITIVE": 8, + "NEGATIVE": 7 + }, + "final_distribution": { + "POSITIVE": 0.5333333333333333, + "NEGATIVE": 0.4666666666666667 + } + } }, { "season_code": "202303", @@ -104742,7 +221711,7 @@ "11:35", "12:25", "HQ 123 - Humanities Quadrangle 123", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -104764,7 +221733,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -104798,7 +221795,7 @@ "13:30", "14:20", "WLH 209 - William L. Harkness Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -104820,7 +221817,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -104884,7 +221909,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -104921,7 +221974,7 @@ "10:30", "11:20", "GR109 ROSENFELD - 109 Grove Street ROSENFELD", - "https:\/\/map.yale.edu\/?id=1910#!m\/560109" + "https://map.yale.edu/?id=1910#!m/560109" ] ], "Thursday": [ @@ -104929,7 +221982,7 @@ "10:30", "11:20", "GR109 ROSENFELD - 109 Grove Street ROSENFELD", - "https:\/\/map.yale.edu\/?id=1910#!m\/560109" + "https://map.yale.edu/?id=1910#!m/560109" ] ] }, @@ -104947,10 +222000,161 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89273\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89273/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988792538642883, + 0.9984564781188965, + 0.9988226294517517, + 0.9989174604415894, + 0.998836100101471, + 0.9989204406738281, + 0.9988712668418884, + 0.998923122882843, + 0.9989198446273804, + 0.9989098310470581, + 0.9989218711853027, + 0.9988804459571838, + 0.9989215135574341 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987866282463074, + 0.9982311129570007, + 0.9988040924072266, + 0.9885756373405457, + 0.9989051818847656, + 0.9989026784896851, + 0.9989051818847656, + 0.9988982677459717, + 0.9984136819839478, + 0.9989283680915833, + 0.9989288449287415, + 0.9988836646080017, + 0.9987205266952515 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988957643508911, + 0.9988777041435242, + 0.9985305070877075, + 0.9987801909446716, + 0.9989138841629028, + 0.9974954724311829, + 0.9989093542098999, + 0.998751163482666, + 0.998930037021637, + 0.998875081539154, + 0.9985358715057373, + 0.9989099502563477, + 0.9984499216079712, + 0.9988828301429749, + 0.9958959817886353, + 0.9928474426269531 + ], + "sentiment_counts": { + "POSITIVE": 15, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9375, + "NEGATIVE": 0.0625 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9375 + ] + }, + "final_label": "POSITIVE", + "final_count": 41, + "final_proportion": 0.9761904761904762, + "final_counts": { + "POSITIVE": 41, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9761904761904762, + "NEGATIVE": 0.023809523809523808 + } + } }, { "season_code": "202303", @@ -104981,7 +222185,7 @@ "13:30", "14:20", "YK220 002 - 220 York Street 002", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ] }, @@ -105002,7 +222206,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -105033,7 +222265,7 @@ "13:30", "14:20", "WTS A38 - Watson Center 60 Sachem Street A38", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -105054,7 +222286,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -105085,7 +222345,7 @@ "16:00", "16:50", "LC 318 - Linsly-Chittenden Hall 318", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -105106,7 +222366,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -105137,7 +222425,7 @@ "16:00", "16:50", "WLH 115 - William L. Harkness Hall 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -105158,7 +222446,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -105200,7 +222516,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -105238,7 +222582,7 @@ "13:30", "14:20", "LC 101 - Linsly-Chittenden Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -105246,7 +222590,7 @@ "13:30", "14:20", "LC 101 - Linsly-Chittenden Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -105257,17 +222601,154 @@ "Hu" ], "flags": [ - "YC English: 20th\/21st Century" + "YC English: 20th/21st Century" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89274\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89274/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989070892333984, + 0.9989297986030579, + 0.9989124536514282, + 0.9987737536430359, + 0.9987819790840149, + 0.9989067316055298, + 0.9987719655036926, + 0.9985857009887695, + 0.9988381266593933, + 0.9986152648925781, + 0.9987121820449829 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9702361226081848, + 0.9928247928619385, + 0.9989111423492432, + 0.998832643032074, + 0.99834144115448, + 0.9987624883651733, + 0.9988995790481567, + 0.9988975524902344, + 0.995905876159668, + 0.9988681077957153 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 8 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2, + "POSITIVE": 0.8 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989205598831177, + 0.998524010181427, + 0.9988622665405273, + 0.9953398704528809, + 0.9983460903167725, + 0.9989340901374817, + 0.9989191293716431, + 0.9893873929977417, + 0.9988679885864258, + 0.9982877373695374, + 0.998815655708313, + 0.9982688426971436, + 0.9981327652931213, + 0.9983333945274353 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "final_label": "POSITIVE", + "final_count": 31, + "final_proportion": 0.8857142857142857, + "final_counts": { + "POSITIVE": 31, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.8857142857142857, + "NEGATIVE": 0.11428571428571428 + } + } }, { "season_code": "202303", @@ -105299,7 +222780,7 @@ "11:35", "12:25", "BM 013 - Bingham Hall 013", - "https:\/\/map.yale.edu\/?id=1910#!m\/559569" + "https://map.yale.edu/?id=1910#!m/559569" ] ] }, @@ -105310,7 +222791,7 @@ "Hu" ], "flags": [ - "YC English: 20th\/21st Century" + "YC English: 20th/21st Century" ], "regnotes": "", "rp_attr": "", @@ -105320,7 +222801,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -105352,7 +222861,7 @@ "13:30", "14:20", "WLH 004 - William L. Harkness Hall 004", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -105363,7 +222872,7 @@ "Hu" ], "flags": [ - "YC English: 20th\/21st Century" + "YC English: 20th/21st Century" ], "regnotes": "", "rp_attr": "", @@ -105373,7 +222882,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -105405,7 +222942,7 @@ "16:00", "16:50", "WLH 004 - William L. Harkness Hall 004", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -105416,7 +222953,7 @@ "Hu" ], "flags": [ - "YC English: 20th\/21st Century" + "YC English: 20th/21st Century" ], "regnotes": "", "rp_attr": "", @@ -105426,7 +222963,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -105458,7 +223023,7 @@ "17:00", "17:50", "WLH 115 - William L. Harkness Hall 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -105469,7 +223034,7 @@ "Hu" ], "flags": [ - "YC English: 20th\/21st Century" + "YC English: 20th/21st Century" ], "regnotes": "", "rp_attr": "", @@ -105479,7 +223044,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -105511,7 +223104,7 @@ "16:30", "17:20", "WLH 004 - William L. Harkness Hall 004", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -105522,7 +223115,7 @@ "Hu" ], "flags": [ - "YC English: 20th\/21st Century" + "YC English: 20th/21st Century" ], "regnotes": "", "rp_attr": "", @@ -105532,7 +223125,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -105572,7 +223193,7 @@ "14:30", "15:45", "LC 204 - Linsly-Chittenden Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -105580,7 +223201,7 @@ "14:30", "15:45", "LC 204 - Linsly-Chittenden Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -105600,10 +223221,87 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89647\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89647/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986574649810791, + 0.9988542795181274 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.997345507144928, + 0.998895525932312 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9968374967575073, + 0.9988742470741272 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 6 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -105641,7 +223339,7 @@ "13:30", "17:20", "YK220 101 - 220 York Street 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ] }, @@ -105657,10 +223355,115 @@ "classnotes": "THST 315 aims to build the actor\u2019s comprehension and confidence in Shakespeare\u2019s language while developing each artist\u2019s emotional, intellectual, and imaginative responsiveness to the demands and joys of acting Shakespeare. At the same time, we will explore how, as theater artists, we each bring our own history and psyche to Shakespeare\u2019s stories and characters so they may still speak to us and to our audiences today.\n\n\nHere are the steps to follow if you are interested in THST 315: \n(1) Set up an audition by emailing Daniela Varon, (2) Request permission to enroll in YCS, and (3) Add the course in Canvas to look over the course description, materials, etc.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88730\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88730/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988563060760498, + 0.9988881945610046, + 0.9989239573478699, + 0.9988415837287903, + 0.9989092350006104, + 0.9989228844642639 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989258646965027, + 0.9989105463027954, + 0.9987492561340332, + 0.9988270401954651, + 0.9978502988815308, + 0.9988942742347717, + 0.9989350438117981 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986012578010559, + 0.998932421207428, + 0.9981535077095032, + 0.9988724589347839, + 0.9988014698028564, + 0.9984952211380005, + 0.9988962411880493 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 20 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -105698,7 +223501,7 @@ "14:30", "15:45", "WLH 002 - William L. Harkness Hall 002", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -105706,7 +223509,7 @@ "14:30", "15:45", "WLH 002 - William L. Harkness Hall 002", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -105721,13 +223524,92 @@ ], "regnotes": "", "rp_attr": "", - "classnotes": "This course may satisfy the 18th\/19th or 20th\/21st Century requirement for English majors with permission from the instructor and the DUS. The English Distribution Request Form is available at https:\/\/english.yale.edu\/undergraduate\/deadlines-and-forms.", + "classnotes": "This course may satisfy the 18th/19th or 20th/21st Century requirement for English majors with permission from the instructor and the DUS. The English Distribution Request Form is available at https://english.yale.edu/undergraduate/deadlines-and-forms.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89649\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89649/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989251494407654, + 0.9988884329795837 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989253878593445, + 0.9989187717437744 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988260865211487, + 0.9989264607429504, + 0.9988991022109985 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 7 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -105765,7 +223647,7 @@ "11:35", "12:50", "WLH 202 - William L. Harkness Hall 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -105773,7 +223655,7 @@ "11:35", "12:50", "WLH 202 - William L. Harkness Hall 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -105782,7 +223664,7 @@ "Hu" ], "flags": [ - "YC English: 20th\/21st Century", + "YC English: 20th/21st Century", "YC English: Junior Seminar" ], "regnotes": "", @@ -105790,10 +223672,119 @@ "classnotes": "", "final_exam": "Sunday, December 17, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88057\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88057/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989271759986877, + 0.9988470077514648, + 0.9988693594932556, + 0.9988732933998108, + 0.9989203214645386, + 0.9927791953086853 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985398054122925, + 0.9988669157028198, + 0.9989345669746399, + 0.9989222288131714, + 0.9988033771514893, + 0.9988985061645508, + 0.9986347556114197, + 0.9989186525344849 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988665580749512, + 0.9989246726036072, + 0.9908938407897949, + 0.9989122152328491, + 0.9989355206489563, + 0.9988868832588196, + 0.9989118576049805, + 0.9987643957138062 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 22, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 22 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -105832,7 +223823,7 @@ "12:00", "15:00", "BRBL - BRBL", - "https:\/\/map.yale.edu\/?id=1910#!m\/531533" + "https://map.yale.edu/?id=1910#!m/531533" ] ] }, @@ -105844,7 +223835,7 @@ ], "flags": [ "YC AMST: Junior Seminars", - "YC English: 20th\/21st Century", + "YC English: 20th/21st Century", "YC English: Junior Seminar" ], "regnotes": "", @@ -105852,10 +223843,111 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89489\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89489/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989125728607178, + 0.9989162683486938, + 0.9988430738449097, + 0.9989159107208252, + 0.9989309906959534 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.99885094165802, + 0.998633086681366, + 0.9989224672317505, + 0.9988797307014465, + 0.9989097118377686 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989286065101624, + 0.9989244341850281, + 0.9989396929740906, + 0.9988844990730286, + 0.9989045858383179, + 0.9988904595375061, + 0.9989011287689209 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 0.9411764705882353, + "final_counts": { + "POSITIVE": 16, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9411764705882353, + "NEGATIVE": 0.058823529411764705 + } + } }, { "season_code": "202303", @@ -105893,7 +223985,7 @@ "9:25", "11:15", "LC 207 - Linsly-Chittenden Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -105912,10 +224004,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89650\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89650/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -105954,7 +224074,7 @@ "15:30", "17:20", "RKZ 02 - Rosenkranz Hall 02", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -105963,21 +224083,132 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", - "YC English: 20th\/21st Century", + "YC English: 20th/21st Century", "YC English: Junior Seminar", "YC PLSC: American Govt" ], "regnotes": "", "rp_attr": "", - "classnotes": "This course requires instructor permission. It is available only to upper-class students. Journalism experience is not required. However excellent writing skills are essential. Applicants must submit the following: Class\/Major\/GPA\/Previous related courses or experience\/paragraph stating the basis of your interest in this course.", + "classnotes": "This course requires instructor permission. It is available only to upper-class students. Journalism experience is not required. However excellent writing skills are essential. Applicants must submit the following: Class/Major/GPA/Previous related courses or experience/paragraph stating the basis of your interest in this course.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89038\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89038/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988344311714172, + 0.9988247752189636, + 0.998836100101471, + 0.9989027976989746, + 0.9989182949066162, + 0.9988915324211121, + 0.998763918876648 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983536005020142, + 0.9989163875579834, + 0.9988166093826294, + 0.9988476037979126, + 0.9983481168746948, + 0.9989200830459595, + 0.9989365935325623, + 0.9989151954650879 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986491799354553, + 0.9989094734191895, + 0.9989135265350342, + 0.9988943934440613, + 0.9951733946800232, + 0.9989062547683716, + 0.998928964138031, + 0.9943826198577881 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 23, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 23 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -106015,7 +224246,7 @@ "11:35", "12:50", "LC 319 - Linsly-Chittenden Hall 319", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -106023,7 +224254,7 @@ "11:35", "12:50", "LC 319 - Linsly-Chittenden Hall 319", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -106034,7 +224265,7 @@ "Hu" ], "flags": [ - "YC English: 18th\/19th Century ", + "YC English: 18th/19th Century ", "YC English: Junior Seminar" ], "regnotes": "", @@ -106042,10 +224273,87 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89301\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89301/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989196062088013 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989256262779236, + 0.998855710029602, + 0.9989373087882996 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988960027694702, + 0.9989319443702698 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 6 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -106086,7 +224394,7 @@ "11:35", "12:50", "LC 213 - Linsly-Chittenden Hall 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -106094,7 +224402,7 @@ "11:35", "12:50", "LC 213 - Linsly-Chittenden Hall 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -106105,7 +224413,7 @@ "Hu" ], "flags": [ - "YC English: 18th\/19th Century ", + "YC English: 18th/19th Century ", "YC English: Junior Seminar" ], "regnotes": "", @@ -106113,10 +224421,103 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89490\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89490/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988678693771362, + 0.9988947510719299, + 0.9988542795181274, + 0.9988831877708435 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989194869995117, + 0.9989294409751892, + 0.9984079003334045, + 0.9988424181938171, + 0.9989364743232727 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989339709281921, + 0.9988778233528137, + 0.9989098310470581, + 0.9989124536514282, + 0.9989086389541626 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 14 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -106153,7 +224554,7 @@ "9:00", "10:15", "LC 210 - Linsly-Chittenden Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -106161,7 +224562,7 @@ "9:00", "10:15", "LC 210 - Linsly-Chittenden Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -106172,7 +224573,7 @@ "Hu" ], "flags": [ - "YC English: 18th\/19th Century ", + "YC English: 18th/19th Century ", "YC English: Junior Seminar" ], "regnotes": "", @@ -106180,10 +224581,141 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89651\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89651/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988217949867249, + 0.9988328814506531, + 0.9987474679946899, + 0.9987890124320984, + 0.9986411929130554, + 0.9987799525260925, + 0.9987900853157043, + 0.9988798499107361, + 0.9988777041435242, + 0.9989263415336609 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988687634468079, + 0.9989107847213745, + 0.9981157779693604, + 0.9989087581634521, + 0.9988102912902832, + 0.9989257454872131, + 0.9989171028137207, + 0.9989243149757385, + 0.9939305782318115, + 0.9989104270935059, + 0.9988443851470947 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982991814613342, + 0.9989109039306641, + 0.9989010095596313, + 0.9989355206489563, + 0.9981487989425659, + 0.9946324825286865, + 0.9989262223243713, + 0.9989233613014221, + 0.9988887906074524, + 0.998903751373291, + 0.9989161491394043 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9090909090909091 + ] + }, + "final_label": "POSITIVE", + "final_count": 31, + "final_proportion": 0.96875, + "final_counts": { + "POSITIVE": 31, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.96875, + "NEGATIVE": 0.03125 + } + } }, { "season_code": "202303", @@ -106220,7 +224752,7 @@ "15:30", "17:20", "LC 212 - Linsly-Chittenden Hall 212", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -106231,7 +224763,7 @@ "Hu" ], "flags": [ - "YC English: 20th\/21st Century", + "YC English: 20th/21st Century", "YC English: Senior Seminar" ], "regnotes": "", @@ -106239,10 +224771,107 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90589\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90589/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985145926475525, + 0.9987824559211731, + 0.9988740086555481, + 0.9989153146743774 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998957633972168, + 0.9988549947738647, + 0.9988999366760254, + 0.9979617595672607, + 0.9987803101539612 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.4, + "POSITIVE": 0.6 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9995125532150269, + 0.9941082000732422, + 0.998932421207428, + 0.9988608360290527, + 0.9988756775856018, + 0.9989142417907715 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 5 + }, + "sentiment_distribution": { + "NEGATIVE": 0.16666666666666666, + "POSITIVE": 0.8333333333333334 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 0.8, + "final_counts": { + "POSITIVE": 12, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + } + } }, { "season_code": "202303", @@ -106280,7 +224909,7 @@ "13:30", "15:20", "WLH 112 - William L. Harkness Hall 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -106289,7 +224918,7 @@ "Hu" ], "flags": [ - "YC English: 18th\/19th Century ", + "YC English: 18th/19th Century ", "YC English: Junior Seminar" ], "regnotes": "", @@ -106297,10 +224926,107 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89498\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89498/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998744010925293, + 0.9987805485725403, + 0.9987375140190125, + 0.9988963603973389, + 0.9988946318626404 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986785054206848, + 0.9933604598045349, + 0.9989393353462219, + 0.9988259673118591, + 0.99893718957901 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988201260566711, + 0.9978093504905701, + 0.9988658428192139, + 0.9988566637039185, + 0.9988295435905457, + 0.9989174604415894 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 16 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -106338,7 +225064,7 @@ "11:35", "12:50", "LC 210 - Linsly-Chittenden Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -106346,7 +225072,7 @@ "11:35", "12:50", "LC 210 - Linsly-Chittenden Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -106358,7 +225084,7 @@ ], "flags": [ "YC AMST: Junior Seminars", - "YC English: 20th\/21st Century", + "YC English: 20th/21st Century", "YC English: Junior Seminar" ], "regnotes": "", @@ -106366,10 +225092,111 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89106\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89106/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988797307014465, + 0.9988874793052673, + 0.9988452196121216, + 0.9989251494407654, + 0.9989321827888489 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988787770271301, + 0.998896598815918, + 0.998889148235321, + 0.9988786578178406, + 0.9988608360290527, + 0.9989124536514282 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998892605304718, + 0.9989039897918701, + 0.9986831545829773, + 0.9988783001899719, + 0.9989184141159058, + 0.9989200830459595, + 0.9988597631454468 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 18 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -106406,7 +225233,7 @@ "13:30", "15:20", "LC 210 - Linsly-Chittenden Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -106421,13 +225248,88 @@ ], "regnotes": "", "rp_attr": "", - "classnotes": "This course may satisfy the 18th\/19th or 20th\/21st Century requirement for English majors with permission from the instructor and the DUS. The English Distribution Request Form is available at https:\/\/english.yale.edu\/undergraduate\/deadlines-and-forms.", + "classnotes": "This course may satisfy the 18th/19th or 20th/21st Century requirement for English majors with permission from the instructor and the DUS. The English Distribution Request Form is available at https://english.yale.edu/undergraduate/deadlines-and-forms.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89656\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89656/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988095760345459, + 0.9989149570465088 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9916139841079712 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988409876823425, + 0.9988297820091248 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 5, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 5 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -106466,7 +225368,7 @@ "9:25", "11:15", "HQ 313 - Humanities Quadrangle 313", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -106482,10 +225384,103 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90362\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90362/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987460374832153, + 0.9989262223243713, + 0.9981698989868164 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988895058631897, + 0.9989159107208252, + 0.9994282126426697, + 0.9989380240440369, + 0.998887836933136 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987872242927551, + 0.9988885521888733, + 0.9995037317276001, + 0.9988582134246826, + 0.998910665512085 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 0.8461538461538461, + "final_counts": { + "POSITIVE": 11, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8461538461538461, + "NEGATIVE": 0.15384615384615385 + } + } }, { "season_code": "202303", @@ -106522,7 +225517,7 @@ "13:30", "15:20", "LC 213 - Linsly-Chittenden Hall 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -106541,15 +225536,98 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89657\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89657/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989045858383179, + 0.998807430267334 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987668991088867, + 0.9989140033721924, + 0.9915502071380615 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989197254180908, + 0.9989396929740906, + 0.9994807839393616 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 0.875, + "final_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + } + } }, { "season_code": "202303", "requirements": "Open to junior and senior Theater Studies majors, and to nonmajors with permission of the instructor.", - "description": "Topics include the Living Theater, Happenings, Cunningham\/Cage, Open Theater, Judson Dance Theater, Grand Union, Bread and Puppet Theater, Ontological-Hysteric Theater, Meredith Monk, Mabou Mines, Robert Wilson, and the Wooster Group.", + "description": "Topics include the Living Theater, Happenings, Cunningham/Cage, Open Theater, Judson Dance Theater, Grand Union, Bread and Puppet Theater, Ontological-Hysteric Theater, Meredith Monk, Mabou Mines, Robert Wilson, and the Wooster Group.", "short_title": "American Experimental Theater", "title": "American Experimental Theater", "school": "YC", @@ -106582,7 +225660,7 @@ "13:30", "15:20", "LORIA B50 - Loria Center B50", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -106593,7 +225671,7 @@ "Hu" ], "flags": [ - "YC English: 20th\/21st Century", + "YC English: 20th/21st Century", "YC English: Senior Seminar", "YC: THST Histories", "YC: THST Performance Theory" @@ -106603,10 +225681,91 @@ "classnotes": "", "final_exam": "Saturday, December 16, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88736\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88736/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9980150461196899, + 0.998849630355835 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989272952079773, + 0.9988400340080261, + 0.9987019300460815 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989379048347473, + 0.9989249110221863, + 0.9982553124427795 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 8, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 8 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -106643,7 +225802,7 @@ "13:30", "15:20", "LC 213 - Linsly-Chittenden Hall 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -106654,7 +225813,7 @@ "Hu" ], "flags": [ - "YC English: 20th\/21st Century", + "YC English: 20th/21st Century", "YC English: Senior Seminar" ], "regnotes": "", @@ -106662,10 +225821,93 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89658\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89658/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988858103752136, + 0.9988221526145935 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9973965883255005, + 0.9989357590675354, + 0.9470162987709045 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989261031150818, + 0.9989211559295654, + 0.9989132881164551, + 0.998927891254425 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 9 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -106702,7 +225944,7 @@ "13:30", "15:20", "LC 213 - Linsly-Chittenden Hall 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -106711,7 +225953,7 @@ "Hu" ], "flags": [ - "YC English: 20th\/21st Century", + "YC English: 20th/21st Century", "YC English: Senior Seminar" ], "regnotes": "", @@ -106719,10 +225961,111 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89659\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89659/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989007711410522, + 0.9917165637016296, + 0.9988662004470825, + 0.9989000558853149, + 0.9988886713981628, + 0.9983067512512207 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9834780097007751, + 0.9988596439361572, + 0.9988540410995483, + 0.9988697171211243, + 0.9986165761947632 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989320635795593, + 0.9989131689071655, + 0.9989320635795593, + 0.9989129304885864, + 0.9989308714866638, + 0.9989176988601685, + 0.9989277720451355 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 18 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -106759,7 +226102,7 @@ "13:00", "14:15", "LC 210 - Linsly-Chittenden Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -106767,7 +226110,7 @@ "13:00", "14:15", "LC 210 - Linsly-Chittenden Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -106776,7 +226119,7 @@ "Hu" ], "flags": [ - "YC English: 18th\/19th Century ", + "YC English: 18th/19th Century ", "YC English: Junior Seminar" ], "regnotes": "", @@ -106784,10 +226127,123 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89652\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89652/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988862872123718, + 0.9986440539360046, + 0.9983676075935364, + 0.9989084005355835, + 0.9988815188407898, + 0.9987749457359314, + 0.9989041090011597, + 0.9987469911575317 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9979656934738159, + 0.9965747594833374, + 0.9989128112792969, + 0.9989035129547119, + 0.9988621473312378, + 0.998881995677948, + 0.9987360835075378, + 0.9988724589347839 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986603260040283, + 0.9989141225814819, + 0.9988608360290527, + 0.9989283680915833, + 0.998908281326294, + 0.9987965822219849, + 0.9989168643951416, + 0.9989174604415894 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 24, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 24 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -106825,7 +226281,7 @@ "14:30", "15:45", "HQ 313 - Humanities Quadrangle 313", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -106833,7 +226289,7 @@ "14:30", "15:45", "HQ 313 - Humanities Quadrangle 313", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -106844,7 +226300,7 @@ "Hu" ], "flags": [ - "YC English: 20th\/21st Century", + "YC English: 20th/21st Century", "YC English: Junior Seminar", "YC ER&M: Elect within the Major", "YC ER&M: Methods Course" @@ -106854,10 +226310,99 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89356\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89356/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987331032752991, + 0.9989171028137207, + 0.9989175796508789, + 0.9989011287689209 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988669157028198, + 0.998853325843811, + 0.9989325404167175, + 0.9989227652549744 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989330172538757, + 0.9989376664161682, + 0.9988116025924683, + 0.9989343285560608 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 12 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -106897,7 +226442,7 @@ "14:30", "15:45", "LC 209 - Linsly-Chittenden Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -106905,7 +226450,7 @@ "14:30", "15:45", "LC 209 - Linsly-Chittenden Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -106923,10 +226468,113 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89343\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89343/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9974373579025269, + 0.9987890124320984, + 0.9988380074501038, + 0.9987541437149048, + 0.9989184141159058, + 0.9923685193061829 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9993056058883667, + 0.998877227306366, + 0.9989055395126343, + 0.9983024597167969, + 0.9989049434661865 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 4 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2, + "POSITIVE": 0.8 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.998906135559082, + 0.9827965497970581, + 0.9986029267311096, + 0.9988454580307007, + 0.9987548589706421, + 0.9988775849342346, + 0.9953162670135498 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 0.8888888888888888, + "final_counts": { + "POSITIVE": 16, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + } + } }, { "season_code": "202303", @@ -106963,7 +226611,7 @@ "15:30", "17:20", "LC 212 - Linsly-Chittenden Hall 212", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -106979,10 +226627,103 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88540\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88540/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998427152633667, + 0.9989193677902222, + 0.9988600015640259, + 0.9989031553268433 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998903751373291, + 0.9971677660942078, + 0.9989198446273804, + 0.9988954067230225, + 0.998646080493927 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.997581958770752, + 0.9989093542098999, + 0.9989110231399536, + 0.9987316727638245, + 0.9988258481025696 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 14 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -107019,7 +226760,7 @@ "14:30", "15:45", "LC 105 - Linsly-Chittenden Hall 105", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -107027,7 +226768,7 @@ "14:30", "15:45", "LC 105 - Linsly-Chittenden Hall 105", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -107043,10 +226784,101 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88043\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88043/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986937642097473, + 0.9987200498580933, + 0.9989126920700073, + 0.9988644123077393 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989132881164551, + 0.9987767338752747, + 0.9988961219787598, + 0.9988691210746765 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988906979560852, + 0.9987439513206482, + 0.9988960027694702, + 0.9988816380500793, + 0.9988996982574463 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 13 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -107083,7 +226915,7 @@ "13:30", "15:20", "LC 103 - Linsly-Chittenden Hall 103", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -107097,10 +226929,101 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88046\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88046/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987000226974487, + 0.998833954334259, + 0.9988430738449097, + 0.9987780451774597 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989081621170044, + 0.9989367127418518, + 0.9989013671875, + 0.9989393353462219 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988594055175781, + 0.9989286065101624, + 0.9979138970375061, + 0.9987539052963257, + 0.9989109039306641 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 13 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -107137,7 +227060,7 @@ "15:30", "17:20", "LC 213 - Linsly-Chittenden Hall 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -107148,13 +227071,94 @@ ], "regnotes": "", "rp_attr": "This course meets during the Reading Period: the week between the last week of classes and finals week. Meets Reading Period", - "classnotes": "See the English department website for a list of creative writing and journalism courses that require the submission of an application by noon on April 5. https:\/\/english.yale.edu\/undergraduate\/courses\/creative-writing-journalism-courses", + "classnotes": "See the English department website for a list of creative writing and journalism courses that require the submission of an application by noon on April 5. https://english.yale.edu/undergraduate/courses/creative-writing-journalism-courses", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88049\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88049/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988184571266174, + 0.9961330890655518 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987722039222717, + 0.9987566471099854 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989263415336609, + 0.9936135411262512, + 0.9988952279090881, + 0.9983741044998169 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 8, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 8 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -107191,7 +227195,7 @@ "13:30", "15:20", "LC 206 - Linsly-Chittenden Hall 206", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -107205,10 +227209,119 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90222\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90222/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989320635795593, + 0.9989354014396667, + 0.9988798499107361, + 0.9988148212432861, + 0.998933732509613, + 0.9988584518432617 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988250136375427, + 0.9977211356163025, + 0.9988616704940796, + 0.9988664388656616, + 0.991072952747345, + 0.9972902536392212, + 0.9988295435905457 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.7142857142857143, + "NEGATIVE": 0.2857142857142857 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7142857142857143 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989259839057922, + 0.9989332556724548, + 0.9987999200820923, + 0.9989033937454224, + 0.99888676404953, + 0.9989042282104492, + 0.9988986253738403, + 0.9988790154457092 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 0.9047619047619048, + "final_counts": { + "POSITIVE": 19, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9047619047619048, + "NEGATIVE": 0.09523809523809523 + } + } }, { "season_code": "202303", @@ -107245,7 +227358,7 @@ "13:30", "15:20", "LC 212 - Linsly-Chittenden Hall 212", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -107259,10 +227372,89 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90223\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90223/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987418055534363, + 0.998930037021637, + 0.9987792372703552 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988133907318115, + 0.9986802935600281 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988923668861389, + 0.9982104301452637 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 7 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -107300,7 +227492,7 @@ "9:25", "11:15", "LC 213 - Linsly-Chittenden Hall 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -107318,10 +227510,111 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88213\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88213/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988372921943665, + 0.9985508322715759, + 0.9986360669136047, + 0.9987626075744629, + 0.9987894892692566, + 0.9989123344421387 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989297986030579, + 0.9989336133003235, + 0.9954427480697632, + 0.998808741569519, + 0.9989076852798462, + 0.9988954067230225 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989308714866638, + 0.9988963603973389, + 0.9989342093467712, + 0.9982084035873413, + 0.9988651275634766, + 0.9989011287689209 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 18 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -107360,7 +227653,7 @@ "11:35", "12:50", "LC 210 - Linsly-Chittenden Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -107368,7 +227661,7 @@ "11:35", "12:50", "LC 210 - Linsly-Chittenden Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -107387,11 +227680,90 @@ "rp_attr": "", "classnotes": "", "final_exam": "No regular final examination", - "course_home_url": "https:\/\/yale.instructure.com\/courses\/88053", + "course_home_url": "https://yale.instructure.com/courses/88053", "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989147186279297, + 0.998907208442688 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988935589790344, + 0.9988746047019958 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989237189292908, + 0.9987202882766724, + 0.9989175796508789 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 7 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -107429,7 +227801,7 @@ "11:35", "12:50", "LC 212 - Linsly-Chittenden Hall 212", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -107437,7 +227809,7 @@ "11:35", "12:50", "LC 212 - Linsly-Chittenden Hall 212", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -107451,10 +227823,91 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89501\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89501/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986528158187866, + 0.9985073208808899 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9976534247398376, + 0.9988527297973633, + 0.9989251494407654 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989129304885864, + 0.9962040781974792, + 0.9986907839775085 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 8, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 8 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -107491,7 +227944,7 @@ "15:30", "17:20", "LC 213 - Linsly-Chittenden Hall 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -107505,10 +227958,97 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88060\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88060/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988396763801575, + 0.9987725615501404, + 0.998356282711029, + 0.9989218711853027 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989206790924072, + 0.9988473653793335, + 0.9989075660705566 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988771080970764, + 0.9989087581634521, + 0.9971445202827454, + 0.9988861680030823 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 11 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -107546,7 +228086,7 @@ "15:30", "17:20", "ELM294 303 - Broadway Rehearsal Lofts 303", - "https:\/\/map.yale.edu\/?id=1910#!m\/559982" + "https://map.yale.edu/?id=1910#!m/559982" ] ] }, @@ -107564,10 +228104,113 @@ "classnotes": "M 3:30 \u2013 5:20 pm\n294 Elm, 303\n", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89017\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89017/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987372756004333, + 0.998492956161499, + 0.9977602958679199, + 0.9989340901374817, + 0.998897910118103, + 0.9987425208091736 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989031553268433, + 0.9971206784248352, + 0.9988670349121094, + 0.9989218711853027, + 0.9989174604415894, + 0.9987412095069885 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986398816108704, + 0.9979768395423889, + 0.9988110065460205, + 0.9988381266593933, + 0.9988981485366821, + 0.9988683462142944 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 0.9444444444444444, + "final_counts": { + "POSITIVE": 17, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9444444444444444, + "NEGATIVE": 0.05555555555555555 + } + } }, { "season_code": "202303", @@ -107604,7 +228247,7 @@ "13:30", "15:20", "LC 206 - Linsly-Chittenden Hall 206", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -107616,14 +228259,117 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88065\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88065/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "A serious interest in the contemporary practice of publication. Prospective students need not have taken a creative writing class; rather, they might have backgrounds in student publications on campus, or a background with literature, podcasting, art and art history, technology, and\/or film.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988433122634888, + 0.9987044334411621, + 0.998782217502594, + 0.9989235997200012, + 0.9988182187080383 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9981487989425659, + 0.995692789554596, + 0.9988260865211487, + 0.9989112615585327, + 0.9989315867424011, + 0.999438464641571 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 4 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.99887615442276, + 0.9987896084785461, + 0.9988073110580444, + 0.9989125728607178, + 0.9989029169082642, + 0.9989156723022461, + 0.9987554550170898 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 0.8888888888888888, + "final_counts": { + "POSITIVE": 16, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + } + } + }, + { + "season_code": "202303", + "requirements": "A serious interest in the contemporary practice of publication. Prospective students need not have taken a creative writing class; rather, they might have backgrounds in student publications on campus, or a background with literature, podcasting, art and art history, technology, and/or film.", "description": "This course is an intensive practicum in which students are introduced to key aspects of the history and contemporary practice of professional editing and publication.\u00a0Under the instruction of the current editor of\u00a0The Yale Review\u00a0(which is undergoing a transformation and relaunching primarily as a digital publication) students look at many aspects of editing text across forms\u2014from magazine to newspaper to book editing. We also talk about the art of podcast editing and distinguish the demands of storytelling in audio from those of storytelling in print. Students do some coursework at\u00a0The Yale Review\u00a0and attend editorial meetings for hands-on professional editorial experience. Because text editing is inseparable from good reading students reading a lot. Through exchanges with weekly visitors, all of whom are experts in their field, students develop an array of hands-on skills and understand the full dimensionality of professional editing.", "short_title": "The Art of Editing", "title": "The Art of Editing", @@ -107654,13 +228400,41 @@ ], "regnotes": "", "rp_attr": "", - "classnotes": "See the English department website for a list of creative writing and journalism courses that require the submission of an application by noon on April 5. https:\/\/english.yale.edu\/undergraduate\/courses\/creative-writing-journalism-courses", + "classnotes": "See the English department website for a list of creative writing and journalism courses that require the submission of an application by noon on April 5. https://english.yale.edu/undergraduate/courses/creative-writing-journalism-courses", "final_exam": "No regular final examination", "course_home_url": "", "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -107698,7 +228472,7 @@ "13:30", "16:30", "LC 212 - Linsly-Chittenden Hall 212", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -107709,13 +228483,90 @@ ], "regnotes": "", "rp_attr": "This course meets during the Reading Period: the week between the last week of classes and finals week. Meets Reading Period", - "classnotes": "See the English department website for a list of creative writing and journalism courses that require the submission of an application by noon on April 5. https:\/\/english.yale.edu\/undergraduate\/courses\/creative-writing-journalism-courses", + "classnotes": "See the English department website for a list of creative writing and journalism courses that require the submission of an application by noon on April 5. https://english.yale.edu/undergraduate/courses/creative-writing-journalism-courses", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88070\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88070/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988276362419128 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988553524017334, + 0.9988194108009338 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.99888676404953, + 0.9982553124427795 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 4, + "final_proportion": 0.8, + "final_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + } + } }, { "season_code": "202303", @@ -107752,7 +228603,7 @@ "15:30", "17:20", "LC 213 - Linsly-Chittenden Hall 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -107763,13 +228614,122 @@ ], "regnotes": "", "rp_attr": "", - "classnotes": "See the English department website for a list of creative writing and journalism courses that require the submission of an application by noon on April 5. https:\/\/english.yale.edu\/undergraduate\/courses\/creative-writing-journalism-courses", + "classnotes": "See the English department website for a list of creative writing and journalism courses that require the submission of an application by noon on April 5. https://english.yale.edu/undergraduate/courses/creative-writing-journalism-courses", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88074\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88074/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988414645195007, + 0.9984447360038757, + 0.9983012080192566, + 0.9986868500709534, + 0.9986220598220825, + 0.9977139234542847, + 0.998680055141449 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985191226005554, + 0.9988442659378052, + 0.999372661113739, + 0.9988933205604553, + 0.998898983001709, + 0.9989050626754761, + 0.998883068561554 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998897910118103, + 0.9979820251464844, + 0.9995158910751343, + 0.9989233613014221, + 0.9989238381385803, + 0.9988864064216614, + 0.9989325404167175 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 0.9047619047619048, + "final_counts": { + "POSITIVE": 19, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9047619047619048, + "NEGATIVE": 0.09523809523809523 + } + } }, { "season_code": "202303", @@ -107806,7 +228766,7 @@ "13:30", "15:20", "LC 204 - Linsly-Chittenden Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -107817,13 +228777,102 @@ ], "regnotes": "", "rp_attr": "", - "classnotes": "See the English department website for a list of creative writing and journalism courses that require the submission of an application by noon on April 5. https:\/\/english.yale.edu\/undergraduate\/courses\/creative-writing-journalism-courses", + "classnotes": "See the English department website for a list of creative writing and journalism courses that require the submission of an application by noon on April 5. https://english.yale.edu/undergraduate/courses/creative-writing-journalism-courses", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88079\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88079/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989290833473206, + 0.9988706707954407, + 0.9982806444168091, + 0.998680055141449 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989326596260071, + 0.9988923668861389, + 0.9959422945976257, + 0.9988849759101868 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998863935470581, + 0.9989270567893982, + 0.9987819790840149, + 0.9989029169082642 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 12 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -107860,7 +228909,7 @@ "13:30", "15:20", "LC 204 - Linsly-Chittenden Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -107871,13 +228920,108 @@ ], "regnotes": "", "rp_attr": "", - "classnotes": "See the English department website for a list of creative writing and journalism courses that require the submission of an application by noon on April 5. https:\/\/english.yale.edu\/undergraduate\/courses\/creative-writing-journalism-courses", + "classnotes": "See the English department website for a list of creative writing and journalism courses that require the submission of an application by noon on April 5. https://english.yale.edu/undergraduate/courses/creative-writing-journalism-courses", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88083\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88083/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986104965209961, + 0.9989012479782104, + 0.9987629652023315, + 0.9989193677902222, + 0.9988264441490173 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988314509391785, + 0.9988839030265808, + 0.9989314675331116, + 0.9987881779670715, + 0.9988695979118347 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988136291503906, + 0.9989091157913208, + 0.9989194869995117, + 0.9986298084259033, + 0.9987983703613281 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 15 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -107914,7 +229058,7 @@ "9:00", "10:50", "LC 103 - Linsly-Chittenden Hall 103", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -107928,13 +229072,88 @@ ], "regnotes": "", "rp_attr": "", - "classnotes": "See the English department website for a list of creative writing and journalism courses that require the submission of an application by noon on April 5. https:\/\/english.yale.edu\/undergraduate\/courses\/creative-writing-journalism-courses", + "classnotes": "See the English department website for a list of creative writing and journalism courses that require the submission of an application by noon on April 5. https://english.yale.edu/undergraduate/courses/creative-writing-journalism-courses", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88088\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88088/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984692931175232, + 0.998921275138855 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986652135848999 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989192485809326, + 0.9988604784011841 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 5, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 5 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -107971,7 +229190,7 @@ "14:30", "17:30", "LC 212 - Linsly-Chittenden Hall 212", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -107986,13 +229205,114 @@ ], "regnotes": "", "rp_attr": "", - "classnotes": "See the English department website for a list of creative writing and journalism courses that require the submission of an application by noon on April 5. https:\/\/english.yale.edu\/undergraduate\/courses\/creative-writing-journalism-courses", + "classnotes": "See the English department website for a list of creative writing and journalism courses that require the submission of an application by noon on April 5. https://english.yale.edu/undergraduate/courses/creative-writing-journalism-courses", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88093\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88093/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9939192533493042, + 0.9988614320755005, + 0.9988515377044678, + 0.9987572431564331, + 0.9988813996315002, + 0.9989045858383179 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989043474197388, + 0.9989233613014221, + 0.9989356398582458, + 0.9989050626754761, + 0.9989126920700073, + 0.9988961219787598 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989263415336609, + 0.9989370703697205, + 0.9983572363853455, + 0.9988515377044678, + 0.9988963603973389, + 0.9989100694656372 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 18 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -108029,7 +229349,7 @@ "13:30", "15:20", "LC 213 - Linsly-Chittenden Hall 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -108042,13 +229362,120 @@ ], "regnotes": "", "rp_attr": "", - "classnotes": "See the English department website for a list of creative writing and journalism courses that require the submission of an application by noon on April 5. https:\/\/english.yale.edu\/undergraduate\/courses\/creative-writing-journalism-courses", + "classnotes": "See the English department website for a list of creative writing and journalism courses that require the submission of an application by noon on April 5. https://english.yale.edu/undergraduate/courses/creative-writing-journalism-courses", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88097\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88097/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989327788352966, + 0.9989005327224731, + 0.9989327788352966, + 0.9988402724266052, + 0.9988382458686829, + 0.9988546371459961 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989173412322998, + 0.9988149404525757, + 0.9988489151000977, + 0.9986860156059265, + 0.9988676309585571, + 0.9988817572593689, + 0.998923122882843 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989169836044312, + 0.9989307522773743, + 0.9988453388214111, + 0.9988883137702942, + 0.9975550770759583, + 0.9988915324211121, + 0.9988988637924194 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 0.95, + "final_counts": { + "POSITIVE": 19, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.95, + "NEGATIVE": 0.05 + } + } }, { "season_code": "202303", @@ -108086,7 +229513,7 @@ "15:30", "17:20", "YK220 101 - 220 York Street 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ], "Wednesday": [ @@ -108094,7 +229521,7 @@ "15:30", "17:20", "YK220 101 - 220 York Street 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ] }, @@ -108108,10 +229535,125 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88732\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88732/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998870313167572, + 0.998910665512085, + 0.9985364675521851, + 0.9987447261810303, + 0.9988110065460205, + 0.9989307522773743, + 0.9989073276519775 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988551139831543, + 0.9989319443702698, + 0.9960399866104126, + 0.998708963394165, + 0.9989287257194519, + 0.9989129304885864, + 0.9988872408866882 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987682700157166, + 0.9989016056060791, + 0.998938262462616, + 0.9988812804222107, + 0.9989345669746399, + 0.9988647699356079, + 0.9989020824432373, + 0.9989160299301147, + 0.998896598815918, + 0.9988431930541992 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 23, + "final_proportion": 0.9583333333333334, + "final_counts": { + "POSITIVE": 23, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9583333333333334, + "NEGATIVE": 0.041666666666666664 + } + } }, { "season_code": "202303", @@ -108148,7 +229690,7 @@ "9:25", "11:15", "LC 213 - Linsly-Chittenden Hall 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -108161,18 +229703,113 @@ ], "regnotes": "", "rp_attr": "", - "classnotes": "See the English department website for a list of creative writing and journalism courses that require the submission of an application by noon on April 5. https:\/\/english.yale.edu\/undergraduate\/courses\/creative-writing-journalism-courses", + "classnotes": "See the English department website for a list of creative writing and journalism courses that require the submission of an application by noon on April 5. https://english.yale.edu/undergraduate/courses/creative-writing-journalism-courses", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88102\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88102/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988433122634888, + 0.9985778331756592, + 0.998897910118103, + 0.9989186525344849 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998816967010498, + 0.9992903470993042, + 0.9267324805259705, + 0.9984057545661926, + 0.9988695979118347 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.6, + "NEGATIVE": 0.4 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988875985145569, + 0.9994542002677917, + 0.9987039566040039, + 0.9989098310470581, + 0.9907481074333191 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.6, + "NEGATIVE": 0.4 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 0.7142857142857143, + "final_counts": { + "POSITIVE": 10, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.7142857142857143, + "NEGATIVE": 0.2857142857142857 + } + } }, { "season_code": "202303", "requirements": "Prerequisites: two courses in writing.", - "description": "A writing tutorial in fiction, poetry, playwriting, screenwriting, or nonfiction for students who have already taken writing courses at the intermediate and advanced levels. Conducted with a faculty member after approval by the director of undergraduate studies. Proposals must be submitted to the DUS in the previous term; deadlines and instructions are posted at https:\/\/english.yale.edu\/undergraduate\/courses\/independent-study-courses.", + "description": "A writing tutorial in fiction, poetry, playwriting, screenwriting, or nonfiction for students who have already taken writing courses at the intermediate and advanced levels. Conducted with a faculty member after approval by the director of undergraduate studies. Proposals must be submitted to the DUS in the previous term; deadlines and instructions are posted at https://english.yale.edu/undergraduate/courses/independent-study-courses.", "short_title": "Tutorial in Writing", "title": "Tutorial in Writing", "school": "YC", @@ -108212,12 +229849,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "Special projects set up by the student in an area of particular interest with the help of a faculty adviser and the director of undergraduate studies, intended to enable the student to cover material not otherwise offered by the department. The course may be used for research or for directed reading, but in either case a term paper or its equivalent is normally required. The student meets regularly with the faculty adviser. Proposals must be signed by the faculty adviser and submitted to the DUS in the previous term; deadlines and instructions are posted at https:\/\/english.yale.edu\/undergraduate\/courses\/independent-study-courses.", + "description": "Special projects set up by the student in an area of particular interest with the help of a faculty adviser and the director of undergraduate studies, intended to enable the student to cover material not otherwise offered by the department. The course may be used for research or for directed reading, but in either case a term paper or its equivalent is normally required. The student meets regularly with the faculty adviser. Proposals must be signed by the faculty adviser and submitted to the DUS in the previous term; deadlines and instructions are posted at https://english.yale.edu/undergraduate/courses/independent-study-courses.", "short_title": "Special Projects for Juniors ...", "title": "Special Projects for Juniors or Seniors", "school": "YC", @@ -108255,12 +229920,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "A term-long project in writing, under tutorial supervision, aimed at producing a single longer work (or a collection of related shorter works). The creative writing concentration accepts students with demonstrated commitment to creative writing at the end of the junior year or, occasionally, in the first term of senior year. Proposals for the writing concentration should be submitted during the designated sign-up period in the term before enrollment is intended. The project is due by the end of the last week of classes (fall term), or the end of the next-to-last week of classes (spring term). Proposal instructions and deadlines are posted at\u00a0https:\/\/english.yale.edu\/undergraduate\/courses\/independent-study-courses.", + "description": "A term-long project in writing, under tutorial supervision, aimed at producing a single longer work (or a collection of related shorter works). The creative writing concentration accepts students with demonstrated commitment to creative writing at the end of the junior year or, occasionally, in the first term of senior year. Proposals for the writing concentration should be submitted during the designated sign-up period in the term before enrollment is intended. The project is due by the end of the last week of classes (fall term), or the end of the next-to-last week of classes (spring term). Proposal instructions and deadlines are posted at\u00a0https://english.yale.edu/undergraduate/courses/independent-study-courses.", "short_title": "The Creative Writing Concentr...", "title": "The Creative Writing Concentration Senior Project", "school": "YC", @@ -108300,15 +229993,102 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88115\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88115/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "", - "description": "Students wishing to undertake an independent senior essay in English must submit a proposal to the DUS in the previous term; deadlines and instructions are posted at https:\/\/english.yale.edu\/undergraduate\/courses\/independent-study-courses. For one-term senior essays, the essay itself is due in the office of the director of undergraduate studies according to the following schedule: (1) end of the fourth week of classes: five to ten pages of writing and\/or an annotated bibliography; (2) end of the ninth week of classes: a rough draft of the complete essay; (3) end of the last week of classes (fall term) or end of the next-to-last week of classes (spring term): the completed essay. Consult the director of undergraduate studies regarding the schedule for submission of the yearlong senior essay.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985328912734985, + 0.998728334903717, + 0.9987689852714539 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989185333251953, + 0.9988203644752502, + 0.9924416542053223 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998824417591095, + 0.9982789754867554, + 0.9988515377044678, + 0.9988778233528137 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 0.9, + "final_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + } + } + }, + { + "season_code": "202303", + "requirements": "", + "description": "Students wishing to undertake an independent senior essay in English must submit a proposal to the DUS in the previous term; deadlines and instructions are posted at https://english.yale.edu/undergraduate/courses/independent-study-courses. For one-term senior essays, the essay itself is due in the office of the director of undergraduate studies according to the following schedule: (1) end of the fourth week of classes: five to ten pages of writing and/or an annotated bibliography; (2) end of the ninth week of classes: a rough draft of the complete essay; (3) end of the last week of classes (fall term) or end of the next-to-last week of classes (spring term): the completed essay. Consult the director of undergraduate studies regarding the schedule for submission of the yearlong senior essay.", "short_title": "The Senior Essay I", "title": "The Senior Essay I", "school": "YC", @@ -108346,10 +230126,105 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88119\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88119/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988584518432617, + 0.9982971549034119, + 0.9988200068473816, + 0.9986451268196106, + 0.9988798499107361 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988104104995728, + 0.9989070892333984, + 0.9989292025566101, + 0.9988699555397034, + 0.9989280104637146 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9873251914978027, + 0.9989230036735535, + 0.9989336133003235, + 0.9989089965820312, + 0.9989383816719055 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 15 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -108386,7 +230261,7 @@ "13:30", "15:20", "LC 205 - Linsly-Chittenden Hall 205", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -108399,13 +230274,100 @@ ], "regnotes": "", "rp_attr": "", - "classnotes": "See the English department website for a list of creative writing and journalism courses that require the submission of an application by noon on April 5. https:\/\/english.yale.edu\/undergraduate\/courses\/creative-writing-journalism-courses", + "classnotes": "See the English department website for a list of creative writing and journalism courses that require the submission of an application by noon on April 5. https://english.yale.edu/undergraduate/courses/creative-writing-journalism-courses", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88124\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88124/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988445043563843, + 0.9988014698028564, + 0.9988669157028198, + 0.9988704323768616 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985585808753967, + 0.9985650181770325, + 0.9988754391670227 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9972686767578125, + 0.9987373948097229, + 0.9976744055747986, + 0.9989199638366699 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 11 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -108446,7 +230408,7 @@ "11:35", "12:50", "LC 209 - Linsly-Chittenden Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -108454,7 +230416,7 @@ "11:35", "12:50", "LC 209 - Linsly-Chittenden Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -108468,10 +230430,115 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89648\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89648/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987421631813049, + 0.9985588192939758, + 0.9986642599105835, + 0.9986306428909302, + 0.9987571239471436, + 0.9988455772399902, + 0.9986991882324219 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9978771209716797, + 0.9988460540771484, + 0.9988961219787598, + 0.9989224672317505, + 0.9988743662834167 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989064931869507, + 0.997453510761261, + 0.9988991022109985, + 0.9988448619842529, + 0.9980862140655518, + 0.9989029169082642, + 0.9989354014396667, + 0.9987841248512268 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 20 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -108510,7 +230577,7 @@ "13:30", "15:20", "LC 319 - Linsly-Chittenden Hall 319", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -108524,10 +230591,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89203\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89203/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -108567,7 +230662,7 @@ "14:30", "15:45", "LC 209 - Linsly-Chittenden Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -108575,7 +230670,7 @@ "14:30", "15:45", "LC 209 - Linsly-Chittenden Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -108587,10 +230682,113 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89343\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89343/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9974373579025269, + 0.9987890124320984, + 0.9988380074501038, + 0.9987541437149048, + 0.9989184141159058, + 0.9923685193061829 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9993056058883667, + 0.998877227306366, + 0.9989055395126343, + 0.9983024597167969, + 0.9989049434661865 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 4 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2, + "POSITIVE": 0.8 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.998906135559082, + 0.9827965497970581, + 0.9986029267311096, + 0.9988454580307007, + 0.9987548589706421, + 0.9988775849342346, + 0.9953162670135498 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 0.8888888888888888, + "final_counts": { + "POSITIVE": 16, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + } + } }, { "season_code": "202303", @@ -108645,15 +230843,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88475\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88475/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "This seminar examines the intersections of postcolonialism and ecocriticism as well as the tensions between these conceptual nodes, with readings drawn from across the global South. Topics of discussion include colonialism, development, resource extraction, globalization, ecological degradation, nonhuman agency, and indigenous cosmologies. The course is concerned with the narrative strategies affording the illumination of environmental ideas. We begin by engaging with the questions of postcolonial and world literature and return to these throughout the semester as we read primary texts, drawn from Africa, the Caribbean, and Asia. We consider African ecologies in their complexity from colonial through post-colonial times. In the unit on the Caribbean, we take up the transformations of the landscape from slavery, through colonialism, and the contemporary era. Turning to Asian spaces, the seminar explores changes brought about by modernity and globalization as well as the effects on both humans and nonhumans. Readings include the writings of Zakes Mda, Aminatta Forna, Helon Habila, Derek Walcott, Jamaica Kincaid, Ishimure Michiko, and Amitav Ghosh.\u00a0The course prepares students to respond to key issues in postcolonial ecocriticism and the environmental humanities, analyze the work of the major thinkers in the fields, and examine literary texts and other cultural productions from a postcolonial perspective. Course participants have the option of selecting from a variety of final projects. Students can craft an original essay that analyzes primary text from a postcolonial and\/or ecocritical perspective. Such work should aim at producing new insight on a theoretical concept and\/or the cultural text. They can also produce an undergraduate syllabus for a course at the intersection of postcolonialism and environmentalism or write a review essay discussing three recent monographs focused on postcolonial ecocriticism.", + "description": "This seminar examines the intersections of postcolonialism and ecocriticism as well as the tensions between these conceptual nodes, with readings drawn from across the global South. Topics of discussion include colonialism, development, resource extraction, globalization, ecological degradation, nonhuman agency, and indigenous cosmologies. The course is concerned with the narrative strategies affording the illumination of environmental ideas. We begin by engaging with the questions of postcolonial and world literature and return to these throughout the semester as we read primary texts, drawn from Africa, the Caribbean, and Asia. We consider African ecologies in their complexity from colonial through post-colonial times. In the unit on the Caribbean, we take up the transformations of the landscape from slavery, through colonialism, and the contemporary era. Turning to Asian spaces, the seminar explores changes brought about by modernity and globalization as well as the effects on both humans and nonhumans. Readings include the writings of Zakes Mda, Aminatta Forna, Helon Habila, Derek Walcott, Jamaica Kincaid, Ishimure Michiko, and Amitav Ghosh.\u00a0The course prepares students to respond to key issues in postcolonial ecocriticism and the environmental humanities, analyze the work of the major thinkers in the fields, and examine literary texts and other cultural productions from a postcolonial perspective. Course participants have the option of selecting from a variety of final projects. Students can craft an original essay that analyzes primary text from a postcolonial and/or ecocritical perspective. Such work should aim at producing new insight on a theoretical concept and/or the cultural text. They can also produce an undergraduate syllabus for a course at the intersection of postcolonialism and environmentalism or write a review essay discussing three recent monographs focused on postcolonial ecocriticism.", "short_title": "Postcolonial Ecologies", "title": "Postcolonial Ecologies", "school": "GS", @@ -108687,29 +230913,57 @@ "13:30", "15:20", "LC 319 - Linsly-Chittenden Hall 319", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, "skills": [], "areas": [], "flags": [ - "YC English: 20th\/21st Century" + "YC English: 20th/21st Century" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89346\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89346/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "Instructor permission required.", - "description": "This graduate-level course presents students with the opportunity to develop a thorough, extensive, and deep (though still not exhaustive!) understanding of the oeuvre of Michel Foucault, and his impact on late-twentieth-century criticism and intellectual history in the United States. Non-francophone and\/or U.S. American scholars, as Lynne Huffer has argued, have engaged Foucault\u2019s work unevenly and frequently in a piecemeal way, due to a combination of the overemphasis on The History of Sexuality, Vol 1 (to the exclusion of most of his other major works), and the lack of availability of English translations of most of his writings until the early twenty-first century. This course seeks to correct that trend and to re-introduce Foucault\u2019s works to a generation of graduate students who, on the whole, do not have extensive experience with his oeuvre. In this course, we read almost all of Foucault\u2019s published writings that have been translated into English (which is almost all of them, at this point). We read all of the monographs, and all of the Coll\u00e8ge de France lectures, in chronological order. This lightens the reading load; we read a book per week, but the lectures are shorter and generally less dense than the monographs. [The benefit of a single author course is that the more time one spends reading Foucault\u2019s work, the easier reading his work becomes.] We read as many of the essays he published in popular and more widely-circulated media as we can. The goal of the course is to give students both breadth and depth in their understanding of Foucault and his works, and to be able to situate his thinking in relation to the intellectual, social, and political histories of the twentieth and twenty-first centuries. Alongside Foucault himself, we read Foucault\u2019s mentors, interlocutors, and inheritors (Heidegger, Marx, Blanchot, Canguilhem, Derrida, Barthes, Althusser, Bersani, Hartman, Angela Davis, etc); his critics (Mbembe, Weheliye, Butler, Said, etc.), and scholarship that situates his thought alongside contemporary social movements, including student, Black liberation, prison abolitionist, and anti-psychiatry movements.", + "description": "This graduate-level course presents students with the opportunity to develop a thorough, extensive, and deep (though still not exhaustive!) understanding of the oeuvre of Michel Foucault, and his impact on late-twentieth-century criticism and intellectual history in the United States. Non-francophone and/or U.S. American scholars, as Lynne Huffer has argued, have engaged Foucault\u2019s work unevenly and frequently in a piecemeal way, due to a combination of the overemphasis on The History of Sexuality, Vol 1 (to the exclusion of most of his other major works), and the lack of availability of English translations of most of his writings until the early twenty-first century. This course seeks to correct that trend and to re-introduce Foucault\u2019s works to a generation of graduate students who, on the whole, do not have extensive experience with his oeuvre. In this course, we read almost all of Foucault\u2019s published writings that have been translated into English (which is almost all of them, at this point). We read all of the monographs, and all of the Coll\u00e8ge de France lectures, in chronological order. This lightens the reading load; we read a book per week, but the lectures are shorter and generally less dense than the monographs. [The benefit of a single author course is that the more time one spends reading Foucault\u2019s work, the easier reading his work becomes.] We read as many of the essays he published in popular and more widely-circulated media as we can. The goal of the course is to give students both breadth and depth in their understanding of Foucault and his works, and to be able to situate his thinking in relation to the intellectual, social, and political histories of the twentieth and twenty-first centuries. Alongside Foucault himself, we read Foucault\u2019s mentors, interlocutors, and inheritors (Heidegger, Marx, Blanchot, Canguilhem, Derrida, Barthes, Althusser, Bersani, Hartman, Angela Davis, etc); his critics (Mbembe, Weheliye, Butler, Said, etc.), and scholarship that situates his thought alongside contemporary social movements, including student, Black liberation, prison abolitionist, and anti-psychiatry movements.", "short_title": "Michel Foucault I: The Works,...", "title": "Michel Foucault I: The Works, The Interlocutors, The Critics", "school": "GS", @@ -108742,10 +230996,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88164\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88164/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -108782,24 +231064,52 @@ "15:30", "17:20", "LC 319 - Linsly-Chittenden Hall 319", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, "skills": [], "areas": [], "flags": [ - "YC English: 20th\/21st Century" + "YC English: 20th/21st Century" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89347\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89347/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -108838,13 +231148,13 @@ "9:25", "11:15", "HQ 109 - Humanities Quadrangle 109", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ], [ "19:00", "22:00", "HQ L01 - Humanities Quadrangle L01", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -108856,10 +231166,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90330\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90330/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -108898,7 +231236,7 @@ "13:30", "15:20", "BRBL 13 - Beinecke Rare Book Library 13", - "https:\/\/map.yale.edu\/?id=1910#!m\/531533" + "https://map.yale.edu/?id=1910#!m/531533" ] ] }, @@ -108907,13 +231245,41 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Please note Instructor Permissions requests will not be reviewed until add\/drop period in August. This course requires an application that will be provided by the instructor.", + "classnotes": "Please note Instructor Permissions requests will not be reviewed until add/drop period in August. This course requires an application that will be provided by the instructor.", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88075\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88075/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -108952,7 +231318,7 @@ "15:30", "17:20", "LC 206 - Linsly-Chittenden Hall 206", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -108964,10 +231330,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89348\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89348/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -109004,7 +231398,7 @@ "13:30", "15:20", "LC 319 - Linsly-Chittenden Hall 319", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -109016,10 +231410,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89349\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89349/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -109062,7 +231484,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -109102,10 +231552,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89351\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89351/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -109142,7 +231620,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -109182,10 +231688,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89352\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89352/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -109222,7 +231756,7 @@ "9:25", "11:15", "WTS A51 - Watson Center 60 Sachem Street A51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -109240,10 +231774,119 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89839\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89839/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988428354263306, + 0.998274564743042, + 0.9989277720451355, + 0.998468816280365, + 0.9988204836845398, + 0.9989232420921326 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989093542098999, + 0.9989199638366699, + 0.9966465830802917, + 0.9988217949867249, + 0.9988131523132324, + 0.9950960278511047, + 0.9988133907318115 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989025592803955, + 0.9955574870109558, + 0.9988327622413635, + 0.9989340901374817, + 0.9775964021682739, + 0.9988473653793335, + 0.9985387325286865, + 0.9988380074501038 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 0.8571428571428571, + "final_counts": { + "POSITIVE": 18, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + } + } }, { "season_code": "202303", @@ -109280,7 +231923,7 @@ "15:30", "17:20", "WTS A30 - Watson Center 60 Sachem Street A30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -109298,10 +231941,137 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92845\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/92845/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985955357551575, + 0.9984253644943237, + 0.9900867342948914, + 0.9981630444526672, + 0.9984265565872192, + 0.9988592863082886, + 0.9985306262969971, + 0.9985319375991821, + 0.9949070811271667, + 0.9986482262611389 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9995064735412598, + 0.9955869913101196, + 0.9988216757774353, + 0.998920202255249, + 0.9989060163497925, + 0.9989274144172668, + 0.9782693982124329, + 0.998847246170044, + 0.9994702935218811, + 0.998872697353363 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 8 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2, + "POSITIVE": 0.8 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9995080232620239, + 0.9975536465644836, + 0.9979857206344604, + 0.9988096952438354, + 0.9988798499107361, + 0.9986201524734497, + 0.9985306262969971, + 0.9906045794487, + 0.9988847374916077, + 0.9976651668548584 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 9 + }, + "sentiment_distribution": { + "NEGATIVE": 0.1, + "POSITIVE": 0.9 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "final_label": "POSITIVE", + "final_count": 27, + "final_proportion": 0.9, + "final_counts": { + "POSITIVE": 27, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + } + } }, { "season_code": "202303", @@ -109340,7 +232110,7 @@ "9:00", "10:15", "ML 107 - Mason Laboratory 107", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ], "Thursday": [ @@ -109348,7 +232118,7 @@ "9:00", "10:15", "ML 107 - Mason Laboratory 107", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ] }, @@ -109366,15 +232136,43 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88420\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88420/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "n\/a", + "description": "n/a", "short_title": "Project Course", "title": "Project Course", "school": "FS", @@ -109412,12 +232210,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "n\/a", + "description": "n/a", "short_title": "Project Course", "title": "Project Course", "school": "FS", @@ -109455,12 +232281,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "n\/a", + "description": "n/a", "short_title": "Project Course", "title": "Project Course", "school": "FS", @@ -109498,12 +232352,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "n\/a", + "description": "n/a", "short_title": "Project Course", "title": "Project Course", "school": "FS", @@ -109541,12 +232423,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "n\/a", + "description": "n/a", "short_title": "Project Course", "title": "Project Course", "school": "FS", @@ -109584,12 +232494,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "n\/a", + "description": "n/a", "short_title": "Project Course", "title": "Project Course", "school": "FS", @@ -109627,12 +232565,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "n\/a", + "description": "n/a", "short_title": "Project Course", "title": "Project Course", "school": "FS", @@ -109670,12 +232636,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "n\/a", + "description": "n/a", "short_title": "Project Course", "title": "Project Course", "school": "FS", @@ -109713,12 +232707,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "n\/a", + "description": "n/a", "short_title": "Project Course", "title": "Project Course", "school": "FS", @@ -109756,12 +232778,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "n\/a", + "description": "n/a", "short_title": "Project Course", "title": "Project Course", "school": "FS", @@ -109799,7 +232849,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -109842,7 +232920,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -109885,7 +232991,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -109928,7 +233062,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -109971,7 +233133,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -110014,7 +233204,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -110057,7 +233275,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -110100,7 +233346,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -110143,7 +233417,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -110211,7 +233513,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -110254,12 +233584,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "n\/a", + "description": "n/a", "short_title": "Project Course", "title": "Project Course", "school": "FS", @@ -110297,7 +233655,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -110340,7 +233726,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -110383,7 +233797,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -110426,12 +233868,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "n\/a", + "description": "n/a", "short_title": "Project Course", "title": "Project Course", "school": "FS", @@ -110469,7 +233939,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -110512,7 +234010,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -110555,7 +234081,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -110598,7 +234152,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -110641,12 +234223,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "n\/a", + "description": "n/a", "short_title": "Project Course", "title": "Project Course", "school": "FS", @@ -110684,7 +234294,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -110727,7 +234365,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -110770,7 +234436,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -110813,12 +234507,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "n\/a", + "description": "n/a", "short_title": "Project Course", "title": "Project Course", "school": "FS", @@ -110856,7 +234578,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -110899,7 +234649,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -110942,14 +234720,42 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", "description": "Project Course", "short_title": "Project Course: Proj:YaleGrow...", - "title": "Project Course: Proj:YaleGrowth&Yield\/Forest", + "title": "Project Course: Proj:YaleGrowth&Yield/Forest", "school": "FS", "credits": 0.0, "extra_info": "ACTIVE", @@ -110982,10 +234788,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92381\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92381/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -111028,7 +234862,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -111071,7 +234933,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -111114,7 +235004,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -111157,7 +235075,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -111200,7 +235146,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -111243,7 +235217,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -111286,7 +235288,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -111329,7 +235359,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -111372,7 +235430,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -111415,7 +235501,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -111458,7 +235572,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -111501,7 +235643,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -111544,7 +235714,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -111587,14 +235785,42 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "MESc\/MFS Research Thesis", - "short_title": "MESc\/MFS Research Thesis", - "title": "MESc\/MFS Research Thesis", + "description": "MESc/MFS Research Thesis", + "short_title": "MESc/MFS Research Thesis", + "title": "MESc/MFS Research Thesis", "school": "FS", "credits": 0.0, "extra_info": "ACTIVE", @@ -111632,14 +235858,42 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "MESc\/MFS Research Thesis", - "short_title": "MESc\/MFS Research Thesis", - "title": "MESc\/MFS Research Thesis", + "description": "MESc/MFS Research Thesis", + "short_title": "MESc/MFS Research Thesis", + "title": "MESc/MFS Research Thesis", "school": "FS", "credits": 0.0, "extra_info": "ACTIVE", @@ -111677,14 +235931,42 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "MESc\/MFS Research Thesis", - "short_title": "MESc\/MFS Research Thesis", - "title": "MESc\/MFS Research Thesis", + "description": "MESc/MFS Research Thesis", + "short_title": "MESc/MFS Research Thesis", + "title": "MESc/MFS Research Thesis", "school": "FS", "credits": 0.0, "extra_info": "ACTIVE", @@ -111722,14 +236004,42 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "MESc\/MFS Research Thesis", - "short_title": "MESc\/MFS Research Thesis", - "title": "MESc\/MFS Research Thesis", + "description": "MESc/MFS Research Thesis", + "short_title": "MESc/MFS Research Thesis", + "title": "MESc/MFS Research Thesis", "school": "FS", "credits": 0.0, "extra_info": "ACTIVE", @@ -111767,14 +236077,42 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "MESc\/MFS Research Thesis", - "short_title": "MESc\/MFS Research Thesis", - "title": "MESc\/MFS Research Thesis", + "description": "MESc/MFS Research Thesis", + "short_title": "MESc/MFS Research Thesis", + "title": "MESc/MFS Research Thesis", "school": "FS", "credits": 0.0, "extra_info": "ACTIVE", @@ -111812,14 +236150,42 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "MESc\/MFS Research Thesis", - "short_title": "MESc\/MFS Research Thesis", - "title": "MESc\/MFS Research Thesis", + "description": "MESc/MFS Research Thesis", + "short_title": "MESc/MFS Research Thesis", + "title": "MESc/MFS Research Thesis", "school": "FS", "credits": 0.0, "extra_info": "ACTIVE", @@ -111855,14 +236221,42 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "MESc\/MFS Research Thesis", - "short_title": "MESc\/MFS Research Thesis", - "title": "MESc\/MFS Research Thesis", + "description": "MESc/MFS Research Thesis", + "short_title": "MESc/MFS Research Thesis", + "title": "MESc/MFS Research Thesis", "school": "FS", "credits": 0.0, "extra_info": "ACTIVE", @@ -111900,14 +236294,42 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "MESc\/MFS Research Thesis", - "short_title": "MESc\/MFS Research Thesis", - "title": "MESc\/MFS Research Thesis", + "description": "MESc/MFS Research Thesis", + "short_title": "MESc/MFS Research Thesis", + "title": "MESc/MFS Research Thesis", "school": "FS", "credits": 0.0, "extra_info": "ACTIVE", @@ -111945,14 +236367,42 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "MESc\/MFS Research Thesis", - "short_title": "MESc\/MFS Research Thesis", - "title": "MESc\/MFS Research Thesis", + "description": "MESc/MFS Research Thesis", + "short_title": "MESc/MFS Research Thesis", + "title": "MESc/MFS Research Thesis", "school": "FS", "credits": 0.0, "extra_info": "ACTIVE", @@ -111990,14 +236440,42 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "MESc\/MFS Research Thesis", - "short_title": "MESc\/MFS Research Thesis", - "title": "MESc\/MFS Research Thesis", + "description": "MESc/MFS Research Thesis", + "short_title": "MESc/MFS Research Thesis", + "title": "MESc/MFS Research Thesis", "school": "FS", "credits": 0.0, "extra_info": "ACTIVE", @@ -112035,14 +236513,42 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "MESc\/MFS Research Thesis", - "short_title": "MESc\/MFS Research Thesis", - "title": "MESc\/MFS Research Thesis", + "description": "MESc/MFS Research Thesis", + "short_title": "MESc/MFS Research Thesis", + "title": "MESc/MFS Research Thesis", "school": "FS", "credits": 0.0, "extra_info": "ACTIVE", @@ -112080,14 +236586,42 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "MESc\/MFS Research Thesis", - "short_title": "MESc\/MFS Research Thesis", - "title": "MESc\/MFS Research Thesis", + "description": "MESc/MFS Research Thesis", + "short_title": "MESc/MFS Research Thesis", + "title": "MESc/MFS Research Thesis", "school": "FS", "credits": 0.0, "extra_info": "ACTIVE", @@ -112125,14 +236659,42 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "MESc\/MFS Research Thesis", - "short_title": "MESc\/MFS Research Thesis", - "title": "MESc\/MFS Research Thesis", + "description": "MESc/MFS Research Thesis", + "short_title": "MESc/MFS Research Thesis", + "title": "MESc/MFS Research Thesis", "school": "FS", "credits": 0.0, "extra_info": "ACTIVE", @@ -112170,14 +236732,42 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "MESc\/MFS Research Thesis", - "short_title": "MESc\/MFS Research Thesis", - "title": "MESc\/MFS Research Thesis", + "description": "MESc/MFS Research Thesis", + "short_title": "MESc/MFS Research Thesis", + "title": "MESc/MFS Research Thesis", "school": "FS", "credits": 0.0, "extra_info": "ACTIVE", @@ -112215,14 +236805,42 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "MESc\/MFS Research Thesis", - "short_title": "MESc\/MFS Research Thesis", - "title": "MESc\/MFS Research Thesis", + "description": "MESc/MFS Research Thesis", + "short_title": "MESc/MFS Research Thesis", + "title": "MESc/MFS Research Thesis", "school": "FS", "credits": 0.0, "extra_info": "ACTIVE", @@ -112260,14 +236878,42 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "MESc\/MFS Research Thesis", - "short_title": "MESc\/MFS Research Thesis", - "title": "MESc\/MFS Research Thesis", + "description": "MESc/MFS Research Thesis", + "short_title": "MESc/MFS Research Thesis", + "title": "MESc/MFS Research Thesis", "school": "FS", "credits": 0.0, "extra_info": "ACTIVE", @@ -112305,14 +236951,42 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "MESc\/MFS Research Thesis", - "short_title": "MESc\/MFS Research Thesis", - "title": "MESc\/MFS Research Thesis", + "description": "MESc/MFS Research Thesis", + "short_title": "MESc/MFS Research Thesis", + "title": "MESc/MFS Research Thesis", "school": "FS", "credits": 0.0, "extra_info": "ACTIVE", @@ -112350,14 +237024,42 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "MESc\/MFS Research Thesis", - "short_title": "MESc\/MFS Research Thesis", - "title": "MESc\/MFS Research Thesis", + "description": "MESc/MFS Research Thesis", + "short_title": "MESc/MFS Research Thesis", + "title": "MESc/MFS Research Thesis", "school": "FS", "credits": 0.0, "extra_info": "ACTIVE", @@ -112395,14 +237097,42 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", "description": "na", - "short_title": "MESc\/MFS Research Thesis", - "title": "MESc\/MFS Research Thesis", + "short_title": "MESc/MFS Research Thesis", + "title": "MESc/MFS Research Thesis", "school": "FS", "credits": 0.0, "extra_info": "ACTIVE", @@ -112440,14 +237170,42 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "MESc\/MFS Research Thesis", - "short_title": "MESc\/MFS Research Thesis", - "title": "MESc\/MFS Research Thesis", + "description": "MESc/MFS Research Thesis", + "short_title": "MESc/MFS Research Thesis", + "title": "MESc/MFS Research Thesis", "school": "FS", "credits": 0.0, "extra_info": "ACTIVE", @@ -112485,14 +237243,42 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "MESc\/MFS Research Thesis", - "short_title": "MESc\/MFS Research Thesis", - "title": "MESc\/MFS Research Thesis", + "description": "MESc/MFS Research Thesis", + "short_title": "MESc/MFS Research Thesis", + "title": "MESc/MFS Research Thesis", "school": "FS", "credits": 0.0, "extra_info": "ACTIVE", @@ -112530,14 +237316,42 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "MESc\/MFS Research Thesis", - "short_title": "MESc\/MFS Research Thesis", - "title": "MESc\/MFS Research Thesis", + "description": "MESc/MFS Research Thesis", + "short_title": "MESc/MFS Research Thesis", + "title": "MESc/MFS Research Thesis", "school": "FS", "credits": 0.0, "extra_info": "ACTIVE", @@ -112575,14 +237389,42 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", "description": "na", - "short_title": "MESc\/MFS Research Thesis", - "title": "MESc\/MFS Research Thesis", + "short_title": "MESc/MFS Research Thesis", + "title": "MESc/MFS Research Thesis", "school": "FS", "credits": 0.0, "extra_info": "ACTIVE", @@ -112620,14 +237462,42 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "MESc\/MFS Research Thesis", - "short_title": "MESc\/MFS Research Thesis", - "title": "MESc\/MFS Research Thesis", + "description": "MESc/MFS Research Thesis", + "short_title": "MESc/MFS Research Thesis", + "title": "MESc/MFS Research Thesis", "school": "FS", "credits": 0.0, "extra_info": "ACTIVE", @@ -112665,14 +237535,42 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "MESc\/MFS Research Thesis", - "short_title": "MESc\/MFS Research Thesis", - "title": "MESc\/MFS Research Thesis", + "description": "MESc/MFS Research Thesis", + "short_title": "MESc/MFS Research Thesis", + "title": "MESc/MFS Research Thesis", "school": "FS", "credits": 0.0, "extra_info": "ACTIVE", @@ -112710,14 +237608,42 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "MESc\/MFS Research Thesis", - "short_title": "MESc\/MFS Research Thesis", - "title": "MESc\/MFS Research Thesis", + "description": "MESc/MFS Research Thesis", + "short_title": "MESc/MFS Research Thesis", + "title": "MESc/MFS Research Thesis", "school": "FS", "credits": 0.0, "extra_info": "ACTIVE", @@ -112755,14 +237681,42 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "MESc\/MFS Research Thesis", - "short_title": "MESc\/MFS Research Thesis", - "title": "MESc\/MFS Research Thesis", + "description": "MESc/MFS Research Thesis", + "short_title": "MESc/MFS Research Thesis", + "title": "MESc/MFS Research Thesis", "school": "FS", "credits": 0.0, "extra_info": "ACTIVE", @@ -112800,14 +237754,42 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "MESc\/MFS Research Thesis", - "short_title": "MESc\/MFS Research Thesis", - "title": "MESc\/MFS Research Thesis", + "description": "MESc/MFS Research Thesis", + "short_title": "MESc/MFS Research Thesis", + "title": "MESc/MFS Research Thesis", "school": "FS", "credits": 0.0, "extra_info": "ACTIVE", @@ -112845,14 +237827,42 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "MESc\/MFS Research Thesis", - "short_title": "MESc\/MFS Research Thesis", - "title": "MESc\/MFS Research Thesis", + "description": "MESc/MFS Research Thesis", + "short_title": "MESc/MFS Research Thesis", + "title": "MESc/MFS Research Thesis", "school": "FS", "credits": 0.0, "extra_info": "ACTIVE", @@ -112890,14 +237900,42 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "MESc\/MFS Research Thesis", - "short_title": "MESc\/MFS Research Thesis", - "title": "MESc\/MFS Research Thesis", + "description": "MESc/MFS Research Thesis", + "short_title": "MESc/MFS Research Thesis", + "title": "MESc/MFS Research Thesis", "school": "FS", "credits": 0.0, "extra_info": "ACTIVE", @@ -112935,14 +237973,42 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", "description": "na", - "short_title": "MESc\/MFS Research Thesis", - "title": "MESc\/MFS Research Thesis", + "short_title": "MESc/MFS Research Thesis", + "title": "MESc/MFS Research Thesis", "school": "FS", "credits": 0.0, "extra_info": "ACTIVE", @@ -112980,14 +238046,42 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "MESc\/MFS Research Thesis", - "short_title": "MESc\/MFS Research Thesis", - "title": "MESc\/MFS Research Thesis", + "description": "MESc/MFS Research Thesis", + "short_title": "MESc/MFS Research Thesis", + "title": "MESc/MFS Research Thesis", "school": "FS", "credits": 0.0, "extra_info": "ACTIVE", @@ -113025,14 +238119,42 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "MESc\/MFS Research Thesis", - "short_title": "MESc\/MFS Research Thesis", - "title": "MESc\/MFS Research Thesis", + "description": "MESc/MFS Research Thesis", + "short_title": "MESc/MFS Research Thesis", + "title": "MESc/MFS Research Thesis", "school": "FS", "credits": 0.0, "extra_info": "ACTIVE", @@ -113070,14 +238192,42 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "MESc\/MFS Research Thesis", - "short_title": "MESc\/MFS Research Thesis", - "title": "MESc\/MFS Research Thesis", + "description": "MESc/MFS Research Thesis", + "short_title": "MESc/MFS Research Thesis", + "title": "MESc/MFS Research Thesis", "school": "FS", "credits": 0.0, "extra_info": "ACTIVE", @@ -113115,14 +238265,42 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "MESc\/MFS Research Thesis", - "short_title": "MESc\/MFS Research Thesis", - "title": "MESc\/MFS Research Thesis", + "description": "MESc/MFS Research Thesis", + "short_title": "MESc/MFS Research Thesis", + "title": "MESc/MFS Research Thesis", "school": "FS", "credits": 0.0, "extra_info": "ACTIVE", @@ -113160,14 +238338,42 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "MESc\/MFS Research Thesis", - "short_title": "MESc\/MFS Research Thesis", - "title": "MESc\/MFS Research Thesis", + "description": "MESc/MFS Research Thesis", + "short_title": "MESc/MFS Research Thesis", + "title": "MESc/MFS Research Thesis", "school": "FS", "credits": 0.0, "extra_info": "ACTIVE", @@ -113205,14 +238411,42 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "MESc\/MFS Research Thesis", - "short_title": "MESc\/MFS Research Thesis", - "title": "MESc\/MFS Research Thesis", + "description": "MESc/MFS Research Thesis", + "short_title": "MESc/MFS Research Thesis", + "title": "MESc/MFS Research Thesis", "school": "FS", "credits": 0.0, "extra_info": "ACTIVE", @@ -113250,14 +238484,42 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "MESc\/MFS Research Thesis", - "short_title": "MESc\/MFS Research Thesis", - "title": "MESc\/MFS Research Thesis", + "description": "MESc/MFS Research Thesis", + "short_title": "MESc/MFS Research Thesis", + "title": "MESc/MFS Research Thesis", "school": "FS", "credits": 0.0, "extra_info": "ACTIVE", @@ -113295,7 +238557,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -113332,7 +238622,7 @@ "10:30", "11:50", "KRN 301 - Kroon Hall 301", - "https:\/\/map.yale.edu\/?id=1910#!m\/559995" + "https://map.yale.edu/?id=1910#!m/559995" ] ], "Thursday": [ @@ -113340,7 +238630,7 @@ "10:30", "11:50", "KRN 301 - Kroon Hall 301", - "https:\/\/map.yale.edu\/?id=1910#!m\/559995" + "https://map.yale.edu/?id=1910#!m/559995" ] ] }, @@ -113352,10 +238642,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91141\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91141/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -113392,7 +238710,7 @@ "10:30", "11:50", "KRN 301 - Kroon Hall 301", - "https:\/\/map.yale.edu\/?id=1910#!m\/559995" + "https://map.yale.edu/?id=1910#!m/559995" ] ], "Thursday": [ @@ -113400,7 +238718,7 @@ "10:30", "11:50", "KRN 301 - Kroon Hall 301", - "https:\/\/map.yale.edu\/?id=1910#!m\/559995" + "https://map.yale.edu/?id=1910#!m/559995" ] ] }, @@ -113412,10 +238730,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91144\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91144/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -113452,7 +238798,7 @@ "9:00", "10:20", "BOWERS AUD - Bowers Hall AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/559547" + "https://map.yale.edu/?id=1910#!m/559547" ] ] }, @@ -113464,10 +238810,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91145\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91145/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -113504,7 +238878,7 @@ "16:00", "17:20", "KRN 301 - Kroon Hall 301", - "https:\/\/map.yale.edu\/?id=1910#!m\/559995" + "https://map.yale.edu/?id=1910#!m/559995" ] ] }, @@ -113516,10 +238890,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91147\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91147/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -113559,7 +238961,7 @@ "9:00", "10:20", "KRN 319 - Kroon Hall 319", - "https:\/\/map.yale.edu\/?id=1910#!m\/559995" + "https://map.yale.edu/?id=1910#!m/559995" ] ], "Thursday": [ @@ -113567,7 +238969,7 @@ "9:00", "10:20", "KRN 319 - Kroon Hall 319", - "https:\/\/map.yale.edu\/?id=1910#!m\/559995" + "https://map.yale.edu/?id=1910#!m/559995" ] ] }, @@ -113581,10 +238983,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91149\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91149/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -113621,7 +239051,7 @@ "10:30", "11:50", "KRN 321 - Kroon Hall 321", - "https:\/\/map.yale.edu\/?id=1910#!m\/559995" + "https://map.yale.edu/?id=1910#!m/559995" ] ], "Thursday": [ @@ -113629,7 +239059,7 @@ "10:30", "11:50", "KRN 321 - Kroon Hall 321", - "https:\/\/map.yale.edu\/?id=1910#!m\/559995" + "https://map.yale.edu/?id=1910#!m/559995" ] ] }, @@ -113637,17 +239067,45 @@ "areas": [], "flags": [ "YSE MF Professional Knowledge", - "PH: Global Health, Psychosocial\/Social and behavioral\/Anthropology" + "PH: Global Health, Psychosocial/Social and behavioral/Anthropology" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91151\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91151/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -113687,7 +239145,7 @@ "9:00", "10:20", "KRN 301 - Kroon Hall 301", - "https:\/\/map.yale.edu\/?id=1910#!m\/559995" + "https://map.yale.edu/?id=1910#!m/559995" ] ] }, @@ -113699,10 +239157,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91153\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91153/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -113739,7 +239225,7 @@ "16:00", "18:50", "KRN G01 - Kroon Hall G01", - "https:\/\/map.yale.edu\/?id=1910#!m\/559995" + "https://map.yale.edu/?id=1910#!m/559995" ] ] }, @@ -113754,10 +239240,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91168\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91168/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -113794,7 +239308,7 @@ "13:00", "15:50", "KRN G01 - Kroon Hall G01", - "https:\/\/map.yale.edu\/?id=1910#!m\/559995" + "https://map.yale.edu/?id=1910#!m/559995" ] ] }, @@ -113809,10 +239323,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91155\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91155/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -113849,7 +239391,7 @@ "16:00", "17:20", "KRN 321 - Kroon Hall 321", - "https:\/\/map.yale.edu\/?id=1910#!m\/559995" + "https://map.yale.edu/?id=1910#!m/559995" ] ], "Wednesday": [ @@ -113857,7 +239399,7 @@ "16:00", "17:20", "KRN 321 - Kroon Hall 321", - "https:\/\/map.yale.edu\/?id=1910#!m\/559995" + "https://map.yale.edu/?id=1910#!m/559995" ] ] }, @@ -113872,10 +239414,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92079\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92079/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -113912,7 +239482,7 @@ "10:30", "11:50", "EDW380 - EDW380", - "https:\/\/map.yale.edu\/?id=1910#!m\/560003" + "https://map.yale.edu/?id=1910#!m/560003" ] ] }, @@ -113926,10 +239496,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91444\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91444/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -113972,7 +239570,7 @@ "19:00", "22:00", "LC 101 - Linsly-Chittenden Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -113980,7 +239578,7 @@ "15:30", "18:20", "CCAM 110 - Center for Collab Arts & Media 110", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -113992,17 +239590,88 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88288\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88288/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981396198272705 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986857771873474 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9978218078613281 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 3, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 3 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", "requirements": "", "description": "The\u00a0Yale Environment Review\u00a0is a student-run publication that aims to increase access to the latest developments in environmental studies. We aim to shed light on cutting-edge environmental research through summaries, analysis, and interviews. During this one-credit course, students produce one or two articles on subjects of their choosing for publication on the YER website. Please refer to our website and Canvas for an overview of the different types of content that YER produces. Students receive coaching to improve their writing skills, and their work goes through a rigorous editing process. Participation in Yale Environment Review helps students sharpen their writing skills and familiarize themselves with science communication, and it provides a platform to showcase their expertise.", - "short_title": "Yale Environment Review<\/i>", - "title": "Yale Environment Review<\/i>", + "short_title": "Yale Environment Review", + "title": "Yale Environment Review", "school": "FS", "credits": 0.0, "extra_info": "ACTIVE", @@ -114032,22 +239701,50 @@ "12:00", "12:50", "S 41C - Sage Hall 41C", - "https:\/\/map.yale.edu\/?id=1910#!m\/559547" + "https://map.yale.edu/?id=1910#!m/559547" ] ] }, "skills": [], "areas": [], "flags": [], - "regnotes": "Join our information session on Thursday, August 31st from 12:00 -12:50 PM in Sage rm 24 to learn more. This is also the same time the class will be held weekly. Enrollment is limited to 12, and writers will be selected through an application. Applications are due on September 2nd at 11:59 PM, and can be filled out here: https:\/\/bit.ly\/3YqOCjp", + "regnotes": "Join our information session on Thursday, August 31st from 12:00 -12:50 PM in Sage rm 24 to learn more. This is also the same time the class will be held weekly. Enrollment is limited to 12, and writers will be selected through an application. Applications are due on September 2nd at 11:59 PM, and can be filled out here: https://bit.ly/3YqOCjp", "rp_attr": "", "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91157\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91157/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -114084,7 +239781,7 @@ "9:00", "11:50", "S 41C - Sage Hall 41C", - "https:\/\/map.yale.edu\/?id=1910#!m\/559547" + "https://map.yale.edu/?id=1910#!m/559547" ] ] }, @@ -114096,10 +239793,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92491\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92491/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -114136,7 +239861,7 @@ "9:00", "10:20", "S 24 - Sage Hall 24", - "https:\/\/map.yale.edu\/?id=1910#!m\/559547" + "https://map.yale.edu/?id=1910#!m/559547" ] ], "Wednesday": [ @@ -114144,7 +239869,7 @@ "9:00", "10:20", "S 24 - Sage Hall 24", - "https:\/\/map.yale.edu\/?id=1910#!m\/559547" + "https://map.yale.edu/?id=1910#!m/559547" ] ] }, @@ -114160,10 +239885,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91159\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91159/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -114203,7 +239956,7 @@ "9:00", "10:20", "S 32 - Sage Hall 32", - "https:\/\/map.yale.edu\/?id=1910#!m\/559547" + "https://map.yale.edu/?id=1910#!m/559547" ] ], "Thursday": [ @@ -114211,7 +239964,7 @@ "9:00", "10:20", "S 32 - Sage Hall 32", - "https:\/\/map.yale.edu\/?id=1910#!m\/559547" + "https://map.yale.edu/?id=1910#!m/559547" ] ] }, @@ -114224,15 +239977,43 @@ "YSE MEM ELCM Quantitative", "YSE MEM WRSM Mthds Tools Quant" ], - "regnotes": "To apply for this course, please follow instructions here:\nhttps:\/\/resources.environment.yale.edu\/cp\/courses\/detail\/2023-2024\/603\/\n\nApplications must be received by 5pm, August 28 to be considered.", + "regnotes": "To apply for this course, please follow instructions here:\nhttps://resources.environment.yale.edu/cp/courses/detail/2023-2024/603/\n\nApplications must be received by 5pm, August 28 to be considered.", "rp_attr": "", "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91161\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91161/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -114269,7 +240050,7 @@ "14:30", "17:20", "S 32 - Sage Hall 32", - "https:\/\/map.yale.edu\/?id=1910#!m\/559547" + "https://map.yale.edu/?id=1910#!m/559547" ] ] }, @@ -114283,10 +240064,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90777\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90777/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -114323,7 +240132,7 @@ "9:00", "11:50", "S 24 - Sage Hall 24", - "https:\/\/map.yale.edu\/?id=1910#!m\/559547" + "https://map.yale.edu/?id=1910#!m/559547" ] ] }, @@ -114339,10 +240148,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90779\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90779/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -114381,7 +240218,7 @@ "11:35", "12:50", "GR109 ROSENFELD - 109 Grove Street ROSENFELD", - "https:\/\/map.yale.edu\/?id=1910#!m\/560109" + "https://map.yale.edu/?id=1910#!m/560109" ] ], "Thursday": [ @@ -114389,7 +240226,7 @@ "11:35", "12:50", "GR109 ROSENFELD - 109 Grove Street ROSENFELD", - "https:\/\/map.yale.edu\/?id=1910#!m\/560109" + "https://map.yale.edu/?id=1910#!m/560109" ] ] }, @@ -114406,15 +240243,154 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88208\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88208/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "", - "description": "In this course students develop methane literacy, reviewing evidence from primary literature to understand the methane cycle and how it impacts the global climate system. Students read primary scientific literature, contribute questions\/topics for discussion, and map the provenance of research. Meeting time is used for presentations and discussions. Enrollment is limited to twenty-five.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998857855796814, + 0.9988988637924194, + 0.9987082481384277, + 0.9989140033721924, + 0.9988372921943665, + 0.9987964630126953, + 0.9989049434661865, + 0.9989234805107117, + 0.9987994432449341, + 0.9954805374145508, + 0.9988899827003479, + 0.9989017248153687 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989076852798462, + 0.5613076686859131, + 0.9980595707893372, + 0.9989194869995117, + 0.9989290833473206, + 0.9796344637870789, + 0.9989058971405029, + 0.998837411403656, + 0.9987998008728027, + 0.9958578944206238, + 0.9988915324211121 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9090909090909091 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988518953323364, + 0.9988981485366821, + 0.9987847208976746, + 0.9982442855834961, + 0.9989334940910339, + 0.9988521337509155, + 0.9988179802894592, + 0.9989356398582458, + 0.9988836646080017, + 0.9981389045715332, + 0.9988184571266174, + 0.9988988637924194, + 0.9987447261810303 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 35, + "final_proportion": 0.9722222222222222, + "final_counts": { + "POSITIVE": 35, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9722222222222222, + "NEGATIVE": 0.027777777777777776 + } + } + }, + { + "season_code": "202303", + "requirements": "", + "description": "In this course students develop methane literacy, reviewing evidence from primary literature to understand the methane cycle and how it impacts the global climate system. Students read primary scientific literature, contribute questions/topics for discussion, and map the provenance of research. Meeting time is used for presentations and discussions. Enrollment is limited to twenty-five.", "short_title": "The Role of Methane in Global...", "title": "The Role of Methane in Global Climate Disruption: The Search for Solutions", "school": "FS", @@ -114446,7 +240422,7 @@ "14:30", "17:20", "S 32 - Sage Hall 32", - "https:\/\/map.yale.edu\/?id=1910#!m\/559547" + "https://map.yale.edu/?id=1910#!m/559547" ] ] }, @@ -114460,10 +240436,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90783\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90783/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -114503,7 +240507,7 @@ "9:00", "11:50", "KRN 321 - Kroon Hall 321", - "https:\/\/map.yale.edu\/?id=1910#!m\/559995" + "https://map.yale.edu/?id=1910#!m/559995" ] ] }, @@ -114520,10 +240524,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90787\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90787/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -114560,7 +240592,7 @@ "11:00", "11:50", "S 32 - Sage Hall 32", - "https:\/\/map.yale.edu\/?id=1910#!m\/559547" + "https://map.yale.edu/?id=1910#!m/559547" ] ] }, @@ -114574,10 +240606,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90791\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90791/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -114614,7 +240674,7 @@ "13:00", "15:50", "KRN G01 - Kroon Hall G01", - "https:\/\/map.yale.edu\/?id=1910#!m\/559995" + "https://map.yale.edu/?id=1910#!m/559995" ] ] }, @@ -114632,10 +240692,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90795\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90795/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -114675,7 +240763,7 @@ "16:10", "19:10", "EVANS 4400 - Edward P Evans Hall 4400", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -114689,10 +240777,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91260\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91260/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -114729,7 +240845,7 @@ "14:30", "15:50", "S 24 - Sage Hall 24", - "https:\/\/map.yale.edu\/?id=1910#!m\/559547" + "https://map.yale.edu/?id=1910#!m/559547" ] ], "Thursday": [ @@ -114737,7 +240853,7 @@ "14:30", "15:50", "S 24 - Sage Hall 24", - "https:\/\/map.yale.edu\/?id=1910#!m\/559547" + "https://map.yale.edu/?id=1910#!m/559547" ] ] }, @@ -114752,15 +240868,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90797\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90797/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "This course provides students with both the theory and application of environmental water transactions (EWTs) to water management challenges, such as river restoration, drought-mitigation, and agricultural allocation. The geographic focus is primarily the western United States, as this region, out of necessity, has been very active in implementing EWTs in recent years. Other market-based mechanisms for water management also are explored, such as groundwater mitigation banks, urban stormwater markets, and water quality markets. The course also covers considerations such as environmental justice, tribal access to and use of water, and diversity\/equity\/inclusion in water management.\u00a0A final project gives students the opportunity to develop a simple hydrological and water rights model for a fictional watershed to use as the basis for designing a suite of water transactions and market-based water management solutions.\u00a0This is an online course taught by experienced professionals who value a hands-on approach to learning. In addition, the course features discussion of current events in water, case studies, and guest lectures from practitioners actively using market-based mechanisms for water management.", + "description": "This course provides students with both the theory and application of environmental water transactions (EWTs) to water management challenges, such as river restoration, drought-mitigation, and agricultural allocation. The geographic focus is primarily the western United States, as this region, out of necessity, has been very active in implementing EWTs in recent years. Other market-based mechanisms for water management also are explored, such as groundwater mitigation banks, urban stormwater markets, and water quality markets. The course also covers considerations such as environmental justice, tribal access to and use of water, and diversity/equity/inclusion in water management.\u00a0A final project gives students the opportunity to develop a simple hydrological and water rights model for a fictional watershed to use as the basis for designing a suite of water transactions and market-based water management solutions.\u00a0This is an online course taught by experienced professionals who value a hands-on approach to learning. In addition, the course features discussion of current events in water, case studies, and guest lectures from practitioners actively using market-based mechanisms for water management.", "short_title": "Market-Based Mechanisms for W...", "title": "Market-Based Mechanisms for Water Management", "school": "FS", @@ -114811,17 +240955,45 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90801\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90801/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", "description": "In this course, we focus on the evolution and development of the environmental justice movement. We pay particular attention to its embrace of climate justice, and we ask what conception of justice is at play in both the environmental justice and climate justice movements. We begin with a legal and social-historical survey but quickly bring the inquiry up to the current moment. We explore the legal and policy developments that have followed the environmental justice critique.", - "short_title": "Environmental Justice\/Climate...", - "title": "Environmental Justice\/Climate Justice", + "short_title": "Environmental Justice/Climate...", + "title": "Environmental Justice/Climate Justice", "school": "FS", "credits": 0.0, "extra_info": "ACTIVE", @@ -114851,7 +241023,7 @@ "10:30", "11:50", "BOWERS AUD - Bowers Hall AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/559547" + "https://map.yale.edu/?id=1910#!m/559547" ] ], "Wednesday": [ @@ -114859,7 +241031,7 @@ "10:30", "11:50", "BOWERS AUD - Bowers Hall AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/559547" + "https://map.yale.edu/?id=1910#!m/559547" ] ] }, @@ -114880,10 +241052,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90805\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90805/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -114920,7 +241120,7 @@ "13:00", "14:50", "EDW380 - EDW380", - "https:\/\/map.yale.edu\/?id=1910#!m\/560003" + "https://map.yale.edu/?id=1910#!m/560003" ] ] }, @@ -114937,10 +241137,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90809\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90809/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -114977,7 +241205,7 @@ "13:00", "15:50", "MARSH 12 - Marsh Hall 12", - "https:\/\/map.yale.edu\/?id=1910#!m\/559984" + "https://map.yale.edu/?id=1910#!m/559984" ] ] }, @@ -114991,10 +241219,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90811\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90811/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -115031,7 +241287,7 @@ "16:00", "17:20", "MARSH 12 - Marsh Hall 12", - "https:\/\/map.yale.edu\/?id=1910#!m\/559984" + "https://map.yale.edu/?id=1910#!m/559984" ] ], "Thursday": [ @@ -115039,7 +241295,7 @@ "16:00", "17:20", "MARSH 12 - Marsh Hall 12", - "https:\/\/map.yale.edu\/?id=1910#!m\/559984" + "https://map.yale.edu/?id=1910#!m/559984" ] ] }, @@ -115056,7 +241312,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -115093,7 +241377,7 @@ "10:30", "11:50", "MARSH R - Marsh Hall R", - "https:\/\/map.yale.edu\/?id=1910#!m\/559984" + "https://map.yale.edu/?id=1910#!m/559984" ] ], "Thursday": [ @@ -115101,7 +241385,7 @@ "10:30", "11:50", "MARSH R - Marsh Hall R", - "https:\/\/map.yale.edu\/?id=1910#!m\/559984" + "https://map.yale.edu/?id=1910#!m/559984" ] ] }, @@ -115118,10 +241402,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90819\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90819/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -115158,7 +241470,7 @@ "13:00", "17:00", "MARSH R - Marsh Hall R", - "https:\/\/map.yale.edu\/?id=1910#!m\/559984" + "https://map.yale.edu/?id=1910#!m/559984" ] ] }, @@ -115167,15 +241479,43 @@ "flags": [ "YSE NF Tree Phys, Morph, Taxon" ], - "regnotes": "Limited to thirteen: Application form: https:\/\/forms.gle\/BrV9G5otmsGzikte7", + "regnotes": "Limited to thirteen: Application form: https://forms.gle/BrV9G5otmsGzikte7", "rp_attr": "", "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90822\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90822/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -115212,7 +241552,7 @@ "9:00", "11:50", "S 41C - Sage Hall 41C", - "https:\/\/map.yale.edu\/?id=1910#!m\/559547" + "https://map.yale.edu/?id=1910#!m/559547" ] ] }, @@ -115226,15 +241566,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90826\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90826/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "Understanding the tools used in financial analysis is an important component of successful forestland investment and forest management decision-making. This course provides students with a basic suite of financial tools used in the acquisition and management of forestland\/timber. It includes an overview of traditional financial analysis metrics used in land acquisition, timber management, and risk management, as well as topics related to supply and demand for forest products, international timberland investment, and emerging trends in forestland investing. The first eight weeks of the course are in lecture format, and the remainder of the course is a case study\/project that gives students an opportunity to apply their knowledge in the analysis of an actual \"deal.\"", + "description": "Understanding the tools used in financial analysis is an important component of successful forestland investment and forest management decision-making. This course provides students with a basic suite of financial tools used in the acquisition and management of forestland/timber. It includes an overview of traditional financial analysis metrics used in land acquisition, timber management, and risk management, as well as topics related to supply and demand for forest products, international timberland investment, and emerging trends in forestland investing. The first eight weeks of the course are in lecture format, and the remainder of the course is a case study/project that gives students an opportunity to apply their knowledge in the analysis of an actual \"deal.\"", "short_title": "Forest Finance", "title": "Forest Finance", "school": "FS", @@ -115266,7 +241634,7 @@ "18:00", "19:20", "S 24 - Sage Hall 24", - "https:\/\/map.yale.edu\/?id=1910#!m\/559547" + "https://map.yale.edu/?id=1910#!m/559547" ] ], "Wednesday": [ @@ -115274,7 +241642,7 @@ "18:00", "19:20", "S 24 - Sage Hall 24", - "https:\/\/map.yale.edu\/?id=1910#!m\/559547" + "https://map.yale.edu/?id=1910#!m/559547" ] ] }, @@ -115289,10 +241657,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90830\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90830/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -115329,7 +241725,7 @@ "13:00", "15:50", "S 24 - Sage Hall 24", - "https:\/\/map.yale.edu\/?id=1910#!m\/559547" + "https://map.yale.edu/?id=1910#!m/559547" ] ] }, @@ -115343,15 +241739,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90834\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90834/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "The Forest School at the Yale School of the Environment has developed a new seminar for fall 2023 titled Understanding Climate-Smart Forestry in Practice. This seminar is part of the School\u2019s Series on Forests and Climate. This fall series is co-sponsored by the Yale Center for Natural Carbon Capture. Climate-Smart Forestry (CSF) has become a buzzword across the forestry sector and beyond. However, climate-smart forestry is an often-used phrase without a commonly understood definition. From conservation non-profits to institutional landowners to policymakers wrestling with climate change and its impacts on forests, the focus is on issues related to forest management. In this seminar, we learn from practitioners and researchers about how they put climate-smart forestry into practice. We also learn how forests can be managed to enhance their carbon storage capabilities and\/or to increase their resilience to the impacts of climate.", + "description": "The Forest School at the Yale School of the Environment has developed a new seminar for fall 2023 titled Understanding Climate-Smart Forestry in Practice. This seminar is part of the School\u2019s Series on Forests and Climate. This fall series is co-sponsored by the Yale Center for Natural Carbon Capture. Climate-Smart Forestry (CSF) has become a buzzword across the forestry sector and beyond. However, climate-smart forestry is an often-used phrase without a commonly understood definition. From conservation non-profits to institutional landowners to policymakers wrestling with climate change and its impacts on forests, the focus is on issues related to forest management. In this seminar, we learn from practitioners and researchers about how they put climate-smart forestry into practice. We also learn how forests can be managed to enhance their carbon storage capabilities and/or to increase their resilience to the impacts of climate.", "short_title": "Yale Forest Forum Series: Und...", "title": "Yale Forest Forum Series: Understanding Climate-Smart Forestry in Practice", "school": "FS", @@ -115386,7 +241810,7 @@ "12:00", "14:00", "MARSH R - Marsh Hall R", - "https:\/\/map.yale.edu\/?id=1910#!m\/559984" + "https://map.yale.edu/?id=1910#!m/559984" ] ] }, @@ -115400,10 +241824,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92400\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92400/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -115450,7 +241902,7 @@ "13:30", "15:20", "WLH 203 - William L. Harkness Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -115466,10 +241918,115 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89496\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89496/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988633394241333, + 0.9987687468528748, + 0.9982184767723083, + 0.9989209175109863, + 0.9988806843757629, + 0.9556989073753357 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989169836044312, + 0.9988388419151306, + 0.9986086487770081, + 0.9989100694656372, + 0.998865008354187, + 0.9988923668861389, + 0.9973819851875305, + 0.9989210367202759 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989180564880371, + 0.9989171028137207, + 0.9987248778343201, + 0.9987255930900574, + 0.998908519744873 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 0.9473684210526315, + "final_counts": { + "POSITIVE": 18, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9473684210526315, + "NEGATIVE": 0.05263157894736842 + } + } }, { "season_code": "202303", @@ -115506,7 +242063,7 @@ "14:30", "17:20", "ESC 110 - Environmental Sciences Center 110", - "https:\/\/map.yale.edu\/?id=1910#!m\/560020" + "https://map.yale.edu/?id=1910#!m/560020" ] ] }, @@ -115518,10 +242075,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90838\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90838/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -115558,7 +242143,7 @@ "13:00", "14:20", "S 24 - Sage Hall 24", - "https:\/\/map.yale.edu\/?id=1910#!m\/559547" + "https://map.yale.edu/?id=1910#!m/559547" ] ], "Thursday": [ @@ -115566,7 +242151,7 @@ "13:00", "14:20", "S 24 - Sage Hall 24", - "https:\/\/map.yale.edu\/?id=1910#!m\/559547" + "https://map.yale.edu/?id=1910#!m/559547" ] ] }, @@ -115582,10 +242167,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90841\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90841/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -115622,7 +242235,7 @@ "13:00", "17:50", "EDW380 - EDW380", - "https:\/\/map.yale.edu\/?id=1910#!m\/560003" + "https://map.yale.edu/?id=1910#!m/560003" ] ] }, @@ -115638,10 +242251,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90845\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90845/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -115679,7 +242320,7 @@ "13:00", "14:15", "S 41C - Sage Hall 41C", - "https:\/\/map.yale.edu\/?id=1910#!m\/559547" + "https://map.yale.edu/?id=1910#!m/559547" ] ], "Wednesday": [ @@ -115687,7 +242328,7 @@ "13:00", "14:15", "S 41C - Sage Hall 41C", - "https:\/\/map.yale.edu\/?id=1910#!m\/559547" + "https://map.yale.edu/?id=1910#!m/559547" ] ] }, @@ -115704,10 +242345,115 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88228\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88228/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989258646965027, + 0.9987003803253174, + 0.9988846182823181, + 0.9949585795402527, + 0.9988611936569214 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984161853790283, + 0.998939573764801, + 0.9988905787467957, + 0.9988879561424255, + 0.9989311099052429, + 0.9987899661064148 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988246560096741, + 0.9971240162849426, + 0.9989057779312134, + 0.9989157915115356, + 0.998855471611023, + 0.9926338791847229, + 0.9989376664161682, + 0.9975121021270752 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 0.8947368421052632, + "final_counts": { + "POSITIVE": 17, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8947368421052632, + "NEGATIVE": 0.10526315789473684 + } + } }, { "season_code": "202303", @@ -115744,7 +242490,7 @@ "14:30", "15:50", "KRN 301 - Kroon Hall 301", - "https:\/\/map.yale.edu\/?id=1910#!m\/559995" + "https://map.yale.edu/?id=1910#!m/559995" ] ], "Thursday": [ @@ -115752,7 +242498,7 @@ "14:30", "15:50", "KRN 301 - Kroon Hall 301", - "https:\/\/map.yale.edu\/?id=1910#!m\/559995" + "https://map.yale.edu/?id=1910#!m/559995" ] ] }, @@ -115770,10 +242516,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90850\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90850/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -115810,7 +242584,7 @@ "17:30", "21:20", "KRN 319 - Kroon Hall 319", - "https:\/\/map.yale.edu\/?id=1910#!m\/559995" + "https://map.yale.edu/?id=1910#!m/559995" ] ], "Thursday": [ @@ -115818,7 +242592,7 @@ "17:30", "21:20", "KRN 319 - Kroon Hall 319", - "https:\/\/map.yale.edu\/?id=1910#!m\/559995" + "https://map.yale.edu/?id=1910#!m/559995" ] ] }, @@ -115832,10 +242606,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90853\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90853/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -115871,10 +242673,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90857\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90857/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -115912,7 +242742,7 @@ "14:30", "15:45", "WTS B52 - Watson Center 60 Sachem Street B52", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -115920,7 +242750,7 @@ "14:30", "15:45", "WTS B52 - Watson Center 60 Sachem Street B52", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -115935,10 +242765,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90550\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90550/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -115976,7 +242834,7 @@ "14:30", "17:20", "S 32 - Sage Hall 32", - "https:\/\/map.yale.edu\/?id=1910#!m\/559547" + "https://map.yale.edu/?id=1910#!m/559547" ] ] }, @@ -115988,10 +242846,107 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90123\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90123/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989302754402161, + 0.9988929629325867, + 0.9989290833473206, + 0.9989128112792969, + 0.9988793730735779, + 0.9987807869911194 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.995581328868866, + 0.9989323019981384, + 0.9989228844642639, + 0.9989088773727417, + 0.9989238381385803 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989277720451355, + 0.9989173412322998, + 0.9988760352134705, + 0.9986534118652344, + 0.9989080429077148 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 16 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -116028,7 +242983,7 @@ "10:30", "11:50", "MARSH R - Marsh Hall R", - "https:\/\/map.yale.edu\/?id=1910#!m\/559984" + "https://map.yale.edu/?id=1910#!m/559984" ] ], "Wednesday": [ @@ -116036,7 +242991,7 @@ "10:30", "11:50", "MARSH R - Marsh Hall R", - "https:\/\/map.yale.edu\/?id=1910#!m\/559984" + "https://map.yale.edu/?id=1910#!m/559984" ] ] }, @@ -116060,7 +243015,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -116097,7 +243080,7 @@ "13:00", "15:50", "BOWERS AUD - Bowers Hall AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/559547" + "https://map.yale.edu/?id=1910#!m/559547" ] ] }, @@ -116113,10 +243096,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90865\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90865/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -116156,7 +243167,7 @@ "9:00", "10:15", "ML 211 - Mason Laboratory 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ], "Thursday": [ @@ -116164,7 +243175,7 @@ "9:00", "10:15", "ML 211 - Mason Laboratory 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ] }, @@ -116178,15 +243189,262 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88618\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "", - "description": "Introductory graduate course on the social science of contemporary environmental and natural resource challenges, paying special attention to issues involving power and knowledge. Section I, overview of the course. Section II, disasters and environmental perturbation: pandemics, and the social dimensions of disaster. Section III, power and politics: river restoration in Nepal; the conceptual boundaries of resource systems, and the political ecology of water in Mumbai\u00a0Section IV, methods: the dynamics of working within development projects; and a multi-sited study of irrigation in Egypt. Section V, local communities: representing the poor, development discourse, and indigenous peoples and knowledge. The goal of the course is to develop analytic distance from current conservation and development debates and discourse. This is a core course for M.E.M. students in YSE, and a core course in the combined YSE\/Anthropology degree program. Enrollment is capped.", + "syllabus_url": "https://yale.instructure.com/courses/88618/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985331296920776, + 0.9907186627388, + 0.9820322394371033, + 0.9986231327056885, + 0.9945555925369263, + 0.9985878467559814, + 0.9977357387542725, + 0.9986733198165894, + 0.996283233165741, + 0.9985755681991577, + 0.9987128973007202, + 0.9986612796783447, + 0.998884379863739, + 0.9981232285499573, + 0.996711254119873, + 0.9988638162612915, + 0.9989281296730042, + 0.9950729012489319, + 0.9981645941734314, + 0.9983649849891663, + 0.9837383031845093, + 0.9952929615974426, + 0.9987383484840393, + 0.9981551766395569, + 0.998204231262207, + 0.9933744072914124, + 0.9988514184951782, + 0.9986935257911682, + 0.9985578656196594, + 0.9771918654441833 + ], + "sentiment_counts": { + "POSITIVE": 27, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988608360290527, + 0.9989062547683716, + 0.9979388117790222, + 0.9951927661895752, + 0.98073810338974, + 0.9987216591835022, + 0.9988089799880981, + 0.9985629916191101, + 0.9551969170570374, + 0.9786998629570007, + 0.9988786578178406, + 0.9989173412322998, + 0.9988753199577332, + 0.9989075660705566, + 0.9989362359046936, + 0.9988616704940796, + 0.9924127459526062, + 0.998771607875824, + 0.9988873600959778, + 0.9988627433776855, + 0.9988710284233093, + 0.9934489130973816, + 0.9988357424736023, + 0.9988977909088135, + 0.9994996786117554, + 0.9988933205604553, + 0.9989327788352966, + 0.9988547563552856, + 0.9985142350196838, + 0.9987738728523254, + 0.9988271594047546 + ], + "sentiment_counts": { + "POSITIVE": 28, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.9032258064516129, + "NEGATIVE": 0.0967741935483871 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9032258064516129 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987911581993103, + 0.997922956943512, + 0.9921607375144958, + 0.9989379048347473, + 0.9988821148872375, + 0.9986459612846375, + 0.9953246116638184, + 0.9988641738891602, + 0.9988960027694702, + 0.9989080429077148, + 0.9974521994590759, + 0.9988909363746643, + 0.998637855052948, + 0.9988850951194763, + 0.9979872703552246, + 0.9981922507286072, + 0.9987844824790955, + 0.9976784586906433, + 0.9988729357719421, + 0.9988334774971008, + 0.9953234791755676, + 0.9988834261894226, + 0.9981405735015869, + 0.9919413328170776, + 0.9988806843757629, + 0.9979788661003113, + 0.9988940358161926, + 0.9988906979560852, + 0.9988608360290527 + ], + "sentiment_counts": { + "POSITIVE": 27, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.9310344827586207, + "NEGATIVE": 0.06896551724137931 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9310344827586207 + ] + }, + "final_label": "POSITIVE", + "final_count": 82, + "final_proportion": 0.9111111111111111, + "final_counts": { + "POSITIVE": 82, + "NEGATIVE": 8 + }, + "final_distribution": { + "POSITIVE": 0.9111111111111111, + "NEGATIVE": 0.08888888888888889 + } + } + }, + { + "season_code": "202303", + "requirements": "", + "description": "Introductory graduate course on the social science of contemporary environmental and natural resource challenges, paying special attention to issues involving power and knowledge. Section I, overview of the course. Section II, disasters and environmental perturbation: pandemics, and the social dimensions of disaster. Section III, power and politics: river restoration in Nepal; the conceptual boundaries of resource systems, and the political ecology of water in Mumbai\u00a0Section IV, methods: the dynamics of working within development projects; and a multi-sited study of irrigation in Egypt. Section V, local communities: representing the poor, development discourse, and indigenous peoples and knowledge. The goal of the course is to develop analytic distance from current conservation and development debates and discourse. This is a core course for M.E.M. students in YSE, and a core course in the combined YSE/Anthropology degree program. Enrollment is capped.", "short_title": "Power, Knowledge, and the Env...", "title": "Power, Knowledge, and the Environment: Social Science Theory and Method", "school": "FS", @@ -116218,7 +243476,7 @@ "13:00", "15:50", "KRN 321 - Kroon Hall 321", - "https:\/\/map.yale.edu\/?id=1910#!m\/559995" + "https://map.yale.edu/?id=1910#!m/559995" ] ] }, @@ -116234,10 +243492,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90868\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90868/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -116275,7 +243561,7 @@ "13:30", "15:20", "WTS A42 - Watson Center 60 Sachem Street A42", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -116285,17 +243571,45 @@ "YSE MEM C&A Electives", "YSE MEM EP&A Law & Governance", "PH: Climate Change and Health", - "PH: Global Health, Psychosocial\/Social and behavioral\/Anthropology" + "PH: Global Health, Psychosocial/Social and behavioral/Anthropology" ], "regnotes": "ENV 761 is only available to YSE students to register. Instructor Permission is needed to enroll.", "rp_attr": "", "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89185\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89185/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -116332,7 +243646,7 @@ "10:30", "11:50", "KRN 319 - Kroon Hall 319", - "https:\/\/map.yale.edu\/?id=1910#!m\/559995" + "https://map.yale.edu/?id=1910#!m/559995" ] ], "Wednesday": [ @@ -116340,7 +243654,7 @@ "10:30", "11:50", "KRN 319 - Kroon Hall 319", - "https:\/\/map.yale.edu\/?id=1910#!m\/559995" + "https://map.yale.edu/?id=1910#!m/559995" ] ] }, @@ -116355,10 +243669,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90871\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90871/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -116395,7 +243737,7 @@ "16:10", "18:00", "SLB 124 - Sterling Law Buildings 124", - "https:\/\/map.yale.edu\/?id=1910#!m\/531532" + "https://map.yale.edu/?id=1910#!m/531532" ] ] }, @@ -116410,10 +243752,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91804\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91804/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -116452,7 +243822,7 @@ "13:00", "14:15", "HLH17 03 - 17 Hillhouse Avenue 03", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Wednesday": [ @@ -116460,7 +243830,7 @@ "13:00", "14:15", "HLH17 03 - 17 Hillhouse Avenue 03", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -116477,15 +243847,114 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90216\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90216/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "", - "description": "This seminar is based on outside speakers and internal student\/faculty presentations oriented toward original research in the field of environmental and natural resource economics and policy. Presentations are aimed at the doctoral level, but interested master\u2019s students may enroll with permission of the instructors.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998846173286438, + 0.9986068606376648, + 0.9984049201011658, + 0.9987956285476685, + 0.998934805393219, + 0.9987118244171143, + 0.9988701939582825 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989262223243713, + 0.9989400506019592, + 0.9989011287689209, + 0.9989180564880371, + 0.9988895058631897 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988906979560852, + 0.9988844990730286, + 0.9986125230789185, + 0.9986878037452698, + 0.9989223480224609 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 17 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } + }, + { + "season_code": "202303", + "requirements": "", + "description": "This seminar is based on outside speakers and internal student/faculty presentations oriented toward original research in the field of environmental and natural resource economics and policy. Presentations are aimed at the doctoral level, but interested master\u2019s students may enroll with permission of the instructors.", "short_title": "Seminar on Environmental and ...", "title": "Seminar on Environmental and Natural Resource Economics", "school": "FS", @@ -116523,7 +243992,7 @@ "15:00", "16:20", "KRN 319 - Kroon Hall 319", - "https:\/\/map.yale.edu\/?id=1910#!m\/559995" + "https://map.yale.edu/?id=1910#!m/559995" ] ] }, @@ -116535,10 +244004,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90876\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90876/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -116576,7 +244073,7 @@ "9:00", "10:20", "KRN 301 - Kroon Hall 301", - "https:\/\/map.yale.edu\/?id=1910#!m\/559995" + "https://map.yale.edu/?id=1910#!m/559995" ] ], "Wednesday": [ @@ -116584,7 +244081,7 @@ "9:00", "10:20", "KRN 301 - Kroon Hall 301", - "https:\/\/map.yale.edu\/?id=1910#!m\/559995" + "https://map.yale.edu/?id=1910#!m/559995" ] ] }, @@ -116604,10 +244101,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90880\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90880/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -116644,7 +244169,7 @@ "13:00", "15:50", "S 24 - Sage Hall 24", - "https:\/\/map.yale.edu\/?id=1910#!m\/559547" + "https://map.yale.edu/?id=1910#!m/559547" ] ] }, @@ -116661,10 +244186,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90884\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90884/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -116701,7 +244254,7 @@ "16:00", "18:50", "KRN 321 - Kroon Hall 321", - "https:\/\/map.yale.edu\/?id=1910#!m\/559995" + "https://map.yale.edu/?id=1910#!m/559995" ] ] }, @@ -116719,10 +244272,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90888\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90888/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -116759,7 +244340,7 @@ "14:30", "15:50", "KRN 301 - Kroon Hall 301", - "https:\/\/map.yale.edu\/?id=1910#!m\/559995" + "https://map.yale.edu/?id=1910#!m/559995" ] ], "Wednesday": [ @@ -116767,7 +244348,7 @@ "14:30", "15:50", "KRN 301 - Kroon Hall 301", - "https:\/\/map.yale.edu\/?id=1910#!m\/559995" + "https://map.yale.edu/?id=1910#!m/559995" ] ] }, @@ -116784,10 +244365,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90892\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90892/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -116824,7 +244433,7 @@ "14:10", "16:00", "BAKER 122 - Baker Hall 122", - "https:\/\/map.yale.edu\/?id=1910#!m\/563680" + "https://map.yale.edu/?id=1910#!m/563680" ] ] }, @@ -116841,10 +244450,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91786\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91786/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -116881,7 +244518,7 @@ "10:30", "11:50", "S 24 - Sage Hall 24", - "https:\/\/map.yale.edu\/?id=1910#!m\/559547" + "https://map.yale.edu/?id=1910#!m/559547" ] ] }, @@ -116897,10 +244534,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90896\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90896/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -116944,7 +244609,7 @@ "13:30", "15:20", "SA10 105 - 10 Sachem Street 105", - "https:\/\/map.yale.edu\/?id=1910#!m\/559538" + "https://map.yale.edu/?id=1910#!m/559538" ] ] }, @@ -116959,15 +244624,43 @@ "classnotes": "There is a mandatory section immediately following the course. This makes the course run from 1:30-5:20 when factoring in the mandatory section. ", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88944\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "", - "description": "This course examines the anthropology of power, particularly power in conservation interventions in the global South. It is intended to give students a toolbox of ideas about power in order to improve the effectiveness of conservation. Conservation thought and practice are power-laden: conservation thought is powerfully shaped by the history of ideas of nature and its relation to people, and conservation interventions govern and affect peoples and ecologies. This course argues that being able to think deeply, particularly about power, improves conservation policy making and practice. Political ecology is by far the best known and published approach to thinking about power in conservation; this course emphasizes the relatively neglected but robust anthropology of conservation literature outside political ecology, especially literature rooted in Foucault. It is intended to make four of Foucault\u2019s concepts of power accessible, concepts that are the most used in the anthropology of conservation: the power of discourses, discipline and governmentality, subject formation, and neoliberal governmentality. The important ethnographic literature that these concepts have stimulated is also examined. Together, theory and ethnography can underpin our emerging understanding of a new, Anthropocene-shaped world. This course will be of interest to students and scholars of conservation, environmental anthropology, and political ecology, as well as conservation practitioners and policy makers. It is a required course for students in the combined YSE\/Anthropology doctoral degree program. It is highly recommended for M.E.Sc. students who need an in-depth course on social science theory. M.E.M. students interested in conservation practice and policy making are also encouraged to consider this course, which makes an effort to bridge the gap between the best academic literature and practice. Open to advanced undergraduates. No prerequisites. Three-hour discussion-centered seminar.", + "syllabus_url": "https://yale.instructure.com/courses/88944/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } + }, + { + "season_code": "202303", + "requirements": "", + "description": "This course examines the anthropology of power, particularly power in conservation interventions in the global South. It is intended to give students a toolbox of ideas about power in order to improve the effectiveness of conservation. Conservation thought and practice are power-laden: conservation thought is powerfully shaped by the history of ideas of nature and its relation to people, and conservation interventions govern and affect peoples and ecologies. This course argues that being able to think deeply, particularly about power, improves conservation policy making and practice. Political ecology is by far the best known and published approach to thinking about power in conservation; this course emphasizes the relatively neglected but robust anthropology of conservation literature outside political ecology, especially literature rooted in Foucault. It is intended to make four of Foucault\u2019s concepts of power accessible, concepts that are the most used in the anthropology of conservation: the power of discourses, discipline and governmentality, subject formation, and neoliberal governmentality. The important ethnographic literature that these concepts have stimulated is also examined. Together, theory and ethnography can underpin our emerging understanding of a new, Anthropocene-shaped world. This course will be of interest to students and scholars of conservation, environmental anthropology, and political ecology, as well as conservation practitioners and policy makers. It is a required course for students in the combined YSE/Anthropology doctoral degree program. It is highly recommended for M.E.Sc. students who need an in-depth course on social science theory. M.E.M. students interested in conservation practice and policy making are also encouraged to consider this course, which makes an effort to bridge the gap between the best academic literature and practice. Open to advanced undergraduates. No prerequisites. Three-hour discussion-centered seminar.", "short_title": "Power in Conservation", "title": "Power in Conservation", "school": "FS", @@ -117001,7 +244694,7 @@ "13:00", "15:50", "S 32 - Sage Hall 32", - "https:\/\/map.yale.edu\/?id=1910#!m\/559547" + "https://map.yale.edu/?id=1910#!m/559547" ] ] }, @@ -117012,17 +244705,45 @@ "YSE MEM ELCM Sci Princ 1", "YSE MEM P2 Core A", "YSE MEM N&S Social Science", - "PH: Global Health, Psychosocial\/Social and behavioral\/Anthropology" + "PH: Global Health, Psychosocial/Social and behavioral/Anthropology" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92654\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92654/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -117059,7 +244780,7 @@ "13:00", "14:20", "KRN 301 - Kroon Hall 301", - "https:\/\/map.yale.edu\/?id=1910#!m\/559995" + "https://map.yale.edu/?id=1910#!m/559995" ] ], "Wednesday": [ @@ -117067,7 +244788,7 @@ "13:00", "14:20", "KRN 301 - Kroon Hall 301", - "https:\/\/map.yale.edu\/?id=1910#!m\/559995" + "https://map.yale.edu/?id=1910#!m/559995" ] ] }, @@ -117086,10 +244807,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90902\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90902/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -117126,7 +244875,7 @@ "13:00", "15:50", "BOWERS AUD - Bowers Hall AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/559547" + "https://map.yale.edu/?id=1910#!m/559547" ] ] }, @@ -117135,17 +244884,45 @@ "flags": [ "YSE MEM C&A Electives", "YSE MEM N&S Social Science", - "PH: Global Health, Ethics\/Humanities\/History" + "PH: Global Health, Ethics/Humanities/History" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90906\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90906/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -117182,7 +244959,7 @@ "16:00", "18:50", "KRN 321 - Kroon Hall 321", - "https:\/\/map.yale.edu\/?id=1910#!m\/559995" + "https://map.yale.edu/?id=1910#!m/559995" ] ] }, @@ -117198,10 +244975,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91445\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91445/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -117238,7 +245043,7 @@ "13:00", "15:50", "KRN 319 - Kroon Hall 319", - "https:\/\/map.yale.edu\/?id=1910#!m\/559995" + "https://map.yale.edu/?id=1910#!m/559995" ] ] }, @@ -117254,15 +245059,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90910\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90910/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "Seminar on the major traditions of thought and debate regarding climate, climate change, and society, drawing largely on the social sciences and humanities. Section I, overview of the course. Section II, disaster: the social origins of disastrous events; and the attribution of societal \"collapse\" to extreme climatic events. Section III, causality: the revelatory character of climatic perturbation; politics and the history of efforts to control weather\/climate; and nineteenth\u2013twentieth-century theories of environmental determinism. Section IV, history and culture: the ancient tradition of explaining differences among people in terms of differences in climate; and cross-cultural differences in views of climate.\u00a0 Section V, knowledge: the study of folk knowledge of climate; and local views of climatic perturbation and change. Section VI, politics: knowledge, humor, and symbolism in North-South climate debates. The goal\u00a0of the course is to examine the embedded historical, cultural, and political drivers of current climate change debates and discourses. This course can be applied towards Yale College distributional requirements in Social Science and Writing. The course is open to both graduate and undergraduate students. Enrollment capped.", + "description": "Seminar on the major traditions of thought and debate regarding climate, climate change, and society, drawing largely on the social sciences and humanities. Section I, overview of the course. Section II, disaster: the social origins of disastrous events; and the attribution of societal \"collapse\" to extreme climatic events. Section III, causality: the revelatory character of climatic perturbation; politics and the history of efforts to control weather/climate; and nineteenth\u2013twentieth-century theories of environmental determinism. Section IV, history and culture: the ancient tradition of explaining differences among people in terms of differences in climate; and cross-cultural differences in views of climate.\u00a0 Section V, knowledge: the study of folk knowledge of climate; and local views of climatic perturbation and change. Section VI, politics: knowledge, humor, and symbolism in North-South climate debates. The goal\u00a0of the course is to examine the embedded historical, cultural, and political drivers of current climate change debates and discourses. This course can be applied towards Yale College distributional requirements in Social Science and Writing. The course is open to both graduate and undergraduate students. Enrollment capped.", "short_title": "Climate and Society: Past to ...", "title": "Climate and Society: Past to Present", "school": "FS", @@ -117299,7 +245132,7 @@ "13:30", "15:20", "KRN 321 - Kroon Hall 321", - "https:\/\/map.yale.edu\/?id=1910#!m\/559995" + "https://map.yale.edu/?id=1910#!m/559995" ] ] }, @@ -117317,10 +245150,113 @@ "classnotes": "YC juniors and seniors have priority for admission", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88235\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88235/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989179372787476, + 0.9986909031867981, + 0.998598039150238, + 0.9960972666740417, + 0.9988501071929932, + 0.9987951517105103 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989284873008728, + 0.9810959696769714, + 0.9988623857498169, + 0.9988846182823181, + 0.9983105659484863, + 0.9989076852798462 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989305138587952, + 0.9988071918487549, + 0.9988629817962646, + 0.9989218711853027, + 0.9989014863967896, + 0.9988675117492676, + 0.9988678693771362 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 19 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -117357,7 +245293,7 @@ "9:00", "11:50", "KRN G01 - Kroon Hall G01", - "https:\/\/map.yale.edu\/?id=1910#!m\/559995" + "https://map.yale.edu/?id=1910#!m/559995" ] ] }, @@ -117377,10 +245313,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90918\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90918/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -117418,7 +245382,7 @@ "13:00", "15:50", "KRN G01 - Kroon Hall G01", - "https:\/\/map.yale.edu\/?id=1910#!m\/559995" + "https://map.yale.edu/?id=1910#!m/559995" ] ] }, @@ -117432,10 +245396,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90922\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90922/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -117472,7 +245464,7 @@ "13:00", "15:50", "KRN 321 - Kroon Hall 321", - "https:\/\/map.yale.edu\/?id=1910#!m\/559995" + "https://map.yale.edu/?id=1910#!m/559995" ] ] }, @@ -117484,15 +245476,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90925\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90925/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "A biweekly seminar for Dove doctoral advisees and students in the combined YSE\/Anthropology doctoral program. Presentation and discussion of grant proposals, dissertation prospectuses, and dissertation chapters; trial runs of conference presentations and job talks; discussion of comprehensive exams, grantsmanship, fieldwork, data analysis, writing and publishing, and the job search; and collaborative writing and publishing projects.", + "description": "A biweekly seminar for Dove doctoral advisees and students in the combined YSE/Anthropology doctoral program. Presentation and discussion of grant proposals, dissertation prospectuses, and dissertation chapters; trial runs of conference presentations and job talks; discussion of comprehensive exams, grantsmanship, fieldwork, data analysis, writing and publishing, and the job search; and collaborative writing and publishing projects.", "short_title": "Environmental Anthropology Co...", "title": "Environmental Anthropology Colloquy", "school": "FS", @@ -117524,7 +245544,7 @@ "13:00", "15:50", "KRN 321 - Kroon Hall 321", - "https:\/\/map.yale.edu\/?id=1910#!m\/559995" + "https://map.yale.edu/?id=1910#!m/559995" ] ] }, @@ -117539,7 +245559,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -117580,7 +245628,7 @@ "9:00", "10:20", "HLH28 A102 - 28 Hillhouse Avenue A102", - "https:\/\/map.yale.edu\/?id=1910#!m\/559988" + "https://map.yale.edu/?id=1910#!m/559988" ] ], "Wednesday": [ @@ -117588,7 +245636,7 @@ "9:00", "10:20", "HLH28 A102 - 28 Hillhouse Avenue A102", - "https:\/\/map.yale.edu\/?id=1910#!m\/559988" + "https://map.yale.edu/?id=1910#!m/559988" ] ] }, @@ -117600,10 +245648,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89879\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89879/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -117643,7 +245719,7 @@ "13:00", "15:50", "MARSH R - Marsh Hall R", - "https:\/\/map.yale.edu\/?id=1910#!m\/559984" + "https://map.yale.edu/?id=1910#!m/559984" ] ] }, @@ -117657,10 +245733,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90933\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90933/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -117697,7 +245801,7 @@ "16:00", "18:50", "MARSH R - Marsh Hall R", - "https:\/\/map.yale.edu\/?id=1910#!m\/559984" + "https://map.yale.edu/?id=1910#!m/559984" ] ] }, @@ -117711,10 +245815,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90937\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90937/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -117754,7 +245886,7 @@ "13:00", "15:50", "MARSH R - Marsh Hall R", - "https:\/\/map.yale.edu\/?id=1910#!m\/559984" + "https://map.yale.edu/?id=1910#!m/559984" ] ] }, @@ -117771,7 +245903,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -117812,7 +245972,7 @@ "13:00", "14:50", "LEPH 102 - Laboratory of EPH 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ] }, @@ -117823,15 +245983,43 @@ "YSE MEM N&S Humanities", "YSE MEM N&S Social Science" ], - "regnotes": "Students who plan to enroll must complete an application, which will be used to match each student with a clinic project. The application is available:\n https:\/\/bit.ly\/3uAZErJ\nApplications are due December 15.", + "regnotes": "Students who plan to enroll must complete an application, which will be used to match each student with a clinic project. The application is available:\n https://bit.ly/3uAZErJ\nApplications are due December 15.", "rp_attr": "", "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91002\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91002/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -117868,7 +246056,7 @@ "9:00", "11:50", "KRN G01 - Kroon Hall G01", - "https:\/\/map.yale.edu\/?id=1910#!m\/559995" + "https://map.yale.edu/?id=1910#!m/559995" ] ] }, @@ -117879,15 +246067,43 @@ "YSE MEM N&S Humanities", "YSE MEM N&S Social Science" ], - "regnotes": "Interested students are required to submit an application by August 25, 2023 11:59 pm, detailing their motivation, relevant background or experience, and their commitment to actively contribute to the course and clinic projects. To apply, please use https:\/\/bit.ly\/3P5obgc\n", + "regnotes": "Interested students are required to submit an application by August 25, 2023 11:59 pm, detailing their motivation, relevant background or experience, and their commitment to actively contribute to the course and clinic projects. To apply, please use https://bit.ly/3P5obgc\n", "rp_attr": "", "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91291\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91291/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -117927,7 +246143,7 @@ "9:00", "11:00", "WTS B52 - Watson Center 60 Sachem Street B52", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -117939,10 +246155,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89996\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89996/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -117979,7 +246223,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -118018,7 +246290,7 @@ "11:35", "12:50", "WTS A51 - Watson Center 60 Sachem Street A51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -118026,7 +246298,7 @@ "11:35", "12:50", "WTS A51 - Watson Center 60 Sachem Street A51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -118045,10 +246317,195 @@ "classnotes": "", "final_exam": "Friday, December 15, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88134\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88134/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984906911849976, + 0.9988023042678833, + 0.9981614947319031, + 0.9987499713897705, + 0.9987645149230957, + 0.9960381984710693, + 0.998710036277771, + 0.9987433552742004, + 0.9988502264022827, + 0.9987247586250305, + 0.998808741569519, + 0.9985186457633972, + 0.9989388585090637, + 0.9987329840660095, + 0.9987537860870361, + 0.9968116879463196, + 0.9988235831260681, + 0.9986103773117065, + 0.9986758828163147, + 0.9928240776062012 + ], + "sentiment_counts": { + "POSITIVE": 18, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989544153213501, + 0.9711685180664062, + 0.9987927675247192, + 0.98897385597229, + 0.9988085031509399, + 0.9983774423599243, + 0.9984245300292969, + 0.9988868832588196, + 0.9988409876823425, + 0.999488353729248, + 0.99888676404953, + 0.9847906231880188, + 0.9983874559402466, + 0.9988617897033691, + 0.9814188480377197, + 0.9985557198524475, + 0.9988850951194763, + 0.9920280575752258, + 0.9687473177909851 + ], + "sentiment_counts": { + "NEGATIVE": 7, + "POSITIVE": 12 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3684210526315789, + "POSITIVE": 0.631578947368421 + }, + "sentiment_overall": [ + "POSITIVE", + 0.631578947368421 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989383816719055, + 0.995375394821167, + 0.9988008737564087, + 0.9976392984390259, + 0.998902440071106, + 0.998846173286438, + 0.9989263415336609, + 0.9989063739776611, + 0.9988977909088135, + 0.9964461922645569, + 0.9988909363746643, + 0.9988394379615784, + 0.9987695813179016, + 0.9988173842430115, + 0.9994552731513977, + 0.9989340901374817, + 0.9972171783447266, + 0.9989266991615295, + 0.9988667964935303, + 0.9924772381782532 + ], + "sentiment_counts": { + "POSITIVE": 16, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 46, + "final_proportion": 0.7796610169491526, + "final_counts": { + "POSITIVE": 46, + "NEGATIVE": 13 + }, + "final_distribution": { + "POSITIVE": 0.7796610169491526, + "NEGATIVE": 0.22033898305084745 + } + } }, { "season_code": "202303", @@ -118086,7 +246543,7 @@ "13:00", "14:15", "LOM 215 - Leet Oliver Memorial Hall 215", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ], "Thursday": [ @@ -118094,7 +246551,7 @@ "13:00", "14:15", "LOM 215 - Leet Oliver Memorial Hall 215", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ] }, @@ -118110,15 +246567,104 @@ "classnotes": "", "final_exam": "Saturday, December 16, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88392\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88392/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987443685531616, + 0.9986936450004578, + 0.9987605810165405, + 0.9984785914421082 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9970701932907104, + 0.9983786344528198, + 0.9988024234771729, + 0.9988499879837036 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989055395126343, + 0.9121260643005371, + 0.9989000558853149 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 0.9090909090909091, + "final_counts": { + "POSITIVE": 10, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + } + } }, { "season_code": "202303", "requirements": "Prerequisite: ENAS 194 or permission of the instructor.", - "description": "First of a two-semester sequence.\u00a0Unified treatment of momentum, energy, and chemical species transport including conservation laws, flux relations, and boundary conditions. Topics include convective and diffusive transport, transport with homogeneous and heterogeneous chemical reactions and\/or phase change, and interfacial transport phenomena. Emphasis on problem analysis and mathematical modeling, including problem formulation, scaling arguments, analytical methods, approximation techniques, and numerical solutions.", + "description": "First of a two-semester sequence.\u00a0Unified treatment of momentum, energy, and chemical species transport including conservation laws, flux relations, and boundary conditions. Topics include convective and diffusive transport, transport with homogeneous and heterogeneous chemical reactions and/or phase change, and interfacial transport phenomena. Emphasis on problem analysis and mathematical modeling, including problem formulation, scaling arguments, analytical methods, approximation techniques, and numerical solutions.", "short_title": "Transport Phenomena I", "title": "Transport Phenomena I", "school": "YC", @@ -118177,10 +246723,145 @@ "classnotes": "", "final_exam": "Saturday, December 16, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88396\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88396/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9948004484176636, + 0.9985699653625488, + 0.9987475872039795, + 0.9987093210220337, + 0.9987775683403015, + 0.9987095594406128, + 0.9980269074440002, + 0.9989280104637146, + 0.9985994696617126, + 0.9988619089126587, + 0.9987285733222961 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989399313926697, + 0.9989038705825806, + 0.9989103078842163, + 0.9988961219787598, + 0.9989357590675354, + 0.9985862970352173, + 0.9989307522773743, + 0.9972512125968933, + 0.9988372921943665, + 0.9989274144172668, + 0.998923122882843, + 0.9989157915115356 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9166666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989191293716431, + 0.9989203214645386, + 0.9987666606903076, + 0.9989263415336609, + 0.9988906979560852, + 0.9986019730567932, + 0.9841609597206116, + 0.9989257454872131, + 0.9989299178123474, + 0.9989150762557983, + 0.9989032745361328 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9090909090909091 + ] + }, + "final_label": "POSITIVE", + "final_count": 32, + "final_proportion": 0.9411764705882353, + "final_counts": { + "POSITIVE": 32, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9411764705882353, + "NEGATIVE": 0.058823529411764705 + } + } }, { "season_code": "202303", @@ -118219,7 +246900,7 @@ "9:00", "10:15", "ML 107 - Mason Laboratory 107", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ], "Thursday": [ @@ -118227,7 +246908,7 @@ "9:00", "10:15", "ML 107 - Mason Laboratory 107", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ] }, @@ -118245,10 +246926,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88420\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88420/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -118287,7 +246996,7 @@ "13:00", "14:15", "HLH17 03 - 17 Hillhouse Avenue 03", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Wednesday": [ @@ -118295,7 +247004,7 @@ "13:00", "14:15", "HLH17 03 - 17 Hillhouse Avenue 03", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -118315,10 +247024,109 @@ "classnotes": "", "final_exam": "Wednesday, December 20, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90216\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90216/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998846173286438, + 0.9986068606376648, + 0.9984049201011658, + 0.9987956285476685, + 0.998934805393219, + 0.9987118244171143, + 0.9988701939582825 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989262223243713, + 0.9989400506019592, + 0.9989011287689209, + 0.9989180564880371, + 0.9988895058631897 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988906979560852, + 0.9988844990730286, + 0.9986125230789185, + 0.9986878037452698, + 0.9989223480224609 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 17 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -118356,7 +247164,7 @@ "13:00", "14:15", "WTS B31 - Watson Center 60 Sachem Street B31", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -118364,7 +247172,7 @@ "13:00", "14:15", "WTS B31 - Watson Center 60 Sachem Street B31", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -118376,10 +247184,91 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88760\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88760/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.995658278465271, + 0.9964227080345154, + 0.9988794922828674 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998923122882843, + 0.9983888864517212 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998380184173584, + 0.9986214637756348, + 0.9988856911659241 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 8, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 8 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -118417,7 +247306,7 @@ "14:30", "15:45", "ML 104 - Mason Laboratory 104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ], "Wednesday": [ @@ -118425,7 +247314,7 @@ "14:30", "15:45", "ML 104 - Mason Laboratory 104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ] }, @@ -118441,10 +247330,137 @@ "classnotes": "", "final_exam": "Sunday, December 17, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88138\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88138/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985430240631104, + 0.9918023943901062, + 0.9988829493522644, + 0.9920275807380676, + 0.9988215565681458, + 0.9891701340675354, + 0.9988191723823547, + 0.9986979961395264, + 0.9986704587936401 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989206790924072, + 0.9989226460456848, + 0.9988677501678467, + 0.9988539218902588, + 0.9988883137702942, + 0.9994803071022034, + 0.9989338517189026, + 0.9988859295845032, + 0.9989122152328491, + 0.9988698363304138 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988501071929932, + 0.997117280960083, + 0.9989301562309265, + 0.9988414645195007, + 0.9989166259765625, + 0.9994953870773315, + 0.9989349246025085, + 0.997117280960083, + 0.9989134073257446, + 0.992523729801178, + 0.9988343119621277 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8181818181818182, + "NEGATIVE": 0.18181818181818182 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8181818181818182 + ] + }, + "final_label": "POSITIVE", + "final_count": 27, + "final_proportion": 0.9, + "final_counts": { + "POSITIVE": 27, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + } + } }, { "season_code": "202303", @@ -118487,7 +247503,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -118530,7 +247574,88 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9975221753120422, + 0.9987334609031677, + 0.9987838864326477 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981826543807983, + 0.968204140663147, + 0.9988956451416016 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9979446530342102 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 0 + }, + "sentiment_distribution": { + "NEGATIVE": 1.0, + "POSITIVE": 0.0 + }, + "sentiment_overall": [ + "NEGATIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 0.8571428571428571, + "final_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + } + } }, { "season_code": "202303", @@ -118567,7 +247692,7 @@ "9:25", "11:15", "HLH31 108 - 31 Hillhouse Avenue 108", - "https:\/\/map.yale.edu\/?id=1910#!m\/559990" + "https://map.yale.edu/?id=1910#!m/559990" ] ] }, @@ -118582,10 +247707,123 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90388\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90388/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988849759101868, + 0.9989250302314758, + 0.9988616704940796, + 0.9987836480140686, + 0.9988120794296265, + 0.9985709190368652, + 0.9988917708396912, + 0.9988746047019958 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987912774085999, + 0.998881995677948, + 0.9989007711410522, + 0.9991543292999268, + 0.9988994598388672, + 0.9989203214645386, + 0.9989308714866638 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9901964664459229, + 0.9988813996315002, + 0.9987572431564331, + 0.9982989430427551, + 0.9989023208618164, + 0.9988338351249695, + 0.9989263415336609, + 0.9989243149757385 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 22, + "final_proportion": 0.9565217391304348, + "final_counts": { + "POSITIVE": 22, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9565217391304348, + "NEGATIVE": 0.043478260869565216 + } + } }, { "season_code": "202303", @@ -118622,7 +247860,7 @@ "13:30", "15:20", "HLH31 108 - 31 Hillhouse Avenue 108", - "https:\/\/map.yale.edu\/?id=1910#!m\/559990" + "https://map.yale.edu/?id=1910#!m/559990" ] ] }, @@ -118636,10 +247874,121 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88925\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88925/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.99332195520401, + 0.998890221118927, + 0.998890221118927, + 0.9988332390785217, + 0.9989226460456848, + 0.9987396597862244, + 0.9989262223243713 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994150400161743, + 0.9989151954650879, + 0.9969940185546875, + 0.9989331364631653, + 0.9988715052604675, + 0.9987351298332214, + 0.9989344477653503 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 6 + }, + "sentiment_distribution": { + "NEGATIVE": 0.14285714285714285, + "POSITIVE": 0.8571428571428571 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987071752548218, + 0.9988730549812317, + 0.9989045858383179, + 0.9988492727279663, + 0.9988977909088135, + 0.9989299178123474, + 0.9989387392997742, + 0.998898983001709 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 7 + }, + "sentiment_distribution": { + "NEGATIVE": 0.125, + "POSITIVE": 0.875 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 0.9090909090909091, + "final_counts": { + "POSITIVE": 20, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + } + } }, { "season_code": "202303", @@ -118678,7 +248027,7 @@ "9:25", "11:15", "HQ 113 - Humanities Quadrangle 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -118692,10 +248041,93 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90387\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90387/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989182949066162, + 0.998304009437561 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9875518679618835, + 0.9994242191314697 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 0 + }, + "sentiment_distribution": { + "NEGATIVE": 1.0, + "POSITIVE": 0.0 + }, + "sentiment_overall": [ + "NEGATIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989215135574341, + 0.9981397390365601, + 0.9982553124427795, + 0.9989250302314758 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 0.75, + "final_counts": { + "POSITIVE": 6, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + } + } }, { "season_code": "202303", @@ -118733,7 +248165,7 @@ "13:30", "15:20", "RKZ 05 - Rosenkranz Hall 05", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -118750,10 +248182,119 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88994\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88994/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998710036277771, + 0.998879611492157, + 0.9985159039497375, + 0.998892605304718, + 0.9984787106513977, + 0.9986811280250549, + 0.9988356232643127 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989367127418518, + 0.9989293217658997, + 0.9950376152992249, + 0.9989080429077148, + 0.998881995677948, + 0.998900294303894 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986936450004578, + 0.9971778392791748, + 0.9988695979118347, + 0.9987679123878479, + 0.9989317059516907, + 0.9966506361961365, + 0.9985800981521606, + 0.9988189339637756, + 0.9989081621170044 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 22, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 22 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -118797,7 +248338,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -118835,7 +248404,7 @@ "13:30", "15:20", "RKZ 301 - Rosenkranz Hall 301", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -118853,10 +248422,89 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89003\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89003/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988798499107361, + 0.9986416697502136 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989107847213745, + 0.9977339506149292 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988418221473694, + 0.9898300766944885 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "final_label": "POSITIVE", + "final_count": 5, + "final_proportion": 0.8333333333333334, + "final_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + } + } }, { "season_code": "202303", @@ -118894,7 +248542,7 @@ "13:30", "15:20", "RKZ 02 - Rosenkranz Hall 02", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -118911,10 +248559,101 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88996\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88996/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988752007484436, + 0.9989216327667236, + 0.9988607168197632, + 0.9988160133361816 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989018440246582, + 0.9988604784011841, + 0.9989191293716431 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983909130096436, + 0.9989079236984253, + 0.9989101886749268, + 0.9989249110221863, + 0.9985248446464539, + 0.9988856911659241 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 13 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -118957,10 +248696,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89099\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89099/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -118999,7 +248766,7 @@ "15:30", "17:20", "RKZ 102 - Rosenkranz Hall 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -119018,10 +248785,63 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89032\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89032/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9972186088562012 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9995085000991821 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 0 + }, + "sentiment_distribution": { + "NEGATIVE": 1.0, + "POSITIVE": 0.0 + }, + "sentiment_overall": [ + "NEGATIVE", + 1.0 + ] + }, + "final_label": "neutral", + "final_count": 0.5, + "final_proportion": 0.5, + "final_counts": { + "POSITIVE": 1, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + } + } }, { "season_code": "202303", @@ -119059,7 +248879,7 @@ "9:25", "11:15", "WLH 002 - William L. Harkness Hall 002", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -119077,10 +248897,125 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88338\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88338/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989088773727417, + 0.9987748265266418, + 0.9919078350067139, + 0.9985306262969971, + 0.9987499713897705, + 0.9987654685974121, + 0.9988027811050415, + 0.9988221526145935 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994059801101685, + 0.9978442192077637, + 0.9988561868667603, + 0.9985306262969971, + 0.9989045858383179, + 0.998904824256897, + 0.9986775517463684, + 0.9989215135574341 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 7 + }, + "sentiment_distribution": { + "NEGATIVE": 0.125, + "POSITIVE": 0.875 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986199140548706, + 0.9989172220230103, + 0.9985306262969971, + 0.9988866448402405, + 0.9986949563026428, + 0.9985295534133911, + 0.9988364577293396, + 0.9986392855644226 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 23, + "final_proportion": 0.9583333333333334, + "final_counts": { + "POSITIVE": 23, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9583333333333334, + "NEGATIVE": 0.041666666666666664 + } + } }, { "season_code": "202303", @@ -119122,7 +249057,7 @@ "13:30", "15:20", "WLH 002 - William L. Harkness Hall 002", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -119137,10 +249072,99 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89162\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89162/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9964343309402466, + 0.9989063739776611, + 0.9963538646697998, + 0.9989225268363953 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989332556724548, + 0.9989054203033447, + 0.998885452747345 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989257454872131, + 0.9989217519760132, + 0.9989079236984253, + 0.997117280960083, + 0.9989387392997742 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 12 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -119178,7 +249202,7 @@ "18:30", "20:20", "HLH31 108 - 31 Hillhouse Avenue 108", - "https:\/\/map.yale.edu\/?id=1910#!m\/559990" + "https://map.yale.edu/?id=1910#!m/559990" ] ] }, @@ -119194,10 +249218,113 @@ "classnotes": "Preregistration for this course is for EPE and PLSC majors only and the application form can be found on epe.yale.edu. In one paragraph, please explain your interest and make sure to include your class year and major.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88926\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88926/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981264472007751, + 0.998854398727417, + 0.9987370371818542, + 0.9988790154457092, + 0.9966586828231812, + 0.9986957907676697, + 0.9988609552383423 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988405108451843, + 0.998913049697876, + 0.9985961318016052, + 0.9986857771873474, + 0.998938262462616 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989097118377686, + 0.9988582134246826, + 0.9989184141159058, + 0.9989275336265564, + 0.9919705390930176, + 0.9989226460456848, + 0.9989050626754761 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 19 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -119235,7 +249362,7 @@ "15:30", "17:20", "HLH31 108 - 31 Hillhouse Avenue 108", - "https:\/\/map.yale.edu\/?id=1910#!m\/559990" + "https://map.yale.edu/?id=1910#!m/559990" ] ] }, @@ -119252,10 +249379,117 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88927\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88927/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9980286955833435, + 0.9954778552055359, + 0.9935854077339172, + 0.9985163807868958, + 0.9987905621528625 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9903432130813599, + 0.9995087385177612, + 0.9986526966094971, + 0.9986698627471924, + 0.9995018243789673, + 0.9978821873664856, + 0.987128734588623 + ], + "sentiment_counts": { + "NEGATIVE": 7, + "POSITIVE": 0 + }, + "sentiment_distribution": { + "NEGATIVE": 1.0, + "POSITIVE": 0.0 + }, + "sentiment_overall": [ + "NEGATIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994736313819885, + 0.9995083808898926, + 0.9988324046134949, + 0.9983649849891663, + 0.9983184337615967, + 0.9460770487785339, + 0.9929104447364807, + 0.9879125952720642 + ], + "sentiment_counts": { + "NEGATIVE": 5, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.625, + "POSITIVE": 0.375 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.625 + ] + }, + "final_label": "NEGATIVE", + "final_count": 12, + "final_proportion": 0.6, + "final_counts": { + "POSITIVE": 8, + "NEGATIVE": 12 + }, + "final_distribution": { + "POSITIVE": 0.4, + "NEGATIVE": 0.6 + } + } }, { "season_code": "202303", @@ -119296,7 +249530,7 @@ "13:30", "15:20", "GR109 ROSENFELD - 109 Grove Street ROSENFELD", - "https:\/\/map.yale.edu\/?id=1910#!m\/560109" + "https://map.yale.edu/?id=1910#!m/560109" ] ] }, @@ -119315,10 +249549,219 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88615\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88615/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982588887214661, + 0.9980531930923462, + 0.9963216781616211, + 0.9968819618225098, + 0.9987257122993469, + 0.9882138967514038, + 0.9988465309143066, + 0.996353030204773, + 0.99783855676651, + 0.9987314343452454, + 0.9986346364021301, + 0.9984899759292603, + 0.9978922009468079, + 0.9987033605575562, + 0.9930590391159058, + 0.9988428354263306, + 0.9987905621528625, + 0.9976913928985596, + 0.998887836933136, + 0.9987137317657471, + 0.9967828989028931, + 0.998808741569519, + 0.9988449811935425, + 0.9975696206092834 + ], + "sentiment_counts": { + "POSITIVE": 23, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9583333333333334, + "NEGATIVE": 0.041666666666666664 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9583333333333334 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982611536979675, + 0.998829185962677, + 0.9988687634468079, + 0.9974701404571533, + 0.9989342093467712, + 0.9954180717468262, + 0.9919736385345459, + 0.9970499277114868, + 0.9988986253738403, + 0.9988359808921814, + 0.998904824256897, + 0.9994970560073853, + 0.9984412789344788, + 0.9932231903076172, + 0.998506486415863, + 0.9987389445304871, + 0.9982746839523315, + 0.9994663596153259, + 0.9988964796066284, + 0.9935163259506226, + 0.9987803101539612 + ], + "sentiment_counts": { + "POSITIVE": 14, + "NEGATIVE": 7 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9906851649284363, + 0.9983372688293457, + 0.9988584518432617, + 0.9989295601844788, + 0.998769223690033, + 0.9989234805107117, + 0.9988842606544495, + 0.9989142417907715, + 0.9962432384490967, + 0.9984258413314819, + 0.9988288283348083, + 0.998917818069458, + 0.9988903403282166, + 0.9987150430679321, + 0.9988003969192505, + 0.9951748251914978, + 0.9975628852844238, + 0.998890221118927, + 0.9986867308616638, + 0.9980649352073669, + 0.9988775849342346, + 0.9832240343093872, + 0.9987377524375916, + 0.9984399676322937, + 0.9977144002914429, + 0.9988495111465454 + ], + "sentiment_counts": { + "POSITIVE": 22, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.8461538461538461, + "NEGATIVE": 0.15384615384615385 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8461538461538461 + ] + }, + "final_label": "POSITIVE", + "final_count": 59, + "final_proportion": 0.8309859154929577, + "final_counts": { + "POSITIVE": 59, + "NEGATIVE": 12 + }, + "final_distribution": { + "POSITIVE": 0.8309859154929577, + "NEGATIVE": 0.16901408450704225 + } + } }, { "season_code": "202303", @@ -119357,7 +249800,7 @@ "13:30", "15:20", "HQ C03 - Humanities Quadrangle C03", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -119374,10 +249817,99 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88148\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88148/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998923122882843, + 0.9987227320671082, + 0.9988490343093872, + 0.9983882904052734 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987255930900574, + 0.9989225268363953 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9851517081260681, + 0.9988889098167419, + 0.9989320635795593, + 0.9989294409751892, + 0.9973165392875671 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.4, + "POSITIVE": 0.6 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 0.8181818181818182, + "final_counts": { + "POSITIVE": 9, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8181818181818182, + "NEGATIVE": 0.18181818181818182 + } + } }, { "season_code": "202303", @@ -119418,7 +249950,7 @@ "13:30", "15:20", "WTS B74 - Watson Center 60 Sachem Street B74", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -119440,10 +249972,107 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88917\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88917/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9968783855438232, + 0.9988638162612915, + 0.9987142086029053, + 0.9988240599632263, + 0.998775064945221, + 0.9967511892318726 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989232420921326, + 0.9977788329124451, + 0.9989073276519775, + 0.9987710118293762 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989205598831177, + 0.9989074468612671, + 0.9987315535545349, + 0.9988357424736023, + 0.99880051612854, + 0.9989172220230103 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 16 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -119480,7 +250109,7 @@ "13:30", "15:20", "HLH31 108 - 31 Hillhouse Avenue 108", - "https:\/\/map.yale.edu\/?id=1910#!m\/559990" + "https://map.yale.edu/?id=1910#!m/559990" ] ] }, @@ -119495,10 +250124,121 @@ "classnotes": "Preregistration for this course is for EPE and PLSC majors only and the application form can be found on epe.yale.edu. In one paragraph, please explain your interest and make sure to include your class year and major.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88928\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88928/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988858103752136, + 0.9988231062889099, + 0.998588502407074, + 0.9985094666481018, + 0.9988310933113098, + 0.9983718991279602, + 0.9988318085670471 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.982421338558197, + 0.9989240765571594, + 0.998367965221405, + 0.9987552165985107, + 0.9987815022468567, + 0.9994654059410095, + 0.9988264441490173 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988941550254822, + 0.9980168342590332, + 0.9988086223602295, + 0.9988928437232971, + 0.9988840222358704, + 0.9989141225814819, + 0.9988441467285156, + 0.9989268183708191 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 21, + "final_proportion": 0.9545454545454546, + "final_counts": { + "POSITIVE": 21, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9545454545454546, + "NEGATIVE": 0.045454545454545456 + } + } }, { "season_code": "202303", @@ -119536,7 +250276,7 @@ "13:30", "15:20", "WTS B74 - Watson Center 60 Sachem Street B74", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -119553,10 +250293,109 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88929\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88929/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9976391792297363, + 0.998244047164917, + 0.996590256690979, + 0.9986129999160767, + 0.9981880784034729, + 0.9988797307014465 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9938583970069885, + 0.998746395111084, + 0.9994761347770691, + 0.9988565444946289, + 0.9995131492614746 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.6, + "NEGATIVE": 0.4 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988027811050415, + 0.9982247948646545, + 0.9995050430297852, + 0.9988790154457092, + 0.9994983673095703 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.6, + "NEGATIVE": 0.4 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 0.625, + "final_counts": { + "POSITIVE": 10, + "NEGATIVE": 6 + }, + "final_distribution": { + "POSITIVE": 0.625, + "NEGATIVE": 0.375 + } + } }, { "season_code": "202303", @@ -119595,7 +250434,7 @@ "9:25", "11:15", "WALL81 101 - 81 Wall Street 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -119620,10 +250459,111 @@ "classnotes": "Please check the canvas site on more information about this course before emailing the instructor.\n\nThis course requires instructor permission. Please list your major, class year, GPA, relevant courses or work experience, reason for taking the course or a brief note on how the course fits into your academic plans, whether for senior essay or not. ", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89641\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89641/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988753199577332, + 0.9989223480224609, + 0.9989107847213745, + 0.9988318085670471, + 0.9989290833473206, + 0.9985527396202087 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998619556427002, + 0.9988075494766235, + 0.9988970756530762, + 0.9988648891448975, + 0.9980946183204651 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9951049089431763, + 0.998863935470581, + 0.9988999366760254, + 0.9836829304695129, + 0.9973142743110657, + 0.9988669157028198 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 5 + }, + "sentiment_distribution": { + "NEGATIVE": 0.16666666666666666, + "POSITIVE": 0.8333333333333334 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 0.9411764705882353, + "final_counts": { + "POSITIVE": 16, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9411764705882353, + "NEGATIVE": 0.058823529411764705 + } + } }, { "season_code": "202303", @@ -119655,7 +250595,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC EP&E Economics Core", "YC EP&E: Advanced Seminar" @@ -119668,7 +250608,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -119715,7 +250683,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -119759,7 +250755,7 @@ "13:30", "15:20", "RKZ 05 - Rosenkranz Hall 05", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -119777,10 +250773,113 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90079\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90079/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988908171653748, + 0.9989186525344849, + 0.9988468885421753, + 0.9989148378372192, + 0.9988295435905457, + 0.9988223910331726 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986775517463684, + 0.9965946078300476, + 0.9989385008811951, + 0.9988704323768616, + 0.9988952875137329, + 0.9988698363304138 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988988637924194, + 0.9989064931869507, + 0.9989142417907715, + 0.998910665512085, + 0.9988652467727661, + 0.998817503452301, + 0.9988685846328735 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 19 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -119823,7 +250922,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -119863,10 +250990,117 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88931\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88931/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998759388923645, + 0.9977425336837769, + 0.9989302754402161, + 0.9948750138282776, + 0.9993359446525574, + 0.9988981485366821, + 0.9988493919372559, + 0.9952119588851929 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987000226974487, + 0.998789370059967, + 0.9987925291061401, + 0.9994462132453918, + 0.9988365769386292 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9978775978088379, + 0.9988632202148438, + 0.9985218644142151, + 0.9982093572616577, + 0.9927680492401123, + 0.9988502264022827, + 0.9980271458625793 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.7142857142857143, + "NEGATIVE": 0.2857142857142857 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7142857142857143 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 0.8, + "final_counts": { + "POSITIVE": 16, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + } + } }, { "season_code": "202303", @@ -119906,10 +251140,89 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88932\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88932/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989227652549744, + 0.998033344745636, + 0.9938414096832275 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988899827003479, + 0.9840436577796936 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988778233528137 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 5, + "final_proportion": 0.8333333333333334, + "final_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + } + } }, { "season_code": "202303", @@ -119949,10 +251262,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88933\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88933/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -119991,7 +251332,7 @@ "13:30", "15:20", "RKZ 301 - Rosenkranz Hall 301", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -120012,15 +251353,124 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89001\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89001/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "", - "description": "The Professional Skills Series is intended to prepare M.P.H. students for leadership positions as public health professionals. Material covered includes public speaking, presentation skills, professional writing, negotiation and conflict resolution, and networking and social media. Attendance at 4 sessions is required (elective for Advanced Professional M.P.H. and Accelerated M.B.A.\/M.P.H. students), and some homework is a part of the program. Although no credit or grade is awarded, satisfactory performance will be noted on the student\u2019s transcript.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987577199935913, + 0.9983678460121155, + 0.9979947805404663, + 0.9988402724266052, + 0.9987201690673828, + 0.9989223480224609, + 0.9986342787742615 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988634586334229, + 0.998666524887085, + 0.998935878276825, + 0.9994970560073853, + 0.9989303946495056, + 0.9989047050476074, + 0.998907208442688, + 0.998487114906311 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9912651181221008, + 0.9987105131149292, + 0.9988313317298889, + 0.9989270567893982, + 0.9989234805107117, + 0.9994995594024658 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 4 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 0.8095238095238095, + "final_counts": { + "POSITIVE": 17, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.8095238095238095, + "NEGATIVE": 0.19047619047619047 + } + } + }, + { + "season_code": "202303", + "requirements": "", + "description": "The Professional Skills Series is intended to prepare M.P.H. students for leadership positions as public health professionals. Material covered includes public speaking, presentation skills, professional writing, negotiation and conflict resolution, and networking and social media. Attendance at 4 sessions is required (elective for Advanced Professional M.P.H. and Accelerated M.B.A./M.P.H. students), and some homework is a part of the program. Although no credit or grade is awarded, satisfactory performance will be noted on the student\u2019s transcript.", "short_title": "Professional Skills Series", "title": "Professional Skills Series", "school": "PH", @@ -120058,15 +251508,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90957\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90957/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "Open only to students in the U.S. Health Justice Concentration. Prerequisite: SBS 590 (may be taken concurrently).", - "description": "This is the practicum course for the U.S. Health Justice Concentration. All students participating in the U.S. Health Justice Concentration complete a practicum. (With additional approval of the Office of Public Health Practice, this course can also be used to meet the Applied Practice Experience requirement for graduation.) This practicum experience addresses the objectives of the concentration and is conducted in partnership with a public health or other community organization. Students who choose to complete the practicum during an academic term enroll in this course (in lieu of EPH 500). Prior to the practicum, students complete a work plan and project description that will be reviewed by a faculty adviser and their preceptor at the partner organization. Possible projects may include evaluation, needs assessment, advocacy, public health communication, and\/or service provision. Projects should be focused on understanding and ameliorating social or structural determinants of health inequality. During the practicum, students participate in biweekly group reflection meetings with concentration faculty and other concentration students. Upon completion of the practicum, students produce a minimum of two tangible work products or deliverables. These projects and deliverables must be distinct from the students\u2019 thesis work or work completed in other independent study courses.", + "description": "This is the practicum course for the U.S. Health Justice Concentration. All students participating in the U.S. Health Justice Concentration complete a practicum. (With additional approval of the Office of Public Health Practice, this course can also be used to meet the Applied Practice Experience requirement for graduation.) This practicum experience addresses the objectives of the concentration and is conducted in partnership with a public health or other community organization. Students who choose to complete the practicum during an academic term enroll in this course (in lieu of EPH 500). Prior to the practicum, students complete a work plan and project description that will be reviewed by a faculty adviser and their preceptor at the partner organization. Possible projects may include evaluation, needs assessment, advocacy, public health communication, and/or service provision. Projects should be focused on understanding and ameliorating social or structural determinants of health inequality. During the practicum, students participate in biweekly group reflection meetings with concentration faculty and other concentration students. Upon completion of the practicum, students produce a minimum of two tangible work products or deliverables. These projects and deliverables must be distinct from the students\u2019 thesis work or work completed in other independent study courses.", "short_title": "U.S. Health Justice Concentra...", "title": "U.S. Health Justice Concentration Practicum", "school": "PH", @@ -120104,7 +251582,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -120141,7 +251647,7 @@ "8:30", "9:50", "CO47 106 A & B - 47 College Street (CLP) 106 A & B", - "https:\/\/map.yale.edu\/?id=1910#!m\/559997" + "https://map.yale.edu/?id=1910#!m/559997" ] ], "Wednesday": [ @@ -120149,7 +251655,7 @@ "8:30", "9:50", "CO47 106 A & B - 47 College Street (CLP) 106 A & B", - "https:\/\/map.yale.edu\/?id=1910#!m\/559997" + "https://map.yale.edu/?id=1910#!m/559997" ] ] }, @@ -120161,10 +251667,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90964\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90964/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -120201,7 +251735,7 @@ "15:00", "16:20", "SHM HARKNESS - Sterling Hall of Medicine HARKNESS", - "https:\/\/map.yale.edu\/?id=1910#!m\/559929" + "https://map.yale.edu/?id=1910#!m/559929" ] ], "Wednesday": [ @@ -120209,7 +251743,7 @@ "15:00", "16:20", "SHM HARKNESS - Sterling Hall of Medicine HARKNESS", - "https:\/\/map.yale.edu\/?id=1910#!m\/559929" + "https://map.yale.edu/?id=1910#!m/559929" ] ] }, @@ -120223,10 +251757,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90968\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90968/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -120266,7 +251828,7 @@ "8:30", "9:50", "SHM HARKNESS - Sterling Hall of Medicine HARKNESS", - "https:\/\/map.yale.edu\/?id=1910#!m\/559929" + "https://map.yale.edu/?id=1910#!m/559929" ] ], "Thursday": [ @@ -120274,7 +251836,7 @@ "8:30", "9:50", "SHM HARKNESS - Sterling Hall of Medicine HARKNESS", - "https:\/\/map.yale.edu\/?id=1910#!m\/559929" + "https://map.yale.edu/?id=1910#!m/559929" ] ] }, @@ -120288,10 +251850,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90972\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90972/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -120328,7 +251918,7 @@ "15:00", "16:20", "SHM HARKNESS - Sterling Hall of Medicine HARKNESS", - "https:\/\/map.yale.edu\/?id=1910#!m\/559929" + "https://map.yale.edu/?id=1910#!m/559929" ] ], "Thursday": [ @@ -120336,7 +251926,7 @@ "15:00", "16:20", "SHM HARKNESS - Sterling Hall of Medicine HARKNESS", - "https:\/\/map.yale.edu\/?id=1910#!m\/559929" + "https://map.yale.edu/?id=1910#!m/559929" ] ] }, @@ -120348,15 +251938,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90976\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90976/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "Open only to students enrolled in the Executive Online M.P.H. Program. Not open to auditors.", - "description": "Solution-focused problem-solving is an essential competency for public health professionals. This intensive introduces an iterative framework to innovatively solve complex challenges from the perspective of target user groups. Students address complex public health challenges utilizing a design-thinking framework. Students leave the intensive with a firm understanding of how to address complex public health challenges that account for their target user\u2019s desires\/needs, what is financially viable and sustainable, and what is technically feasible. This is one in a three-part series of intensives for students enrolled in the Executive Online M.P.H. Program.", + "description": "Solution-focused problem-solving is an essential competency for public health professionals. This intensive introduces an iterative framework to innovatively solve complex challenges from the perspective of target user groups. Students address complex public health challenges utilizing a design-thinking framework. Students leave the intensive with a firm understanding of how to address complex public health challenges that account for their target user\u2019s desires/needs, what is financially viable and sustainable, and what is technically feasible. This is one in a three-part series of intensives for students enrolled in the Executive Online M.P.H. Program.", "short_title": "Design Thinking in Public Hea...", "title": "Design Thinking in Public Health Systems", "school": "PH", @@ -120391,10 +252009,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90982\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90982/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -120434,10 +252080,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90986\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90986/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -120477,10 +252151,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90990\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90990/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -120520,10 +252222,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90994\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90994/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -120563,10 +252293,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90998\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90998/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -120607,7 +252365,7 @@ "13:00", "14:50", "LEPH 102 - Laboratory of EPH 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ] }, @@ -120626,10 +252384,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91002\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91002/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -120666,7 +252452,7 @@ "12:00", "12:50", "LEPH 115 - Laboratory of EPH 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ] }, @@ -120680,15 +252466,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91005\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91005/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "This yearlong, monthly seminar is targeted most specifically to students in the Public Health Modeling Concentration but open to all interested members of the Yale community. The seminar features talks by faculty from across Yale University doing modeling-related research, as well as invited speakers from other universities and public health agencies. The objectives are to offer students the opportunity to witness the scope and range of questions in public health policy and practice that may be addressed, understood, and informed using model-based approaches; appreciate the breadth of public health modeling research being conducted around the University and beyond; explore possible collaborations\/relationships with other scholars and professionals; review, critique, and evaluate model-based public health research in a structured environment; and form their own opinions regarding the applicability, relevance, and responsible use of modeling methods. Two terms of this no-credit seminar are required of students in the Public Health Modeling Concentration. For each class, one or two readings are circulated\/posted on the course website prior to the talk. Students are encouraged to read the articles and articulate questions for the speaker.", + "description": "This yearlong, monthly seminar is targeted most specifically to students in the Public Health Modeling Concentration but open to all interested members of the Yale community. The seminar features talks by faculty from across Yale University doing modeling-related research, as well as invited speakers from other universities and public health agencies. The objectives are to offer students the opportunity to witness the scope and range of questions in public health policy and practice that may be addressed, understood, and informed using model-based approaches; appreciate the breadth of public health modeling research being conducted around the University and beyond; explore possible collaborations/relationships with other scholars and professionals; review, critique, and evaluate model-based public health research in a structured environment; and form their own opinions regarding the applicability, relevance, and responsible use of modeling methods. Two terms of this no-credit seminar are required of students in the Public Health Modeling Concentration. For each class, one or two readings are circulated/posted on the course website prior to the talk. Students are encouraged to read the articles and articulate questions for the speaker.", "short_title": "Seminar for Modeling in Publi...", "title": "Seminar for Modeling in Public Health", "school": "PH", @@ -120723,7 +252537,7 @@ "12:00", "12:50", "LEPH 101 - Laboratory of EPH 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ] }, @@ -120735,10 +252549,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91009\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91009/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -120775,7 +252617,7 @@ "12:00", "12:50", "LEPH WINSL - Laboratory of EPH WINSL", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ] }, @@ -120787,15 +252629,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91012\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91012/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "This course seeks to introduce major concepts in the ethical conduct of research and some of the personal and professional issues that researchers encounter in their work. Sessions are run in a seminar\/discussion format. Open to first-year Ph.D. students only.", + "description": "This course seeks to introduce major concepts in the ethical conduct of research and some of the personal and professional issues that researchers encounter in their work. Sessions are run in a seminar/discussion format. Open to first-year Ph.D. students only.", "short_title": "Research Ethics and Responsib...", "title": "Research Ethics and Responsibility", "school": "PH", @@ -120827,7 +252697,7 @@ "12:00", "12:50", "LEPH 103 - Laboratory of EPH 103", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ] }, @@ -120839,10 +252709,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88153\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88153/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -120882,7 +252780,7 @@ "11:35", "12:50", "KGL 123 - Kline Geology Laboratory 123", - "https:\/\/map.yale.edu\/?id=1910#!m\/559996" + "https://map.yale.edu/?id=1910#!m/559996" ] ], "Thursday": [ @@ -120890,7 +252788,7 @@ "11:35", "12:50", "KGL 123 - Kline Geology Laboratory 123", - "https:\/\/map.yale.edu\/?id=1910#!m\/559996" + "https://map.yale.edu/?id=1910#!m/559996" ] ] }, @@ -120909,10 +252807,245 @@ "classnotes": "", "final_exam": "Friday, December 15, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89824\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89824/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.997424840927124, + 0.9984217882156372, + 0.9986353516578674, + 0.9988920092582703, + 0.9988200068473816, + 0.9988824725151062, + 0.9989309906959534, + 0.9988459348678589, + 0.9988852143287659, + 0.9989098310470581, + 0.9986200332641602, + 0.9988430738449097, + 0.9957785606384277, + 0.9988625049591064, + 0.9988945126533508, + 0.99864262342453, + 0.9984696507453918, + 0.9988899827003479, + 0.9987782835960388, + 0.9987595081329346, + 0.9977400302886963, + 0.9987183809280396, + 0.9986722469329834, + 0.9984704852104187 + ], + "sentiment_counts": { + "POSITIVE": 24, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.975217342376709, + 0.9982757568359375, + 0.9988225102424622, + 0.9989284873008728, + 0.9983904361724854, + 0.9988717436790466, + 0.9989172220230103, + 0.9995057582855225, + 0.9995042085647583, + 0.9988325238227844, + 0.998591959476471, + 0.9922153353691101, + 0.9988240599632263, + 0.9989380240440369, + 0.9956865906715393, + 0.9841212034225464, + 0.9992108345031738, + 0.9994868040084839, + 0.9984167814254761, + 0.9989076852798462, + 0.99661785364151, + 0.998920202255249, + 0.9932849407196045, + 0.9925239682197571, + 0.9964359998703003, + 0.9967415928840637, + 0.9994086027145386, + 0.9988334774971008, + 0.998640239238739, + 0.9981580376625061 + ], + "sentiment_counts": { + "NEGATIVE": 10, + "POSITIVE": 20 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9974225759506226, + 0.9994608759880066, + 0.9984530210494995, + 0.9988143444061279, + 0.998855471611023, + 0.998932421207428, + 0.9989068508148193, + 0.9989087581634521, + 0.9995040893554688, + 0.9980016350746155, + 0.9988790154457092, + 0.99891197681427, + 0.9988180994987488, + 0.9988358616828918, + 0.9986009001731873, + 0.9987867474555969, + 0.9995036125183105, + 0.998700737953186, + 0.9989303946495056, + 0.9978067278862, + 0.9988061189651489, + 0.9981922507286072, + 0.9989012479782104, + 0.9979074001312256, + 0.997117280960083, + 0.9988104104995728, + 0.9988904595375061, + 0.9842012524604797, + 0.9988920092582703, + 0.998664140701294 + ], + "sentiment_counts": { + "POSITIVE": 25, + "NEGATIVE": 5 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 69, + "final_proportion": 0.8214285714285714, + "final_counts": { + "POSITIVE": 69, + "NEGATIVE": 15 + }, + "final_distribution": { + "POSITIVE": 0.8214285714285714, + "NEGATIVE": 0.17857142857142858 + } + } }, { "season_code": "202303", @@ -120949,7 +253082,7 @@ "10:30", "11:20", "OML 202 - Osborn Memorial Laboratories 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/559958" + "https://map.yale.edu/?id=1910#!m/559958" ] ], "Wednesday": [ @@ -120957,7 +253090,7 @@ "10:30", "11:20", "OML 202 - Osborn Memorial Laboratories 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/559958" + "https://map.yale.edu/?id=1910#!m/559958" ] ], "Friday": [ @@ -120965,7 +253098,7 @@ "10:30", "11:20", "OML 202 - Osborn Memorial Laboratories 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/559958" + "https://map.yale.edu/?id=1910#!m/559958" ] ] }, @@ -120983,10 +253116,333 @@ "classnotes": "", "final_exam": "Monday, December 18, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89825\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89825/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989041090011597, + 0.9979337453842163, + 0.9986361861228943, + 0.998883068561554, + 0.9987465143203735, + 0.9987660646438599, + 0.9988378882408142, + 0.9983556866645813, + 0.9988682270050049, + 0.9988759160041809, + 0.9989207983016968, + 0.996380627155304, + 0.9988815188407898, + 0.9988436698913574, + 0.9986710548400879, + 0.9989211559295654, + 0.9989181756973267, + 0.9855920076370239, + 0.998595654964447, + 0.996345579624176, + 0.9988759160041809, + 0.9937582015991211, + 0.9989017248153687, + 0.9986139535903931, + 0.9988289475440979, + 0.9988312125205994, + 0.9980636239051819, + 0.9987832903862, + 0.9922738671302795, + 0.9987242817878723, + 0.9987523555755615, + 0.9987998008728027, + 0.9987847208976746, + 0.9989159107208252, + 0.9989284873008728, + 0.9979249238967896, + 0.9989234805107117, + 0.998894989490509 + ], + "sentiment_counts": { + "POSITIVE": 37, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9736842105263158, + "NEGATIVE": 0.02631578947368421 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9736842105263158 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988314509391785, + 0.9989123344421387, + 0.9989190101623535, + 0.998928964138031, + 0.9988777041435242, + 0.9981399774551392, + 0.9989215135574341, + 0.9988343119621277, + 0.9988493919372559, + 0.9985629916191101, + 0.9987402558326721, + 0.9986642599105835, + 0.9989168643951416, + 0.9988365769386292, + 0.9988977909088135, + 0.9982427358627319, + 0.9989383816719055, + 0.9989163875579834, + 0.9951672554016113, + 0.9989373087882996, + 0.998870313167572, + 0.9989141225814819, + 0.9989210367202759, + 0.9993897676467896, + 0.9988811612129211, + 0.99367356300354, + 0.9985049962997437, + 0.9884626269340515, + 0.9987139701843262, + 0.9995038509368896, + 0.9990978240966797, + 0.9985501170158386, + 0.9989013671875, + 0.998848557472229, + 0.998903751373291, + 0.9987758994102478, + 0.9825719594955444, + 0.9995030164718628, + 0.9987428784370422, + 0.9989174604415894 + ], + "sentiment_counts": { + "POSITIVE": 33, + "NEGATIVE": 7 + }, + "sentiment_distribution": { + "POSITIVE": 0.825, + "NEGATIVE": 0.175 + }, + "sentiment_overall": [ + "POSITIVE", + 0.825 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989346861839294, + 0.9989078044891357, + 0.9989182949066162, + 0.9989016056060791, + 0.9974592328071594, + 0.9753255248069763, + 0.9985744953155518, + 0.9987195730209351, + 0.9989296793937683, + 0.9987568855285645, + 0.9987236857414246, + 0.9974592328071594, + 0.9989137649536133, + 0.9987654685974121, + 0.9980456829071045, + 0.998920202255249, + 0.9985522627830505, + 0.9988099336624146, + 0.998914361000061, + 0.9989030361175537, + 0.9988607168197632, + 0.9988184571266174, + 0.9989117383956909, + 0.9989380240440369, + 0.9988375306129456, + 0.9987497329711914, + 0.9988985061645508, + 0.9989081621170044, + 0.9989199638366699, + 0.9976342916488647, + 0.9984369874000549, + 0.9988767504692078, + 0.9980385899543762, + 0.9988861680030823, + 0.9988775849342346, + 0.9988152980804443, + 0.9989303946495056, + 0.9988095760345459, + 0.999360978603363, + 0.9988833069801331, + 0.9988744854927063, + 0.9988573789596558, + 0.9989394545555115, + 0.9988963603973389, + 0.9989182949066162, + 0.9995123147964478, + 0.9989311099052429, + 0.9985816478729248, + 0.9989299178123474, + 0.9988667964935303 + ], + "sentiment_counts": { + "POSITIVE": 47, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.94, + "NEGATIVE": 0.06 + }, + "sentiment_overall": [ + "POSITIVE", + 0.94 + ] + }, + "final_label": "POSITIVE", + "final_count": 117, + "final_proportion": 0.9140625, + "final_counts": { + "POSITIVE": 117, + "NEGATIVE": 11 + }, + "final_distribution": { + "POSITIVE": 0.9140625, + "NEGATIVE": 0.0859375 + } + } }, { "season_code": "202303", @@ -121023,7 +253479,7 @@ "13:00", "16:00", "KGL 120 - Kline Geology Laboratory 120", - "https:\/\/map.yale.edu\/?id=1910#!m\/559996" + "https://map.yale.edu/?id=1910#!m/559996" ] ] }, @@ -121039,10 +253495,109 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90190\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90190/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986477494239807, + 0.9986697435379028, + 0.9987922310829163, + 0.9986244440078735 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989356398582458, + 0.9942302703857422, + 0.9988885521888733, + 0.998932421207428, + 0.9983023405075073 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988644123077393, + 0.9941503405570984, + 0.998799204826355, + 0.9989295601844788, + 0.9985479712486267, + 0.9988719820976257, + 0.9942691326141357 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 0.9375, + "final_counts": { + "POSITIVE": 15, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9375, + "NEGATIVE": 0.0625 + } + } }, { "season_code": "202303", @@ -121079,7 +253634,7 @@ "11:35", "12:50", "WTS A35 - Watson Center 60 Sachem Street A35", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -121087,7 +253642,7 @@ "11:35", "12:50", "WTS A35 - Watson Center 60 Sachem Street A35", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -121101,10 +253656,123 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89840\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89840/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9975239634513855, + 0.998897910118103, + 0.9984747767448425, + 0.9988430738449097, + 0.9988027811050415, + 0.9983691573143005, + 0.9988877177238464, + 0.9977239966392517 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989334940910339, + 0.9988526105880737, + 0.9989039897918701, + 0.9989253878593445, + 0.9889993071556091, + 0.9989206790924072, + 0.9988821148872375 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984714388847351, + 0.9989094734191895, + 0.9989092350006104, + 0.9988957643508911, + 0.9989294409751892, + 0.9988555908203125, + 0.9988691210746765, + 0.998794436454773 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 22, + "final_proportion": 0.9565217391304348, + "final_counts": { + "POSITIVE": 22, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9565217391304348, + "NEGATIVE": 0.043478260869565216 + } + } }, { "season_code": "202303", @@ -121145,10 +253813,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92723\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92723/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -121185,7 +253881,7 @@ "13:00", "14:15", "KGL 123 - Kline Geology Laboratory 123", - "https:\/\/map.yale.edu\/?id=1910#!m\/559996" + "https://map.yale.edu/?id=1910#!m/559996" ] ], "Thursday": [ @@ -121193,7 +253889,7 @@ "13:00", "14:15", "KGL 123 - Kline Geology Laboratory 123", - "https:\/\/map.yale.edu\/?id=1910#!m\/559996" + "https://map.yale.edu/?id=1910#!m/559996" ] ] }, @@ -121212,10 +253908,287 @@ "classnotes": "", "final_exam": "Saturday, December 16, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89826\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89826/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9979221224784851, + 0.9988503456115723, + 0.9986855387687683, + 0.9962584972381592, + 0.9989312291145325, + 0.9987549781799316, + 0.9988143444061279, + 0.9981696605682373, + 0.9969684481620789, + 0.9975492358207703, + 0.9983579516410828, + 0.9986615180969238, + 0.9986091256141663, + 0.9987267851829529, + 0.9986289739608765, + 0.9986850619316101, + 0.9984146356582642, + 0.998772919178009, + 0.9980798959732056, + 0.9970837235450745, + 0.9977656602859497, + 0.9976098537445068, + 0.998908281326294, + 0.9985039234161377, + 0.9986652135848999, + 0.9925709366798401, + 0.9985178112983704, + 0.9987200498580933, + 0.9525578022003174, + 0.9987584352493286, + 0.994107723236084, + 0.9988154172897339, + 0.9969782829284668 + ], + "sentiment_counts": { + "POSITIVE": 33, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989205598831177, + 0.9987471103668213, + 0.9975136518478394, + 0.9988924860954285, + 0.998684823513031, + 0.9988652467727661, + 0.9989142417907715, + 0.9924127459526062, + 0.9986735582351685, + 0.9987892508506775, + 0.9994957447052002, + 0.9966896772384644, + 0.9986249208450317, + 0.9988086223602295, + 0.9986762404441833, + 0.9987748265266418, + 0.9989163875579834, + 0.9986410737037659, + 0.9987205862998962, + 0.9983927607536316, + 0.9922741055488586, + 0.9962124824523926, + 0.9885692596435547, + 0.9989097118377686, + 0.9988973140716553, + 0.9988170862197876, + 0.9914743900299072, + 0.998228132724762, + 0.9986528158187866, + 0.9988443851470947, + 0.9891665577888489, + 0.9986000657081604, + 0.9987635612487793 + ], + "sentiment_counts": { + "POSITIVE": 25, + "NEGATIVE": 8 + }, + "sentiment_distribution": { + "POSITIVE": 0.7575757575757576, + "NEGATIVE": 0.24242424242424243 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7575757575757576 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9995026588439941, + 0.9974592328071594, + 0.9988000392913818, + 0.9988195300102234, + 0.9989018440246582, + 0.9995101690292358, + 0.9989237189292908, + 0.9989172220230103, + 0.9988747239112854, + 0.997117280960083, + 0.9898955821990967, + 0.9988693594932556, + 0.999488353729248, + 0.9984118938446045, + 0.9988241791725159, + 0.9988875985145569, + 0.9125632643699646, + 0.998924195766449, + 0.9987260699272156, + 0.9983901977539062, + 0.9982975125312805, + 0.9989014863967896, + 0.9994669556617737, + 0.9988535642623901, + 0.9988534450531006, + 0.9972136616706848, + 0.998889148235321, + 0.9987791180610657, + 0.9988640546798706, + 0.9989019632339478, + 0.971727192401886, + 0.997117280960083, + 0.9984742999076843, + 0.9987163543701172, + 0.9974592328071594, + 0.9989141225814819, + 0.9980165958404541, + 0.998930037021637, + 0.9985551238059998 + ], + "sentiment_counts": { + "NEGATIVE": 5, + "POSITIVE": 34 + }, + "sentiment_distribution": { + "NEGATIVE": 0.1282051282051282, + "POSITIVE": 0.8717948717948718 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8717948717948718 + ] + }, + "final_label": "POSITIVE", + "final_count": 92, + "final_proportion": 0.8761904761904762, + "final_counts": { + "POSITIVE": 92, + "NEGATIVE": 13 + }, + "final_distribution": { + "POSITIVE": 0.8761904761904762, + "NEGATIVE": 0.12380952380952381 + } + } }, { "season_code": "202303", @@ -121253,7 +254226,7 @@ "13:00", "14:15", "KGL 226 - Kline Geology Laboratory 226", - "https:\/\/map.yale.edu\/?id=1910#!m\/559996" + "https://map.yale.edu/?id=1910#!m/559996" ] ], "Thursday": [ @@ -121261,7 +254234,7 @@ "13:00", "14:15", "KGL 226 - Kline Geology Laboratory 226", - "https:\/\/map.yale.edu\/?id=1910#!m\/559996" + "https://map.yale.edu/?id=1910#!m/559996" ] ] }, @@ -121277,10 +254250,17 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89841\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89841/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -121318,7 +254298,7 @@ "14:30", "15:45", "KGL 122 - Kline Geology Laboratory 122", - "https:\/\/map.yale.edu\/?id=1910#!m\/559996" + "https://map.yale.edu/?id=1910#!m/559996" ] ], "Thursday": [ @@ -121326,7 +254306,7 @@ "14:30", "15:45", "KGL 122 - Kline Geology Laboratory 122", - "https:\/\/map.yale.edu\/?id=1910#!m\/559996" + "https://map.yale.edu/?id=1910#!m/559996" ] ] }, @@ -121340,10 +254320,38 @@ "classnotes": "", "final_exam": "Monday, December 18, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90191\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/90191/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -121381,7 +254389,7 @@ "11:35", "12:50", "KGL 116 - Kline Geology Laboratory 116", - "https:\/\/map.yale.edu\/?id=1910#!m\/559996" + "https://map.yale.edu/?id=1910#!m/559996" ] ], "Thursday": [ @@ -121389,7 +254397,7 @@ "11:35", "12:50", "KGL 116 - Kline Geology Laboratory 116", - "https:\/\/map.yale.edu\/?id=1910#!m\/559996" + "https://map.yale.edu/?id=1910#!m/559996" ] ] }, @@ -121408,10 +254416,41 @@ "classnotes": "", "final_exam": "Friday, December 15, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89827\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89827/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981922507286072 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 1, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 1 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -121475,10 +254514,85 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89126\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89126/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9969325065612793, + 0.9987165927886963 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987574815750122 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998809814453125, + 0.998822033405304 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 5, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 5 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -121521,10 +254635,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89816\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89816/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -121570,10 +254712,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89817\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89817/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -121616,10 +254786,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89818\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89818/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -121662,10 +254860,85 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89819\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89819/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988391995429993 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9730511903762817, + 0.996130108833313 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9918667674064636 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 0 + }, + "sentiment_distribution": { + "NEGATIVE": 1.0, + "POSITIVE": 0.0 + }, + "sentiment_overall": [ + "NEGATIVE", + 1.0 + ] + }, + "final_label": "neutral", + "final_count": 0.5, + "final_proportion": 0.5, + "final_counts": { + "POSITIVE": 2, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + } + } }, { "season_code": "202303", @@ -121705,15 +254978,43 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89820\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89820/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "Basic principles that control the physical and chemical properties of Earth materials. Equation of state, phase transformations, chemical reactions, elastic properties, diffusion, kinetics of reaction, and mass\/energy transport.", + "description": "Basic principles that control the physical and chemical properties of Earth materials. Equation of state, phase transformations, chemical reactions, elastic properties, diffusion, kinetics of reaction, and mass/energy transport.", "short_title": "Introduction to the Physics a...", "title": "Introduction to the Physics and Chemistry of Earth Materials", "school": "GS", @@ -121746,7 +255047,7 @@ "13:00", "14:15", "KGL 226 - Kline Geology Laboratory 226", - "https:\/\/map.yale.edu\/?id=1910#!m\/559996" + "https://map.yale.edu/?id=1910#!m/559996" ] ], "Thursday": [ @@ -121754,7 +255055,7 @@ "13:00", "14:15", "KGL 226 - Kline Geology Laboratory 226", - "https:\/\/map.yale.edu\/?id=1910#!m\/559996" + "https://map.yale.edu/?id=1910#!m/559996" ] ] }, @@ -121766,10 +255067,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89841\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89841/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -121807,7 +255115,7 @@ "14:30", "15:45", "KGL 122 - Kline Geology Laboratory 122", - "https:\/\/map.yale.edu\/?id=1910#!m\/559996" + "https://map.yale.edu/?id=1910#!m/559996" ] ], "Thursday": [ @@ -121815,7 +255123,7 @@ "14:30", "15:45", "KGL 122 - Kline Geology Laboratory 122", - "https:\/\/map.yale.edu\/?id=1910#!m\/559996" + "https://map.yale.edu/?id=1910#!m/559996" ] ] }, @@ -121827,10 +255135,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90191\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90191/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -121867,7 +255203,7 @@ "10:30", "11:20", "KGL 119 - Kline Geology Laboratory 119", - "https:\/\/map.yale.edu\/?id=1910#!m\/559996" + "https://map.yale.edu/?id=1910#!m/559996" ] ], "Wednesday": [ @@ -121875,7 +255211,7 @@ "10:30", "11:20", "KGL 119 - Kline Geology Laboratory 119", - "https:\/\/map.yale.edu\/?id=1910#!m\/559996" + "https://map.yale.edu/?id=1910#!m/559996" ] ], "Friday": [ @@ -121883,7 +255219,7 @@ "10:30", "11:20", "KGL 119 - Kline Geology Laboratory 119", - "https:\/\/map.yale.edu\/?id=1910#!m\/559996" + "https://map.yale.edu/?id=1910#!m/559996" ] ] }, @@ -121895,10 +255231,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89828\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89828/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -121938,10 +255302,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90611\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90611/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -121979,7 +255371,7 @@ "11:35", "12:50", "KGL 116 - Kline Geology Laboratory 116", - "https:\/\/map.yale.edu\/?id=1910#!m\/559996" + "https://map.yale.edu/?id=1910#!m/559996" ] ], "Thursday": [ @@ -121987,7 +255379,7 @@ "11:35", "12:50", "KGL 116 - Kline Geology Laboratory 116", - "https:\/\/map.yale.edu\/?id=1910#!m\/559996" + "https://map.yale.edu/?id=1910#!m/559996" ] ] }, @@ -122002,15 +255394,46 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89827\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89827/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "", - "description": "The analytic and numerical\/computational tools necessary for effective research in astronomy, geophysics, and related disciplines. Topics include numerical solutions to differential equations, spectral methods, and Monte Carlo simulations. Applications are made to common astrophysical and geophysical problems including fluids and N-body simulations.", + "colsem": false, + "sentiment_info": { + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981922507286072 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 1, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 1 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } + }, + { + "season_code": "202303", + "requirements": "", + "description": "The analytic and numerical/computational tools necessary for effective research in astronomy, geophysics, and related disciplines. Topics include numerical solutions to differential equations, spectral methods, and Monte Carlo simulations. Applications are made to common astrophysical and geophysical problems including fluids and N-body simulations.", "short_title": "Computational Methods in Astr...", "title": "Computational Methods in Astrophysics and Geophysics", "school": "GS", @@ -122064,10 +255487,85 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88858\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88858/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9610293507575989, + 0.9959673881530762 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 1 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986932873725891 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9926514029502869 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 0 + }, + "sentiment_distribution": { + "NEGATIVE": 1.0, + "POSITIVE": 0.0 + }, + "sentiment_overall": [ + "NEGATIVE", + 1.0 + ] + }, + "final_label": "neutral", + "final_count": 0.5, + "final_proportion": 0.5, + "final_counts": { + "NEGATIVE": 2, + "POSITIVE": 2 + }, + "final_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + } + } }, { "season_code": "202303", @@ -122104,7 +255602,7 @@ "10:30", "11:20", "KGL 116 - Kline Geology Laboratory 116", - "https:\/\/map.yale.edu\/?id=1910#!m\/559996" + "https://map.yale.edu/?id=1910#!m/559996" ] ], "Thursday": [ @@ -122112,7 +255610,7 @@ "10:30", "11:20", "KGL 116 - Kline Geology Laboratory 116", - "https:\/\/map.yale.edu\/?id=1910#!m\/559996" + "https://map.yale.edu/?id=1910#!m/559996" ] ] }, @@ -122126,10 +255624,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89829\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89829/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -122166,7 +255692,7 @@ "9:25", "10:15", "KGL 116 - Kline Geology Laboratory 116", - "https:\/\/map.yale.edu\/?id=1910#!m\/559996" + "https://map.yale.edu/?id=1910#!m/559996" ] ], "Wednesday": [ @@ -122174,7 +255700,7 @@ "9:25", "10:15", "KGL 116 - Kline Geology Laboratory 116", - "https:\/\/map.yale.edu\/?id=1910#!m\/559996" + "https://map.yale.edu/?id=1910#!m/559996" ] ], "Friday": [ @@ -122182,7 +255708,7 @@ "9:25", "10:15", "KGL 116 - Kline Geology Laboratory 116", - "https:\/\/map.yale.edu\/?id=1910#!m\/559996" + "https://map.yale.edu/?id=1910#!m/559996" ] ] }, @@ -122194,10 +255720,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89830\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89830/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -122234,7 +255788,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -122271,12 +255853,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "Topics and class time are chosen by the participants, and have included reading books and\/or a series of papers on particular topics (e.g., homology; morphological phylogenetics; evolution of egg colors and exposed nesting in dinosaurs\/birds; origin of snake ecology; conflicts between morphology and molecules; role of fossils in phylogenetic inference).", + "description": "Topics and class time are chosen by the participants, and have included reading books and/or a series of papers on particular topics (e.g., homology; morphological phylogenetics; evolution of egg colors and exposed nesting in dinosaurs/birds; origin of snake ecology; conflicts between morphology and molecules; role of fossils in phylogenetic inference).", "short_title": "Seminar in Systematics", "title": "Seminar in Systematics", "school": "GS", @@ -122312,10 +255922,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90192\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90192/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -122358,10 +255996,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90193\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90193/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -122401,7 +256067,7 @@ "9:00", "12:00", "KGL 226 - Kline Geology Laboratory 226", - "https:\/\/map.yale.edu\/?id=1910#!m\/559996" + "https://map.yale.edu/?id=1910#!m/559996" ] ] }, @@ -122413,10 +256079,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89831\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89831/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -122453,7 +256126,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -122490,7 +256191,7 @@ "16:00", "17:00", "KGL 226 - Kline Geology Laboratory 226", - "https:\/\/map.yale.edu\/?id=1910#!m\/559996" + "https://map.yale.edu/?id=1910#!m/559996" ] ] }, @@ -122502,10 +256203,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92597\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92597/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -122542,7 +256271,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -122579,7 +256336,7 @@ "14:30", "15:45", "KGL 226 - Kline Geology Laboratory 226", - "https:\/\/map.yale.edu\/?id=1910#!m\/559996" + "https://map.yale.edu/?id=1910#!m/559996" ] ] }, @@ -122591,10 +256348,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89832\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89832/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -122633,7 +256397,7 @@ "16:00", "17:15", "CO493 208 - 493 College Street 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560001" + "https://map.yale.edu/?id=1910#!m/560001" ] ], "Wednesday": [ @@ -122641,7 +256405,7 @@ "16:00", "17:15", "CO493 208 - 493 College Street 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560001" + "https://map.yale.edu/?id=1910#!m/560001" ] ] }, @@ -122654,11 +256418,114 @@ "rp_attr": "", "classnotes": "", "final_exam": "HTBA", - "course_home_url": "https:\/\/yale.instructure.com\/courses\/88666", + "course_home_url": "https://yale.instructure.com/courses/88666", "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998832643032074, + 0.9988504648208618, + 0.9988884329795837, + 0.9987514019012451 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9944832921028137, + 0.9988648891448975, + 0.9986087679862976, + 0.9994294047355652, + 0.9946029782295227, + 0.998907208442688, + 0.9982296824455261 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9881994724273682, + 0.9989149570465088, + 0.9786842465400696, + 0.9977310299873352, + 0.9989294409751892, + 0.9989251494407654, + 0.9987794756889343 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 0.8888888888888888, + "final_counts": { + "POSITIVE": 16, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + } + } }, { "season_code": "202303", @@ -122698,7 +256565,7 @@ "9:00", "10:15", "HQ C15 - Humanities Quadrangle C15", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -122706,7 +256573,7 @@ "9:00", "10:15", "HQ C15 - Humanities Quadrangle C15", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -122723,10 +256590,121 @@ "classnotes": "Please email eun-joo.ahn@yale.edu a brief message indicating your background and interest in this course. Preference may be given to those students interested in majoring in AMST, ER&M, CS, or PHYS. ", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92204\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92204/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.990673840045929, + 0.9987888932228088, + 0.9986708164215088, + 0.9989140033721924, + 0.9987428784370422, + 0.9988447427749634, + 0.9985144734382629 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988699555397034, + 0.9988747239112854, + 0.9987194538116455, + 0.9983106851577759, + 0.998822033405304, + 0.9945153594017029, + 0.9989140033721924, + 0.9986201524734497 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986554384231567, + 0.998920202255249, + 0.998874843120575, + 0.997432291507721, + 0.996787428855896, + 0.9988641738891602, + 0.9949188828468323 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 21, + "final_proportion": 0.9545454545454546, + "final_counts": { + "POSITIVE": 21, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9545454545454546, + "NEGATIVE": 0.045454545454545456 + } + } }, { "season_code": "202303", @@ -122766,7 +256744,7 @@ "10:30", "11:20", "ML 211 - Mason Laboratory 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ], "Thursday": [ @@ -122774,7 +256752,7 @@ "10:30", "11:20", "ML 211 - Mason Laboratory 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ] }, @@ -122792,10 +256770,285 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88670\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88670/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9961251616477966, + 0.9988117218017578, + 0.9994720816612244, + 0.6994298696517944, + 0.9988449811935425, + 0.9988824725151062, + 0.9986394047737122, + 0.998656153678894, + 0.9986690282821655, + 0.9981566071510315, + 0.9986910223960876, + 0.9987651109695435, + 0.9988124370574951, + 0.9988157749176025, + 0.9988334774971008, + 0.9988893866539001, + 0.9970648884773254, + 0.9987800717353821, + 0.9987006187438965, + 0.9989007711410522, + 0.9983934760093689, + 0.9985760450363159, + 0.9987367987632751, + 0.9987850785255432, + 0.9988439083099365, + 0.998896598815918, + 0.9978004097938538, + 0.9987949132919312, + 0.998754620552063, + 0.9986506104469299, + 0.997936487197876, + 0.9988357424736023, + 0.9986048340797424 + ], + "sentiment_counts": { + "POSITIVE": 31, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.9393939393939394, + "NEGATIVE": 0.06060606060606061 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9393939393939394 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994801878929138, + 0.9994934797286987, + 0.9906005859375, + 0.998907208442688, + 0.9989045858383179, + 0.9982424974441528, + 0.9988836646080017, + 0.9864469766616821, + 0.9995065927505493, + 0.9979323148727417, + 0.9984051585197449, + 0.998874843120575, + 0.9989272952079773, + 0.9987265467643738, + 0.9984101057052612, + 0.9984490871429443, + 0.9995095729827881, + 0.997310996055603, + 0.9956592321395874, + 0.9989131689071655, + 0.9985128045082092, + 0.998837411403656, + 0.9955137372016907, + 0.9687845706939697, + 0.998815655708313, + 0.9989320635795593, + 0.9988332390785217, + 0.9955431818962097, + 0.9987468719482422, + 0.9987927675247192, + 0.9986599683761597, + 0.9989326596260071 + ], + "sentiment_counts": { + "NEGATIVE": 10, + "POSITIVE": 22 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3125, + "POSITIVE": 0.6875 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6875 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982942938804626, + 0.9965415596961975, + 0.999509334564209, + 0.9988760352134705, + 0.998279333114624, + 0.9974592328071594, + 0.9989151954650879, + 0.9988489151000977, + 0.9987271428108215, + 0.9950690269470215, + 0.9988675117492676, + 0.9987953901290894, + 0.9989244341850281, + 0.996852695941925, + 0.9988895058631897, + 0.9989113807678223, + 0.9994865655899048, + 0.9980652928352356, + 0.9989283680915833, + 0.9970291256904602, + 0.981640636920929, + 0.9977506995201111, + 0.9987664222717285, + 0.9986642599105835, + 0.9987595081329346, + 0.9986959099769592, + 0.9995043277740479, + 0.9986897110939026, + 0.9987826943397522, + 0.9989325404167175, + 0.9994943141937256, + 0.9989240765571594, + 0.9982833862304688, + 0.998880922794342, + 0.9980016350746155, + 0.9987248778343201, + 0.9987040758132935, + 0.9977750182151794, + 0.9989079236984253 + ], + "sentiment_counts": { + "POSITIVE": 32, + "NEGATIVE": 7 + }, + "sentiment_distribution": { + "POSITIVE": 0.8205128205128205, + "NEGATIVE": 0.1794871794871795 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8205128205128205 + ] + }, + "final_label": "POSITIVE", + "final_count": 85, + "final_proportion": 0.8173076923076923, + "final_counts": { + "POSITIVE": 85, + "NEGATIVE": 19 + }, + "final_distribution": { + "POSITIVE": 0.8173076923076923, + "NEGATIVE": 0.18269230769230768 + } + } }, { "season_code": "202303", @@ -122829,7 +257082,7 @@ "9:25", "10:15", "HQ 207 - Humanities Quadrangle 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -122850,7 +257103,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -122884,7 +257165,7 @@ "9:25", "10:15", "ML 104 - Mason Laboratory 104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ] }, @@ -122905,7 +257186,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -122939,7 +257248,7 @@ "15:30", "16:20", "BASSLB L73 - Bass Library L73", - "https:\/\/map.yale.edu\/?id=1910#!m\/564574" + "https://map.yale.edu/?id=1910#!m/564574" ] ] }, @@ -122960,7 +257269,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -122994,7 +257331,7 @@ "15:30", "16:20", "BASSLB L70 - Bass Library L70", - "https:\/\/map.yale.edu\/?id=1910#!m\/564574" + "https://map.yale.edu/?id=1910#!m/564574" ] ] }, @@ -123015,7 +257352,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -123049,7 +257414,7 @@ "19:00", "19:50", "WLH 009 - William L. Harkness Hall 009", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -123070,7 +257435,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -123104,7 +257497,7 @@ "19:00", "19:50", "WLH 210 - William L. Harkness Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -123125,7 +257518,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -123162,7 +257583,7 @@ "9:00", "10:15", "WLH 204 - William L. Harkness Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -123170,7 +257591,7 @@ "9:00", "10:15", "WLH 204 - William L. Harkness Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -123187,10 +257608,97 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90224\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90224/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988337159156799, + 0.9988723397254944, + 0.9988812804222107 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989051818847656, + 0.998857855796814, + 0.9994980096817017 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989117383956909, + 0.9987713694572449, + 0.9989287257194519, + 0.998935878276825 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 0.9, + "final_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + } + } }, { "season_code": "202303", @@ -123233,7 +257741,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -123275,7 +257811,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -123317,7 +257881,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -123359,7 +257951,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -123397,7 +258017,7 @@ "11:35", "12:50", "DOW 112 - Dow Hall 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ], "Wednesday": [ @@ -123405,7 +258025,7 @@ "11:35", "12:50", "DOW 112 - Dow Hall 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ] }, @@ -123420,10 +258040,99 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88166\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88166/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986559152603149, + 0.9989206790924072, + 0.9787597060203552, + 0.9988994598388672 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988560676574707, + 0.9924554824829102, + 0.9977320432662964 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.998793363571167, + 0.9989187717437744, + 0.997117280960083, + 0.9981145858764648 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 0.9090909090909091, + "final_counts": { + "POSITIVE": 10, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + } + } }, { "season_code": "202303", @@ -123463,7 +258172,7 @@ "10:30", "11:20", "WLH 208 - William L. Harkness Hall 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -123471,7 +258180,7 @@ "10:30", "11:20", "WLH 208 - William L. Harkness Hall 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -123488,10 +258197,169 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88673\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88673/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988219141960144, + 0.9989156723022461, + 0.9985854625701904, + 0.9985727071762085, + 0.9984737038612366, + 0.9987195730209351, + 0.9988293051719666, + 0.9984329342842102, + 0.9986252784729004, + 0.9876981377601624, + 0.9883335828781128, + 0.9987358450889587, + 0.9988998174667358, + 0.998866081237793 + ], + "sentiment_counts": { + "POSITIVE": 14, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989155530929565, + 0.9994785189628601, + 0.998521625995636, + 0.9988945126533508, + 0.9963717460632324, + 0.9867180585861206, + 0.9957274198532104, + 0.9987088441848755, + 0.9987577199935913, + 0.9988762736320496, + 0.9989169836044312, + 0.9988933205604553, + 0.9886779189109802, + 0.9972584247589111, + 0.9955506324768066, + 0.9986445307731628, + 0.9989122152328491 + ], + "sentiment_counts": { + "POSITIVE": 14, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.8235294117647058, + "NEGATIVE": 0.17647058823529413 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8235294117647058 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998892605304718, + 0.998927891254425, + 0.9987348914146423, + 0.9988842606544495, + 0.9985935091972351, + 0.9985440969467163, + 0.9974377155303955, + 0.9987136125564575, + 0.9982936978340149, + 0.9989369511604309, + 0.999471127986908, + 0.9958460927009583, + 0.9989161491394043, + 0.9953038692474365, + 0.9976192116737366 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8666666666666667, + "NEGATIVE": 0.13333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8666666666666667 + ] + }, + "final_label": "POSITIVE", + "final_count": 41, + "final_proportion": 0.8913043478260869, + "final_counts": { + "POSITIVE": 41, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.8913043478260869, + "NEGATIVE": 0.10869565217391304 + } + } }, { "season_code": "202303", @@ -123525,7 +258393,7 @@ "14:30", "15:20", "WTS B51 - Watson Center 60 Sachem Street B51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -123544,7 +258412,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -123605,7 +258501,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -123639,7 +258563,7 @@ "9:25", "10:15", "WLH 007 - William L. Harkness Hall 007", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -123658,7 +258582,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -123692,7 +258644,7 @@ "14:30", "15:20", "WTS A35 - Watson Center 60 Sachem Street A35", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -123711,7 +258663,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -123745,7 +258725,7 @@ "19:00", "19:50", "WTS A39 - Watson Center 60 Sachem Street A39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -123764,7 +258744,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -123809,7 +258817,7 @@ "11:35", "12:50", "HQ 307 - Humanities Quadrangle 307", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -123817,7 +258825,7 @@ "11:35", "12:50", "HQ 307 - Humanities Quadrangle 307", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -123842,10 +258850,109 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88080\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88080/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9975146055221558, + 0.9974174499511719, + 0.9988190531730652, + 0.9983605742454529, + 0.998916506767273 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994046688079834, + 0.9984863996505737, + 0.9987554550170898, + 0.9995070695877075, + 0.9988973140716553, + 0.9988811612129211 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 4 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984442591667175, + 0.9970195889472961, + 0.9945054650306702, + 0.999510645866394, + 0.9989393353462219 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 0.8125, + "final_counts": { + "POSITIVE": 13, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.8125, + "NEGATIVE": 0.1875 + } + } }, { "season_code": "202303", @@ -123883,7 +258990,7 @@ "13:00", "14:15", "WLH 002 - William L. Harkness Hall 002", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -123891,7 +258998,7 @@ "13:00", "14:15", "WLH 002 - William L. Harkness Hall 002", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -123905,10 +259012,91 @@ "classnotes": "To receive instructor\u2019s permission for this seminar, please email michael.denning@yale.edu. Please include year, major, and any special interests or reasons for taking the seminar.\n\nAlso, not for instructor\u2019s permission, but before the first class: please send to michael.denning@yale.edu a brief, informal reply to any or all of these questions: \"What and where have you learned about marxism, socialism, and the social movements? In what contexts have you read Marx or other social movement writers? In high school, college, elsewhere? How would you define marxism, socialism or the social movements?\"", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88945\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88945/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989161491394043, + 0.9988516569137573 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988804459571838, + 0.9872643947601318 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989374279975891, + 0.9983795881271362, + 0.9983214735984802, + 0.9989012479782104 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 8, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 8 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -123948,7 +259136,7 @@ "11:35", "12:50", "WLH 207 - William L. Harkness Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -123956,7 +259144,7 @@ "11:35", "12:50", "WLH 207 - William L. Harkness Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -123965,7 +259153,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -123973,10 +259161,153 @@ "classnotes": "Classroom requires IT equipment AND a large blackboard", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89097\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89097/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987013339996338, + 0.9989098310470581, + 0.9988991022109985, + 0.9989299178123474, + 0.9989342093467712, + 0.9977993369102478, + 0.998917818069458, + 0.998878538608551, + 0.9988840222358704, + 0.9987342953681946, + 0.9988994598388672, + 0.9988414645195007 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9963954091072083, + 0.9986048340797424, + 0.9988923668861389, + 0.999500036239624, + 0.9988455772399902, + 0.9988711476325989, + 0.9989233613014221, + 0.9989338517189026, + 0.9988629817962646, + 0.9988258481025696, + 0.9971650242805481, + 0.9805963039398193 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9166666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998489499092102, + 0.99872225522995, + 0.9985766410827637, + 0.9988051652908325, + 0.9988752007484436, + 0.9955050349235535, + 0.9989063739776611, + 0.9951392412185669, + 0.9989056587219238, + 0.9989150762557983, + 0.9989199638366699, + 0.9989042282104492, + 0.9989126920700073, + 0.997370719909668 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.7857142857142857, + "NEGATIVE": 0.21428571428571427 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7857142857142857 + ] + }, + "final_label": "POSITIVE", + "final_count": 34, + "final_proportion": 0.8947368421052632, + "final_counts": { + "POSITIVE": 34, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.8947368421052632, + "NEGATIVE": 0.10526315789473684 + } + } }, { "season_code": "202303", @@ -124010,7 +259341,7 @@ "13:30", "14:20", "YK220 100 - 220 York Street 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ] }, @@ -124019,7 +259350,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -124030,7 +259361,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -124064,7 +259423,7 @@ "14:30", "15:20", "YK220 100 - 220 York Street 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ] }, @@ -124073,7 +259432,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -124084,7 +259443,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -124118,7 +259505,7 @@ "16:00", "16:50", "HQ 401 - Humanities Quadrangle 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -124127,7 +259514,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -124138,7 +259525,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -124172,7 +259587,7 @@ "17:00", "17:50", "HQ 401 - Humanities Quadrangle 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -124181,7 +259596,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -124192,7 +259607,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -124226,7 +259669,7 @@ "14:30", "15:20", "YK220 001 - 220 York Street 001", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ] }, @@ -124235,7 +259678,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -124246,7 +259689,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -124280,7 +259751,7 @@ "13:30", "14:20", "YK220 001 - 220 York Street 001", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ] }, @@ -124289,7 +259760,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -124300,12 +259771,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "Examination of transnational debates about gender and sexuality as they unfold in specific contexts. Gender as a category that can or cannot travel; feminist critiques of liberal rights paradigms; globalization of particular models of gender\/queer advocacy; the role of NGOs in global debates about gender and sexuality.", + "description": "Examination of transnational debates about gender and sexuality as they unfold in specific contexts. Gender as a category that can or cannot travel; feminist critiques of liberal rights paradigms; globalization of particular models of gender/queer advocacy; the role of NGOs in global debates about gender and sexuality.", "short_title": "Transnational Approaches to G...", "title": "Transnational Approaches to Gender & Sexuality", "school": "YC", @@ -124354,10 +259853,111 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88551\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88551/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988478422164917, + 0.9989334940910339, + 0.9987789988517761, + 0.9986627101898193, + 0.9989334940910339, + 0.9988928437232971 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989373087882996, + 0.9989247918128967, + 0.998930037021637, + 0.9989343285560608, + 0.9989277720451355 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989351630210876, + 0.9989222288131714, + 0.9989317059516907, + 0.9989301562309265, + 0.9989344477653503, + 0.9989339709281921, + 0.9982367753982544 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 18 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -124396,7 +259996,7 @@ "9:25", "11:15", "HQ C11 - Humanities Quadrangle C11", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -124413,10 +260013,97 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90588\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90588/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988436698913574, + 0.9988800883293152, + 0.9986497759819031, + 0.9988303780555725 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988617897033691, + 0.9955440163612366, + 0.9989086389541626 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988827109336853, + 0.998917818069458, + 0.9988692402839661, + 0.9989299178123474 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 11 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -124455,7 +260142,7 @@ "9:25", "11:15", "WLH 209 - William L. Harkness Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -124469,10 +260156,107 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88094\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88094/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988409876823425, + 0.9987548589706421, + 0.9989182949066162, + 0.99888676404953, + 0.9989084005355835 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989244341850281, + 0.9987940788269043, + 0.9987510442733765, + 0.9989020824432373, + 0.9989141225814819 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998416543006897, + 0.9988725781440735, + 0.9988786578178406, + 0.9988886713981628, + 0.9989232420921326, + 0.9989035129547119 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 16 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -124511,7 +260295,7 @@ "11:35", "12:50", "HQ 207 - Humanities Quadrangle 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -124519,7 +260303,7 @@ "11:35", "12:50", "HQ 207 - Humanities Quadrangle 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -124533,10 +260317,87 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89726\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89726/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989153146743774, + 0.9989243149757385 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988337159156799, + 0.9989074468612671 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989240765571594, + 0.9974592328071594 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 6 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -124576,7 +260437,7 @@ "11:35", "12:25", "LORIA 250 - Loria Center 250", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ], "Wednesday": [ @@ -124584,7 +260445,7 @@ "11:35", "12:25", "LORIA 250 - Loria Center 250", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -124593,7 +260454,7 @@ "Hu" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -124601,10 +260462,143 @@ "classnotes": "", "final_exam": "Sunday, December 17, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88112\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88112/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998836100101471, + 0.9976512789726257, + 0.9988808035850525, + 0.9988939166069031, + 0.9978989362716675, + 0.9989308714866638, + 0.9987949132919312, + 0.9989008903503418, + 0.9988837838172913 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998794436454773, + 0.9982981085777283, + 0.9988808035850525, + 0.9980149269104004, + 0.9989116191864014, + 0.9994109869003296, + 0.998367965221405, + 0.9980337023735046, + 0.9988916516304016, + 0.9987894892692566, + 0.9989295601844788, + 0.9989262223243713 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9166666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988376498222351, + 0.998847246170044, + 0.9989227652549744, + 0.9988154172897339, + 0.9989237189292908, + 0.9986734390258789, + 0.9985941052436829, + 0.9988535642623901, + 0.9988871216773987, + 0.9988312125205994, + 0.9983710646629333, + 0.9986194372177124 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 32, + "final_proportion": 0.9696969696969697, + "final_counts": { + "POSITIVE": 32, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9696969696969697, + "NEGATIVE": 0.030303030303030304 + } + } }, { "season_code": "202303", @@ -124638,7 +260632,7 @@ "15:30", "16:20", "WLH 120 - William L. Harkness Hall 120", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -124647,7 +260641,7 @@ "Hu" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -124658,7 +260652,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -124692,7 +260714,7 @@ "16:30", "17:20", "WLH 113 - William L. Harkness Hall 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -124701,7 +260723,7 @@ "Hu" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -124712,7 +260734,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -124746,7 +260796,7 @@ "13:30", "14:20", "HQ C07 - Humanities Quadrangle C07", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -124755,7 +260805,7 @@ "Hu" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -124766,7 +260816,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -124800,7 +260878,7 @@ "14:30", "15:20", "HQ C07 - Humanities Quadrangle C07", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -124809,7 +260887,7 @@ "Hu" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -124820,7 +260898,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -124854,7 +260960,7 @@ "13:30", "14:20", "LC 212 - Linsly-Chittenden Hall 212", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -124863,7 +260969,7 @@ "Hu" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -124874,7 +260980,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -124908,7 +261042,7 @@ "15:30", "16:20", "LC 213 - Linsly-Chittenden Hall 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -124917,7 +261051,7 @@ "Hu" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -124928,7 +261062,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -124962,7 +261124,7 @@ "14:30", "15:20", "HQ C65 - Humanities Quadrangle C65", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -124971,7 +261133,7 @@ "Hu" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -124982,7 +261144,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -125016,7 +261206,7 @@ "17:00", "17:50", "HQ C65 - Humanities Quadrangle C65", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -125025,7 +261215,7 @@ "Hu" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -125036,7 +261226,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -125075,7 +261293,7 @@ "11:35", "12:50", "HQ C11 - Humanities Quadrangle C11", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -125083,7 +261301,7 @@ "11:35", "12:50", "HQ C11 - Humanities Quadrangle C11", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -125097,15 +261315,114 @@ "classnotes": "", "final_exam": "Sunday, December 17, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90175\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90175/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "", - "description": "This course provides an introduction to Latinx queer\u00a0trans* studies. We approach the field of Latinx queer trans*\u00a0studies as an\u00a0ongoing political project that emerges from social justice activism, gay\/lesbian\/queer\/trans\u00a0studies, critical\u00a0race feminism, cultural practitioners, among other work. We pay particular attention to the keywords \"trans,\" \"queer,\"\u00a0\"Chicanx,\" and\u00a0\"Latinx\" by placing them in productive tension with each other through varied\u00a0critical genealogies.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989116191864014, + 0.9987921118736267, + 0.9988742470741272, + 0.9989226460456848, + 0.998815655708313, + 0.9988058805465698 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989327788352966, + 0.9989396929740906, + 0.9987360835075378, + 0.9989016056060791, + 0.9987634420394897 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989309906959534, + 0.9989262223243713, + 0.998887836933136, + 0.99893718957901, + 0.9988725781440735, + 0.9989104270935059 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 17 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } + }, + { + "season_code": "202303", + "requirements": "", + "description": "This course provides an introduction to Latinx queer\u00a0trans* studies. We approach the field of Latinx queer trans*\u00a0studies as an\u00a0ongoing political project that emerges from social justice activism, gay/lesbian/queer/trans\u00a0studies, critical\u00a0race feminism, cultural practitioners, among other work. We pay particular attention to the keywords \"trans,\" \"queer,\"\u00a0\"Chicanx,\" and\u00a0\"Latinx\" by placing them in productive tension with each other through varied\u00a0critical genealogies.", "short_title": "Porvida: Latinx Queer Trans Life", "title": "Porvida: Latinx Queer Trans Life", "school": "YC", @@ -125139,7 +261456,7 @@ "9:25", "11:15", "WLH 209 - William L. Harkness Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -125149,7 +261466,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -125157,15 +261474,104 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88555\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88555/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988262057304382, + 0.9988682270050049, + 0.9987679123878479, + 0.9984970092773438 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985811710357666, + 0.9989326596260071, + 0.9988020658493042, + 0.9989140033721924 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988322854042053, + 0.9989150762557983, + 0.9989326596260071, + 0.9989365935325623 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 12 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", "requirements": "Prerequisite: SPAN 140 or 145, or in accordance with placement results.\u00a0", - "description": "Extreme weather, proliferation of species extinctions, climate migration, and the outbreak of pandemics can all be understood as instances of koyaanisqatsi, the Hopi word for life out of balance. They may also be viewed as indications that we are living in the age of the Anthropocene, a term in the natural and social sciences that acknowledges that human activities have had a radical geological impact on the planet since the onset of the Industrial revolution.\u00a0In this course we study relations between humans and other-than-humans to understand how we arrived at a life out of balance. We inquire into how binary distinctions between nature and culture are made, sustained, or questioned through a diversity of meaning-making practices in Spanish, Latin American, and indigenous literature, visual culture, and material culture. The indigenous artifacts studied include Popol Vuh, poetry, petroglyphs, and documentaries by indigenous people of the Amazon, which provide opportunities for asking pressing questions: To what extent does the nature and culture binary foreclose alternative possibilities for imagining ourselves and our relation to the world? Are there ways of perceiving our world and ourselves that bypass such binaries and if so, what are they? In the final weeks of the course, we draw from our insights to investigate where the nature\/culture binary figures in present discussions of environmental catastrophes and rights of nature movements in Latin America. Taught in Spanish.", + "description": "Extreme weather, proliferation of species extinctions, climate migration, and the outbreak of pandemics can all be understood as instances of koyaanisqatsi, the Hopi word for life out of balance. They may also be viewed as indications that we are living in the age of the Anthropocene, a term in the natural and social sciences that acknowledges that human activities have had a radical geological impact on the planet since the onset of the Industrial revolution.\u00a0In this course we study relations between humans and other-than-humans to understand how we arrived at a life out of balance. We inquire into how binary distinctions between nature and culture are made, sustained, or questioned through a diversity of meaning-making practices in Spanish, Latin American, and indigenous literature, visual culture, and material culture. The indigenous artifacts studied include Popol Vuh, poetry, petroglyphs, and documentaries by indigenous people of the Amazon, which provide opportunities for asking pressing questions: To what extent does the nature and culture binary foreclose alternative possibilities for imagining ourselves and our relation to the world? Are there ways of perceiving our world and ourselves that bypass such binaries and if so, what are they? In the final weeks of the course, we draw from our insights to investigate where the nature/culture binary figures in present discussions of environmental catastrophes and rights of nature movements in Latin America. Taught in Spanish.", "short_title": "Reading Environments: Nature,...", "title": "Reading Environments: Nature, Culture, and Agency", "school": "YC", @@ -125200,7 +261606,7 @@ "11:35", "12:50", "HQ 313 - Humanities Quadrangle 313", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -125208,7 +261614,7 @@ "11:35", "12:50", "HQ 313 - Humanities Quadrangle 313", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -125222,10 +261628,109 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89727\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89727/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998887836933136, + 0.9988370537757874, + 0.9987188577651978, + 0.9989056587219238 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998939573764801, + 0.9986592531204224, + 0.9989306330680847, + 0.9943006038665771, + 0.998871386051178, + 0.9988806843757629 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989240765571594, + 0.9988006353378296, + 0.9989392161369324, + 0.9940915703773499, + 0.9989081621170044, + 0.9988939166069031 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 0.9375, + "final_counts": { + "POSITIVE": 15, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9375, + "NEGATIVE": 0.0625 + } + } }, { "season_code": "202303", @@ -125264,7 +261769,7 @@ "14:30", "15:45", "BM 013 - Bingham Hall 013", - "https:\/\/map.yale.edu\/?id=1910#!m\/559569" + "https://map.yale.edu/?id=1910#!m/559569" ] ], "Thursday": [ @@ -125272,7 +261777,7 @@ "14:30", "15:45", "BM 013 - Bingham Hall 013", - "https:\/\/map.yale.edu\/?id=1910#!m\/559569" + "https://map.yale.edu/?id=1910#!m/559569" ] ] }, @@ -125281,7 +261786,7 @@ ], "areas": [], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -125289,10 +261794,113 @@ "classnotes": "Please email alison.kibbe@yale.edu regarding your interest in this course.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90080\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90080/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989162683486938, + 0.9986416697502136, + 0.9988434314727783, + 0.9989340901374817, + 0.9988767504692078, + 0.9987854361534119 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988120794296265, + 0.9988454580307007, + 0.9989062547683716, + 0.9989228844642639, + 0.9989151954650879, + 0.9989268183708191, + 0.9973757266998291 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998924195766449, + 0.9989232420921326, + 0.9989232420921326, + 0.9984986782073975, + 0.9989062547683716, + 0.9989338517189026 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 19 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -125333,7 +261941,7 @@ "15:30", "17:20", "WLH 202 - William L. Harkness Hall 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -125350,10 +261958,113 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90678\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90678/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998809814453125, + 0.998860239982605, + 0.9986899495124817, + 0.9989328980445862, + 0.9988508224487305, + 0.9988728165626526, + 0.9989239573478699 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987543821334839, + 0.9989011287689209, + 0.9760379791259766, + 0.9978674650192261, + 0.9987699389457703 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983333945274353, + 0.9989117383956909, + 0.998925507068634, + 0.9988470077514648, + 0.998916506767273, + 0.9988755583763123, + 0.9981794357299805 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 19 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -125394,7 +262105,7 @@ "15:30", "17:20", "WLH 204 - William L. Harkness Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -125413,10 +262124,101 @@ "classnotes": "Priority is given to students in the Education Studies program (Scholar and Certificate) and then by course year. Please indicate your interest in the course as well as major, EDST program and whether you've taken EDST 110 when you request permission. ", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88362\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88362/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998609185218811, + 0.9988056421279907, + 0.9986715316772461 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989110231399536, + 0.9983341097831726, + 0.9988967180252075, + 0.9983867406845093 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998891294002533, + 0.9986816048622131, + 0.9988476037979126, + 0.9988846182823181, + 0.9989123344421387 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 0.9166666666666666, + "final_counts": { + "POSITIVE": 11, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + } + } }, { "season_code": "202303", @@ -125448,7 +262250,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC EP&E Economics Core", "YC EP&E: Advanced Seminar" @@ -125461,7 +262263,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -125508,7 +262338,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -125545,7 +262403,7 @@ "9:25", "11:15", "HQ C64 - Humanities Quadrangle C64", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -125554,7 +262412,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC ER&M: Required Courses" ], @@ -125563,10 +262421,103 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88963\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88963/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983811378479004, + 0.9989107847213745, + 0.9988352656364441 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988957643508911, + 0.9989156723022461, + 0.9989232420921326, + 0.9989056587219238, + 0.9988014698028564 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984048008918762, + 0.9989074468612671, + 0.9980008006095886, + 0.9985190033912659, + 0.9988309741020203, + 0.9989308714866638 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 14 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -125603,10 +262554,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88168\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88168/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -125645,7 +262624,7 @@ "9:25", "11:15", "WTS B74 - Watson Center 60 Sachem Street B74", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -125670,10 +262649,107 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92446\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92446/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989008903503418, + 0.9985145926475525, + 0.9987605810165405, + 0.9988596439361572, + 0.9988419413566589 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9943516254425049, + 0.9988908171653748, + 0.9989110231399536, + 0.9973922967910767 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989041090011597, + 0.9652627110481262, + 0.9987906813621521, + 0.9988106489181519, + 0.9988031387329102, + 0.998938262462616, + 0.998934805393219 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 16 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -125710,7 +262786,7 @@ "16:00", "17:15", "HQ 225 - Humanities Quadrangle 225", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -125718,7 +262794,7 @@ "16:00", "17:15", "HQ 225 - Humanities Quadrangle 225", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -125728,17 +262804,114 @@ "So" ], "flags": [ - "PH: Global Health, Psychosocial\/Social and behavioral\/Anthropology" + "PH: Global Health, Psychosocial/Social and behavioral/Anthropology" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90511\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90511/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988734126091003, + 0.9988935589790344, + 0.9989163875579834, + 0.9987468719482422, + 0.9989166259765625 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989174604415894, + 0.998817503452301, + 0.9989180564880371, + 0.9989364743232727, + 0.9989340901374817 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989050626754761, + 0.9989318251609802, + 0.9982553124427795, + 0.9989312291145325, + 0.9989272952079773, + 0.9989340901374817 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 16 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -125775,7 +262948,7 @@ "14:30", "15:45", "HQ C01 - Humanities Quadrangle C01", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -125783,7 +262956,7 @@ "14:30", "15:45", "HQ C01 - Humanities Quadrangle C01", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -125798,15 +262971,122 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88171\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88171/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "", - "description": "South Asian Americans have appeared on U.S. stages since the late nineteenth century, yet only in the last quarter century have plays and performances by South Asian Americans begun to dismantle dominant cultural representations of South Asian and South Asian American communities and to imagine new ways of belonging. This seminar introduces you to contemporary works of performance (plays, stand-up sets, multimedia events) written and created by U.S.-based artists of South Asian descent as well as artists of the South Asian diaspora whose works have had an impact on U.S. audiences. With awareness that the South Asian American diaspora comprises multiple, contested, and contingent identities, we investigate how artists have worked to manifest complex representations of South Asian Americans onstage, challenge institutional and professional norms, and navigate the perils and pleasures of becoming visible. No prior experience with or study of theater\/performance required. Students in all years and majors welcome.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989268183708191, + 0.9986122846603394, + 0.9989159107208252, + 0.9977574944496155, + 0.9968279004096985, + 0.9989017248153687 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989206790924072, + 0.9989392161369324, + 0.9989370703697205, + 0.9989338517189026, + 0.9989318251609802, + 0.9988585710525513 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989292025566101, + 0.9989141225814819, + 0.9989029169082642, + 0.9988987445831299, + 0.998927891254425, + 0.9988890290260315, + 0.9986749291419983, + 0.9989180564880371 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 0.95, + "final_counts": { + "POSITIVE": 19, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.95, + "NEGATIVE": 0.05 + } + } + }, + { + "season_code": "202303", + "requirements": "", + "description": "South Asian Americans have appeared on U.S. stages since the late nineteenth century, yet only in the last quarter century have plays and performances by South Asian Americans begun to dismantle dominant cultural representations of South Asian and South Asian American communities and to imagine new ways of belonging. This seminar introduces you to contemporary works of performance (plays, stand-up sets, multimedia events) written and created by U.S.-based artists of South Asian descent as well as artists of the South Asian diaspora whose works have had an impact on U.S. audiences. With awareness that the South Asian American diaspora comprises multiple, contested, and contingent identities, we investigate how artists have worked to manifest complex representations of South Asian Americans onstage, challenge institutional and professional norms, and navigate the perils and pleasures of becoming visible. No prior experience with or study of theater/performance required. Students in all years and majors welcome.", "short_title": "Drama in Diaspora: South Asia...", "title": "Drama in Diaspora: South Asian American Theater and Performance", "school": "YC", @@ -125841,7 +263121,7 @@ "15:30", "17:20", "LC 204 - Linsly-Chittenden Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -125858,10 +263138,99 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89007\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89007/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988683462142944, + 0.9988677501678467, + 0.9980084300041199 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9943370223045349, + 0.997211754322052, + 0.998895525932312, + 0.9989205598831177 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998256504535675, + 0.9876799583435059, + 0.9898523688316345, + 0.9987894892692566 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 0.9090909090909091, + "final_counts": { + "POSITIVE": 10, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + } + } }, { "season_code": "202303", @@ -125899,7 +263268,7 @@ "13:30", "15:20", "HQ C11 - Humanities Quadrangle C11", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -125917,10 +263286,111 @@ "classnotes": "Please email the professor to express interest in the seminar, including your name, year, major, and a description of your background in earlier coursework.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88120\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88120/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988502264022827, + 0.9988619089126587, + 0.998900294303894, + 0.9988518953323364, + 0.99892657995224 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989078044891357, + 0.9989206790924072, + 0.9988524913787842, + 0.998913049697876, + 0.9988808035850525, + 0.9989122152328491 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989020824432373, + 0.9989155530929565, + 0.9988534450531006, + 0.9973936080932617, + 0.9989079236984253, + 0.9989176988601685, + 0.9988958835601807 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 18 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -125958,7 +263428,7 @@ "9:25", "11:15", "HQ 213 - Humanities Quadrangle 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -125973,10 +263443,109 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89367\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89367/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989332556724548, + 0.9987762570381165, + 0.998852014541626, + 0.9988393187522888 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989244341850281, + 0.998875081539154, + 0.9983957409858704, + 0.9984716773033142, + 0.9988858103752136 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986039996147156, + 0.9952379465103149, + 0.9989194869995117, + 0.9989394545555115, + 0.9989286065101624, + 0.998891294002533, + 0.9989350438117981 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 0.9375, + "final_counts": { + "POSITIVE": 15, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9375, + "NEGATIVE": 0.0625 + } + } }, { "season_code": "202303", @@ -126019,10 +263588,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89099\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89099/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -126063,7 +263660,7 @@ "13:30", "15:20", "WLH 115 - William L. Harkness Hall 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -126077,10 +263674,89 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89803\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89803/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989172220230103, + 0.9989120960235596 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989364743232727, + 0.9985082745552063, + 0.9988952279090881 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998925507068634, + 0.9989069700241089 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 7 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -126119,7 +263795,7 @@ "13:30", "15:20", "LC 103 - Linsly-Chittenden Hall 103", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -126135,10 +263811,113 @@ "classnotes": "", "final_exam": "Saturday, December 16, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88934\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88934/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988527297973633, + 0.9989093542098999, + 0.9988923668861389, + 0.9987670183181763, + 0.9987779259681702, + 0.998928964138031 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987972974777222, + 0.9989270567893982, + 0.9988834261894226, + 0.9987425208091736, + 0.9988981485366821 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9995130300521851, + 0.9984610080718994, + 0.9989116191864014, + 0.9989191293716431, + 0.9987101554870605, + 0.9989287257194519, + 0.9989103078842163 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 6 + }, + "sentiment_distribution": { + "NEGATIVE": 0.14285714285714285, + "POSITIVE": 0.8571428571428571 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 0.9444444444444444, + "final_counts": { + "POSITIVE": 17, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9444444444444444, + "NEGATIVE": 0.05555555555555555 + } + } }, { "season_code": "202303", @@ -126176,7 +263955,7 @@ "14:30", "15:45", "HQ 313 - Humanities Quadrangle 313", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -126184,7 +263963,7 @@ "14:30", "15:45", "HQ 313 - Humanities Quadrangle 313", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -126195,7 +263974,7 @@ "Hu" ], "flags": [ - "YC English: 20th\/21st Century", + "YC English: 20th/21st Century", "YC English: Junior Seminar", "YC ER&M: Elect within the Major", "YC ER&M: Methods Course" @@ -126205,10 +263984,99 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89356\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89356/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987331032752991, + 0.9989171028137207, + 0.9989175796508789, + 0.9989011287689209 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988669157028198, + 0.998853325843811, + 0.9989325404167175, + 0.9989227652549744 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989330172538757, + 0.9989376664161682, + 0.9988116025924683, + 0.9989343285560608 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 12 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -126246,7 +264114,7 @@ "15:30", "17:50", "SA10 307 - 10 Sachem Street 307", - "https:\/\/map.yale.edu\/?id=1910#!m\/559538" + "https://map.yale.edu/?id=1910#!m/559538" ] ] }, @@ -126265,17 +264133,114 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89504\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89504/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986714124679565, + 0.9987761378288269, + 0.9988866448402405, + 0.9987823367118835 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9949677586555481, + 0.9989290833473206, + 0.9986905455589294, + 0.998815655708313, + 0.998927891254425 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982355833053589, + 0.9989184141159058, + 0.9981436729431152, + 0.9989128112792969, + 0.9988827109336853, + 0.9989190101623535 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 0.9333333333333333, + "final_counts": { + "POSITIVE": 14, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9333333333333333, + "NEGATIVE": 0.06666666666666667 + } + } }, { "season_code": "202303", "requirements": "", - "description": "The course introduces students to Latina\/x\/e feminist theories. We focus on historical and contemporary writings by and about Chicana, Puerto Rican, Central American, and other Latina\/x\/e feminist writers and activists. The course draws from interdisciplinary scholarship addressing the intellectual landscape of Latina\/x\/e and critical race feminist theories and social movement activist organizing.\u00a0While this course approaches Latina\/x\/e feminist theories and activism as often having emerged in relation to U.S. nation-making projects we will consider this work with the understanding that projects of Latina\/x\/e feminism should be understood as cross-border, transnational, and multi-scaler critiques of nation-state violence.", - "short_title": "Latina\/x\/e Feminism", - "title": "Latina\/x\/e Feminism", + "description": "The course introduces students to Latina/x/e feminist theories. We focus on historical and contemporary writings by and about Chicana, Puerto Rican, Central American, and other Latina/x/e feminist writers and activists. The course draws from interdisciplinary scholarship addressing the intellectual landscape of Latina/x/e and critical race feminist theories and social movement activist organizing.\u00a0While this course approaches Latina/x/e feminist theories and activism as often having emerged in relation to U.S. nation-making projects we will consider this work with the understanding that projects of Latina/x/e feminism should be understood as cross-border, transnational, and multi-scaler critiques of nation-state violence.", + "short_title": "Latina/x/e Feminism", + "title": "Latina/x/e Feminism", "school": "YC", "credits": 1.0, "extra_info": "ACTIVE", @@ -126306,7 +264271,7 @@ "13:30", "15:20", "WLH 011 - William L. Harkness Hall 011", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -126320,10 +264285,105 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89316\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89316/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989098310470581, + 0.9989357590675354, + 0.9988848567008972, + 0.9989180564880371 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989067316055298, + 0.9987136125564575, + 0.9989401698112488, + 0.9989293217658997, + 0.9989033937454224 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989307522773743, + 0.9989191293716431, + 0.9988191723823547, + 0.9989355206489563, + 0.9989118576049805, + 0.9989282488822937 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 15 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -126362,7 +264422,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -126400,7 +264488,7 @@ "9:25", "11:15", "HQ 209 - Humanities Quadrangle 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -126421,15 +264509,108 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88159\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88159/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "", - "description": "This course explores the challenges, theories, and pitfalls of translation, focusing on the ways in which acts of translation cross, create, or redefine (socio-)linguistic, national, cultural, and political borders. Special attention is paid to questions of race, economics, gender, sexuality, nationality, post-nationality, multilingualism, citizenship, exile, and their various intersections at the site of literary translation. As part of their final projects, students select and translate a short literary or visual-literary work or critique and re-translate a previously translated literary and\/or visual text. Proficiency in a second language is not required. This course meets the methods requirement for the ER&M major.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989206790924072, + 0.998854398727417, + 0.9989225268363953, + 0.9988362193107605, + 0.9988168478012085 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989196062088013, + 0.9989340901374817, + 0.9989110231399536, + 0.9989359974861145, + 0.9988988637924194 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983811378479004, + 0.9989110231399536, + 0.9989284873008728, + 0.9989233613014221 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 14 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } + }, + { + "season_code": "202303", + "requirements": "", + "description": "This course explores the challenges, theories, and pitfalls of translation, focusing on the ways in which acts of translation cross, create, or redefine (socio-)linguistic, national, cultural, and political borders. Special attention is paid to questions of race, economics, gender, sexuality, nationality, post-nationality, multilingualism, citizenship, exile, and their various intersections at the site of literary translation. As part of their final projects, students select and translate a short literary or visual-literary work or critique and re-translate a previously translated literary and/or visual text. Proficiency in a second language is not required. This course meets the methods requirement for the ER&M major.", "short_title": "Translation: Theory, Methods,...", "title": "Translation: Theory, Methods, and Practice", "school": "YC", @@ -126461,7 +264642,7 @@ "13:30", "15:20", "HQ C05 - Humanities Quadrangle C05", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -126475,10 +264656,103 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89357\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89357/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988729357719421, + 0.9988009929656982, + 0.9988431930541992, + 0.9987562894821167 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989274144172668, + 0.9988916516304016, + 0.9989321827888489, + 0.998925507068634 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998924195766449, + 0.9983211159706116, + 0.9989340901374817, + 0.9989379048347473, + 0.9988963603973389, + 0.9989393353462219 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 14 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -126517,7 +264791,7 @@ "9:25", "11:15", "HQ C05 - Humanities Quadrangle C05", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -126540,10 +264814,87 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88154\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88154/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989250302314758, + 0.9988572597503662 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989370703697205, + 0.9969276785850525 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989068508148193, + 0.9988124370574951 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 6 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -126584,7 +264935,7 @@ "13:30", "15:20", "LORIA 360 - Loria Center 360", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -126601,10 +264952,91 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89111\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89111/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988505840301514, + 0.9989185333251953 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989320635795593, + 0.9988625049591064, + 0.9984228610992432 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998939573764801, + 0.9984899759292603, + 0.9989043474197388 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 8, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 8 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -126654,11 +265086,100 @@ "rp_attr": "", "classnotes": "", "final_exam": "No regular final examination", - "course_home_url": "https:\/\/yale.instructure.com\/courses\/88964", + "course_home_url": "https://yale.instructure.com/courses/88964", "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989194869995117, + 0.9988935589790344, + 0.9987989664077759 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989014863967896, + 0.9988647699356079, + 0.9969673752784729, + 0.9921804666519165, + 0.9988594055175781 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989226460456848, + 0.9985852241516113, + 0.9988840222358704 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 0.9090909090909091, + "final_counts": { + "POSITIVE": 10, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + } + } }, { "season_code": "202303", @@ -126697,7 +265218,7 @@ "9:25", "11:15", "WLH 014 - William L. Harkness Hall 014", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -126714,10 +265235,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88176\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88176/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -126755,7 +265304,7 @@ "13:30", "15:20", "YK220 004 - 220 York Street 004", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ] }, @@ -126769,10 +265318,101 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88935\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88935/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989092350006104, + 0.9986007809638977, + 0.9988579750061035, + 0.9989150762557983 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989172220230103, + 0.9989185333251953, + 0.9987524747848511, + 0.9988345503807068 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988759160041809, + 0.9988529682159424, + 0.9988875985145569, + 0.9989268183708191, + 0.9989293217658997 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 13 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -126810,7 +265450,7 @@ "13:30", "15:20", "HQ 229 - Humanities Quadrangle 229", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -126828,10 +265468,107 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88181\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88181/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.994939923286438, + 0.9988623857498169, + 0.998893678188324, + 0.9988678693771362, + 0.9986598491668701 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988908171653748, + 0.9989342093467712, + 0.9989321827888489, + 0.9974145889282227, + 0.9988058805465698 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989257454872131, + 0.9989270567893982, + 0.9989203214645386, + 0.9985548853874207, + 0.9988137483596802, + 0.9988647699356079 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 16 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -126869,7 +265606,7 @@ "15:30", "17:20", "HQ C07 - Humanities Quadrangle C07", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -126892,10 +265629,87 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88041\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88041/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.998790442943573 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987999200820923 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9987177848815918, + 0.9988208413124084, + 0.999502420425415 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 4, + "final_proportion": 0.8, + "final_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + } + } }, { "season_code": "202303", @@ -126937,7 +265751,7 @@ "13:30", "15:20", "KRN 321 - Kroon Hall 321", - "https:\/\/map.yale.edu\/?id=1910#!m\/559995" + "https://map.yale.edu/?id=1910#!m/559995" ] ] }, @@ -126950,7 +265764,7 @@ "flags": [ "PH: Climate Change and Health", "YC Ethnography: Elective", - "YC EVST: Core Human\/Social Sci", + "YC EVST: Core Human/Social Sci", "YC EVST: Advanced Seminar", "YC GLBL: Elective" ], @@ -126959,10 +265773,113 @@ "classnotes": "YC juniors and seniors have priority for admission", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88235\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88235/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989179372787476, + 0.9986909031867981, + 0.998598039150238, + 0.9960972666740417, + 0.9988501071929932, + 0.9987951517105103 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989284873008728, + 0.9810959696769714, + 0.9988623857498169, + 0.9988846182823181, + 0.9983105659484863, + 0.9989076852798462 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989305138587952, + 0.9988071918487549, + 0.9988629817962646, + 0.9989218711853027, + 0.9989014863967896, + 0.9988675117492676, + 0.9988678693771362 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 19 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -127004,7 +265921,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -127046,7 +265991,7 @@ "13:30", "15:20", "WLH 115 - William L. Harkness Hall 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -127064,10 +266009,95 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88185\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88185/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989055395126343, + 0.9988481998443604, + 0.9988681077957153 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998902440071106, + 0.9825111031532288, + 0.9989070892333984 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989234805107117, + 0.9978604912757874, + 0.9989123344421387 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 0.7777777777777778, + "final_counts": { + "POSITIVE": 7, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.7777777777777778, + "NEGATIVE": 0.2222222222222222 + } + } }, { "season_code": "202303", @@ -127108,7 +266138,7 @@ "9:25", "11:15", "WALL81 101 - 81 Wall Street 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -127124,10 +266154,111 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88868\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88868/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988523721694946, + 0.9987126588821411, + 0.9987289309501648, + 0.9989216327667236, + 0.9986876845359802, + 0.9989308714866638 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989068508148193, + 0.9984404444694519, + 0.9986283779144287, + 0.9989292025566101, + 0.998898983001709, + 0.9989338517189026 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989171028137207, + 0.99856036901474, + 0.998859167098999, + 0.9988909363746643, + 0.9988497495651245, + 0.9988960027694702 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 18 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -127164,7 +266295,7 @@ "9:25", "11:15", "LC 103 - Linsly-Chittenden Hall 103", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -127180,15 +266311,104 @@ "classnotes": "", "final_exam": "Thursday, December 14, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90564\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90564/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "", - "description": "Since 9\/11, cases of what has been termed \"home-grown terrorism\" have cemented the fear that \"bad\" Islam is not just something that exists far away, in distant lands. As a result, there has been an urgent interest to understand who American Muslims are by officials, experts, journalists, and the public. Although Muslims have been part of America\u2019s story from its founding, Muslims have alternated from an invisible minority to the source of national moral panics, capturing national attention during political crises, as a cultural threat or even a potential fifth column. Today the stakes are high to understand what kinds of meanings and attachments connect Muslims in America to the Muslim world and to the US as a nation.\u00a0Over the course of the semester, students grapple with how to define and apply the slippery concept of diaspora to different dispersed Muslim populations in the US, including racial and ethnic diasporas, trading diasporas, political diasporas, and others. By focusing on a range of communities-in-motion and a diverse set of cultural texts, students explore the ways mobility, loss, and communal identity are conceptualized by immigrants, expatriates, refugees, guest-workers, religious seekers, and exiles. To this end, we read histories, ethnographies, essays, policy papers, novels, poetry, memoirs; we watch documentary and fictional films; we listen to music, speeches, spoken word performances, and prayers. Our aim is to deepen our understanding of the multiple meanings and conceptual limits of homeland and diaspora for Muslims in America, particularly in the Age of Terror.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988418221473694, + 0.9989145994186401, + 0.9989171028137207 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983530044555664, + 0.9989125728607178, + 0.9989237189292908 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9974592328071594, + 0.9989359974861145, + 0.9988981485366821, + 0.9980402588844299, + 0.997930645942688, + 0.9989239573478699 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 12 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } + }, + { + "season_code": "202303", + "requirements": "", + "description": "Since 9/11, cases of what has been termed \"home-grown terrorism\" have cemented the fear that \"bad\" Islam is not just something that exists far away, in distant lands. As a result, there has been an urgent interest to understand who American Muslims are by officials, experts, journalists, and the public. Although Muslims have been part of America\u2019s story from its founding, Muslims have alternated from an invisible minority to the source of national moral panics, capturing national attention during political crises, as a cultural threat or even a potential fifth column. Today the stakes are high to understand what kinds of meanings and attachments connect Muslims in America to the Muslim world and to the US as a nation.\u00a0Over the course of the semester, students grapple with how to define and apply the slippery concept of diaspora to different dispersed Muslim populations in the US, including racial and ethnic diasporas, trading diasporas, political diasporas, and others. By focusing on a range of communities-in-motion and a diverse set of cultural texts, students explore the ways mobility, loss, and communal identity are conceptualized by immigrants, expatriates, refugees, guest-workers, religious seekers, and exiles. To this end, we read histories, ethnographies, essays, policy papers, novels, poetry, memoirs; we watch documentary and fictional films; we listen to music, speeches, spoken word performances, and prayers. Our aim is to deepen our understanding of the multiple meanings and conceptual limits of homeland and diaspora for Muslims in America, particularly in the Age of Terror.", "short_title": "Muslims in the United States", "title": "Muslims in the United States", "school": "YC", @@ -127243,10 +266463,87 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90433\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90433/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989101886749268 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989374279975891 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989404082298279, + 0.9988607168197632, + 0.9989339709281921, + 0.9989374279975891 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 6 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -127285,7 +266582,7 @@ "9:25", "11:15", "HQ C01 - Humanities Quadrangle C01", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -127308,10 +266605,95 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88056\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88056/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987114667892456, + 0.9988917708396912, + 0.9988821148872375 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9970687031745911, + 0.9988510608673096, + 0.9989379048347473 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989217519760132, + 0.9987832903862, + 0.9989176988601685 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 8, + "final_proportion": 0.8888888888888888, + "final_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + } + } }, { "season_code": "202303", @@ -127350,7 +266732,7 @@ "15:30", "17:20", "WALL81 201 - 81 Wall Street 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -127366,10 +266748,133 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89995\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89995/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984252452850342, + 0.9989101886749268, + 0.9987581968307495, + 0.9988725781440735, + 0.9988523721694946, + 0.9989137649536133, + 0.9989171028137207, + 0.9988479614257812 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989363551139832, + 0.99854576587677, + 0.9984095692634583, + 0.9989093542098999, + 0.9988527297973633, + 0.998838484287262, + 0.9987959861755371, + 0.9988855719566345, + 0.9988068342208862 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987925291061401, + 0.9988791346549988, + 0.9989176988601685, + 0.9986522793769836, + 0.9989327788352966, + 0.9989359974861145, + 0.9988574981689453, + 0.998872697353363, + 0.9986566305160522, + 0.9989217519760132, + 0.9988479614257812, + 0.9986322522163391 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 29, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 29 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -127407,7 +266912,7 @@ "13:30", "15:20", "WLH 013 - William L. Harkness Hall 013", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -127428,10 +266933,127 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88125\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88125/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989053010940552, + 0.9968112111091614, + 0.9988321661949158, + 0.9989100694656372, + 0.9983306527137756, + 0.998830258846283, + 0.9914087653160095, + 0.9994896650314331 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982663989067078, + 0.998781144618988, + 0.9987290501594543, + 0.998898983001709, + 0.9961236119270325, + 0.9985944628715515, + 0.9987375140190125, + 0.9984361529350281 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9391536712646484, + 0.9988952279090881, + 0.9988362193107605, + 0.9983124732971191, + 0.9988841414451599, + 0.9989196062088013, + 0.9985412359237671, + 0.9986931681632996, + 0.9969120025634766 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 8 + }, + "sentiment_distribution": { + "NEGATIVE": 0.1111111111111111, + "POSITIVE": 0.8888888888888888 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "final_label": "POSITIVE", + "final_count": 23, + "final_proportion": 0.92, + "final_counts": { + "POSITIVE": 23, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.92, + "NEGATIVE": 0.08 + } + } }, { "season_code": "202303", @@ -127469,7 +267091,7 @@ "9:25", "11:15", "HQ 209 - Humanities Quadrangle 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -127486,10 +267108,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88826\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88826/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -127530,7 +267180,7 @@ "13:30", "15:20", "HQ 123 - Humanities Quadrangle 123", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -127547,15 +267197,86 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90679\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90679/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "", - "description": "For students who wish to pursue a close study in the subjects of ethnicity, race, and\/or migration, not otherwise covered by departmental offerings. May be used for research, a special project, or a substantial research paper under faculty supervision. A term paper or its equivalent and regular meetings with the adviser are required. To apply for admission, a student should present a prospectus and a bibliography, signed by the adviser, to the director of undergraduate studies. Enrollment limited.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986874461174011 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988276362419128 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988947510719299 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 3, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 3 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } + }, + { + "season_code": "202303", + "requirements": "", + "description": "For students who wish to pursue a close study in the subjects of ethnicity, race, and/or migration, not otherwise covered by departmental offerings. May be used for research, a special project, or a substantial research paper under faculty supervision. A term paper or its equivalent and regular meetings with the adviser are required. To apply for admission, a student should present a prospectus and a bibliography, signed by the adviser, to the director of undergraduate studies. Enrollment limited.", "short_title": "Independent Study", "title": "Independent Study", "school": "YC", @@ -127595,7 +267316,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -127632,7 +267381,7 @@ "9:25", "11:15", "HQ C64 - Humanities Quadrangle C64", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -127646,10 +267395,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88190\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88190/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -127686,7 +267463,7 @@ "13:30", "15:20", "WLH 004 - William L. Harkness Hall 004", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -127700,10 +267477,63 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88194\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88194/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998842179775238, + 0.998731791973114 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986979961395264 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 3, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 3 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -127749,7 +267579,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -127790,7 +267648,7 @@ "13:30", "15:20", "HQ 213 - Humanities Quadrangle 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -127802,15 +267660,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88710\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88710/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "Instructor permission required.", - "description": "This graduate-level course presents students with the opportunity to develop a thorough, extensive, and deep (though still not exhaustive!) understanding of the oeuvre of Michel Foucault, and his impact on late-twentieth-century criticism and intellectual history in the United States. Non-francophone and\/or U.S. American scholars, as Lynne Huffer has argued, have engaged Foucault\u2019s work unevenly and frequently in a piecemeal way, due to a combination of the overemphasis on The History of Sexuality, Vol 1 (to the exclusion of most of his other major works), and the lack of availability of English translations of most of his writings until the early twenty-first century. This course seeks to correct that trend and to re-introduce Foucault\u2019s works to a generation of graduate students who, on the whole, do not have extensive experience with his oeuvre. In this course, we read almost all of Foucault\u2019s published writings that have been translated into English (which is almost all of them, at this point). We read all of the monographs, and all of the Coll\u00e8ge de France lectures, in chronological order. This lightens the reading load; we read a book per week, but the lectures are shorter and generally less dense than the monographs. [The benefit of a single author course is that the more time one spends reading Foucault\u2019s work, the easier reading his work becomes.] We read as many of the essays he published in popular and more widely-circulated media as we can. The goal of the course is to give students both breadth and depth in their understanding of Foucault and his works, and to be able to situate his thinking in relation to the intellectual, social, and political histories of the twentieth and twenty-first centuries. Alongside Foucault himself, we read Foucault\u2019s mentors, interlocutors, and inheritors (Heidegger, Marx, Blanchot, Canguilhem, Derrida, Barthes, Althusser, Bersani, Hartman, Angela Davis, etc); his critics (Mbembe, Weheliye, Butler, Said, etc.), and scholarship that situates his thought alongside contemporary social movements, including student, Black liberation, prison abolitionist, and anti-psychiatry movements.", + "description": "This graduate-level course presents students with the opportunity to develop a thorough, extensive, and deep (though still not exhaustive!) understanding of the oeuvre of Michel Foucault, and his impact on late-twentieth-century criticism and intellectual history in the United States. Non-francophone and/or U.S. American scholars, as Lynne Huffer has argued, have engaged Foucault\u2019s work unevenly and frequently in a piecemeal way, due to a combination of the overemphasis on The History of Sexuality, Vol 1 (to the exclusion of most of his other major works), and the lack of availability of English translations of most of his writings until the early twenty-first century. This course seeks to correct that trend and to re-introduce Foucault\u2019s works to a generation of graduate students who, on the whole, do not have extensive experience with his oeuvre. In this course, we read almost all of Foucault\u2019s published writings that have been translated into English (which is almost all of them, at this point). We read all of the monographs, and all of the Coll\u00e8ge de France lectures, in chronological order. This lightens the reading load; we read a book per week, but the lectures are shorter and generally less dense than the monographs. [The benefit of a single author course is that the more time one spends reading Foucault\u2019s work, the easier reading his work becomes.] We read as many of the essays he published in popular and more widely-circulated media as we can. The goal of the course is to give students both breadth and depth in their understanding of Foucault and his works, and to be able to situate his thinking in relation to the intellectual, social, and political histories of the twentieth and twenty-first centuries. Alongside Foucault himself, we read Foucault\u2019s mentors, interlocutors, and inheritors (Heidegger, Marx, Blanchot, Canguilhem, Derrida, Barthes, Althusser, Bersani, Hartman, Angela Davis, etc); his critics (Mbembe, Weheliye, Butler, Said, etc.), and scholarship that situates his thought alongside contemporary social movements, including student, Black liberation, prison abolitionist, and anti-psychiatry movements.", "short_title": "Michel Foucault I: The Works,...", "title": "Michel Foucault I: The Works, The Interlocutors, The Critics", "school": "GS", @@ -127843,15 +267729,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88164\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88164/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "Prerequisite: TF position in an ER&M undergraduate lecture course with at least seventy-three students.", - "description": "Faculty members who have a 2:2 course expectation may develop a pedagogy seminar associated with their undergraduate introductory lecture course if it enrolls at least seventy-two students and has at least three teaching fellows leading discussion sections. The course\u2019s TFs must enroll in the pedagogy seminar; they receive full course credit but not toward their degree requirements. This course intends to properly recognize the additional time required of faculty who offer large lecture classes, especially in the fulfillment of the responsibilities outlined in the start of term memo. Courses with sections require substantive guidance on teaching, including weekly teaching fellow meetings, meetings, section visits, and discussions of course assessment. This course is graded SAT\/UNSAT. Two student-teaching fellows are able to submit teaching evaluations of their experience in this pedagogy seminar through the course evaluation process.", + "description": "Faculty members who have a 2:2 course expectation may develop a pedagogy seminar associated with their undergraduate introductory lecture course if it enrolls at least seventy-two students and has at least three teaching fellows leading discussion sections. The course\u2019s TFs must enroll in the pedagogy seminar; they receive full course credit but not toward their degree requirements. This course intends to properly recognize the additional time required of faculty who offer large lecture classes, especially in the fulfillment of the responsibilities outlined in the start of term memo. Courses with sections require substantive guidance on teaching, including weekly teaching fellow meetings, meetings, section visits, and discussions of course assessment. This course is graded SAT/UNSAT. Two student-teaching fellows are able to submit teaching evaluations of their experience in this pedagogy seminar through the course evaluation process.", "short_title": "Pedagogies in ERM", "title": "Pedagogies in ERM", "school": "GS", @@ -127881,10 +267795,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88936\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88936/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -127921,7 +267863,7 @@ "13:30", "15:20", "WTS A39 - Watson Center 60 Sachem Street A39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -127933,10 +267875,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88937\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88937/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -127973,7 +267943,7 @@ "9:00", "10:15", "WLH 115 - William L. Harkness Hall 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -127981,7 +267951,7 @@ "9:00", "10:15", "WLH 115 - William L. Harkness Hall 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -127998,10 +267968,111 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88199\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88199/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9920192360877991, + 0.9988648891448975, + 0.9988394379615784, + 0.9988786578178406, + 0.9989179372787476, + 0.9987906813621521 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988844990730286, + 0.9981670379638672, + 0.9989134073257446, + 0.9988510608673096, + 0.9988934397697449, + 0.998896598815918 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998819887638092, + 0.9988941550254822, + 0.9988866448402405, + 0.9989239573478699, + 0.9989318251609802, + 0.9989075660705566 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 18 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -128060,10 +268131,105 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88205\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88205/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988586902618408, + 0.9980916380882263, + 0.9988897442817688, + 0.9988125562667847, + 0.9987289309501648 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987801909446716, + 0.9960098266601562, + 0.998747706413269, + 0.9986955523490906, + 0.9989392161369324 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.99893718957901, + 0.9988127946853638, + 0.9989268183708191, + 0.9987722039222717, + 0.9989303946495056 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 15 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -128101,7 +268267,7 @@ "13:00", "14:15", "WLH 208 - William L. Harkness Hall 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -128109,7 +268275,7 @@ "13:00", "14:15", "WLH 208 - William L. Harkness Hall 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -128132,10 +268298,107 @@ "classnotes": "", "final_exam": "Wednesday, December 20, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88497\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88497/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988846182823181, + 0.9987815022468567, + 0.9988712668418884, + 0.9985902905464172, + 0.9987205266952515 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985974431037903, + 0.9989375472068787, + 0.9988420605659485, + 0.9985970854759216, + 0.9989120960235596 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988409876823425, + 0.9989386200904846, + 0.9988842606544495, + 0.9989272952079773, + 0.9850194454193115, + 0.9989228844642639 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 16 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -128167,7 +268430,7 @@ "16:00", "16:50", "AKW 100 - Arthur K. Watson Hall 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560119" + "https://map.yale.edu/?id=1910#!m/560119" ] ] }, @@ -128189,7 +268452,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -128221,7 +268512,7 @@ "19:00", "19:50", "WTS B74 - Watson Center 60 Sachem Street B74", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -128243,7 +268534,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -128275,7 +268594,7 @@ "14:30", "15:20", "WTS A68 - Watson Center 60 Sachem Street A68", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -128297,7 +268616,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -128329,7 +268676,7 @@ "19:00", "19:50", "WTS B30 - Watson Center 60 Sachem Street B30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -128351,7 +268698,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -128391,7 +268766,7 @@ "10:30", "11:20", "ML 211 - Mason Laboratory 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ], "Thursday": [ @@ -128399,7 +268774,7 @@ "10:30", "11:20", "ML 211 - Mason Laboratory 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ] }, @@ -128417,10 +268792,285 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88670\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88670/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9961251616477966, + 0.9988117218017578, + 0.9994720816612244, + 0.6994298696517944, + 0.9988449811935425, + 0.9988824725151062, + 0.9986394047737122, + 0.998656153678894, + 0.9986690282821655, + 0.9981566071510315, + 0.9986910223960876, + 0.9987651109695435, + 0.9988124370574951, + 0.9988157749176025, + 0.9988334774971008, + 0.9988893866539001, + 0.9970648884773254, + 0.9987800717353821, + 0.9987006187438965, + 0.9989007711410522, + 0.9983934760093689, + 0.9985760450363159, + 0.9987367987632751, + 0.9987850785255432, + 0.9988439083099365, + 0.998896598815918, + 0.9978004097938538, + 0.9987949132919312, + 0.998754620552063, + 0.9986506104469299, + 0.997936487197876, + 0.9988357424736023, + 0.9986048340797424 + ], + "sentiment_counts": { + "POSITIVE": 31, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.9393939393939394, + "NEGATIVE": 0.06060606060606061 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9393939393939394 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994801878929138, + 0.9994934797286987, + 0.9906005859375, + 0.998907208442688, + 0.9989045858383179, + 0.9982424974441528, + 0.9988836646080017, + 0.9864469766616821, + 0.9995065927505493, + 0.9979323148727417, + 0.9984051585197449, + 0.998874843120575, + 0.9989272952079773, + 0.9987265467643738, + 0.9984101057052612, + 0.9984490871429443, + 0.9995095729827881, + 0.997310996055603, + 0.9956592321395874, + 0.9989131689071655, + 0.9985128045082092, + 0.998837411403656, + 0.9955137372016907, + 0.9687845706939697, + 0.998815655708313, + 0.9989320635795593, + 0.9988332390785217, + 0.9955431818962097, + 0.9987468719482422, + 0.9987927675247192, + 0.9986599683761597, + 0.9989326596260071 + ], + "sentiment_counts": { + "NEGATIVE": 10, + "POSITIVE": 22 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3125, + "POSITIVE": 0.6875 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6875 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982942938804626, + 0.9965415596961975, + 0.999509334564209, + 0.9988760352134705, + 0.998279333114624, + 0.9974592328071594, + 0.9989151954650879, + 0.9988489151000977, + 0.9987271428108215, + 0.9950690269470215, + 0.9988675117492676, + 0.9987953901290894, + 0.9989244341850281, + 0.996852695941925, + 0.9988895058631897, + 0.9989113807678223, + 0.9994865655899048, + 0.9980652928352356, + 0.9989283680915833, + 0.9970291256904602, + 0.981640636920929, + 0.9977506995201111, + 0.9987664222717285, + 0.9986642599105835, + 0.9987595081329346, + 0.9986959099769592, + 0.9995043277740479, + 0.9986897110939026, + 0.9987826943397522, + 0.9989325404167175, + 0.9994943141937256, + 0.9989240765571594, + 0.9982833862304688, + 0.998880922794342, + 0.9980016350746155, + 0.9987248778343201, + 0.9987040758132935, + 0.9977750182151794, + 0.9989079236984253 + ], + "sentiment_counts": { + "POSITIVE": 32, + "NEGATIVE": 7 + }, + "sentiment_distribution": { + "POSITIVE": 0.8205128205128205, + "NEGATIVE": 0.1794871794871795 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8205128205128205 + ] + }, + "final_label": "POSITIVE", + "final_count": 85, + "final_proportion": 0.8173076923076923, + "final_counts": { + "POSITIVE": 85, + "NEGATIVE": 19 + }, + "final_distribution": { + "POSITIVE": 0.8173076923076923, + "NEGATIVE": 0.18269230769230768 + } + } }, { "season_code": "202303", @@ -128454,7 +269104,7 @@ "9:25", "10:15", "HQ 207 - Humanities Quadrangle 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -128475,7 +269125,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -128509,7 +269187,7 @@ "9:25", "10:15", "ML 104 - Mason Laboratory 104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ] }, @@ -128530,7 +269208,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -128564,7 +269270,7 @@ "15:30", "16:20", "BASSLB L73 - Bass Library L73", - "https:\/\/map.yale.edu\/?id=1910#!m\/564574" + "https://map.yale.edu/?id=1910#!m/564574" ] ] }, @@ -128585,7 +269291,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -128619,7 +269353,7 @@ "15:30", "16:20", "BASSLB L70 - Bass Library L70", - "https:\/\/map.yale.edu\/?id=1910#!m\/564574" + "https://map.yale.edu/?id=1910#!m/564574" ] ] }, @@ -128640,7 +269374,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -128674,7 +269436,7 @@ "19:00", "19:50", "WLH 009 - William L. Harkness Hall 009", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -128695,7 +269457,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -128729,7 +269519,7 @@ "19:00", "19:50", "WLH 210 - William L. Harkness Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -128750,7 +269540,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -128790,7 +269608,7 @@ "10:30", "11:20", "WLH 208 - William L. Harkness Hall 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -128798,7 +269616,7 @@ "10:30", "11:20", "WLH 208 - William L. Harkness Hall 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -128815,10 +269633,169 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88673\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88673/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988219141960144, + 0.9989156723022461, + 0.9985854625701904, + 0.9985727071762085, + 0.9984737038612366, + 0.9987195730209351, + 0.9988293051719666, + 0.9984329342842102, + 0.9986252784729004, + 0.9876981377601624, + 0.9883335828781128, + 0.9987358450889587, + 0.9988998174667358, + 0.998866081237793 + ], + "sentiment_counts": { + "POSITIVE": 14, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989155530929565, + 0.9994785189628601, + 0.998521625995636, + 0.9988945126533508, + 0.9963717460632324, + 0.9867180585861206, + 0.9957274198532104, + 0.9987088441848755, + 0.9987577199935913, + 0.9988762736320496, + 0.9989169836044312, + 0.9988933205604553, + 0.9886779189109802, + 0.9972584247589111, + 0.9955506324768066, + 0.9986445307731628, + 0.9989122152328491 + ], + "sentiment_counts": { + "POSITIVE": 14, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.8235294117647058, + "NEGATIVE": 0.17647058823529413 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8235294117647058 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998892605304718, + 0.998927891254425, + 0.9987348914146423, + 0.9988842606544495, + 0.9985935091972351, + 0.9985440969467163, + 0.9974377155303955, + 0.9987136125564575, + 0.9982936978340149, + 0.9989369511604309, + 0.999471127986908, + 0.9958460927009583, + 0.9989161491394043, + 0.9953038692474365, + 0.9976192116737366 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8666666666666667, + "NEGATIVE": 0.13333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8666666666666667 + ] + }, + "final_label": "POSITIVE", + "final_count": 41, + "final_proportion": 0.8913043478260869, + "final_counts": { + "POSITIVE": 41, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.8913043478260869, + "NEGATIVE": 0.10869565217391304 + } + } }, { "season_code": "202303", @@ -128852,7 +269829,7 @@ "14:30", "15:20", "WTS B51 - Watson Center 60 Sachem Street B51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -128871,7 +269848,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -128932,7 +269937,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -128966,7 +269999,7 @@ "9:25", "10:15", "WLH 007 - William L. Harkness Hall 007", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -128985,7 +270018,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -129019,7 +270080,7 @@ "14:30", "15:20", "WTS A35 - Watson Center 60 Sachem Street A35", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -129038,7 +270099,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -129072,7 +270161,7 @@ "19:00", "19:50", "WTS A39 - Watson Center 60 Sachem Street A39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -129091,7 +270180,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -129133,7 +270250,7 @@ "13:30", "15:20", "CO493 106 - 493 College Street 106", - "https:\/\/map.yale.edu\/?id=1910#!m\/560001" + "https://map.yale.edu/?id=1910#!m/560001" ] ] }, @@ -129147,10 +270264,103 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90311\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90311/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987693428993225, + 0.998711109161377, + 0.9988964796066284 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9962917566299438, + 0.9994947910308838, + 0.9955711960792542, + 0.9989386200904846 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9995086193084717, + 0.9989193677902222, + 0.996487021446228, + 0.999502420425415, + 0.9978026747703552, + 0.9989320635795593 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 4 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 0.7692307692307693, + "final_counts": { + "POSITIVE": 10, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.7692307692307693, + "NEGATIVE": 0.23076923076923078 + } + } }, { "season_code": "202303", @@ -129189,7 +270399,7 @@ "9:25", "11:15", "WALL81 101 - 81 Wall Street 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -129214,10 +270424,111 @@ "classnotes": "Please check the canvas site on more information about this course before emailing the instructor.\n\nThis course requires instructor permission. Please list your major, class year, GPA, relevant courses or work experience, reason for taking the course or a brief note on how the course fits into your academic plans, whether for senior essay or not. ", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89641\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89641/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988753199577332, + 0.9989223480224609, + 0.9989107847213745, + 0.9988318085670471, + 0.9989290833473206, + 0.9985527396202087 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998619556427002, + 0.9988075494766235, + 0.9988970756530762, + 0.9988648891448975, + 0.9980946183204651 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9951049089431763, + 0.998863935470581, + 0.9988999366760254, + 0.9836829304695129, + 0.9973142743110657, + 0.9988669157028198 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 5 + }, + "sentiment_distribution": { + "NEGATIVE": 0.16666666666666666, + "POSITIVE": 0.8333333333333334 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 0.9411764705882353, + "final_counts": { + "POSITIVE": 16, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9411764705882353, + "NEGATIVE": 0.058823529411764705 + } + } }, { "season_code": "202303", @@ -129256,7 +270567,7 @@ "11:35", "12:50", "GR109 ROSENFELD - 109 Grove Street ROSENFELD", - "https:\/\/map.yale.edu\/?id=1910#!m\/560109" + "https://map.yale.edu/?id=1910#!m/560109" ] ], "Thursday": [ @@ -129264,7 +270575,7 @@ "11:35", "12:50", "GR109 ROSENFELD - 109 Grove Street ROSENFELD", - "https:\/\/map.yale.edu\/?id=1910#!m\/560109" + "https://map.yale.edu/?id=1910#!m/560109" ] ] }, @@ -129273,17 +270584,156 @@ "So" ], "flags": [ - "YC EVST: Core Human\/Social Sci" + "YC EVST: Core Human/Social Sci" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "Friday, December 15, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88208\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88208/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998857855796814, + 0.9988988637924194, + 0.9987082481384277, + 0.9989140033721924, + 0.9988372921943665, + 0.9987964630126953, + 0.9989049434661865, + 0.9989234805107117, + 0.9987994432449341, + 0.9954805374145508, + 0.9988899827003479, + 0.9989017248153687 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989076852798462, + 0.5613076686859131, + 0.9980595707893372, + 0.9989194869995117, + 0.9989290833473206, + 0.9796344637870789, + 0.9989058971405029, + 0.998837411403656, + 0.9987998008728027, + 0.9958578944206238, + 0.9988915324211121 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9090909090909091 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988518953323364, + 0.9988981485366821, + 0.9987847208976746, + 0.9982442855834961, + 0.9989334940910339, + 0.9988521337509155, + 0.9988179802894592, + 0.9989356398582458, + 0.9988836646080017, + 0.9981389045715332, + 0.9988184571266174, + 0.9988988637924194, + 0.9987447261810303 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 35, + "final_proportion": 0.9722222222222222, + "final_counts": { + "POSITIVE": 35, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9722222222222222, + "NEGATIVE": 0.027777777777777776 + } + } }, { "season_code": "202303", @@ -129315,7 +270765,7 @@ "19:00", "19:50", "WLH 011 - William L. Harkness Hall 011", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -129324,7 +270774,7 @@ "So" ], "flags": [ - "YC EVST: Core Human\/Social Sci" + "YC EVST: Core Human/Social Sci" ], "regnotes": "", "rp_attr": "", @@ -129334,7 +270784,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -129375,7 +270853,7 @@ "So" ], "flags": [ - "YC EVST: Core Human\/Social Sci" + "YC EVST: Core Human/Social Sci" ], "regnotes": "", "rp_attr": "", @@ -129385,7 +270863,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -129417,7 +270923,7 @@ "9:25", "10:15", "LC 104 - Linsly-Chittenden Hall 104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -129426,7 +270932,7 @@ "So" ], "flags": [ - "YC EVST: Core Human\/Social Sci" + "YC EVST: Core Human/Social Sci" ], "regnotes": "", "rp_attr": "", @@ -129436,7 +270942,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -129485,7 +271019,7 @@ "So" ], "flags": [ - "YC EVST: Core Human\/Social Sci" + "YC EVST: Core Human/Social Sci" ], "regnotes": "", "rp_attr": "", @@ -129495,7 +271029,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -129544,7 +271106,7 @@ "So" ], "flags": [ - "YC EVST: Core Human\/Social Sci" + "YC EVST: Core Human/Social Sci" ], "regnotes": "", "rp_attr": "", @@ -129554,7 +271116,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -129603,7 +271193,7 @@ "So" ], "flags": [ - "YC EVST: Core Human\/Social Sci" + "YC EVST: Core Human/Social Sci" ], "regnotes": "", "rp_attr": "", @@ -129613,7 +271203,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -129652,7 +271270,7 @@ "11:35", "12:50", "WTS A74 - Watson Center 60 Sachem Street A74", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -129660,7 +271278,7 @@ "11:35", "12:50", "WTS A74 - Watson Center 60 Sachem Street A74", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -129678,10 +271296,153 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88204\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88204/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9272934198379517, + 0.9985878467559814, + 0.995886504650116, + 0.9988849759101868, + 0.9967250227928162, + 0.996715784072876, + 0.9987239241600037, + 0.9933269023895264, + 0.998904824256897, + 0.9959312081336975, + 0.9956230521202087, + 0.998802661895752, + 0.9989074468612671 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 10 + }, + "sentiment_distribution": { + "NEGATIVE": 0.23076923076923078, + "POSITIVE": 0.7692307692307693 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7692307692307693 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989966750144958, + 0.9988179802894592, + 0.9995015859603882, + 0.9988968372344971, + 0.9988933205604553, + 0.9995001554489136, + 0.9978083968162537, + 0.9994285702705383, + 0.9989297986030579, + 0.999504566192627, + 0.9995123147964478, + 0.997967541217804, + 0.9973366856575012 + ], + "sentiment_counts": { + "NEGATIVE": 8, + "POSITIVE": 5 + }, + "sentiment_distribution": { + "NEGATIVE": 0.6153846153846154, + "POSITIVE": 0.38461538461538464 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.6153846153846154 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.993161678314209, + 0.9994816184043884, + 0.998925507068634, + 0.999483585357666, + 0.9983367919921875, + 0.9987724423408508, + 0.9985795021057129, + 0.9989207983016968, + 0.9983795881271362, + 0.9994837045669556, + 0.9971203804016113, + 0.9989166259765625 + ], + "sentiment_counts": { + "NEGATIVE": 7, + "POSITIVE": 5 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5833333333333334, + "POSITIVE": 0.4166666666666667 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.5833333333333334 + ] + }, + "final_label": "neutral", + "final_count": 20, + "final_proportion": 0.5, + "final_counts": { + "NEGATIVE": 18, + "POSITIVE": 20 + }, + "final_distribution": { + "NEGATIVE": 0.47368421052631576, + "POSITIVE": 0.5263157894736842 + } + } }, { "season_code": "202303", @@ -129713,7 +271474,7 @@ "13:30", "14:20", "WTS B51 - Watson Center 60 Sachem Street B51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -129734,7 +271495,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -129766,7 +271555,7 @@ "15:30", "16:20", "WTS B30 - Watson Center 60 Sachem Street B30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -129787,7 +271576,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -129819,7 +271636,7 @@ "9:25", "10:15", "WTS B52 - Watson Center 60 Sachem Street B52", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -129840,7 +271657,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -129872,7 +271717,7 @@ "10:30", "11:20", "DL 120 - Dunham Laboratory 120", - "https:\/\/map.yale.edu\/?id=1910#!m\/560005" + "https://map.yale.edu/?id=1910#!m/560005" ] ] }, @@ -129893,7 +271738,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -129931,7 +271804,7 @@ "9:25", "11:15", "LC 213 - Linsly-Chittenden Hall 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -129949,10 +271822,111 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88213\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88213/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988372921943665, + 0.9985508322715759, + 0.9986360669136047, + 0.9987626075744629, + 0.9987894892692566, + 0.9989123344421387 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989297986030579, + 0.9989336133003235, + 0.9954427480697632, + 0.998808741569519, + 0.9989076852798462, + 0.9988954067230225 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989308714866638, + 0.9988963603973389, + 0.9989342093467712, + 0.9982084035873413, + 0.9988651275634766, + 0.9989011287689209 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 18 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -129992,7 +271966,7 @@ "14:30", "15:45", "HQ 225 - Humanities Quadrangle 225", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -130000,7 +271974,7 @@ "14:30", "15:45", "HQ 225 - Humanities Quadrangle 225", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -130010,22 +271984,151 @@ ], "flags": [ "YSE MEM C&A Electives", - "YC EVST: Core Human\/Social Sci" + "YC EVST: Core Human/Social Sci" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89849\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89849/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9962582588195801, + 0.9987448453903198, + 0.9989109039306641, + 0.9988428354263306, + 0.9987834095954895, + 0.9942436814308167, + 0.9989105463027954, + 0.9987689852714539, + 0.9988893866539001, + 0.9980958104133606, + 0.9988905787467957 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 10 + }, + "sentiment_distribution": { + "NEGATIVE": 0.09090909090909091, + "POSITIVE": 0.9090909090909091 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9090909090909091 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9962582588195801, + 0.9989333748817444, + 0.9989383816719055, + 0.996529757976532, + 0.9989294409751892, + 0.9988657236099243, + 0.9987187385559082, + 0.9989200830459595, + 0.9989365935325623 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 8 + }, + "sentiment_distribution": { + "NEGATIVE": 0.1111111111111111, + "POSITIVE": 0.8888888888888888 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9962582588195801, + 0.9988861680030823, + 0.9989386200904846, + 0.9989379048347473, + 0.9989110231399536, + 0.99885094165802, + 0.9989312291145325, + 0.9988710284233093, + 0.9989226460456848, + 0.9989266991615295, + 0.9989321827888489 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 10 + }, + "sentiment_distribution": { + "NEGATIVE": 0.09090909090909091, + "POSITIVE": 0.9090909090909091 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9090909090909091 + ] + }, + "final_label": "POSITIVE", + "final_count": 28, + "final_proportion": 0.9032258064516129, + "final_counts": { + "NEGATIVE": 3, + "POSITIVE": 28 + }, + "final_distribution": { + "NEGATIVE": 0.0967741935483871, + "POSITIVE": 0.9032258064516129 + } + } }, { "season_code": "202303", "requirements": "Prerequisite: SPAN 140 or 145, or in accordance with placement results.\u00a0", - "description": "Extreme weather, proliferation of species extinctions, climate migration, and the outbreak of pandemics can all be understood as instances of koyaanisqatsi, the Hopi word for life out of balance. They may also be viewed as indications that we are living in the age of the Anthropocene, a term in the natural and social sciences that acknowledges that human activities have had a radical geological impact on the planet since the onset of the Industrial revolution.\u00a0In this course we study relations between humans and other-than-humans to understand how we arrived at a life out of balance. We inquire into how binary distinctions between nature and culture are made, sustained, or questioned through a diversity of meaning-making practices in Spanish, Latin American, and indigenous literature, visual culture, and material culture. The indigenous artifacts studied include Popol Vuh, poetry, petroglyphs, and documentaries by indigenous people of the Amazon, which provide opportunities for asking pressing questions: To what extent does the nature and culture binary foreclose alternative possibilities for imagining ourselves and our relation to the world? Are there ways of perceiving our world and ourselves that bypass such binaries and if so, what are they? In the final weeks of the course, we draw from our insights to investigate where the nature\/culture binary figures in present discussions of environmental catastrophes and rights of nature movements in Latin America. Taught in Spanish.", + "description": "Extreme weather, proliferation of species extinctions, climate migration, and the outbreak of pandemics can all be understood as instances of koyaanisqatsi, the Hopi word for life out of balance. They may also be viewed as indications that we are living in the age of the Anthropocene, a term in the natural and social sciences that acknowledges that human activities have had a radical geological impact on the planet since the onset of the Industrial revolution.\u00a0In this course we study relations between humans and other-than-humans to understand how we arrived at a life out of balance. We inquire into how binary distinctions between nature and culture are made, sustained, or questioned through a diversity of meaning-making practices in Spanish, Latin American, and indigenous literature, visual culture, and material culture. The indigenous artifacts studied include Popol Vuh, poetry, petroglyphs, and documentaries by indigenous people of the Amazon, which provide opportunities for asking pressing questions: To what extent does the nature and culture binary foreclose alternative possibilities for imagining ourselves and our relation to the world? Are there ways of perceiving our world and ourselves that bypass such binaries and if so, what are they? In the final weeks of the course, we draw from our insights to investigate where the nature/culture binary figures in present discussions of environmental catastrophes and rights of nature movements in Latin America. Taught in Spanish.", "short_title": "Reading Environments: Nature,...", "title": "Reading Environments: Nature, Culture, and Agency", "school": "YC", @@ -130060,7 +272163,7 @@ "11:35", "12:50", "HQ 313 - Humanities Quadrangle 313", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -130068,7 +272171,7 @@ "11:35", "12:50", "HQ 313 - Humanities Quadrangle 313", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -130082,10 +272185,109 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89727\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89727/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998887836933136, + 0.9988370537757874, + 0.9987188577651978, + 0.9989056587219238 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998939573764801, + 0.9986592531204224, + 0.9989306330680847, + 0.9943006038665771, + 0.998871386051178, + 0.9988806843757629 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989240765571594, + 0.9988006353378296, + 0.9989392161369324, + 0.9940915703773499, + 0.9989081621170044, + 0.9988939166069031 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 0.9375, + "final_counts": { + "POSITIVE": 15, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9375, + "NEGATIVE": 0.0625 + } + } }, { "season_code": "202303", @@ -130148,10 +272350,99 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88780\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88780/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987819790840149, + 0.9987673759460449, + 0.9987832903862, + 0.9989112615585327 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987974166870117, + 0.998856782913208, + 0.9989272952079773, + 0.9984908103942871 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989233613014221, + 0.9922215342521667, + 0.9989325404167175, + 0.9988340735435486 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 12 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -130188,7 +272479,7 @@ "8:25", "12:20", "OML 201 - Osborn Memorial Laboratories 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/559958" + "https://map.yale.edu/?id=1910#!m/559958" ] ] }, @@ -130204,10 +272495,113 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88781\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88781/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988645315170288, + 0.9988755583763123, + 0.9989226460456848, + 0.9989204406738281, + 0.9988781809806824, + 0.9987120628356934, + 0.9988711476325989 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9807174801826477, + 0.9988901019096375, + 0.9986794590950012, + 0.9988366961479187, + 0.9979152083396912 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987491369247437, + 0.9987019300460815, + 0.9988821148872375, + 0.989648699760437, + 0.9989249110221863, + 0.998936116695404 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 0.9444444444444444, + "final_counts": { + "POSITIVE": 17, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9444444444444444, + "NEGATIVE": 0.05555555555555555 + } + } }, { "season_code": "202303", @@ -130246,7 +272640,7 @@ "13:30", "15:20", "RKZ 301 - Rosenkranz Hall 301", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -130267,10 +272661,119 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89001\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89001/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987577199935913, + 0.9983678460121155, + 0.9979947805404663, + 0.9988402724266052, + 0.9987201690673828, + 0.9989223480224609, + 0.9986342787742615 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988634586334229, + 0.998666524887085, + 0.998935878276825, + 0.9994970560073853, + 0.9989303946495056, + 0.9989047050476074, + 0.998907208442688, + 0.998487114906311 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9912651181221008, + 0.9987105131149292, + 0.9988313317298889, + 0.9989270567893982, + 0.9989234805107117, + 0.9994995594024658 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 4 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 0.8095238095238095, + "final_counts": { + "POSITIVE": 17, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.8095238095238095, + "NEGATIVE": 0.19047619047619047 + } + } }, { "season_code": "202303", @@ -130309,7 +272812,7 @@ "9:25", "11:15", "HQ C11 - Humanities Quadrangle C11", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -130326,10 +272829,97 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90588\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90588/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988436698913574, + 0.9988800883293152, + 0.9986497759819031, + 0.9988303780555725 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988617897033691, + 0.9955440163612366, + 0.9989086389541626 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988827109336853, + 0.998917818069458, + 0.9988692402839661, + 0.9989299178123474 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 11 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -130370,10 +272960,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92723\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92723/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -130413,7 +273031,7 @@ "13:30", "15:20", "HQ 309 - Humanities Quadrangle 309", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -130427,10 +273045,101 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88598\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88598/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989068508148193, + 0.9984636306762695 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988297820091248, + 0.9989150762557983, + 0.9982605576515198, + 0.9974096417427063 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987319111824036, + 0.9988688826560974, + 0.9986447691917419, + 0.9989240765571594, + 0.9966188669204712, + 0.9989379048347473 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 0.9166666666666666, + "final_counts": { + "POSITIVE": 11, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + } + } }, { "season_code": "202303", @@ -130468,7 +273177,7 @@ "13:00", "14:15", "S 41C - Sage Hall 41C", - "https:\/\/map.yale.edu\/?id=1910#!m\/559547" + "https://map.yale.edu/?id=1910#!m/559547" ] ], "Wednesday": [ @@ -130476,7 +273185,7 @@ "13:00", "14:15", "S 41C - Sage Hall 41C", - "https:\/\/map.yale.edu\/?id=1910#!m\/559547" + "https://map.yale.edu/?id=1910#!m/559547" ] ] }, @@ -130494,10 +273203,115 @@ "classnotes": "", "final_exam": "Wednesday, December 20, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88228\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88228/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989258646965027, + 0.9987003803253174, + 0.9988846182823181, + 0.9949585795402527, + 0.9988611936569214 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984161853790283, + 0.998939573764801, + 0.9988905787467957, + 0.9988879561424255, + 0.9989311099052429, + 0.9987899661064148 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988246560096741, + 0.9971240162849426, + 0.9989057779312134, + 0.9989157915115356, + 0.998855471611023, + 0.9926338791847229, + 0.9989376664161682, + 0.9975121021270752 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 0.8947368421052632, + "final_counts": { + "POSITIVE": 17, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8947368421052632, + "NEGATIVE": 0.10526315789473684 + } + } }, { "season_code": "202303", @@ -130535,7 +273349,7 @@ "14:30", "15:45", "WTS B52 - Watson Center 60 Sachem Street B52", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -130543,7 +273357,7 @@ "14:30", "15:45", "WTS B52 - Watson Center 60 Sachem Street B52", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -130557,10 +273371,38 @@ "classnotes": "", "final_exam": "Sunday, December 17, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90550\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/90550/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -130598,7 +273440,7 @@ "14:30", "17:20", "S 32 - Sage Hall 32", - "https:\/\/map.yale.edu\/?id=1910#!m\/559547" + "https://map.yale.edu/?id=1910#!m/559547" ] ] }, @@ -130614,10 +273456,107 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90123\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90123/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989302754402161, + 0.9988929629325867, + 0.9989290833473206, + 0.9989128112792969, + 0.9988793730735779, + 0.9987807869911194 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.995581328868866, + 0.9989323019981384, + 0.9989228844642639, + 0.9989088773727417, + 0.9989238381385803 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989277720451355, + 0.9989173412322998, + 0.9988760352134705, + 0.9986534118652344, + 0.9989080429077148 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 16 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -130656,7 +273595,7 @@ "15:30", "17:20", "HQ C03 - Humanities Quadrangle C03", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -130666,7 +273605,7 @@ "So" ], "flags": [ - "YC EVST: Core Human\/Social Sci", + "YC EVST: Core Human/Social Sci", "YC HIST: Europe", "YC HIST: Latin America", "YC HIST: Environmental History", @@ -130678,14 +273617,93 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89149\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89149/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "Prerequisites: MB&B 300\/301 or MB&B 200\/MCDB 300 or permission of the instructor.\u00a0 Can be taken concurrently with MB&B 301.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998364269733429, + 0.9988517761230469 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994974136352539, + 0.9988889098167419 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 1 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9994956254959106, + 0.9995169639587402 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 0 + }, + "sentiment_distribution": { + "NEGATIVE": 1.0, + "POSITIVE": 0.0 + }, + "sentiment_overall": [ + "NEGATIVE", + 1.0 + ] + }, + "final_label": "neutral", + "final_count": 0.5, + "final_proportion": 0.5, + "final_counts": { + "POSITIVE": 3, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + } + } + }, + { + "season_code": "202303", + "requirements": "Prerequisites: MB&B 300/301 or MB&B 200/MCDB 300 or permission of the instructor.\u00a0 Can be taken concurrently with MB&B 301.", "description": "Climate change is impacting how cells and organisms grow and reproduce. Imagine the ocean spiking a fever: cold-blooded organisms of all shapes, sizes and complexities struggle to survive when water temperatures go up 2-4 degrees. Some organisms adapt to extremes, while others cannot. Predicted and observed changes in temperature, pH and salt concentration do and will affect many parameters of the living world, from the kinetics of chemical reactions and cellular signaling pathways to the accumulation of unforeseen chemicals in the environment, the appearance and dispersal of new diseases, and the development of new foods. In this course, we approach climate change from the molecular point of view, identifying how cells and organisms\u2015from microbes to plants and animals\u2015respond to changing environmental conditions. To embrace the concept of \"one health\" for all life on the planet, this course leverages biochemistry, cell biology, molecular biophysics, and genetics to develop an understanding of the impact of climate change on the living world. We consider the foundational knowledge that biochemistry can bring to the table as we meet the challenge of climate change.", "short_title": "Biochemistry and Our Changing...", "title": "Biochemistry and Our Changing Climate", @@ -130724,7 +273742,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -130763,7 +273809,7 @@ "13:00", "15:50", "S 32 - Sage Hall 32", - "https:\/\/map.yale.edu\/?id=1910#!m\/559547" + "https://map.yale.edu/?id=1910#!m/559547" ] ] }, @@ -130779,10 +273825,38 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92654\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/92654/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -130825,7 +273899,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -130863,7 +273965,7 @@ "9:25", "11:15", "WTS A72 - Watson Center 60 Sachem Street A72", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -130879,10 +273981,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90509\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90509/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -130924,7 +274054,7 @@ "13:30", "15:20", "KRN 321 - Kroon Hall 321", - "https:\/\/map.yale.edu\/?id=1910#!m\/559995" + "https://map.yale.edu/?id=1910#!m/559995" ] ] }, @@ -130937,7 +274067,7 @@ "flags": [ "PH: Climate Change and Health", "YC Ethnography: Elective", - "YC EVST: Core Human\/Social Sci", + "YC EVST: Core Human/Social Sci", "YC EVST: Advanced Seminar", "YC GLBL: Elective" ], @@ -130946,10 +274076,113 @@ "classnotes": "YC juniors and seniors have priority for admission", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88235\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88235/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989179372787476, + 0.9986909031867981, + 0.998598039150238, + 0.9960972666740417, + 0.9988501071929932, + 0.9987951517105103 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989284873008728, + 0.9810959696769714, + 0.9988623857498169, + 0.9988846182823181, + 0.9983105659484863, + 0.9989076852798462 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989305138587952, + 0.9988071918487549, + 0.9988629817962646, + 0.9989218711853027, + 0.9989014863967896, + 0.9988675117492676, + 0.9988678693771362 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 19 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -130996,7 +274229,7 @@ "13:30", "15:20", "WLH 203 - William L. Harkness Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -131011,10 +274244,115 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89496\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89496/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988633394241333, + 0.9987687468528748, + 0.9982184767723083, + 0.9989209175109863, + 0.9988806843757629, + 0.9556989073753357 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989169836044312, + 0.9988388419151306, + 0.9986086487770081, + 0.9989100694656372, + 0.998865008354187, + 0.9988923668861389, + 0.9973819851875305, + 0.9989210367202759 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989180564880371, + 0.9989171028137207, + 0.9987248778343201, + 0.9987255930900574, + 0.998908519744873 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 0.9473684210526315, + "final_counts": { + "POSITIVE": 18, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9473684210526315, + "NEGATIVE": 0.05263157894736842 + } + } }, { "season_code": "202303", @@ -131057,7 +274395,7 @@ "19:00", "22:00", "LC 101 - Linsly-Chittenden Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -131065,7 +274403,7 @@ "15:30", "18:20", "CCAM 110 - Center for Collab Arts & Media 110", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -131080,10 +274418,81 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88288\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88288/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981396198272705 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986857771873474 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9978218078613281 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 3, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 3 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -131122,7 +274531,7 @@ "9:25", "11:15", "WLH 007 - William L. Harkness Hall 007", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -131133,7 +274542,7 @@ ], "flags": [ "PH: Climate Change and Health", - "YC EVST: Core Human\/Social Sci", + "YC EVST: Core Human/Social Sci", "YC EVST: Advanced Seminar", "YC GLHTH: Hist Approaches", "YC GLHTH: Bio & Env Influences", @@ -131144,10 +274553,101 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88239\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88239/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986259937286377, + 0.9988100528717041, + 0.9987377524375916 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9978216886520386, + 0.9961723685264587, + 0.9987773299217224, + 0.9985429048538208 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988422989845276, + 0.9914733171463013, + 0.9982972741127014, + 0.9988442659378052, + 0.9988338351249695 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 0.8333333333333334, + "final_counts": { + "POSITIVE": 10, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + } + } }, { "season_code": "202303", @@ -131208,10 +274708,83 @@ "classnotes": "Section 01 is intended for EVST seniors who plan to complete their senior essays in Fall semester. This category includes students who are writing a one-term senior essay and students in the second term of a two-term project. ", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88245\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88245/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987699389457703 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989295601844788, + 0.9989125728607178 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989320635795593 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 4, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 4 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -131272,10 +274845,99 @@ "classnotes": "Section 02 is intended for EVST seniors who plan to complete their senior essays in Spring semester. This category includes both students in the BS track, which requires a two-term senior essay, and those students in the BA track who have been approved by the EVST DUS to pursue a two-term project. ", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88250\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88250/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988991022109985, + 0.9989205598831177, + 0.9986701011657715 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985686540603638, + 0.9993927478790283, + 0.9988886713981628, + 0.9980183839797974, + 0.9980921149253845 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.6, + "NEGATIVE": 0.4 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986737966537476, + 0.9990110397338867, + 0.9936118721961975 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 8, + "final_proportion": 0.7272727272727273, + "final_counts": { + "POSITIVE": 8, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.7272727272727273, + "NEGATIVE": 0.2727272727272727 + } + } }, { "season_code": "202303", @@ -131312,7 +274974,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -131353,10 +275043,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92723\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92723/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -131398,7 +275116,7 @@ "13:30", "15:20", "KRN 321 - Kroon Hall 321", - "https:\/\/map.yale.edu\/?id=1910#!m\/559995" + "https://map.yale.edu/?id=1910#!m/559995" ] ] }, @@ -131416,10 +275134,113 @@ "classnotes": "YC juniors and seniors have priority for admission", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88235\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88235/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989179372787476, + 0.9986909031867981, + 0.998598039150238, + 0.9960972666740417, + 0.9988501071929932, + 0.9987951517105103 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989284873008728, + 0.9810959696769714, + 0.9988623857498169, + 0.9988846182823181, + 0.9983105659484863, + 0.9989076852798462 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989305138587952, + 0.9988071918487549, + 0.9988629817962646, + 0.9989218711853027, + 0.9989014863967896, + 0.9988675117492676, + 0.9988678693771362 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 19 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -131456,13 +275277,13 @@ "13:30", "14:20", "HQ L01 - Humanities Quadrangle L01", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ], [ "19:00", "22:00", "HQ L01 - Humanities Quadrangle L01", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -131470,7 +275291,7 @@ "13:30", "14:20", "HQ L01 - Humanities Quadrangle L01", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -131488,10 +275309,147 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88257\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88257/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9951151609420776, + 0.997525155544281, + 0.9979920387268066, + 0.9987726807594299, + 0.9974027276039124, + 0.9988585710525513, + 0.9981778860092163, + 0.9989293217658997, + 0.9989017248153687, + 0.998547375202179, + 0.9988101720809937, + 0.9987422823905945, + 0.9989193677902222 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9991476535797119, + 0.9625495672225952, + 0.9971760511398315, + 0.9987741112709045, + 0.9988142251968384, + 0.9989369511604309, + 0.9979161620140076, + 0.99887615442276, + 0.9962905645370483, + 0.9963687658309937, + 0.9989204406738281 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 10 + }, + "sentiment_distribution": { + "NEGATIVE": 0.09090909090909091, + "POSITIVE": 0.9090909090909091 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9090909090909091 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987432360649109, + 0.9946144223213196, + 0.9989182949066162, + 0.9877012372016907, + 0.9989169836044312, + 0.9979739785194397, + 0.9989308714866638, + 0.9989122152328491, + 0.9987924098968506, + 0.998320996761322, + 0.9989180564880371 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8181818181818182, + "NEGATIVE": 0.18181818181818182 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8181818181818182 + ] + }, + "final_label": "POSITIVE", + "final_count": 32, + "final_proportion": 0.9142857142857143, + "final_counts": { + "POSITIVE": 32, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.9142857142857143, + "NEGATIVE": 0.08571428571428572 + } + } }, { "season_code": "202303", @@ -131522,7 +275480,7 @@ "14:30", "15:20", "WALL81 301 - 81 Wall Street 301", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -131543,7 +275501,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -131574,7 +275560,7 @@ "17:00", "17:50", "HQ 123 - Humanities Quadrangle 123", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -131595,7 +275581,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -131626,7 +275640,7 @@ "19:00", "19:50", "HQ 123 - Humanities Quadrangle 123", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -131647,7 +275661,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -131678,7 +275720,7 @@ "10:30", "11:20", "HQ C65 - Humanities Quadrangle C65", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -131699,7 +275741,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -131730,7 +275800,7 @@ "14:30", "15:20", "HQ 123 - Humanities Quadrangle 123", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -131751,7 +275821,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -131782,7 +275880,7 @@ "15:30", "16:20", "HQ 123 - Humanities Quadrangle 123", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -131803,7 +275901,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -131869,7 +275995,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -131907,7 +276061,7 @@ "13:30", "17:20", "CCAM 110 - Center for Collab Arts & Media 110", - "https:\/\/map.yale.edu\/?id=1910#!m\/560098" + "https://map.yale.edu/?id=1910#!m/560098" ] ] }, @@ -131921,10 +276075,99 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88210\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88210/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987812638282776, + 0.9988564252853394, + 0.9987610578536987, + 0.9989145994186401 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988847374916077, + 0.998873770236969, + 0.9865996837615967, + 0.9989172220230103 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988565444946289, + 0.998927652835846, + 0.9910072684288025, + 0.997117280960083 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 12 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -131962,7 +276205,7 @@ "13:30", "17:20", "EDG36 023 - 36 Edgewood Ave. Sculpture Bld 023", - "https:\/\/map.yale.edu\/?id=1910#!m\/560028" + "https://map.yale.edu/?id=1910#!m/560028" ] ] }, @@ -131976,10 +276219,87 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89528\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89528/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988765120506287, + 0.998784601688385 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989383816719055, + 0.9989323019981384 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988948702812195, + 0.9989196062088013 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 6 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -132021,7 +276341,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -132065,7 +276413,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -132109,7 +276485,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -132151,7 +276555,7 @@ "10:30", "11:20", "WLH 119 - William L. Harkness Hall 119", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -132159,7 +276563,7 @@ "10:30", "11:20", "WLH 119 - William L. Harkness Hall 119", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -132169,7 +276573,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -132177,10 +276581,131 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89998\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89998/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987189769744873, + 0.9988607168197632, + 0.9985671043395996, + 0.9986383318901062, + 0.9988172650337219, + 0.9988409876823425, + 0.9988889098167419 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988678693771362, + 0.9988924860954285, + 0.9981393814086914, + 0.9983080625534058, + 0.9994785189628601, + 0.998812198638916, + 0.9988958835601807, + 0.9981482028961182, + 0.9988400340080261 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989197254180908, + 0.9954397678375244, + 0.9989020824432373, + 0.9989036321640015, + 0.99472576379776, + 0.999492883682251, + 0.9989197254180908, + 0.9988096952438354, + 0.9989226460456848, + 0.9988836646080017, + 0.9970128536224365 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9090909090909091 + ] + }, + "final_label": "POSITIVE", + "final_count": 23, + "final_proportion": 0.8518518518518519, + "final_counts": { + "POSITIVE": 23, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.8518518518518519, + "NEGATIVE": 0.14814814814814814 + } + } }, { "season_code": "202303", @@ -132213,7 +276738,7 @@ "16:00", "16:50", "WTS A68 - Watson Center 60 Sachem Street A68", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -132223,7 +276748,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -132234,7 +276759,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -132267,7 +276820,7 @@ "16:00", "16:50", "HQ C15 - Humanities Quadrangle C15", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -132277,7 +276830,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -132288,7 +276841,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -132321,7 +276902,7 @@ "13:30", "14:20", "WTS B52 - Watson Center 60 Sachem Street B52", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -132331,7 +276912,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -132342,7 +276923,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -132375,7 +276984,7 @@ "13:30", "14:20", "WTS B30 - Watson Center 60 Sachem Street B30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -132385,7 +276994,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -132396,7 +277005,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -132429,7 +277066,7 @@ "15:30", "16:20", "LC 204 - Linsly-Chittenden Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -132439,7 +277076,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC GLBL: Addtl Methods Course" ], @@ -132451,7 +277088,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -132484,7 +277149,7 @@ "16:30", "17:20", "LC 204 - Linsly-Chittenden Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -132494,7 +277159,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC GLBL: Addtl Methods Course" ], @@ -132506,7 +277171,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -132543,7 +277236,7 @@ "13:30", "15:20", "SML 120C - Sterling Memorial Library 120C", - "https:\/\/map.yale.edu\/?id=1910#!m\/563698" + "https://map.yale.edu/?id=1910#!m/563698" ] ] }, @@ -132561,10 +277254,97 @@ "classnotes": "REGISTRATION NOTES \nPlease read the syllabus for instructions. \nIn the Instructor Permission message, briefly state your area of interest.\nIf you need more space to describe your proposal, please email me: camille.thomasson@yale.edu. Write \u201cMovie Memory Project\u201d in the heading.\n", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90344\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90344/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985437393188477, + 0.9986787438392639, + 0.99886155128479, + 0.9987390637397766 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989073276519775, + 0.9986696243286133, + 0.9988963603973389 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989156723022461, + 0.9982978701591492, + 0.9989191293716431, + 0.9989176988601685 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 11 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -132596,7 +277376,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC EP&E Economics Core", "YC EP&E: Advanced Seminar" @@ -132609,7 +277389,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -132656,7 +277464,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -132699,10 +277535,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89099\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89099/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -132740,7 +277604,7 @@ "11:35", "12:25", "HQ L01 - Humanities Quadrangle L01", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -132748,7 +277612,7 @@ "11:35", "12:25", "HQ L01 - Humanities Quadrangle L01", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Tuesday": [ @@ -132756,7 +277620,7 @@ "19:00", "22:00", "HQ L02 - Humanities Quadrangle L02", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -132772,10 +277636,151 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88267\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88267/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988619089126587, + 0.9986670017242432, + 0.9988223910331726, + 0.9989142417907715, + 0.9989191293716431, + 0.9959142804145813, + 0.9987924098968506, + 0.9989334940910339, + 0.9986922144889832, + 0.998903751373291, + 0.9983952641487122, + 0.9989051818847656, + 0.9988734126091003 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982823133468628, + 0.9988613128662109, + 0.998923122882843, + 0.9989179372787476, + 0.9987800717353821, + 0.9987646341323853, + 0.9994970560073853, + 0.9987301230430603, + 0.9876741766929626, + 0.9989331364631653, + 0.9988270401954651 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8181818181818182, + "NEGATIVE": 0.18181818181818182 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8181818181818182 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989234805107117, + 0.9936182498931885, + 0.9989390969276428, + 0.9988886713981628, + 0.998924195766449, + 0.9988371729850769, + 0.9988738894462585, + 0.9989086389541626, + 0.9989196062088013, + 0.9957998394966125, + 0.9985685348510742, + 0.9988759160041809, + 0.9977092742919922 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 35, + "final_proportion": 0.9459459459459459, + "final_counts": { + "POSITIVE": 35, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9459459459459459, + "NEGATIVE": 0.05405405405405406 + } + } }, { "season_code": "202303", @@ -132807,7 +277812,7 @@ "11:35", "12:25", "HQ 123 - Humanities Quadrangle 123", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -132826,7 +277831,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -132858,7 +277891,7 @@ "10:30", "11:20", "HQ 113 - Humanities Quadrangle 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -132877,7 +277910,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -132909,7 +277970,7 @@ "10:30", "11:20", "WALL81 101 - 81 Wall Street 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -132928,7 +277989,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -132960,7 +278049,7 @@ "14:30", "15:20", "YK220 100 - 220 York Street 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ] }, @@ -132979,7 +278068,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -133011,7 +278128,7 @@ "16:30", "17:20", "HQ 127 - Humanities Quadrangle 127", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -133030,7 +278147,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -133071,7 +278216,7 @@ "18:00", "20:00", "HQ L01 - Humanities Quadrangle L01", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -133079,7 +278224,7 @@ "9:25", "11:15", "HQ 109 - Humanities Quadrangle 109", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -133095,10 +278240,99 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89058\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89058/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988817572593689, + 0.9989174604415894, + 0.9986761212348938, + 0.9989038705825806 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9972802400588989, + 0.9986962676048279, + 0.9988734126091003 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989151954650879, + 0.9989027976989746, + 0.997117280960083, + 0.9988980293273926 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 0.9090909090909091, + "final_counts": { + "POSITIVE": 10, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + } + } }, { "season_code": "202303", @@ -133141,7 +278375,7 @@ "19:00", "22:00", "HQ L02 - Humanities Quadrangle L02", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -133149,7 +278383,7 @@ "19:00", "20:50", "PH 207 - Phelps Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -133165,10 +278399,91 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90200\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90200/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988154172897339, + 0.998854398727417 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9859976768493652, + 0.9980385899543762, + 0.9989142417907715 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9908983111381531, + 0.9986674785614014 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 1 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "final_label": "POSITIVE", + "final_count": 5, + "final_proportion": 0.7142857142857143, + "final_counts": { + "POSITIVE": 5, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.7142857142857143, + "NEGATIVE": 0.2857142857142857 + } + } }, { "season_code": "202303", @@ -133207,7 +278522,7 @@ "13:30", "15:20", "RKZ 241 - Rosenkranz Hall 241", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -133221,10 +278536,81 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88481\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88481/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988154172897339 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.998902440071106 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989281296730042 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 3, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 3 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -133261,7 +278647,7 @@ "13:30", "15:20", "HQ 109 - Humanities Quadrangle 109", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -133275,10 +278661,85 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88274\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88274/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984132051467896, + 0.9987472295761108 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9893258810043335 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988924860954285, + 0.9989207983016968 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 5, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 5 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -133319,7 +278780,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -133362,7 +278851,7 @@ "13:00", "14:15", "HQ C11 - Humanities Quadrangle C11", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -133370,7 +278859,7 @@ "13:00", "14:15", "HQ C11 - Humanities Quadrangle C11", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -133384,10 +278873,123 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89006\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89006/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988124370574951, + 0.9988865256309509, + 0.9989105463027954, + 0.9988695979118347, + 0.9984996318817139, + 0.9989117383956909, + 0.9988561868667603 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989283680915833, + 0.9989339709281921, + 0.9989217519760132, + 0.9989386200904846, + 0.9989239573478699, + 0.9989343285560608, + 0.9989400506019592 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988386034965515, + 0.998931348323822, + 0.9989206790924072, + 0.99875807762146, + 0.9989272952079773, + 0.9989187717437744, + 0.9989375472068787, + 0.9989213943481445, + 0.9988805651664734, + 0.9989261031150818 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 24, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 24 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -133428,7 +279030,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -133465,7 +279095,7 @@ "13:00", "17:00", "HQ 123 - Humanities Quadrangle 123", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -133481,10 +279111,87 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89497\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89497/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989110231399536, + 0.9988523721694946 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987970590591431, + 0.9987851977348328 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988645315170288, + 0.998796820640564 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 6 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -133527,7 +279234,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -133568,7 +279303,7 @@ "19:00", "22:00", "HQ 109 - Humanities Quadrangle 109", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Tuesday": [ @@ -133576,7 +279311,7 @@ "13:30", "15:20", "", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -133592,10 +279327,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88283\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88283/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -133636,7 +279399,7 @@ "19:00", "22:00", "LC 101 - Linsly-Chittenden Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Tuesday": [ @@ -133644,7 +279407,7 @@ "15:30", "17:20", "HQ 127 - Humanities Quadrangle 127", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -133664,10 +279427,97 @@ "classnotes": "Graduate students should contact charles.musser@yale.edu prior to registration.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89300\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89300/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989018440246582, + 0.9989114999771118 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9991810917854309, + 0.9989157915115356, + 0.9976010918617249, + 0.9978734254837036 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.25, + "POSITIVE": 0.75 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9954452514648438, + 0.998931348323822, + 0.9863911867141724, + 0.9985030889511108 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 0.9, + "final_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + } + } }, { "season_code": "202303", @@ -133710,7 +279560,7 @@ "19:00", "22:00", "LC 101 - Linsly-Chittenden Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -133718,7 +279568,7 @@ "15:30", "18:20", "CCAM 110 - Center for Collab Arts & Media 110", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -133733,17 +279583,88 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88288\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88288/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981396198272705 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986857771873474 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9978218078613281 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 3, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 3 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", "requirements": "", - "description": "We start from the assumption that sound is actually the \u2018secret-sauce\u2019 in the film\/videomaking process. Often overlooked\u2013or at least neglected, sound is a potent tool to advance the logic of a film or video and even more, to enhance the emotional patina and immersive engagement of a film or video. Sound becomes an accessible portal to the perhaps overlooked not-quite-conscious realm of the film\/video experience. While we certainly read some theory\/history of sound, this is primarily a class of making. The first 7 weeks include videomaking exercises designed to highlight specific challenges in sound for picture. The core concern is with conceptual development in the myriad ways that sound and picture work together. There is no genre or mode preference in this class. Fiction, non-fiction, experimental, animation, game, tiktok, anything is okay. For the second half of the semester, each student (or collaborative small group\u2013with permission) design, shoot, edit, and mix a short (3-5min) video of their own design\u2013a video that demonstrates attention and developing sophistication in the use of sound with picture, as well as in how to design visual shots and temporal structures (editing) with sound in mind. The visual and auditory aspects of any video are entangled in such a way that contribute (when blended with the audience\u2019s imagination and memory) to the formation of the Sound\/Image in the audience member\u2019s minds.", - "short_title": "Sound\/Image Practice", - "title": "Sound\/Image Practice", + "description": "We start from the assumption that sound is actually the \u2018secret-sauce\u2019 in the film/videomaking process. Often overlooked\u2013or at least neglected, sound is a potent tool to advance the logic of a film or video and even more, to enhance the emotional patina and immersive engagement of a film or video. Sound becomes an accessible portal to the perhaps overlooked not-quite-conscious realm of the film/video experience. While we certainly read some theory/history of sound, this is primarily a class of making. The first 7 weeks include videomaking exercises designed to highlight specific challenges in sound for picture. The core concern is with conceptual development in the myriad ways that sound and picture work together. There is no genre or mode preference in this class. Fiction, non-fiction, experimental, animation, game, tiktok, anything is okay. For the second half of the semester, each student (or collaborative small group\u2013with permission) design, shoot, edit, and mix a short (3-5min) video of their own design\u2013a video that demonstrates attention and developing sophistication in the use of sound with picture, as well as in how to design visual shots and temporal structures (editing) with sound in mind. The visual and auditory aspects of any video are entangled in such a way that contribute (when blended with the audience\u2019s imagination and memory) to the formation of the Sound/Image in the audience member\u2019s minds.", + "short_title": "Sound/Image Practice", + "title": "Sound/Image Practice", "school": "YC", "credits": 1.0, "extra_info": "ACTIVE", @@ -133773,7 +279694,7 @@ "13:00", "17:00", "CCAM 103 - Center for Collab Arts & Media 103", - "https:\/\/map.yale.edu\/?id=1910#!m\/560098" + "https://map.yale.edu/?id=1910#!m/560098" ] ] }, @@ -133787,10 +279708,99 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90501\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90501/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988788962364197, + 0.9986960291862488, + 0.9989000558853149, + 0.9988523721694946 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9980521202087402, + 0.99866783618927, + 0.9988622665405273, + 0.9988307356834412 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983237385749817, + 0.9988670349121094, + 0.9987928867340088, + 0.9988910555839539 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 12 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -133827,7 +279837,7 @@ "19:00", "22:00", "LORIA 250 - Loria Center 250", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ], "Wednesday": [ @@ -133835,7 +279845,7 @@ "13:30", "15:20", "LORIA B51 - Loria Center B51", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -133853,10 +279863,111 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89014\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89014/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9979760050773621, + 0.9988892674446106, + 0.9989107847213745, + 0.9988415837287903, + 0.9864137172698975, + 0.9988492727279663 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989138841629028, + 0.9988264441490173, + 0.998885452747345, + 0.998836100101471, + 0.9988928437232971, + 0.9973452687263489 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998531699180603, + 0.9988245368003845, + 0.9983678460121155, + 0.9989058971405029, + 0.9987754225730896, + 0.9987545013427734 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 18 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -133899,7 +280010,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -133942,7 +280081,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -133980,7 +280147,7 @@ "8:25", "12:20", "CCAM 102 - Center for Collab Arts & Media 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/560098" + "https://map.yale.edu/?id=1910#!m/560098" ] ] }, @@ -133994,10 +280161,81 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88215\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88215/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9944254159927368 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.998830258846283 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9968685507774353 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 3, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 3 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -134034,7 +280272,7 @@ "15:30", "17:20", "HQ 109 - Humanities Quadrangle 109", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -134048,10 +280286,38 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88293\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88293/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -134096,7 +280362,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -134141,7 +280435,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -134180,13 +280502,13 @@ "9:25", "11:15", "HQ 109 - Humanities Quadrangle 109", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ], [ "19:00", "22:00", "HQ L01 - Humanities Quadrangle L01", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -134198,10 +280520,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90330\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90330/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -134244,15 +280594,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88310\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88310/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "This is the first section of a year-long seminar (second section: CPLT 914) designed to introduce the discipline of psychoanalysis through primary sources, mainly from the Freudian and Lacanian corpuses but including late twentieth-century commentators and contemporary interdisciplinary conversations. We rigorously examine key psychoanalytic concepts that students have heard about but never had the chance to study. Students gain proficiency in what has been called \"the language of psychoanalysis,\" as well as tools for critical practice in disciplines such as literary criticism, political theory, film studies, gender studies, theory of ideology, psychology medical humanities, etc. We study concepts such as the unconscious, identification, the drive, repetition, the imaginary, fantasy, the symbolic, the real, and jouissance. A central goal of the seminar is to disambiguate Freud's corpus from Lacan's reinvention of it. We do not come to the \"rescue\" of Freud. We revisit essays that are relevant for contemporary conversations within the international psychoanalytic community. We include only a handful of materials from the Anglophone schools of psychoanalysis developed in England and the US. This section pays special attention to Freud's \"three\" (the ego, superego, and id) in comparison to Lacan's \"three\" (the imaginary, the symbolic, and the real). CPLT 914 devotes, depending on the interests expressed by the group, the last six weeks to special psychoanalytic topics such as sexuation, perversion, psychosis, anti-asylum movements, conversations between psychoanalysis and neurosciences and artificial intelligence, the current pharmacological model of mental health, and\/or to specific uses of psychoanalysis in disciplines such as film theory, political philosophy, and the critique of ideology. Apart from Freud and Lacan, we will read work by Georges Canguilhem, Roman Jakobson, Victor Tausk, \u00c9mile Benveniste, Valentin Volosinov, Guy Le Gaufey, Jean Laplanche, \u00c9tienne Balibar, Roberto Esposito, Wilfred Bion, F\u00e9lix Guattari, Markos Zafiropoulos, Franco Bifo Berardi, Barbara Cassin, Renata Salecl, Maurice Godelier, Alenka Zupan\u010di\u010d, Juliet Mitchell, Jacqueline Rose, Norbert Wiener, Alan Turing, Eric Kandel, and Lera Boroditsky among others.\u00a0No previous knowledge of psychoanalysis is needed. Starting out from basic questions, we study how psychoanalysis, arguably, changed the way we think of human subjectivity. Graduate students from all departments and schools on campus are welcome. The final assignment is due by the end of the spring term and need not necessarily take the form of a twenty-page paper. Taught in English. Materials can be provided to cover the linguistic range of the group.", + "description": "This is the first section of a year-long seminar (second section: CPLT 914) designed to introduce the discipline of psychoanalysis through primary sources, mainly from the Freudian and Lacanian corpuses but including late twentieth-century commentators and contemporary interdisciplinary conversations. We rigorously examine key psychoanalytic concepts that students have heard about but never had the chance to study. Students gain proficiency in what has been called \"the language of psychoanalysis,\" as well as tools for critical practice in disciplines such as literary criticism, political theory, film studies, gender studies, theory of ideology, psychology medical humanities, etc. We study concepts such as the unconscious, identification, the drive, repetition, the imaginary, fantasy, the symbolic, the real, and jouissance. A central goal of the seminar is to disambiguate Freud's corpus from Lacan's reinvention of it. We do not come to the \"rescue\" of Freud. We revisit essays that are relevant for contemporary conversations within the international psychoanalytic community. We include only a handful of materials from the Anglophone schools of psychoanalysis developed in England and the US. This section pays special attention to Freud's \"three\" (the ego, superego, and id) in comparison to Lacan's \"three\" (the imaginary, the symbolic, and the real). CPLT 914 devotes, depending on the interests expressed by the group, the last six weeks to special psychoanalytic topics such as sexuation, perversion, psychosis, anti-asylum movements, conversations between psychoanalysis and neurosciences and artificial intelligence, the current pharmacological model of mental health, and/or to specific uses of psychoanalysis in disciplines such as film theory, political philosophy, and the critique of ideology. Apart from Freud and Lacan, we will read work by Georges Canguilhem, Roman Jakobson, Victor Tausk, \u00c9mile Benveniste, Valentin Volosinov, Guy Le Gaufey, Jean Laplanche, \u00c9tienne Balibar, Roberto Esposito, Wilfred Bion, F\u00e9lix Guattari, Markos Zafiropoulos, Franco Bifo Berardi, Barbara Cassin, Renata Salecl, Maurice Godelier, Alenka Zupan\u010di\u010d, Juliet Mitchell, Jacqueline Rose, Norbert Wiener, Alan Turing, Eric Kandel, and Lera Boroditsky among others.\u00a0No previous knowledge of psychoanalysis is needed. Starting out from basic questions, we study how psychoanalysis, arguably, changed the way we think of human subjectivity. Graduate students from all departments and schools on campus are welcome. The final assignment is due by the end of the spring term and need not necessarily take the form of a twenty-page paper. Taught in English. Materials can be provided to cover the linguistic range of the group.", "short_title": "Psychoanalysis: Key Conceptua...", "title": "Psychoanalysis: Key Conceptual Differences between Freud and Lacan I", "school": "GS", @@ -134288,7 +280666,7 @@ "19:00", "20:50", "PH 207 - Phelps Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -134300,10 +280678,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89105\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89105/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -134346,7 +280752,7 @@ "19:00", "22:00", "LC 101 - Linsly-Chittenden Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -134354,7 +280760,7 @@ "15:30", "18:20", "CCAM 110 - Center for Collab Arts & Media 110", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -134366,10 +280772,81 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88288\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88288/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981396198272705 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986857771873474 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9978218078613281 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 3, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 3 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -134410,7 +280887,7 @@ "18:00", "20:00", "HQ L01 - Humanities Quadrangle L01", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -134418,7 +280895,7 @@ "9:25", "11:15", "HQ 109 - Humanities Quadrangle 109", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -134430,10 +280907,99 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89058\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89058/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988817572593689, + 0.9989174604415894, + 0.9986761212348938, + 0.9989038705825806 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9972802400588989, + 0.9986962676048279, + 0.9988734126091003 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989151954650879, + 0.9989027976989746, + 0.997117280960083, + 0.9988980293273926 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 0.9090909090909091, + "final_counts": { + "POSITIVE": 10, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + } + } }, { "season_code": "202303", @@ -134471,7 +281037,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -134512,7 +281106,7 @@ "19:00", "22:00", "LC 101 - Linsly-Chittenden Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Tuesday": [ @@ -134520,7 +281114,7 @@ "15:30", "17:20", "HQ 127 - Humanities Quadrangle 127", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -134532,10 +281126,97 @@ "classnotes": "Graduate students should contact charles.musser@yale.edu prior to registration.", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89300\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89300/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989018440246582, + 0.9989114999771118 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9991810917854309, + 0.9989157915115356, + 0.9976010918617249, + 0.9978734254837036 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.25, + "POSITIVE": 0.75 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9954452514648438, + 0.998931348323822, + 0.9863911867141724, + 0.9985030889511108 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 0.9, + "final_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + } + } }, { "season_code": "202303", @@ -134573,7 +281254,7 @@ "14:00", "15:50", "RDH 322 - Rudolph Hall 322", - "https:\/\/map.yale.edu\/?id=1910#!m\/559534" + "https://map.yale.edu/?id=1910#!m/559534" ] ] }, @@ -134582,13 +281263,41 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Architecture courses will be open for registration on August 25 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. \n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https:\/\/www.architecture.yale.edu\/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on the YaleHub link: https:\/\/yub.yale.edu\/. ", + "classnotes": "Architecture courses will be open for registration on August 25 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. \n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https://www.architecture.yale.edu/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on the YaleHub link: https://yub.yale.edu/. ", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88318\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88318/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -134629,7 +281338,7 @@ "19:00", "22:00", "HQ 109 - Humanities Quadrangle 109", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Tuesday": [ @@ -134637,7 +281346,7 @@ "13:30", "15:20", "", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -134649,10 +281358,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88283\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88283/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -134690,7 +281427,7 @@ "15:30", "17:20", "SML 207 - Sterling Memorial Library 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/563698" + "https://map.yale.edu/?id=1910#!m/563698" ] ] }, @@ -134702,10 +281439,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89326\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89326/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -134742,7 +281486,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -134779,7 +281551,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -134816,7 +281616,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -134872,7 +281700,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -134910,7 +281766,7 @@ "13:00", "14:15", "WLH 003 - William L. Harkness Hall 003", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -134918,7 +281774,7 @@ "13:00", "14:15", "WLH 003 - William L. Harkness Hall 003", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -134934,10 +281790,93 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89766\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89766/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988564252853394, + 0.9989172220230103, + 0.9988217949867249 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989081621170044, + 0.9989141225814819, + 0.9988840222358704 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989050626754761, + 0.9989169836044312, + 0.9988502264022827 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 9 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -134974,7 +281913,7 @@ "15:30", "17:20", "HQ C11 - Humanities Quadrangle C11", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -134988,10 +281927,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91171\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91171/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -135028,7 +281995,7 @@ "8:20", "9:10", "HQ 209 - Humanities Quadrangle 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Tuesday": [ @@ -135036,7 +282003,7 @@ "8:20", "9:10", "HQ 209 - Humanities Quadrangle 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -135044,7 +282011,7 @@ "8:20", "9:10", "HQ 209 - Humanities Quadrangle 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -135052,7 +282019,7 @@ "8:20", "9:10", "HQ 209 - Humanities Quadrangle 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Friday": [ @@ -135060,7 +282027,7 @@ "8:20", "9:10", "HQ 209 - Humanities Quadrangle 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -135076,10 +282043,105 @@ "classnotes": "In order to be considered for this course, please provide the score and date of your Yale French Placement Test. ", "final_exam": "Friday, December 15, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89787\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89787/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.996467113494873, + 0.9986783862113953, + 0.9988539218902588, + 0.9981030225753784, + 0.9988754391670227 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988265633583069, + 0.9988768696784973, + 0.9983178377151489, + 0.9988376498222351 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9855149984359741, + 0.9980582594871521, + 0.9988478422164917, + 0.9980016350746155, + 0.9989080429077148 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.4, + "POSITIVE": 0.6 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 0.7857142857142857, + "final_counts": { + "POSITIVE": 11, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.7857142857142857, + "NEGATIVE": 0.21428571428571427 + } + } }, { "season_code": "202303", @@ -135116,7 +282178,7 @@ "9:25", "10:15", "LC 206 - Linsly-Chittenden Hall 206", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Tuesday": [ @@ -135124,7 +282186,7 @@ "9:25", "10:15", "LC 206 - Linsly-Chittenden Hall 206", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -135132,7 +282194,7 @@ "9:25", "10:15", "LC 206 - Linsly-Chittenden Hall 206", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -135140,7 +282202,7 @@ "9:25", "10:15", "LC 206 - Linsly-Chittenden Hall 206", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Friday": [ @@ -135148,7 +282210,7 @@ "9:25", "10:15", "LC 206 - Linsly-Chittenden Hall 206", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -135164,10 +282226,103 @@ "classnotes": "In order to be considered for this course, please provide the score and date of your Yale French Placement Test.", "final_exam": "Friday, December 15, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89788\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89788/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.99870765209198, + 0.9960045218467712, + 0.9988264441490173, + 0.9989181756973267, + 0.9921255707740784 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989140033721924, + 0.6495516896247864, + 0.998247504234314, + 0.9989196062088013 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988945126533508, + 0.9960378408432007, + 0.9979852437973022, + 0.9988691210746765, + 0.9986159801483154 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 14 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -135204,7 +282359,7 @@ "9:25", "10:15", "HQ 129 - Humanities Quadrangle 129", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -135212,7 +282367,7 @@ "9:25", "10:15", "HQ 129 - Humanities Quadrangle 129", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Friday": [ @@ -135220,7 +282375,7 @@ "9:25", "10:15", "HQ 129 - Humanities Quadrangle 129", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Monday": [ @@ -135228,7 +282383,7 @@ "9:25", "10:15", "HQ C01 - Humanities Quadrangle C01", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -135236,7 +282391,7 @@ "9:25", "10:15", "HQ C01 - Humanities Quadrangle C01", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -135252,10 +282407,85 @@ "classnotes": "In order to be considered for this course, please provide the score and date of your Yale French Placement Test.", "final_exam": "Friday, December 15, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89789\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89789/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987406134605408, + 0.9988177418708801 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984092116355896 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988837838172913, + 0.998816728591919 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 5, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 5 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -135292,7 +282522,7 @@ "10:30", "11:20", "LC 104 - Linsly-Chittenden Hall 104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Tuesday": [ @@ -135300,7 +282530,7 @@ "10:30", "11:20", "LC 104 - Linsly-Chittenden Hall 104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -135308,7 +282538,7 @@ "10:30", "11:20", "LC 104 - Linsly-Chittenden Hall 104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -135316,7 +282546,7 @@ "10:30", "11:20", "LC 104 - Linsly-Chittenden Hall 104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Friday": [ @@ -135324,7 +282554,7 @@ "10:30", "11:20", "LC 104 - Linsly-Chittenden Hall 104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -135340,10 +282570,103 @@ "classnotes": "In order to be considered for this course, please provide the score and date of your Yale French Placement Test.", "final_exam": "Friday, December 15, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89790\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89790/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9896221160888672, + 0.9975852966308594, + 0.989804744720459, + 0.9847168922424316 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.999300479888916, + 0.999383807182312, + 0.9982621073722839, + 0.9962628483772278, + 0.9942969679832458 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.4, + "POSITIVE": 0.6 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9956604838371277, + 0.997117280960083, + 0.9984660148620605, + 0.9988270401954651 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 0.8461538461538461, + "final_counts": { + "POSITIVE": 11, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8461538461538461, + "NEGATIVE": 0.15384615384615385 + } + } }, { "season_code": "202303", @@ -135380,7 +282703,7 @@ "10:30", "11:20", "LC 206 - Linsly-Chittenden Hall 206", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Tuesday": [ @@ -135388,7 +282711,7 @@ "10:30", "11:20", "LC 206 - Linsly-Chittenden Hall 206", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -135396,7 +282719,7 @@ "10:30", "11:20", "LC 206 - Linsly-Chittenden Hall 206", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -135404,7 +282727,7 @@ "10:30", "11:20", "LC 206 - Linsly-Chittenden Hall 206", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Friday": [ @@ -135412,7 +282735,7 @@ "10:30", "11:20", "LC 206 - Linsly-Chittenden Hall 206", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -135428,10 +282751,119 @@ "classnotes": "In order to be considered for this course, please provide the score and date of your Yale French Placement Test.", "final_exam": "Friday, December 15, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89791\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89791/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988614320755005, + 0.9987637996673584, + 0.9987266659736633, + 0.9946658611297607, + 0.9988731741905212, + 0.9988535642623901, + 0.9986798167228699 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989033937454224, + 0.9988998174667358, + 0.9986355900764465, + 0.9987818598747253, + 0.9989147186279297, + 0.9986773133277893, + 0.9995039701461792 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.7142857142857143, + "NEGATIVE": 0.2857142857142857 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7142857142857143 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987654685974121, + 0.9988228678703308, + 0.9989140033721924, + 0.9987571239471436, + 0.996731162071228, + 0.9988178610801697, + 0.9988815188407898 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 0.9047619047619048, + "final_counts": { + "POSITIVE": 19, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9047619047619048, + "NEGATIVE": 0.09523809523809523 + } + } }, { "season_code": "202303", @@ -135468,7 +282900,7 @@ "11:35", "12:25", "WLH 009 - William L. Harkness Hall 009", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Tuesday": [ @@ -135476,7 +282908,7 @@ "11:35", "12:25", "WLH 009 - William L. Harkness Hall 009", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -135484,7 +282916,7 @@ "11:35", "12:25", "WLH 009 - William L. Harkness Hall 009", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -135492,7 +282924,7 @@ "11:35", "12:25", "WLH 009 - William L. Harkness Hall 009", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Friday": [ @@ -135500,7 +282932,7 @@ "11:35", "12:25", "WLH 009 - William L. Harkness Hall 009", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -135516,10 +282948,93 @@ "classnotes": "In order to be considered for this course, please provide the score and date of your Yale French Placement Test.", "final_exam": "Friday, December 15, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89792\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89792/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988601207733154, + 0.9984678626060486 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9940863847732544, + 0.9978113770484924 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9995088577270508, + 0.9989172220230103, + 0.9990288019180298, + 0.9984760880470276 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 0.75, + "final_counts": { + "POSITIVE": 6, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + } + } }, { "season_code": "202303", @@ -135556,7 +283071,7 @@ "9:25", "10:15", "WLH 202 - William L. Harkness Hall 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Tuesday": [ @@ -135564,7 +283079,7 @@ "9:25", "10:15", "WLH 202 - William L. Harkness Hall 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -135572,7 +283087,7 @@ "9:25", "10:15", "WLH 202 - William L. Harkness Hall 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -135580,7 +283095,7 @@ "9:25", "10:15", "WLH 202 - William L. Harkness Hall 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Friday": [ @@ -135588,7 +283103,7 @@ "9:25", "10:15", "WLH 202 - William L. Harkness Hall 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -135604,10 +283119,115 @@ "classnotes": "In order to be considered for this course, please provide the score and date of your Yale French Placement Test.", "final_exam": "Friday, December 15, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89758\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89758/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988433122634888, + 0.9989124536514282, + 0.9988769888877869, + 0.9988182187080383, + 0.9989181756973267, + 0.9988685846328735, + 0.9988700747489929 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989207983016968, + 0.9987384676933289, + 0.9955363273620605, + 0.9989047050476074, + 0.9989230036735535, + 0.9988840222358704 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989142417907715, + 0.9988516569137573, + 0.9982553124427795, + 0.9989331364631653, + 0.9988976716995239, + 0.9989047050476074, + 0.9989351630210876 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 20 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -135644,7 +283264,7 @@ "10:30", "11:20", "WLH 202 - William L. Harkness Hall 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Tuesday": [ @@ -135652,7 +283272,7 @@ "10:30", "11:20", "WLH 202 - William L. Harkness Hall 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -135660,7 +283280,7 @@ "10:30", "11:20", "WLH 202 - William L. Harkness Hall 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -135668,7 +283288,7 @@ "10:30", "11:20", "WLH 202 - William L. Harkness Hall 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Friday": [ @@ -135676,7 +283296,7 @@ "10:30", "11:20", "WLH 202 - William L. Harkness Hall 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -135692,10 +283312,105 @@ "classnotes": "In order to be considered for this course, please provide the score and date of your Yale French Placement Test.", "final_exam": "Friday, December 15, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89793\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89793/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985978007316589, + 0.9986575841903687, + 0.9988648891448975, + 0.9983211159706116, + 0.9988225102424622 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.99887615442276, + 0.9995026588439941, + 0.998869001865387, + 0.9976614713668823 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986749291419983, + 0.9988477230072021, + 0.9986774325370789, + 0.9989194869995117, + 0.9989184141159058 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 0.9285714285714286, + "final_counts": { + "POSITIVE": 13, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9285714285714286, + "NEGATIVE": 0.07142857142857142 + } + } }, { "season_code": "202303", @@ -135732,7 +283447,7 @@ "9:25", "11:15", "HQ 227 - Humanities Quadrangle 227", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Tuesday": [ @@ -135740,7 +283455,7 @@ "9:25", "11:15", "HQ 227 - Humanities Quadrangle 227", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -135748,7 +283463,7 @@ "9:25", "11:15", "HQ 227 - Humanities Quadrangle 227", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -135756,7 +283471,7 @@ "9:25", "11:15", "HQ 227 - Humanities Quadrangle 227", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Friday": [ @@ -135764,7 +283479,7 @@ "9:25", "11:15", "HQ 227 - Humanities Quadrangle 227", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -135779,10 +283494,87 @@ "classnotes": "In order to be considered for this course, please provide the score and date of your Yale French Placement Test.", "final_exam": "Friday, December 15, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89779\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89779/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988968372344971, + 0.9396949410438538 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989292025566101, + 0.9989117383956909 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989338517189026, + 0.9988706707954407 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 6 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -135819,7 +283611,7 @@ "9:25", "10:15", "LUCE 102 - Luce Hall 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ], "Tuesday": [ @@ -135827,7 +283619,7 @@ "9:25", "10:15", "LUCE 102 - Luce Hall 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ], "Wednesday": [ @@ -135835,7 +283627,7 @@ "9:25", "10:15", "LUCE 102 - Luce Hall 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ], "Thursday": [ @@ -135843,7 +283635,7 @@ "9:25", "10:15", "LUCE 102 - Luce Hall 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ], "Friday": [ @@ -135851,7 +283643,7 @@ "9:25", "10:15", "LUCE 102 - Luce Hall 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ] }, @@ -135865,10 +283657,111 @@ "classnotes": "In order to be considered for this course, please provide the score and date of your Yale French Placement Test.", "final_exam": "Friday, December 15, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89794\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89794/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988409876823425, + 0.9986758828163147, + 0.9988002777099609, + 0.9984443783760071, + 0.998853325843811, + 0.9989149570465088 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9959554672241211, + 0.9989306330680847, + 0.9987132549285889, + 0.9982317090034485, + 0.9988380074501038, + 0.9984676241874695 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9995006322860718, + 0.998931348323822, + 0.9989117383956909, + 0.9985039234161377, + 0.998908519744873 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 4 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2, + "POSITIVE": 0.8 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 0.8823529411764706, + "final_counts": { + "POSITIVE": 15, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8823529411764706, + "NEGATIVE": 0.11764705882352941 + } + } }, { "season_code": "202303", @@ -135905,7 +283798,7 @@ "9:25", "10:15", "WLH 006 - William L. Harkness Hall 006", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Tuesday": [ @@ -135913,7 +283806,7 @@ "9:25", "10:15", "WLH 006 - William L. Harkness Hall 006", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -135921,7 +283814,7 @@ "9:25", "10:15", "WLH 006 - William L. Harkness Hall 006", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -135929,7 +283822,7 @@ "9:25", "10:15", "WLH 006 - William L. Harkness Hall 006", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Friday": [ @@ -135937,7 +283830,7 @@ "9:25", "10:15", "WLH 006 - William L. Harkness Hall 006", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -135951,10 +283844,113 @@ "classnotes": "In order to be considered for this course, please provide the score and date of your Yale French Placement Test.", "final_exam": "Friday, December 15, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89795\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89795/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989210367202759, + 0.9989054203033447, + 0.9987248778343201, + 0.9988870024681091, + 0.9979115128517151, + 0.9988440275192261 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988641738891602, + 0.9976149797439575, + 0.9986312985420227, + 0.9989284873008728, + 0.9949554800987244, + 0.9981420040130615 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988293051719666, + 0.9989293217658997, + 0.9911366701126099, + 0.9989365935325623, + 0.9962544441223145, + 0.9384879469871521 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 0.9444444444444444, + "final_counts": { + "POSITIVE": 17, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9444444444444444, + "NEGATIVE": 0.05555555555555555 + } + } }, { "season_code": "202303", @@ -135991,7 +283987,7 @@ "10:30", "11:20", "LC 318 - Linsly-Chittenden Hall 318", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Tuesday": [ @@ -135999,7 +283995,7 @@ "10:30", "11:20", "LC 318 - Linsly-Chittenden Hall 318", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -136007,7 +284003,7 @@ "10:30", "11:20", "LC 318 - Linsly-Chittenden Hall 318", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -136015,7 +284011,7 @@ "10:30", "11:20", "LC 318 - Linsly-Chittenden Hall 318", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Friday": [ @@ -136023,7 +284019,7 @@ "10:30", "11:20", "LC 318 - Linsly-Chittenden Hall 318", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -136037,10 +284033,103 @@ "classnotes": "In order to be considered for this course, please provide the score and date of your Yale French Placement Test.", "final_exam": "Friday, December 15, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89796\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89796/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9978323578834534, + 0.9994953870773315, + 0.9985277652740479, + 0.9988903403282166, + 0.9986146688461304 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985163807868958, + 0.9995123147964478, + 0.9981990456581116, + 0.9983798265457153 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994200468063354, + 0.9994995594024658, + 0.9985849857330322, + 0.9935438632965088 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "final_label": "POSITIVE", + "final_count": 8, + "final_proportion": 0.6153846153846154, + "final_counts": { + "POSITIVE": 8, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.6153846153846154, + "NEGATIVE": 0.38461538461538464 + } + } }, { "season_code": "202303", @@ -136077,7 +284166,7 @@ "10:30", "11:20", "LC 203 - Linsly-Chittenden Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Tuesday": [ @@ -136085,7 +284174,7 @@ "10:30", "11:20", "LC 203 - Linsly-Chittenden Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -136093,7 +284182,7 @@ "10:30", "11:20", "LC 203 - Linsly-Chittenden Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -136101,7 +284190,7 @@ "10:30", "11:20", "LC 203 - Linsly-Chittenden Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Friday": [ @@ -136109,7 +284198,7 @@ "10:30", "11:20", "LC 203 - Linsly-Chittenden Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -136123,10 +284212,139 @@ "classnotes": "In order to be considered for this course, please provide the score and date of your Yale French Placement Test.", "final_exam": "Friday, December 15, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89797\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89797/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987185001373291, + 0.9987621307373047, + 0.9989070892333984, + 0.9988356232643127, + 0.9988632202148438, + 0.9988663196563721, + 0.9986341595649719, + 0.9987004995346069, + 0.9988783001899719, + 0.998907208442688 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9995044469833374, + 0.9980156421661377, + 0.9989288449287415, + 0.9985585808753967, + 0.9989174604415894, + 0.9989314675331116, + 0.9994968175888062, + 0.7622825503349304, + 0.99874347448349, + 0.9988629817962646 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 8 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2, + "POSITIVE": 0.8 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9952095150947571, + 0.9985142350196838, + 0.9966357350349426, + 0.999329686164856, + 0.9987351298332214, + 0.9989330172538757, + 0.9994937181472778, + 0.9986452460289001, + 0.9988258481025696, + 0.9989355206489563, + 0.9988064765930176 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 8 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2727272727272727, + "POSITIVE": 0.7272727272727273 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7272727272727273 + ] + }, + "final_label": "POSITIVE", + "final_count": 26, + "final_proportion": 0.8387096774193549, + "final_counts": { + "POSITIVE": 26, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.8387096774193549, + "NEGATIVE": 0.16129032258064516 + } + } }, { "season_code": "202303", @@ -136163,7 +284381,7 @@ "11:35", "12:25", "LC 318 - Linsly-Chittenden Hall 318", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Tuesday": [ @@ -136171,7 +284389,7 @@ "11:35", "12:25", "LC 318 - Linsly-Chittenden Hall 318", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -136179,7 +284397,7 @@ "11:35", "12:25", "LC 318 - Linsly-Chittenden Hall 318", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -136187,7 +284405,7 @@ "11:35", "12:25", "LC 318 - Linsly-Chittenden Hall 318", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Friday": [ @@ -136195,7 +284413,7 @@ "11:35", "12:25", "LC 318 - Linsly-Chittenden Hall 318", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -136209,10 +284427,95 @@ "classnotes": "In order to be considered for this course, please provide the score and date of your Yale French Placement Test.", "final_exam": "Friday, December 15, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89798\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89798/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985443353652954, + 0.9989194869995117, + 0.9957987666130066 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9979369640350342, + 0.9986369013786316, + 0.9989086389541626 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9987325072288513, + 0.9987694621086121, + 0.9940534234046936 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 0.7777777777777778, + "final_counts": { + "POSITIVE": 7, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.7777777777777778, + "NEGATIVE": 0.2222222222222222 + } + } }, { "season_code": "202303", @@ -136249,7 +284552,7 @@ "9:25", "10:15", "LC 204 - Linsly-Chittenden Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Tuesday": [ @@ -136257,7 +284560,7 @@ "9:25", "10:15", "LC 204 - Linsly-Chittenden Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -136265,7 +284568,7 @@ "9:25", "10:15", "LC 204 - Linsly-Chittenden Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -136273,7 +284576,7 @@ "9:25", "10:15", "LC 204 - Linsly-Chittenden Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Friday": [ @@ -136281,7 +284584,7 @@ "9:25", "10:15", "LC 204 - Linsly-Chittenden Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -136297,10 +284600,95 @@ "classnotes": "In order to be considered for this course, please provide the score and date of your Yale French Placement Test.", "final_exam": "Friday, December 15, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89799\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89799/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984642267227173, + 0.9988316893577576, + 0.9989211559295654 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994381070137024, + 0.9979007244110107, + 0.9987345337867737 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994986057281494, + 0.9945695996284485, + 0.9988586902618408 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 0.7777777777777778, + "final_counts": { + "POSITIVE": 7, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.7777777777777778, + "NEGATIVE": 0.2222222222222222 + } + } }, { "season_code": "202303", @@ -136337,7 +284725,7 @@ "10:30", "11:20", "WLH 204 - William L. Harkness Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Tuesday": [ @@ -136345,7 +284733,7 @@ "10:30", "11:20", "WLH 204 - William L. Harkness Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -136353,7 +284741,7 @@ "10:30", "11:20", "WLH 204 - William L. Harkness Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -136361,7 +284749,7 @@ "10:30", "11:20", "WLH 204 - William L. Harkness Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Friday": [ @@ -136369,7 +284757,7 @@ "10:30", "11:20", "WLH 204 - William L. Harkness Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -136385,10 +284773,83 @@ "classnotes": "In order to be considered for this course, please provide the score and date of your Yale French Placement Test.", "final_exam": "Friday, December 15, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89802\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89802/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988881945610046 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9965658783912659 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 0 + }, + "sentiment_distribution": { + "NEGATIVE": 1.0, + "POSITIVE": 0.0 + }, + "sentiment_overall": [ + "NEGATIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989283680915833 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 2, + "final_proportion": 0.6666666666666666, + "final_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + } + } }, { "season_code": "202303", @@ -136425,7 +284886,7 @@ "10:30", "11:20", "LC 204 - Linsly-Chittenden Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Tuesday": [ @@ -136433,7 +284894,7 @@ "10:30", "11:20", "LC 204 - Linsly-Chittenden Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -136441,7 +284902,7 @@ "10:30", "11:20", "LC 204 - Linsly-Chittenden Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -136449,7 +284910,7 @@ "10:30", "11:20", "LC 204 - Linsly-Chittenden Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Friday": [ @@ -136457,7 +284918,7 @@ "10:30", "11:20", "LC 204 - Linsly-Chittenden Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -136471,10 +284932,105 @@ "classnotes": "In order to be considered for this course, please provide the score and date of your Yale French Placement Test.", "final_exam": "Friday, December 15, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89799\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89799/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9972559809684753, + 0.9988625049591064, + 0.9976485371589661, + 0.9986698627471924, + 0.9988939166069031 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9958384037017822, + 0.9989182949066162, + 0.9988082647323608, + 0.9988462924957275, + 0.9988693594932556 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.997117280960083, + 0.9988327622413635, + 0.9988553524017334, + 0.9987488985061646, + 0.9988685846328735 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 15 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -136511,7 +285067,7 @@ "11:35", "12:25", "WLH 204 - William L. Harkness Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Tuesday": [ @@ -136519,7 +285075,7 @@ "11:35", "12:25", "WLH 204 - William L. Harkness Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -136527,7 +285083,7 @@ "11:35", "12:25", "WLH 204 - William L. Harkness Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -136535,7 +285091,7 @@ "11:35", "12:25", "WLH 204 - William L. Harkness Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Friday": [ @@ -136543,7 +285099,7 @@ "11:35", "12:25", "WLH 204 - William L. Harkness Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -136557,14 +285113,103 @@ "classnotes": "In order to be considered for this course, please provide the score and date of your Yale French Placement Test.", "final_exam": "Friday, December 15, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89802\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89802/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "Conducted entirely in French. After FREN 140, 145, or a satisfactory placement test score.\u00a0 Online preregistration required; see http:\/\/french.yale.edu\/academics\/placement-and-registration for details.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987955093383789, + 0.9989049434661865, + 0.9989120960235596, + 0.9989087581634521 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986792206764221, + 0.9987840056419373, + 0.9905389547348022, + 0.9980769157409668 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981056451797485, + 0.998908519744873, + 0.9885780811309814, + 0.998432457447052 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 12 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } + }, + { + "season_code": "202303", + "requirements": "Conducted entirely in French. After FREN 140, 145, or a satisfactory placement test score.\u00a0 Online preregistration required; see http://french.yale.edu/academics/placement-and-registration for details.", "description": "An advanced language course intended to improve students' comprehension of spoken and written French as well as their speaking and writing skills. Modern fiction and nonfiction texts familiarize students with idiomatic French. Special attention to grammar review and vocabulary acquisition.", "short_title": "Advanced Language Practice", "title": "Advanced Language Practice", @@ -136597,7 +285242,7 @@ "9:25", "10:15", "LC 318 - Linsly-Chittenden Hall 318", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -136605,7 +285250,7 @@ "9:25", "10:15", "LC 318 - Linsly-Chittenden Hall 318", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Friday": [ @@ -136613,7 +285258,7 @@ "9:25", "10:15", "LC 318 - Linsly-Chittenden Hall 318", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -136629,14 +285274,145 @@ "classnotes": "In order to be considered for this course, please provide the score and date of your Yale French Placement Test.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89805\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "Conducted entirely in French. After FREN 140, 145, or a satisfactory placement test score.\u00a0 Online preregistration required; see http:\/\/french.yale.edu\/academics\/placement-and-registration for details.", + "syllabus_url": "https://yale.instructure.com/courses/89805/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985153079032898, + 0.9988930821418762, + 0.9987733960151672, + 0.9985439777374268, + 0.9987315535545349, + 0.99892657995224, + 0.998763918876648, + 0.9985228180885315, + 0.998868465423584, + 0.9988780617713928, + 0.997878909111023, + 0.9988638162612915 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9964249730110168, + 0.9988943934440613, + 0.9988436698913574, + 0.9988328814506531, + 0.998304009437561, + 0.9986947178840637, + 0.9989232420921326, + 0.9989075660705566, + 0.9988095760345459, + 0.9994403719902039 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988996982574463, + 0.998305082321167, + 0.9987429976463318, + 0.9989246726036072, + 0.9987844824790955, + 0.9988052845001221, + 0.9989087581634521, + 0.9989396929740906, + 0.998816967010498, + 0.9984536170959473 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 31, + "final_proportion": 0.96875, + "final_counts": { + "POSITIVE": 31, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.96875, + "NEGATIVE": 0.03125 + } + } + }, + { + "season_code": "202303", + "requirements": "Conducted entirely in French. After FREN 140, 145, or a satisfactory placement test score.\u00a0 Online preregistration required; see http://french.yale.edu/academics/placement-and-registration for details.", "description": "An advanced language course intended to improve students' comprehension of spoken and written French as well as their speaking and writing skills. Modern fiction and nonfiction texts familiarize students with idiomatic French. Special attention to grammar review and vocabulary acquisition.", "short_title": "Advanced Language Practice", "title": "Advanced Language Practice", @@ -136669,7 +285445,7 @@ "10:30", "11:20", "LC 105 - Linsly-Chittenden Hall 105", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -136677,7 +285453,7 @@ "10:30", "11:20", "LC 105 - Linsly-Chittenden Hall 105", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Friday": [ @@ -136685,7 +285461,7 @@ "10:30", "11:20", "LC 105 - Linsly-Chittenden Hall 105", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -136701,14 +285477,89 @@ "classnotes": "In order to be considered for this course, please provide the score and date of your Yale French Placement Test.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89806\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89806/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "Conducted entirely in French. After FREN 140, 145, or a satisfactory placement test score.\u00a0 Online preregistration required; see http:\/\/french.yale.edu\/academics\/placement-and-registration for details.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985060691833496 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988701939582825, + 0.998894989490509 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989344477653503, + 0.998661994934082 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 5, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 5 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } + }, + { + "season_code": "202303", + "requirements": "Conducted entirely in French. After FREN 140, 145, or a satisfactory placement test score.\u00a0 Online preregistration required; see http://french.yale.edu/academics/placement-and-registration for details.", "description": "An advanced language course intended to improve students' comprehension of spoken and written French as well as their speaking and writing skills. Modern fiction and nonfiction texts familiarize students with idiomatic French. Special attention to grammar review and vocabulary acquisition.", "short_title": "Advanced Language Practice", "title": "Advanced Language Practice", @@ -136741,7 +285592,7 @@ "11:35", "12:25", "LC 105 - Linsly-Chittenden Hall 105", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -136749,7 +285600,7 @@ "11:35", "12:25", "LC 105 - Linsly-Chittenden Hall 105", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Friday": [ @@ -136757,7 +285608,7 @@ "11:35", "12:25", "LC 105 - Linsly-Chittenden Hall 105", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -136773,10 +285624,101 @@ "classnotes": "In order to be considered for this course, please provide the score and date of your Yale French Placement Test.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89807\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89807/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989249110221863, + 0.9987724423408508, + 0.9987803101539612, + 0.9989232420921326 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989379048347473, + 0.9985834360122681, + 0.9988590478897095, + 0.9989398121833801 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986496567726135, + 0.9989074468612671, + 0.998278021812439, + 0.9988808035850525, + 0.9989363551139832 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 13 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -136813,7 +285755,7 @@ "9:00", "10:15", "HQ 207 - Humanities Quadrangle 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -136821,7 +285763,7 @@ "9:00", "10:15", "HQ 207 - Humanities Quadrangle 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -136837,10 +285779,103 @@ "classnotes": "In order to be considered for this course, please provide the score and date of your Yale French Placement Test.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89808\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89808/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989233613014221, + 0.9989050626754761, + 0.998854398727417, + 0.9988889098167419, + 0.9989306330680847 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989262223243713, + 0.9989155530929565, + 0.9989306330680847, + 0.998893678188324 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989173412322998, + 0.998900294303894, + 0.9989319443702698, + 0.9988478422164917, + 0.9988805651664734 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 14 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -136877,7 +285912,7 @@ "14:30", "15:45", "HQ 309 - Humanities Quadrangle 309", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -136885,7 +285920,7 @@ "14:30", "15:45", "HQ 309 - Humanities Quadrangle 309", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -136901,10 +285936,111 @@ "classnotes": "In order to be considered for this course, please provide the score and date of your Yale French Placement Test.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89809\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89809/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988688826560974, + 0.9988418221473694, + 0.9978519678115845, + 0.9989138841629028, + 0.9988604784011841, + 0.9988993406295776 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998938262462616, + 0.9989150762557983, + 0.9989250302314758, + 0.993324339389801, + 0.9989100694656372, + 0.9988759160041809 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989355206489563, + 0.9988754391670227, + 0.9982553124427795, + 0.996122419834137, + 0.9989140033721924, + 0.9989087581634521 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 18 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -136945,7 +286081,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -136982,7 +286146,7 @@ "11:35", "12:50", "HQ 113 - Humanities Quadrangle 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -136990,7 +286154,7 @@ "11:35", "12:50", "HQ 113 - Humanities Quadrangle 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -137006,10 +286170,95 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89811\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89811/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988471269607544, + 0.9989141225814819, + 0.9987978935241699, + 0.9989163875579834 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989176988601685, + 0.9988767504692078 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989112615585327, + 0.9989087581634521, + 0.9989056587219238, + 0.9989325404167175 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 10 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -137046,7 +286295,7 @@ "11:35", "12:50", "HQ 129 - Humanities Quadrangle 129", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -137054,7 +286303,7 @@ "11:35", "12:50", "HQ 129 - Humanities Quadrangle 129", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -137068,10 +286317,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89769\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89769/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -137108,7 +286385,7 @@ "9:25", "11:15", "HQ 127 - Humanities Quadrangle 127", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -137122,10 +286399,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89770\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89770/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -137168,7 +286473,7 @@ "10:30", "11:20", "LC 317 - Linsly-Chittenden Hall 317", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -137176,7 +286481,7 @@ "10:30", "11:20", "LC 317 - Linsly-Chittenden Hall 317", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -137195,10 +286500,107 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89272\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89272/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983270764350891, + 0.9988164901733398, + 0.9979806542396545, + 0.9987630844116211 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9983147382736206, + 0.9988991022109985, + 0.9994614720344543, + 0.9976310729980469, + 0.9976523518562317 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.6, + "POSITIVE": 0.4 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.6 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9994681477546692, + 0.9970071911811829, + 0.9857144951820374, + 0.998894989490509, + 0.9994803071022034, + 0.9983184337615967 + ], + "sentiment_counts": { + "NEGATIVE": 4, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.6666666666666666, + "POSITIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.6666666666666666 + ] + }, + "final_label": "neutral", + "final_count": 8, + "final_proportion": 0.5, + "final_counts": { + "POSITIVE": 8, + "NEGATIVE": 7 + }, + "final_distribution": { + "POSITIVE": 0.5333333333333333, + "NEGATIVE": 0.4666666666666667 + } + } }, { "season_code": "202303", @@ -137232,7 +286634,7 @@ "11:35", "12:25", "HQ 123 - Humanities Quadrangle 123", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -137254,7 +286656,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -137288,7 +286718,7 @@ "13:30", "14:20", "WLH 209 - William L. Harkness Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -137310,7 +286740,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -137374,7 +286832,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -137411,7 +286897,7 @@ "15:30", "17:20", "HQ C65 - Humanities Quadrangle C65", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -137425,10 +286911,109 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89776\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89776/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988234639167786, + 0.99882572889328, + 0.9989198446273804, + 0.9989218711853027, + 0.9988524913787842 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9951270818710327, + 0.9988456964492798, + 0.9989271759986877, + 0.9989282488822937, + 0.9988995790481567 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 4 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2, + "POSITIVE": 0.8 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987479448318481, + 0.9989051818847656, + 0.9989295601844788, + 0.9989246726036072, + 0.9988507032394409, + 0.9988847374916077 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 0.9375, + "final_counts": { + "POSITIVE": 15, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9375, + "NEGATIVE": 0.0625 + } + } }, { "season_code": "202303", @@ -137465,7 +287050,7 @@ "14:30", "15:45", "WLH 012 - William L. Harkness Hall 012", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -137473,7 +287058,7 @@ "14:30", "15:45", "WLH 012 - William L. Harkness Hall 012", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -137491,10 +287076,41 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89777\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89777/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989060163497925 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 1, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 1 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -137532,7 +287148,7 @@ "13:30", "15:20", "HQ 307 - Humanities Quadrangle 307", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -137546,10 +287162,159 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89780\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89780/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9963589310646057, + 0.9907398223876953, + 0.9989112615585327, + 0.9988957643508911, + 0.998859167098999, + 0.9988798499107361, + 0.9988723397254944, + 0.9988818764686584, + 0.9988564252853394, + 0.9988780617713928, + 0.9987995624542236, + 0.9988930821418762, + 0.9988628625869751 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9230769230769231, + "NEGATIVE": 0.07692307692307693 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9230769230769231 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.8180915117263794, + 0.998852014541626, + 0.9988589286804199, + 0.9989041090011597, + 0.9989124536514282, + 0.9987824559211731, + 0.9989227652549744, + 0.9989159107208252, + 0.9988572597503662, + 0.9989244341850281, + 0.9989400506019592, + 0.9989078044891357 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985401630401611, + 0.9988999366760254, + 0.9985218644142151, + 0.9989270567893982, + 0.998883068561554, + 0.9988977909088135, + 0.9988570213317871, + 0.998898983001709, + 0.9989185333251953, + 0.9985694885253906, + 0.9988157749176025, + 0.9989281296730042, + 0.998884379863739, + 0.9989381432533264, + 0.9984610080718994, + 0.9989343285560608 + ], + "sentiment_counts": { + "POSITIVE": 15, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9375, + "NEGATIVE": 0.0625 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9375 + ] + }, + "final_label": "POSITIVE", + "final_count": 39, + "final_proportion": 0.9512195121951219, + "final_counts": { + "POSITIVE": 39, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9512195121951219, + "NEGATIVE": 0.04878048780487805 + } + } }, { "season_code": "202303", @@ -137590,7 +287355,7 @@ "13:30", "15:20", "HQ C03 - Humanities Quadrangle C03", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -137609,10 +287374,111 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89781\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89781/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989038705825806, + 0.998881995677948, + 0.9989314675331116, + 0.9988376498222351, + 0.9989163875579834, + 0.9989125728607178 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989294409751892, + 0.9988766312599182, + 0.9989217519760132, + 0.9988623857498169, + 0.9988903403282166, + 0.9989312291145325 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987277388572693, + 0.9989243149757385, + 0.998910665512085, + 0.9985809326171875, + 0.9989239573478699, + 0.9988672733306885 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 18 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -137649,7 +287515,7 @@ "11:35", "12:50", "HQ 109 - Humanities Quadrangle 109", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -137657,7 +287523,7 @@ "11:35", "12:50", "HQ 109 - Humanities Quadrangle 109", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -137671,10 +287537,101 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89782\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89782/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988910555839539, + 0.9987794756889343, + 0.9988301396369934 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9986629486083984, + 0.9800260066986084, + 0.9992295503616333, + 0.9908612966537476 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9984667897224426, + 0.9981983304023743, + 0.985380232334137, + 0.9989198446273804, + 0.992196798324585 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 0.75, + "final_counts": { + "POSITIVE": 9, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + } + } }, { "season_code": "202303", @@ -137712,7 +287669,7 @@ "13:30", "15:20", "WLH 011 - William L. Harkness Hall 011", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -137728,17 +287685,102 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90072\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90072/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "", - "description": "A close reading (in English) of Marcel Proust\u2019s masterpiece, Remembrance of Things Past, with emphasis upon major themes: time and memory, desire and jealousy, social life and artistic experience, sexual identity and personal authenticity, class and nation. Portions from Swann\u2019s Way, Within a Budding Grove, Cities of the Plain, Time Regained considered from biographical, psychological\/psychoanalytic, gender, sociological, historical, and philosophical perspectives.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988037347793579, + 0.9989004135131836, + 0.9988138675689697 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9909629225730896, + 0.9989387392997742, + 0.9989256262779236 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989288449287415, + 0.9989069700241089, + 0.9989282488822937 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 8, + "final_proportion": 0.8888888888888888, + "final_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + } + } + }, + { + "season_code": "202303", + "requirements": "", + "description": "A close reading (in English) of Marcel Proust\u2019s masterpiece, Remembrance of Things Past, with emphasis upon major themes: time and memory, desire and jealousy, social life and artistic experience, sexual identity and personal authenticity, class and nation. Portions from Swann\u2019s Way, Within a Budding Grove, Cities of the Plain, Time Regained considered from biographical, psychological/psychoanalytic, gender, sociological, historical, and philosophical perspectives.", "short_title": "Proust Interpretations: Readi...", - "title": "Proust Interpretations: Reading Remembrance of Things Past<\/i>", + "title": "Proust Interpretations: Reading Remembrance of Things Past", "school": "YC", "credits": 1.0, "extra_info": "CANCELLED", @@ -137776,7 +287818,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -137813,7 +287883,7 @@ "9:25", "11:15", "HQ 127 - Humanities Quadrangle 127", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -137829,10 +287899,99 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89783\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89783/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988069534301758, + 0.9988253712654114, + 0.9987753033638, + 0.9988263249397278 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984732270240784, + 0.9986767172813416, + 0.9988890290260315, + 0.9989294409751892 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987723231315613, + 0.9982553124427795, + 0.9989138841629028, + 0.9988147020339966 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 12 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -137873,7 +288032,7 @@ "13:30", "15:20", "WLH 115 - William L. Harkness Hall 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -137887,10 +288046,89 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89803\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89803/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989172220230103, + 0.9989120960235596 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989364743232727, + 0.9985082745552063, + 0.9988952279090881 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998925507068634, + 0.9989069700241089 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 7 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -137929,7 +288167,7 @@ "9:25", "11:15", "HQ 123 - Humanities Quadrangle 123", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -137943,10 +288181,97 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89311\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89311/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989074468612671, + 0.9988844990730286, + 0.9987744688987732 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988852143287659, + 0.9986816048622131, + 0.9988956451416016 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989224672317505, + 0.9987837672233582, + 0.9988345503807068, + 0.9989204406738281, + 0.9988905787467957 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 11 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -137989,7 +288314,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -138030,7 +288383,7 @@ "13:30", "15:20", "HQ 123 - Humanities Quadrangle 123", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -138047,10 +288400,81 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90679\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90679/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986874461174011 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988276362419128 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988947510719299 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 3, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 3 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -138093,7 +288517,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -138136,7 +288588,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -138180,7 +288660,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -138224,7 +288732,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -138262,7 +288798,7 @@ "9:25", "11:15", "HQ C05 - Humanities Quadrangle C05", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -138274,10 +288810,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88869\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88869/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -138315,7 +288879,7 @@ "13:30", "15:20", "WALL81 101 - 81 Wall Street 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -138327,10 +288891,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88195\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88195/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -138367,7 +288959,7 @@ "15:30", "17:20", "HQ 317 - Humanities Quadrangle 317", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -138379,15 +288971,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89812\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89812/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "This is the first section of a year-long seminar (second section: CPLT 914) designed to introduce the discipline of psychoanalysis through primary sources, mainly from the Freudian and Lacanian corpuses but including late twentieth-century commentators and contemporary interdisciplinary conversations. We rigorously examine key psychoanalytic concepts that students have heard about but never had the chance to study. Students gain proficiency in what has been called \"the language of psychoanalysis,\" as well as tools for critical practice in disciplines such as literary criticism, political theory, film studies, gender studies, theory of ideology, psychology medical humanities, etc. We study concepts such as the unconscious, identification, the drive, repetition, the imaginary, fantasy, the symbolic, the real, and jouissance. A central goal of the seminar is to disambiguate Freud's corpus from Lacan's reinvention of it. We do not come to the \"rescue\" of Freud. We revisit essays that are relevant for contemporary conversations within the international psychoanalytic community. We include only a handful of materials from the Anglophone schools of psychoanalysis developed in England and the US. This section pays special attention to Freud's \"three\" (the ego, superego, and id) in comparison to Lacan's \"three\" (the imaginary, the symbolic, and the real). CPLT 914 devotes, depending on the interests expressed by the group, the last six weeks to special psychoanalytic topics such as sexuation, perversion, psychosis, anti-asylum movements, conversations between psychoanalysis and neurosciences and artificial intelligence, the current pharmacological model of mental health, and\/or to specific uses of psychoanalysis in disciplines such as film theory, political philosophy, and the critique of ideology. Apart from Freud and Lacan, we will read work by Georges Canguilhem, Roman Jakobson, Victor Tausk, \u00c9mile Benveniste, Valentin Volosinov, Guy Le Gaufey, Jean Laplanche, \u00c9tienne Balibar, Roberto Esposito, Wilfred Bion, F\u00e9lix Guattari, Markos Zafiropoulos, Franco Bifo Berardi, Barbara Cassin, Renata Salecl, Maurice Godelier, Alenka Zupan\u010di\u010d, Juliet Mitchell, Jacqueline Rose, Norbert Wiener, Alan Turing, Eric Kandel, and Lera Boroditsky among others.\u00a0No previous knowledge of psychoanalysis is needed. Starting out from basic questions, we study how psychoanalysis, arguably, changed the way we think of human subjectivity. Graduate students from all departments and schools on campus are welcome. The final assignment is due by the end of the spring term and need not necessarily take the form of a twenty-page paper. Taught in English. Materials can be provided to cover the linguistic range of the group.", + "description": "This is the first section of a year-long seminar (second section: CPLT 914) designed to introduce the discipline of psychoanalysis through primary sources, mainly from the Freudian and Lacanian corpuses but including late twentieth-century commentators and contemporary interdisciplinary conversations. We rigorously examine key psychoanalytic concepts that students have heard about but never had the chance to study. Students gain proficiency in what has been called \"the language of psychoanalysis,\" as well as tools for critical practice in disciplines such as literary criticism, political theory, film studies, gender studies, theory of ideology, psychology medical humanities, etc. We study concepts such as the unconscious, identification, the drive, repetition, the imaginary, fantasy, the symbolic, the real, and jouissance. A central goal of the seminar is to disambiguate Freud's corpus from Lacan's reinvention of it. We do not come to the \"rescue\" of Freud. We revisit essays that are relevant for contemporary conversations within the international psychoanalytic community. We include only a handful of materials from the Anglophone schools of psychoanalysis developed in England and the US. This section pays special attention to Freud's \"three\" (the ego, superego, and id) in comparison to Lacan's \"three\" (the imaginary, the symbolic, and the real). CPLT 914 devotes, depending on the interests expressed by the group, the last six weeks to special psychoanalytic topics such as sexuation, perversion, psychosis, anti-asylum movements, conversations between psychoanalysis and neurosciences and artificial intelligence, the current pharmacological model of mental health, and/or to specific uses of psychoanalysis in disciplines such as film theory, political philosophy, and the critique of ideology. Apart from Freud and Lacan, we will read work by Georges Canguilhem, Roman Jakobson, Victor Tausk, \u00c9mile Benveniste, Valentin Volosinov, Guy Le Gaufey, Jean Laplanche, \u00c9tienne Balibar, Roberto Esposito, Wilfred Bion, F\u00e9lix Guattari, Markos Zafiropoulos, Franco Bifo Berardi, Barbara Cassin, Renata Salecl, Maurice Godelier, Alenka Zupan\u010di\u010d, Juliet Mitchell, Jacqueline Rose, Norbert Wiener, Alan Turing, Eric Kandel, and Lera Boroditsky among others.\u00a0No previous knowledge of psychoanalysis is needed. Starting out from basic questions, we study how psychoanalysis, arguably, changed the way we think of human subjectivity. Graduate students from all departments and schools on campus are welcome. The final assignment is due by the end of the spring term and need not necessarily take the form of a twenty-page paper. Taught in English. Materials can be provided to cover the linguistic range of the group.", "short_title": "Psychoanalysis: Key Conceptua...", "title": "Psychoanalysis: Key Conceptual Differences between Freud and Lacan I", "school": "GS", @@ -138423,7 +289043,7 @@ "19:00", "20:50", "PH 207 - Phelps Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -138435,10 +289055,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89105\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89105/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -138475,7 +289123,7 @@ "9:25", "11:15", "HQ C05 - Humanities Quadrangle C05", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -138487,10 +289135,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89813\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89813/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -138531,7 +289207,7 @@ "13:30", "15:20", "HQ 317 - Humanities Quadrangle 317", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -138543,10 +289219,107 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90234\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90234/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984467625617981, + 0.9988627433776855, + 0.9987572431564331, + 0.9988536834716797, + 0.998889148235321, + 0.9987830519676208 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989288449287415, + 0.9893749952316284, + 0.9988841414451599, + 0.9984605312347412, + 0.9988671541213989 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988357424736023, + 0.9982391595840454, + 0.9988481998443604, + 0.9988767504692078, + 0.9964302182197571 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 16 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -138587,7 +289360,7 @@ "13:30", "15:20", "WLH 115 - William L. Harkness Hall 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -138601,10 +289374,89 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89803\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89803/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989172220230103, + 0.9989120960235596 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989364743232727, + 0.9985082745552063, + 0.9988952279090881 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998925507068634, + 0.9989069700241089 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 7 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -138647,7 +289499,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -138690,7 +289570,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -138727,7 +289635,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -138767,7 +289703,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -138808,7 +289772,7 @@ "11:35", "12:50", "TAC N107 - The Anlyan Center N107", - "https:\/\/map.yale.edu\/?id=1910#!m\/563380" + "https://map.yale.edu/?id=1910#!m/563380" ] ], "Wednesday": [ @@ -138816,7 +289780,7 @@ "11:35", "12:50", "TAC N107 - The Anlyan Center N107", - "https:\/\/map.yale.edu\/?id=1910#!m\/563380" + "https://map.yale.edu/?id=1910#!m/563380" ] ] }, @@ -138828,10 +289792,135 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89500\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89500/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984577894210815, + 0.9988810420036316, + 0.9957754015922546, + 0.998795747756958, + 0.998793363571167, + 0.9979946613311768, + 0.9842560887336731, + 0.9963437914848328, + 0.9892461895942688, + 0.9987061023712158 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986854195594788, + 0.9976736903190613, + 0.9987643957138062, + 0.9987610578536987, + 0.9988402724266052, + 0.9988735318183899, + 0.998514711856842, + 0.9988810420036316, + 0.9853230714797974, + 0.9994864463806152, + 0.9987854361534119 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8181818181818182, + "NEGATIVE": 0.18181818181818182 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8181818181818182 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987319111824036, + 0.9979998469352722, + 0.9995076656341553, + 0.9974592328071594, + 0.9989075660705566, + 0.997117280960083, + 0.998001754283905, + 0.9986473917961121 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.625, + "NEGATIVE": 0.375 + }, + "sentiment_overall": [ + "POSITIVE", + 0.625 + ] + }, + "final_label": "POSITIVE", + "final_count": 24, + "final_proportion": 0.8275862068965517, + "final_counts": { + "POSITIVE": 24, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.8275862068965517, + "NEGATIVE": 0.1724137931034483 + } + } }, { "season_code": "202303", @@ -138881,10 +289970,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88382\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88382/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -138937,12 +290054,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "Students gain experience in preparing and delivering seminars and in discussing presentations by other students. A variety of topics in molecular, cellular, developmental, and population genetics are covered. Required of all second-year students in Genetics. Graded Satisfactory\/Unsatisfactory.", + "description": "Students gain experience in preparing and delivering seminars and in discussing presentations by other students. A variety of topics in molecular, cellular, developmental, and population genetics are covered. Required of all second-year students in Genetics. Graded Satisfactory/Unsatisfactory.", "short_title": "Graduate Student Seminar: Cri...", "title": "Graduate Student Seminar: Critical Analysis and Presentation of Scientific Literature", "school": "GS", @@ -138980,10 +290125,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88340\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88340/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -139024,7 +290197,7 @@ "9:30", "11:00", "SHM I116 - Sterling Hall of Medicine I116", - "https:\/\/map.yale.edu\/?id=1910#!m\/559929" + "https://map.yale.edu/?id=1910#!m/559929" ] ], "Thursday": [ @@ -139032,7 +290205,7 @@ "9:30", "11:00", "SHM I116 - Sterling Hall of Medicine I116", - "https:\/\/map.yale.edu\/?id=1910#!m\/559929" + "https://map.yale.edu/?id=1910#!m/559929" ] ] }, @@ -139044,10 +290217,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92342\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92342/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -139089,10 +290290,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92376\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92376/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -139128,10 +290357,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92377\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92377/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -139176,7 +290433,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -139215,7 +290500,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -139252,7 +290565,7 @@ "11:35", "12:50", "WLH 119 - William L. Harkness Hall 119", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -139260,7 +290573,7 @@ "11:35", "12:50", "WLH 119 - William L. Harkness Hall 119", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -139276,10 +290589,339 @@ "classnotes": "", "final_exam": "Sunday, December 17, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88345\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88345/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9985699653625488, + 0.9986855387687683, + 0.9971355199813843, + 0.9949122071266174, + 0.9986973404884338, + 0.9989182949066162, + 0.998769223690033, + 0.9648255109786987, + 0.9976285099983215, + 0.9984930753707886, + 0.9988321661949158, + 0.9973885416984558, + 0.9547672271728516, + 0.9986597299575806, + 0.9989244341850281, + 0.9945159554481506, + 0.997847318649292, + 0.9988245368003845, + 0.996109664440155, + 0.9986808896064758, + 0.9881515502929688, + 0.9995025396347046, + 0.9987164735794067, + 0.998810887336731, + 0.9988466501235962, + 0.9987161159515381, + 0.9986801743507385, + 0.9989137649536133, + 0.998047947883606, + 0.9985736608505249, + 0.9988395571708679, + 0.9987455606460571, + 0.9985186457633972, + 0.9989342093467712, + 0.9989025592803955, + 0.9972643852233887, + 0.9986932873725891, + 0.9988518953323364, + 0.998672366142273, + 0.9994242191314697, + 0.9951392412185669, + 0.986862063407898, + 0.9989223480224609, + 0.9969722032546997 + ], + "sentiment_counts": { + "POSITIVE": 39, + "NEGATIVE": 5 + }, + "sentiment_distribution": { + "POSITIVE": 0.8863636363636364, + "NEGATIVE": 0.11363636363636363 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8863636363636364 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9995037317276001, + 0.999363362789154, + 0.992868959903717, + 0.9988492727279663, + 0.998869001865387, + 0.9989259839057922, + 0.9994719624519348, + 0.9987415671348572, + 0.9963487386703491, + 0.9986715316772461, + 0.993674635887146, + 0.9991323351860046, + 0.9969837069511414, + 0.9992380142211914, + 0.99310702085495, + 0.9933366775512695, + 0.9982837438583374, + 0.9984136819839478, + 0.9985707998275757, + 0.9985060691833496, + 0.9677407145500183, + 0.9988299012184143, + 0.9993484616279602, + 0.9987999200820923, + 0.9995018243789673, + 0.9992075562477112, + 0.9989070892333984, + 0.9972742199897766, + 0.9806829690933228, + 0.9988921284675598, + 0.9988270401954651, + 0.9946117401123047, + 0.9988523721694946, + 0.9985563158988953, + 0.995796799659729, + 0.9995054006576538, + 0.9995044469833374, + 0.9994107484817505, + 0.9989117383956909, + 0.9988237023353577, + 0.998934805393219, + 0.9993915557861328, + 0.9988671541213989, + 0.9974449872970581 + ], + "sentiment_counts": { + "NEGATIVE": 16, + "POSITIVE": 28 + }, + "sentiment_distribution": { + "NEGATIVE": 0.36363636363636365, + "POSITIVE": 0.6363636363636364 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6363636363636364 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9995108842849731, + 0.9983758926391602, + 0.9974849224090576, + 0.9994882345199585, + 0.9994961023330688, + 0.9782375693321228, + 0.9994316697120667, + 0.9989042282104492, + 0.9896826148033142, + 0.9994789958000183, + 0.9978784322738647, + 0.9988910555839539, + 0.9980512857437134, + 0.9988837838172913, + 0.9994619488716125, + 0.9995019435882568, + 0.9982006549835205, + 0.9992361068725586, + 0.9989205598831177, + 0.9968981742858887, + 0.9974518418312073, + 0.998928964138031, + 0.999512791633606, + 0.998920202255249, + 0.9995162487030029, + 0.9956432580947876, + 0.9989315867424011, + 0.998204231262207, + 0.9875288009643555, + 0.9988963603973389, + 0.9994933605194092, + 0.9986574649810791, + 0.9986968636512756, + 0.996780514717102, + 0.9989087581634521, + 0.9988168478012085, + 0.9976281523704529, + 0.9988855719566345, + 0.9989075660705566, + 0.997868537902832, + 0.9994341731071472, + 0.9979082345962524, + 0.9989351630210876 + ], + "sentiment_counts": { + "NEGATIVE": 23, + "POSITIVE": 20 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5348837209302325, + "POSITIVE": 0.46511627906976744 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "final_label": "POSITIVE", + "final_count": 87, + "final_proportion": 0.6641221374045801, + "final_counts": { + "POSITIVE": 87, + "NEGATIVE": 44 + }, + "final_distribution": { + "POSITIVE": 0.6641221374045801, + "NEGATIVE": 0.33587786259541985 + } + } }, { "season_code": "202303", @@ -139310,7 +290952,7 @@ "13:30", "14:20", "YK220 100 - 220 York Street 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ] }, @@ -139329,7 +290971,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -139360,7 +291030,7 @@ "9:25", "10:15", "WTS A42 - Watson Center 60 Sachem Street A42", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -139379,7 +291049,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -139410,7 +291108,7 @@ "9:25", "10:15", "WLH 113 - William L. Harkness Hall 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -139429,7 +291127,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -139460,7 +291186,7 @@ "10:30", "11:20", "WLH 113 - William L. Harkness Hall 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -139479,7 +291205,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -139537,7 +291291,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -139577,7 +291359,7 @@ "11:35", "12:50", "YSB MARSH - Yale Science Building MARSH", - "https:\/\/map.yale.edu\/?id=1910#!m\/563700" + "https://map.yale.edu/?id=1910#!m/563700" ] ], "Thursday": [ @@ -139585,7 +291367,7 @@ "11:35", "12:50", "YSB MARSH - Yale Science Building MARSH", - "https:\/\/map.yale.edu\/?id=1910#!m\/563700" + "https://map.yale.edu/?id=1910#!m/563700" ] ] }, @@ -139604,10 +291386,589 @@ "classnotes": "", "final_exam": "Friday, December 15, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88301\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88301/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988328814506531, + 0.9987678527832031, + 0.9989029169082642, + 0.9987850785255432, + 0.9985333681106567, + 0.998874843120575, + 0.9987993240356445, + 0.9916856288909912, + 0.9987795948982239, + 0.992846667766571, + 0.9989186525344849, + 0.9987413287162781, + 0.9857977032661438, + 0.9986491799354553, + 0.9988352656364441, + 0.9988735318183899, + 0.9989136457443237, + 0.9989369511604309, + 0.9984112977981567, + 0.998889148235321, + 0.9985790252685547, + 0.9989058971405029, + 0.9988297820091248, + 0.9988999366760254, + 0.9987982511520386, + 0.9975742697715759, + 0.997580885887146, + 0.9989216327667236, + 0.9987282156944275, + 0.99814772605896, + 0.9989179372787476, + 0.99883633852005, + 0.9376633167266846, + 0.99861741065979, + 0.9987965822219849, + 0.9989234805107117, + 0.998908281326294, + 0.9838896989822388, + 0.9987568855285645, + 0.9987894892692566, + 0.9988409876823425, + 0.9988536834716797, + 0.998916506767273, + 0.9987753033638, + 0.9988309741020203, + 0.9986878037452698, + 0.9992117881774902, + 0.9988033771514893, + 0.998843789100647, + 0.9776723980903625, + 0.9975645542144775, + 0.9988446235656738, + 0.9988473653793335, + 0.9986982345581055, + 0.9903036952018738, + 0.9705064296722412, + 0.9989140033721924, + 0.9988831877708435, + 0.998897910118103, + 0.993658721446991, + 0.9988058805465698, + 0.9988296627998352, + 0.9988345503807068, + 0.9988833069801331, + 0.9988095760345459, + 0.9907042384147644, + 0.9988505840301514, + 0.9987712502479553, + 0.9987385869026184, + 0.9988734126091003, + 0.99809330701828, + 0.9989033937454224, + 0.9989109039306641, + 0.9988868832588196, + 0.9988898634910583, + 0.9947611689567566 + ], + "sentiment_counts": { + "POSITIVE": 69, + "NEGATIVE": 7 + }, + "sentiment_distribution": { + "POSITIVE": 0.9078947368421053, + "NEGATIVE": 0.09210526315789473 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9078947368421053 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988524913787842, + 0.9989342093467712, + 0.9989349246025085, + 0.9952126741409302, + 0.9986928105354309, + 0.9988322854042053, + 0.9987527132034302, + 0.9988521337509155, + 0.9984802603721619, + 0.9989323019981384, + 0.9988800883293152, + 0.9988971948623657, + 0.9989069700241089, + 0.9988536834716797, + 0.9974876642227173, + 0.9984444975852966, + 0.9994601607322693, + 0.9973527193069458, + 0.9988449811935425, + 0.9988797307014465, + 0.9988973140716553, + 0.9988452196121216, + 0.9986401200294495, + 0.9988596439361572, + 0.9989132881164551, + 0.9988672733306885, + 0.9989253878593445, + 0.9988951086997986, + 0.9989296793937683, + 0.8647946715354919, + 0.9988044500350952, + 0.9988201260566711, + 0.9988527297973633, + 0.9988943934440613, + 0.998814582824707, + 0.9907764792442322, + 0.9958012700080872, + 0.9988685846328735, + 0.997369647026062, + 0.9677252173423767, + 0.9988704323768616, + 0.998880922794342, + 0.9986574649810791, + 0.9988893866539001, + 0.9986768364906311, + 0.9994491934776306, + 0.9989185333251953, + 0.9988904595375061, + 0.9989345669746399, + 0.9987977743148804, + 0.9989196062088013, + 0.9871354699134827, + 0.9989036321640015, + 0.997565507888794, + 0.9994885921478271, + 0.9989306330680847, + 0.9986711740493774, + 0.9976551532745361, + 0.9987519979476929, + 0.9989110231399536, + 0.9987799525260925, + 0.9988604784011841, + 0.9989546537399292, + 0.999433696269989, + 0.9988986253738403, + 0.9988963603973389, + 0.9988654851913452, + 0.998879611492157, + 0.9993359446525574, + 0.9988881945610046, + 0.9988303780555725, + 0.9988094568252563, + 0.9988603591918945, + 0.998600423336029, + 0.9989230036735535, + 0.9987108707427979, + 0.9984436631202698, + 0.9948320388793945, + 0.9988206028938293, + 0.9974150657653809, + 0.9988582134246826, + 0.9989387392997742, + 0.9988917708396912, + 0.9988988637924194, + 0.9987918734550476, + 0.9986183643341064 + ], + "sentiment_counts": { + "POSITIVE": 75, + "NEGATIVE": 11 + }, + "sentiment_distribution": { + "POSITIVE": 0.872093023255814, + "NEGATIVE": 0.12790697674418605 + }, + "sentiment_overall": [ + "POSITIVE", + 0.872093023255814 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988653659820557, + 0.997117280960083, + 0.9982553124427795, + 0.9988961219787598, + 0.9989204406738281, + 0.9989281296730042, + 0.9988858103752136, + 0.9989022016525269, + 0.9989365935325623, + 0.9897352457046509, + 0.9915253520011902, + 0.9988810420036316, + 0.998927891254425, + 0.9989368319511414, + 0.9989221096038818, + 0.9988188147544861, + 0.9986863732337952, + 0.9969866871833801, + 0.9981594681739807, + 0.9989274144172668, + 0.9988725781440735, + 0.9988383650779724, + 0.9989064931869507, + 0.9989125728607178, + 0.9989036321640015, + 0.9988792538642883, + 0.9989277720451355, + 0.9988688826560974, + 0.9989233613014221, + 0.9987791180610657, + 0.9950087070465088, + 0.9988943934440613, + 0.9988545179367065, + 0.9989001750946045, + 0.998924195766449, + 0.9982967972755432, + 0.9986022114753723, + 0.9981766939163208, + 0.998323380947113, + 0.9989210367202759, + 0.9980652928352356, + 0.9988710284233093, + 0.9988687634468079, + 0.9989157915115356, + 0.9987446069717407, + 0.9987768530845642, + 0.9986080527305603, + 0.9995026588439941, + 0.9988376498222351, + 0.998927891254425, + 0.9989131689071655, + 0.9989184141159058, + 0.9813989996910095, + 0.9988642930984497, + 0.9987595081329346, + 0.998931348323822, + 0.998908519744873, + 0.9988783001899719, + 0.9988755583763123, + 0.9983327984809875, + 0.9989163875579834, + 0.9994763731956482, + 0.9983184337615967, + 0.9988032579421997, + 0.9989168643951416, + 0.997117280960083, + 0.9988829493522644, + 0.9989328980445862, + 0.9988662004470825, + 0.9988217949867249, + 0.9986963868141174, + 0.9989078044891357, + 0.9989161491394043, + 0.9967746138572693, + 0.9989290833473206, + 0.9989135265350342, + 0.9988150596618652, + 0.9989153146743774, + 0.9989232420921326, + 0.9989031553268433, + 0.9989168643951416, + 0.9963138699531555, + 0.9983408451080322, + 0.9988994598388672, + 0.998891294002533, + 0.9988792538642883, + 0.9988793730735779, + 0.9988914132118225, + 0.9987395405769348, + 0.998927891254425, + 0.9988341927528381, + 0.998869001865387, + 0.9970780611038208, + 0.9982553124427795 + ], + "sentiment_counts": { + "POSITIVE": 85, + "NEGATIVE": 9 + }, + "sentiment_distribution": { + "POSITIVE": 0.9042553191489362, + "NEGATIVE": 0.09574468085106383 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9042553191489362 + ] + }, + "final_label": "POSITIVE", + "final_count": 229, + "final_proportion": 0.89453125, + "final_counts": { + "POSITIVE": 229, + "NEGATIVE": 27 + }, + "final_distribution": { + "POSITIVE": 0.89453125, + "NEGATIVE": 0.10546875 + } + } }, { "season_code": "202303", @@ -139639,7 +292000,7 @@ "16:00", "16:50", "WLH 002 - William L. Harkness Hall 002", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -139662,7 +292023,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -139694,7 +292083,7 @@ "17:00", "17:50", "WLH 002 - William L. Harkness Hall 002", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -139717,7 +292106,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -139749,7 +292166,7 @@ "16:00", "16:50", "WLH 209 - William L. Harkness Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -139772,7 +292189,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -139804,7 +292249,7 @@ "17:00", "17:50", "WLH 209 - William L. Harkness Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -139827,7 +292272,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -139859,7 +292332,7 @@ "19:00", "19:50", "WTS A38 - Watson Center 60 Sachem Street A38", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -139882,7 +292355,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -139914,7 +292415,7 @@ "20:00", "20:50", "WTS A38 - Watson Center 60 Sachem Street A38", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -139937,7 +292438,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -139969,7 +292498,7 @@ "19:00", "19:50", "WTS B31 - Watson Center 60 Sachem Street B31", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -139992,7 +292521,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -140024,7 +292581,7 @@ "20:00", "20:50", "WTS B31 - Watson Center 60 Sachem Street B31", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -140047,7 +292604,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -140079,7 +292664,7 @@ "9:25", "10:15", "WLH 009 - William L. Harkness Hall 009", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -140102,7 +292687,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -140134,7 +292747,7 @@ "10:30", "11:20", "WLH 113 - William L. Harkness Hall 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -140157,7 +292770,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -140189,7 +292830,7 @@ "9:25", "10:15", "WLH 007 - William L. Harkness Hall 007", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -140212,7 +292853,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -140244,7 +292913,7 @@ "10:30", "11:20", "WLH 007 - William L. Harkness Hall 007", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -140267,7 +292936,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -140299,7 +292996,7 @@ "16:00", "16:50", "WLH 003 - William L. Harkness Hall 003", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -140322,7 +293019,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -140354,7 +293079,7 @@ "17:00", "17:50", "WLH 003 - William L. Harkness Hall 003", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -140377,7 +293102,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -140409,7 +293162,7 @@ "19:00", "19:50", "WTS A35 - Watson Center 60 Sachem Street A35", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -140432,7 +293185,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -140464,7 +293245,7 @@ "20:00", "20:50", "WTS A35 - Watson Center 60 Sachem Street A35", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -140487,7 +293268,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -140519,7 +293328,7 @@ "9:25", "10:15", "WLH 002 - William L. Harkness Hall 002", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -140542,7 +293351,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -140581,7 +293418,7 @@ "10:30", "11:20", "LUCE 101 - Luce Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ], "Wednesday": [ @@ -140589,7 +293426,7 @@ "10:30", "11:20", "LUCE 101 - Luce Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ] }, @@ -140598,7 +293435,7 @@ "Hu" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC GLBL: Elective", "YC HIST: United States", @@ -140612,10 +293449,289 @@ "classnotes": "", "final_exam": "Monday, December 18, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88507\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88507/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998719334602356, + 0.9984116554260254, + 0.9988136291503906, + 0.9989320635795593, + 0.9988324046134949, + 0.9989026784896851, + 0.9987913966178894, + 0.9988657236099243, + 0.9987034797668457, + 0.9988868832588196, + 0.9968256950378418, + 0.9989257454872131, + 0.9988752007484436, + 0.9988456964492798, + 0.9988148212432861, + 0.9987849593162537, + 0.9986757636070251, + 0.9989117383956909, + 0.998892605304718, + 0.9988835453987122, + 0.9987329840660095, + 0.9988890290260315, + 0.9981106519699097, + 0.998752236366272, + 0.9985998272895813, + 0.9987897276878357, + 0.9986281394958496, + 0.9987984895706177, + 0.9989116191864014, + 0.9988357424736023, + 0.9987951517105103, + 0.9966489672660828, + 0.9989224672317505, + 0.9989142417907715, + 0.9989173412322998, + 0.9988914132118225 + ], + "sentiment_counts": { + "POSITIVE": 36, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9992467164993286, + 0.9987441301345825, + 0.9988712668418884, + 0.9916486740112305, + 0.9989280104637146, + 0.9987932443618774, + 0.9695658087730408, + 0.992197573184967, + 0.9966341853141785, + 0.8261944055557251, + 0.9857897162437439, + 0.9989251494407654, + 0.9989365935325623, + 0.9987953901290894, + 0.9989191293716431, + 0.9986729621887207, + 0.9955092668533325, + 0.998872697353363, + 0.9988946318626404, + 0.9984707236289978, + 0.9987938404083252, + 0.9940075874328613, + 0.9986085295677185, + 0.9989198446273804, + 0.9989277720451355, + 0.9981675148010254, + 0.9993706345558167, + 0.9988019466400146, + 0.9986172914505005, + 0.9987775683403015, + 0.998857855796814, + 0.9986472725868225, + 0.9988607168197632, + 0.9988539218902588 + ], + "sentiment_counts": { + "NEGATIVE": 8, + "POSITIVE": 26 + }, + "sentiment_distribution": { + "NEGATIVE": 0.23529411764705882, + "POSITIVE": 0.7647058823529411 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7647058823529411 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994660019874573, + 0.9989173412322998, + 0.9988905787467957, + 0.9989038705825806, + 0.9986855387687683, + 0.9989135265350342, + 0.9988939166069031, + 0.9981873631477356, + 0.997117280960083, + 0.998735249042511, + 0.9988706707954407, + 0.9989287257194519, + 0.998904824256897, + 0.9987974166870117, + 0.9986609220504761, + 0.9988897442817688, + 0.9987824559211731, + 0.9986056685447693, + 0.998893678188324, + 0.9988278746604919, + 0.9988166093826294, + 0.9988821148872375, + 0.997117280960083, + 0.9987800717353821, + 0.9981470108032227, + 0.9988797307014465, + 0.9987481832504272, + 0.9989101886749268, + 0.9988996982574463, + 0.9977197051048279, + 0.9988507032394409, + 0.9992569088935852, + 0.9989029169082642, + 0.9863783121109009, + 0.998883068561554, + 0.9989109039306641 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 34 + }, + "sentiment_distribution": { + "NEGATIVE": 0.05555555555555555, + "POSITIVE": 0.9444444444444444 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9444444444444444 + ] + }, + "final_label": "POSITIVE", + "final_count": 96, + "final_proportion": 0.9056603773584906, + "final_counts": { + "POSITIVE": 96, + "NEGATIVE": 10 + }, + "final_distribution": { + "POSITIVE": 0.9056603773584906, + "NEGATIVE": 0.09433962264150944 + } + } }, { "season_code": "202303", @@ -140648,7 +293764,7 @@ "13:30", "14:20", "WTS A68 - Watson Center 60 Sachem Street A68", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -140657,7 +293773,7 @@ "Hu" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC HIST: United States", "YC HIST: Empires & Colonialism", @@ -140673,7 +293789,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -140706,7 +293850,7 @@ "19:00", "19:50", "WTS B52 - Watson Center 60 Sachem Street B52", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -140715,7 +293859,7 @@ "Hu" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC HIST: United States", "YC HIST: Empires & Colonialism", @@ -140731,7 +293875,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -140764,7 +293936,7 @@ "16:00", "16:50", "HQ C11 - Humanities Quadrangle C11", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -140773,7 +293945,7 @@ "Hu" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC HIST: United States", "YC HIST: Empires & Colonialism", @@ -140789,7 +293961,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -140822,7 +294022,7 @@ "17:00", "17:50", "HQ C11 - Humanities Quadrangle C11", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -140831,7 +294031,7 @@ "Hu" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC HIST: United States", "YC HIST: Empires & Colonialism", @@ -140847,7 +294047,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -140880,7 +294108,7 @@ "19:00", "19:50", "HQ 307 - Humanities Quadrangle 307", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -140889,7 +294117,7 @@ "Hu" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC HIST: United States", "YC HIST: Empires & Colonialism", @@ -140905,7 +294133,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -140938,7 +294194,7 @@ "10:30", "11:20", "LORIA 358 - Loria Center 358", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -140947,7 +294203,7 @@ "Hu" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC HIST: United States", "YC HIST: Empires & Colonialism", @@ -140963,7 +294219,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -140996,7 +294280,7 @@ "11:35", "12:25", "LORIA 358 - Loria Center 358", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -141005,7 +294289,7 @@ "Hu" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC HIST: United States", "YC HIST: Empires & Colonialism", @@ -141021,7 +294305,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -141054,7 +294366,7 @@ "13:30", "14:20", "WTS A39 - Watson Center 60 Sachem Street A39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -141063,7 +294375,7 @@ "Hu" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC HIST: United States", "YC HIST: Empires & Colonialism", @@ -141079,7 +294391,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -141129,7 +294469,7 @@ "Hu" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC HIST: United States", "YC HIST: Empires & Colonialism", @@ -141145,7 +294485,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -141178,7 +294546,7 @@ "14:30", "15:20", "WTS B39 - Watson Center 60 Sachem Street B39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -141187,7 +294555,7 @@ "Hu" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC HIST: United States", "YC HIST: Empires & Colonialism", @@ -141203,7 +294571,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -141236,7 +294632,7 @@ "14:30", "15:20", "HQ 307 - Humanities Quadrangle 307", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -141245,7 +294641,7 @@ "Hu" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC HIST: United States", "YC HIST: Empires & Colonialism", @@ -141261,7 +294657,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -141301,7 +294725,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -141341,7 +294793,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -141382,7 +294862,7 @@ "13:30", "14:20", "HQ L02 - Humanities Quadrangle L02", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -141390,7 +294870,7 @@ "13:30", "14:20", "HQ L02 - Humanities Quadrangle L02", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -141415,10 +294895,185 @@ "classnotes": "", "final_exam": "Saturday, December 16, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88493\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88493/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988808035850525, + 0.9988229870796204, + 0.9988625049591064, + 0.9989086389541626, + 0.9987517595291138, + 0.998902440071106, + 0.9987687468528748, + 0.9987989664077759, + 0.9989051818847656, + 0.9989174604415894, + 0.9983054399490356, + 0.9987301230430603, + 0.9989237189292908, + 0.9989332556724548, + 0.9988400340080261, + 0.9988407492637634, + 0.9987784028053284, + 0.9974057078361511 + ], + "sentiment_counts": { + "POSITIVE": 18, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9963480830192566, + 0.9987426400184631, + 0.9989305138587952, + 0.9988093376159668, + 0.998782217502594, + 0.9897776246070862, + 0.9965038299560547, + 0.9988129138946533, + 0.9988614320755005, + 0.9985988736152649, + 0.9972853660583496, + 0.9989032745361328, + 0.9984378218650818, + 0.9989340901374817, + 0.9989116191864014, + 0.988175630569458, + 0.9955410361289978 + ], + "sentiment_counts": { + "POSITIVE": 14, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.8235294117647058, + "NEGATIVE": 0.17647058823529413 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8235294117647058 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9974592328071594, + 0.9945626854896545, + 0.9988327622413635, + 0.9988840222358704, + 0.9989305138587952, + 0.9984487295150757, + 0.9988697171211243, + 0.99732506275177, + 0.9986433386802673, + 0.9988701939582825, + 0.9989168643951416, + 0.9986500144004822, + 0.9974197149276733, + 0.998824417591095, + 0.9989323019981384, + 0.9988640546798706, + 0.99888676404953, + 0.9979302883148193, + 0.9974592328071594 + ], + "sentiment_counts": { + "POSITIVE": 19, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 51, + "final_proportion": 0.9444444444444444, + "final_counts": { + "POSITIVE": 51, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.9444444444444444, + "NEGATIVE": 0.05555555555555555 + } + } }, { "season_code": "202303", @@ -141450,7 +295105,7 @@ "15:30", "16:20", "HQ 127 - Humanities Quadrangle 127", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -141478,7 +295133,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -141546,7 +295229,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -141578,7 +295289,7 @@ "16:00", "16:50", "HQ C01 - Humanities Quadrangle C01", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -141606,7 +295317,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -141674,7 +295413,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -141706,7 +295473,7 @@ "17:00", "17:50", "HQ C01 - Humanities Quadrangle C01", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -141734,7 +295501,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -141766,7 +295561,7 @@ "19:00", "19:50", "WLH 007 - William L. Harkness Hall 007", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -141794,7 +295589,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -141826,7 +295649,7 @@ "10:30", "11:20", "WLH 117 - William L. Harkness Hall 117", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -141854,7 +295677,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -141886,7 +295737,7 @@ "11:35", "12:25", "HQ C11 - Humanities Quadrangle C11", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -141914,7 +295765,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -141982,7 +295861,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -142051,7 +295958,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -142093,7 +296028,7 @@ "13:30", "15:20", "CO493 106 - 493 College Street 106", - "https:\/\/map.yale.edu\/?id=1910#!m\/560001" + "https://map.yale.edu/?id=1910#!m/560001" ] ] }, @@ -142107,10 +296042,103 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90311\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90311/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987693428993225, + 0.998711109161377, + 0.9988964796066284 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9962917566299438, + 0.9994947910308838, + 0.9955711960792542, + 0.9989386200904846 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9995086193084717, + 0.9989193677902222, + 0.996487021446228, + 0.999502420425415, + 0.9978026747703552, + 0.9989320635795593 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 4 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 0.7692307692307693, + "final_counts": { + "POSITIVE": 10, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.7692307692307693, + "NEGATIVE": 0.23076923076923078 + } + } }, { "season_code": "202303", @@ -142151,7 +296179,7 @@ "13:30", "15:20", "RKZ 04 - Rosenkranz Hall 04", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -142169,10 +296197,87 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88477\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88477/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988580942153931, + 0.9987786412239075 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989128112792969, + 0.9987824559211731 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989303946495056, + 0.9989103078842163 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 6 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -142213,7 +296318,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -142275,10 +296408,109 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88095\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88095/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988335967063904, + 0.9985324144363403, + 0.997271716594696, + 0.9993489384651184, + 0.9989098310470581, + 0.998856782913208 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989259839057922, + 0.9988051652908325, + 0.9974445104598999, + 0.9989070892333984, + 0.9980035424232483 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988741278648376, + 0.9989168643951416, + 0.9978795051574707, + 0.9987982511520386, + 0.9957400560379028 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 0.8125, + "final_counts": { + "POSITIVE": 13, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.8125, + "NEGATIVE": 0.1875 + } + } }, { "season_code": "202303", @@ -142316,7 +296548,7 @@ "13:30", "15:20", "WTS B39 - Watson Center 60 Sachem Street B39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -142332,10 +296564,135 @@ "classnotes": "", "final_exam": "Saturday, December 16, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88350\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88350/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988607168197632, + 0.9987930059432983, + 0.9956015348434448, + 0.9988752007484436, + 0.9988914132118225, + 0.9988586902618408, + 0.9988834261894226, + 0.9989200830459595, + 0.9988687634468079, + 0.9986962676048279 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989223480224609, + 0.9989104270935059, + 0.9988895058631897, + 0.9988940358161926, + 0.9989246726036072, + 0.9989277720451355, + 0.9989312291145325, + 0.9989138841629028, + 0.9988887906074524 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989307522773743, + 0.9989123344421387, + 0.9988940358161926, + 0.9989190101623535, + 0.9976147413253784, + 0.998877227306366, + 0.9989363551139832, + 0.998934805393219, + 0.9989211559295654, + 0.9984446167945862, + 0.9989266991615295 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 30, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 30 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -142373,7 +296730,7 @@ "13:30", "15:20", "RKZ 02 - Rosenkranz Hall 02", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -142390,10 +296747,89 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89005\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89005/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998920202255249, + 0.998863935470581 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989099502563477, + 0.9989175796508789 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989364743232727, + 0.998940646648407, + 0.9989328980445862 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 7 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -142435,7 +296871,7 @@ "10:30", "11:20", "WLH 119 - William L. Harkness Hall 119", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -142443,7 +296879,7 @@ "10:30", "11:20", "WLH 119 - William L. Harkness Hall 119", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -142453,7 +296889,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC GLBL: Addtl Methods Course" ], @@ -142462,10 +296898,131 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89998\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89998/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987189769744873, + 0.9988607168197632, + 0.9985671043395996, + 0.9986383318901062, + 0.9988172650337219, + 0.9988409876823425, + 0.9988889098167419 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988678693771362, + 0.9988924860954285, + 0.9981393814086914, + 0.9983080625534058, + 0.9994785189628601, + 0.998812198638916, + 0.9988958835601807, + 0.9981482028961182, + 0.9988400340080261 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989197254180908, + 0.9954397678375244, + 0.9989020824432373, + 0.9989036321640015, + 0.99472576379776, + 0.999492883682251, + 0.9989197254180908, + 0.9988096952438354, + 0.9989226460456848, + 0.9988836646080017, + 0.9970128536224365 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9090909090909091 + ] + }, + "final_label": "POSITIVE", + "final_count": 23, + "final_proportion": 0.8518518518518519, + "final_counts": { + "POSITIVE": 23, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.8518518518518519, + "NEGATIVE": 0.14814814814814814 + } + } }, { "season_code": "202303", @@ -142498,7 +297055,7 @@ "16:00", "16:50", "WTS A68 - Watson Center 60 Sachem Street A68", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -142508,7 +297065,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -142519,7 +297076,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -142552,7 +297137,7 @@ "16:00", "16:50", "HQ C15 - Humanities Quadrangle C15", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -142562,7 +297147,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -142573,7 +297158,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -142606,7 +297219,7 @@ "13:30", "14:20", "WTS B52 - Watson Center 60 Sachem Street B52", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -142616,7 +297229,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -142627,7 +297240,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -142660,7 +297301,7 @@ "13:30", "14:20", "WTS B30 - Watson Center 60 Sachem Street B30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -142670,7 +297311,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -142681,7 +297322,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -142714,7 +297383,7 @@ "15:30", "16:20", "LC 204 - Linsly-Chittenden Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -142724,7 +297393,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC GLBL: Addtl Methods Course" ], @@ -142736,7 +297405,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -142769,7 +297466,7 @@ "16:30", "17:20", "LC 204 - Linsly-Chittenden Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -142779,7 +297476,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC GLBL: Addtl Methods Course" ], @@ -142791,7 +297488,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -142833,7 +297558,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -142870,7 +297623,7 @@ "9:25", "10:15", "GR109 ROSENFELD - 109 Grove Street ROSENFELD", - "https:\/\/map.yale.edu\/?id=1910#!m\/560109" + "https://map.yale.edu/?id=1910#!m/560109" ] ], "Wednesday": [ @@ -142878,7 +297631,7 @@ "9:25", "10:15", "GR109 ROSENFELD - 109 Grove Street ROSENFELD", - "https:\/\/map.yale.edu\/?id=1910#!m\/560109" + "https://map.yale.edu/?id=1910#!m/560109" ] ], "Friday": [ @@ -142886,7 +297639,7 @@ "9:25", "10:15", "GR109 ROSENFELD - 109 Grove Street ROSENFELD", - "https:\/\/map.yale.edu\/?id=1910#!m\/560109" + "https://map.yale.edu/?id=1910#!m/560109" ] ] }, @@ -142900,10 +297653,281 @@ "classnotes": "", "final_exam": "Thursday, December 14, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88354\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88354/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987565279006958, + 0.9919662475585938, + 0.9980168342590332, + 0.9987514019012451, + 0.9988046884536743, + 0.9989097118377686, + 0.9989045858383179, + 0.9978845715522766, + 0.9988190531730652, + 0.9988549947738647, + 0.9988094568252563, + 0.9976081848144531, + 0.9959439635276794, + 0.9974790215492249, + 0.9995031356811523, + 0.9989252686500549, + 0.6958867907524109, + 0.9987524747848511, + 0.9987174272537231, + 0.9988613128662109, + 0.9881026148796082, + 0.9987817406654358, + 0.9987452030181885, + 0.998420238494873, + 0.9973026514053345, + 0.9988779425621033, + 0.9958760142326355, + 0.9989286065101624, + 0.9956811666488647, + 0.9988428354263306 + ], + "sentiment_counts": { + "POSITIVE": 27, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.984372079372406, + 0.996042013168335, + 0.9986739158630371, + 0.9995118379592896, + 0.9995145797729492, + 0.9988841414451599, + 0.9959936141967773, + 0.9957503080368042, + 0.9988021850585938, + 0.9960221648216248, + 0.996961772441864, + 0.9988901019096375, + 0.998039186000824, + 0.9989269375801086, + 0.9974930286407471, + 0.9994451403617859, + 0.9994879961013794, + 0.9982576966285706, + 0.998887836933136, + 0.9995089769363403, + 0.9994996786117554, + 0.998855471611023, + 0.9986602067947388, + 0.9987475872039795, + 0.9962320923805237, + 0.9987457990646362, + 0.9988259673118591, + 0.9988487958908081, + 0.9965773224830627, + 0.998845100402832, + 0.9993355870246887, + 0.9989368319511414, + 0.9993577599525452, + 0.999494194984436, + 0.9973135590553284 + ], + "sentiment_counts": { + "POSITIVE": 21, + "NEGATIVE": 14 + }, + "sentiment_distribution": { + "POSITIVE": 0.6, + "NEGATIVE": 0.4 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9980934262275696, + 0.997052788734436, + 0.9981075525283813, + 0.9995104074478149, + 0.9995001554489136, + 0.9987146854400635, + 0.998357355594635, + 0.9989148378372192, + 0.9923701286315918, + 0.9989367127418518, + 0.9992665648460388, + 0.998930037021637, + 0.999483585357666, + 0.998840868473053, + 0.9994994401931763, + 0.9901617765426636, + 0.9995014667510986, + 0.9989330172538757, + 0.9994893074035645, + 0.9989319443702698, + 0.9994975328445435, + 0.9963221549987793, + 0.9989204406738281, + 0.9813546538352966, + 0.9989194869995117, + 0.9995088577270508, + 0.9978907704353333, + 0.9988743662834167, + 0.9988454580307007, + 0.9988265633583069, + 0.9975283741950989, + 0.9716305136680603, + 0.9986122846603394, + 0.9949206709861755, + 0.9922910332679749, + 0.9980016350746155, + 0.9987700581550598 + ], + "sentiment_counts": { + "NEGATIVE": 15, + "POSITIVE": 22 + }, + "sentiment_distribution": { + "NEGATIVE": 0.40540540540540543, + "POSITIVE": 0.5945945945945946 + }, + "sentiment_overall": [ + "POSITIVE", + 0.5945945945945946 + ] + }, + "final_label": "POSITIVE", + "final_count": 70, + "final_proportion": 0.6862745098039216, + "final_counts": { + "POSITIVE": 70, + "NEGATIVE": 32 + }, + "final_distribution": { + "POSITIVE": 0.6862745098039216, + "NEGATIVE": 0.3137254901960784 + } + } }, { "season_code": "202303", @@ -142934,7 +297958,7 @@ "9:25", "10:15", "LC 209 - Linsly-Chittenden Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -142951,7 +297975,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -142982,7 +298034,7 @@ "10:30", "11:20", "LC 209 - Linsly-Chittenden Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -142999,7 +298051,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -143030,7 +298110,7 @@ "15:30", "16:20", "WTS B30 - Watson Center 60 Sachem Street B30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -143047,7 +298127,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -143078,7 +298186,7 @@ "19:00", "19:50", "WLH 001 - William L. Harkness Hall 001", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -143095,7 +298203,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -143143,7 +298279,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -143191,7 +298355,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -143239,7 +298431,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -143287,7 +298507,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -143335,7 +298583,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -143374,7 +298650,7 @@ "13:30", "15:20", "RKZ 102 - Rosenkranz Hall 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -143388,10 +298664,81 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92678\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92678/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988137483596802 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989209175109863 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981632828712463 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 3, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 3 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -143430,7 +298777,7 @@ "9:25", "10:15", "WLH 116 - William L. Harkness Hall 116", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -143438,7 +298785,7 @@ "9:25", "10:15", "WLH 116 - William L. Harkness Hall 116", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -143454,10 +298801,169 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89160\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89160/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998872697353363, + 0.9989027976989746, + 0.998921275138855, + 0.9988388419151306, + 0.9988127946853638, + 0.9989186525344849, + 0.9988162517547607, + 0.9988452196121216, + 0.998474657535553, + 0.9988211989402771, + 0.9986806511878967, + 0.9989113807678223 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988062381744385, + 0.9898069500923157, + 0.9916468858718872, + 0.9987032413482666, + 0.9994997978210449, + 0.9888178110122681, + 0.9987931251525879, + 0.9994587302207947, + 0.9980472326278687, + 0.9916132688522339, + 0.9985653758049011, + 0.9972033500671387, + 0.9988980293273926, + 0.9987993240356445, + 0.9988569021224976, + 0.9986026883125305, + 0.9985076785087585 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.7647058823529411, + "NEGATIVE": 0.23529411764705882 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7647058823529411 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9812979698181152, + 0.9938327074050903, + 0.9988866448402405, + 0.9951303005218506, + 0.9988611936569214, + 0.9969155788421631, + 0.9994547963142395, + 0.99869304895401, + 0.9988889098167419, + 0.9988405108451843, + 0.9987828135490417, + 0.9988977909088135, + 0.9988899827003479, + 0.9989281296730042, + 0.9989211559295654, + 0.9987519979476929, + 0.998908281326294 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 14 + }, + "sentiment_distribution": { + "NEGATIVE": 0.17647058823529413, + "POSITIVE": 0.8235294117647058 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8235294117647058 + ] + }, + "final_label": "POSITIVE", + "final_count": 39, + "final_proportion": 0.8478260869565217, + "final_counts": { + "POSITIVE": 39, + "NEGATIVE": 7 + }, + "final_distribution": { + "POSITIVE": 0.8478260869565217, + "NEGATIVE": 0.15217391304347827 + } + } }, { "season_code": "202303", @@ -143490,7 +298996,7 @@ "9:25", "10:15", "LC 105 - Linsly-Chittenden Hall 105", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -143509,7 +299015,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -143542,7 +299076,7 @@ "10:30", "11:20", "LC 105 - Linsly-Chittenden Hall 105", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -143561,7 +299095,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -143594,7 +299156,7 @@ "16:00", "16:50", "WLH 210 - William L. Harkness Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -143613,7 +299175,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -143646,7 +299236,7 @@ "17:00", "17:50", "WLH 210 - William L. Harkness Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -143665,7 +299255,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -143698,7 +299316,7 @@ "19:00", "19:50", "LC 213 - Linsly-Chittenden Hall 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -143717,7 +299335,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -143758,10 +299404,38 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89004\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89004/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -143800,7 +299474,7 @@ "9:25", "11:15", "WTS B74 - Watson Center 60 Sachem Street B74", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -143816,10 +299490,99 @@ "classnotes": "", "final_exam": "Thursday, December 14, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88359\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88359/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989244341850281, + 0.9989097118377686, + 0.9988629817962646, + 0.9989198446273804 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988501071929932, + 0.998322069644928, + 0.9988399147987366, + 0.998907208442688 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998898983001709, + 0.9988883137702942, + 0.9985051155090332, + 0.9983800649642944 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 12 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -143882,10 +299645,89 @@ "classnotes": "", "final_exam": "Wednesday, December 20, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88319\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88319/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985900521278381, + 0.9989251494407654 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986591339111328, + 0.9989367127418518 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986397624015808, + 0.9989387392997742 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 1 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "final_label": "POSITIVE", + "final_count": 5, + "final_proportion": 0.8333333333333334, + "final_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + } + } }, { "season_code": "202303", @@ -143923,7 +299765,7 @@ "9:00", "10:15", "WLH 117 - William L. Harkness Hall 117", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -143931,7 +299773,7 @@ "9:00", "10:15", "WLH 117 - William L. Harkness Hall 117", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -143949,10 +299791,141 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88315\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88315/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985432624816895, + 0.9973145127296448, + 0.9986433386802673, + 0.9987773299217224, + 0.9988104104995728, + 0.9989066123962402, + 0.998579740524292, + 0.9987529516220093, + 0.998931348323822, + 0.9799685478210449, + 0.9965944886207581 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981023669242859, + 0.998315691947937, + 0.9831795692443848, + 0.9987596273422241, + 0.9988415837287903, + 0.9987687468528748, + 0.9986729621887207, + 0.9987460374832153, + 0.99885094165802, + 0.9975958466529846, + 0.9983096122741699 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 8 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2727272727272727, + "POSITIVE": 0.7272727272727273 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7272727272727273 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9947223663330078, + 0.9988194108009338, + 0.9989078044891357, + 0.9863812327384949, + 0.9986194372177124, + 0.9960517287254333, + 0.9988394379615784, + 0.9923812747001648, + 0.9989345669746399, + 0.9945172667503357 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.6, + "NEGATIVE": 0.4 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6 + ] + }, + "final_label": "POSITIVE", + "final_count": 25, + "final_proportion": 0.78125, + "final_counts": { + "POSITIVE": 25, + "NEGATIVE": 7 + }, + "final_distribution": { + "POSITIVE": 0.78125, + "NEGATIVE": 0.21875 + } + } }, { "season_code": "202303", @@ -143989,7 +299962,7 @@ "15:30", "17:20", "WTS A42 - Watson Center 60 Sachem Street A42", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -144005,10 +299978,109 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88364\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88364/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986306428909302, + 0.998813271522522, + 0.998542070388794, + 0.996751070022583, + 0.9986905455589294, + 0.9986170530319214 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986867308616638, + 0.9974671602249146, + 0.9989005327224731, + 0.9987807869911194 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988710284233093, + 0.9985365867614746, + 0.9977643489837646, + 0.9960644841194153, + 0.9972392320632935, + 0.997117280960083, + 0.9988783001899719 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 17 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -144045,7 +300117,7 @@ "13:00", "14:15", "WTS A68 - Watson Center 60 Sachem Street A68", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -144053,7 +300125,7 @@ "13:00", "14:15", "WTS A68 - Watson Center 60 Sachem Street A68", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -144067,10 +300139,135 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90061\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/90061/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.978874146938324, + 0.99888676404953, + 0.9882644414901733, + 0.9988536834716797, + 0.9988792538642883, + 0.9988831877708435, + 0.9987358450889587, + 0.998677670955658, + 0.9974786639213562 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 7 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2222222222222222, + "POSITIVE": 0.7777777777777778 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7777777777777778 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998895525932312, + 0.9989047050476074, + 0.9383124709129333, + 0.9989114999771118, + 0.9989342093467712, + 0.9988657236099243, + 0.9989288449287415, + 0.9989240765571594, + 0.9989235997200012 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988266825675964, + 0.9983831644058228, + 0.9898467659950256, + 0.9947236776351929, + 0.9989080429077148, + 0.9989332556724548, + 0.9966796636581421, + 0.9988873600959778, + 0.9989022016525269, + 0.9989362359046936, + 0.9995146989822388 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8181818181818182, + "NEGATIVE": 0.18181818181818182 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8181818181818182 + ] + }, + "final_label": "POSITIVE", + "final_count": 25, + "final_proportion": 0.8620689655172413, + "final_counts": { + "NEGATIVE": 4, + "POSITIVE": 25 + }, + "final_distribution": { + "NEGATIVE": 0.13793103448275862, + "POSITIVE": 0.8620689655172413 + } + } }, { "season_code": "202303", @@ -144107,7 +300304,7 @@ "15:30", "17:20", "WALL81 101 - 81 Wall Street 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -144121,10 +300318,107 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90050\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90050/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988008737564087, + 0.9987143278121948, + 0.9987747073173523, + 0.9989089965820312 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982043504714966, + 0.9989275336265564, + 0.9989379048347473, + 0.9988881945610046, + 0.9988960027694702 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9979645013809204, + 0.9987635612487793, + 0.9989053010940552, + 0.9987659454345703, + 0.9989166259765625, + 0.9989249110221863 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 5 + }, + "sentiment_distribution": { + "NEGATIVE": 0.16666666666666666, + "POSITIVE": 0.8333333333333334 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 0.9333333333333333, + "final_counts": { + "POSITIVE": 14, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9333333333333333, + "NEGATIVE": 0.06666666666666667 + } + } }, { "season_code": "202303", @@ -144161,7 +300455,7 @@ "15:30", "17:20", "WALL81 301 - 81 Wall Street 301", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -144178,10 +300472,101 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92668\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92668/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989327788352966, + 0.9989213943481445 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988808035850525, + 0.9989105463027954, + 0.9988579750061035, + 0.998872697353363, + 0.9989210367202759 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989381432533264, + 0.9989302754402161, + 0.9989269375801086, + 0.9983225464820862, + 0.9988954067230225, + 0.997117280960083 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 13 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -144218,7 +300603,7 @@ "13:30", "15:20", "WTS A38 - Watson Center 60 Sachem Street A38", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -144232,10 +300617,99 @@ "classnotes": "Instructor: Leibbrandt, Murray", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89943\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89943/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987163543701172, + 0.9988610744476318, + 0.9986463189125061, + 0.9988699555397034 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989112615585327, + 0.9989305138587952, + 0.998917818069458, + 0.9969176054000854 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989101886749268, + 0.9989118576049805, + 0.9987782835960388, + 0.9988586902618408 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 12 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -144281,7 +300755,7 @@ "13:00", "14:15", "HQ 132 - Humanities Quadrangle 132", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -144289,7 +300763,7 @@ "13:00", "14:15", "HQ 132 - Humanities Quadrangle 132", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -144305,10 +300779,87 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88370\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88370/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988937973976135, + 0.9988699555397034 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9950098991394043, + 0.9987722039222717 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988951086997986, + 0.9988582134246826 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 6 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -144352,7 +300903,7 @@ "13:30", "15:20", "RKZ 05 - Rosenkranz Hall 05", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -144370,10 +300921,113 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90079\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90079/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988908171653748, + 0.9989186525344849, + 0.9988468885421753, + 0.9989148378372192, + 0.9988295435905457, + 0.9988223910331726 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986775517463684, + 0.9965946078300476, + 0.9989385008811951, + 0.9988704323768616, + 0.9988952875137329, + 0.9988698363304138 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988988637924194, + 0.9989064931869507, + 0.9989142417907715, + 0.998910665512085, + 0.9988652467727661, + 0.998817503452301, + 0.9988685846328735 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 19 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -144411,7 +301065,7 @@ "13:30", "15:20", "WLH 112 - William L. Harkness Hall 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -144424,13 +301078,20 @@ ], "regnotes": "", "rp_attr": "", - "classnotes": "INTERVIEW REQUIRED. Please see canvas course site for details. Read carefully! Do not submit your requests online. Jackson School (MPP\/MAS) will be enrolled manually, professional school students do not need to submit the non-Jackson School form either. Email jackson.registrar@yale.edu if you are unsure about the process! \n\nDeadline for interviews: April 21 or before.", + "classnotes": "INTERVIEW REQUIRED. Please see canvas course site for details. Read carefully! Do not submit your requests online. Jackson School (MPP/MAS) will be enrolled manually, professional school students do not need to submit the non-Jackson School form either. Email jackson.registrar@yale.edu if you are unsure about the process! \n\nDeadline for interviews: April 21 or before.", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88375\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88375/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -144468,7 +301129,7 @@ "11:35", "12:50", "WLH 201 - William L. Harkness Hall 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -144476,7 +301137,7 @@ "11:35", "12:50", "WLH 201 - William L. Harkness Hall 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -144488,10 +301149,259 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89804\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89804/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9980446100234985, + 0.995498538017273, + 0.9988802075386047, + 0.9969246983528137, + 0.9988815188407898, + 0.9989281296730042, + 0.9989172220230103, + 0.9986146688461304, + 0.998663067817688, + 0.9988542795181274, + 0.9988547563552856, + 0.9840733408927917, + 0.9337474703788757, + 0.9987670183181763, + 0.9987444877624512, + 0.9988956451416016, + 0.998865008354187, + 0.9989218711853027, + 0.998892605304718, + 0.9988753199577332, + 0.9988983869552612, + 0.99888676404953, + 0.9983609318733215, + 0.9989136457443237, + 0.9988535642623901, + 0.9987640380859375, + 0.9986752867698669, + 0.9986577033996582, + 0.9987932443618774, + 0.9987227320671082 + ], + "sentiment_counts": { + "POSITIVE": 28, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.9333333333333333, + "NEGATIVE": 0.06666666666666667 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9333333333333333 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9995023012161255, + 0.9987130165100098, + 0.998853325843811, + 0.9994813799858093, + 0.9987863898277283, + 0.9988992214202881, + 0.9980809688568115, + 0.9989136457443237, + 0.9988918900489807, + 0.9892022013664246, + 0.9986808896064758, + 0.9974958300590515, + 0.9988045692443848, + 0.9989206790924072, + 0.9989868998527527, + 0.9989030361175537, + 0.9989169836044312, + 0.9989099502563477, + 0.9987209439277649, + 0.9988510608673096, + 0.9988775849342346, + 0.9988842606544495, + 0.9989135265350342, + 0.9994595646858215, + 0.9987654685974121 + ], + "sentiment_counts": { + "NEGATIVE": 4, + "POSITIVE": 21 + }, + "sentiment_distribution": { + "NEGATIVE": 0.16, + "POSITIVE": 0.84 + }, + "sentiment_overall": [ + "POSITIVE", + 0.84 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.974139928817749, + 0.9988659620285034, + 0.9987859129905701, + 0.9985450506210327, + 0.9988530874252319, + 0.9989109039306641, + 0.9989091157913208, + 0.9988924860954285, + 0.9988822340965271, + 0.9988849759101868, + 0.9988653659820557, + 0.9988608360290527, + 0.9988003969192505, + 0.9956355690956116, + 0.998927652835846, + 0.9986953139305115, + 0.9987119436264038, + 0.9988522529602051, + 0.9983779191970825, + 0.9989290833473206, + 0.9989240765571594, + 0.9989332556724548, + 0.9989155530929565, + 0.9988866448402405, + 0.9986932873725891, + 0.9988338351249695, + 0.9989153146743774, + 0.9982553124427795, + 0.9989144802093506, + 0.998938262462616, + 0.998161256313324, + 0.9987782835960388, + 0.9964078068733215, + 0.9967250227928162, + 0.9988743662834167, + 0.9989063739776611 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 33 + }, + "sentiment_distribution": { + "NEGATIVE": 0.08333333333333333, + "POSITIVE": 0.9166666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9166666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 82, + "final_proportion": 0.9010989010989011, + "final_counts": { + "POSITIVE": 82, + "NEGATIVE": 9 + }, + "final_distribution": { + "POSITIVE": 0.9010989010989011, + "NEGATIVE": 0.0989010989010989 + } + } }, { "season_code": "202303", @@ -144522,7 +301432,7 @@ "10:30", "11:20", "WLH 210 - William L. Harkness Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -144537,7 +301447,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -144568,7 +301506,7 @@ "17:00", "17:50", "WLH 007 - William L. Harkness Hall 007", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -144583,7 +301521,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -144614,7 +301580,7 @@ "10:30", "11:20", "WLH 211 - William L. Harkness Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -144629,7 +301595,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -144660,7 +301654,7 @@ "14:30", "15:20", "WTS B60 - Watson Center 60 Sachem Street B60", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -144675,7 +301669,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -144706,7 +301728,7 @@ "15:30", "16:20", "WALL81 101 - 81 Wall Street 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -144721,7 +301743,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -144752,7 +301802,7 @@ "14:30", "15:20", "HQ C01 - Humanities Quadrangle C01", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -144767,7 +301817,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -144798,7 +301876,7 @@ "10:30", "11:20", "CO493 106 - 493 College Street 106", - "https:\/\/map.yale.edu\/?id=1910#!m\/560001" + "https://map.yale.edu/?id=1910#!m/560001" ] ] }, @@ -144813,7 +301891,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -144844,7 +301950,7 @@ "16:00", "16:50", "WLH 007 - William L. Harkness Hall 007", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -144859,7 +301965,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -144890,7 +302024,7 @@ "16:30", "17:20", "WALL53 208 - 53 Wall Street 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/559554" + "https://map.yale.edu/?id=1910#!m/559554" ] ] }, @@ -144905,7 +302039,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -144936,7 +302098,7 @@ "15:30", "16:20", "WALL81 301 - 81 Wall Street 301", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -144951,7 +302113,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -144993,7 +302183,7 @@ "13:30", "15:20", "KRN 321 - Kroon Hall 321", - "https:\/\/map.yale.edu\/?id=1910#!m\/559995" + "https://map.yale.edu/?id=1910#!m/559995" ] ] }, @@ -145005,7 +302195,7 @@ ], "flags": [ "YC Ethnography: Elective", - "YC EVST: Core Human\/Social Sci", + "YC EVST: Core Human/Social Sci", "YC EVST: Advanced Seminar", "YC GLBL: Elective" ], @@ -145014,10 +302204,113 @@ "classnotes": "YC juniors and seniors have priority for admission", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88235\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88235/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989179372787476, + 0.9986909031867981, + 0.998598039150238, + 0.9960972666740417, + 0.9988501071929932, + 0.9987951517105103 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989284873008728, + 0.9810959696769714, + 0.9988623857498169, + 0.9988846182823181, + 0.9983105659484863, + 0.9989076852798462 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989305138587952, + 0.9988071918487549, + 0.9988629817962646, + 0.9989218711853027, + 0.9989014863967896, + 0.9988675117492676, + 0.9988678693771362 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 19 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -145054,7 +302347,7 @@ "15:30", "17:20", "WLH 011 - William L. Harkness Hall 011", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -145068,10 +302361,109 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90129\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90129/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989261031150818, + 0.9984925985336304, + 0.9987986087799072, + 0.9986311793327332, + 0.9985888600349426 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989149570465088, + 0.9986997842788696, + 0.9988991022109985, + 0.9986451268196106, + 0.9987040758132935, + 0.9988957643508911 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998853325843811, + 0.9988378882408142, + 0.9987176656723022, + 0.9989055395126343, + 0.998908519744873, + 0.9989307522773743 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 17 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -145108,7 +302500,7 @@ "13:30", "15:20", "WTS A68 - Watson Center 60 Sachem Street A68", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -145124,10 +302516,89 @@ "classnotes": "", "final_exam": "Wednesday, December 20, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90130\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90130/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988794922828674, + 0.9989252686500549 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998910665512085, + 0.9985346794128418, + 0.9988967180252075 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988741278648376, + 0.9989263415336609 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 7 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -145170,7 +302641,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -145215,7 +302714,7 @@ "10:30", "11:20", "SLB AUD - Sterling Law Buildings AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/531532" + "https://map.yale.edu/?id=1910#!m/531532" ] ], "Thursday": [ @@ -145223,7 +302722,7 @@ "10:30", "11:20", "SLB AUD - Sterling Law Buildings AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/531532" + "https://map.yale.edu/?id=1910#!m/531532" ] ] }, @@ -145245,10 +302744,133 @@ "classnotes": "", "final_exam": "Wednesday, December 20, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88386\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88386/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985223412513733, + 0.9989092350006104, + 0.9987646341323853, + 0.9987454414367676, + 0.9985785484313965, + 0.9848566651344299, + 0.9987179040908813, + 0.9988694787025452, + 0.9988390803337097 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988865256309509, + 0.9981716871261597, + 0.9995027780532837, + 0.9989137649536133, + 0.9960718154907227, + 0.997552216053009, + 0.9951534271240234, + 0.9966200590133667, + 0.9995075464248657 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988435506820679, + 0.9930912256240845, + 0.9987755417823792, + 0.9971940517425537, + 0.9887712597846985, + 0.9986974596977234, + 0.9988498687744141, + 0.9989063739776611, + 0.9982147216796875, + 0.9985767602920532 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.6, + "NEGATIVE": 0.4 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 0.7142857142857143, + "final_counts": { + "POSITIVE": 20, + "NEGATIVE": 8 + }, + "final_distribution": { + "POSITIVE": 0.7142857142857143, + "NEGATIVE": 0.2857142857142857 + } + } }, { "season_code": "202303", @@ -145281,7 +302903,7 @@ "16:00", "16:50", "WTS A39 - Watson Center 60 Sachem Street A39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -145305,7 +302927,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -145338,7 +302988,7 @@ "17:00", "17:50", "WTS A39 - Watson Center 60 Sachem Street A39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -145362,7 +303012,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -145395,7 +303073,7 @@ "15:30", "16:20", "WTS B39 - Watson Center 60 Sachem Street B39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -145419,7 +303097,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -145452,7 +303158,7 @@ "16:30", "17:20", "WTS B39 - Watson Center 60 Sachem Street B39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -145476,7 +303182,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -145509,7 +303243,7 @@ "9:25", "10:15", "WLH 210 - William L. Harkness Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -145533,7 +303267,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -145566,7 +303328,7 @@ "11:35", "12:25", "WLH 210 - William L. Harkness Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -145590,7 +303352,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -145627,14 +303417,14 @@ "9:25", "11:15", "WTS A38 - Watson Center 60 Sachem Street A38", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, "skills": [], "areas": [], "flags": [ - "PH: Global Health, Development\/Political Economy" + "PH: Global Health, Development/Political Economy" ], "regnotes": "", "rp_attr": "", @@ -145644,7 +303434,90 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989252686500549, + 0.9988288283348083, + 0.9986975193023682 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989007711410522, + 0.9988635778427124 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989153146743774, + 0.9947415590286255, + 0.9987788796424866, + 0.9980168342590332 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 9 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -145681,24 +303554,107 @@ "15:30", "17:20", "WTS A39 - Watson Center 60 Sachem Street A39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, "skills": [], "areas": [], "flags": [ - "PH: Global Health, Development\/Political Economy" + "PH: Global Health, Development/Political Economy" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90537\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90537/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998890221118927, + 0.9987651109695435, + 0.9987807869911194 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989206790924072, + 0.9988991022109985, + 0.998895525932312 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9972706437110901, + 0.9984884262084961, + 0.9989222288131714 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 9 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -145735,14 +303691,14 @@ "19:00", "20:50", "WTS A35 - Watson Center 60 Sachem Street A35", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, "skills": [], "areas": [], "flags": [ - "PH: Global Health, Development\/Political Economy" + "PH: Global Health, Development/Political Economy" ], "regnotes": "", "rp_attr": "", @@ -145752,7 +303708,82 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988248944282532, + 0.9989025592803955 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988736510276794 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9961966276168823, + 0.9988253712654114 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 5, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 5 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -145789,14 +303820,14 @@ "9:25", "11:15", "WTS A39 - Watson Center 60 Sachem Street A39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, "skills": [], "areas": [], "flags": [ - "PH: Global Health, Development\/Political Economy" + "PH: Global Health, Development/Political Economy" ], "regnotes": "", "rp_attr": "", @@ -145806,7 +303837,88 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9990242719650269, + 0.9989117383956909, + 0.9989141225814819 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998914361000061, + 0.9989006519317627 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988793730735779, + 0.9989250302314758 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 0.8571428571428571, + "final_counts": { + "NEGATIVE": 1, + "POSITIVE": 6 + }, + "final_distribution": { + "NEGATIVE": 0.14285714285714285, + "POSITIVE": 0.8571428571428571 + } + } }, { "season_code": "202303", @@ -145843,14 +303955,14 @@ "13:30", "15:20", "WTS A38 - Watson Center 60 Sachem Street A38", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, "skills": [], "areas": [], "flags": [ - "PH: Global Health, Development\/Political Economy" + "PH: Global Health, Development/Political Economy" ], "regnotes": "", "rp_attr": "", @@ -145860,7 +303972,88 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988508224487305, + 0.9907451868057251 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9995006322860718, + 0.9987198114395142 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 1 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986452460289001, + 0.9988265633583069, + 0.9989319443702698 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 5, + "final_proportion": 0.7142857142857143, + "final_counts": { + "POSITIVE": 5, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.7142857142857143, + "NEGATIVE": 0.2857142857142857 + } + } }, { "season_code": "202303", @@ -145897,24 +304090,103 @@ "15:30", "17:20", "WTS A32 - Watson Center 60 Sachem Street A32", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, "skills": [], "areas": [], "flags": [ - "PH: Global Health, Development\/Political Economy" + "PH: Global Health, Development/Political Economy" ], "regnotes": "", "rp_attr": "", "classnotes": "Roland McKay - Gulf Security for a New Era", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90535\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90535/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983147382736206, + 0.9989261031150818 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9814961552619934, + 0.9988310933113098 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 1 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9970173835754395, + 0.9989245533943176 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 5, + "final_proportion": 0.8333333333333334, + "final_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + } + } }, { "season_code": "202303", @@ -145951,24 +304223,107 @@ "13:30", "15:20", "WTS A35 - Watson Center 60 Sachem Street A35", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, "skills": [], "areas": [], "flags": [ - "PH: Global Health, Development\/Political Economy" + "PH: Global Health, Development/Political Economy" ], "regnotes": "", "rp_attr": "", "classnotes": "Kristina Talbert-Slagle", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90536\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90536/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986031651496887, + 0.998477041721344, + 0.9902965426445007 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984734654426575, + 0.9881735444068909, + 0.9979806542396545 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982553124427795, + 0.9988558292388916 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 0.875, + "final_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + } + } }, { "season_code": "202303", @@ -146005,14 +304360,14 @@ "9:25", "11:15", "WTS B30 - Watson Center 60 Sachem Street B30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, "skills": [], "areas": [], "flags": [ - "PH: Global Health, Development\/Political Economy" + "PH: Global Health, Development/Political Economy" ], "regnotes": "", "rp_attr": "", @@ -146022,7 +304377,96 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989227652549744, + 0.998873770236969, + 0.9989038705825806, + 0.9988827109336853 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998925507068634, + 0.9986581802368164, + 0.9989018440246582, + 0.998927652835846 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988975524902344, + 0.9963117241859436, + 0.9989069700241089, + 0.9989196062088013 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 12 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -146060,7 +304504,7 @@ "skills": [], "areas": [], "flags": [ - "PH: Global Health, Development\/Political Economy" + "PH: Global Health, Development/Political Economy" ], "regnotes": "", "rp_attr": "", @@ -146070,12 +304514,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "While policy writing draws upon principles familiar to academic writing, it has its own conventions, which are rooted in the needs and practices of policy professionals. In a series of assignments, students carry out every step of the policy analysis process, from defining, framing, and analyzing the problem to identifying and evaluating possible solutions, to building a case for recommendations. Students also learn principles for editing their writing for clarity and concision and gain extensive experience applying those principles to written work. In addition to reading and critiquing the writing of their peers, students also study a selection of texts intended to enhance understanding of the writing and editing process. Assignments include a backgrounder\/stakeholder analysis, options analysis, and op-ed.", + "description": "While policy writing draws upon principles familiar to academic writing, it has its own conventions, which are rooted in the needs and practices of policy professionals. In a series of assignments, students carry out every step of the policy analysis process, from defining, framing, and analyzing the problem to identifying and evaluating possible solutions, to building a case for recommendations. Students also learn principles for editing their writing for clarity and concision and gain extensive experience applying those principles to written work. In addition to reading and critiquing the writing of their peers, students also study a selection of texts intended to enhance understanding of the writing and editing process. Assignments include a backgrounder/stakeholder analysis, options analysis, and op-ed.", "short_title": "Professional Public Policy Wr...", "title": "Professional Public Policy Writing", "school": "GB", @@ -146107,7 +304579,7 @@ "16:00", "17:15", "WTS B51 - Watson Center 60 Sachem Street B51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -146115,7 +304587,7 @@ "16:00", "17:15", "WTS B51 - Watson Center 60 Sachem Street B51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -146128,18 +304600,46 @@ ], "regnotes": "", "rp_attr": "", - "classnotes": "0.5 credit at Jackson school, offered fall-1 (7 weeks, 2x per week), SAT\/UNSAT grading mode.", + "classnotes": "0.5 credit at Jackson school, offered fall-1 (7 weeks, 2x per week), SAT/UNSAT grading mode.", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89177\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89177/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "This course covers key economic theories\/models used for the analysis of micro- and macroeconomic policy issues. We spend half the course covering microeconomics topics such consumer and producer choices, effects of market intervention, market competition, and issues with public goods. In the second half, we move to the larger (macro) economic picture and discuss topics such as measures of economic growth, inflation, the labor market, and the financial market. The course emphasizes training economic intuition and providing space for students to explore how these economic concepts relate to policy issues of their interest. The course also provides the economic background necessary to enroll in the Global Economics core GLBL 5010, taken in the spring term.", + "description": "This course covers key economic theories/models used for the analysis of micro- and macroeconomic policy issues. We spend half the course covering microeconomics topics such consumer and producer choices, effects of market intervention, market competition, and issues with public goods. In the second half, we move to the larger (macro) economic picture and discuss topics such as measures of economic growth, inflation, the labor market, and the financial market. The course emphasizes training economic intuition and providing space for students to explore how these economic concepts relate to policy issues of their interest. The course also provides the economic background necessary to enroll in the Global Economics core GLBL 5010, taken in the spring term.", "short_title": "Fundamentals of Economics for...", "title": "Fundamentals of Economics for Global Affairs", "school": "GB", @@ -146174,7 +304674,7 @@ "11:35", "12:50", "WTS A60 - Watson Center 60 Sachem Street A60", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -146182,7 +304682,7 @@ "11:35", "12:50", "WTS A60 - Watson Center 60 Sachem Street A60", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -146194,15 +304694,43 @@ "classnotes": "Restricted to MPP first year students at the Jackson School. 1st year MPP students may waive out by taking an exam in August. Joint degree students with SOM will be automatically exempt from taking the course if they have excelled in MGT 404 or MGT 425.\n", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89178\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "", - "description": "This course covers key economic theories\/models used for the analysis of micro- and macroeconomic policy issues. We spend half the course covering microeconomics topics such consumer and producer choices, effects of market intervention, market competition, and issues with public goods. In the second half, we move to the larger (macro) economic picture and discuss topics such as measures of economic growth, inflation, the labor market, and the financial market. The course emphasizes training economic intuition and providing space for students to explore how these economic concepts relate to policy issues of their interest. The course also provides the economic background necessary to enroll in the Global Economics core GLBL 5010, taken in the spring term.", + "syllabus_url": "https://yale.instructure.com/courses/89178/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } + }, + { + "season_code": "202303", + "requirements": "", + "description": "This course covers key economic theories/models used for the analysis of micro- and macroeconomic policy issues. We spend half the course covering microeconomics topics such consumer and producer choices, effects of market intervention, market competition, and issues with public goods. In the second half, we move to the larger (macro) economic picture and discuss topics such as measures of economic growth, inflation, the labor market, and the financial market. The course emphasizes training economic intuition and providing space for students to explore how these economic concepts relate to policy issues of their interest. The course also provides the economic background necessary to enroll in the Global Economics core GLBL 5010, taken in the spring term.", "short_title": "Fundamentals of Economics for...", "title": "Fundamentals of Economics for Global Affairs", "school": "GB", @@ -146248,15 +304776,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89178\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89178/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "This course covers key economic theories\/models used for the analysis of micro- and macroeconomic policy issues. We spend half the course covering microeconomics topics such consumer and producer choices, effects of market intervention, market competition, and issues with public goods. In the second half, we move to the larger (macro) economic picture and discuss topics such as measures of economic growth, inflation, the labor market, and the financial market. The course emphasizes training economic intuition and providing space for students to explore how these economic concepts relate to policy issues of their interest. The course also provides the economic background necessary to enroll in the Global Economics core GLBL 5010, taken in the spring term.", + "description": "This course covers key economic theories/models used for the analysis of micro- and macroeconomic policy issues. We spend half the course covering microeconomics topics such consumer and producer choices, effects of market intervention, market competition, and issues with public goods. In the second half, we move to the larger (macro) economic picture and discuss topics such as measures of economic growth, inflation, the labor market, and the financial market. The course emphasizes training economic intuition and providing space for students to explore how these economic concepts relate to policy issues of their interest. The course also provides the economic background necessary to enroll in the Global Economics core GLBL 5010, taken in the spring term.", "short_title": "Fundamentals of Economics for...", "title": "Fundamentals of Economics for Global Affairs", "school": "GB", @@ -146302,10 +304858,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89178\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89178/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -146358,18 +304942,46 @@ ], "regnotes": "", "rp_attr": "", - "classnotes": "Classroom Location: School of Management room 2230 EXCEPT for 10\/16 held in SEMINAR room of Horchow Hall.\n\n0.5 credit at Jackson school, offered fall-1 (7 sessions), SAT\/UNSAT grading mode.", + "classnotes": "Classroom Location: School of Management room 2230 EXCEPT for 10/16 held in SEMINAR room of Horchow Hall.\n\n0.5 credit at Jackson school, offered fall-1 (7 sessions), SAT/UNSAT grading mode.", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89179\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89179/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "This course is an introduction to statistics and their application in public policy and global affairs research. It consists of two weekly class sessions in addition to a discussion section. The discussion section is used to cover problems encountered in the lectures and written assignments, as well as to develop statistical computing skills. Throughout the term we cover issues related to data collection (including surveys, sampling, and weighted data), data description (graphical and numerical techniques for summarizing data), probability and probability distributions, confidence intervals, hypothesis testing, measures of association, and regression analysis. The course assumes no prior knowledge of statistics and no mathematical knowledge beyond calculus. Graded only, sat\/unsat option is not permissible.", + "description": "This course is an introduction to statistics and their application in public policy and global affairs research. It consists of two weekly class sessions in addition to a discussion section. The discussion section is used to cover problems encountered in the lectures and written assignments, as well as to develop statistical computing skills. Throughout the term we cover issues related to data collection (including surveys, sampling, and weighted data), data description (graphical and numerical techniques for summarizing data), probability and probability distributions, confidence intervals, hypothesis testing, measures of association, and regression analysis. The course assumes no prior knowledge of statistics and no mathematical knowledge beyond calculus. Graded only, sat/unsat option is not permissible.", "short_title": "Applied Methods of Analysis", "title": "Applied Methods of Analysis", "school": "GB", @@ -146401,7 +305013,7 @@ "13:00", "14:15", "WLH 119 - William L. Harkness Hall 119", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -146409,7 +305021,7 @@ "13:00", "14:15", "WLH 119 - William L. Harkness Hall 119", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -146423,15 +305035,43 @@ "classnotes": "CORE class open and required for 1st year MPP students at the Jackson School only. ", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89180\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "", - "description": "Economics can tell us with increasing precision what policies maximize growth, welfare, and productivity. But how are policies actually made? Why are so many poor policies adopted and good ones foregone? In this course students investigate how government organization and the structure of political competition shape the conditions for better and worse economic policy making across a range of economic policies including macroeconomic policy, corporate and financial regulation, industrial policy, and trade. Students consider these policy areas in democratic and nondemocratic regimes, and in developed and developing countries. Graded only, sat\/unsat option is not permissible.", + "syllabus_url": "https://yale.instructure.com/courses/89180/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } + }, + { + "season_code": "202303", + "requirements": "", + "description": "Economics can tell us with increasing precision what policies maximize growth, welfare, and productivity. But how are policies actually made? Why are so many poor policies adopted and good ones foregone? In this course students investigate how government organization and the structure of political competition shape the conditions for better and worse economic policy making across a range of economic policies including macroeconomic policy, corporate and financial regulation, industrial policy, and trade. Students consider these policy areas in democratic and nondemocratic regimes, and in developed and developing countries. Graded only, sat/unsat option is not permissible.", "short_title": "Comparative Politics for Glob...", "title": "Comparative Politics for Global Affairs", "school": "GB", @@ -146463,7 +305103,7 @@ "14:30", "15:45", "WLH 117 - William L. Harkness Hall 117", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -146471,7 +305111,7 @@ "14:30", "15:45", "WLH 117 - William L. Harkness Hall 117", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -146485,10 +305125,38 @@ "classnotes": "The CORE class is only open (required) for Jackson School MPP students! Students may take this course in their first or second year.", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89181\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89181/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -146525,7 +305193,7 @@ "18:00", "19:50", "WTS A42 - Watson Center 60 Sachem Street A42", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -146537,10 +305205,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92621\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92621/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -146577,12 +305273,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "For nearly twenty years, the world has seen the role, funding, and employment of U.S. Special Operations Forces (SOF) increase in ways that might seem unrecognizable to previous generations of civilian and military leaders. As the world transitions from two decades of SOF-heavy conflict into Great Power Competition among nation states, an understanding of the SOF community\u2019s history, evolution, and future will be critical for those trying to navigate national security questions in the decades to come. This course looks specifically at historic utilization of these forces and at post-9\/11 expansion of authorities, funding, and mission-sets; and it considers what their proper role and function may look like moving forward. Students gain a foundational understanding of a relatively small component of the U.S. military with an outsized strategic position on the global stage.", + "description": "For nearly twenty years, the world has seen the role, funding, and employment of U.S. Special Operations Forces (SOF) increase in ways that might seem unrecognizable to previous generations of civilian and military leaders. As the world transitions from two decades of SOF-heavy conflict into Great Power Competition among nation states, an understanding of the SOF community\u2019s history, evolution, and future will be critical for those trying to navigate national security questions in the decades to come. This course looks specifically at historic utilization of these forces and at post-9/11 expansion of authorities, funding, and mission-sets; and it considers what their proper role and function may look like moving forward. Students gain a foundational understanding of a relatively small component of the U.S. military with an outsized strategic position on the global stage.", "short_title": "Introduction to Special Opera...", "title": "Introduction to Special Operations", "school": "GB", @@ -146614,7 +305338,7 @@ "17:30", "19:20", "HLH55 HORCHOW - 55 Hillhouse HORCHOW", - "https:\/\/map.yale.edu\/?id=1910#!m\/560099" + "https://map.yale.edu/?id=1910#!m/560099" ] ] }, @@ -146625,13 +305349,41 @@ ], "regnotes": "", "rp_attr": "", - "classnotes": "APPLICATION REQUIRED, for more information visit https:\/\/jackson.yale.edu\/academics\/registrar\/\nPlease refrain from emailing the instructor\n\nCourse will be held in the Seminar room Horchow Hall (55 Hillhouse Avenue). First door on your left as you enter the building. ", + "classnotes": "APPLICATION REQUIRED, for more information visit https://jackson.yale.edu/academics/registrar/\nPlease refrain from emailing the instructor\n\nCourse will be held in the Seminar room Horchow Hall (55 Hillhouse Avenue). First door on your left as you enter the building. ", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89182\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89182/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -146668,7 +305420,7 @@ "13:30", "15:20", "WTS A42 - Watson Center 60 Sachem Street A42", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -146679,13 +305431,41 @@ ], "regnotes": "", "rp_attr": "", - "classnotes": "Registration instructions can be found on the course canvas site. Questions can\/should be directed to jackson.registrar@yale.edu", + "classnotes": "Registration instructions can be found on the course canvas site. Questions can/should be directed to jackson.registrar@yale.edu", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89257\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89257/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -146726,7 +305506,7 @@ "15:30", "17:20", "WTS B74 - Watson Center 60 Sachem Street B74", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -146740,10 +305520,38 @@ "classnotes": "Instructor Permission Required. If you wish to enroll for Fall 2023, please contact the instructors by email (Joan.Feigenbaum@yale.edu and Edward.Wittenstein@yale.edu).", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88864\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88864/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -146780,7 +305588,7 @@ "10:10", "12:00", "SLB 109 - Sterling Law Buildings 109", - "https:\/\/map.yale.edu\/?id=1910#!m\/531532" + "https://map.yale.edu/?id=1910#!m/531532" ] ] }, @@ -146792,10 +305600,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91834\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91834/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -146833,7 +305669,7 @@ "13:30", "15:20", "WLH 112 - William L. Harkness Hall 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -146842,13 +305678,20 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "INTERVIEW REQUIRED. Please see canvas course site for details. Read carefully! Do not submit your requests online. Jackson School (MPP\/MAS) will be enrolled manually, professional school students do not need to submit the non-Jackson School form either. Email jackson.registrar@yale.edu if you are unsure about the process! \n\nDeadline for interviews: April 21 or before.", + "classnotes": "INTERVIEW REQUIRED. Please see canvas course site for details. Read carefully! Do not submit your requests online. Jackson School (MPP/MAS) will be enrolled manually, professional school students do not need to submit the non-Jackson School form either. Email jackson.registrar@yale.edu if you are unsure about the process! \n\nDeadline for interviews: April 21 or before.", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88375\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88375/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -146885,7 +305728,7 @@ "16:00", "17:50", "WTS A35 - Watson Center 60 Sachem Street A35", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -146897,10 +305740,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90215\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90215/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -146937,7 +305808,7 @@ "13:30", "15:20", "WTS A32 - Watson Center 60 Sachem Street A32", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -146951,10 +305822,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89183\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89183/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -146991,7 +305890,7 @@ "9:00", "10:50", "WTS B74 - Watson Center 60 Sachem Street B74", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -147003,13 +305902,41 @@ ], "regnotes": "", "rp_attr": "", - "classnotes": "Course dates: 10\/25, 11\/1, 11\/8, 11\/15, 11\/29, 12\/6, 12\/13\nNO CLASS: 11\/22", + "classnotes": "Course dates: 10/25, 11/1, 11/8, 11/15, 11/29, 12/6, 12/13\nNO CLASS: 11/22", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89883\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89883/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -147049,7 +305976,7 @@ "11:35", "12:50", "YSB MARSH - Yale Science Building MARSH", - "https:\/\/map.yale.edu\/?id=1910#!m\/563700" + "https://map.yale.edu/?id=1910#!m/563700" ] ], "Thursday": [ @@ -147057,22 +305984,601 @@ "11:35", "12:50", "YSB MARSH - Yale Science Building MARSH", - "https:\/\/map.yale.edu\/?id=1910#!m\/563700" - ] - ] - }, - "skills": [], - "areas": [], - "flags": [], - "regnotes": "", - "rp_attr": "", - "classnotes": "", - "final_exam": "", - "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88301\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "https://map.yale.edu/?id=1910#!m/563700" + ] + ] + }, + "skills": [], + "areas": [], + "flags": [], + "regnotes": "", + "rp_attr": "", + "classnotes": "", + "final_exam": "", + "course_home_url": "", + "syllabus_url": "https://yale.instructure.com/courses/88301/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988328814506531, + 0.9987678527832031, + 0.9989029169082642, + 0.9987850785255432, + 0.9985333681106567, + 0.998874843120575, + 0.9987993240356445, + 0.9916856288909912, + 0.9987795948982239, + 0.992846667766571, + 0.9989186525344849, + 0.9987413287162781, + 0.9857977032661438, + 0.9986491799354553, + 0.9988352656364441, + 0.9988735318183899, + 0.9989136457443237, + 0.9989369511604309, + 0.9984112977981567, + 0.998889148235321, + 0.9985790252685547, + 0.9989058971405029, + 0.9988297820091248, + 0.9988999366760254, + 0.9987982511520386, + 0.9975742697715759, + 0.997580885887146, + 0.9989216327667236, + 0.9987282156944275, + 0.99814772605896, + 0.9989179372787476, + 0.99883633852005, + 0.9376633167266846, + 0.99861741065979, + 0.9987965822219849, + 0.9989234805107117, + 0.998908281326294, + 0.9838896989822388, + 0.9987568855285645, + 0.9987894892692566, + 0.9988409876823425, + 0.9988536834716797, + 0.998916506767273, + 0.9987753033638, + 0.9988309741020203, + 0.9986878037452698, + 0.9992117881774902, + 0.9988033771514893, + 0.998843789100647, + 0.9776723980903625, + 0.9975645542144775, + 0.9988446235656738, + 0.9988473653793335, + 0.9986982345581055, + 0.9903036952018738, + 0.9705064296722412, + 0.9989140033721924, + 0.9988831877708435, + 0.998897910118103, + 0.993658721446991, + 0.9988058805465698, + 0.9988296627998352, + 0.9988345503807068, + 0.9988833069801331, + 0.9988095760345459, + 0.9907042384147644, + 0.9988505840301514, + 0.9987712502479553, + 0.9987385869026184, + 0.9988734126091003, + 0.99809330701828, + 0.9989033937454224, + 0.9989109039306641, + 0.9988868832588196, + 0.9988898634910583, + 0.9947611689567566 + ], + "sentiment_counts": { + "POSITIVE": 69, + "NEGATIVE": 7 + }, + "sentiment_distribution": { + "POSITIVE": 0.9078947368421053, + "NEGATIVE": 0.09210526315789473 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9078947368421053 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988524913787842, + 0.9989342093467712, + 0.9989349246025085, + 0.9952126741409302, + 0.9986928105354309, + 0.9988322854042053, + 0.9987527132034302, + 0.9988521337509155, + 0.9984802603721619, + 0.9989323019981384, + 0.9988800883293152, + 0.9988971948623657, + 0.9989069700241089, + 0.9988536834716797, + 0.9974876642227173, + 0.9984444975852966, + 0.9994601607322693, + 0.9973527193069458, + 0.9988449811935425, + 0.9988797307014465, + 0.9988973140716553, + 0.9988452196121216, + 0.9986401200294495, + 0.9988596439361572, + 0.9989132881164551, + 0.9988672733306885, + 0.9989253878593445, + 0.9988951086997986, + 0.9989296793937683, + 0.8647946715354919, + 0.9988044500350952, + 0.9988201260566711, + 0.9988527297973633, + 0.9988943934440613, + 0.998814582824707, + 0.9907764792442322, + 0.9958012700080872, + 0.9988685846328735, + 0.997369647026062, + 0.9677252173423767, + 0.9988704323768616, + 0.998880922794342, + 0.9986574649810791, + 0.9988893866539001, + 0.9986768364906311, + 0.9994491934776306, + 0.9989185333251953, + 0.9988904595375061, + 0.9989345669746399, + 0.9987977743148804, + 0.9989196062088013, + 0.9871354699134827, + 0.9989036321640015, + 0.997565507888794, + 0.9994885921478271, + 0.9989306330680847, + 0.9986711740493774, + 0.9976551532745361, + 0.9987519979476929, + 0.9989110231399536, + 0.9987799525260925, + 0.9988604784011841, + 0.9989546537399292, + 0.999433696269989, + 0.9988986253738403, + 0.9988963603973389, + 0.9988654851913452, + 0.998879611492157, + 0.9993359446525574, + 0.9988881945610046, + 0.9988303780555725, + 0.9988094568252563, + 0.9988603591918945, + 0.998600423336029, + 0.9989230036735535, + 0.9987108707427979, + 0.9984436631202698, + 0.9948320388793945, + 0.9988206028938293, + 0.9974150657653809, + 0.9988582134246826, + 0.9989387392997742, + 0.9988917708396912, + 0.9988988637924194, + 0.9987918734550476, + 0.9986183643341064 + ], + "sentiment_counts": { + "POSITIVE": 75, + "NEGATIVE": 11 + }, + "sentiment_distribution": { + "POSITIVE": 0.872093023255814, + "NEGATIVE": 0.12790697674418605 + }, + "sentiment_overall": [ + "POSITIVE", + 0.872093023255814 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988653659820557, + 0.997117280960083, + 0.9982553124427795, + 0.9988961219787598, + 0.9989204406738281, + 0.9989281296730042, + 0.9988858103752136, + 0.9989022016525269, + 0.9989365935325623, + 0.9897352457046509, + 0.9915253520011902, + 0.9988810420036316, + 0.998927891254425, + 0.9989368319511414, + 0.9989221096038818, + 0.9988188147544861, + 0.9986863732337952, + 0.9969866871833801, + 0.9981594681739807, + 0.9989274144172668, + 0.9988725781440735, + 0.9988383650779724, + 0.9989064931869507, + 0.9989125728607178, + 0.9989036321640015, + 0.9988792538642883, + 0.9989277720451355, + 0.9988688826560974, + 0.9989233613014221, + 0.9987791180610657, + 0.9950087070465088, + 0.9988943934440613, + 0.9988545179367065, + 0.9989001750946045, + 0.998924195766449, + 0.9982967972755432, + 0.9986022114753723, + 0.9981766939163208, + 0.998323380947113, + 0.9989210367202759, + 0.9980652928352356, + 0.9988710284233093, + 0.9988687634468079, + 0.9989157915115356, + 0.9987446069717407, + 0.9987768530845642, + 0.9986080527305603, + 0.9995026588439941, + 0.9988376498222351, + 0.998927891254425, + 0.9989131689071655, + 0.9989184141159058, + 0.9813989996910095, + 0.9988642930984497, + 0.9987595081329346, + 0.998931348323822, + 0.998908519744873, + 0.9988783001899719, + 0.9988755583763123, + 0.9983327984809875, + 0.9989163875579834, + 0.9994763731956482, + 0.9983184337615967, + 0.9988032579421997, + 0.9989168643951416, + 0.997117280960083, + 0.9988829493522644, + 0.9989328980445862, + 0.9988662004470825, + 0.9988217949867249, + 0.9986963868141174, + 0.9989078044891357, + 0.9989161491394043, + 0.9967746138572693, + 0.9989290833473206, + 0.9989135265350342, + 0.9988150596618652, + 0.9989153146743774, + 0.9989232420921326, + 0.9989031553268433, + 0.9989168643951416, + 0.9963138699531555, + 0.9983408451080322, + 0.9988994598388672, + 0.998891294002533, + 0.9988792538642883, + 0.9988793730735779, + 0.9988914132118225, + 0.9987395405769348, + 0.998927891254425, + 0.9988341927528381, + 0.998869001865387, + 0.9970780611038208, + 0.9982553124427795 + ], + "sentiment_counts": { + "POSITIVE": 85, + "NEGATIVE": 9 + }, + "sentiment_distribution": { + "POSITIVE": 0.9042553191489362, + "NEGATIVE": 0.09574468085106383 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9042553191489362 + ] + }, + "final_label": "POSITIVE", + "final_count": 229, + "final_proportion": 0.89453125, + "final_counts": { + "POSITIVE": 229, + "NEGATIVE": 27 + }, + "final_distribution": { + "POSITIVE": 0.89453125, + "NEGATIVE": 0.10546875 + } + } }, { "season_code": "202303", @@ -147112,7 +306618,7 @@ "9:00", "11:00", "WTS B52 - Watson Center 60 Sachem Street B52", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -147124,10 +306630,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89996\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89996/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -147169,7 +306703,7 @@ "13:00", "14:20", "EVANS 2400 - Edward P Evans Hall 2400", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Thursday": [ @@ -147177,7 +306711,7 @@ "13:00", "14:20", "EVANS 2400 - Edward P Evans Hall 2400", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -147189,10 +306723,211 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91376\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91376/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989088773727417, + 0.9989094734191895, + 0.9963840246200562, + 0.9989087581634521, + 0.9988449811935425, + 0.998381495475769, + 0.9987321496009827, + 0.9932696223258972, + 0.9988447427749634, + 0.9987480640411377, + 0.998752236366272, + 0.9986697435379028, + 0.9925482869148254, + 0.9986465573310852, + 0.9987859129905701, + 0.9988889098167419, + 0.9988905787467957, + 0.9989097118377686, + 0.9987688660621643, + 0.9988158941268921, + 0.9988059997558594 + ], + "sentiment_counts": { + "POSITIVE": 20, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9523809523809523, + "NEGATIVE": 0.047619047619047616 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9523809523809523 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988442659378052, + 0.9989211559295654, + 0.9986534118652344, + 0.9987027645111084, + 0.9980021119117737, + 0.9988382458686829, + 0.9911856055259705, + 0.999417781829834, + 0.9979094862937927, + 0.9981579184532166, + 0.9980608820915222, + 0.9921026825904846, + 0.9991815686225891, + 0.9982477426528931, + 0.9595071077346802, + 0.9917184114456177, + 0.9948939085006714, + 0.9989126920700073, + 0.9988045692443848, + 0.9988516569137573, + 0.9988731741905212, + 0.9988073110580444, + 0.9989381432533264, + 0.998777449131012 + ], + "sentiment_counts": { + "POSITIVE": 18, + "NEGATIVE": 6 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994586110115051, + 0.9989323019981384, + 0.9978334307670593, + 0.9989314675331116, + 0.9989346861839294, + 0.9987173080444336, + 0.9989073276519775, + 0.9978169202804565, + 0.9478885531425476, + 0.9990455508232117, + 0.9988546371459961, + 0.9994947910308838, + 0.9967663288116455, + 0.998862624168396, + 0.9989227652549744, + 0.9989007711410522, + 0.998934805393219, + 0.9984074234962463, + 0.9986627101898193, + 0.9989176988601685, + 0.9987670183181763, + 0.9988954067230225 + ], + "sentiment_counts": { + "NEGATIVE": 4, + "POSITIVE": 18 + }, + "sentiment_distribution": { + "NEGATIVE": 0.18181818181818182, + "POSITIVE": 0.8181818181818182 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8181818181818182 + ] + }, + "final_label": "POSITIVE", + "final_count": 56, + "final_proportion": 0.835820895522388, + "final_counts": { + "POSITIVE": 56, + "NEGATIVE": 11 + }, + "final_distribution": { + "POSITIVE": 0.835820895522388, + "NEGATIVE": 0.16417910447761194 + } + } }, { "season_code": "202303", @@ -147236,7 +306971,7 @@ "14:40", "16:00", "EVANS 2210 - Edward P Evans Hall 2210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Wednesday": [ @@ -147244,7 +306979,7 @@ "14:40", "16:00", "EVANS 2210 - Edward P Evans Hall 2210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -147256,10 +306991,38 @@ "classnotes": "This is an SOM course but Jackson School students may request enrollment between April 14-24. Others will need to follow the SOM enrollment process which opens in August.", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91259\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/91259/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -147319,10 +307082,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91388\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91388/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -147382,15 +307173,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91388\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91388/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "Social Entrepreneurship Lab is a practice-based course in which students from across campus form interdisciplinary teams to work on a social challenge of their choice. Teams include students from SOM, SPH, FES, YDS, Jackson School, and other Yale professional schools and programs. Students start by identifying a topic area of focus, then form teams based on shared interests and complementary skills. Over the course of thirteen weeks, student teams delve into understanding the challenge through root cause analysis, research on existing solutions and populations affected; then apply human centered design thinking and systems thinking to design, prototype, test, and iterate solutions.\u00a0Using tools such as the theory of change, logframe, business canvas, and social marketing strategy, teams build and test their impact models, operational models, and revenue models. Readings and assignments from the textbook Introduction to Social Entrepreneurship are used to guide this journey. These include technical templates, case studies, and interviews with social entrepreneurs and thought leaders in different sectors and geographies around the world.\u00a0The class meets twice a week for eighty minutes and includes in-class exercises along with social entrepreneur guests who join the class to share their experience, advice, and challenges. At the end of the semester, student teams pitch their ventures to a panel of judges including social venture funders and social entrepreneurs. Teams are encouraged, but not required, to submit their ventures to one of the campus wide startup prizes (see: city.yale.edu\/funding). While there are no prerequisites, this course builds on the SOM core course Innovator, and electives including Principles of Entrepreneurship, Entrepreneurship & New Ventures, Public Health Entrepreneurship and Intrapreneurship, Global Social Entrepreneurship, Managing Social Enterprises, Business & the Environment Solutions. Limited enrollment. Course follows the School of Management academic calendar.", + "description": "Social Entrepreneurship Lab is a practice-based course in which students from across campus form interdisciplinary teams to work on a social challenge of their choice. Teams include students from SOM, SPH, FES, YDS, Jackson School, and other Yale professional schools and programs. Students start by identifying a topic area of focus, then form teams based on shared interests and complementary skills. Over the course of thirteen weeks, student teams delve into understanding the challenge through root cause analysis, research on existing solutions and populations affected; then apply human centered design thinking and systems thinking to design, prototype, test, and iterate solutions.\u00a0Using tools such as the theory of change, logframe, business canvas, and social marketing strategy, teams build and test their impact models, operational models, and revenue models. Readings and assignments from the textbook Introduction to Social Entrepreneurship are used to guide this journey. These include technical templates, case studies, and interviews with social entrepreneurs and thought leaders in different sectors and geographies around the world.\u00a0The class meets twice a week for eighty minutes and includes in-class exercises along with social entrepreneur guests who join the class to share their experience, advice, and challenges. At the end of the semester, student teams pitch their ventures to a panel of judges including social venture funders and social entrepreneurs. Teams are encouraged, but not required, to submit their ventures to one of the campus wide startup prizes (see: city.yale.edu/funding). While there are no prerequisites, this course builds on the SOM core course Innovator, and electives including Principles of Entrepreneurship, Entrepreneurship & New Ventures, Public Health Entrepreneurship and Intrapreneurship, Global Social Entrepreneurship, Managing Social Enterprises, Business & the Environment Solutions. Limited enrollment. Course follows the School of Management academic calendar.", "short_title": "Social Entrepreneurship Lab", "title": "Social Entrepreneurship Lab", "school": "GB", @@ -147425,7 +307244,7 @@ "16:10", "19:10", "EVANS 4400 - Edward P Evans Hall 4400", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -147439,10 +307258,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91260\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91260/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -147479,7 +307326,7 @@ "13:30", "15:20", "WTS A74 - Watson Center 60 Sachem Street A74", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -147493,15 +307340,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89785\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89785/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "The objective of this course is to provide students with an intuitive but rigorous understanding of international macroeconomics and apply these insights to related policy and security issues. Given the increasingly\u00a0integrated nature of global financial markets and the large speculative component of financial flows, monetary and financial policy choices in large economies can have globally destabilizing effects, often involuntary\u2014fueling global imbalances and\/or triggering crises in emerging economies\u2014possibly voluntary e.g., sanctions.\u00a0Understanding international macroeconomics is therefore relevant for a development, foreign policy, or security practitioner.\u00a0Topics covered are central banks, monetary policy, domestic finance and financial regulation, exchange rate regimes, international capital flows, global imbalances, models of balance of payment crises and debt crises, financial sanctions.", + "description": "The objective of this course is to provide students with an intuitive but rigorous understanding of international macroeconomics and apply these insights to related policy and security issues. Given the increasingly\u00a0integrated nature of global financial markets and the large speculative component of financial flows, monetary and financial policy choices in large economies can have globally destabilizing effects, often involuntary\u2014fueling global imbalances and/or triggering crises in emerging economies\u2014possibly voluntary e.g., sanctions.\u00a0Understanding international macroeconomics is therefore relevant for a development, foreign policy, or security practitioner.\u00a0Topics covered are central banks, monetary policy, domestic finance and financial regulation, exchange rate regimes, international capital flows, global imbalances, models of balance of payment crises and debt crises, financial sanctions.", "short_title": "Policy and Security Issues in...", "title": "Policy and Security Issues in International Macroeconomics", "school": "GB", @@ -147533,7 +307408,7 @@ "9:25", "11:15", "WTS A32 - Watson Center 60 Sachem Street A32", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -147545,10 +307420,38 @@ "classnotes": "This class uses little math and it is targeted at policy-oriented students. This class is offered once every two years and will not be offered in 2024-25. ", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90305\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/90305/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -147585,7 +307488,7 @@ "15:30", "17:20", "WTS A35 - Watson Center 60 Sachem Street A35", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -147599,10 +307502,38 @@ "classnotes": "Taught by Sr. Fellow", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89750\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89750/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -147640,7 +307571,7 @@ "13:30", "15:20", "WTS A42 - Watson Center 60 Sachem Street A42", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -147656,10 +307587,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89185\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89185/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -147697,7 +307656,7 @@ "13:00", "16:00", "EVANS 2210 - Edward P Evans Hall 2210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -147711,10 +307670,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91243\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91243/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -147751,7 +307738,7 @@ "13:30", "15:20", "WTS B35 - Watson Center 60 Sachem Street B35", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -147762,13 +307749,41 @@ ], "regnotes": "", "rp_attr": "", - "classnotes": "Open enrollment policy. Professional School students still need to submit the enrollment request form found: https:\/\/jackson.yale.edu\/portal\/registrar\/", + "classnotes": "Open enrollment policy. Professional School students still need to submit the enrollment request form found: https://jackson.yale.edu/portal/registrar/", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89186\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89186/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -147805,7 +307820,7 @@ "15:30", "17:20", "WTS A68 - Watson Center 60 Sachem Street A68", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -147819,10 +307834,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89187\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89187/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -147860,7 +307903,7 @@ "9:25", "11:15", "BAKER 124 - Baker Hall 124", - "https:\/\/map.yale.edu\/?id=1910#!m\/563680" + "https://map.yale.edu/?id=1910#!m/563680" ] ] }, @@ -147872,14 +307915,42 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91819\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91819/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", - "requirements": "Prerequisite: At least one course in American politics and\/or comparative politics.", + "requirements": "Prerequisite: At least one course in American politics and/or comparative politics.", "description": "What is the best electoral system? Should countries try to limit the number of political parties? Should chief executives be independently elected? Should legislatures have powerful upper chambers? Should courts have the power to strike down democratically enacted laws? These and related questions are discussed in this course. Throughout the term, we engage in an ongoing dialogue with the Federalist Papers, contrasting the Madisonian constitutional vision with subsequent insights from democratic theory and empirical political science across the democratic world. Where existing practices deviate from what would be best, we also attend to the costs of these sub-optimal systems and types of reforms that would improve them.", "short_title": "Designing and Reforming Democ...", "title": "Designing and Reforming Democracy", @@ -147919,7 +307990,7 @@ "13:30", "15:20", "RKZ 05 - Rosenkranz Hall 05", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -147933,10 +308004,113 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90079\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90079/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988908171653748, + 0.9989186525344849, + 0.9988468885421753, + 0.9989148378372192, + 0.9988295435905457, + 0.9988223910331726 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986775517463684, + 0.9965946078300476, + 0.9989385008811951, + 0.9988704323768616, + 0.9988952875137329, + 0.9988698363304138 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988988637924194, + 0.9989064931869507, + 0.9989142417907715, + 0.998910665512085, + 0.9988652467727661, + 0.998817503452301, + 0.9988685846328735 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 19 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -147973,7 +308147,7 @@ "9:00", "11:00", "WTS A42 - Watson Center 60 Sachem Street A42", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -147987,10 +308161,38 @@ "classnotes": "Jackson students in the course will be eligible to participate in a Practicum (both the simulation exercise, held over the weekend of fall break, and the supervised travel to sites of rights abuse to work with communities to document violations and advocate for human rights). Students who cross register may be eligible to participate to the extent they are able to identify and secure funding from their School or Program.", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89256\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89256/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -148028,7 +308230,7 @@ "15:30", "17:20", "WTS A42 - Watson Center 60 Sachem Street A42", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -148042,10 +308244,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92516\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92516/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -148082,7 +308312,7 @@ "9:00", "11:00", "LC 317 - Linsly-Chittenden Hall 317", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -148098,10 +308328,38 @@ "classnotes": "Please note that the course is offered in non-standard timeframe. ", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89188\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89188/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -148138,7 +308396,7 @@ "9:25", "11:15", "WTS A32 - Watson Center 60 Sachem Street A32", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -148152,15 +308410,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90127\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90127/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "Should the United States act as the world\u2019s security force? Should it stay out of world events? Or is there a balance between these two extremes and, if so, what factors should be considered in determining this balance?\u00a0This course\u00a0examines\u00a0these questions primarily through the lens of the United States' engagement in the Middle East (including Iraq, Iran, Libya, the Israeli\/Palestinian conflict, and Saudi Arabia).\u00a0 We will consider these cases from the perspectives of both the United States and the affected countries, taking into account multiple factors including security, business and economic interests, and human rights.\u00a0Students choose one real life example to examine in depth; class presentations inform a final written paper.", + "description": "Should the United States act as the world\u2019s security force? Should it stay out of world events? Or is there a balance between these two extremes and, if so, what factors should be considered in determining this balance?\u00a0This course\u00a0examines\u00a0these questions primarily through the lens of the United States' engagement in the Middle East (including Iraq, Iran, Libya, the Israeli/Palestinian conflict, and Saudi Arabia).\u00a0 We will consider these cases from the perspectives of both the United States and the affected countries, taking into account multiple factors including security, business and economic interests, and human rights.\u00a0Students choose one real life example to examine in depth; class presentations inform a final written paper.", "short_title": "Internationalism versus Isola...", "title": "Internationalism versus Isolationism in US Foreign Policy", "school": "GB", @@ -148192,7 +308478,7 @@ "15:30", "17:20", "WTS B36 - Watson Center 60 Sachem Street B36", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -148206,15 +308492,43 @@ "classnotes": "Taught by Sr. Fellow", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90128\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "", - "description": "Launched in 2008 at the Yale School of Management, the Global Social Entrepreneurship (GSE) course links teams of Yale students with social enterprises based in India. GSE is committed to channeling the skills of Yale students to help Indian organizations expand their reach and impact on \"bottom of the pyramid\" communities. Yale students partner with mission-driven social entrepreneurs (SEs) to focus on a specific management challenge that the student\/SE teams work together to address during the term. GSE has worked with thirty leading and emerging Indian social enterprises engaged in economic development, sustainable energy, women\u2019s empowerment, education, environmental conservation, and affordable housing. The course covers both theoretical and practical issues, including case studies and discussions on social enterprise, developing a theory of change and related social metrics, financing social businesses, the role of civil society in India, framing a consulting engagement, managing team dynamics, etc. Enrollment is by application only. Also MGT 529.", + "syllabus_url": "https://yale.instructure.com/courses/90128/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } + }, + { + "season_code": "202303", + "requirements": "", + "description": "Launched in 2008 at the Yale School of Management, the Global Social Entrepreneurship (GSE) course links teams of Yale students with social enterprises based in India. GSE is committed to channeling the skills of Yale students to help Indian organizations expand their reach and impact on \"bottom of the pyramid\" communities. Yale students partner with mission-driven social entrepreneurs (SEs) to focus on a specific management challenge that the student/SE teams work together to address during the term. GSE has worked with thirty leading and emerging Indian social enterprises engaged in economic development, sustainable energy, women\u2019s empowerment, education, environmental conservation, and affordable housing. The course covers both theoretical and practical issues, including case studies and discussions on social enterprise, developing a theory of change and related social metrics, financing social businesses, the role of civil society in India, framing a consulting engagement, managing team dynamics, etc. Enrollment is by application only. Also MGT 529.", "short_title": "GSE India: Global Social Entr...", "title": "GSE India: Global Social Entrepreneurship", "school": "GB", @@ -148250,7 +308564,7 @@ "14:40", "17:40", "EVANS 4220 - Edward P Evans Hall 4220", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -148264,10 +308578,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91298\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91298/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -148304,7 +308646,7 @@ "9:00", "10:50", "HLH55 HORCHOW - 55 Hillhouse HORCHOW", - "https:\/\/map.yale.edu\/?id=1910#!m\/560099" + "https://map.yale.edu/?id=1910#!m/560099" ] ] }, @@ -148315,13 +308657,41 @@ ], "regnotes": "", "rp_attr": "", - "classnotes": "\nCourse will be held in the Seminar room Horchow Hall (55 Hillhouse Avenue). First door on your left as you enter the building with the EXCEPTION of 11\/16\/23 held in RKZ 202", + "classnotes": "\nCourse will be held in the Seminar room Horchow Hall (55 Hillhouse Avenue). First door on your left as you enter the building with the EXCEPTION of 11/16/23 held in RKZ 202", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89189\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89189/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -148359,7 +308729,7 @@ "8:30", "11:15", "HLH55 - HLH55", - "https:\/\/map.yale.edu\/?id=1910#!m\/560099" + "https://map.yale.edu/?id=1910#!m/560099" ] ] }, @@ -148368,13 +308738,41 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Location: Horchow Hall, 55 Hillhouse Avenue \nCourse dates\/times: Fridays, 8:30-11:15am on Sept 8, 15, 29, Oct. 13, Nov 3, 17, Dec 1 AND on Thursday Nov 30, 6:00-8:00pm. Application ONLY visit https:\/\/jackson.yale.edu\/academics\/registrar\/ in August to apply.", + "classnotes": "Location: Horchow Hall, 55 Hillhouse Avenue \nCourse dates/times: Fridays, 8:30-11:15am on Sept 8, 15, 29, Oct. 13, Nov 3, 17, Dec 1 AND on Thursday Nov 30, 6:00-8:00pm. Application ONLY visit https://jackson.yale.edu/academics/registrar/ in August to apply.", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89190\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89190/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -148412,7 +308810,7 @@ "11:35", "12:50", "WLH 201 - William L. Harkness Hall 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -148420,7 +308818,7 @@ "11:35", "12:50", "WLH 201 - William L. Harkness Hall 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -148434,10 +308832,259 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89804\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89804/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9980446100234985, + 0.995498538017273, + 0.9988802075386047, + 0.9969246983528137, + 0.9988815188407898, + 0.9989281296730042, + 0.9989172220230103, + 0.9986146688461304, + 0.998663067817688, + 0.9988542795181274, + 0.9988547563552856, + 0.9840733408927917, + 0.9337474703788757, + 0.9987670183181763, + 0.9987444877624512, + 0.9988956451416016, + 0.998865008354187, + 0.9989218711853027, + 0.998892605304718, + 0.9988753199577332, + 0.9988983869552612, + 0.99888676404953, + 0.9983609318733215, + 0.9989136457443237, + 0.9988535642623901, + 0.9987640380859375, + 0.9986752867698669, + 0.9986577033996582, + 0.9987932443618774, + 0.9987227320671082 + ], + "sentiment_counts": { + "POSITIVE": 28, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.9333333333333333, + "NEGATIVE": 0.06666666666666667 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9333333333333333 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9995023012161255, + 0.9987130165100098, + 0.998853325843811, + 0.9994813799858093, + 0.9987863898277283, + 0.9988992214202881, + 0.9980809688568115, + 0.9989136457443237, + 0.9988918900489807, + 0.9892022013664246, + 0.9986808896064758, + 0.9974958300590515, + 0.9988045692443848, + 0.9989206790924072, + 0.9989868998527527, + 0.9989030361175537, + 0.9989169836044312, + 0.9989099502563477, + 0.9987209439277649, + 0.9988510608673096, + 0.9988775849342346, + 0.9988842606544495, + 0.9989135265350342, + 0.9994595646858215, + 0.9987654685974121 + ], + "sentiment_counts": { + "NEGATIVE": 4, + "POSITIVE": 21 + }, + "sentiment_distribution": { + "NEGATIVE": 0.16, + "POSITIVE": 0.84 + }, + "sentiment_overall": [ + "POSITIVE", + 0.84 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.974139928817749, + 0.9988659620285034, + 0.9987859129905701, + 0.9985450506210327, + 0.9988530874252319, + 0.9989109039306641, + 0.9989091157913208, + 0.9988924860954285, + 0.9988822340965271, + 0.9988849759101868, + 0.9988653659820557, + 0.9988608360290527, + 0.9988003969192505, + 0.9956355690956116, + 0.998927652835846, + 0.9986953139305115, + 0.9987119436264038, + 0.9988522529602051, + 0.9983779191970825, + 0.9989290833473206, + 0.9989240765571594, + 0.9989332556724548, + 0.9989155530929565, + 0.9988866448402405, + 0.9986932873725891, + 0.9988338351249695, + 0.9989153146743774, + 0.9982553124427795, + 0.9989144802093506, + 0.998938262462616, + 0.998161256313324, + 0.9987782835960388, + 0.9964078068733215, + 0.9967250227928162, + 0.9988743662834167, + 0.9989063739776611 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 33 + }, + "sentiment_distribution": { + "NEGATIVE": 0.08333333333333333, + "POSITIVE": 0.9166666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9166666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 82, + "final_proportion": 0.9010989010989011, + "final_counts": { + "POSITIVE": 82, + "NEGATIVE": 9 + }, + "final_distribution": { + "POSITIVE": 0.9010989010989011, + "NEGATIVE": 0.0989010989010989 + } + } }, { "season_code": "202303", @@ -148474,7 +309121,7 @@ "16:00", "17:50", "HLH55 HORCHOW - 55 Hillhouse HORCHOW", - "https:\/\/map.yale.edu\/?id=1910#!m\/560099" + "https://map.yale.edu/?id=1910#!m/560099" ] ] }, @@ -148483,13 +309130,41 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Please visit canvas course site for enrollment instructions. Email jackson.registrar@yale.edu with questions.\n\nCLASSROOM: Horchow Hall GM ROOM except for 9\/11\/23 and 10\/09\/2023. On those dates will be held in Seminar room of Horchow Hall!", + "classnotes": "Please visit canvas course site for enrollment instructions. Email jackson.registrar@yale.edu with questions.\n\nCLASSROOM: Horchow Hall GM ROOM except for 9/11/23 and 10/09/2023. On those dates will be held in Seminar room of Horchow Hall!", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90306\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90306/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -148526,7 +309201,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -148563,7 +309266,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -148606,7 +309337,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -148649,7 +309408,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -148689,17 +309476,45 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92772\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92772/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "By arrangement with faculty.", "description": "Directed reading or individual project option is designed for qualified students who wish to investigate an area not covered in regular graduate-level courses. The student must be supervised by a faculty member, who sets the requirements and meets regularly with the student. Usually limited to one per semester, this option may involve reading the literature on a topic, attending a lecture or seminar series, and writing a substantial research paper. It is the student\u2019s responsibility to make all the arrangements\u00a0before the semester begins.", - "short_title": "Directed Reading: US\/China Se...", - "title": "Directed Reading: US\/China Semiconductor Policy", + "short_title": "Directed Reading: US/China Se...", + "title": "Directed Reading: US/China Semiconductor Policy", "school": "GB", "credits": 1, "extra_info": "ACTIVE", @@ -148735,7 +309550,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -148778,7 +309621,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -148815,7 +309686,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -148858,7 +309757,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -148901,7 +309828,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -148944,7 +309899,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -148987,7 +309970,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -149030,7 +310041,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -149073,11 +310112,39 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", - "requirements": "To be followed by GMAN 120. Enrollment limited to 14 per section. Students must preregister through Preference Selection during the online preregistration period. Details and a link to Preference Selection are provided on the German department Web site at http:\/\/german.yale.edu.", + "requirements": "To be followed by GMAN 120. Enrollment limited to 14 per section. Students must preregister through Preference Selection during the online preregistration period. Details and a link to Preference Selection are provided on the German department Web site at http://german.yale.edu.", "description": "A beginning content- and task-based course that focuses on the acquisition of spoken and written communication skills, as well as on the development of cultural awareness and of foundations in grammar and vocabulary. Topics such as school, family life, and housing. Course materials include a variety of authentic readings, a feature film, and shorter video clips. Tutors are available for extra help.", "short_title": "Elementary German I", "title": "Elementary German I", @@ -149110,7 +310177,7 @@ "9:25", "10:15", "LOM 205 - Leet Oliver Memorial Hall 205", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ], "Tuesday": [ @@ -149118,7 +310185,7 @@ "9:25", "10:15", "LOM 205 - Leet Oliver Memorial Hall 205", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ], "Wednesday": [ @@ -149126,7 +310193,7 @@ "9:25", "10:15", "LOM 205 - Leet Oliver Memorial Hall 205", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ], "Thursday": [ @@ -149134,7 +310201,7 @@ "9:25", "10:15", "LOM 205 - Leet Oliver Memorial Hall 205", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ], "Friday": [ @@ -149142,7 +310209,7 @@ "9:25", "10:15", "LOM 205 - Leet Oliver Memorial Hall 205", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ] }, @@ -149158,14 +310225,101 @@ "classnotes": "Classes will not meet Fridays. Students will complete work asynchronously on Fridays. ", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88391\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88391/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "To be followed by GMAN 120. Enrollment limited to 14 per section. Students must preregister through Preference Selection during the online preregistration period. Details and a link to Preference Selection are provided on the German department Web site at http:\/\/german.yale.edu.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9980693459510803, + 0.9988381266593933, + 0.9988319277763367, + 0.998931348323822 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989184141159058, + 0.9989006519317627, + 0.9981881976127625, + 0.998928964138031 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988296627998352, + 0.9989256262779236, + 0.9987937211990356 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 11 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } + }, + { + "season_code": "202303", + "requirements": "To be followed by GMAN 120. Enrollment limited to 14 per section. Students must preregister through Preference Selection during the online preregistration period. Details and a link to Preference Selection are provided on the German department Web site at http://german.yale.edu.", "description": "A beginning content- and task-based course that focuses on the acquisition of spoken and written communication skills, as well as on the development of cultural awareness and of foundations in grammar and vocabulary. Topics such as school, family life, and housing. Course materials include a variety of authentic readings, a feature film, and shorter video clips. Tutors are available for extra help.", "short_title": "Elementary German I", "title": "Elementary German I", @@ -149198,7 +310352,7 @@ "10:30", "11:20", "LOM 205 - Leet Oliver Memorial Hall 205", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ], "Tuesday": [ @@ -149206,7 +310360,7 @@ "10:30", "11:20", "LOM 205 - Leet Oliver Memorial Hall 205", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ], "Wednesday": [ @@ -149214,7 +310368,7 @@ "10:30", "11:20", "LOM 205 - Leet Oliver Memorial Hall 205", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ], "Thursday": [ @@ -149222,7 +310376,7 @@ "10:30", "11:20", "LOM 205 - Leet Oliver Memorial Hall 205", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ], "Friday": [ @@ -149230,7 +310384,7 @@ "10:30", "11:20", "LOM 205 - Leet Oliver Memorial Hall 205", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ] }, @@ -149246,14 +310400,107 @@ "classnotes": "Classes will not meet Fridays. Students will complete work asynchronously on Fridays. ", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88395\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88395/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "To be followed by GMAN 120. Enrollment limited to 14 per section. Students must preregister through Preference Selection during the online preregistration period. Details and a link to Preference Selection are provided on the German department Web site at http:\/\/german.yale.edu.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987465143203735, + 0.9986704587936401, + 0.9988991022109985, + 0.9940319657325745, + 0.9983339905738831 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9977568984031677, + 0.9989262223243713, + 0.9988981485366821, + 0.9989131689071655 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989122152328491, + 0.9987962245941162, + 0.9989327788352966, + 0.9973215460777283, + 0.998906135559082 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 14 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } + }, + { + "season_code": "202303", + "requirements": "To be followed by GMAN 120. Enrollment limited to 14 per section. Students must preregister through Preference Selection during the online preregistration period. Details and a link to Preference Selection are provided on the German department Web site at http://german.yale.edu.", "description": "A beginning content- and task-based course that focuses on the acquisition of spoken and written communication skills, as well as on the development of cultural awareness and of foundations in grammar and vocabulary. Topics such as school, family life, and housing. Course materials include a variety of authentic readings, a feature film, and shorter video clips. Tutors are available for extra help.", "short_title": "Elementary German I", "title": "Elementary German I", @@ -149286,7 +310533,7 @@ "11:35", "12:25", "WLH 001 - William L. Harkness Hall 001", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Tuesday": [ @@ -149294,7 +310541,7 @@ "11:35", "12:25", "WLH 001 - William L. Harkness Hall 001", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -149302,7 +310549,7 @@ "11:35", "12:25", "WLH 001 - William L. Harkness Hall 001", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -149310,7 +310557,7 @@ "11:35", "12:25", "WLH 001 - William L. Harkness Hall 001", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Friday": [ @@ -149318,7 +310565,7 @@ "11:35", "12:25", "WLH 001 - William L. Harkness Hall 001", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -149334,14 +310581,85 @@ "classnotes": "Classes will not meet Fridays. Students will complete work asynchronously on Fridays. ", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88405\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88405/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "To be followed by GMAN 120. Enrollment limited to 14 per section. Students must preregister through Preference Selection during the online preregistration period. Details and a link to Preference Selection are provided on the German department Web site at http:\/\/german.yale.edu.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.6414305567741394 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981860518455505 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987875819206238 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 3, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 3 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } + }, + { + "season_code": "202303", + "requirements": "To be followed by GMAN 120. Enrollment limited to 14 per section. Students must preregister through Preference Selection during the online preregistration period. Details and a link to Preference Selection are provided on the German department Web site at http://german.yale.edu.", "description": "A beginning content- and task-based course that focuses on the acquisition of spoken and written communication skills, as well as on the development of cultural awareness and of foundations in grammar and vocabulary. Topics such as school, family life, and housing. Course materials include a variety of authentic readings, a feature film, and shorter video clips. Tutors are available for extra help.", "short_title": "Elementary German I: for Engi...", "title": "Elementary German I: for Engineers and Scientists", @@ -149374,7 +310692,7 @@ "10:30", "11:20", "HQ 225 - Humanities Quadrangle 225", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Tuesday": [ @@ -149382,7 +310700,7 @@ "10:30", "11:20", "HQ 225 - Humanities Quadrangle 225", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -149390,7 +310708,7 @@ "10:30", "11:20", "HQ 225 - Humanities Quadrangle 225", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Friday": [ @@ -149398,7 +310716,7 @@ "10:30", "11:20", "HQ 225 - Humanities Quadrangle 225", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -149406,7 +310724,7 @@ "10:30", "11:20", "HQ C07 - Humanities Quadrangle C07", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -149422,14 +310740,93 @@ "classnotes": "This section is intended for students with an engineering major or plans to major in engineering. This section will have a special focus on engineering and science.\n\nClasses will not meet Fridays. Students will complete work asynchronously on Fridays. ", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88401\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88401/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "To be followed by GMAN 130. Enrollment limited to 14 per section. Students must preregister through Preference Selection during the online preregistration period. Details and a link to Preference Selection are provided on the German department Web site at http:\/\/german.yale.edu.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985820055007935, + 0.9988837838172913 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987982511520386 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985736608505249, + 0.9900285601615906, + 0.9988840222358704 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 5, + "final_proportion": 0.8333333333333334, + "final_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + } + } + }, + { + "season_code": "202303", + "requirements": "To be followed by GMAN 130. Enrollment limited to 14 per section. Students must preregister through Preference Selection during the online preregistration period. Details and a link to Preference Selection are provided on the German department Web site at http://german.yale.edu.", "description": "Continuation of GMAN 110. A content- and task-based course that focuses on the acquisition of communicative competence in speaking and writing and on the development of strong cultural awareness. Topics such as multiculturalism, food, childhood, and travel; units on Switzerland and Austria. Course materials include a variety of authentic readings, a feature film, and shorter video clips. Tutors are available for extra help.", "short_title": "Elementary German II", "title": "Elementary German II", @@ -149462,7 +310859,7 @@ "10:30", "11:20", "WLH 112 - William L. Harkness Hall 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Tuesday": [ @@ -149470,7 +310867,7 @@ "10:30", "11:20", "WLH 112 - William L. Harkness Hall 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -149478,7 +310875,7 @@ "10:30", "11:20", "WLH 112 - William L. Harkness Hall 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -149486,7 +310883,7 @@ "10:30", "11:20", "WLH 112 - William L. Harkness Hall 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -149502,14 +310899,97 @@ "classnotes": "Classes will not meet Fridays. Students will complete work asynchronously on Fridays.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88410\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88410/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "After GMAN 120 or according to placement examination. Followed by GMAN 140. Enrollment limited to 14 per section. Students must preregister through Preference Selection during the online preregistration period. Details and a link to Preference Selection are provided on the German department Web site at http:\/\/german.yale.edu.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983308911323547, + 0.9987590312957764 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9972870349884033, + 0.9990850687026978, + 0.9983493089675903 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.997117280960083, + 0.997117280960083, + 0.9988730549812317 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 0.875, + "final_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + } + } + }, + { + "season_code": "202303", + "requirements": "After GMAN 120 or according to placement examination. Followed by GMAN 140. Enrollment limited to 14 per section. Students must preregister through Preference Selection during the online preregistration period. Details and a link to Preference Selection are provided on the German department Web site at http://german.yale.edu.", "description": "Builds on and expands knowledge acquired in GMAN 120. A content- and task-based course that helps students improve their oral and written linguistic skills and their cultural awareness through a variety of materials related to German literature, culture, history, and politics. Course materials include authentic readings, a feature film, and shorter video clips. Tutors are available for extra help.", "short_title": "Intermediate German I", "title": "Intermediate German I", @@ -149542,7 +311022,7 @@ "10:30", "11:20", "HQ C65 - Humanities Quadrangle C65", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Tuesday": [ @@ -149550,7 +311030,7 @@ "10:30", "11:20", "HQ C65 - Humanities Quadrangle C65", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -149558,7 +311038,7 @@ "10:30", "11:20", "HQ C65 - Humanities Quadrangle C65", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -149566,7 +311046,7 @@ "10:30", "11:20", "HQ C65 - Humanities Quadrangle C65", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Friday": [ @@ -149574,7 +311054,7 @@ "10:30", "11:20", "", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -149588,14 +311068,97 @@ "classnotes": "There is no textbook for this class. All materials provided on Canvas.\nClass does not meet Fridays. Students complete work asynchronously on Fridays.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88415\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88415/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "After GMAN 120 or according to placement examination. Followed by GMAN 140. Enrollment limited to 14 per section. Students must preregister through Preference Selection during the online preregistration period. Details and a link to Preference Selection are provided on the German department Web site at http:\/\/german.yale.edu.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989207983016968, + 0.9988986253738403, + 0.9988844990730286 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987164735794067, + 0.9917986392974854, + 0.9988538026809692 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988526105880737, + 0.9983717799186707, + 0.9988712668418884 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 9 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } + }, + { + "season_code": "202303", + "requirements": "After GMAN 120 or according to placement examination. Followed by GMAN 140. Enrollment limited to 14 per section. Students must preregister through Preference Selection during the online preregistration period. Details and a link to Preference Selection are provided on the German department Web site at http://german.yale.edu.", "description": "Builds on and expands knowledge acquired in GMAN 120. A content- and task-based course that helps students improve their oral and written linguistic skills and their cultural awareness through a variety of materials related to German literature, culture, history, and politics. Course materials include authentic readings, a feature film, and shorter video clips. Tutors are available for extra help.", "short_title": "Intermediate German I", "title": "Intermediate German I", @@ -149628,7 +311191,7 @@ "11:35", "12:25", "WLH 112 - William L. Harkness Hall 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -149636,7 +311199,7 @@ "11:35", "12:25", "WLH 112 - William L. Harkness Hall 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Friday": [ @@ -149644,7 +311207,7 @@ "11:35", "12:25", "WLH 112 - William L. Harkness Hall 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Tuesday": [ @@ -149652,7 +311215,7 @@ "11:35", "12:25", "WLH 014 - William L. Harkness Hall 014", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -149660,7 +311223,7 @@ "11:35", "12:25", "WLH 014 - William L. Harkness Hall 014", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -149674,14 +311237,111 @@ "classnotes": "There is no textbook for this class. All materials provided on Canvas.\nClass does not meet Fridays. Students complete work asynchronously on Fridays.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88419\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88419/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "After GMAN 130 or according to placement examination. Normally followed by GMAN 150 or, with permission of the director of undergraduate studies, by GMAN 171. Enrollment limited to 14 per section. Students must preregister through Preference Selection during the online preregistration period. Details and a link to Preference Selection are provided on the German department Web site at http:\/\/german.yale.edu.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989084005355835, + 0.9989081621170044, + 0.9988666772842407, + 0.9967703819274902, + 0.9988188147544861 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983355402946472, + 0.998830258846283, + 0.9830210208892822, + 0.9994220733642578, + 0.9988070726394653 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9986186027526855, + 0.9987074136734009, + 0.998701810836792, + 0.9995083808898926, + 0.9982176423072815 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.6, + "NEGATIVE": 0.4 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 0.8, + "final_counts": { + "POSITIVE": 12, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + } + } + }, + { + "season_code": "202303", + "requirements": "After GMAN 130 or according to placement examination. Normally followed by GMAN 150 or, with permission of the director of undergraduate studies, by GMAN 171. Enrollment limited to 14 per section. Students must preregister through Preference Selection during the online preregistration period. Details and a link to Preference Selection are provided on the German department Web site at http://german.yale.edu.", "description": "Builds on and expands knowledge acquired in GMAN 130. A content- and task-based course that helps students improve their oral and written linguistic skills and their cultural awareness through a variety of materials related to German literature, culture, history, and politics. Course materials include authentic readings, a feature film, and shorter video clips. Tutors are available for extra help.", "short_title": "Intermediate German II", "title": "Intermediate German II", @@ -149714,7 +311374,7 @@ "10:30", "11:20", "LC 212 - Linsly-Chittenden Hall 212", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Tuesday": [ @@ -149722,7 +311382,7 @@ "10:30", "11:20", "LC 212 - Linsly-Chittenden Hall 212", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -149730,7 +311390,7 @@ "10:30", "11:20", "LC 212 - Linsly-Chittenden Hall 212", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -149738,7 +311398,7 @@ "10:30", "11:20", "LC 212 - Linsly-Chittenden Hall 212", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Friday": [ @@ -149746,7 +311406,7 @@ "10:30", "11:20", "LC 212 - Linsly-Chittenden Hall 212", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -149762,10 +311422,89 @@ "classnotes": "Classes will not meet Fridays. Students will complete work asynchronously on Fridays.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88425\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88425/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989080429077148, + 0.9988911747932434 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986093044281006, + 0.9988993406295776 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998009979724884, + 0.9984320998191833, + 0.9989107847213745 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 7 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -149801,14 +311540,42 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89546\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "After GMAN 140 or 145. For entering students with a score of 5 on the German Advanced Placement test, or according to results of the placement examination. Students must preregister through Preference Selection during the online preregistration period. Details and a link to Preference Selection are provided on the German department Web site at http:\/\/german.yale.edu.", + "syllabus_url": "https://yale.instructure.com/courses/89546/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } + }, + { + "season_code": "202303", + "requirements": "After GMAN 140 or 145. For entering students with a score of 5 on the German Advanced Placement test, or according to results of the placement examination. Students must preregister through Preference Selection during the online preregistration period. Details and a link to Preference Selection are provided on the German department Web site at http://german.yale.edu.", "description": "An advanced language and culture course focusing on contemporary Germany. Analysis and discussion of current events in Germany and Europe through the lens of German media, including newspapers, books, TV, film radio, and modern electronic media formats. Focus on oral and written production to achieve advanced linguistic skills.", "short_title": "Advanced German, Contemporary...", "title": "Advanced German, Contemporary Germany", @@ -149841,7 +311608,7 @@ "11:35", "12:50", "HQ 225 - Humanities Quadrangle 225", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -149849,7 +311616,7 @@ "11:35", "12:50", "HQ 225 - Humanities Quadrangle 225", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -149865,10 +311632,109 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90087\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90087/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986119270324707, + 0.9984374642372131, + 0.994886577129364, + 0.9988611936569214, + 0.9988400340080261 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988892674446106, + 0.9988822340965271, + 0.9986831545829773, + 0.9988980293273926, + 0.9988647699356079 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9987471103668213, + 0.9988418221473694, + 0.9965483546257019, + 0.9988877177238464, + 0.9986370205879211, + 0.9995094537734985 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 0.9375, + "final_counts": { + "POSITIVE": 15, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9375, + "NEGATIVE": 0.0625 + } + } }, { "season_code": "202303", @@ -149929,7 +311795,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -149966,7 +311860,7 @@ "11:35", "12:50", "HQ 313 - Humanities Quadrangle 313", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -149974,7 +311868,7 @@ "11:35", "12:50", "HQ 313 - Humanities Quadrangle 313", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -149990,10 +311884,115 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88429\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88429/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9973921775817871, + 0.9987167119979858, + 0.9988572597503662, + 0.9987707734107971, + 0.9988484382629395, + 0.9989222288131714 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989160299301147, + 0.9987779259681702, + 0.9988068342208862, + 0.9969978332519531, + 0.9989069700241089, + 0.9983780384063721, + 0.9981120824813843 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989373087882996, + 0.9994433522224426, + 0.9989328980445862, + 0.9989323019981384, + 0.9989093542098999, + 0.9989110231399536 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 0.9473684210526315, + "final_counts": { + "POSITIVE": 18, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9473684210526315, + "NEGATIVE": 0.05263157894736842 + } + } }, { "season_code": "202303", @@ -150031,10 +312030,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89547\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89547/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -150071,7 +312098,7 @@ "13:00", "14:15", "WLH 006 - William L. Harkness Hall 006", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -150079,7 +312106,7 @@ "13:00", "14:15", "WLH 006 - William L. Harkness Hall 006", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -150095,10 +312122,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90558\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90558/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -150140,7 +312195,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -150179,7 +312262,7 @@ "15:30", "17:20", "WLH 112 - William L. Harkness Hall 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -150193,10 +312276,111 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88277\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88277/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9814392924308777, + 0.9988698363304138, + 0.9989160299301147, + 0.998717188835144, + 0.9982116222381592 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9856525659561157, + 0.9957072734832764, + 0.9955268502235413, + 0.9981972575187683, + 0.9985709190368652 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.4, + "POSITIVE": 0.6 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.999470055103302, + 0.9976195693016052, + 0.9980016350746155, + 0.9994938373565674, + 0.999467670917511, + 0.9266988039016724, + 0.9995023012161255 + ], + "sentiment_counts": { + "NEGATIVE": 7, + "POSITIVE": 0 + }, + "sentiment_distribution": { + "NEGATIVE": 1.0, + "POSITIVE": 0.0 + }, + "sentiment_overall": [ + "NEGATIVE", + 1.0 + ] + }, + "final_label": "neutral", + "final_count": 9, + "final_proportion": 0.5, + "final_counts": { + "POSITIVE": 8, + "NEGATIVE": 9 + }, + "final_distribution": { + "POSITIVE": 0.47058823529411764, + "NEGATIVE": 0.5294117647058824 + } + } }, { "season_code": "202303", @@ -150237,7 +312421,7 @@ "13:30", "15:20", "HQ C03 - Humanities Quadrangle C03", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -150256,10 +312440,111 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89781\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89781/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989038705825806, + 0.998881995677948, + 0.9989314675331116, + 0.9988376498222351, + 0.9989163875579834, + 0.9989125728607178 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989294409751892, + 0.9988766312599182, + 0.9989217519760132, + 0.9988623857498169, + 0.9988903403282166, + 0.9989312291145325 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987277388572693, + 0.9989243149757385, + 0.998910665512085, + 0.9985809326171875, + 0.9989239573478699, + 0.9988672733306885 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 18 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -150305,7 +312590,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -150345,7 +312658,7 @@ "15:30", "17:20", "HQ 113 - Humanities Quadrangle 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -150362,10 +312675,61 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92375\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92375/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989321827888489 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981922507286072 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 2, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 2 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -150402,7 +312766,7 @@ "13:30", "15:20", "WLH 209 - William L. Harkness Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -150416,10 +312780,38 @@ "classnotes": "This course will be taught by Max Kade Visiting Professor Anja Lemke.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90075\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/90075/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -150461,7 +312853,7 @@ "13:30", "15:20", "LC 319 - Linsly-Chittenden Hall 319", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -150475,10 +312867,91 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88465\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88465/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986985921859741, + 0.9985851049423218, + 0.9989144802093506 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989105463027954, + 0.9987713694572449, + 0.998869001865387 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989247918128967, + 0.9989323019981384 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 8, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 8 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -150518,12 +312991,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "The crisis of language predates the invention of ChatGPT (who may or may not have helped write this syllabus). This course delves into the concept of language crises and its long history from a philosophical and literary perspective, examining how crises of language are represented in literature and how they reflect broader philosophical questions about language, identity, and power. We explore different philosophical approaches to language, such as the history of language and philology (Herder, Humboldt, Nietzsche), structuralism and post-structuralism (Saussure), analytical and pragmatic philosophies (Wittgenstein), phenomenology and deconstruction (Heidegger), and analyze how these theories shape our understanding of language while simultaneously evoking its crisis.\u00a0The course also examines how such language crises are represented and produced in literature and the arts; how authors and artists approach the complexities of language loss, and how crises help birth alternative systems of signification. Through close readings of literary texts by Hofmannsthal, Musil, Bachmann, et. al., we analyze the symbolic and metaphorical significance of language crises, as well as the ethical and political implications of language loss for (cultural) identity. Experimental use of language such as DaDa artwork, performance cultures, and \"Sprachspiel\" poetry by the \"Wiener Gruppe,\" as well as contemporary KI\/AI literature, further complement the theoretical readings. By exploring language crises through the lens of philosophy and literature, we gain a deeper understanding of the role of language\u2014and its many crises\u2014in shaping our understanding of ourselves and our communities.", + "description": "The crisis of language predates the invention of ChatGPT (who may or may not have helped write this syllabus). This course delves into the concept of language crises and its long history from a philosophical and literary perspective, examining how crises of language are represented in literature and how they reflect broader philosophical questions about language, identity, and power. We explore different philosophical approaches to language, such as the history of language and philology (Herder, Humboldt, Nietzsche), structuralism and post-structuralism (Saussure), analytical and pragmatic philosophies (Wittgenstein), phenomenology and deconstruction (Heidegger), and analyze how these theories shape our understanding of language while simultaneously evoking its crisis.\u00a0The course also examines how such language crises are represented and produced in literature and the arts; how authors and artists approach the complexities of language loss, and how crises help birth alternative systems of signification. Through close readings of literary texts by Hofmannsthal, Musil, Bachmann, et. al., we analyze the symbolic and metaphorical significance of language crises, as well as the ethical and political implications of language loss for (cultural) identity. Experimental use of language such as DaDa artwork, performance cultures, and \"Sprachspiel\" poetry by the \"Wiener Gruppe,\" as well as contemporary KI/AI literature, further complement the theoretical readings. By exploring language crises through the lens of philosophy and literature, we gain a deeper understanding of the role of language\u2014and its many crises\u2014in shaping our understanding of ourselves and our communities.", "short_title": "\u201cSprachkrise\u201d\u2014Philosophies & ...", "title": "\u201cSprachkrise\u201d\u2014Philosophies & Language Crises", "school": "YC", @@ -150557,7 +313058,7 @@ "13:30", "15:20", "WALL81 301 - 81 Wall Street 301", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -150575,10 +313076,109 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89548\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89548/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989271759986877, + 0.9986422657966614, + 0.9985001087188721, + 0.9988093376159668 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988709092140198, + 0.9985893368721008, + 0.9989199638366699, + 0.9987195730209351, + 0.9988613128662109, + 0.996631920337677 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989349246025085, + 0.997117280960083, + 0.9989315867424011, + 0.9985492825508118, + 0.9918227791786194, + 0.9987828135490417 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 0.9375, + "final_counts": { + "POSITIVE": 15, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9375, + "NEGATIVE": 0.0625 + } + } }, { "season_code": "202303", @@ -150619,7 +313219,7 @@ "18:00", "20:00", "HQ L01 - Humanities Quadrangle L01", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -150627,7 +313227,7 @@ "9:25", "11:15", "HQ 109 - Humanities Quadrangle 109", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -150643,10 +313243,99 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89058\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89058/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988817572593689, + 0.9989174604415894, + 0.9986761212348938, + 0.9989038705825806 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9972802400588989, + 0.9986962676048279, + 0.9988734126091003 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989151954650879, + 0.9989027976989746, + 0.997117280960083, + 0.9988980293273926 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 0.9090909090909091, + "final_counts": { + "POSITIVE": 10, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + } + } }, { "season_code": "202303", @@ -150688,7 +313377,7 @@ "15:30", "17:20", "WALL81 301 - 81 Wall Street 301", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -150705,17 +313394,104 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90076\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90076/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998767614364624, + 0.9986365437507629, + 0.9987506866455078, + 0.9986162185668945 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988875985145569, + 0.9985893368721008, + 0.998904824256897 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988605976104736, + 0.997117280960083, + 0.9989264607429504, + 0.9977026581764221 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 11 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", "requirements": "Prerequisite: PHIL 126 or DRST 004.", "description": "An examination of the metaphysical and epistemological doctrines of Kant's Critique of Pure Reason.", "short_title": "Kant's Critique of Pure R...", - "title": "Kant's Critique of Pure Reason<\/em>", + "title": "Kant's Critique of Pure Reason", "school": "YC", "credits": 1.0, "extra_info": "ACTIVE", @@ -150746,7 +313522,7 @@ "9:00", "10:15", "HQ 133 - Humanities Quadrangle 133", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -150754,7 +313530,7 @@ "9:00", "10:15", "HQ 133 - Humanities Quadrangle 133", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -150770,10 +313546,93 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88592\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88592/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987472295761108, + 0.9988409876823425, + 0.998274564743042 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988511800765991, + 0.9989299178123474, + 0.9988400340080261 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9973347187042236, + 0.9989336133003235, + 0.9988790154457092 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 9 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -150810,7 +313669,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -150853,12 +313740,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "The crisis of language predates the invention of ChatGPT (who may or may not have helped write this syllabus). This course delves into the concept of language crises and its long history from a philosophical and literary perspective, examining how crises of language are represented in literature and how they reflect broader philosophical questions about language, identity, and power. We explore different philosophical approaches to language, such as the history of language and philology (Herder, Humboldt, Nietzsche), structuralism and post-structuralism (Saussure), analytical and pragmatic philosophies (Wittgenstein), phenomenology and deconstruction (Heidegger), and analyze how these theories shape our understanding of language while simultaneously evoking its crisis.\u00a0The course also examines how such language crises are represented and produced in literature and the arts, how authors and artists approach the complexities of language loss, and how crises help birth alternative systems of signification. Through close readings of literary texts by Hofmannsthal, Musil, Bachmann, et. al., we analyze the symbolic and metaphorical significance of language crises as well as the ethical and political implications of language loss for (cultural) identity. Experimental use of language such as DaDa artwork, performance cultures, and \"Sprachspiel\" poetry by the \"Wiener Gruppe,\" as well as contemporary KI\/AI literature, further complement the theoretical readings. By exploring language crises through the lens of philosophy and literature, we gain a deeper understanding of the role of language\u2014and its many crises\u2014in shaping our understanding of ourselves and our communities.", + "description": "The crisis of language predates the invention of ChatGPT (who may or may not have helped write this syllabus). This course delves into the concept of language crises and its long history from a philosophical and literary perspective, examining how crises of language are represented in literature and how they reflect broader philosophical questions about language, identity, and power. We explore different philosophical approaches to language, such as the history of language and philology (Herder, Humboldt, Nietzsche), structuralism and post-structuralism (Saussure), analytical and pragmatic philosophies (Wittgenstein), phenomenology and deconstruction (Heidegger), and analyze how these theories shape our understanding of language while simultaneously evoking its crisis.\u00a0The course also examines how such language crises are represented and produced in literature and the arts, how authors and artists approach the complexities of language loss, and how crises help birth alternative systems of signification. Through close readings of literary texts by Hofmannsthal, Musil, Bachmann, et. al., we analyze the symbolic and metaphorical significance of language crises as well as the ethical and political implications of language loss for (cultural) identity. Experimental use of language such as DaDa artwork, performance cultures, and \"Sprachspiel\" poetry by the \"Wiener Gruppe,\" as well as contemporary KI/AI literature, further complement the theoretical readings. By exploring language crises through the lens of philosophy and literature, we gain a deeper understanding of the role of language\u2014and its many crises\u2014in shaping our understanding of ourselves and our communities.", "short_title": "\u201cSprachkrise\u201d\u2014Philosophies & ...", "title": "\u201cSprachkrise\u201d\u2014Philosophies & Language Crises", "school": "GS", @@ -150892,7 +313807,7 @@ "13:30", "15:20", "WALL81 301 - 81 Wall Street 301", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -150904,10 +313819,109 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89548\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89548/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989271759986877, + 0.9986422657966614, + 0.9985001087188721, + 0.9988093376159668 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988709092140198, + 0.9985893368721008, + 0.9989199638366699, + 0.9987195730209351, + 0.9988613128662109, + 0.996631920337677 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989349246025085, + 0.997117280960083, + 0.9989315867424011, + 0.9985492825508118, + 0.9918227791786194, + 0.9987828135490417 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 0.9375, + "final_counts": { + "POSITIVE": 15, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9375, + "NEGATIVE": 0.0625 + } + } }, { "season_code": "202303", @@ -150945,7 +313959,7 @@ "13:30", "15:20", "HQ 225 - Humanities Quadrangle 225", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -150957,10 +313971,38 @@ "classnotes": "The course will be taught by Max Kade Visiting Professor Anja Lemke", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90059\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/90059/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -151002,7 +314044,7 @@ "15:30", "17:20", "WALL81 301 - 81 Wall Street 301", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -151017,10 +314059,97 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90076\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90076/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998767614364624, + 0.9986365437507629, + 0.9987506866455078, + 0.9986162185668945 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988875985145569, + 0.9985893368721008, + 0.998904824256897 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988605976104736, + 0.997117280960083, + 0.9989264607429504, + 0.9977026581764221 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 11 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -151060,7 +314189,7 @@ "15:30", "17:20", "HQ 113 - Humanities Quadrangle 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -151072,10 +314201,61 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92375\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92375/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989321827888489 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981922507286072 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 2, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 2 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -151116,7 +314296,7 @@ "18:00", "20:00", "HQ L01 - Humanities Quadrangle L01", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -151124,7 +314304,7 @@ "9:25", "11:15", "HQ 109 - Humanities Quadrangle 109", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -151136,10 +314316,99 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89058\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89058/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988817572593689, + 0.9989174604415894, + 0.9986761212348938, + 0.9989038705825806 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9972802400588989, + 0.9986962676048279, + 0.9988734126091003 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989151954650879, + 0.9989027976989746, + 0.997117280960083, + 0.9988980293273926 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 0.9090909090909091, + "final_counts": { + "POSITIVE": 10, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + } + } }, { "season_code": "202303", @@ -151177,7 +314446,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -151219,7 +314516,7 @@ "13:30", "15:20", "LC 319 - Linsly-Chittenden Hall 319", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -151231,15 +314528,96 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88465\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88465/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "", - "description": "This is the first section of a year-long seminar (second section: CPLT 914) designed to introduce the discipline of psychoanalysis through primary sources, mainly from the Freudian and Lacanian corpuses but including late twentieth-century commentators and contemporary interdisciplinary conversations. We rigorously examine key psychoanalytic concepts that students have heard about but never had the chance to study. Students gain proficiency in what has been called \"the language of psychoanalysis,\" as well as tools for critical practice in disciplines such as literary criticism, political theory, film studies, gender studies, theory of ideology, psychology medical humanities, etc. We study concepts such as the unconscious, identification, the drive, repetition, the imaginary, fantasy, the symbolic, the real, and jouissance. A central goal of the seminar is to disambiguate Freud's corpus from Lacan's reinvention of it. We do not come to the \"rescue\" of Freud. We revisit essays that are relevant for contemporary conversations within the international psychoanalytic community. We include only a handful of materials from the Anglophone schools of psychoanalysis developed in England and the US. This section pays special attention to Freud's \"three\" (the ego, superego, and id) in comparison to Lacan's \"three\" (the imaginary, the symbolic, and the real). CPLT 914 devotes, depending on the interests expressed by the group, the last six weeks to special psychoanalytic topics such as sexuation, perversion, psychosis, anti-asylum movements, conversations between psychoanalysis and neurosciences and artificial intelligence, the current pharmacological model of mental health, and\/or to specific uses of psychoanalysis in disciplines such as film theory, political philosophy, and the critique of ideology. Apart from Freud and Lacan, we will read work by Georges Canguilhem, Roman Jakobson, Victor Tausk, \u00c9mile Benveniste, Valentin Volosinov, Guy Le Gaufey, Jean Laplanche, \u00c9tienne Balibar, Roberto Esposito, Wilfred Bion, F\u00e9lix Guattari, Markos Zafiropoulos, Franco Bifo Berardi, Barbara Cassin, Renata Salecl, Maurice Godelier, Alenka Zupan\u010di\u010d, Juliet Mitchell, Jacqueline Rose, Norbert Wiener, Alan Turing, Eric Kandel, and Lera Boroditsky among others.\u00a0No previous knowledge of psychoanalysis is needed. Starting out from basic questions, we study how psychoanalysis, arguably, changed the way we think of human subjectivity. Graduate students from all departments and schools on campus are welcome. The final assignment is due by the end of the spring term and need not necessarily take the form of a twenty-page paper. Taught in English. Materials can be provided to cover the linguistic range of the group.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986985921859741, + 0.9985851049423218, + 0.9989144802093506 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989105463027954, + 0.9987713694572449, + 0.998869001865387 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989247918128967, + 0.9989323019981384 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 8, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 8 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } + }, + { + "season_code": "202303", + "requirements": "", + "description": "This is the first section of a year-long seminar (second section: CPLT 914) designed to introduce the discipline of psychoanalysis through primary sources, mainly from the Freudian and Lacanian corpuses but including late twentieth-century commentators and contemporary interdisciplinary conversations. We rigorously examine key psychoanalytic concepts that students have heard about but never had the chance to study. Students gain proficiency in what has been called \"the language of psychoanalysis,\" as well as tools for critical practice in disciplines such as literary criticism, political theory, film studies, gender studies, theory of ideology, psychology medical humanities, etc. We study concepts such as the unconscious, identification, the drive, repetition, the imaginary, fantasy, the symbolic, the real, and jouissance. A central goal of the seminar is to disambiguate Freud's corpus from Lacan's reinvention of it. We do not come to the \"rescue\" of Freud. We revisit essays that are relevant for contemporary conversations within the international psychoanalytic community. We include only a handful of materials from the Anglophone schools of psychoanalysis developed in England and the US. This section pays special attention to Freud's \"three\" (the ego, superego, and id) in comparison to Lacan's \"three\" (the imaginary, the symbolic, and the real). CPLT 914 devotes, depending on the interests expressed by the group, the last six weeks to special psychoanalytic topics such as sexuation, perversion, psychosis, anti-asylum movements, conversations between psychoanalysis and neurosciences and artificial intelligence, the current pharmacological model of mental health, and/or to specific uses of psychoanalysis in disciplines such as film theory, political philosophy, and the critique of ideology. Apart from Freud and Lacan, we will read work by Georges Canguilhem, Roman Jakobson, Victor Tausk, \u00c9mile Benveniste, Valentin Volosinov, Guy Le Gaufey, Jean Laplanche, \u00c9tienne Balibar, Roberto Esposito, Wilfred Bion, F\u00e9lix Guattari, Markos Zafiropoulos, Franco Bifo Berardi, Barbara Cassin, Renata Salecl, Maurice Godelier, Alenka Zupan\u010di\u010d, Juliet Mitchell, Jacqueline Rose, Norbert Wiener, Alan Turing, Eric Kandel, and Lera Boroditsky among others.\u00a0No previous knowledge of psychoanalysis is needed. Starting out from basic questions, we study how psychoanalysis, arguably, changed the way we think of human subjectivity. Graduate students from all departments and schools on campus are welcome. The final assignment is due by the end of the spring term and need not necessarily take the form of a twenty-page paper. Taught in English. Materials can be provided to cover the linguistic range of the group.", "short_title": "Psychoanalysis: Key Conceptua...", "title": "Psychoanalysis: Key Conceptual Differences between Freud and Lacan I", "school": "GS", @@ -151275,7 +314653,7 @@ "19:00", "20:50", "PH 207 - Phelps Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -151287,10 +314665,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89105\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89105/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -151345,10 +314751,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88475\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88475/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -151388,7 +314822,7 @@ "15:30", "18:30", "WLH 015 - William L. Harkness Hall 015", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -151400,10 +314834,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90230\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90230/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -151440,7 +314902,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -151477,7 +314967,7 @@ "9:25", "10:15", "WALL53 B-03 - 53 Wall Street B-03", - "https:\/\/map.yale.edu\/?id=1910#!m\/559554" + "https://map.yale.edu/?id=1910#!m/559554" ] ], "Tuesday": [ @@ -151485,7 +314975,7 @@ "9:25", "10:15", "WALL53 B-03 - 53 Wall Street B-03", - "https:\/\/map.yale.edu\/?id=1910#!m\/559554" + "https://map.yale.edu/?id=1910#!m/559554" ] ], "Wednesday": [ @@ -151493,7 +314983,7 @@ "9:25", "10:15", "WALL53 B-03 - 53 Wall Street B-03", - "https:\/\/map.yale.edu\/?id=1910#!m\/559554" + "https://map.yale.edu/?id=1910#!m/559554" ] ], "Thursday": [ @@ -151501,7 +314991,7 @@ "9:25", "10:15", "WALL53 B-03 - 53 Wall Street B-03", - "https:\/\/map.yale.edu\/?id=1910#!m\/559554" + "https://map.yale.edu/?id=1910#!m/559554" ] ], "Friday": [ @@ -151509,7 +314999,7 @@ "9:25", "10:15", "WALL53 B-03 - 53 Wall Street B-03", - "https:\/\/map.yale.edu\/?id=1910#!m\/559554" + "https://map.yale.edu/?id=1910#!m/559554" ] ] }, @@ -151525,10 +315015,38 @@ "classnotes": "", "final_exam": "Saturday, December 16, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88439\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88439/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -151565,7 +315083,7 @@ "9:25", "10:15", "PH 407 - Phelps Hall 407", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ], "Wednesday": [ @@ -151573,7 +315091,7 @@ "9:25", "10:15", "PH 407 - Phelps Hall 407", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ], "Friday": [ @@ -151581,7 +315099,7 @@ "9:25", "10:15", "PH 407 - Phelps Hall 407", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -151595,17 +315113,94 @@ "classnotes": "", "final_exam": "Thursday, December 14, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88443\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88443/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988237023353577, + 0.997931957244873 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988631010055542, + 0.9988879561424255 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998612642288208, + 0.9988813996315002 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 6 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", "requirements": "", "description": "Reading of selected books of the Iliad, with attention to Homeric language and style, the Homeric view of heroes and gods, and the reception of Homer in antiquity.", - "short_title": "Homer's Iliad<\/i>", - "title": "Homer's Iliad<\/i>", + "short_title": "Homer's Iliad", + "title": "Homer's Iliad", "school": "YC", "credits": 1.0, "extra_info": "ACTIVE", @@ -151639,7 +315234,7 @@ "11:35", "12:50", "PH 310 - Phelps Hall 310", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ], "Wednesday": [ @@ -151647,7 +315242,7 @@ "11:35", "12:50", "PH 310 - Phelps Hall 310", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -151663,17 +315258,45 @@ "classnotes": "", "final_exam": "Sunday, December 17, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88449\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88449/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", "description": "Close reading of selections from the Parallel\u00a0Lives, including the lives of\u00a0Pericles, Alcibiades, and Nicias. Plutarch's reception and mediation of Greco-Roman historical traditions; the nature and design of the Lives; ways in which genres such as biography, history, and historical fiction influenced and were influenced by Plutarch's work.", - "short_title": "Plutarch's Lives<\/I>", - "title": "Plutarch's Lives<\/I>", + "short_title": "Plutarch's Lives", + "title": "Plutarch's Lives", "school": "YC", "credits": 1.0, "extra_info": "ACTIVE", @@ -151704,7 +315327,7 @@ "14:30", "15:45", "YK220 002 - 220 York Street 002", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ], "Thursday": [ @@ -151712,7 +315335,7 @@ "14:30", "15:45", "YK220 002 - 220 York Street 002", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ] }, @@ -151730,10 +315353,81 @@ "classnotes": "This semester, the course will read Plutarch's \"Life of Alexander.\"", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91905\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91905/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987711310386658 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988722205162048 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989155530929565 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 3, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 3 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -151770,7 +315464,7 @@ "13:00", "14:15", "YK212 004A - 212 York Street 004A", - "https:\/\/map.yale.edu\/?id=1910#!m\/559604" + "https://map.yale.edu/?id=1910#!m/559604" ] ], "Thursday": [ @@ -151778,7 +315472,7 @@ "13:00", "14:15", "YK212 004A - 212 York Street 004A", - "https:\/\/map.yale.edu\/?id=1910#!m\/559604" + "https://map.yale.edu/?id=1910#!m/559604" ] ] }, @@ -151792,17 +315486,45 @@ "classnotes": "", "final_exam": "Saturday, December 16, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88452\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88452/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", "description": "Reading of selected books of the Iliad, with attention to Homeric language and style, the Homeric view of heroes and gods, and the reception of Homer in antiquity.", - "short_title": "Homer\u2019s Iliad<\/i>", - "title": "Homer\u2019s Iliad<\/i>", + "short_title": "Homer\u2019s Iliad", + "title": "Homer\u2019s Iliad", "school": "GS", "credits": 1.0, "extra_info": "ACTIVE", @@ -151836,7 +315558,7 @@ "11:35", "12:50", "PH 310 - Phelps Hall 310", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ], "Wednesday": [ @@ -151844,7 +315566,7 @@ "11:35", "12:50", "PH 310 - Phelps Hall 310", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -151856,17 +315578,45 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88449\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88449/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", "description": "Close reading of selections from the Parallel Lives, including the lives of Pericles, Alcibiades, and Nicias. Plutarch's reception and mediation of Greco-Roman historical traditions; the nature and design of the Lives; ways in which genres such as biography, history, and historical fiction influenced and were influenced by Plutarch's work.", - "short_title": "Plutarch's Lives<\/i>", - "title": "Plutarch's Lives<\/i>", + "short_title": "Plutarch's Lives", + "title": "Plutarch's Lives", "school": "GS", "credits": 1.0, "extra_info": "ACTIVE", @@ -151897,7 +315647,7 @@ "14:30", "15:45", "YK220 002 - 220 York Street 002", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ], "Thursday": [ @@ -151905,7 +315655,7 @@ "14:30", "15:45", "YK220 002 - 220 York Street 002", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ] }, @@ -151917,10 +315667,81 @@ "classnotes": "This semester, the course will read Plutarch's \"Life of Alexander.\"", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91905\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91905/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987711310386658 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988722205162048 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989155530929565 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 3, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 3 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -151958,7 +315779,7 @@ "10:30", "11:20", "HQ 207 - Humanities Quadrangle 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Tuesday": [ @@ -151966,7 +315787,7 @@ "10:30", "11:20", "HQ 207 - Humanities Quadrangle 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -151974,7 +315795,7 @@ "10:30", "11:20", "HQ 207 - Humanities Quadrangle 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -151982,7 +315803,7 @@ "10:30", "11:20", "HQ 207 - Humanities Quadrangle 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Friday": [ @@ -151990,7 +315811,7 @@ "10:30", "11:20", "HQ 207 - Humanities Quadrangle 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -152004,10 +315825,117 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89233\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89233/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9952671527862549, + 0.9987145662307739, + 0.9988383650779724, + 0.9986400008201599, + 0.9984009861946106, + 0.9988749623298645, + 0.930724024772644 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988638162612915, + 0.9988327622413635, + 0.9989222288131714, + 0.9988999366760254, + 0.9989251494407654, + 0.9989344477653503, + 0.998857855796814 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987523555755615, + 0.9987502098083496, + 0.998933732509613, + 0.9988467693328857, + 0.9989363551139832, + 0.9989088773727417, + 0.9987241625785828 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 21, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 21 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -152045,7 +315973,7 @@ "11:35", "12:25", "HQ 209 - Humanities Quadrangle 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Tuesday": [ @@ -152053,7 +315981,7 @@ "11:35", "12:25", "HQ 209 - Humanities Quadrangle 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -152061,7 +315989,7 @@ "11:35", "12:25", "HQ 209 - Humanities Quadrangle 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -152069,7 +315997,7 @@ "11:35", "12:25", "HQ 209 - Humanities Quadrangle 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Friday": [ @@ -152077,7 +316005,7 @@ "11:35", "12:25", "HQ 209 - Humanities Quadrangle 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -152091,10 +316019,119 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89234\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89234/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998925507068634, + 0.9987824559211731, + 0.9988154172897339, + 0.9982724189758301, + 0.9960793852806091, + 0.996889054775238, + 0.9989352822303772 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985583424568176, + 0.9974351525306702, + 0.9989110231399536, + 0.9989216327667236, + 0.9988017082214355, + 0.9988848567008972, + 0.9989307522773743 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989215135574341, + 0.9983525276184082, + 0.998924195766449, + 0.9988075494766235, + 0.9989327788352966, + 0.9987817406654358, + 0.9989125728607178 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 0.9523809523809523, + "final_counts": { + "POSITIVE": 20, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9523809523809523, + "NEGATIVE": 0.047619047619047616 + } + } }, { "season_code": "202303", @@ -152132,7 +316169,7 @@ "10:30", "11:20", "HQ C15 - Humanities Quadrangle C15", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Tuesday": [ @@ -152140,7 +316177,7 @@ "10:30", "11:20", "HQ C15 - Humanities Quadrangle C15", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -152148,7 +316185,7 @@ "10:30", "11:20", "HQ C15 - Humanities Quadrangle C15", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -152156,7 +316193,7 @@ "10:30", "11:20", "HQ C15 - Humanities Quadrangle C15", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Friday": [ @@ -152164,7 +316201,7 @@ "10:30", "11:20", "HQ C15 - Humanities Quadrangle C15", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -152178,10 +316215,95 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89235\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89235/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9966841340065002, + 0.9988164901733398, + 0.9989293217658997 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.997619092464447, + 0.9987853169441223, + 0.9989063739776611 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9980030655860901, + 0.9987943172454834, + 0.998877227306366 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 0.7777777777777778, + "final_counts": { + "POSITIVE": 7, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.7777777777777778, + "NEGATIVE": 0.2222222222222222 + } + } }, { "season_code": "202303", @@ -152219,7 +316341,7 @@ "11:35", "12:25", "HQ C15 - Humanities Quadrangle C15", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Tuesday": [ @@ -152227,7 +316349,7 @@ "11:35", "12:25", "HQ C15 - Humanities Quadrangle C15", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -152235,7 +316357,7 @@ "11:35", "12:25", "HQ C15 - Humanities Quadrangle C15", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -152243,7 +316365,7 @@ "11:35", "12:25", "HQ C15 - Humanities Quadrangle C15", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Friday": [ @@ -152251,7 +316373,7 @@ "11:35", "12:25", "HQ C15 - Humanities Quadrangle C15", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -152265,10 +316387,38 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89235\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89235/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -152308,7 +316458,7 @@ "11:35", "12:50", "WLH 115 - William L. Harkness Hall 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -152316,7 +316466,7 @@ "11:35", "12:50", "WLH 115 - William L. Harkness Hall 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -152330,10 +316480,103 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89237\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89237/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987500905990601, + 0.9987700581550598, + 0.9988369345664978, + 0.9988104104995728 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998916506767273, + 0.997928261756897, + 0.9988961219787598, + 0.9966838955879211 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988834261894226, + 0.9988922476768494, + 0.9988200068473816, + 0.9984257221221924, + 0.9988338351249695, + 0.990307092666626 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 14 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -152374,7 +316617,7 @@ "9:00", "10:15", "WLH 115 - William L. Harkness Hall 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -152382,7 +316625,7 @@ "9:00", "10:15", "WLH 115 - William L. Harkness Hall 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -152396,10 +316639,99 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89238\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89238/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983246922492981, + 0.9988728165626526, + 0.9986433386802673, + 0.9988020658493042 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981042146682739, + 0.998875081539154, + 0.9988712668418884, + 0.9989253878593445 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988529682159424, + 0.9988498687744141, + 0.9988981485366821, + 0.9989317059516907 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 12 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -152441,7 +316773,7 @@ "14:30", "15:45", "HQ 129 - Humanities Quadrangle 129", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -152449,7 +316781,7 @@ "14:30", "15:45", "HQ 129 - Humanities Quadrangle 129", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -152467,10 +316799,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89239\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89239/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -152508,7 +316868,7 @@ "10:30", "11:20", "HQ 207 - Humanities Quadrangle 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Tuesday": [ @@ -152516,7 +316876,7 @@ "10:30", "11:20", "HQ 207 - Humanities Quadrangle 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -152524,7 +316884,7 @@ "10:30", "11:20", "HQ 207 - Humanities Quadrangle 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -152532,7 +316892,7 @@ "10:30", "11:20", "HQ 207 - Humanities Quadrangle 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Friday": [ @@ -152540,7 +316900,7 @@ "10:30", "11:20", "HQ 207 - Humanities Quadrangle 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -152552,10 +316912,117 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89233\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89233/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9952671527862549, + 0.9987145662307739, + 0.9988383650779724, + 0.9986400008201599, + 0.9984009861946106, + 0.9988749623298645, + 0.930724024772644 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988638162612915, + 0.9988327622413635, + 0.9989222288131714, + 0.9988999366760254, + 0.9989251494407654, + 0.9989344477653503, + 0.998857855796814 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987523555755615, + 0.9987502098083496, + 0.998933732509613, + 0.9988467693328857, + 0.9989363551139832, + 0.9989088773727417, + 0.9987241625785828 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 21, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 21 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -152593,7 +317060,7 @@ "11:35", "12:25", "HQ 209 - Humanities Quadrangle 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Tuesday": [ @@ -152601,7 +317068,7 @@ "11:35", "12:25", "HQ 209 - Humanities Quadrangle 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -152609,7 +317076,7 @@ "11:35", "12:25", "HQ 209 - Humanities Quadrangle 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -152617,7 +317084,7 @@ "11:35", "12:25", "HQ 209 - Humanities Quadrangle 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Friday": [ @@ -152625,7 +317092,7 @@ "11:35", "12:25", "HQ 209 - Humanities Quadrangle 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -152637,10 +317104,119 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89234\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89234/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998925507068634, + 0.9987824559211731, + 0.9988154172897339, + 0.9982724189758301, + 0.9960793852806091, + 0.996889054775238, + 0.9989352822303772 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985583424568176, + 0.9974351525306702, + 0.9989110231399536, + 0.9989216327667236, + 0.9988017082214355, + 0.9988848567008972, + 0.9989307522773743 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989215135574341, + 0.9983525276184082, + 0.998924195766449, + 0.9988075494766235, + 0.9989327788352966, + 0.9987817406654358, + 0.9989125728607178 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 0.9523809523809523, + "final_counts": { + "POSITIVE": 20, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9523809523809523, + "NEGATIVE": 0.047619047619047616 + } + } }, { "season_code": "202303", @@ -152678,7 +317254,7 @@ "10:30", "11:20", "HQ C15 - Humanities Quadrangle C15", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Tuesday": [ @@ -152686,7 +317262,7 @@ "10:30", "11:20", "HQ C15 - Humanities Quadrangle C15", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -152694,7 +317270,7 @@ "10:30", "11:20", "HQ C15 - Humanities Quadrangle C15", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -152702,7 +317278,7 @@ "10:30", "11:20", "HQ C15 - Humanities Quadrangle C15", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Friday": [ @@ -152710,7 +317286,7 @@ "10:30", "11:20", "HQ C15 - Humanities Quadrangle C15", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -152722,10 +317298,95 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89235\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89235/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9966841340065002, + 0.9988164901733398, + 0.9989293217658997 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.997619092464447, + 0.9987853169441223, + 0.9989063739776611 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9980030655860901, + 0.9987943172454834, + 0.998877227306366 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 0.7777777777777778, + "final_counts": { + "POSITIVE": 7, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.7777777777777778, + "NEGATIVE": 0.2222222222222222 + } + } }, { "season_code": "202303", @@ -152763,7 +317424,7 @@ "11:35", "12:25", "HQ C15 - Humanities Quadrangle C15", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Tuesday": [ @@ -152771,7 +317432,7 @@ "11:35", "12:25", "HQ C15 - Humanities Quadrangle C15", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -152779,7 +317440,7 @@ "11:35", "12:25", "HQ C15 - Humanities Quadrangle C15", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -152787,7 +317448,7 @@ "11:35", "12:25", "HQ C15 - Humanities Quadrangle C15", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Friday": [ @@ -152795,7 +317456,7 @@ "11:35", "12:25", "HQ C15 - Humanities Quadrangle C15", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -152807,10 +317468,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89235\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89235/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -152850,7 +317539,7 @@ "11:35", "12:50", "WLH 115 - William L. Harkness Hall 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -152858,7 +317547,7 @@ "11:35", "12:50", "WLH 115 - William L. Harkness Hall 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -152870,10 +317559,103 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89237\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89237/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987500905990601, + 0.9987700581550598, + 0.9988369345664978, + 0.9988104104995728 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998916506767273, + 0.997928261756897, + 0.9988961219787598, + 0.9966838955879211 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988834261894226, + 0.9988922476768494, + 0.9988200068473816, + 0.9984257221221924, + 0.9988338351249695, + 0.990307092666626 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 14 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -152914,7 +317696,7 @@ "9:00", "10:15", "WLH 115 - William L. Harkness Hall 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -152922,7 +317704,7 @@ "9:00", "10:15", "WLH 115 - William L. Harkness Hall 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -152934,10 +317716,99 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89238\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89238/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983246922492981, + 0.9988728165626526, + 0.9986433386802673, + 0.9988020658493042 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981042146682739, + 0.998875081539154, + 0.9988712668418884, + 0.9989253878593445 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988529682159424, + 0.9988498687744141, + 0.9988981485366821, + 0.9989317059516907 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 12 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -152979,7 +317850,7 @@ "14:30", "15:45", "HQ 129 - Humanities Quadrangle 129", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -152987,7 +317858,7 @@ "14:30", "15:45", "HQ 129 - Humanities Quadrangle 129", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -152999,10 +317870,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89239\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89239/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -153058,7 +317957,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -153114,7 +318041,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -153170,7 +318125,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -153219,7 +318202,35 @@ "syllabus_url": "", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -153257,7 +318268,7 @@ "13:00", "14:15", "HQ C65 - Humanities Quadrangle C65", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -153265,7 +318276,7 @@ "13:00", "14:15", "HQ C65 - Humanities Quadrangle C65", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -153288,10 +318299,105 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88462\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88462/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998854398727417, + 0.9988154172897339, + 0.998794674873352, + 0.995518147945404, + 0.9986751675605774 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9972666501998901, + 0.9986532926559448, + 0.9989044666290283, + 0.9988657236099243 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998891294002533, + 0.998927652835846, + 0.9987776875495911, + 0.9987488985061646, + 0.9986751675605774, + 0.9983343482017517 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 15 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -153335,7 +318441,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -153373,7 +318507,7 @@ "11:35", "12:50", "HQ C07 - Humanities Quadrangle C07", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -153381,7 +318515,7 @@ "11:35", "12:50", "HQ C07 - Humanities Quadrangle C07", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -153403,10 +318537,91 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88466\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88466/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986862540245056, + 0.9988380074501038 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9970663189888, + 0.9909117221832275 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 1 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9993302822113037, + 0.999194324016571, + 0.9988996982574463 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 1 + }, + "sentiment_distribution": { + "NEGATIVE": 0.6666666666666666, + "POSITIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 4, + "final_proportion": 0.5714285714285714, + "final_counts": { + "POSITIVE": 4, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.5714285714285714, + "NEGATIVE": 0.42857142857142855 + } + } }, { "season_code": "202303", @@ -153445,7 +318660,7 @@ "13:00", "14:15", "HQ C64 - Humanities Quadrangle C64", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -153453,7 +318668,7 @@ "13:00", "14:15", "HQ C64 - Humanities Quadrangle C64", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -153472,10 +318687,99 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88042\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88042/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986317753791809, + 0.9989140033721924, + 0.998847484588623, + 0.9986741542816162 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9981642365455627, + 0.9988633394241333, + 0.997173547744751 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9936844706535339, + 0.9989320635795593, + 0.9989342093467712, + 0.9989030361175537 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 0.9090909090909091, + "final_counts": { + "POSITIVE": 10, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + } + } }, { "season_code": "202303", @@ -153512,7 +318816,7 @@ "11:35", "12:50", "HQ C11 - Humanities Quadrangle C11", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -153520,7 +318824,7 @@ "11:35", "12:50", "HQ C11 - Humanities Quadrangle C11", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -153538,10 +318842,109 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88471\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88471/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987913966178894, + 0.9989091157913208, + 0.9989110231399536, + 0.9989365935325623, + 0.998643696308136, + 0.9989257454872131 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988631010055542, + 0.998920202255249, + 0.9989301562309265, + 0.9986478686332703 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985219836235046, + 0.9989084005355835, + 0.9989362359046936, + 0.9988123178482056, + 0.9988182187080383, + 0.998917818069458 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 0.9375, + "final_counts": { + "POSITIVE": 15, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9375, + "NEGATIVE": 0.0625 + } + } }, { "season_code": "202303", @@ -153587,7 +318990,35 @@ "syllabus_url": "", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -153625,7 +319056,7 @@ "13:00", "14:15", "WLH 210 - William L. Harkness Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -153633,7 +319064,7 @@ "13:00", "14:15", "WLH 210 - William L. Harkness Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -153656,10 +319087,111 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90212\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90212/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989117383956909, + 0.9989144802093506, + 0.9989199638366699, + 0.9989251494407654 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998914361000061, + 0.9989168643951416, + 0.9989113807678223, + 0.9988476037979126, + 0.9985665678977966, + 0.9989056587219238 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989210367202759, + 0.9989118576049805, + 0.9987803101539612, + 0.9980016350746155, + 0.9986502528190613, + 0.9994732737541199, + 0.9989295601844788 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.7142857142857143, + "NEGATIVE": 0.2857142857142857 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7142857142857143 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 0.8823529411764706, + "final_counts": { + "POSITIVE": 15, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8823529411764706, + "NEGATIVE": 0.11764705882352941 + } + } }, { "season_code": "202303", @@ -153696,7 +319228,7 @@ "13:00", "14:15", "HQ C15 - Humanities Quadrangle C15", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -153704,7 +319236,7 @@ "13:00", "14:15", "HQ C15 - Humanities Quadrangle C15", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -153720,10 +319252,123 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88480\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88480/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989194869995117, + 0.9988678693771362, + 0.9988906979560852, + 0.9988914132118225, + 0.9987314343452454, + 0.9989123344421387, + 0.9989238381385803, + 0.9988114833831787 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998906135559082, + 0.9989207983016968, + 0.9987767338752747, + 0.998927891254425, + 0.9989150762557983, + 0.998902440071106, + 0.9988124370574951, + 0.9989129304885864 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989359974861145, + 0.9987574815750122, + 0.998878538608551, + 0.9989332556724548, + 0.9989161491394043, + 0.9989268183708191, + 0.9989359974861145, + 0.9989199638366699 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 24, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 24 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -153760,7 +319405,7 @@ "14:30", "15:45", "HQ C15 - Humanities Quadrangle C15", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -153768,7 +319413,7 @@ "14:30", "15:45", "HQ C15 - Humanities Quadrangle C15", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -153784,10 +319429,119 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88484\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88484/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989064931869507, + 0.9989060163497925, + 0.9989318251609802, + 0.998923122882843, + 0.9988569021224976 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989159107208252, + 0.9989277720451355, + 0.998895525932312, + 0.9988069534301758, + 0.9989147186279297, + 0.998934805393219, + 0.9846383929252625, + 0.998859167098999 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989393353462219, + 0.9989277720451355, + 0.998828113079071, + 0.9988805651664734, + 0.998936116695404, + 0.9988646507263184, + 0.9992407560348511, + 0.9989264607429504 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 0.9523809523809523, + "final_counts": { + "POSITIVE": 20, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9523809523809523, + "NEGATIVE": 0.047619047619047616 + } + } }, { "season_code": "202303", @@ -153825,7 +319579,7 @@ "13:00", "14:15", "HQ 129 - Humanities Quadrangle 129", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -153833,7 +319587,7 @@ "13:00", "14:15", "HQ 129 - Humanities Quadrangle 129", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -153857,10 +319611,113 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91898\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91898/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989161491394043, + 0.9988446235656738, + 0.9989218711853027, + 0.9986396431922913, + 0.9989049434661865, + 0.9988186955451965 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988262057304382, + 0.9983693957328796, + 0.9989318251609802, + 0.9989239573478699, + 0.9989050626754761, + 0.9989338517189026 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988940358161926, + 0.9988877177238464, + 0.998930037021637, + 0.9989092350006104, + 0.9989228844642639, + 0.9989363551139832 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 0.9444444444444444, + "final_counts": { + "POSITIVE": 17, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9444444444444444, + "NEGATIVE": 0.05555555555555555 + } + } }, { "season_code": "202303", @@ -153900,7 +319757,7 @@ "9:00", "10:15", "HQ C15 - Humanities Quadrangle C15", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -153908,7 +319765,7 @@ "9:00", "10:15", "HQ C15 - Humanities Quadrangle C15", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -153925,10 +319782,121 @@ "classnotes": "Please email eun-joo.ahn@yale.edu a brief message indicating your background and interest in this course. Preference may be given to those students interested in majoring in AMST, ER&M, CS, or PHYS. ", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92204\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92204/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.990673840045929, + 0.9987888932228088, + 0.9986708164215088, + 0.9989140033721924, + 0.9987428784370422, + 0.9988447427749634, + 0.9985144734382629 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988699555397034, + 0.9988747239112854, + 0.9987194538116455, + 0.9983106851577759, + 0.998822033405304, + 0.9945153594017029, + 0.9989140033721924, + 0.9986201524734497 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986554384231567, + 0.998920202255249, + 0.998874843120575, + 0.997432291507721, + 0.996787428855896, + 0.9988641738891602, + 0.9949188828468323 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 21, + "final_proportion": 0.9545454545454546, + "final_counts": { + "POSITIVE": 21, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9545454545454546, + "NEGATIVE": 0.045454545454545456 + } + } }, { "season_code": "202303", @@ -153965,7 +319933,7 @@ "14:30", "15:45", "HQ C15 - Humanities Quadrangle C15", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -153973,7 +319941,7 @@ "14:30", "15:45", "HQ C15 - Humanities Quadrangle C15", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -153993,10 +319961,141 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89108\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89108/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988682270050049, + 0.9989251494407654, + 0.9988588094711304, + 0.998810887336731, + 0.9988516569137573, + 0.9989175796508789, + 0.998874843120575, + 0.9987611770629883, + 0.998867392539978, + 0.9988847374916077, + 0.998822033405304 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988117218017578, + 0.9989266991615295, + 0.998928964138031, + 0.9989136457443237, + 0.9988683462142944, + 0.9988996982574463, + 0.9989022016525269, + 0.9989029169082642, + 0.998895525932312 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9942578077316284, + 0.9989330172538757, + 0.9988951086997986, + 0.9988991022109985, + 0.997117280960083, + 0.9982472658157349, + 0.9989321827888489, + 0.9988788962364197, + 0.9986270666122437, + 0.9989060163497925, + 0.9986945986747742, + 0.9989194869995117, + 0.9985874891281128 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 33, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 33 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -154033,7 +320132,7 @@ "13:00", "14:15", "HQ 307 - Humanities Quadrangle 307", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -154041,7 +320140,7 @@ "13:00", "14:15", "HQ 307 - Humanities Quadrangle 307", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -154059,10 +320158,105 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92499\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92499/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989193677902222, + 0.9780674576759338, + 0.998757004737854, + 0.9988929629325867, + 0.998779833316803 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989156723022461, + 0.9988216757774353, + 0.9988915324211121, + 0.9989317059516907, + 0.9988619089126587 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9980543851852417, + 0.9988742470741272, + 0.9987187385559082, + 0.9989217519760132, + 0.998723566532135 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 15 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -154099,7 +320293,7 @@ "13:30", "15:20", "HQ 113 - Humanities Quadrangle 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -154121,10 +320315,103 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88489\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88489/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989016056060791, + 0.9988901019096375, + 0.998879611492157, + 0.998611330986023 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985978007316589, + 0.9989230036735535, + 0.9988852143287659, + 0.9989205598831177 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989199638366699, + 0.998935878276825, + 0.9988970756530762, + 0.9988521337509155, + 0.9989221096038818, + 0.9987497329711914 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 14 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -154165,7 +320452,7 @@ "13:30", "14:20", "HQ L02 - Humanities Quadrangle L02", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -154173,7 +320460,7 @@ "13:30", "14:20", "HQ L02 - Humanities Quadrangle L02", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -154199,10 +320486,185 @@ "classnotes": "", "final_exam": "Saturday, December 16, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88493\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88493/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988808035850525, + 0.9988229870796204, + 0.9988625049591064, + 0.9989086389541626, + 0.9987517595291138, + 0.998902440071106, + 0.9987687468528748, + 0.9987989664077759, + 0.9989051818847656, + 0.9989174604415894, + 0.9983054399490356, + 0.9987301230430603, + 0.9989237189292908, + 0.9989332556724548, + 0.9988400340080261, + 0.9988407492637634, + 0.9987784028053284, + 0.9974057078361511 + ], + "sentiment_counts": { + "POSITIVE": 18, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9963480830192566, + 0.9987426400184631, + 0.9989305138587952, + 0.9988093376159668, + 0.998782217502594, + 0.9897776246070862, + 0.9965038299560547, + 0.9988129138946533, + 0.9988614320755005, + 0.9985988736152649, + 0.9972853660583496, + 0.9989032745361328, + 0.9984378218650818, + 0.9989340901374817, + 0.9989116191864014, + 0.988175630569458, + 0.9955410361289978 + ], + "sentiment_counts": { + "POSITIVE": 14, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.8235294117647058, + "NEGATIVE": 0.17647058823529413 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8235294117647058 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9974592328071594, + 0.9945626854896545, + 0.9988327622413635, + 0.9988840222358704, + 0.9989305138587952, + 0.9984487295150757, + 0.9988697171211243, + 0.99732506275177, + 0.9986433386802673, + 0.9988701939582825, + 0.9989168643951416, + 0.9986500144004822, + 0.9974197149276733, + 0.998824417591095, + 0.9989323019981384, + 0.9988640546798706, + 0.99888676404953, + 0.9979302883148193, + 0.9974592328071594 + ], + "sentiment_counts": { + "POSITIVE": 19, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 51, + "final_proportion": 0.9444444444444444, + "final_counts": { + "POSITIVE": 51, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.9444444444444444, + "NEGATIVE": 0.05555555555555555 + } + } }, { "season_code": "202303", @@ -154234,7 +320696,7 @@ "15:30", "16:20", "HQ 127 - Humanities Quadrangle 127", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -154262,7 +320724,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -154330,7 +320820,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -154362,7 +320880,7 @@ "16:00", "16:50", "HQ C01 - Humanities Quadrangle C01", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -154390,7 +320908,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -154458,7 +321004,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -154490,7 +321064,7 @@ "17:00", "17:50", "HQ C01 - Humanities Quadrangle C01", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -154518,7 +321092,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -154550,7 +321152,7 @@ "19:00", "19:50", "WLH 007 - William L. Harkness Hall 007", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -154578,7 +321180,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -154610,7 +321240,7 @@ "10:30", "11:20", "WLH 117 - William L. Harkness Hall 117", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -154638,7 +321268,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -154670,7 +321328,7 @@ "11:35", "12:25", "HQ C11 - Humanities Quadrangle C11", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -154698,7 +321356,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -154766,7 +321452,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -154835,7 +321549,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -154873,7 +321615,7 @@ "13:00", "14:15", "WLH 208 - William L. Harkness Hall 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -154881,7 +321623,7 @@ "13:00", "14:15", "WLH 208 - William L. Harkness Hall 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -154904,10 +321646,107 @@ "classnotes": "", "final_exam": "Wednesday, December 20, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88497\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88497/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988846182823181, + 0.9987815022468567, + 0.9988712668418884, + 0.9985902905464172, + 0.9987205266952515 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985974431037903, + 0.9989375472068787, + 0.9988420605659485, + 0.9985970854759216, + 0.9989120960235596 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988409876823425, + 0.9989386200904846, + 0.9988842606544495, + 0.9989272952079773, + 0.9850194454193115, + 0.9989228844642639 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 16 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -154939,7 +321778,7 @@ "16:00", "16:50", "AKW 100 - Arthur K. Watson Hall 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560119" + "https://map.yale.edu/?id=1910#!m/560119" ] ] }, @@ -154961,7 +321800,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -154993,7 +321860,7 @@ "19:00", "19:50", "WTS B74 - Watson Center 60 Sachem Street B74", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -155015,7 +321882,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -155047,7 +321942,7 @@ "14:30", "15:20", "WTS A68 - Watson Center 60 Sachem Street A68", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -155069,7 +321964,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -155101,7 +322024,7 @@ "19:00", "19:50", "WTS B30 - Watson Center 60 Sachem Street B30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -155123,7 +322046,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -155161,7 +322112,7 @@ "9:25", "11:15", "HQ 123 - Humanities Quadrangle 123", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -155179,10 +322130,105 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90365\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90365/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988723397254944, + 0.9989101886749268, + 0.9988428354263306, + 0.9989162683486938 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988722205162048, + 0.9989237189292908, + 0.9949334263801575, + 0.9989302754402161, + 0.9989132881164551 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988967180252075, + 0.9989029169082642, + 0.9974744915962219, + 0.9989097118377686, + 0.9987742304801941, + 0.9989277720451355 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 15 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -155221,7 +322267,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -155259,7 +322333,7 @@ "13:30", "15:20", "WLH 115 - William L. Harkness Hall 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -155284,15 +322358,100 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88502\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88502/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "", - "description": "Since 9\/11, cases of what has been termed \"home-grown terrorism\" have cemented the fear that \"bad\" Islam is not just something that exists far away, in distant lands. As a result, there has been an urgent interest to understand who American Muslims are by officials, experts, journalists, and the public. Although Muslims have been part of America\u2019s story from its founding, Muslims have alternated from an invisible minority to the source of national moral panics, capturing national attention during political crises, as a cultural threat or even a potential fifth column. Today the stakes are high to understand what kinds of meanings and attachments connect Muslims in America to the Muslim world and to the US as a nation.\u00a0Over the course of the semester, students grapple with how to define and apply the slippery concept of diaspora to different dispersed Muslim populations in the US, including racial and ethnic diasporas, trading diasporas, political diasporas, and others. By focusing on a range of communities-in-motion and a diverse set of cultural texts, students explore the ways mobility, loss, and communal identity are conceptualized by immigrants, expatriates, refugees, guest-workers, religious seekers, and exiles. To this end, we read histories, ethnographies, essays, policy papers, novels, poetry, memoirs; we watch documentary and fictional films; we listen to music, speeches, spoken word performances, and prayers. Our aim is to deepen our understanding of the multiple meanings and conceptual limits of homeland and diaspora for Muslims in America, particularly in the Age of Terror.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987723231315613, + 0.9987708926200867, + 0.99856036901474 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989303946495056, + 0.9988523721694946, + 0.9989355206489563, + 0.9989111423492432 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989123344421387, + 0.9988864064216614, + 0.9989207983016968 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 10 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } + }, + { + "season_code": "202303", + "requirements": "", + "description": "Since 9/11, cases of what has been termed \"home-grown terrorism\" have cemented the fear that \"bad\" Islam is not just something that exists far away, in distant lands. As a result, there has been an urgent interest to understand who American Muslims are by officials, experts, journalists, and the public. Although Muslims have been part of America\u2019s story from its founding, Muslims have alternated from an invisible minority to the source of national moral panics, capturing national attention during political crises, as a cultural threat or even a potential fifth column. Today the stakes are high to understand what kinds of meanings and attachments connect Muslims in America to the Muslim world and to the US as a nation.\u00a0Over the course of the semester, students grapple with how to define and apply the slippery concept of diaspora to different dispersed Muslim populations in the US, including racial and ethnic diasporas, trading diasporas, political diasporas, and others. By focusing on a range of communities-in-motion and a diverse set of cultural texts, students explore the ways mobility, loss, and communal identity are conceptualized by immigrants, expatriates, refugees, guest-workers, religious seekers, and exiles. To this end, we read histories, ethnographies, essays, policy papers, novels, poetry, memoirs; we watch documentary and fictional films; we listen to music, speeches, spoken word performances, and prayers. Our aim is to deepen our understanding of the multiple meanings and conceptual limits of homeland and diaspora for Muslims in America, particularly in the Age of Terror.", "short_title": "Muslims in the United States", "title": "Muslims in the United States", "school": "YC", @@ -155347,10 +322506,87 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90433\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90433/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989101886749268 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989374279975891 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989404082298279, + 0.9988607168197632, + 0.9989339709281921, + 0.9989374279975891 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 6 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -155391,7 +322627,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -155433,7 +322697,7 @@ "11:35", "12:25", "YUAG AUD - Yale University Art Gallery AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/559918" + "https://map.yale.edu/?id=1910#!m/559918" ] ], "Thursday": [ @@ -155441,7 +322705,7 @@ "11:35", "12:25", "YUAG AUD - Yale University Art Gallery AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/559918" + "https://map.yale.edu/?id=1910#!m/559918" ] ] }, @@ -155450,7 +322714,7 @@ "Hu" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC ENRG: Energy & Environment", "YC ENRG: Energy & Society", @@ -155461,10 +322725,339 @@ "classnotes": "", "final_exam": "Friday, December 15, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89565\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89565/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988375306129456, + 0.9745486974716187, + 0.9978081583976746, + 0.9988411068916321, + 0.998700737953186, + 0.9988883137702942, + 0.9987426400184631, + 0.998898983001709, + 0.9987830519676208, + 0.9994888305664062, + 0.9988528490066528, + 0.9983839988708496, + 0.9982752799987793, + 0.9988221526145935, + 0.9988779425621033, + 0.9988971948623657, + 0.9989123344421387, + 0.9987972974777222, + 0.9988614320755005, + 0.9988412261009216, + 0.9986856579780579, + 0.9512736797332764, + 0.9911984801292419, + 0.9987909197807312, + 0.9935370087623596, + 0.9989128112792969, + 0.9988229870796204, + 0.9988051652908325, + 0.998722493648529, + 0.9988749623298645, + 0.9988431930541992, + 0.9988594055175781, + 0.9987161159515381, + 0.9988018274307251, + 0.9987325072288513, + 0.998615026473999, + 0.9988515377044678, + 0.9987990856170654, + 0.9976200461387634 + ], + "sentiment_counts": { + "POSITIVE": 34, + "NEGATIVE": 5 + }, + "sentiment_distribution": { + "POSITIVE": 0.8717948717948718, + "NEGATIVE": 0.1282051282051282 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8717948717948718 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988767504692078, + 0.9988866448402405, + 0.9988052845001221, + 0.9985508322715759, + 0.9987472295761108, + 0.9988623857498169, + 0.9987657070159912, + 0.9957031607627869, + 0.9979584217071533, + 0.9989247918128967, + 0.9984208345413208, + 0.999489426612854, + 0.9986494183540344, + 0.9994025230407715, + 0.9989386200904846, + 0.9989216327667236, + 0.9987127780914307, + 0.9988584518432617, + 0.9986187219619751, + 0.9989338517189026, + 0.9983636736869812, + 0.9993415474891663, + 0.9989307522773743, + 0.9989222288131714, + 0.999431312084198, + 0.9995033740997314, + 0.9918841123580933, + 0.9987691044807434, + 0.9851342439651489, + 0.998908281326294, + 0.9982900023460388, + 0.9944076538085938, + 0.9986935257911682, + 0.9994964599609375, + 0.997230589389801, + 0.9988928437232971, + 0.9983024597167969, + 0.9893326759338379, + 0.998908281326294, + 0.9988983869552612, + 0.9987039566040039, + 0.9988982677459717, + 0.9987058639526367, + 0.9986599683761597, + 0.9981788396835327 + ], + "sentiment_counts": { + "POSITIVE": 34, + "NEGATIVE": 11 + }, + "sentiment_distribution": { + "POSITIVE": 0.7555555555555555, + "NEGATIVE": 0.24444444444444444 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7555555555555555 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989129304885864, + 0.9980422258377075, + 0.9772031307220459, + 0.9988924860954285, + 0.9985565543174744, + 0.9988566637039185, + 0.9989244341850281, + 0.9989210367202759, + 0.9988320469856262, + 0.9988540410995483, + 0.997117280960083, + 0.9979623556137085, + 0.878170907497406, + 0.998935878276825, + 0.9982725381851196, + 0.9994218349456787, + 0.9987792372703552, + 0.9989334940910339, + 0.9989062547683716, + 0.9988899827003479, + 0.9995080232620239, + 0.9982553124427795, + 0.9989147186279297, + 0.9989333748817444, + 0.9995095729827881, + 0.9988654851913452, + 0.9987298846244812, + 0.99947589635849, + 0.9986647367477417, + 0.9988137483596802, + 0.9995065927505493, + 0.9988718628883362, + 0.8759276270866394, + 0.9994837045669556, + 0.9988135099411011, + 0.9984739422798157, + 0.9988139867782593, + 0.9987475872039795, + 0.9988629817962646, + 0.9986599683761597, + 0.9982942938804626, + 0.998596727848053, + 0.9989272952079773, + 0.9989011287689209, + 0.9987940788269043, + 0.9988528490066528, + 0.9994882345199585 + ], + "sentiment_counts": { + "POSITIVE": 38, + "NEGATIVE": 9 + }, + "sentiment_distribution": { + "POSITIVE": 0.8085106382978723, + "NEGATIVE": 0.19148936170212766 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8085106382978723 + ] + }, + "final_label": "POSITIVE", + "final_count": 106, + "final_proportion": 0.8091603053435115, + "final_counts": { + "POSITIVE": 106, + "NEGATIVE": 25 + }, + "final_distribution": { + "POSITIVE": 0.8091603053435115, + "NEGATIVE": 0.19083969465648856 + } + } }, { "season_code": "202303", @@ -155503,7 +323096,7 @@ "10:30", "11:20", "LUCE 101 - Luce Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ], "Wednesday": [ @@ -155511,7 +323104,7 @@ "10:30", "11:20", "LUCE 101 - Luce Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ] }, @@ -155520,7 +323113,7 @@ "Hu" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC GLBL: Elective", "YC HIST: United States", @@ -155534,10 +323127,289 @@ "classnotes": "", "final_exam": "Monday, December 18, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88507\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88507/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998719334602356, + 0.9984116554260254, + 0.9988136291503906, + 0.9989320635795593, + 0.9988324046134949, + 0.9989026784896851, + 0.9987913966178894, + 0.9988657236099243, + 0.9987034797668457, + 0.9988868832588196, + 0.9968256950378418, + 0.9989257454872131, + 0.9988752007484436, + 0.9988456964492798, + 0.9988148212432861, + 0.9987849593162537, + 0.9986757636070251, + 0.9989117383956909, + 0.998892605304718, + 0.9988835453987122, + 0.9987329840660095, + 0.9988890290260315, + 0.9981106519699097, + 0.998752236366272, + 0.9985998272895813, + 0.9987897276878357, + 0.9986281394958496, + 0.9987984895706177, + 0.9989116191864014, + 0.9988357424736023, + 0.9987951517105103, + 0.9966489672660828, + 0.9989224672317505, + 0.9989142417907715, + 0.9989173412322998, + 0.9988914132118225 + ], + "sentiment_counts": { + "POSITIVE": 36, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9992467164993286, + 0.9987441301345825, + 0.9988712668418884, + 0.9916486740112305, + 0.9989280104637146, + 0.9987932443618774, + 0.9695658087730408, + 0.992197573184967, + 0.9966341853141785, + 0.8261944055557251, + 0.9857897162437439, + 0.9989251494407654, + 0.9989365935325623, + 0.9987953901290894, + 0.9989191293716431, + 0.9986729621887207, + 0.9955092668533325, + 0.998872697353363, + 0.9988946318626404, + 0.9984707236289978, + 0.9987938404083252, + 0.9940075874328613, + 0.9986085295677185, + 0.9989198446273804, + 0.9989277720451355, + 0.9981675148010254, + 0.9993706345558167, + 0.9988019466400146, + 0.9986172914505005, + 0.9987775683403015, + 0.998857855796814, + 0.9986472725868225, + 0.9988607168197632, + 0.9988539218902588 + ], + "sentiment_counts": { + "NEGATIVE": 8, + "POSITIVE": 26 + }, + "sentiment_distribution": { + "NEGATIVE": 0.23529411764705882, + "POSITIVE": 0.7647058823529411 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7647058823529411 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994660019874573, + 0.9989173412322998, + 0.9988905787467957, + 0.9989038705825806, + 0.9986855387687683, + 0.9989135265350342, + 0.9988939166069031, + 0.9981873631477356, + 0.997117280960083, + 0.998735249042511, + 0.9988706707954407, + 0.9989287257194519, + 0.998904824256897, + 0.9987974166870117, + 0.9986609220504761, + 0.9988897442817688, + 0.9987824559211731, + 0.9986056685447693, + 0.998893678188324, + 0.9988278746604919, + 0.9988166093826294, + 0.9988821148872375, + 0.997117280960083, + 0.9987800717353821, + 0.9981470108032227, + 0.9988797307014465, + 0.9987481832504272, + 0.9989101886749268, + 0.9988996982574463, + 0.9977197051048279, + 0.9988507032394409, + 0.9992569088935852, + 0.9989029169082642, + 0.9863783121109009, + 0.998883068561554, + 0.9989109039306641 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 34 + }, + "sentiment_distribution": { + "NEGATIVE": 0.05555555555555555, + "POSITIVE": 0.9444444444444444 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9444444444444444 + ] + }, + "final_label": "POSITIVE", + "final_count": 96, + "final_proportion": 0.9056603773584906, + "final_counts": { + "POSITIVE": 96, + "NEGATIVE": 10 + }, + "final_distribution": { + "POSITIVE": 0.9056603773584906, + "NEGATIVE": 0.09433962264150944 + } + } }, { "season_code": "202303", @@ -155570,7 +323442,7 @@ "13:30", "14:20", "WTS A68 - Watson Center 60 Sachem Street A68", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -155579,7 +323451,7 @@ "Hu" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC HIST: United States", "YC HIST: Empires & Colonialism", @@ -155595,7 +323467,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -155628,7 +323528,7 @@ "19:00", "19:50", "WTS B52 - Watson Center 60 Sachem Street B52", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -155637,7 +323537,7 @@ "Hu" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC HIST: United States", "YC HIST: Empires & Colonialism", @@ -155653,7 +323553,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -155686,7 +323614,7 @@ "16:00", "16:50", "HQ C11 - Humanities Quadrangle C11", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -155695,7 +323623,7 @@ "Hu" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC HIST: United States", "YC HIST: Empires & Colonialism", @@ -155711,7 +323639,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -155744,7 +323700,7 @@ "17:00", "17:50", "HQ C11 - Humanities Quadrangle C11", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -155753,7 +323709,7 @@ "Hu" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC HIST: United States", "YC HIST: Empires & Colonialism", @@ -155769,7 +323725,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -155802,7 +323786,7 @@ "19:00", "19:50", "HQ 307 - Humanities Quadrangle 307", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -155811,7 +323795,7 @@ "Hu" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC HIST: United States", "YC HIST: Empires & Colonialism", @@ -155827,7 +323811,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -155860,7 +323872,7 @@ "10:30", "11:20", "LORIA 358 - Loria Center 358", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -155869,7 +323881,7 @@ "Hu" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC HIST: United States", "YC HIST: Empires & Colonialism", @@ -155885,7 +323897,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -155918,7 +323958,7 @@ "11:35", "12:25", "LORIA 358 - Loria Center 358", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -155927,7 +323967,7 @@ "Hu" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC HIST: United States", "YC HIST: Empires & Colonialism", @@ -155943,7 +323983,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -155976,7 +324044,7 @@ "13:30", "14:20", "WTS A39 - Watson Center 60 Sachem Street A39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -155985,7 +324053,7 @@ "Hu" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC HIST: United States", "YC HIST: Empires & Colonialism", @@ -156001,7 +324069,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -156051,7 +324147,7 @@ "Hu" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC HIST: United States", "YC HIST: Empires & Colonialism", @@ -156067,7 +324163,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -156100,7 +324224,7 @@ "14:30", "15:20", "WTS B39 - Watson Center 60 Sachem Street B39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -156109,7 +324233,7 @@ "Hu" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC HIST: United States", "YC HIST: Empires & Colonialism", @@ -156125,7 +324249,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -156158,7 +324310,7 @@ "14:30", "15:20", "HQ 307 - Humanities Quadrangle 307", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -156167,7 +324319,7 @@ "Hu" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC HIST: United States", "YC HIST: Empires & Colonialism", @@ -156183,7 +324335,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -156221,7 +324401,7 @@ "15:30", "17:20", "HQ C07 - Humanities Quadrangle C07", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -156244,10 +324424,87 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88041\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88041/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.998790442943573 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987999200820923 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9987177848815918, + 0.9988208413124084, + 0.999502420425415 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 4, + "final_proportion": 0.8, + "final_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + } + } }, { "season_code": "202303", @@ -156284,7 +324541,7 @@ "13:30", "15:20", "HQ 209 - Humanities Quadrangle 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -156297,7 +324554,7 @@ "flags": [ "YC History: Preindustrial", "YC AMST: Early Americas", - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC HIST: United States", "YC HIST: Cultural History", @@ -156310,10 +324567,107 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88047\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88047/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988638162612915, + 0.9885242581367493, + 0.9975866079330444, + 0.9947918057441711, + 0.998895525932312 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989105463027954, + 0.9989114999771118, + 0.9994791150093079, + 0.9989134073257446 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998770534992218, + 0.9989012479782104, + 0.9983684420585632, + 0.9988831877708435, + 0.9988299012184143, + 0.9987510442733765 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 0.9333333333333333, + "final_counts": { + "POSITIVE": 14, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9333333333333333, + "NEGATIVE": 0.06666666666666667 + } + } }, { "season_code": "202303", @@ -156347,7 +324701,7 @@ "Hu" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC HIST: United States", "YC HIST: Ideas & Intellectuals", @@ -156364,7 +324718,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -156402,7 +324784,7 @@ "15:30", "17:20", "HQ 213 - Humanities Quadrangle 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -156420,10 +324802,87 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92669\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92669/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988970756530762, + 0.9986754059791565 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998855710029602, + 0.9988253712654114 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989197254180908, + 0.9989053010940552 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 6 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -156461,7 +324920,7 @@ "10:30", "11:20", "DL 220 - Dunham Laboratory 220", - "https:\/\/map.yale.edu\/?id=1910#!m\/560005" + "https://map.yale.edu/?id=1910#!m/560005" ] ], "Thursday": [ @@ -156469,7 +324928,7 @@ "10:30", "11:20", "DL 220 - Dunham Laboratory 220", - "https:\/\/map.yale.edu\/?id=1910#!m\/560005" + "https://map.yale.edu/?id=1910#!m/560005" ] ] }, @@ -156490,10 +324949,187 @@ "classnotes": "", "final_exam": "Wednesday, December 20, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88403\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88403/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984941482543945, + 0.9980288147926331, + 0.9988045692443848, + 0.9989169836044312, + 0.9988917708396912, + 0.9985640645027161, + 0.9817448258399963, + 0.9986966252326965, + 0.9988229870796204, + 0.9985369443893433, + 0.9948760867118835, + 0.9973688125610352, + 0.9989180564880371, + 0.9986100196838379, + 0.9986716508865356, + 0.9987932443618774, + 0.9984489679336548, + 0.9989042282104492 + ], + "sentiment_counts": { + "POSITIVE": 18, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987597465515137, + 0.9979484677314758, + 0.9988275170326233, + 0.9988711476325989, + 0.9981142282485962, + 0.9988716244697571, + 0.9987192153930664, + 0.998755693435669, + 0.9988273978233337, + 0.9875832200050354, + 0.9986075758934021, + 0.9993896484375, + 0.9989198446273804, + 0.9988648891448975, + 0.9977572560310364, + 0.9986529350280762, + 0.9988152980804443, + 0.9989221096038818 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 5 + }, + "sentiment_distribution": { + "POSITIVE": 0.7222222222222222, + "NEGATIVE": 0.2777777777777778 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7222222222222222 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9974833130836487, + 0.9631001353263855, + 0.9986633062362671, + 0.9951639175415039, + 0.9995031356811523, + 0.999495267868042, + 0.998278021812439, + 0.997117280960083, + 0.9985585808753967, + 0.9982989430427551, + 0.999502420425415, + 0.9994428753852844, + 0.9989263415336609, + 0.9989100694656372, + 0.9974592328071594, + 0.9988164901733398, + 0.9989078044891357, + 0.998916745185852, + 0.9981306195259094 + ], + "sentiment_counts": { + "POSITIVE": 14, + "NEGATIVE": 5 + }, + "sentiment_distribution": { + "POSITIVE": 0.7368421052631579, + "NEGATIVE": 0.2631578947368421 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7368421052631579 + ] + }, + "final_label": "POSITIVE", + "final_count": 45, + "final_proportion": 0.8181818181818182, + "final_counts": { + "POSITIVE": 45, + "NEGATIVE": 10 + }, + "final_distribution": { + "POSITIVE": 0.8181818181818182, + "NEGATIVE": 0.18181818181818182 + } + } }, { "season_code": "202303", @@ -156525,7 +325161,7 @@ "13:30", "14:20", "WLH 203 - William L. Harkness Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -156549,7 +325185,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -156581,7 +325245,7 @@ "14:30", "15:20", "WLH 203 - William L. Harkness Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -156605,7 +325269,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -156637,7 +325329,7 @@ "13:30", "14:20", "PH 312 - Phelps Hall 312", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -156661,7 +325353,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -156693,7 +325413,7 @@ "14:30", "15:20", "PH 312 - Phelps Hall 312", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -156717,7 +325437,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -156749,7 +325497,7 @@ "19:00", "19:50", "PH 312 - Phelps Hall 312", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -156773,7 +325521,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -156805,7 +325581,7 @@ "20:00", "20:50", "PH 312 - Phelps Hall 312", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -156829,7 +325605,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -156867,7 +325671,7 @@ "15:30", "17:20", "BASSLB L70 - Bass Library L70", - "https:\/\/map.yale.edu\/?id=1910#!m\/564574" + "https://map.yale.edu/?id=1910#!m/564574" ] ] }, @@ -156893,10 +325697,99 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92670\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92670/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988391995429993, + 0.9985371828079224, + 0.9988297820091248, + 0.9988890290260315 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998921275138855, + 0.9988806843757629, + 0.9988823533058167, + 0.9988957643508911 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989153146743774, + 0.9989216327667236, + 0.998853325843811, + 0.9989299178123474 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 12 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -156941,7 +325834,7 @@ "10:30", "11:20", "SLB AUD - Sterling Law Buildings AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/531532" + "https://map.yale.edu/?id=1910#!m/531532" ] ], "Thursday": [ @@ -156949,7 +325842,7 @@ "10:30", "11:20", "SLB AUD - Sterling Law Buildings AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/531532" + "https://map.yale.edu/?id=1910#!m/531532" ] ] }, @@ -156971,10 +325864,133 @@ "classnotes": "", "final_exam": "Wednesday, December 20, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88386\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88386/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985223412513733, + 0.9989092350006104, + 0.9987646341323853, + 0.9987454414367676, + 0.9985785484313965, + 0.9848566651344299, + 0.9987179040908813, + 0.9988694787025452, + 0.9988390803337097 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988865256309509, + 0.9981716871261597, + 0.9995027780532837, + 0.9989137649536133, + 0.9960718154907227, + 0.997552216053009, + 0.9951534271240234, + 0.9966200590133667, + 0.9995075464248657 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988435506820679, + 0.9930912256240845, + 0.9987755417823792, + 0.9971940517425537, + 0.9887712597846985, + 0.9986974596977234, + 0.9988498687744141, + 0.9989063739776611, + 0.9982147216796875, + 0.9985767602920532 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.6, + "NEGATIVE": 0.4 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 0.7142857142857143, + "final_counts": { + "POSITIVE": 20, + "NEGATIVE": 8 + }, + "final_distribution": { + "POSITIVE": 0.7142857142857143, + "NEGATIVE": 0.2857142857142857 + } + } }, { "season_code": "202303", @@ -157007,7 +326023,7 @@ "16:00", "16:50", "WTS A39 - Watson Center 60 Sachem Street A39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -157031,7 +326047,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -157064,7 +326108,7 @@ "17:00", "17:50", "WTS A39 - Watson Center 60 Sachem Street A39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -157088,7 +326132,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -157121,7 +326193,7 @@ "15:30", "16:20", "WTS B39 - Watson Center 60 Sachem Street B39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -157145,7 +326217,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -157178,7 +326278,7 @@ "16:30", "17:20", "WTS B39 - Watson Center 60 Sachem Street B39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -157202,7 +326302,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -157235,7 +326363,7 @@ "9:25", "10:15", "WLH 210 - William L. Harkness Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -157259,7 +326387,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -157292,7 +326448,7 @@ "11:35", "12:25", "WLH 210 - William L. Harkness Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -157316,7 +326472,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -157362,7 +326546,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -157415,7 +326627,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -157454,7 +326694,7 @@ "9:25", "11:15", "HQ C01 - Humanities Quadrangle C01", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -157477,15 +326717,100 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88056\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88056/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "", - "description": "This seminar examines how representative politics have evolved in the United States and Canada from the turn of the seventeenth century to the present. Students learn diverse ways in which forms of liberal democracy\u2014republicanism and constitutional monarchy in particular\u2014have emerged in North America, how processes of democratization have operated, and the degree to which representative governments in Canada and the U.S. borrow from and emerge out of common and\/or disparate contexts. Special emphasis is placed on\u2014but is not limited to\u2014the history of suffrage and voting rights in the United States and Canada.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987114667892456, + 0.9988917708396912, + 0.9988821148872375 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9970687031745911, + 0.9988510608673096, + 0.9989379048347473 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989217519760132, + 0.9987832903862, + 0.9989176988601685 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 8, + "final_proportion": 0.8888888888888888, + "final_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + } + } + }, + { + "season_code": "202303", + "requirements": "", + "description": "This seminar examines how representative politics have evolved in the United States and Canada from the turn of the seventeenth century to the present. Students learn diverse ways in which forms of liberal democracy\u2014republicanism and constitutional monarchy in particular\u2014have emerged in North America, how processes of democratization have operated, and the degree to which representative governments in Canada and the U.S. borrow from and emerge out of common and/or disparate contexts. Special emphasis is placed on\u2014but is not limited to\u2014the history of suffrage and voting rights in the United States and Canada.", "short_title": "Neighboring Democracies: Rep...", "title": "Neighboring Democracies: Representative Politics in the United States and Canada, 1607-Present", "school": "YC", @@ -157517,7 +326842,7 @@ "13:30", "15:20", "RKZ 04 - Rosenkranz Hall 04", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -157538,10 +326863,103 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88804\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88804/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988645315170288, + 0.9989169836044312, + 0.998778760433197, + 0.9989187717437744, + 0.9988592863082886 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989196062088013, + 0.9989060163497925, + 0.998895525932312, + 0.9989184141159058 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998928964138031, + 0.9989308714866638, + 0.9988728165626526, + 0.9988719820976257, + 0.9989327788352966 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 14 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -157580,7 +326998,7 @@ "9:25", "11:15", "WTS B74 - Watson Center 60 Sachem Street B74", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -157606,10 +327024,107 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92446\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92446/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989008903503418, + 0.9985145926475525, + 0.9987605810165405, + 0.9988596439361572, + 0.9988419413566589 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9943516254425049, + 0.9988908171653748, + 0.9989110231399536, + 0.9973922967910767 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989041090011597, + 0.9652627110481262, + 0.9987906813621521, + 0.9988106489181519, + 0.9988031387329102, + 0.998938262462616, + 0.998934805393219 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 16 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -157658,7 +327173,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -157697,7 +327240,7 @@ "13:30", "15:20", "RKZ 301 - Rosenkranz Hall 301", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -157713,10 +327256,111 @@ "classnotes": "This course requires instructor permission. Please submit the topics or features of this course you would find particularly interesting.", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89000\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89000/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986429810523987, + 0.9989018440246582, + 0.9988251328468323, + 0.9988858103752136, + 0.9988903403282166 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9958943128585815, + 0.9989244341850281, + 0.9988930821418762, + 0.9973253011703491, + 0.9988769888877869 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988662004470825, + 0.9983739852905273, + 0.9988710284233093, + 0.9989224672317505, + 0.9974098801612854, + 0.998907208442688, + 0.9988337159156799, + 0.9989137649536133 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 18 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -157753,7 +327397,7 @@ "15:30", "17:20", "DC 215 - Davenport College 215", - "https:\/\/map.yale.edu\/?id=1910#!m\/560004" + "https://map.yale.edu/?id=1910#!m/560004" ] ] }, @@ -157776,10 +327420,89 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88071\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88071/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981507658958435, + 0.9987983703613281 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988495111465454, + 0.9988994598388672, + 0.9989344477653503 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989228844642639, + 0.9989217519760132 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 7 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -157819,7 +327542,7 @@ "11:35", "12:25", "LORIA 250 - Loria Center 250", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ], "Wednesday": [ @@ -157827,7 +327550,7 @@ "11:35", "12:25", "LORIA 250 - Loria Center 250", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -157836,7 +327559,7 @@ "Hu" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -157844,10 +327567,143 @@ "classnotes": "", "final_exam": "Sunday, December 17, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88112\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88112/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998836100101471, + 0.9976512789726257, + 0.9988808035850525, + 0.9988939166069031, + 0.9978989362716675, + 0.9989308714866638, + 0.9987949132919312, + 0.9989008903503418, + 0.9988837838172913 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998794436454773, + 0.9982981085777283, + 0.9988808035850525, + 0.9980149269104004, + 0.9989116191864014, + 0.9994109869003296, + 0.998367965221405, + 0.9980337023735046, + 0.9988916516304016, + 0.9987894892692566, + 0.9989295601844788, + 0.9989262223243713 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9166666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988376498222351, + 0.998847246170044, + 0.9989227652549744, + 0.9988154172897339, + 0.9989237189292908, + 0.9986734390258789, + 0.9985941052436829, + 0.9988535642623901, + 0.9988871216773987, + 0.9988312125205994, + 0.9983710646629333, + 0.9986194372177124 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 32, + "final_proportion": 0.9696969696969697, + "final_counts": { + "POSITIVE": 32, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9696969696969697, + "NEGATIVE": 0.030303030303030304 + } + } }, { "season_code": "202303", @@ -157881,7 +327737,7 @@ "15:30", "16:20", "WLH 120 - William L. Harkness Hall 120", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -157890,7 +327746,7 @@ "Hu" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -157901,7 +327757,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -157935,7 +327819,7 @@ "16:30", "17:20", "WLH 113 - William L. Harkness Hall 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -157944,7 +327828,7 @@ "Hu" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -157955,7 +327839,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -157989,7 +327901,7 @@ "13:30", "14:20", "HQ C07 - Humanities Quadrangle C07", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -157998,7 +327910,7 @@ "Hu" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -158009,7 +327921,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -158043,7 +327983,7 @@ "14:30", "15:20", "HQ C07 - Humanities Quadrangle C07", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -158052,7 +327992,7 @@ "Hu" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -158063,7 +328003,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -158097,7 +328065,7 @@ "13:30", "14:20", "LC 212 - Linsly-Chittenden Hall 212", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -158106,7 +328074,7 @@ "Hu" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -158117,7 +328085,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -158151,7 +328147,7 @@ "15:30", "16:20", "LC 213 - Linsly-Chittenden Hall 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -158160,7 +328156,7 @@ "Hu" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -158171,7 +328167,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -158205,7 +328229,7 @@ "14:30", "15:20", "HQ C65 - Humanities Quadrangle C65", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -158214,7 +328238,7 @@ "Hu" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -158225,7 +328249,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -158259,7 +328311,7 @@ "17:00", "17:50", "HQ C65 - Humanities Quadrangle C65", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -158268,7 +328320,7 @@ "Hu" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -158279,7 +328331,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -158313,7 +328393,7 @@ "16:00", "16:50", "LC 104 - Linsly-Chittenden Hall 104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -158323,7 +328403,7 @@ ], "flags": [ "YC AMST: Early Americas", - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC GLBL: Elective" ], @@ -158335,7 +328415,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -158375,7 +328483,7 @@ "10:30", "11:20", "WLH 207 - William L. Harkness Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -158383,7 +328491,7 @@ "10:30", "11:20", "WLH 207 - William L. Harkness Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -158393,7 +328501,7 @@ ], "flags": [ "YC AMST: Early Americas", - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC GLBL: Elective", "Writing Skill (Opt.)" @@ -158403,10 +328511,163 @@ "classnotes": "", "final_exam": "Wednesday, December 20, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88052\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88052/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987622499465942, + 0.9985637068748474, + 0.9981940388679504, + 0.9988836646080017, + 0.998891294002533, + 0.9988515377044678, + 0.9988441467285156, + 0.9986981153488159, + 0.9988382458686829, + 0.9988227486610413, + 0.998862624168396, + 0.9988985061645508, + 0.9987123012542725, + 0.9988860487937927 + ], + "sentiment_counts": { + "POSITIVE": 14, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989362359046936, + 0.9987202882766724, + 0.9988697171211243, + 0.995686411857605, + 0.9988802075386047, + 0.9989157915115356, + 0.998916506767273, + 0.9978533387184143, + 0.9988899827003479, + 0.9985591769218445, + 0.9958202838897705, + 0.9994978904724121, + 0.9986525774002075 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8461538461538461, + "NEGATIVE": 0.15384615384615385 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8461538461538461 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998863697052002, + 0.9989250302314758, + 0.9988523721694946, + 0.998843789100647, + 0.9989257454872131, + 0.9975495934486389, + 0.9988769888877869, + 0.9993797540664673, + 0.9982553124427795, + 0.9987195730209351, + 0.999125063419342, + 0.9988341927528381, + 0.9989328980445862, + 0.998807430267334, + 0.9989216327667236, + 0.9962698221206665 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.8125, + "NEGATIVE": 0.1875 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8125 + ] + }, + "final_label": "POSITIVE", + "final_count": 38, + "final_proportion": 0.8837209302325582, + "final_counts": { + "POSITIVE": 38, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.8837209302325582, + "NEGATIVE": 0.11627906976744186 + } + } }, { "season_code": "202303", @@ -158440,7 +328701,7 @@ "14:30", "15:20", "BASSLB L70 - Bass Library L70", - "https:\/\/map.yale.edu\/?id=1910#!m\/564574" + "https://map.yale.edu/?id=1910#!m/564574" ] ] }, @@ -158450,7 +328711,7 @@ ], "flags": [ "YC AMST: Early Americas", - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC GLBL: Elective" ], @@ -158462,7 +328723,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -158496,7 +328785,7 @@ "10:30", "11:20", "WLH 113 - William L. Harkness Hall 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -158506,7 +328795,7 @@ ], "flags": [ "YC AMST: Early Americas", - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC GLBL: Elective" ], @@ -158518,7 +328807,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -158563,10 +328880,38 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88464\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88464/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -158598,7 +328943,7 @@ "14:30", "15:20", "HQ 401 - Humanities Quadrangle 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -158622,7 +328967,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -158654,7 +329027,7 @@ "14:30", "15:20", "LC 317 - Linsly-Chittenden Hall 317", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -158678,7 +329051,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -158710,7 +329111,7 @@ "15:30", "16:20", "LC 317 - Linsly-Chittenden Hall 317", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -158734,7 +329135,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -158766,7 +329195,7 @@ "13:30", "14:20", "WLH 003 - William L. Harkness Hall 003", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -158790,7 +329219,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -158828,7 +329285,7 @@ "11:35", "12:50", "WLH 208 - William L. Harkness Hall 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -158836,7 +329293,7 @@ "11:35", "12:50", "WLH 208 - William L. Harkness Hall 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -158857,10 +329314,145 @@ "classnotes": "", "final_exam": "Sunday, December 17, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88424\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88424/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987493753433228, + 0.9988634586334229, + 0.9988526105880737, + 0.9986857771873474, + 0.9989227652549744, + 0.9987680315971375, + 0.9988237023353577, + 0.9987723231315613, + 0.9988923668861389, + 0.9989080429077148 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9987533092498779, + 0.9988825917243958, + 0.9988054037094116, + 0.9989011287689209, + 0.9988766312599182, + 0.9988998174667358, + 0.9989049434661865, + 0.9987851977348328, + 0.9988735318183899, + 0.9913740754127502 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9974592328071594, + 0.9989049434661865, + 0.99784255027771, + 0.9988511800765991, + 0.9989182949066162, + 0.9989307522773743, + 0.9988464117050171, + 0.9989336133003235, + 0.9984512329101562, + 0.9988473653793335, + 0.9988055229187012, + 0.9989129304885864, + 0.9970725774765015, + 0.9969460368156433 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9285714285714286, + "NEGATIVE": 0.07142857142857142 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9285714285714286 + ] + }, + "final_label": "POSITIVE", + "final_count": 32, + "final_proportion": 0.9411764705882353, + "final_counts": { + "POSITIVE": 32, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9411764705882353, + "NEGATIVE": 0.058823529411764705 + } + } }, { "season_code": "202303", @@ -158897,7 +329489,7 @@ "10:30", "11:20", "WLH 208 - William L. Harkness Hall 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -158905,7 +329497,7 @@ "10:30", "11:20", "WLH 208 - William L. Harkness Hall 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -158930,10 +329522,155 @@ "classnotes": "", "final_exam": "Wednesday, December 20, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88076\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88076/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986560344696045, + 0.9988246560096741, + 0.9988126754760742, + 0.9986934065818787, + 0.9987300038337708, + 0.9988527297973633, + 0.9988865256309509, + 0.9988204836845398, + 0.9988252520561218, + 0.9987429976463318, + 0.9989232420921326, + 0.9978748559951782, + 0.9987834095954895 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988663196563721, + 0.9989261031150818, + 0.9962045550346375, + 0.9986574649810791, + 0.996192216873169, + 0.9988948702812195, + 0.9989169836044312, + 0.9989244341850281, + 0.9989192485809326, + 0.9989299178123474, + 0.9991841912269592, + 0.9988942742347717 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989205598831177, + 0.9987493753433228, + 0.9988634586334229, + 0.9984509944915771, + 0.9989051818847656, + 0.9986275434494019, + 0.9982069730758667, + 0.9988498687744141, + 0.9983876943588257, + 0.9986600875854492, + 0.9988940358161926, + 0.9988824725151062, + 0.9988102912902832, + 0.9975192546844482 + ], + "sentiment_counts": { + "POSITIVE": 14, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 37, + "final_proportion": 0.9487179487179487, + "final_counts": { + "POSITIVE": 37, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9487179487179487, + "NEGATIVE": 0.05128205128205128 + } + } }, { "season_code": "202303", @@ -158964,7 +329701,7 @@ "16:00", "16:50", "HQ 227 - Humanities Quadrangle 227", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -158992,7 +329729,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -159023,7 +329788,7 @@ "19:00", "19:50", "HQ 127 - Humanities Quadrangle 127", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -159051,7 +329816,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -159082,7 +329875,7 @@ "17:00", "17:50", "HQ 227 - Humanities Quadrangle 227", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -159110,7 +329903,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -159141,7 +329962,7 @@ "10:30", "11:20", "WALL53 B-02 - 53 Wall Street B-02", - "https:\/\/map.yale.edu\/?id=1910#!m\/559554" + "https://map.yale.edu/?id=1910#!m/559554" ] ] }, @@ -159169,7 +329990,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -159207,7 +330056,7 @@ "13:30", "14:20", "LC 102 - Linsly-Chittenden Hall 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -159215,7 +330064,7 @@ "13:30", "14:20", "LC 102 - Linsly-Chittenden Hall 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -159238,10 +330087,167 @@ "classnotes": "", "final_exam": "Saturday, December 16, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88431\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88431/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984550476074219, + 0.9988923668861389, + 0.9989307522773743, + 0.998852014541626, + 0.9988234639167786, + 0.9987348914146423, + 0.9988687634468079, + 0.9988204836845398, + 0.9982112646102905, + 0.9988037347793579, + 0.9987149238586426, + 0.9987978935241699 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9929434657096863, + 0.9993966817855835, + 0.9989351630210876, + 0.9989163875579834, + 0.999502420425415, + 0.998736560344696, + 0.9989100694656372, + 0.9933806657791138, + 0.9966639876365662, + 0.9986751675605774, + 0.9874273538589478, + 0.9972842931747437, + 0.9987784028053284, + 0.9988760352134705, + 0.9885707497596741, + 0.9962671399116516, + 0.9989317059516907 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 5 + }, + "sentiment_distribution": { + "POSITIVE": 0.7058823529411765, + "NEGATIVE": 0.29411764705882354 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7058823529411765 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9933308959007263, + 0.997117280960083, + 0.9988897442817688, + 0.998866081237793, + 0.9995073080062866, + 0.9900642037391663, + 0.9988445043563843, + 0.9963585734367371, + 0.9988918900489807, + 0.9963803887367249, + 0.9985824823379517, + 0.9988982677459717, + 0.9989163875579834, + 0.9988551139831543, + 0.9989057779312134, + 0.9988731741905212 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 14 + }, + "sentiment_distribution": { + "NEGATIVE": 0.125, + "POSITIVE": 0.875 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "final_label": "POSITIVE", + "final_count": 38, + "final_proportion": 0.8444444444444444, + "final_counts": { + "POSITIVE": 38, + "NEGATIVE": 7 + }, + "final_distribution": { + "POSITIVE": 0.8444444444444444, + "NEGATIVE": 0.15555555555555556 + } + } }, { "season_code": "202303", @@ -159273,7 +330279,7 @@ "8:20", "9:10", "WLH 009 - William L. Harkness Hall 009", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -159299,7 +330305,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -159331,7 +330365,7 @@ "9:25", "10:15", "WLH 009 - William L. Harkness Hall 009", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -159357,7 +330391,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -159389,7 +330451,7 @@ "10:30", "11:20", "WLH 007 - William L. Harkness Hall 007", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -159415,7 +330477,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -159447,7 +330537,7 @@ "13:30", "14:20", "WLH 007 - William L. Harkness Hall 007", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -159473,7 +330563,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -159505,7 +330623,7 @@ "19:00", "19:50", "LORIA 358 - Loria Center 358", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -159531,7 +330649,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -159563,7 +330709,7 @@ "20:00", "20:50", "LORIA 358 - Loria Center 358", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -159589,7 +330735,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -159655,7 +330829,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -159721,7 +330923,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -159754,7 +330984,7 @@ "10:30", "11:20", "HQ 127 - Humanities Quadrangle 127", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -159780,7 +331010,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -159813,7 +331071,7 @@ "13:30", "14:20", "WLH 009 - William L. Harkness Hall 009", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -159839,7 +331097,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -159898,7 +331184,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -159931,7 +331245,7 @@ "15:30", "16:20", "HQ 213 - Humanities Quadrangle 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -159957,7 +331271,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -159996,7 +331338,7 @@ "11:35", "12:50", "LC 101 - Linsly-Chittenden Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -160004,7 +331346,7 @@ "11:35", "12:50", "LC 101 - Linsly-Chittenden Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -160027,10 +331369,183 @@ "classnotes": "", "final_exam": "Friday, December 15, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88428\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88428/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988732933998108, + 0.9988717436790466, + 0.9986395239830017, + 0.9988631010055542, + 0.9988541603088379, + 0.9989005327224731, + 0.998845100402832, + 0.9984721541404724, + 0.9982134103775024, + 0.9989302754402161, + 0.9989340901374817, + 0.9989004135131836, + 0.9987493753433228, + 0.9989318251609802, + 0.9989117383956909 + ], + "sentiment_counts": { + "POSITIVE": 15, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988794922828674, + 0.9978839755058289, + 0.9988847374916077, + 0.9989196062088013, + 0.9988914132118225, + 0.9982833862304688, + 0.9989017248153687, + 0.998753547668457, + 0.9928911924362183, + 0.998895525932312, + 0.9989286065101624, + 0.9988344311714172, + 0.998668909072876, + 0.9979167580604553, + 0.9946585297584534, + 0.9987351298332214, + 0.9989124536514282 + ], + "sentiment_counts": { + "POSITIVE": 16, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9411764705882353, + "NEGATIVE": 0.058823529411764705 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9411764705882353 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989284873008728, + 0.9989261031150818, + 0.9988994598388672, + 0.9989174604415894, + 0.9989205598831177, + 0.994897186756134, + 0.9974592328071594, + 0.9988806843757629, + 0.9987263083457947, + 0.997117280960083, + 0.9989051818847656, + 0.9988407492637634, + 0.9988033771514893, + 0.9989031553268433, + 0.9989389777183533, + 0.997117280960083, + 0.9982335567474365, + 0.9985068440437317, + 0.9988753199577332, + 0.9986358284950256, + 0.9989301562309265 + ], + "sentiment_counts": { + "POSITIVE": 19, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.9047619047619048, + "NEGATIVE": 0.09523809523809523 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9047619047619048 + ] + }, + "final_label": "POSITIVE", + "final_count": 50, + "final_proportion": 0.9433962264150944, + "final_counts": { + "POSITIVE": 50, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.9433962264150944, + "NEGATIVE": 0.05660377358490566 + } + } }, { "season_code": "202303", @@ -160063,7 +331578,7 @@ "16:00", "16:50", "HQ 313 - Humanities Quadrangle 313", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -160089,7 +331604,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -160122,7 +331665,7 @@ "16:30", "17:20", "HQ 213 - Humanities Quadrangle 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -160148,7 +331691,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -160193,7 +331764,7 @@ "11:35", "12:50", "HQ 307 - Humanities Quadrangle 307", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -160201,7 +331772,7 @@ "11:35", "12:50", "HQ 307 - Humanities Quadrangle 307", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -160226,10 +331797,109 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88080\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88080/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9975146055221558, + 0.9974174499511719, + 0.9988190531730652, + 0.9983605742454529, + 0.998916506767273 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994046688079834, + 0.9984863996505737, + 0.9987554550170898, + 0.9995070695877075, + 0.9988973140716553, + 0.9988811612129211 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 4 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984442591667175, + 0.9970195889472961, + 0.9945054650306702, + 0.999510645866394, + 0.9989393353462219 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 0.8125, + "final_counts": { + "POSITIVE": 13, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.8125, + "NEGATIVE": 0.1875 + } + } }, { "season_code": "202303", @@ -160291,10 +331961,107 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90397\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90397/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9981685876846313, + 0.9984812140464783, + 0.9988162517547607, + 0.9989367127418518, + 0.9856550097465515 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987646341323853, + 0.9968668818473816, + 0.9987947940826416, + 0.9988225102424622, + 0.9989312291145325 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998710036277771, + 0.9893530607223511, + 0.9987443685531616, + 0.9894117712974548, + 0.998916506767273 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 0.8, + "final_counts": { + "POSITIVE": 12, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + } + } }, { "season_code": "202303", @@ -160342,7 +332109,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -160390,7 +332185,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -160438,7 +332261,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -160486,7 +332337,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -160534,7 +332413,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -160576,7 +332483,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -160638,10 +332573,109 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88095\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88095/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988335967063904, + 0.9985324144363403, + 0.997271716594696, + 0.9993489384651184, + 0.9989098310470581, + 0.998856782913208 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989259839057922, + 0.9988051652908325, + 0.9974445104598999, + 0.9989070892333984, + 0.9980035424232483 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988741278648376, + 0.9989168643951416, + 0.9978795051574707, + 0.9987982511520386, + 0.9957400560379028 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 0.8125, + "final_counts": { + "POSITIVE": 13, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.8125, + "NEGATIVE": 0.1875 + } + } }, { "season_code": "202303", @@ -160673,7 +332707,7 @@ "17:00", "17:50", "HQ C01 - Humanities Quadrangle C01", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -160701,7 +332735,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -160733,7 +332795,7 @@ "19:00", "19:50", "HQ C01 - Humanities Quadrangle C01", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -160761,7 +332823,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -160799,7 +332889,7 @@ "9:25", "10:15", "WLH 208 - William L. Harkness Hall 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -160807,7 +332897,7 @@ "9:25", "10:15", "WLH 208 - William L. Harkness Hall 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -160832,10 +332922,125 @@ "classnotes": "", "final_exam": "Thursday, December 14, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88436\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88436/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9976930022239685, + 0.9986575841903687, + 0.9988747239112854, + 0.997810423374176, + 0.9988399147987366, + 0.9987744688987732, + 0.9988139867782593, + 0.9977748990058899, + 0.9987710118293762 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9966778755187988, + 0.9984911680221558, + 0.9989223480224609, + 0.9987975358963013, + 0.9988219141960144, + 0.9989161491394043, + 0.9988111257553101, + 0.998038113117218 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989016056060791, + 0.9989247918128967, + 0.9987745881080627, + 0.9977818131446838, + 0.9988694787025452, + 0.998847246170044, + 0.9871153831481934 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 23, + "final_proportion": 0.9583333333333334, + "final_counts": { + "POSITIVE": 23, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9583333333333334, + "NEGATIVE": 0.041666666666666664 + } + } }, { "season_code": "202303", @@ -160867,7 +333072,7 @@ "14:30", "15:20", "HQ 229 - Humanities Quadrangle 229", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -160877,7 +333082,7 @@ ], "flags": [ "YC History: Preindustrial", - "YC CLSS: Lit\/Cult Anc Rome", + "YC CLSS: Lit/Cult Anc Rome", "YC HIST: Europe", "YC HIST: Cultural History", "YC HIST: Environmental History", @@ -160896,7 +333101,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -160938,7 +333171,7 @@ ], "flags": [ "YC History: Preindustrial", - "YC CLSS: Lit\/Cult Anc Rome", + "YC CLSS: Lit/Cult Anc Rome", "YC HIST: Europe", "YC HIST: Cultural History", "YC HIST: Environmental History", @@ -160957,7 +333190,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -160994,7 +333255,7 @@ "9:25", "11:15", "HQ C07 - Humanities Quadrangle C07", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -161017,10 +333278,125 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88101\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88101/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987338185310364, + 0.9987397789955139, + 0.9988380074501038, + 0.9988705515861511, + 0.9989354014396667, + 0.9983173608779907, + 0.9988351464271545, + 0.9988762736320496 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988458156585693, + 0.9988899827003479, + 0.9985865354537964, + 0.9981155395507812, + 0.9988736510276794, + 0.9989235997200012, + 0.998908281326294, + 0.9989344477653503, + 0.99880051612854 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989159107208252, + 0.9988300204277039, + 0.998879611492157, + 0.9988760352134705, + 0.998914361000061, + 0.9988939166069031, + 0.9989288449287415, + 0.998927891254425 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 25, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 25 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -161061,7 +333437,7 @@ "13:30", "15:20", "HQ 317 - Humanities Quadrangle 317", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -161088,10 +333464,87 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88105\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88105/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987886548042297, + 0.9987472295761108 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989280104637146, + 0.9989338517189026 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998802900314331, + 0.9989396929740906 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 6 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -161129,7 +333582,7 @@ "15:30", "17:20", "PH 207 - Phelps Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -161150,10 +333603,135 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88905\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88905/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988852143287659, + 0.9988301396369934, + 0.9985828399658203, + 0.9989311099052429, + 0.9986963868141174, + 0.9987757802009583, + 0.9982841610908508, + 0.9987624883651733, + 0.9988202452659607 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994661211967468, + 0.9989215135574341, + 0.9949597120285034, + 0.9987524747848511, + 0.9989297986030579, + 0.998507559299469, + 0.9987976551055908, + 0.9989269375801086, + 0.9989230036735535 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 8 + }, + "sentiment_distribution": { + "NEGATIVE": 0.1111111111111111, + "POSITIVE": 0.8888888888888888 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9980574250221252, + 0.9989261031150818, + 0.9977449178695679, + 0.9989325404167175, + 0.9988141059875488, + 0.9987321496009827, + 0.9989057779312134, + 0.9779589176177979, + 0.9974833130836487, + 0.9989377856254578, + 0.9988288283348083 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 28, + "final_proportion": 0.9655172413793104, + "final_counts": { + "POSITIVE": 28, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9655172413793104, + "NEGATIVE": 0.034482758620689655 + } + } }, { "season_code": "202303", @@ -161191,7 +333769,7 @@ "15:30", "17:20", "HQ C64 - Humanities Quadrangle C64", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -161213,10 +333791,91 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88110\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88110/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989386200904846, + 0.9985283613204956 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989213943481445, + 0.9988999366760254, + 0.9989275336265564 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9863190650939941, + 0.9989246726036072 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 1 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 0.8571428571428571, + "final_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + } + } }, { "season_code": "202303", @@ -161253,7 +333912,7 @@ "13:30", "14:20", "HQ 132 - Humanities Quadrangle 132", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -161261,7 +333920,7 @@ "13:30", "14:20", "HQ 132 - Humanities Quadrangle 132", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -161284,10 +333943,91 @@ "classnotes": "", "final_exam": "Saturday, December 16, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88114\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88114/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988954067230225, + 0.9988007545471191, + 0.998828113079071 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989047050476074, + 0.9988681077957153 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986786246299744, + 0.998891294002533, + 0.9988914132118225 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 8, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 8 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -161318,7 +334058,7 @@ "14:30", "15:20", "BASSLB L73 - Bass Library L73", - "https:\/\/map.yale.edu\/?id=1910#!m\/564574" + "https://map.yale.edu/?id=1910#!m/564574" ] ] }, @@ -161343,7 +334083,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -161374,7 +334142,7 @@ "19:00", "19:50", "HQ 109 - Humanities Quadrangle 109", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -161399,12 +334167,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "This interdisciplinary course surveys the history of homosexuality from a cross-cultural, comparative \u00a0perspective. Students study contexts where homosexuality and sodomy were categorized, regulated, and persecuted and examine ancient and medieval constructions of same-sex desire in light of post-modern developments, challenging ideas around what is considered normal and\/or natural. Ultimately, we ask: what has changed, and what has remained the same, in the history of homosexuality? What do gays and lesbians today have in common with pre-modern sodomites? Can this history help us ground or rethink our sexual selves and identities? Primary and secondary historical sources, some legal and religious sources, and texts in intellectual history are studied. Among the case studies for the course are ancient attitudes among Jews, early Christians, and Greeks; Christian theologians of the Middle Ages; Renaissance Florence; the Inquisition in Iberia; colonial Latin America; and the Enlightenment\u2019s condemnation of sodomy by Montesquieu and Voltaire, and its defense by Bentham.", + "description": "This interdisciplinary course surveys the history of homosexuality from a cross-cultural, comparative \u00a0perspective. Students study contexts where homosexuality and sodomy were categorized, regulated, and persecuted and examine ancient and medieval constructions of same-sex desire in light of post-modern developments, challenging ideas around what is considered normal and/or natural. Ultimately, we ask: what has changed, and what has remained the same, in the history of homosexuality? What do gays and lesbians today have in common with pre-modern sodomites? Can this history help us ground or rethink our sexual selves and identities? Primary and secondary historical sources, some legal and religious sources, and texts in intellectual history are studied. Among the case studies for the course are ancient attitudes among Jews, early Christians, and Greeks; Christian theologians of the Middle Ages; Renaissance Florence; the Inquisition in Iberia; colonial Latin America; and the Enlightenment\u2019s condemnation of sodomy by Montesquieu and Voltaire, and its defense by Bentham.", "short_title": "Sexual Minorities from Plato ...", "title": "Sexual Minorities from Plato to the Enlightenment", "school": "YC", @@ -161439,7 +334235,7 @@ "13:00", "14:15", "WLH 211 - William L. Harkness Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -161447,7 +334243,7 @@ "13:00", "14:15", "WLH 211 - William L. Harkness Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -161466,15 +334262,90 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88563\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88563/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "", - "description": "This interdisciplinary course surveys the history of homosexuality from a cross-cultural, comparative \u00a0perspective. Students study contexts where homosexuality and sodomy were categorized, regulated, and persecuted and examine ancient and medieval constructions of same-sex desire in light of post-modern developments, challenging ideas around what is considered normal and\/or natural. Ultimately, we ask: what has changed, and what has remained the same, in the history of homosexuality? What do gays and lesbians today have in common with pre-modern sodomites? Can this history help us ground or rethink our sexual selves and identities? Primary and secondary historical sources, some legal and religious sources, and texts in intellectual history are studied. Among the case studies for the course are ancient attitudes among Jews, early Christians, and Greeks; Christian theologians of the Middle Ages; Renaissance Florence; the Inquisition in Iberia; colonial Latin America; and the Enlightenment\u2019s condemnation of sodomy by Montesquieu and Voltaire, and its defense by Bentham.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.998930037021637 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988467693328857 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988486766815186, + 0.9988548755645752, + 0.9983124732971191 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 5, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 5 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } + }, + { + "season_code": "202303", + "requirements": "", + "description": "This interdisciplinary course surveys the history of homosexuality from a cross-cultural, comparative \u00a0perspective. Students study contexts where homosexuality and sodomy were categorized, regulated, and persecuted and examine ancient and medieval constructions of same-sex desire in light of post-modern developments, challenging ideas around what is considered normal and/or natural. Ultimately, we ask: what has changed, and what has remained the same, in the history of homosexuality? What do gays and lesbians today have in common with pre-modern sodomites? Can this history help us ground or rethink our sexual selves and identities? Primary and secondary historical sources, some legal and religious sources, and texts in intellectual history are studied. Among the case studies for the course are ancient attitudes among Jews, early Christians, and Greeks; Christian theologians of the Middle Ages; Renaissance Florence; the Inquisition in Iberia; colonial Latin America; and the Enlightenment\u2019s condemnation of sodomy by Montesquieu and Voltaire, and its defense by Bentham.", "short_title": "Sexual Minorities from Plato ...", "title": "Sexual Minorities from Plato to the Enlightenment", "school": "YC", @@ -161503,7 +334374,7 @@ "14:30", "15:20", "WLH 209 - William L. Harkness Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -161525,12 +334396,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "This interdisciplinary course surveys the history of homosexuality from a cross-cultural, comparative \u00a0perspective. Students study contexts where homosexuality and sodomy were categorized, regulated, and persecuted and examine ancient and medieval constructions of same-sex desire in light of post-modern developments, challenging ideas around what is considered normal and\/or natural. Ultimately, we ask: what has changed, and what has remained the same, in the history of homosexuality? What do gays and lesbians today have in common with pre-modern sodomites? Can this history help us ground or rethink our sexual selves and identities? Primary and secondary historical sources, some legal and religious sources, and texts in intellectual history are studied. Among the case studies for the course are ancient attitudes among Jews, early Christians, and Greeks; Christian theologians of the Middle Ages; Renaissance Florence; the Inquisition in Iberia; colonial Latin America; and the Enlightenment\u2019s condemnation of sodomy by Montesquieu and Voltaire, and its defense by Bentham.", + "description": "This interdisciplinary course surveys the history of homosexuality from a cross-cultural, comparative \u00a0perspective. Students study contexts where homosexuality and sodomy were categorized, regulated, and persecuted and examine ancient and medieval constructions of same-sex desire in light of post-modern developments, challenging ideas around what is considered normal and/or natural. Ultimately, we ask: what has changed, and what has remained the same, in the history of homosexuality? What do gays and lesbians today have in common with pre-modern sodomites? Can this history help us ground or rethink our sexual selves and identities? Primary and secondary historical sources, some legal and religious sources, and texts in intellectual history are studied. Among the case studies for the course are ancient attitudes among Jews, early Christians, and Greeks; Christian theologians of the Middle Ages; Renaissance Florence; the Inquisition in Iberia; colonial Latin America; and the Enlightenment\u2019s condemnation of sodomy by Montesquieu and Voltaire, and its defense by Bentham.", "short_title": "Sexual Minorities from Plato ...", "title": "Sexual Minorities from Plato to the Enlightenment", "school": "YC", @@ -161559,7 +334458,7 @@ "11:35", "12:25", "WLH 210 - William L. Harkness Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -161581,7 +334480,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -161622,10 +334549,38 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89004\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89004/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -161662,7 +334617,7 @@ "14:30", "15:20", "WLH 208 - William L. Harkness Hall 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -161670,7 +334625,7 @@ "14:30", "15:20", "WLH 208 - William L. Harkness Hall 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -161686,10 +334641,107 @@ "classnotes": "", "final_exam": "Monday, December 18, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88795\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88795/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988914132118225, + 0.9987351298332214, + 0.9988835453987122, + 0.9989141225814819, + 0.9975371360778809 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989161491394043, + 0.9985758066177368, + 0.9988787770271301, + 0.9988707900047302, + 0.9995088577270508 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988791346549988, + 0.9988558292388916, + 0.9988683462142944, + 0.9988948702812195, + 0.9995065927505493 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 64, + "final_proportion": 0.9142857142857143, + "final_counts": { + "POSITIVE": 64, + "NEGATIVE": 6 + }, + "final_distribution": { + "POSITIVE": 0.9142857142857143, + "NEGATIVE": 0.08571428571428572 + } + } }, { "season_code": "202303", @@ -161720,7 +334772,7 @@ "15:30", "16:20", "HQ C65 - Humanities Quadrangle C65", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -161745,7 +334797,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -161776,7 +334856,7 @@ "16:30", "17:20", "HQ 207 - Humanities Quadrangle 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -161801,7 +334881,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -161832,7 +334940,7 @@ "10:30", "11:20", "LC 213 - Linsly-Chittenden Hall 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -161857,7 +334965,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -161888,7 +335024,7 @@ "11:35", "12:25", "LC 213 - Linsly-Chittenden Hall 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -161913,7 +335049,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -161944,7 +335108,7 @@ "15:30", "16:20", "CO493 103 - 493 College Street 103", - "https:\/\/map.yale.edu\/?id=1910#!m\/560001" + "https://map.yale.edu/?id=1910#!m/560001" ] ] }, @@ -161971,7 +335135,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -162002,7 +335194,7 @@ "10:30", "11:20", "WLH 115 - William L. Harkness Hall 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -162029,7 +335221,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -162066,7 +335286,7 @@ "13:30", "15:20", "WALL81 401 - 81 Wall Street 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -162089,10 +335309,87 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88805\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88805/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987725615501404, + 0.9988011121749878 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989223480224609 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9980429410934448, + 0.998924195766449 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 1 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "final_label": "POSITIVE", + "final_count": 4, + "final_proportion": 0.8, + "final_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + } + } }, { "season_code": "202303", @@ -162132,7 +335429,7 @@ "13:30", "15:20", "PH 207 - Phelps Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -162156,10 +335453,101 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88726\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88726/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994853734970093, + 0.9989376664161682, + 0.9986500144004822, + 0.9986982345581055 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.25, + "POSITIVE": 0.75 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9966853260993958, + 0.9989364743232727, + 0.9987745881080627, + 0.997749388217926 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.25, + "POSITIVE": 0.75 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986067414283752, + 0.9989312291145325, + 0.9988231062889099, + 0.9969677329063416 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 0.8333333333333334, + "final_counts": { + "NEGATIVE": 2, + "POSITIVE": 10 + }, + "final_distribution": { + "NEGATIVE": 0.16666666666666666, + "POSITIVE": 0.8333333333333334 + } + } }, { "season_code": "202303", @@ -162196,7 +335584,7 @@ "9:25", "11:15", "HQ 113 - Humanities Quadrangle 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -162219,10 +335607,99 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88118\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88118/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998446524143219, + 0.9989297986030579, + 0.9988590478897095, + 0.9988258481025696 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988592863082886, + 0.9989226460456848, + 0.9988874793052673, + 0.9988433122634888 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987693428993225, + 0.9988296627998352, + 0.9988722205162048, + 0.9989068508148193 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 12 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -162261,7 +335738,7 @@ "11:35", "12:25", "LC 102 - Linsly-Chittenden Hall 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -162269,7 +335746,7 @@ "11:35", "12:25", "LC 102 - Linsly-Chittenden Hall 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -162290,10 +335767,347 @@ "classnotes": "", "final_exam": "Sunday, December 17, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88122\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88122/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987336993217468, + 0.9988294243812561, + 0.9988992214202881, + 0.997711181640625, + 0.998875081539154, + 0.9988821148872375, + 0.9989181756973267, + 0.9988784193992615, + 0.9983707070350647, + 0.9987987279891968, + 0.9987614154815674, + 0.9988840222358704, + 0.9988892674446106, + 0.998894989490509, + 0.9988988637924194, + 0.9989058971405029, + 0.9988641738891602, + 0.998920202255249, + 0.998924195766449, + 0.9989107847213745, + 0.99891197681427, + 0.9989122152328491, + 0.9964891672134399, + 0.9989381432533264, + 0.9989281296730042, + 0.998292863368988, + 0.9989233613014221, + 0.9986610412597656, + 0.9988368153572083, + 0.9989339709281921, + 0.9988908171653748, + 0.9988044500350952, + 0.9989073276519775, + 0.9988841414451599, + 0.9904956817626953, + 0.9986951947212219, + 0.9986358284950256, + 0.9988773465156555, + 0.9989238381385803, + 0.9989262223243713, + 0.9886372685432434, + 0.9988590478897095 + ], + "sentiment_counts": { + "POSITIVE": 41, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9761904761904762, + "NEGATIVE": 0.023809523809523808 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9761904761904762 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9867270588874817, + 0.9986535310745239, + 0.9988663196563721, + 0.9989116191864014, + 0.9988403916358948, + 0.997931957244873, + 0.9988431930541992, + 0.9988688826560974, + 0.9976928234100342, + 0.9987874627113342, + 0.9988565444946289, + 0.998822033405304, + 0.9986225366592407, + 0.998573899269104, + 0.9989251494407654, + 0.99814772605896, + 0.998877227306366, + 0.9985949397087097, + 0.9988124370574951, + 0.9989299178123474, + 0.9989124536514282, + 0.9983547329902649, + 0.9987427592277527, + 0.9989377856254578, + 0.9989261031150818, + 0.9989060163497925, + 0.9983075857162476, + 0.9988855719566345, + 0.998660683631897, + 0.9988848567008972, + 0.9989207983016968, + 0.9955605268478394, + 0.9989387392997742, + 0.995101809501648, + 0.9989135265350342, + 0.9989338517189026, + 0.9988781809806824, + 0.998703122138977, + 0.9944803714752197, + 0.9986145496368408, + 0.9929161071777344 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 38 + }, + "sentiment_distribution": { + "NEGATIVE": 0.07317073170731707, + "POSITIVE": 0.926829268292683 + }, + "sentiment_overall": [ + "POSITIVE", + 0.926829268292683 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998340368270874, + 0.9988769888877869, + 0.9989193677902222, + 0.9989342093467712, + 0.9989159107208252, + 0.9863590598106384, + 0.9989112615585327, + 0.9989171028137207, + 0.9987984895706177, + 0.9989234805107117, + 0.9989328980445862, + 0.9984555244445801, + 0.998916745185852, + 0.9927777647972107, + 0.9986757636070251, + 0.9989181756973267, + 0.9989314675331116, + 0.9989306330680847, + 0.9987879395484924, + 0.9989381432533264, + 0.9989344477653503, + 0.9988827109336853, + 0.9989132881164551, + 0.998869001865387, + 0.9988380074501038, + 0.998893678188324, + 0.9963608384132385, + 0.9988961219787598, + 0.9989044666290283, + 0.9979197382926941, + 0.998938262462616, + 0.998927652835846, + 0.9979901313781738, + 0.9980168342590332, + 0.998867392539978, + 0.9989216327667236, + 0.9989210367202759, + 0.9986213445663452, + 0.998927891254425, + 0.9988067150115967, + 0.9947983026504517, + 0.9988901019096375, + 0.9987568855285645, + 0.9988664388656616, + 0.9989355206489563, + 0.9989367127418518, + 0.9989306330680847, + 0.9995005130767822, + 0.9989087581634521, + 0.9915728569030762, + 0.9981217980384827, + 0.998865008354187 + ], + "sentiment_counts": { + "POSITIVE": 48, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.9230769230769231, + "NEGATIVE": 0.07692307692307693 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9230769230769231 + ] + }, + "final_label": "POSITIVE", + "final_count": 127, + "final_proportion": 0.9407407407407408, + "final_counts": { + "POSITIVE": 127, + "NEGATIVE": 8 + }, + "final_distribution": { + "POSITIVE": 0.9407407407407408, + "NEGATIVE": 0.05925925925925926 + } + } }, { "season_code": "202303", @@ -162326,7 +336140,7 @@ "13:30", "14:20", "WLH 211 - William L. Harkness Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -162349,7 +336163,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -162382,7 +336224,7 @@ "14:30", "15:20", "WLH 211 - William L. Harkness Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -162405,7 +336247,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -162438,7 +336308,7 @@ "15:30", "16:20", "WLH 205 - William L. Harkness Hall 205", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -162461,7 +336331,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -162494,7 +336392,7 @@ "16:30", "17:20", "WLH 203 - William L. Harkness Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -162517,7 +336415,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -162550,7 +336476,7 @@ "19:00", "19:50", "HQ 213 - Humanities Quadrangle 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -162573,7 +336499,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -162606,7 +336560,7 @@ "20:00", "20:50", "HQ 213 - Humanities Quadrangle 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -162629,7 +336583,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -162662,7 +336644,7 @@ "19:00", "19:50", "HQ 313 - Humanities Quadrangle 313", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -162685,7 +336667,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -162718,7 +336728,7 @@ "20:00", "20:50", "HQ 313 - Humanities Quadrangle 313", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -162741,7 +336751,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -162774,7 +336812,7 @@ "13:30", "14:20", "WLH 203 - William L. Harkness Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -162797,7 +336835,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -162830,7 +336896,7 @@ "14:30", "15:20", "WLH 114 - William L. Harkness Hall 114", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -162853,7 +336919,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -162886,7 +336980,7 @@ "13:30", "14:20", "LC 206 - Linsly-Chittenden Hall 206", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -162909,7 +337003,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -162942,7 +337064,7 @@ "14:30", "15:20", "LC 211 - Linsly-Chittenden Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -162965,7 +337087,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -163002,7 +337152,7 @@ "9:25", "11:15", "HQ 109 - Humanities Quadrangle 109", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -163024,10 +337174,119 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88126\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88126/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984945058822632, + 0.9980922341346741, + 0.99875807762146, + 0.9988762736320496, + 0.9989100694656372, + 0.998839795589447 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987936019897461, + 0.998933732509613, + 0.9988887906074524, + 0.9840908646583557, + 0.9988986253738403, + 0.9958155751228333, + 0.994478702545166, + 0.9988483190536499 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9843223690986633, + 0.9914235472679138, + 0.9989328980445862, + 0.9994968175888062, + 0.998891294002533, + 0.9987998008728027, + 0.9988242983818054 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.5714285714285714, + "NEGATIVE": 0.42857142857142855 + }, + "sentiment_overall": [ + "POSITIVE", + 0.5714285714285714 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 0.7619047619047619, + "final_counts": { + "POSITIVE": 16, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.7619047619047619, + "NEGATIVE": 0.23809523809523808 + } + } }, { "season_code": "202303", @@ -163066,7 +337325,7 @@ "14:30", "15:20", "WLH 116 - William L. Harkness Hall 116", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -163074,7 +337333,7 @@ "14:30", "15:20", "WLH 116 - William L. Harkness Hall 116", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -163094,10 +337353,181 @@ "classnotes": "", "final_exam": "Monday, December 18, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88130\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88130/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987202882766724, + 0.9987051486968994, + 0.9988952875137329, + 0.9988301396369934, + 0.994616687297821, + 0.9988757967948914, + 0.9989155530929565, + 0.9988829493522644, + 0.9988141059875488, + 0.9987867474555969, + 0.9988582134246826, + 0.9987875819206238, + 0.9980543851852417, + 0.9987416863441467, + 0.9987664222717285, + 0.9988697171211243, + 0.99853515625 + ], + "sentiment_counts": { + "POSITIVE": 17, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988013505935669, + 0.9784038662910461, + 0.8716951012611389, + 0.9962931275367737, + 0.9987888932228088, + 0.9989182949066162, + 0.9994246959686279, + 0.9988508224487305, + 0.9989198446273804, + 0.9948171973228455, + 0.9924448132514954, + 0.997286319732666, + 0.9989118576049805, + 0.9988754391670227, + 0.9989197254180908, + 0.9988769888877869, + 0.9988527297973633 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.7647058823529411, + "NEGATIVE": 0.23529411764705882 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7647058823529411 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987240433692932, + 0.9986931681632996, + 0.9989138841629028, + 0.9989334940910339, + 0.998892605304718, + 0.99888676404953, + 0.9989388585090637, + 0.9988824725151062, + 0.9988534450531006, + 0.9989224672317505, + 0.998918890953064, + 0.9989345669746399, + 0.9987761378288269, + 0.9967390894889832, + 0.9989230036735535, + 0.9988725781440735, + 0.9988471269607544, + 0.9987552165985107 + ], + "sentiment_counts": { + "POSITIVE": 18, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 48, + "final_proportion": 0.9230769230769231, + "final_counts": { + "POSITIVE": 48, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.9230769230769231, + "NEGATIVE": 0.07692307692307693 + } + } }, { "season_code": "202303", @@ -163130,7 +337560,7 @@ "15:30", "16:20", "LC 103 - Linsly-Chittenden Hall 103", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -163153,7 +337583,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -163186,7 +337644,7 @@ "10:30", "11:20", "WLH 207 - William L. Harkness Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -163209,7 +337667,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -163242,7 +337728,7 @@ "15:30", "16:20", "HQ 307 - Humanities Quadrangle 307", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -163265,7 +337751,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -163298,7 +337812,7 @@ "16:30", "17:20", "HQ 307 - Humanities Quadrangle 307", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -163321,7 +337835,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -163359,7 +337901,7 @@ "11:35", "12:25", "HQ 132 - Humanities Quadrangle 132", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -163367,7 +337909,7 @@ "11:35", "12:25", "HQ 132 - Humanities Quadrangle 132", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -163390,10 +337932,107 @@ "classnotes": "", "final_exam": "Sunday, December 17, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88135\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88135/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998747706413269, + 0.9988430738449097, + 0.9986705780029297, + 0.9988844990730286, + 0.9988827109336853 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988502264022827, + 0.9988347887992859, + 0.9988093376159668, + 0.9989100694656372, + 0.9989957213401794 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987242817878723, + 0.9989240765571594, + 0.9988610744476318, + 0.9988215565681458, + 0.9987093210220337 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 0.9333333333333333, + "final_counts": { + "POSITIVE": 14, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9333333333333333, + "NEGATIVE": 0.06666666666666667 + } + } }, { "season_code": "202303", @@ -163425,7 +338064,7 @@ "13:30", "14:20", "BASSLB L70 - Bass Library L70", - "https:\/\/map.yale.edu\/?id=1910#!m\/564574" + "https://map.yale.edu/?id=1910#!m/564574" ] ] }, @@ -163451,7 +338090,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -163483,7 +338150,7 @@ "19:00", "19:50", "HQ 209 - Humanities Quadrangle 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -163509,7 +338176,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -163549,7 +338244,7 @@ "13:30", "15:20", "HQ 209 - Humanities Quadrangle 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -163564,10 +338259,133 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88580\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88580/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988952279090881, + 0.9987819790840149, + 0.9988018274307251, + 0.9988783001899719, + 0.9989162683486938, + 0.9987999200820923, + 0.9984064698219299, + 0.9988013505935669, + 0.9988089799880981 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9771090149879456, + 0.9987500905990601, + 0.9989207983016968, + 0.9953112006187439, + 0.9988996982574463, + 0.9975487589836121, + 0.9988985061645508, + 0.9981507658958435, + 0.998925507068634 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 7 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2222222222222222, + "POSITIVE": 0.7777777777777778 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7777777777777778 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998904824256897, + 0.9989363551139832, + 0.9988411068916321, + 0.9988229870796204, + 0.996119499206543, + 0.9988498687744141, + 0.9989210367202759, + 0.9989336133003235, + 0.9987632036209106, + 0.9989049434661865 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 26, + "final_proportion": 0.9285714285714286, + "final_counts": { + "POSITIVE": 26, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9285714285714286, + "NEGATIVE": 0.07142857142857142 + } + } }, { "season_code": "202303", @@ -163605,7 +338423,7 @@ "13:30", "15:20", "BASSLB L70 - Bass Library L70", - "https:\/\/map.yale.edu\/?id=1910#!m\/564574" + "https://map.yale.edu/?id=1910#!m/564574" ] ] }, @@ -163621,10 +338439,95 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88486\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88486/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988886713981628, + 0.9988388419151306, + 0.9978620409965515 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988657236099243, + 0.9989016056060791, + 0.9865346550941467 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9814485907554626, + 0.998939573764801, + 0.9995026588439941 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 1 + }, + "sentiment_distribution": { + "NEGATIVE": 0.6666666666666666, + "POSITIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 0.6666666666666666, + "final_counts": { + "POSITIVE": 6, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + } + } }, { "season_code": "202303", @@ -163671,7 +338574,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -163709,7 +338640,7 @@ "14:30", "15:45", "WLH 207 - William L. Harkness Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -163717,7 +338648,7 @@ "14:30", "15:45", "WLH 207 - William L. Harkness Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -163731,10 +338662,127 @@ "classnotes": "", "final_exam": "Sunday, December 17, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90176\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/90176/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989219903945923, + 0.9988314509391785, + 0.9989122152328491, + 0.9988000392913818, + 0.9989171028137207, + 0.9987183809280396, + 0.9988985061645508, + 0.9987180233001709, + 0.9983730316162109 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989198446273804, + 0.9989194869995117, + 0.9913262724876404, + 0.9988608360290527, + 0.9978978633880615, + 0.9988935589790344, + 0.9987372756004333 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.7142857142857143, + "NEGATIVE": 0.2857142857142857 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7142857142857143 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.998766303062439, + 0.9974468946456909, + 0.9989305138587952, + 0.9989244341850281, + 0.9989290833473206, + 0.9986879229545593, + 0.9989318251609802, + 0.9989209175109863, + 0.9995086193084717 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "final_label": "POSITIVE", + "final_count": 22, + "final_proportion": 0.88, + "final_counts": { + "POSITIVE": 22, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.88, + "NEGATIVE": 0.12 + } + } }, { "season_code": "202303", @@ -163776,7 +338824,7 @@ "10:30", "11:20", "LC 101 - Linsly-Chittenden Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -163784,7 +338832,7 @@ "10:30", "11:20", "LC 101 - Linsly-Chittenden Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -163807,10 +338855,201 @@ "classnotes": "", "final_exam": "Wednesday, December 20, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88144\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88144/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988378882408142, + 0.9953532218933105, + 0.9988951086997986, + 0.9986488223075867, + 0.9982624650001526, + 0.9860534071922302, + 0.9988484382629395, + 0.9986264705657959, + 0.9987909197807312, + 0.998854398727417, + 0.9988672733306885, + 0.9986035227775574, + 0.9988545179367065, + 0.997929573059082, + 0.9989151954650879, + 0.998824417591095, + 0.9989160299301147, + 0.9988202452659607, + 0.9988542795181274 + ], + "sentiment_counts": { + "POSITIVE": 19, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988892674446106, + 0.9994922876358032, + 0.9988351464271545, + 0.998853325843811, + 0.996160626411438, + 0.9970585107803345, + 0.9985119700431824, + 0.9991745352745056, + 0.9988775849342346, + 0.9989223480224609, + 0.9958972930908203, + 0.998900294303894, + 0.9989225268363953, + 0.9994685053825378, + 0.9989032745361328, + 0.9989012479782104, + 0.9991877675056458, + 0.9987817406654358, + 0.997467041015625, + 0.9981908202171326 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 7 + }, + "sentiment_distribution": { + "POSITIVE": 0.65, + "NEGATIVE": 0.35 + }, + "sentiment_overall": [ + "POSITIVE", + 0.65 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998918890953064, + 0.998854398727417, + 0.9978829026222229, + 0.997734546661377, + 0.9929887652397156, + 0.9981157779693604, + 0.9981764554977417, + 0.99891197681427, + 0.9974592328071594, + 0.9986650943756104, + 0.9975800514221191, + 0.9988124370574951, + 0.9989287257194519, + 0.9989051818847656, + 0.9988356232643127, + 0.9988947510719299, + 0.9989290833473206, + 0.998824417591095, + 0.9944995641708374, + 0.9994848966598511, + 0.998868465423584, + 0.9983527660369873, + 0.9985677003860474 + ], + "sentiment_counts": { + "POSITIVE": 20, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.8695652173913043, + "NEGATIVE": 0.13043478260869565 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8695652173913043 + ] + }, + "final_label": "POSITIVE", + "final_count": 52, + "final_proportion": 0.8387096774193549, + "final_counts": { + "POSITIVE": 52, + "NEGATIVE": 10 + }, + "final_distribution": { + "POSITIVE": 0.8387096774193549, + "NEGATIVE": 0.16129032258064516 + } + } }, { "season_code": "202303", @@ -163843,7 +339082,7 @@ "20:00", "20:50", "HQ 209 - Humanities Quadrangle 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -163869,7 +339108,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -163902,7 +339169,7 @@ "19:00", "19:50", "HQ 225 - Humanities Quadrangle 225", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -163928,7 +339195,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -163961,7 +339256,7 @@ "15:30", "16:20", "BASSLB L73 - Bass Library L73", - "https:\/\/map.yale.edu\/?id=1910#!m\/564574" + "https://map.yale.edu/?id=1910#!m/564574" ] ] }, @@ -163987,7 +339282,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -164020,7 +339343,7 @@ "17:00", "17:50", "HQ 129 - Humanities Quadrangle 129", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -164046,7 +339369,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -164079,7 +339430,7 @@ "19:00", "19:50", "HQ 309 - Humanities Quadrangle 309", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -164105,7 +339456,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -164138,7 +339517,7 @@ "20:00", "20:50", "HQ 225 - Humanities Quadrangle 225", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -164164,7 +339543,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -164201,7 +339608,7 @@ "11:35", "12:25", "HQ 229 - Humanities Quadrangle 229", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -164209,7 +339616,7 @@ "11:35", "12:25", "HQ 229 - Humanities Quadrangle 229", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -164229,10 +339636,105 @@ "classnotes": "", "final_exam": "Friday, December 15, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89109\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89109/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994832277297974, + 0.9849134087562561, + 0.998552143573761, + 0.9988523721694946 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994980096817017, + 0.9994990825653076, + 0.9898213148117065, + 0.9988422989845276, + 0.9988920092582703 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.4, + "POSITIVE": 0.6 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982137680053711, + 0.9995006322860718, + 0.9987793564796448, + 0.9989290833473206, + 0.9987986087799072 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.4, + "POSITIVE": 0.6 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6 + ] + }, + "final_label": "POSITIVE", + "final_count": 8, + "final_proportion": 0.5714285714285714, + "final_counts": { + "NEGATIVE": 6, + "POSITIVE": 8 + }, + "final_distribution": { + "NEGATIVE": 0.42857142857142855, + "POSITIVE": 0.5714285714285714 + } + } }, { "season_code": "202303", @@ -164263,7 +339765,7 @@ "13:30", "14:20", "BASSLB L73 - Bass Library L73", - "https:\/\/map.yale.edu\/?id=1910#!m\/564574" + "https://map.yale.edu/?id=1910#!m/564574" ] ] }, @@ -164286,7 +339788,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -164317,7 +339847,7 @@ "19:00", "19:50", "HQ 113 - Humanities Quadrangle 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -164340,7 +339870,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -164377,7 +339935,7 @@ "13:30", "15:20", "HQ 113 - Humanities Quadrangle 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -164403,10 +339961,93 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90380\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90380/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989280104637146, + 0.9989168643951416, + 0.9984405636787415 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985101819038391, + 0.9988840222358704, + 0.9989014863967896 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9974768757820129, + 0.9989068508148193, + 0.9989369511604309 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 9 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -164444,7 +340085,7 @@ "14:30", "15:20", "WLH 119 - William L. Harkness Hall 119", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -164452,7 +340093,7 @@ "14:30", "15:20", "WLH 119 - William L. Harkness Hall 119", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -164479,10 +340120,159 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88149\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88149/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987818598747253, + 0.9826768040657043, + 0.9962537288665771, + 0.9955822825431824, + 0.9987149238586426, + 0.9988287091255188, + 0.9989134073257446, + 0.9983553290367126, + 0.998723566532135, + 0.9980182647705078, + 0.9994539618492126, + 0.998902440071106, + 0.9988988637924194, + 0.9987962245941162 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988036155700684, + 0.9995063543319702, + 0.9995020627975464, + 0.9795803427696228, + 0.983352780342102, + 0.9988552331924438, + 0.996833860874176, + 0.9994931221008301, + 0.9988258481025696, + 0.9963216781616211, + 0.9970806241035461, + 0.999502420425415, + 0.9986687898635864 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 7 + }, + "sentiment_distribution": { + "POSITIVE": 0.46153846153846156, + "NEGATIVE": 0.5384615384615384 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9994708895683289, + 0.9986889958381653, + 0.9994992017745972, + 0.997117280960083, + 0.9995104074478149, + 0.9985820055007935, + 0.9989063739776611, + 0.9988635778427124, + 0.9952527284622192, + 0.9987978935241699, + 0.9988712668418884, + 0.9995067119598389, + 0.9994953870773315, + 0.9994696974754333 + ], + "sentiment_counts": { + "NEGATIVE": 9, + "POSITIVE": 5 + }, + "sentiment_distribution": { + "NEGATIVE": 0.6428571428571429, + "POSITIVE": 0.35714285714285715 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.6428571428571429 + ] + }, + "final_label": "POSITIVE", + "final_count": 23, + "final_proportion": 0.5609756097560976, + "final_counts": { + "POSITIVE": 23, + "NEGATIVE": 18 + }, + "final_distribution": { + "POSITIVE": 0.5609756097560976, + "NEGATIVE": 0.43902439024390244 + } + } }, { "season_code": "202303", @@ -164514,7 +340304,7 @@ "15:30", "16:20", "WLH 115 - William L. Harkness Hall 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -164544,7 +340334,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -164576,7 +340394,7 @@ "13:30", "14:20", "WLH 004 - William L. Harkness Hall 004", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -164606,7 +340424,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -164638,7 +340484,7 @@ "15:30", "16:20", "CO493 103 - 493 College Street 103", - "https:\/\/map.yale.edu\/?id=1910#!m\/560001" + "https://map.yale.edu/?id=1910#!m/560001" ] ] }, @@ -164668,7 +340514,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -164700,7 +340574,7 @@ "17:00", "17:50", "WLH 003 - William L. Harkness Hall 003", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -164730,7 +340604,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -164769,7 +340671,7 @@ "9:25", "11:15", "HQ C05 - Humanities Quadrangle C05", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -164792,10 +340694,87 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88154\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88154/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989250302314758, + 0.9988572597503662 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989370703697205, + 0.9969276785850525 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989068508148193, + 0.9988124370574951 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 6 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -164833,7 +340812,7 @@ "9:25", "11:15", "HQ 209 - Humanities Quadrangle 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -164854,10 +340833,103 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88159\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88159/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989206790924072, + 0.998854398727417, + 0.9989225268363953, + 0.9988362193107605, + 0.9988168478012085 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989196062088013, + 0.9989340901374817, + 0.9989110231399536, + 0.9989359974861145, + 0.9988988637924194 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983811378479004, + 0.9989110231399536, + 0.9989284873008728, + 0.9989233613014221 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 14 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -164895,7 +340967,7 @@ "11:35", "12:25", "HQ 133 - Humanities Quadrangle 133", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -164903,7 +340975,7 @@ "11:35", "12:25", "HQ 133 - Humanities Quadrangle 133", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -164926,10 +340998,93 @@ "classnotes": "", "final_exam": "Friday, December 15, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88163\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88163/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988872408866882, + 0.9989173412322998, + 0.9989045858383179 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.997760534286499, + 0.998873770236969, + 0.9989080429077148 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989287257194519, + 0.9989292025566101, + 0.9989218711853027 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 9 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -164961,7 +341116,7 @@ "13:30", "14:20", "WTS B51 - Watson Center 60 Sachem Street B51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -164987,7 +341142,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -165019,7 +341202,7 @@ "19:00", "19:50", "WLH 006 - William L. Harkness Hall 006", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -165045,7 +341228,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -165092,7 +341303,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -165134,7 +341373,7 @@ "13:30", "15:20", "WLH 002 - William L. Harkness Hall 002", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -165148,10 +341387,99 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89162\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89162/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9964343309402466, + 0.9989063739776611, + 0.9963538646697998, + 0.9989225268363953 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989332556724548, + 0.9989054203033447, + 0.998885452747345 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989257454872131, + 0.9989217519760132, + 0.9989079236984253, + 0.997117280960083, + 0.9989387392997742 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 12 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -165191,7 +341519,7 @@ "13:30", "15:20", "HQ 213 - Humanities Quadrangle 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -165218,10 +341546,91 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90151\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90151/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989150762557983, + 0.9987834095954895, + 0.9989192485809326, + 0.9989150762557983 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989302754402161, + 0.9988883137702942 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989234805107117, + 0.9989180564880371 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 8, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 8 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -165271,7 +341680,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -165308,7 +341745,7 @@ "13:30", "15:20", "HQ 209 - Humanities Quadrangle 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -165333,10 +341770,117 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88167\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88167/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983421564102173, + 0.9988290667533875, + 0.9988721013069153, + 0.9660122394561768, + 0.9987565279006958, + 0.998897910118103, + 0.9988627433776855 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9995002746582031, + 0.9985978007316589, + 0.9991753697395325, + 0.9987217783927917, + 0.9989004135131836 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.4, + "POSITIVE": 0.6 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989346861839294, + 0.9995049238204956, + 0.9988484382629395, + 0.9983887672424316, + 0.9982553124427795, + 0.9988613128662109, + 0.9980812072753906, + 0.9988817572593689 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 0.85, + "final_counts": { + "POSITIVE": 17, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.85, + "NEGATIVE": 0.15 + } + } }, { "season_code": "202303", @@ -165377,7 +341921,7 @@ "13:30", "15:20", "WTS B74 - Watson Center 60 Sachem Street B74", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -165394,10 +341938,107 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88917\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88917/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9968783855438232, + 0.9988638162612915, + 0.9987142086029053, + 0.9988240599632263, + 0.998775064945221, + 0.9967511892318726 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989232420921326, + 0.9977788329124451, + 0.9989073276519775, + 0.9987710118293762 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989205598831177, + 0.9989074468612671, + 0.9987315535545349, + 0.9988357424736023, + 0.99880051612854, + 0.9989172220230103 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 16 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -165438,7 +342079,7 @@ "9:25", "11:15", "HQ C07 - Humanities Quadrangle C07", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -165456,10 +342097,93 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89002\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89002/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998885452747345, + 0.9988933205604553 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985866546630859, + 0.9988686442375183 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 1 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9983514547348022, + 0.9988250136375427, + 0.9973405003547668, + 0.999376118183136 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "final_label": "POSITIVE", + "final_count": 5, + "final_proportion": 0.625, + "final_counts": { + "POSITIVE": 5, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.625, + "NEGATIVE": 0.375 + } + } }, { "season_code": "202303", @@ -165496,7 +342220,7 @@ "13:30", "15:20", "HQ 213 - Humanities Quadrangle 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -165518,10 +342242,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90347\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90347/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -165562,7 +342314,7 @@ "19:00", "22:00", "LC 101 - Linsly-Chittenden Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Tuesday": [ @@ -165570,7 +342322,7 @@ "15:30", "17:20", "HQ 127 - Humanities Quadrangle 127", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -165590,10 +342342,97 @@ "classnotes": "Graduate students should contact charles.musser@yale.edu prior to registration.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89300\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89300/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989018440246582, + 0.9989114999771118 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9991810917854309, + 0.9989157915115356, + 0.9976010918617249, + 0.9978734254837036 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.25, + "POSITIVE": 0.75 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9954452514648438, + 0.998931348323822, + 0.9863911867141724, + 0.9985030889511108 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 0.9, + "final_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + } + } }, { "season_code": "202303", @@ -165645,7 +342484,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -165682,7 +342549,7 @@ "13:30", "15:20", "HQ 123 - Humanities Quadrangle 123", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -165693,7 +342560,7 @@ "Hu" ], "flags": [ - "PH: Global Health, Ethics\/Humanities\/History", + "PH: Global Health, Ethics/Humanities/History", "YC HIST: World", "YC HIST: Ideas & Intellectuals", "YC HIST: Pltcs, Law & Govt", @@ -165705,10 +342572,99 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88170\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88170/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9979244470596313, + 0.998931348323822, + 0.9988916516304016, + 0.9988784193992615 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982543587684631, + 0.9986635446548462, + 0.9989160299301147, + 0.9989305138587952 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988585710525513, + 0.9988904595375061, + 0.9989205598831177, + 0.9989263415336609 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 12 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -165748,7 +342704,7 @@ "14:30", "15:45", "HQ 225 - Humanities Quadrangle 225", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -165756,7 +342712,7 @@ "14:30", "15:45", "HQ 225 - Humanities Quadrangle 225", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -165765,17 +342721,146 @@ "Hu" ], "flags": [ - "YC EVST: Core Human\/Social Sci" + "YC EVST: Core Human/Social Sci" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89849\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89849/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9962582588195801, + 0.9987448453903198, + 0.9989109039306641, + 0.9988428354263306, + 0.9987834095954895, + 0.9942436814308167, + 0.9989105463027954, + 0.9987689852714539, + 0.9988893866539001, + 0.9980958104133606, + 0.9988905787467957 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 10 + }, + "sentiment_distribution": { + "NEGATIVE": 0.09090909090909091, + "POSITIVE": 0.9090909090909091 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9090909090909091 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9962582588195801, + 0.9989333748817444, + 0.9989383816719055, + 0.996529757976532, + 0.9989294409751892, + 0.9988657236099243, + 0.9987187385559082, + 0.9989200830459595, + 0.9989365935325623 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 8 + }, + "sentiment_distribution": { + "NEGATIVE": 0.1111111111111111, + "POSITIVE": 0.8888888888888888 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9962582588195801, + 0.9988861680030823, + 0.9989386200904846, + 0.9989379048347473, + 0.9989110231399536, + 0.99885094165802, + 0.9989312291145325, + 0.9988710284233093, + 0.9989226460456848, + 0.9989266991615295, + 0.9989321827888489 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 10 + }, + "sentiment_distribution": { + "NEGATIVE": 0.09090909090909091, + "POSITIVE": 0.9090909090909091 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9090909090909091 + ] + }, + "final_label": "POSITIVE", + "final_count": 28, + "final_proportion": 0.9032258064516129, + "final_counts": { + "NEGATIVE": 3, + "POSITIVE": 28 + }, + "final_distribution": { + "NEGATIVE": 0.0967741935483871, + "POSITIVE": 0.9032258064516129 + } + } }, { "season_code": "202303", @@ -165813,7 +342898,7 @@ "13:30", "15:20", "HQ C03 - Humanities Quadrangle C03", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -165836,10 +342921,107 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88430\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88430/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987009763717651, + 0.9986557960510254, + 0.9956525564193726, + 0.9988413453102112, + 0.9988176226615906 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9995007514953613, + 0.998805046081543, + 0.991075873374939, + 0.9977376461029053, + 0.9988632202148438 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 4 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2, + "POSITIVE": 0.8 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981120824813843, + 0.9989109039306641, + 0.9995037317276001, + 0.9988407492637634, + 0.9988941550254822 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 0.8, + "final_counts": { + "POSITIVE": 12, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + } + } }, { "season_code": "202303", @@ -165877,7 +343059,7 @@ "13:30", "15:20", "HQ 313 - Humanities Quadrangle 313", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -165901,10 +343083,107 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88426\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88426/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989103078842163, + 0.9989307522773743, + 0.9988560676574707, + 0.9989000558853149, + 0.9982616305351257 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984764456748962, + 0.9972814321517944, + 0.9988786578178406, + 0.9989147186279297, + 0.996327817440033 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988549947738647, + 0.9989088773727417, + 0.9988172650337219, + 0.9988559484481812, + 0.9957557916641235, + 0.9989114999771118 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 16 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -165950,7 +343229,7 @@ "13:00", "14:15", "HQ 132 - Humanities Quadrangle 132", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -165958,7 +343237,7 @@ "13:00", "14:15", "HQ 132 - Humanities Quadrangle 132", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -165974,10 +343253,87 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88370\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88370/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988937973976135, + 0.9988699555397034 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9950098991394043, + 0.9987722039222717 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988951086997986, + 0.9988582134246826 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 6 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -166017,7 +343373,7 @@ "11:35", "12:25", "WLH 201 - William L. Harkness Hall 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -166025,7 +343381,7 @@ "11:35", "12:25", "WLH 201 - William L. Harkness Hall 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -166035,7 +343391,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC GLHTH: Hist Approaches", "YC HIST: Race Gender & Sexuality", @@ -166048,10 +343404,287 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88408\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88408/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989221096038818, + 0.9989122152328491, + 0.9971765279769897, + 0.9988479614257812, + 0.9988617897033691, + 0.9988810420036316, + 0.9989307522773743, + 0.9989302754402161, + 0.999503493309021, + 0.9984203577041626, + 0.9988889098167419, + 0.9984398484230042, + 0.9985142350196838, + 0.9988987445831299, + 0.9985565543174744, + 0.9988300204277039, + 0.9988391995429993, + 0.9988646507263184, + 0.9988455772399902, + 0.9988808035850525, + 0.998936116695404, + 0.9993313550949097, + 0.9988445043563843, + 0.998875081539154, + 0.9985804557800293, + 0.991515040397644, + 0.9981314539909363, + 0.9987795948982239, + 0.998927652835846, + 0.9989064931869507, + 0.998665452003479, + 0.9982216954231262 + ], + "sentiment_counts": { + "POSITIVE": 29, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.90625, + "NEGATIVE": 0.09375 + }, + "sentiment_overall": [ + "POSITIVE", + 0.90625 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988808035850525, + 0.9989232420921326, + 0.9971765279769897, + 0.9987169504165649, + 0.9989343285560608, + 0.9988642930984497, + 0.9955214262008667, + 0.9989181756973267, + 0.9946451187133789, + 0.9982569813728333, + 0.9994854927062988, + 0.99892657995224, + 0.9988929629325867, + 0.9988682270050049, + 0.9988287091255188, + 0.9989097118377686, + 0.9984312653541565, + 0.9987331032752991, + 0.9987967014312744, + 0.9989365935325623, + 0.9989336133003235, + 0.9915447235107422, + 0.9988372921943665, + 0.9984152317047119, + 0.9987523555755615, + 0.9964898228645325, + 0.9988711476325989, + 0.9989134073257446, + 0.998863697052002, + 0.9988773465156555, + 0.9989261031150818, + 0.9989269375801086 + ], + "sentiment_counts": { + "POSITIVE": 27, + "NEGATIVE": 5 + }, + "sentiment_distribution": { + "POSITIVE": 0.84375, + "NEGATIVE": 0.15625 + }, + "sentiment_overall": [ + "POSITIVE", + 0.84375 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998896598815918, + 0.998497486114502, + 0.9988008737564087, + 0.9971765279769897, + 0.9989367127418518, + 0.9989266991615295, + 0.9989004135131836, + 0.9988742470741272, + 0.9989070892333984, + 0.9995094537734985, + 0.9980815649032593, + 0.9986956715583801, + 0.9989151954650879, + 0.9989186525344849, + 0.9981266856193542, + 0.9988677501678467, + 0.9988314509391785, + 0.9984139204025269, + 0.9989039897918701, + 0.9995056390762329, + 0.9984253644943237, + 0.9989351630210876, + 0.998708963394165, + 0.9989380240440369, + 0.9989187717437744, + 0.9989246726036072, + 0.9988629817962646, + 0.9994989633560181, + 0.997117280960083, + 0.9986889958381653, + 0.9922507405281067, + 0.9974708557128906, + 0.9989194869995117, + 0.998660683631897, + 0.9988895058631897, + 0.9989277720451355, + 0.9988332390785217, + 0.9987298846244812, + 0.9988711476325989, + 0.9981772899627686, + 0.9988407492637634 + ], + "sentiment_counts": { + "POSITIVE": 37, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.9024390243902439, + "NEGATIVE": 0.0975609756097561 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9024390243902439 + ] + }, + "final_label": "POSITIVE", + "final_count": 93, + "final_proportion": 0.8857142857142857, + "final_counts": { + "POSITIVE": 93, + "NEGATIVE": 12 + }, + "final_distribution": { + "POSITIVE": 0.8857142857142857, + "NEGATIVE": 0.11428571428571428 + } + } }, { "season_code": "202303", @@ -166085,7 +343718,7 @@ "14:30", "15:20", "WLH 210 - William L. Harkness Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -166095,7 +343728,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC GLHTH: Hist Approaches", "YC HIST: Race Gender & Sexuality", @@ -166111,7 +343744,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -166145,7 +343806,7 @@ "15:30", "16:20", "WLH 210 - William L. Harkness Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -166155,7 +343816,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC GLHTH: Hist Approaches", "YC HIST: Race Gender & Sexuality", @@ -166171,7 +343832,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -166205,7 +343894,7 @@ "13:30", "14:20", "WLH 209 - William L. Harkness Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -166215,7 +343904,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC GLHTH: Hist Approaches", "YC HIST: Race Gender & Sexuality", @@ -166231,7 +343920,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -166265,7 +343982,7 @@ "16:30", "17:20", "WLH 210 - William L. Harkness Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -166275,7 +343992,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC GLHTH: Hist Approaches", "YC HIST: Race Gender & Sexuality", @@ -166291,7 +344008,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -166325,7 +344070,7 @@ "8:20", "9:10", "WLH 009 - William L. Harkness Hall 009", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -166335,7 +344080,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC GLHTH: Hist Approaches", "YC HIST: Race Gender & Sexuality", @@ -166351,7 +344096,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -166385,7 +344158,7 @@ "9:25", "10:15", "WLH 009 - William L. Harkness Hall 009", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -166395,7 +344168,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC GLHTH: Hist Approaches", "YC HIST: Race Gender & Sexuality", @@ -166411,7 +344184,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -166445,7 +344246,7 @@ "19:00", "19:50", "HQ 113 - Humanities Quadrangle 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -166455,7 +344256,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC GLHTH: Hist Approaches", "YC HIST: Race Gender & Sexuality", @@ -166471,7 +344272,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -166505,7 +344334,7 @@ "13:30", "14:20", "WALL81 301 - 81 Wall Street 301", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -166515,7 +344344,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC GLHTH: Hist Approaches", "YC HIST: Race Gender & Sexuality", @@ -166531,7 +344360,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -166565,7 +344422,7 @@ "10:30", "11:20", "HQ C64 - Humanities Quadrangle C64", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -166575,7 +344432,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC GLHTH: Hist Approaches", "YC HIST: Race Gender & Sexuality", @@ -166591,7 +344448,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -166625,7 +344510,7 @@ "11:35", "12:25", "HQ C64 - Humanities Quadrangle C64", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -166635,7 +344520,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC GLHTH: Hist Approaches", "YC HIST: Race Gender & Sexuality", @@ -166651,7 +344536,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -166694,7 +344607,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -166736,10 +344677,131 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89217\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89217/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9941680431365967, + 0.9988734126091003, + 0.9989157915115356, + 0.9986514449119568, + 0.9988769888877869, + 0.9957475066184998, + 0.9987596273422241, + 0.998900294303894, + 0.998920202255249, + 0.9986982345581055 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998651921749115, + 0.992774248123169, + 0.9980474710464478, + 0.9987749457359314, + 0.9982433319091797, + 0.9987999200820923, + 0.9935907125473022, + 0.9873645901679993 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9974592328071594, + 0.9987032413482666, + 0.9989345669746399, + 0.9989293217658997, + 0.9902598261833191, + 0.9987908005714417, + 0.9948405623435974, + 0.9989346861839294, + 0.998863697052002 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 26, + "final_proportion": 0.9629629629629629, + "final_counts": { + "POSITIVE": 26, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9629629629629629, + "NEGATIVE": 0.037037037037037035 + } + } }, { "season_code": "202303", @@ -166781,10 +344843,99 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89218\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89218/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9976940751075745, + 0.9471083879470825, + 0.9987205266952515, + 0.9988124370574951, + 0.9985724687576294 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9897704124450684, + 0.9986652135848999, + 0.9646162986755371 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9427952170372009, + 0.9976480603218079, + 0.9989057779312134 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 0.8181818181818182, + "final_counts": { + "POSITIVE": 9, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8181818181818182, + "NEGATIVE": 0.18181818181818182 + } + } }, { "season_code": "202303", @@ -166826,10 +344977,17 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89219\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89219/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -166869,7 +345027,7 @@ "9:25", "11:15", "LC 209 - Linsly-Chittenden Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -166881,15 +345039,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88175\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88175/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "A graduate-level extension of CLCV 236\/HIST 225. The course inculcates the basic principles of Roman law while training students in advanced topics in the subject and initiating them into research methods.", + "description": "A graduate-level extension of CLCV 236/HIST 225. The course inculcates the basic principles of Roman law while training students in advanced topics in the subject and initiating them into research methods.", "short_title": "Roman Law", "title": "Roman Law", "school": "GS", @@ -166922,7 +345108,7 @@ "13:30", "15:20", "PH 312 - Phelps Hall 312", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -166934,10 +345120,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88446\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88446/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -166990,12 +345204,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "This course is a practical studio, introducing students to the historical debates and the range of historical sources for the study of medieval Iberia, including Latin, Arabic, Judeo-Arabic, and Spanish material. Reading knowledge of Latin and\/or Arabic is required. Reading knowledge of Spanish is preferred.", + "description": "This course is a practical studio, introducing students to the historical debates and the range of historical sources for the study of medieval Iberia, including Latin, Arabic, Judeo-Arabic, and Spanish material. Reading knowledge of Latin and/or Arabic is required. Reading knowledge of Spanish is preferred.", "short_title": "Medieval Iberia", "title": "Medieval Iberia", "school": "GS", @@ -167029,7 +345271,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -167067,7 +345337,7 @@ "13:30", "15:20", "SDQ LIBR-104 - Sterling Divinity Quadrangle LIBR-104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -167079,10 +345349,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89230\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89230/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -167127,7 +345425,7 @@ "11:35", "12:50", "HQ 307 - Humanities Quadrangle 307", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -167135,7 +345433,7 @@ "11:35", "12:50", "HQ 307 - Humanities Quadrangle 307", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -167147,10 +345445,109 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88080\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88080/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9975146055221558, + 0.9974174499511719, + 0.9988190531730652, + 0.9983605742454529, + 0.998916506767273 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994046688079834, + 0.9984863996505737, + 0.9987554550170898, + 0.9995070695877075, + 0.9988973140716553, + 0.9988811612129211 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 4 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984442591667175, + 0.9970195889472961, + 0.9945054650306702, + 0.999510645866394, + 0.9989393353462219 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 0.8125, + "final_counts": { + "POSITIVE": 13, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.8125, + "NEGATIVE": 0.1875 + } + } }, { "season_code": "202303", @@ -167187,7 +345584,7 @@ "9:25", "11:15", "HQ 109 - Humanities Quadrangle 109", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -167199,10 +345596,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88191\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88191/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -167239,7 +345664,7 @@ "13:30", "15:20", "HQ 133 - Humanities Quadrangle 133", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -167251,10 +345676,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90551\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90551/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -167292,7 +345745,7 @@ "13:30", "15:20", "WALL81 101 - 81 Wall Street 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -167304,10 +345757,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88195\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88195/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -167344,7 +345825,7 @@ "15:30", "17:20", "HQ 123 - Humanities Quadrangle 123", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -167356,10 +345837,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88200\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88200/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -167396,7 +345905,7 @@ "13:30", "15:20", "WLH 205 - William L. Harkness Hall 205", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -167408,10 +345917,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88202\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88202/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -167448,7 +345985,7 @@ "9:25", "11:15", "HQ 113 - Humanities Quadrangle 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -167460,10 +345997,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88207\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88207/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -167500,7 +346065,7 @@ "15:30", "17:20", "HQ 213 - Humanities Quadrangle 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -167512,10 +346077,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88212\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88212/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -167555,12 +346148,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "The course explores recent trends and historiography on several problems through the middle of the nineteenth century: sectionalism, expansion; slavery and the Old South; northern society and reform movements; Civil War causation; the meaning of the Confederacy; why the North won the Civil War; the political, constitutional, and social meanings of emancipation and Reconstruction; violence in Reconstruction society; the relationships between social\/cultural and military\/political history; problems in historical memory; the tension between narrative and analytical history writing; and the ways in which race and gender have reshaped research and interpretive agendas.", + "description": "The course explores recent trends and historiography on several problems through the middle of the nineteenth century: sectionalism, expansion; slavery and the Old South; northern society and reform movements; Civil War causation; the meaning of the Confederacy; why the North won the Civil War; the political, constitutional, and social meanings of emancipation and Reconstruction; violence in Reconstruction society; the relationships between social/cultural and military/political history; problems in historical memory; the tension between narrative and analytical history writing; and the ways in which race and gender have reshaped research and interpretive agendas.", "short_title": "Readings in Nineteenth-Centur...", "title": "Readings in Nineteenth-Century America", "school": "GS", @@ -167594,7 +346215,7 @@ "9:25", "11:15", "HQ C05 - Humanities Quadrangle C05", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -167606,10 +346227,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88217\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88217/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -167649,7 +346298,7 @@ "9:25", "11:15", "HQ 123 - Humanities Quadrangle 123", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -167661,10 +346310,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88223\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88223/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -167703,7 +346380,7 @@ "13:30", "15:20", "WALL53 208 - 53 Wall Street 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/559554" + "https://map.yale.edu/?id=1910#!m/559554" ] ] }, @@ -167715,10 +346392,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88227\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88227/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -167755,7 +346439,7 @@ "9:25", "11:15", "HQ - HQ", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -167767,10 +346451,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88231\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88231/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -167807,7 +346519,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -167848,7 +346588,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -167887,7 +346655,7 @@ "13:30", "15:20", "HQ 317 - Humanities Quadrangle 317", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -167899,10 +346667,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88078\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88078/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -167939,7 +346735,7 @@ "16:10", "18:00", "SLB 112 - Sterling Law Buildings 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/531532" + "https://map.yale.edu/?id=1910#!m/531532" ] ] }, @@ -167951,10 +346747,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91452\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91452/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -167991,7 +346815,7 @@ "15:30", "17:20", "HQ C65 - Humanities Quadrangle C65", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -168003,15 +346827,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88234\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88234/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "In this graduate reading seminar, we explore different actors and institutions that shaped the formation of the global economy since the early modern period. The readings focus on a number of forces and their interplay with the economic lives of both ordinary men and women and more elite figures: states\/political institutions, the environment, law, war, empire, companies, and capitalists. The seminar provides students with a solid knowledge of the questions currently discussed in the burgeoning subfield of the so-called \"new history of capitalism.\" We pay particular attention to the contours of these debates beyond the history of the United States, and to the international and global dimensions of economic history. No familiarity with economics or economic history required. While this is a reading seminar, students looking to write a research paper on related topics are welcome to pursue this option as part of the course.\u00a0The course is designed for history Ph.D. students and others who have had previous exposure to history classes at the university level. Basic familiarity with broader historical developments since the eighteenth century is expected.", + "description": "In this graduate reading seminar, we explore different actors and institutions that shaped the formation of the global economy since the early modern period. The readings focus on a number of forces and their interplay with the economic lives of both ordinary men and women and more elite figures: states/political institutions, the environment, law, war, empire, companies, and capitalists. The seminar provides students with a solid knowledge of the questions currently discussed in the burgeoning subfield of the so-called \"new history of capitalism.\" We pay particular attention to the contours of these debates beyond the history of the United States, and to the international and global dimensions of economic history. No familiarity with economics or economic history required. While this is a reading seminar, students looking to write a research paper on related topics are welcome to pursue this option as part of the course.\u00a0The course is designed for history Ph.D. students and others who have had previous exposure to history classes at the university level. Basic familiarity with broader historical developments since the eighteenth century is expected.", "short_title": "Readings in Economic History,...", "title": "Readings in Economic History, Capitalism, and Political Economy", "school": "GS", @@ -168043,7 +346895,7 @@ "9:25", "11:15", "HQ 213 - Humanities Quadrangle 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -168055,15 +346907,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90221\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90221/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "Graduate research seminar in international history and political economy This class offers graduate students interested in international\/global history and the history of capitalism and political economy the opportunity to craft research papers. The emphasis is on learning and honing essential research and writing skills that are ultimately meant to guide students towards their dissertation research. The class is open to students with different regional and language expertises as long as some aspect of the paper project they plan to pursue is, broadly speaking, internationally oriented.", + "description": "Graduate research seminar in international history and political economy This class offers graduate students interested in international/global history and the history of capitalism and political economy the opportunity to craft research papers. The emphasis is on learning and honing essential research and writing skills that are ultimately meant to guide students towards their dissertation research. The class is open to students with different regional and language expertises as long as some aspect of the paper project they plan to pursue is, broadly speaking, internationally oriented.", "short_title": "Research in International His...", "title": "Research in International History and Political Economy", "school": "GS", @@ -168095,7 +346975,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -168135,10 +347043,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90309\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90309/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -168181,7 +347117,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -168218,7 +347182,7 @@ "13:30", "15:20", "WLH 204 - William L. Harkness Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -168233,7 +347197,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -168271,7 +347263,7 @@ "13:30", "15:20", "WALL81 301 - 81 Wall Street 301", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -168283,10 +347275,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88244\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88244/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -168324,7 +347344,7 @@ "9:25", "11:15", "HQ 225 - Humanities Quadrangle 225", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -168336,10 +347356,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88249\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88249/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -168376,7 +347424,7 @@ "13:30", "15:20", "WLH 015 - William L. Harkness Hall 015", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -168388,10 +347436,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88806\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88806/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -168428,7 +347504,7 @@ "13:30", "15:20", "HQ C05 - Humanities Quadrangle C05", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -168440,10 +347516,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88254\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88254/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -168480,7 +347584,7 @@ "15:30", "17:20", "HQ C05 - Humanities Quadrangle C05", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -168492,10 +347596,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88261\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88261/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -168532,7 +347664,7 @@ "13:30", "15:20", "WLH 006 - William L. Harkness Hall 006", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -168544,10 +347676,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88265\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88265/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -168584,7 +347744,7 @@ "13:30", "15:20", "HQ 109 - Humanities Quadrangle 109", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -168596,10 +347756,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88275\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88275/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -168636,7 +347824,7 @@ "13:30", "15:20", "HQ 225 - Humanities Quadrangle 225", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -168648,10 +347836,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88280\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88280/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -168690,7 +347906,7 @@ "13:30", "15:20", "WLH 004 - William L. Harkness Hall 004", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -168702,10 +347918,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90231\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90231/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -168743,14 +347987,14 @@ "13:30", "15:20", "SHM FULTON - Sterling Hall of Medicine FULTON", - "https:\/\/map.yale.edu\/?id=1910#!m\/559929" + "https://map.yale.edu/?id=1910#!m/559929" ] ] }, "skills": [], "areas": [], "flags": [ - "PH: Global Health, Ethics\/Humanities\/History", + "PH: Global Health, Ethics/Humanities/History", "YC GLHTH: Hist Approaches", "YC GLHTH: Health & Societies" ], @@ -168759,10 +348003,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88469\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88469/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -168800,7 +348072,7 @@ "13:30", "15:20", "HQ 113 - Humanities Quadrangle 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -168812,10 +348084,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88474\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88474/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -168857,7 +348157,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -168900,7 +348228,7 @@ "17:30", "19:20", "HQ 213 - Humanities Quadrangle 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -168912,10 +348240,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88285\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88285/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -168959,7 +348315,7 @@ "13:30", "15:20", "SA10 105 - 10 Sachem Street 105", - "https:\/\/map.yale.edu\/?id=1910#!m\/559538" + "https://map.yale.edu/?id=1910#!m/559538" ] ] }, @@ -168971,10 +348327,38 @@ "classnotes": "There is a mandatory section immediately following the course. This makes the course run from 1:30-5:20 when factoring in the mandatory section. ", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88944\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88944/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -169011,7 +348395,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -169049,7 +348461,7 @@ "13:30", "15:20", "HQ 309 - Humanities Quadrangle 309", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -169061,10 +348473,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88297\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88297/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -169102,12 +348542,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "Offered by permission of the instructor and DGS to meet special requirements not covered by regular courses. Graded Satisfactory\/Unsatisfactory.", + "description": "Offered by permission of the instructor and DGS to meet special requirements not covered by regular courses. Graded Satisfactory/Unsatisfactory.", "short_title": "Directed Reading: Caribbean P...", "title": "Directed Reading: Caribbean Plant History", "school": "GS", @@ -169145,12 +348613,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "Offered by permission of the instructor and DGS to meet special requirements not covered by regular courses. Graded Satisfactory\/Unsatisfactory.", + "description": "Offered by permission of the instructor and DGS to meet special requirements not covered by regular courses. Graded Satisfactory/Unsatisfactory.", "short_title": "Directed Reading: CommunityNa...", "title": "Directed Reading: CommunityNationCulture AfrHist", "school": "GS", @@ -169188,12 +348684,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "Offered by permission of the instructor and DGS to meet special requirements not covered by regular courses. Graded Satisfactory\/Unsatisfactory.", + "description": "Offered by permission of the instructor and DGS to meet special requirements not covered by regular courses. Graded Satisfactory/Unsatisfactory.", "short_title": "Directed Reading: Global Urba...", "title": "Directed Reading: Global Urban Hist and Theory", "school": "GS", @@ -169231,12 +348755,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "Offered by permission of the instructor and DGS to meet special requirements not covered by regular courses. Graded Satisfactory\/Unsatisfactory.", + "description": "Offered by permission of the instructor and DGS to meet special requirements not covered by regular courses. Graded Satisfactory/Unsatisfactory.", "short_title": "Directed Reading: Intro to De...", "title": "Directed Reading: Intro to Demotic", "school": "GS", @@ -169274,12 +348826,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "Offered by permission of the instructor and DGS to meet special requirements not covered by regular courses. Graded Satisfactory\/Unsatisfactory.", + "description": "Offered by permission of the instructor and DGS to meet special requirements not covered by regular courses. Graded Satisfactory/Unsatisfactory.", "short_title": "Directed Reading: Modern Midd...", "title": "Directed Reading: Modern Middle East and Islam", "school": "GS", @@ -169317,12 +348897,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "Offered by permission of the instructor and DGS to meet special requirements not covered by regular courses. Graded Satisfactory\/Unsatisfactory.", + "description": "Offered by permission of the instructor and DGS to meet special requirements not covered by regular courses. Graded Satisfactory/Unsatisfactory.", "short_title": "Directed Reading: Origins of ...", "title": "Directed Reading: Origins of World War I", "school": "GS", @@ -169360,12 +348968,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "Offered by permission of the instructor and DGS to meet special requirements not covered by regular courses. Graded Satisfactory\/Unsatisfactory.", + "description": "Offered by permission of the instructor and DGS to meet special requirements not covered by regular courses. Graded Satisfactory/Unsatisfactory.", "short_title": "Directed Readings", "title": "Directed Readings", "school": "GS", @@ -169397,7 +349033,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -169434,7 +349098,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -169474,10 +349166,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92851\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92851/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -169522,7 +349242,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -169562,10 +349310,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92850\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92850/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -169608,7 +349384,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -169645,7 +349449,7 @@ "14:30", "15:45", "WTS A38 - Watson Center 60 Sachem Street A38", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -169653,7 +349457,7 @@ "14:30", "15:45", "WTS A38 - Watson Center 60 Sachem Street A38", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -169669,10 +349473,99 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88807\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88807/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986132383346558, + 0.9987932443618774, + 0.9989145994186401 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.973311185836792, + 0.9986751675605774, + 0.9987902045249939 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989093542098999, + 0.9938486218452454, + 0.9980783462524414, + 0.9989198446273804, + 0.998877227306366 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 0.9090909090909091, + "final_counts": { + "POSITIVE": 10, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + } + } }, { "season_code": "202303", @@ -169715,7 +349608,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -169754,7 +349675,7 @@ "13:00", "14:15", "LC 208 - Linsly-Chittenden Hall 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -169762,7 +349683,7 @@ "13:00", "14:15", "LC 208 - Linsly-Chittenden Hall 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -169780,10 +349701,99 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89882\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89882/assignments/syllabus", "fysem": true, "sysem": true, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998794436454773, + 0.9968249797821045 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9875105619430542, + 0.9986365437507629, + 0.9931440353393555, + 0.9988499879837036, + 0.9994962215423584 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.6, + "POSITIVE": 0.4 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.6 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9995063543319702, + 0.9986275434494019, + 0.9991681575775146, + 0.9989309906959534 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "final_label": "neutral", + "final_count": 6, + "final_proportion": 0.5, + "final_counts": { + "POSITIVE": 6, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.5454545454545454, + "NEGATIVE": 0.45454545454545453 + } + } }, { "season_code": "202303", @@ -169822,7 +349832,7 @@ "13:00", "14:15", "ESC 110 - Environmental Sciences Center 110", - "https:\/\/map.yale.edu\/?id=1910#!m\/560020" + "https://map.yale.edu/?id=1910#!m/560020" ] ], "Thursday": [ @@ -169830,7 +349840,7 @@ "13:00", "14:15", "ESC 110 - Environmental Sciences Center 110", - "https:\/\/map.yale.edu\/?id=1910#!m\/560020" + "https://map.yale.edu/?id=1910#!m/560020" ] ] }, @@ -169841,7 +349851,7 @@ "Sc" ], "flags": [ - "YC E&EB: Intermdiate\/Advanced", + "YC E&EB: Intermdiate/Advanced", "YC E&EB: Biodiversity Elective", "YC E&EB: BS Elective", "YC GLHTH: Health & Societies", @@ -169852,10 +349862,115 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88243\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88243/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998852014541626, + 0.9988372921943665, + 0.9988486766815186, + 0.9987121820449829, + 0.9988836646080017, + 0.9987913966178894, + 0.9955627918243408 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988150596618652, + 0.9972000122070312, + 0.998814582824707, + 0.9988952875137329, + 0.9989210367202759, + 0.9989161491394043 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9974592328071594, + 0.9987358450889587, + 0.9986060261726379, + 0.9988909363746643, + 0.998884379863739, + 0.9989176988601685 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 0.9473684210526315, + "final_counts": { + "POSITIVE": 18, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9473684210526315, + "NEGATIVE": 0.05263157894736842 + } + } }, { "season_code": "202303", @@ -169895,7 +350010,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -169936,7 +350079,7 @@ "13:30", "15:20", "WTS B74 - Watson Center 60 Sachem Street B74", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -169959,10 +350102,107 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88917\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88917/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9968783855438232, + 0.9988638162612915, + 0.9987142086029053, + 0.9988240599632263, + 0.998775064945221, + 0.9967511892318726 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989232420921326, + 0.9977788329124451, + 0.9989073276519775, + 0.9987710118293762 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989205598831177, + 0.9989074468612671, + 0.9987315535545349, + 0.9988357424736023, + 0.99880051612854, + 0.9989172220230103 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 16 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -169999,7 +350239,7 @@ "13:30", "15:20", "LC 317 - Linsly-Chittenden Hall 317", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -170013,10 +350253,101 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88808\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88808/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9945018291473389, + 0.9972386360168457, + 0.9987989664077759, + 0.9987503290176392, + 0.998836100101471 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9979470372200012, + 0.9988553524017334, + 0.998884379863739, + 0.9988728165626526 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9977299571037292, + 0.9982553124427795, + 0.9982553124427795, + 0.9988306164741516 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 13 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -170053,7 +350384,7 @@ "15:30", "17:20", "LC 317 - Linsly-Chittenden Hall 317", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -170067,10 +350398,105 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88809\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88809/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998392641544342, + 0.9987209439277649, + 0.9987092018127441, + 0.9989312291145325 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988092184066772, + 0.9973068237304688, + 0.9994940757751465, + 0.9989308714866638, + 0.993165910243988 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.4, + "NEGATIVE": 0.6 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.6 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988956451416016, + 0.9989349246025085, + 0.9948571920394897, + 0.998904824256897, + 0.9989296793937683 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 0.7142857142857143, + "final_counts": { + "POSITIVE": 10, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.7142857142857143, + "NEGATIVE": 0.2857142857142857 + } + } }, { "season_code": "202303", @@ -170115,7 +350541,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -170152,7 +350606,7 @@ "16:00", "17:50", "WLH 204 - William L. Harkness Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -170164,10 +350618,38 @@ "classnotes": "This course is only open to Human Rights seniors.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88870\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88870/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -170204,7 +350686,7 @@ "10:30", "11:20", "LUCE 202 - Luce Hall 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ], "Tuesday": [ @@ -170212,7 +350694,7 @@ "10:30", "11:20", "LUCE 202 - Luce Hall 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ], "Wednesday": [ @@ -170220,7 +350702,7 @@ "10:30", "11:20", "LUCE 202 - Luce Hall 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ], "Thursday": [ @@ -170228,7 +350710,7 @@ "10:30", "11:20", "LUCE 202 - Luce Hall 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ], "Friday": [ @@ -170236,7 +350718,7 @@ "10:30", "11:20", "LUCE 202 - Luce Hall 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ] }, @@ -170250,10 +350732,105 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88320\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88320/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9986423850059509, + 0.997600257396698, + 0.9986746311187744, + 0.9979519248008728, + 0.9061420559883118 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9929174184799194, + 0.9988757967948914, + 0.9988947510719299, + 0.9989263415336609, + 0.9988139867782593 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986445307731628, + 0.9989259839057922, + 0.9988756775856018, + 0.9989330172538757 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 0.9285714285714286, + "final_counts": { + "POSITIVE": 13, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9285714285714286, + "NEGATIVE": 0.07142857142857142 + } + } }, { "season_code": "202303", @@ -170330,10 +350907,38 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88324\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88324/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -170370,7 +350975,7 @@ "11:35", "12:25", "LUCE 102 - Luce Hall 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ], "Tuesday": [ @@ -170378,7 +350983,7 @@ "11:35", "12:25", "LUCE 102 - Luce Hall 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ], "Wednesday": [ @@ -170386,7 +350991,7 @@ "11:35", "12:25", "LUCE 102 - Luce Hall 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ], "Thursday": [ @@ -170394,7 +350999,7 @@ "11:35", "12:25", "LUCE 102 - Luce Hall 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ], "Friday": [ @@ -170402,7 +351007,7 @@ "11:35", "12:25", "LUCE 102 - Luce Hall 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ] }, @@ -170419,7 +351024,82 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989078044891357, + 0.9989016056060791 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988490343093872 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989162683486938, + 0.9974592328071594 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 5, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 5 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -170456,7 +351136,7 @@ "14:30", "15:45", "LUCE 102 - Luce Hall 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ], "Thursday": [ @@ -170464,7 +351144,7 @@ "14:30", "15:45", "LUCE 102 - Luce Hall 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ] }, @@ -170478,10 +351158,101 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88334\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88334/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988565444946289, + 0.9988941550254822, + 0.9986100196838379, + 0.9967780709266663, + 0.9984184503555298 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9979159235954285, + 0.9989098310470581, + 0.9987851977348328 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989062547683716, + 0.9988375306129456, + 0.9989043474197388, + 0.9988799691200256, + 0.998764157295227 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 13 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -170518,7 +351289,7 @@ "14:30", "15:45", "LUCE 102 - Luce Hall 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ], "Wednesday": [ @@ -170526,7 +351297,7 @@ "14:30", "15:45", "LUCE 102 - Luce Hall 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ] }, @@ -170540,10 +351311,83 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88339\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88339/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9994463324546814 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 0 + }, + "sentiment_distribution": { + "NEGATIVE": 1.0, + "POSITIVE": 0.0 + }, + "sentiment_overall": [ + "NEGATIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9974008798599243 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.998428463935852 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 2, + "final_proportion": 0.6666666666666666, + "final_counts": { + "NEGATIVE": 1, + "POSITIVE": 2 + }, + "final_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + } + } }, { "season_code": "202303", @@ -170586,7 +351430,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -170626,10 +351498,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90355\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90355/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -170710,10 +351610,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92908\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92908/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -170797,7 +351725,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -170857,7 +351813,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -170914,10 +351898,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92911\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92911/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -170957,10 +351969,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92912\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92912/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -171003,7 +352043,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -171046,7 +352114,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -171083,7 +352179,7 @@ "10:00", "11:50", "CO47 106A - 47 College Street (CLP) 106A", - "https:\/\/map.yale.edu\/?id=1910#!m\/559997" + "https://map.yale.edu/?id=1910#!m/559997" ] ] }, @@ -171095,10 +352191,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91020\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91020/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -171138,15 +352262,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91024\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91024/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "Prerequisites: completion of HPM 555 and permission of the instructor.", - "description": "This course is designed for students who wish to deepen their practice-based learning and develop additional research, communication, and advocacy skills through continuing work in a particular practicum placement and\/or on a particular health policy topic. Students are placed with state and\/or local legislative or executive agency policy makers, or with senior staff at nonprofit health policy or advocacy groups.", + "description": "This course is designed for students who wish to deepen their practice-based learning and develop additional research, communication, and advocacy skills through continuing work in a particular practicum placement and/or on a particular health policy topic. Students are placed with state and/or local legislative or executive agency policy makers, or with senior staff at nonprofit health policy or advocacy groups.", "short_title": "Advanced Health Policy Practicum", "title": "Advanced Health Policy Practicum", "school": "PH", @@ -171178,7 +352330,7 @@ "12:00", "12:50", "LEPH 102 - Laboratory of EPH 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ] }, @@ -171190,10 +352342,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91028\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91028/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -171230,24 +352410,52 @@ "17:00", "18:50", "LEPH WINSL - Laboratory of EPH WINSL", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ] }, "skills": [], "areas": [], "flags": [ - "PH: Global Health, Development\/Political Economy" + "PH: Global Health, Development/Political Economy" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91032\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91032/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -171284,7 +352492,7 @@ "17:00", "18:50", "CO47 106B - 47 College Street (CLP) 106B", - "https:\/\/map.yale.edu\/?id=1910#!m\/559997" + "https://map.yale.edu/?id=1910#!m/559997" ] ] }, @@ -171296,10 +352504,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91408\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91408/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -171337,14 +352573,14 @@ "10:00", "11:50", "CO47 106A - 47 College Street (CLP) 106A", - "https:\/\/map.yale.edu\/?id=1910#!m\/559997" + "https://map.yale.edu/?id=1910#!m/559997" ] ] }, "skills": [], "areas": [], "flags": [ - "PH: Global Health, Development\/Political Economy", + "PH: Global Health, Development/Political Economy", "PH: Public Health Modeling" ], "regnotes": "", @@ -171352,10 +352588,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91132\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91132/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -171392,7 +352656,7 @@ "13:00", "14:50", "SHM HARKNESS - Sterling Hall of Medicine HARKNESS", - "https:\/\/map.yale.edu\/?id=1910#!m\/559929" + "https://map.yale.edu/?id=1910#!m/559929" ] ] }, @@ -171404,10 +352668,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91036\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91036/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -171444,7 +352736,7 @@ "13:00", "14:50", "LEPH 103 - Laboratory of EPH 103", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ] }, @@ -171456,10 +352748,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91040\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91040/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -171496,7 +352816,7 @@ "10:00", "11:50", "LEPH 101 - Laboratory of EPH 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ] }, @@ -171508,10 +352828,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91044\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91044/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -171548,7 +352896,7 @@ "10:00", "11:50", "LEPH 101 - Laboratory of EPH 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ] }, @@ -171560,10 +352908,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91044\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91044/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -171606,7 +352982,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -171643,7 +353047,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -171680,7 +353112,7 @@ "12:00", "13:20", "LEPH 103 - Laboratory of EPH 103", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ] }, @@ -171695,12 +353127,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "This seminar introduces students to innovative health policy leaders working in federal, state, and local government, nonprofit policy\/advocacy organizations, business, and\/or health policy-oriented foundations. The speakers present on a variety of current health policy issues and also reflect on their own career paths. The seminar, required of Health Policy students, meets biweekly at the end of the day with a light dinner served. Although no credit or grade is awarded, satisfactory performance will be noted on the student\u2019s transcript.", + "description": "This seminar introduces students to innovative health policy leaders working in federal, state, and local government, nonprofit policy/advocacy organizations, business, and/or health policy-oriented foundations. The speakers present on a variety of current health policy issues and also reflect on their own career paths. The seminar, required of Health Policy students, meets biweekly at the end of the day with a light dinner served. Although no credit or grade is awarded, satisfactory performance will be noted on the student\u2019s transcript.", "short_title": "Health Policy Leadership Seminar", "title": "Health Policy Leadership Seminar", "school": "PH", @@ -171732,7 +353192,7 @@ "17:00", "18:20", "CO47 106A - 47 College Street (CLP) 106A", - "https:\/\/map.yale.edu\/?id=1910#!m\/559997" + "https://map.yale.edu/?id=1910#!m/559997" ] ] }, @@ -171744,10 +353204,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91062\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91062/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -171785,7 +353273,7 @@ "11:35", "12:50", "LORIA 360 - Loria Center 360", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ], "Thursday": [ @@ -171793,7 +353281,7 @@ "11:35", "12:50", "LORIA 360 - Loria Center 360", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -171807,17 +353295,102 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88348\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88348/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988706707954407, + 0.9987280964851379, + 0.998807430267334 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982213377952576, + 0.9989001750946045, + 0.9989320635795593 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989290833473206, + 0.855560302734375, + 0.9989018440246582 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 8, + "final_proportion": 0.8888888888888888, + "final_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + } + } }, { "season_code": "202303", "requirements": "Enrollment limited to first-year students. Preregistration required; see under First-Year Seminar Program.\u00a0", "description": "Color is a powerful element of visual representation. It can convey symbolic meaning,\u00a0descriptive content, aesthetic values, and cultural connotations. This seminar seeks to explore practical, aesthetic, and conceptual facets of \"color.\" A series of weekly modules are structured around the strengths of the rich special collections at Yale libraries and museums. Students are introduced to Yale librarians, curators, and conservators whose expertise will be an invaluable resource throughout their undergraduate years. The course incorporates hands-on sessions in keeping with making as a learning tool.", - "short_title": "Matters of Color\/Color Matters", - "title": "Matters of Color\/Color Matters", + "short_title": "Matters of Color/Color Matters", + "title": "Matters of Color/Color Matters", "school": "YC", "credits": 1.0, "extra_info": "ACTIVE", @@ -171850,7 +353423,7 @@ "13:00", "14:15", "LORIA 258 - Loria Center 258", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ], "Wednesday": [ @@ -171858,7 +353431,7 @@ "13:00", "14:15", "LORIA 258 - Loria Center 258", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -171872,15 +353445,108 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89499\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89499/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9990952014923096, + 0.9986609220504761, + 0.9988859295845032, + 0.9934182167053223 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.25, + "POSITIVE": 0.75 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9994695782661438, + 0.9932799935340881, + 0.9981367588043213, + 0.9988964796066284, + 0.9991236329078674 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.4, + "POSITIVE": 0.6 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9995113611221313, + 0.998880922794342, + 0.9988480806350708, + 0.9987132549285889 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "final_label": "POSITIVE", + "final_count": 8, + "final_proportion": 0.6153846153846154, + "final_counts": { + "NEGATIVE": 5, + "POSITIVE": 8 + }, + "final_distribution": { + "NEGATIVE": 0.38461538461538464, + "POSITIVE": 0.6153846153846154 + } + } }, { "season_code": "202303", "requirements": "Enrollment limited to first-year students. Preregistration required; see under First-Year Seminar Program.", - "description": "This course consists of close encounters with twelve works of art from the Western tradition. Instead of a Renaissance-to-modern survey, we delve deeply into each of the twelve works that form our \"canon,\" chosen both for their extraordinariness and for their capacity to represent different times and places, as well as different media and themes.\u00a0 We ask what makes these works extraordinary and\/or representative, and debate whether or not they properly belong in our \"canon.\" We also address the changing notions of what art is and what functions it fulfills. Each of these twelve works of art are looked at in relation to relevant art objects in Yale\u2019s collections (and in the Metropolitan Museum in New York), as well as corollary works of poetry, literature and film. This is done through readings, seminar discussions, presentations in the galleries, and three research papers. By the end of the semester, each of the students in the class will form their own canon of six to twelve works, and argue for it according to their own values, reasoning and judgment.", + "description": "This course consists of close encounters with twelve works of art from the Western tradition. Instead of a Renaissance-to-modern survey, we delve deeply into each of the twelve works that form our \"canon,\" chosen both for their extraordinariness and for their capacity to represent different times and places, as well as different media and themes.\u00a0 We ask what makes these works extraordinary and/or representative, and debate whether or not they properly belong in our \"canon.\" We also address the changing notions of what art is and what functions it fulfills. Each of these twelve works of art are looked at in relation to relevant art objects in Yale\u2019s collections (and in the Metropolitan Museum in New York), as well as corollary works of poetry, literature and film. This is done through readings, seminar discussions, presentations in the galleries, and three research papers. By the end of the semester, each of the students in the class will form their own canon of six to twelve works, and argue for it according to their own values, reasoning and judgment.", "short_title": "Twelve Works of Western Art", "title": "Twelve Works of Western Art", "school": "YC", @@ -171912,7 +353578,7 @@ "14:30", "15:45", "LORIA 258 - Loria Center 258", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ], "Thursday": [ @@ -171920,7 +353586,7 @@ "14:30", "15:45", "LORIA 258 - Loria Center 258", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -171936,10 +353602,87 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89110\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89110/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998708963394165, + 0.9986945986747742 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988149404525757, + 0.9989144802093506 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989362359046936, + 0.9989326596260071 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 6 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -171977,7 +353720,7 @@ "10:30", "11:20", "LORIA 250 - Loria Center 250", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ], "Thursday": [ @@ -171985,7 +353728,7 @@ "10:30", "11:20", "LORIA 250 - Loria Center 250", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -171999,10 +353742,169 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88353\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88353/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988479614257812, + 0.9985259175300598, + 0.9988290667533875, + 0.998793363571167, + 0.9988821148872375, + 0.9988551139831543, + 0.9984320998191833, + 0.998908519744873, + 0.9988241791725159, + 0.9989186525344849, + 0.9987905621528625, + 0.9988712668418884, + 0.9852079153060913, + 0.9987490177154541, + 0.9987651109695435, + 0.9988803267478943 + ], + "sentiment_counts": { + "POSITIVE": 16, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988687634468079, + 0.9994971752166748, + 0.998903751373291, + 0.9981921315193176, + 0.9981005787849426, + 0.998878538608551, + 0.998921275138855, + 0.9989179372787476, + 0.9989318251609802, + 0.9989064931869507, + 0.9986741542816162, + 0.9989137649536133 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9166666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988769888877869, + 0.998897910118103, + 0.99888676404953, + 0.9987568855285645, + 0.9988718628883362, + 0.9989308714866638, + 0.9986699819564819, + 0.9988613128662109, + 0.9988910555839539, + 0.9988719820976257, + 0.9988194108009338, + 0.9989253878593445, + 0.9994562268257141, + 0.9966104626655579, + 0.998207688331604, + 0.9989017248153687, + 0.998927891254425, + 0.9962835907936096 + ], + "sentiment_counts": { + "POSITIVE": 16, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "final_label": "POSITIVE", + "final_count": 43, + "final_proportion": 0.9347826086956522, + "final_counts": { + "POSITIVE": 43, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.9347826086956522, + "NEGATIVE": 0.06521739130434782 + } + } }, { "season_code": "202303", @@ -172034,7 +353936,7 @@ "14:30", "15:20", "WALL53 B-04 - 53 Wall Street B-04", - "https:\/\/map.yale.edu\/?id=1910#!m\/559554" + "https://map.yale.edu/?id=1910#!m/559554" ] ] }, @@ -172051,7 +353953,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -172083,7 +354013,7 @@ "15:30", "16:20", "WALL53 B-04 - 53 Wall Street B-04", - "https:\/\/map.yale.edu\/?id=1910#!m\/559554" + "https://map.yale.edu/?id=1910#!m/559554" ] ] }, @@ -172100,7 +354030,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -172132,7 +354090,7 @@ "9:25", "10:15", "HQ C05 - Humanities Quadrangle C05", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -172149,7 +354107,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -172181,7 +354167,7 @@ "10:30", "11:20", "HQ C05 - Humanities Quadrangle C05", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -172198,7 +354184,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -172230,7 +354244,7 @@ "11:35", "12:25", "YK220 004 - 220 York Street 004", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ] }, @@ -172247,7 +354261,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -172279,7 +354321,7 @@ "13:30", "14:20", "YK220 004 - 220 York Street 004", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ] }, @@ -172296,7 +354338,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -172338,7 +354408,7 @@ "11:35", "12:25", "YUAG AUD - Yale University Art Gallery AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/559918" + "https://map.yale.edu/?id=1910#!m/559918" ] ], "Thursday": [ @@ -172346,7 +354416,7 @@ "11:35", "12:25", "YUAG AUD - Yale University Art Gallery AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/559918" + "https://map.yale.edu/?id=1910#!m/559918" ] ] }, @@ -172355,7 +354425,7 @@ "Hu" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC ENRG: Energy & Environment", "YC ENRG: Energy & Society", @@ -172366,10 +354436,339 @@ "classnotes": "", "final_exam": "Friday, December 15, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89565\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89565/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988375306129456, + 0.9745486974716187, + 0.9978081583976746, + 0.9988411068916321, + 0.998700737953186, + 0.9988883137702942, + 0.9987426400184631, + 0.998898983001709, + 0.9987830519676208, + 0.9994888305664062, + 0.9988528490066528, + 0.9983839988708496, + 0.9982752799987793, + 0.9988221526145935, + 0.9988779425621033, + 0.9988971948623657, + 0.9989123344421387, + 0.9987972974777222, + 0.9988614320755005, + 0.9988412261009216, + 0.9986856579780579, + 0.9512736797332764, + 0.9911984801292419, + 0.9987909197807312, + 0.9935370087623596, + 0.9989128112792969, + 0.9988229870796204, + 0.9988051652908325, + 0.998722493648529, + 0.9988749623298645, + 0.9988431930541992, + 0.9988594055175781, + 0.9987161159515381, + 0.9988018274307251, + 0.9987325072288513, + 0.998615026473999, + 0.9988515377044678, + 0.9987990856170654, + 0.9976200461387634 + ], + "sentiment_counts": { + "POSITIVE": 34, + "NEGATIVE": 5 + }, + "sentiment_distribution": { + "POSITIVE": 0.8717948717948718, + "NEGATIVE": 0.1282051282051282 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8717948717948718 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988767504692078, + 0.9988866448402405, + 0.9988052845001221, + 0.9985508322715759, + 0.9987472295761108, + 0.9988623857498169, + 0.9987657070159912, + 0.9957031607627869, + 0.9979584217071533, + 0.9989247918128967, + 0.9984208345413208, + 0.999489426612854, + 0.9986494183540344, + 0.9994025230407715, + 0.9989386200904846, + 0.9989216327667236, + 0.9987127780914307, + 0.9988584518432617, + 0.9986187219619751, + 0.9989338517189026, + 0.9983636736869812, + 0.9993415474891663, + 0.9989307522773743, + 0.9989222288131714, + 0.999431312084198, + 0.9995033740997314, + 0.9918841123580933, + 0.9987691044807434, + 0.9851342439651489, + 0.998908281326294, + 0.9982900023460388, + 0.9944076538085938, + 0.9986935257911682, + 0.9994964599609375, + 0.997230589389801, + 0.9988928437232971, + 0.9983024597167969, + 0.9893326759338379, + 0.998908281326294, + 0.9988983869552612, + 0.9987039566040039, + 0.9988982677459717, + 0.9987058639526367, + 0.9986599683761597, + 0.9981788396835327 + ], + "sentiment_counts": { + "POSITIVE": 34, + "NEGATIVE": 11 + }, + "sentiment_distribution": { + "POSITIVE": 0.7555555555555555, + "NEGATIVE": 0.24444444444444444 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7555555555555555 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989129304885864, + 0.9980422258377075, + 0.9772031307220459, + 0.9988924860954285, + 0.9985565543174744, + 0.9988566637039185, + 0.9989244341850281, + 0.9989210367202759, + 0.9988320469856262, + 0.9988540410995483, + 0.997117280960083, + 0.9979623556137085, + 0.878170907497406, + 0.998935878276825, + 0.9982725381851196, + 0.9994218349456787, + 0.9987792372703552, + 0.9989334940910339, + 0.9989062547683716, + 0.9988899827003479, + 0.9995080232620239, + 0.9982553124427795, + 0.9989147186279297, + 0.9989333748817444, + 0.9995095729827881, + 0.9988654851913452, + 0.9987298846244812, + 0.99947589635849, + 0.9986647367477417, + 0.9988137483596802, + 0.9995065927505493, + 0.9988718628883362, + 0.8759276270866394, + 0.9994837045669556, + 0.9988135099411011, + 0.9984739422798157, + 0.9988139867782593, + 0.9987475872039795, + 0.9988629817962646, + 0.9986599683761597, + 0.9982942938804626, + 0.998596727848053, + 0.9989272952079773, + 0.9989011287689209, + 0.9987940788269043, + 0.9988528490066528, + 0.9994882345199585 + ], + "sentiment_counts": { + "POSITIVE": 38, + "NEGATIVE": 9 + }, + "sentiment_distribution": { + "POSITIVE": 0.8085106382978723, + "NEGATIVE": 0.19148936170212766 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8085106382978723 + ] + }, + "final_label": "POSITIVE", + "final_count": 106, + "final_proportion": 0.8091603053435115, + "final_counts": { + "POSITIVE": 106, + "NEGATIVE": 25 + }, + "final_distribution": { + "POSITIVE": 0.8091603053435115, + "NEGATIVE": 0.19083969465648856 + } + } }, { "season_code": "202303", @@ -172408,7 +354807,7 @@ "11:35", "12:50", "LORIA 351 - Loria Center 351", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ], "Wednesday": [ @@ -172416,7 +354815,7 @@ "11:35", "12:50", "LORIA 351 - Loria Center 351", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -172427,17 +354826,136 @@ "flags": [ "YC HistofArt: Pre-800", "YC HistofArt: Europe", - "YC HistofArt: Asia\/Near East" + "YC HistofArt: Asia/Near East" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88358\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88358/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987393021583557, + 0.9982106685638428, + 0.9987975358963013, + 0.9989078044891357, + 0.9948375821113586, + 0.9989110231399536, + 0.9932107329368591, + 0.998173713684082 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989138841629028, + 0.9989169836044312, + 0.9989032745361328, + 0.9989269375801086, + 0.9989159107208252, + 0.9988229870796204, + 0.9989297986030579 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988308548927307, + 0.9989238381385803, + 0.9989078044891357, + 0.9988923668861389, + 0.9989045858383179, + 0.9988861680030823, + 0.9988723397254944, + 0.9974592328071594, + 0.9980016350746155, + 0.9979027509689331, + 0.9989321827888489 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9090909090909091 + ] + }, + "final_label": "POSITIVE", + "final_count": 25, + "final_proportion": 0.9615384615384616, + "final_counts": { + "POSITIVE": 25, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9615384615384616, + "NEGATIVE": 0.038461538461538464 + } + } }, { "season_code": "202303", @@ -172474,7 +354992,7 @@ "14:30", "15:45", "LORIA 351 - Loria Center 351", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ], "Wednesday": [ @@ -172482,7 +355000,7 @@ "14:30", "15:45", "LORIA 351 - Loria Center 351", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -172500,10 +355018,105 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90384\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90384/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988067150115967, + 0.9988515377044678, + 0.9989160299301147, + 0.998473584651947 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989219903945923, + 0.9988252520561218, + 0.9989294409751892, + 0.9989180564880371 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989259839057922, + 0.9988848567008972, + 0.9989235997200012, + 0.9989301562309265, + 0.9989203214645386, + 0.9982459545135498, + 0.9989199638366699 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 15 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -172543,7 +355156,7 @@ "10:30", "11:20", "LORIA 351 - Loria Center 351", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ], "Wednesday": [ @@ -172551,7 +355164,7 @@ "10:30", "11:20", "LORIA 351 - Loria Center 351", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -172566,7 +355179,7 @@ "YC HistofArt: Transchron", "YC HistofArt: 800-1500", "YC HistofArt: Transregional", - "YC HistofArt: Asia\/Near East", + "YC HistofArt: Asia/Near East", "YC MDVL: Nr East & N Africa" ], "regnotes": "", @@ -172574,10 +355187,165 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88363\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88363/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9968078136444092, + 0.9988483190536499, + 0.8139111399650574, + 0.9988471269607544, + 0.9988279938697815, + 0.9989147186279297, + 0.9962338805198669, + 0.9989122152328491, + 0.998839795589447, + 0.998469889163971, + 0.9970951080322266, + 0.9986948370933533, + 0.9988358616828918 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9230769230769231, + "NEGATIVE": 0.07692307692307693 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9230769230769231 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988831877708435, + 0.9985210299491882, + 0.9953655004501343, + 0.919914960861206, + 0.9978929162025452, + 0.9989249110221863, + 0.9988729357719421, + 0.9989274144172668, + 0.9989389777183533, + 0.9987909197807312, + 0.9986699819564819, + 0.9984334111213684, + 0.9893514513969421, + 0.9987282156944275, + 0.9985567927360535 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.7333333333333333, + "NEGATIVE": 0.26666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7333333333333333 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988988637924194, + 0.9989264607429504, + 0.9985346794128418, + 0.9824399948120117, + 0.9946346282958984, + 0.9986942410469055, + 0.9983599781990051, + 0.9989287257194519, + 0.9989047050476074, + 0.9989331364631653, + 0.998633086681366, + 0.9890312552452087, + 0.997117280960083, + 0.9877563714981079, + 0.9994623064994812, + 0.9989323019981384 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.8125, + "NEGATIVE": 0.1875 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8125 + ] + }, + "final_label": "POSITIVE", + "final_count": 36, + "final_proportion": 0.8181818181818182, + "final_counts": { + "POSITIVE": 36, + "NEGATIVE": 8 + }, + "final_distribution": { + "POSITIVE": 0.8181818181818182, + "NEGATIVE": 0.18181818181818182 + } + } }, { "season_code": "202303", @@ -172611,7 +355379,7 @@ "10:30", "11:20", "LC 213 - Linsly-Chittenden Hall 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -172628,7 +355396,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -172662,7 +355458,7 @@ "17:00", "17:50", "HQ C15 - Humanities Quadrangle C15", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -172679,7 +355475,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -172738,7 +355562,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -172772,7 +355624,7 @@ "19:00", "19:50", "HQ 313 - Humanities Quadrangle 313", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -172789,7 +355641,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -172840,7 +355720,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -172874,7 +355782,7 @@ "17:00", "17:50", "HQ C15 - Humanities Quadrangle C15", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -172891,7 +355799,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -172950,7 +355886,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -173009,7 +355973,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -173043,7 +356035,7 @@ "17:00", "17:50", "HQ 313 - Humanities Quadrangle 313", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -173060,7 +356052,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -173094,7 +356114,7 @@ "10:30", "11:20", "WLH 014 - William L. Harkness Hall 014", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -173111,7 +356131,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -173148,7 +356196,7 @@ "13:00", "14:15", "LORIA 351 - Loria Center 351", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ], "Wednesday": [ @@ -173156,7 +356204,7 @@ "13:00", "14:15", "LORIA 351 - Loria Center 351", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -173173,10 +356221,121 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88368\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88368/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9968940019607544, + 0.9988125562667847, + 0.9985916018486023, + 0.9981368780136108, + 0.9987743496894836, + 0.9985672235488892, + 0.998849630355835 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989124536514282, + 0.9963338375091553, + 0.9995033740997314, + 0.9989339709281921, + 0.9994356036186218, + 0.9988850951194763, + 0.998913049697876 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.7142857142857143, + "NEGATIVE": 0.2857142857142857 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7142857142857143 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998902440071106, + 0.9989086389541626, + 0.9990434050559998, + 0.9989070892333984, + 0.9989263415336609, + 0.9987529516220093, + 0.9988303780555725, + 0.9988760352134705 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 0.8636363636363636, + "final_counts": { + "POSITIVE": 19, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.8636363636363636, + "NEGATIVE": 0.13636363636363635 + } + } }, { "season_code": "202303", @@ -173214,7 +356373,7 @@ "10:30", "11:20", "LORIA 351 - Loria Center 351", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ], "Thursday": [ @@ -173222,7 +356381,7 @@ "10:30", "11:20", "LORIA 351 - Loria Center 351", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -173238,10 +356397,155 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89741\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89741/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988203644752502, + 0.9988849759101868, + 0.9983633160591125, + 0.9988588094711304, + 0.9989070892333984, + 0.9987345337867737, + 0.9988980293273926, + 0.9989169836044312, + 0.9985722303390503, + 0.9989097118377686, + 0.9988214373588562, + 0.9987722039222717 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989159107208252, + 0.9988835453987122, + 0.9989213943481445, + 0.998731791973114, + 0.5111547708511353, + 0.9988816380500793, + 0.9988247752189636, + 0.998799204826355, + 0.9988983869552612, + 0.9994964599609375, + 0.998584508895874, + 0.9821203351020813, + 0.9989306330680847, + 0.9987188577651978, + 0.9988634586334229 + ], + "sentiment_counts": { + "POSITIVE": 14, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9333333333333333, + "NEGATIVE": 0.06666666666666667 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9333333333333333 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989204406738281, + 0.9981004595756531, + 0.9989281296730042, + 0.9980968832969666, + 0.9994254112243652, + 0.998894989490509, + 0.9987987279891968, + 0.9988628625869751, + 0.9985161423683167, + 0.8659103512763977, + 0.9961993098258972, + 0.9987892508506775 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 36, + "final_proportion": 0.9230769230769231, + "final_counts": { + "POSITIVE": 36, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.9230769230769231, + "NEGATIVE": 0.07692307692307693 + } + } }, { "season_code": "202303", @@ -173273,7 +356577,7 @@ "10:30", "11:20", "WLH 210 - William L. Harkness Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -173293,7 +356597,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -173325,7 +356657,7 @@ "16:00", "16:50", "YK220 002 - 220 York Street 002", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ] }, @@ -173342,7 +356674,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -173374,7 +356734,7 @@ "19:00", "19:50", "RDH 7-FL - Rudolph Hall 7-FL", - "https:\/\/map.yale.edu\/?id=1910#!m\/559534" + "https://map.yale.edu/?id=1910#!m/559534" ] ] }, @@ -173391,7 +356751,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -173434,7 +356822,7 @@ "13:30", "15:20", "WLH 202 - William L. Harkness Hall 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -173452,10 +356840,99 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88938\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88938/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998917818069458, + 0.9989336133003235, + 0.9989350438117981 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9948537945747375, + 0.9993378520011902, + 0.9989354014396667, + 0.9986166954040527 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988767504692078, + 0.998809814453125, + 0.9989318251609802, + 0.9995081424713135 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 0.8181818181818182, + "final_counts": { + "POSITIVE": 9, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8181818181818182, + "NEGATIVE": 0.18181818181818182 + } + } }, { "season_code": "202303", @@ -173493,7 +356970,7 @@ "13:30", "15:20", "LORIA 358 - Loria Center 358", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -173511,10 +356988,17 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92673\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92673/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -173551,7 +357035,7 @@ "13:30", "15:20", "LORIA 360 - Loria Center 360", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -173568,10 +357052,17 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90385\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90385/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -173612,7 +357103,7 @@ "9:25", "11:15", "LORIA 358 - Loria Center 358", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -173632,10 +357123,101 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90560\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90560/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986592531204224, + 0.9988952875137329, + 0.9987701773643494, + 0.9988460540771484 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9935285449028015, + 0.9989171028137207, + 0.9989343285560608, + 0.9988424181938171 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.25, + "POSITIVE": 0.75 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989013671875, + 0.9989137649536133, + 0.9989191293716431, + 0.9988372921943665 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 0.9166666666666666, + "final_counts": { + "POSITIVE": 11, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + } + } }, { "season_code": "202303", @@ -173672,7 +357254,7 @@ "13:30", "15:20", "LORIA 360 - Loria Center 360", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -173688,10 +357270,115 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88379\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88379/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9980683922767639, + 0.9988824725151062, + 0.9989134073257446, + 0.9989386200904846, + 0.9988698363304138, + 0.9989218711853027 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994557499885559, + 0.998810887336731, + 0.9988701939582825, + 0.9989376664161682, + 0.929416835308075, + 0.9979586601257324 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 5 + }, + "sentiment_distribution": { + "NEGATIVE": 0.16666666666666666, + "POSITIVE": 0.8333333333333334 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9945789575576782, + 0.9989224672317505, + 0.9994921684265137, + 0.99886155128479, + 0.9987970590591431, + 0.9989383816719055, + 0.9836322665214539 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.7142857142857143, + "NEGATIVE": 0.2857142857142857 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7142857142857143 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 0.8421052631578947, + "final_counts": { + "POSITIVE": 16, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.8421052631578947, + "NEGATIVE": 0.15789473684210525 + } + } }, { "season_code": "202303", @@ -173734,7 +357421,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -173771,7 +357486,7 @@ "9:25", "11:15", "LORIA 360 - Loria Center 360", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -173788,10 +357503,107 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88385\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88385/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989218711853027, + 0.9989369511604309, + 0.9989237189292908, + 0.9988853335380554 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989234805107117, + 0.9988803267478943, + 0.9995089769363403, + 0.9956395626068115, + 0.9989044666290283 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989272952079773, + 0.9988939166069031, + 0.99891197681427, + 0.9993347525596619, + 0.9987755417823792, + 0.9974060654640198 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 0.8666666666666667, + "final_counts": { + "POSITIVE": 13, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8666666666666667, + "NEGATIVE": 0.13333333333333333 + } + } }, { "season_code": "202303", @@ -173828,7 +357640,7 @@ "9:25", "11:15", "YUAG 052 - Yale University Art Gallery 052", - "https:\/\/map.yale.edu\/?id=1910#!m\/559918" + "https://map.yale.edu/?id=1910#!m/559918" ] ] }, @@ -173847,10 +357659,107 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89166\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89166/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987932443618774, + 0.9970431923866272, + 0.9988349080085754, + 0.9989131689071655, + 0.9987824559211731 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989107847213745, + 0.9984614849090576, + 0.9988682270050049, + 0.9982308745384216 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9980168342590332, + 0.9989293217658997, + 0.9989312291145325, + 0.9987350106239319, + 0.9988804459571838, + 0.9989199638366699 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 0.9333333333333333, + "final_counts": { + "POSITIVE": 14, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9333333333333333, + "NEGATIVE": 0.06666666666666667 + } + } }, { "season_code": "202303", @@ -173888,7 +357797,7 @@ "9:25", "11:15", "LORIA 259 - Loria Center 259", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -173899,22 +357808,133 @@ "flags": [ "YC HistofArt: Post-1800", "YC HistofArt: Transregional", - "YC HistofArt: Asia\/Near East" + "YC HistofArt: Asia/Near East" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88389\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88389/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "", - "description": "Survey of nineteenth-century European and American sculpture using concrete visual examples from Italy, France, England, and the United States to examine the formal structure of sculpture and contextualize the social and political circumstances of its production and reception. Focus on representation of the human figure and examination of issues of idealism and naturalism, as well controversies surrounding the use of color and gender\/class signifiers. Use of collections in the Yale University Art Gallery and the Yale Center for British Art. Some familiarity with art history is helpful.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989315867424011, + 0.9988993406295776, + 0.9989043474197388, + 0.9994888305664062, + 0.9986909031867981, + 0.9988388419151306 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988446235656738, + 0.9989374279975891, + 0.9989249110221863, + 0.9989225268363953, + 0.9989952445030212, + 0.9989197254180908, + 0.993582010269165 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.7142857142857143, + "NEGATIVE": 0.2857142857142857 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7142857142857143 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988806843757629, + 0.9988413453102112, + 0.9988301396369934, + 0.998763918876648, + 0.9983333945274353, + 0.999510645866394, + 0.9988905787467957, + 0.9988446235656738, + 0.9995030164718628 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.7777777777777778, + "NEGATIVE": 0.2222222222222222 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7777777777777778 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 0.7727272727272727, + "final_counts": { + "POSITIVE": 17, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.7727272727272727, + "NEGATIVE": 0.22727272727272727 + } + } + }, + { + "season_code": "202303", + "requirements": "", + "description": "Survey of nineteenth-century European and American sculpture using concrete visual examples from Italy, France, England, and the United States to examine the formal structure of sculpture and contextualize the social and political circumstances of its production and reception. Focus on representation of the human figure and examination of issues of idealism and naturalism, as well controversies surrounding the use of color and gender/class signifiers. Use of collections in the Yale University Art Gallery and the Yale Center for British Art. Some familiarity with art history is helpful.", "short_title": "Issues in Nineteenth-Century ...", "title": "Issues in Nineteenth-Century Sculpture", "school": "YC", @@ -173946,7 +357966,7 @@ "13:30", "15:20", "LORIA 259 - Loria Center 259", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -173964,10 +357984,87 @@ "classnotes": "", "final_exam": "Saturday, December 16, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89168\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89168/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9965318441390991, + 0.9987439513206482 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988768696784973, + 0.9989053010940552 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989380240440369, + 0.998927891254425 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 6 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -174009,7 +358106,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -174041,7 +358166,7 @@ ], "flags": [ "YC HistofArt: 1500-1800", - "YC HistofArt: Asia\/Near East", + "YC HistofArt: Asia/Near East", "YC MDVL: East & SE Asia" ], "regnotes": "", @@ -174052,7 +358177,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -174091,7 +358244,7 @@ "11:35", "12:50", "LC 210 - Linsly-Chittenden Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -174099,7 +358252,7 @@ "11:35", "12:50", "LC 210 - Linsly-Chittenden Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -174118,11 +358271,90 @@ "rp_attr": "", "classnotes": "", "final_exam": "No regular final examination", - "course_home_url": "https:\/\/yale.instructure.com\/courses\/88053", + "course_home_url": "https://yale.instructure.com/courses/88053", "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989147186279297, + 0.998907208442688 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988935589790344, + 0.9988746047019958 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989237189292908, + 0.9987202882766724, + 0.9989175796508789 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 7 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -174163,7 +358395,7 @@ "13:30", "15:20", "LORIA 360 - Loria Center 360", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -174180,10 +358412,91 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89111\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89111/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988505840301514, + 0.9989185333251953 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989320635795593, + 0.9988625049591064, + 0.9984228610992432 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998939573764801, + 0.9984899759292603, + 0.9989043474197388 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 8, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 8 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -174223,7 +358536,7 @@ "13:30", "15:20", "YUAG 041 - Yale University Art Gallery 041", - "https:\/\/map.yale.edu\/?id=1910#!m\/559918" + "https://map.yale.edu/?id=1910#!m/559918" ] ] }, @@ -174235,13 +358548,112 @@ ], "regnotes": "", "rp_attr": "", - "classnotes": "Please submit a small paragraph expressing your interest in the course to Irma Passeri at irma.passeri@yale.edu with subject line \"HSAR466\". If necessary, instructors will decide enrollment based on class year and\/or interest level", + "classnotes": "Please submit a small paragraph expressing your interest in the course to Irma Passeri at irma.passeri@yale.edu with subject line \"HSAR466\". If necessary, instructors will decide enrollment based on class year and/or interest level", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89167\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89167/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987795948982239, + 0.998400866985321, + 0.9989033937454224, + 0.9988203644752502, + 0.9988443851470947, + 0.998863935470581 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989245533943176, + 0.9989314675331116, + 0.998813271522522, + 0.9989016056060791, + 0.9989390969276428 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988401532173157, + 0.9987560510635376, + 0.9988058805465698, + 0.9989346861839294, + 0.9989145994186401, + 0.9989251494407654 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 17 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -174281,10 +358693,63 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90220\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90220/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC403": { + "sentiment_labels": [ + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9995026588439941 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 0 + }, + "sentiment_distribution": { + "NEGATIVE": 1.0, + "POSITIVE": 0.0 + }, + "sentiment_overall": [ + "NEGATIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988517761230469 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "neutral", + "final_count": 0.5, + "final_proportion": 0.5, + "final_counts": { + "NEGATIVE": 1, + "POSITIVE": 1 + }, + "final_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + } + } }, { "season_code": "202303", @@ -174321,7 +358786,7 @@ "13:30", "15:20", "LORIA 358 - Loria Center 358", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -174333,10 +358798,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89112\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89112/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -174375,7 +358868,7 @@ "13:30", "15:20", "PR406 203 - 406 Prospect St., Miller Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/559978" + "https://map.yale.edu/?id=1910#!m/559978" ] ] }, @@ -174387,10 +358880,38 @@ "classnotes": "Permission of the instructor required", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88158\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88158/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -174427,7 +358948,7 @@ "13:30", "15:20", "LORIA 358 - Loria Center 358", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -174439,10 +358960,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89113\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89113/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -174479,7 +359028,7 @@ "9:25", "11:15", "LORIA 360 - Loria Center 360", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -174491,10 +359040,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89114\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89114/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -174531,7 +359108,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -174573,7 +359178,7 @@ "13:30", "15:20", "SDQ SG54 - Sterling Divinity Quadrangle SG54", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -174585,10 +359190,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91054\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91054/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -174623,10 +359256,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88600\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88600/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -174663,7 +359324,7 @@ "13:30", "15:20", "LORIA 358 - Loria Center 358", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -174675,10 +359336,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90096\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90096/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -174715,7 +359404,7 @@ "9:25", "11:15", "LORIA 258 - Loria Center 258", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -174727,10 +359416,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90097\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90097/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -174769,7 +359486,7 @@ "13:30", "15:20", "LORIA 360 - Loria Center 360", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -174783,10 +359500,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91543\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91543/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -174823,7 +359568,7 @@ "9:25", "11:15", "LORIA 258 - Loria Center 258", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -174839,10 +359584,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92773\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92773/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -174885,7 +359658,7 @@ "17:30", "19:20", "HQ 213 - Humanities Quadrangle 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -174897,10 +359670,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88285\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88285/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -174938,7 +359739,7 @@ "13:00", "14:15", "HQ C65 - Humanities Quadrangle C65", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -174946,7 +359747,7 @@ "13:00", "14:15", "HQ C65 - Humanities Quadrangle C65", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -174969,10 +359770,105 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88462\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88462/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998854398727417, + 0.9988154172897339, + 0.998794674873352, + 0.995518147945404, + 0.9986751675605774 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9972666501998901, + 0.9986532926559448, + 0.9989044666290283, + 0.9988657236099243 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998891294002533, + 0.998927652835846, + 0.9987776875495911, + 0.9987488985061646, + 0.9986751675605774, + 0.9983343482017517 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 15 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -175010,7 +359906,7 @@ "10:30", "11:20", "DL 220 - Dunham Laboratory 220", - "https:\/\/map.yale.edu\/?id=1910#!m\/560005" + "https://map.yale.edu/?id=1910#!m/560005" ] ], "Thursday": [ @@ -175018,7 +359914,7 @@ "10:30", "11:20", "DL 220 - Dunham Laboratory 220", - "https:\/\/map.yale.edu\/?id=1910#!m\/560005" + "https://map.yale.edu/?id=1910#!m/560005" ] ] }, @@ -175039,10 +359935,187 @@ "classnotes": "", "final_exam": "Wednesday, December 20, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88403\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88403/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984941482543945, + 0.9980288147926331, + 0.9988045692443848, + 0.9989169836044312, + 0.9988917708396912, + 0.9985640645027161, + 0.9817448258399963, + 0.9986966252326965, + 0.9988229870796204, + 0.9985369443893433, + 0.9948760867118835, + 0.9973688125610352, + 0.9989180564880371, + 0.9986100196838379, + 0.9986716508865356, + 0.9987932443618774, + 0.9984489679336548, + 0.9989042282104492 + ], + "sentiment_counts": { + "POSITIVE": 18, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987597465515137, + 0.9979484677314758, + 0.9988275170326233, + 0.9988711476325989, + 0.9981142282485962, + 0.9988716244697571, + 0.9987192153930664, + 0.998755693435669, + 0.9988273978233337, + 0.9875832200050354, + 0.9986075758934021, + 0.9993896484375, + 0.9989198446273804, + 0.9988648891448975, + 0.9977572560310364, + 0.9986529350280762, + 0.9988152980804443, + 0.9989221096038818 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 5 + }, + "sentiment_distribution": { + "POSITIVE": 0.7222222222222222, + "NEGATIVE": 0.2777777777777778 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7222222222222222 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9974833130836487, + 0.9631001353263855, + 0.9986633062362671, + 0.9951639175415039, + 0.9995031356811523, + 0.999495267868042, + 0.998278021812439, + 0.997117280960083, + 0.9985585808753967, + 0.9982989430427551, + 0.999502420425415, + 0.9994428753852844, + 0.9989263415336609, + 0.9989100694656372, + 0.9974592328071594, + 0.9988164901733398, + 0.9989078044891357, + 0.998916745185852, + 0.9981306195259094 + ], + "sentiment_counts": { + "POSITIVE": 14, + "NEGATIVE": 5 + }, + "sentiment_distribution": { + "POSITIVE": 0.7368421052631579, + "NEGATIVE": 0.2631578947368421 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7368421052631579 + ] + }, + "final_label": "POSITIVE", + "final_count": 45, + "final_proportion": 0.8181818181818182, + "final_counts": { + "POSITIVE": 45, + "NEGATIVE": 10 + }, + "final_distribution": { + "POSITIVE": 0.8181818181818182, + "NEGATIVE": 0.18181818181818182 + } + } }, { "season_code": "202303", @@ -175074,7 +360147,7 @@ "13:30", "14:20", "WLH 203 - William L. Harkness Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -175098,7 +360171,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -175130,7 +360231,7 @@ "14:30", "15:20", "WLH 203 - William L. Harkness Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -175154,7 +360255,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -175186,7 +360315,7 @@ "13:30", "14:20", "PH 312 - Phelps Hall 312", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -175210,7 +360339,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -175242,7 +360399,7 @@ "14:30", "15:20", "PH 312 - Phelps Hall 312", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -175266,7 +360423,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -175298,7 +360483,7 @@ "19:00", "19:50", "PH 312 - Phelps Hall 312", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -175322,7 +360507,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -175354,7 +360567,7 @@ "20:00", "20:50", "PH 312 - Phelps Hall 312", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -175378,7 +360591,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -175418,7 +360659,7 @@ "11:35", "12:25", "WLH 201 - William L. Harkness Hall 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -175426,7 +360667,7 @@ "11:35", "12:25", "WLH 201 - William L. Harkness Hall 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -175436,7 +360677,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC GLHTH: Hist Approaches", "YC HIST: Race Gender & Sexuality", @@ -175449,10 +360690,287 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88408\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88408/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989221096038818, + 0.9989122152328491, + 0.9971765279769897, + 0.9988479614257812, + 0.9988617897033691, + 0.9988810420036316, + 0.9989307522773743, + 0.9989302754402161, + 0.999503493309021, + 0.9984203577041626, + 0.9988889098167419, + 0.9984398484230042, + 0.9985142350196838, + 0.9988987445831299, + 0.9985565543174744, + 0.9988300204277039, + 0.9988391995429993, + 0.9988646507263184, + 0.9988455772399902, + 0.9988808035850525, + 0.998936116695404, + 0.9993313550949097, + 0.9988445043563843, + 0.998875081539154, + 0.9985804557800293, + 0.991515040397644, + 0.9981314539909363, + 0.9987795948982239, + 0.998927652835846, + 0.9989064931869507, + 0.998665452003479, + 0.9982216954231262 + ], + "sentiment_counts": { + "POSITIVE": 29, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.90625, + "NEGATIVE": 0.09375 + }, + "sentiment_overall": [ + "POSITIVE", + 0.90625 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988808035850525, + 0.9989232420921326, + 0.9971765279769897, + 0.9987169504165649, + 0.9989343285560608, + 0.9988642930984497, + 0.9955214262008667, + 0.9989181756973267, + 0.9946451187133789, + 0.9982569813728333, + 0.9994854927062988, + 0.99892657995224, + 0.9988929629325867, + 0.9988682270050049, + 0.9988287091255188, + 0.9989097118377686, + 0.9984312653541565, + 0.9987331032752991, + 0.9987967014312744, + 0.9989365935325623, + 0.9989336133003235, + 0.9915447235107422, + 0.9988372921943665, + 0.9984152317047119, + 0.9987523555755615, + 0.9964898228645325, + 0.9988711476325989, + 0.9989134073257446, + 0.998863697052002, + 0.9988773465156555, + 0.9989261031150818, + 0.9989269375801086 + ], + "sentiment_counts": { + "POSITIVE": 27, + "NEGATIVE": 5 + }, + "sentiment_distribution": { + "POSITIVE": 0.84375, + "NEGATIVE": 0.15625 + }, + "sentiment_overall": [ + "POSITIVE", + 0.84375 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998896598815918, + 0.998497486114502, + 0.9988008737564087, + 0.9971765279769897, + 0.9989367127418518, + 0.9989266991615295, + 0.9989004135131836, + 0.9988742470741272, + 0.9989070892333984, + 0.9995094537734985, + 0.9980815649032593, + 0.9986956715583801, + 0.9989151954650879, + 0.9989186525344849, + 0.9981266856193542, + 0.9988677501678467, + 0.9988314509391785, + 0.9984139204025269, + 0.9989039897918701, + 0.9995056390762329, + 0.9984253644943237, + 0.9989351630210876, + 0.998708963394165, + 0.9989380240440369, + 0.9989187717437744, + 0.9989246726036072, + 0.9988629817962646, + 0.9994989633560181, + 0.997117280960083, + 0.9986889958381653, + 0.9922507405281067, + 0.9974708557128906, + 0.9989194869995117, + 0.998660683631897, + 0.9988895058631897, + 0.9989277720451355, + 0.9988332390785217, + 0.9987298846244812, + 0.9988711476325989, + 0.9981772899627686, + 0.9988407492637634 + ], + "sentiment_counts": { + "POSITIVE": 37, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.9024390243902439, + "NEGATIVE": 0.0975609756097561 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9024390243902439 + ] + }, + "final_label": "POSITIVE", + "final_count": 93, + "final_proportion": 0.8857142857142857, + "final_counts": { + "POSITIVE": 93, + "NEGATIVE": 12 + }, + "final_distribution": { + "POSITIVE": 0.8857142857142857, + "NEGATIVE": 0.11428571428571428 + } + } }, { "season_code": "202303", @@ -175486,7 +361004,7 @@ "14:30", "15:20", "WLH 210 - William L. Harkness Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -175496,7 +361014,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC GLHTH: Hist Approaches", "YC HIST: Race Gender & Sexuality", @@ -175512,7 +361030,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -175546,7 +361092,7 @@ "15:30", "16:20", "WLH 210 - William L. Harkness Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -175556,7 +361102,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC GLHTH: Hist Approaches", "YC HIST: Race Gender & Sexuality", @@ -175572,7 +361118,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -175606,7 +361180,7 @@ "13:30", "14:20", "WLH 209 - William L. Harkness Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -175616,7 +361190,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC GLHTH: Hist Approaches", "YC HIST: Race Gender & Sexuality", @@ -175632,7 +361206,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -175666,7 +361268,7 @@ "16:30", "17:20", "WLH 210 - William L. Harkness Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -175676,7 +361278,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC GLHTH: Hist Approaches", "YC HIST: Race Gender & Sexuality", @@ -175692,7 +361294,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -175726,7 +361356,7 @@ "8:20", "9:10", "WLH 009 - William L. Harkness Hall 009", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -175736,7 +361366,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC GLHTH: Hist Approaches", "YC HIST: Race Gender & Sexuality", @@ -175752,7 +361382,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -175786,7 +361444,7 @@ "9:25", "10:15", "WLH 009 - William L. Harkness Hall 009", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -175796,7 +361454,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC GLHTH: Hist Approaches", "YC HIST: Race Gender & Sexuality", @@ -175812,7 +361470,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -175846,7 +361532,7 @@ "19:00", "19:50", "HQ 113 - Humanities Quadrangle 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -175856,7 +361542,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC GLHTH: Hist Approaches", "YC HIST: Race Gender & Sexuality", @@ -175872,7 +361558,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -175906,7 +361620,7 @@ "13:30", "14:20", "WALL81 301 - 81 Wall Street 301", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -175916,7 +361630,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC GLHTH: Hist Approaches", "YC HIST: Race Gender & Sexuality", @@ -175932,7 +361646,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -175966,7 +361708,7 @@ "10:30", "11:20", "HQ C64 - Humanities Quadrangle C64", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -175976,7 +361718,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC GLHTH: Hist Approaches", "YC HIST: Race Gender & Sexuality", @@ -175992,7 +361734,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -176026,7 +361796,7 @@ "11:35", "12:25", "HQ C64 - Humanities Quadrangle C64", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -176036,7 +361806,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC GLHTH: Hist Approaches", "YC HIST: Race Gender & Sexuality", @@ -176052,7 +361822,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -176105,7 +361903,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -176147,7 +361973,7 @@ "13:30", "15:20", "WLH 120 - William L. Harkness Hall 120", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -176163,10 +361989,119 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89342\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89342/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9987616539001465, + 0.9988985061645508, + 0.9989351630210876, + 0.9989067316055298, + 0.9988757967948914, + 0.9988817572593689, + 0.9994889497756958 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989392161369324, + 0.9989007711410522, + 0.99892657995224, + 0.9988346695899963, + 0.9989309906959534, + 0.9985311031341553 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998862624168396, + 0.9982553124427795, + 0.9988790154457092, + 0.9989284873008728, + 0.9988844990730286, + 0.9989118576049805, + 0.9988151788711548, + 0.9989394545555115 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 0.9047619047619048, + "final_counts": { + "POSITIVE": 19, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9047619047619048, + "NEGATIVE": 0.09523809523809523 + } + } }, { "season_code": "202303", @@ -176199,7 +362134,7 @@ "Hu" ], "flags": [ - "PH: Global Health, Psychosocial\/Social and behavioral\/Anthropology", + "PH: Global Health, Psychosocial/Social and behavioral/Anthropology", "YC HSHM: Colonial Know & Power", "YC GLHTH: Hist Approaches", "YC GLHTH: Perf, Rep & Health", @@ -176222,7 +362157,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -176259,7 +362222,7 @@ "15:30", "17:20", "HQ 309 - Humanities Quadrangle 309", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -176271,10 +362234,91 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88871\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88871/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998767614364624, + 0.9977946281433105, + 0.9984521865844727 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986935257911682, + 0.9989240765571594 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987612962722778, + 0.998842716217041, + 0.997117280960083 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 8, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 8 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -176312,7 +362356,7 @@ "13:30", "15:20", "HQ 313 - Humanities Quadrangle 313", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -176338,10 +362382,107 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88426\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88426/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989103078842163, + 0.9989307522773743, + 0.9988560676574707, + 0.9989000558853149, + 0.9982616305351257 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984764456748962, + 0.9972814321517944, + 0.9988786578178406, + 0.9989147186279297, + 0.996327817440033 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988549947738647, + 0.9989088773727417, + 0.9988172650337219, + 0.9988559484481812, + 0.9957557916641235, + 0.9989114999771118 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 16 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -176379,7 +362520,7 @@ "9:25", "11:15", "HQ 123 - Humanities Quadrangle 123", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -176397,10 +362538,105 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90365\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90365/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988723397254944, + 0.9989101886749268, + 0.9988428354263306, + 0.9989162683486938 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988722205162048, + 0.9989237189292908, + 0.9949334263801575, + 0.9989302754402161, + 0.9989132881164551 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988967180252075, + 0.9989029169082642, + 0.9974744915962219, + 0.9989097118377686, + 0.9987742304801941, + 0.9989277720451355 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 15 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -176438,7 +362674,7 @@ "15:30", "17:20", "HQ 213 - Humanities Quadrangle 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -176456,10 +362692,87 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92669\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92669/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988970756530762, + 0.9986754059791565 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998855710029602, + 0.9988253712654114 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989197254180908, + 0.9989053010940552 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 6 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -176497,7 +362810,7 @@ "13:30", "15:20", "HQ 229 - Humanities Quadrangle 229", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -176515,10 +362828,107 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88181\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88181/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.994939923286438, + 0.9988623857498169, + 0.998893678188324, + 0.9988678693771362, + 0.9986598491668701 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988908171653748, + 0.9989342093467712, + 0.9989321827888489, + 0.9974145889282227, + 0.9988058805465698 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989257454872131, + 0.9989270567893982, + 0.9989203214645386, + 0.9985548853874207, + 0.9988137483596802, + 0.9988647699356079 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 16 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -176556,7 +362966,7 @@ "13:30", "15:20", "HQ C03 - Humanities Quadrangle C03", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -176579,10 +362989,107 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88430\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88430/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987009763717651, + 0.9986557960510254, + 0.9956525564193726, + 0.9988413453102112, + 0.9988176226615906 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9995007514953613, + 0.998805046081543, + 0.991075873374939, + 0.9977376461029053, + 0.9988632202148438 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 4 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2, + "POSITIVE": 0.8 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981120824813843, + 0.9989109039306641, + 0.9995037317276001, + 0.9988407492637634, + 0.9988941550254822 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 0.8, + "final_counts": { + "POSITIVE": 12, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + } + } }, { "season_code": "202303", @@ -176628,10 +363135,38 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88435\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88435/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -176668,7 +363203,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -176708,10 +363271,89 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88447\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88447/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9933387637138367, + 0.9980777502059937, + 0.9982106685638428 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9962582588195801, + 0.9879080653190613 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 1 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9973879456520081 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 4, + "final_proportion": 0.6666666666666666, + "final_counts": { + "NEGATIVE": 2, + "POSITIVE": 4 + }, + "final_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + } + } }, { "season_code": "202303", @@ -176754,7 +363396,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -176794,10 +363464,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88459\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88459/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -176842,10 +363540,38 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88464\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88464/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -176883,7 +363609,7 @@ "15:30", "17:20", "BASSLB L70 - Bass Library L70", - "https:\/\/map.yale.edu\/?id=1910#!m\/564574" + "https://map.yale.edu/?id=1910#!m/564574" ] ] }, @@ -176909,10 +363635,99 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92670\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92670/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988391995429993, + 0.9985371828079224, + 0.9988297820091248, + 0.9988890290260315 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998921275138855, + 0.9988806843757629, + 0.9988823533058167, + 0.9988957643508911 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989153146743774, + 0.9989216327667236, + 0.998853325843811, + 0.9989299178123474 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 12 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -176965,7 +363780,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -177008,7 +363851,7 @@ "17:30", "19:20", "HQ 213 - Humanities Quadrangle 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -177020,10 +363863,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88285\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88285/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -177061,14 +363932,14 @@ "13:30", "15:20", "SHM FULTON - Sterling Hall of Medicine FULTON", - "https:\/\/map.yale.edu\/?id=1910#!m\/559929" + "https://map.yale.edu/?id=1910#!m/559929" ] ] }, "skills": [], "areas": [], "flags": [ - "PH: Global Health, Ethics\/Humanities\/History", + "PH: Global Health, Ethics/Humanities/History", "YC GLHTH: Hist Approaches", "YC GLHTH: Health & Societies" ], @@ -177077,10 +363948,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88469\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88469/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -177118,7 +364017,7 @@ "13:30", "15:20", "HQ 113 - Humanities Quadrangle 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -177130,10 +364029,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88474\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88474/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -177175,7 +364102,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -177214,7 +364169,7 @@ "13:30", "15:20", "WLH 004 - William L. Harkness Hall 004", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -177226,10 +364181,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90231\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90231/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -177267,7 +364250,7 @@ "9:25", "11:15", "WALL81 101 - 81 Wall Street 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -177279,15 +364262,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92390\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92390/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "Instructor permission required.", - "description": "This graduate-level course presents students with the opportunity to develop a thorough, extensive, and deep (though still not exhaustive!) understanding of the oeuvre of Michel Foucault, and his impact on late-twentieth-century criticism and intellectual history in the United States. Non-francophone and\/or U.S. American scholars, as Lynne Huffer has argued, have engaged Foucault\u2019s work unevenly and frequently in a piecemeal way, due to a combination of the overemphasis on The History of Sexuality, Vol 1 (to the exclusion of most of his other major works), and the lack of availability of English translations of most of his writings until the early twenty-first century. This course seeks to correct that trend and to re-introduce Foucault\u2019s works to a generation of graduate students who, on the whole, do not have extensive experience with his oeuvre. In this course, we read almost all of Foucault\u2019s published writings that have been translated into English (which is almost all of them, at this point). We read all of the monographs, and all of the Coll\u00e8ge de France lectures, in chronological order. This lightens the reading load; we read a book per week, but the lectures are shorter and generally less dense than the monographs. [The benefit of a single author course is that the more time one spends reading Foucault\u2019s work, the easier reading his work becomes.] We read as many of the essays he published in popular and more widely-circulated media as we can. The goal of the course is to give students both breadth and depth in their understanding of Foucault and his works, and to be able to situate his thinking in relation to the intellectual, social, and political histories of the twentieth and twenty-first centuries. Alongside Foucault himself, we read Foucault\u2019s mentors, interlocutors, and inheritors (Heidegger, Marx, Blanchot, Canguilhem, Derrida, Barthes, Althusser, Bersani, Hartman, Angela Davis, etc); his critics (Mbembe, Weheliye, Butler, Said, etc.), and scholarship that situates his thought alongside contemporary social movements, including student, Black liberation, prison abolitionist, and anti-psychiatry movements.", + "description": "This graduate-level course presents students with the opportunity to develop a thorough, extensive, and deep (though still not exhaustive!) understanding of the oeuvre of Michel Foucault, and his impact on late-twentieth-century criticism and intellectual history in the United States. Non-francophone and/or U.S. American scholars, as Lynne Huffer has argued, have engaged Foucault\u2019s work unevenly and frequently in a piecemeal way, due to a combination of the overemphasis on The History of Sexuality, Vol 1 (to the exclusion of most of his other major works), and the lack of availability of English translations of most of his writings until the early twenty-first century. This course seeks to correct that trend and to re-introduce Foucault\u2019s works to a generation of graduate students who, on the whole, do not have extensive experience with his oeuvre. In this course, we read almost all of Foucault\u2019s published writings that have been translated into English (which is almost all of them, at this point). We read all of the monographs, and all of the Coll\u00e8ge de France lectures, in chronological order. This lightens the reading load; we read a book per week, but the lectures are shorter and generally less dense than the monographs. [The benefit of a single author course is that the more time one spends reading Foucault\u2019s work, the easier reading his work becomes.] We read as many of the essays he published in popular and more widely-circulated media as we can. The goal of the course is to give students both breadth and depth in their understanding of Foucault and his works, and to be able to situate his thinking in relation to the intellectual, social, and political histories of the twentieth and twenty-first centuries. Alongside Foucault himself, we read Foucault\u2019s mentors, interlocutors, and inheritors (Heidegger, Marx, Blanchot, Canguilhem, Derrida, Barthes, Althusser, Bersani, Hartman, Angela Davis, etc); his critics (Mbembe, Weheliye, Butler, Said, etc.), and scholarship that situates his thought alongside contemporary social movements, including student, Black liberation, prison abolitionist, and anti-psychiatry movements.", "short_title": "Michel Foucault I: The Works,...", "title": "Michel Foucault I: The Works, The Interlocutors, The Critics", "school": "GS", @@ -177320,10 +364331,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88164\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88164/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -177360,7 +364399,7 @@ "12:00", "13:00", "HQ C64 - Humanities Quadrangle C64", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -177372,10 +364411,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88483\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88483/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -177412,7 +364479,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -177455,7 +364550,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -177498,7 +364621,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -177535,7 +364686,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -177573,7 +364752,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -177610,7 +364817,7 @@ "11:35", "12:50", "LC 206 - Linsly-Chittenden Hall 206", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -177618,7 +364825,7 @@ "11:35", "12:50", "LC 206 - Linsly-Chittenden Hall 206", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Friday": [ @@ -177626,7 +364833,7 @@ "13:00", "16:00", "LC 101 - Linsly-Chittenden Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -177642,10 +364849,99 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92439\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92439/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986861348152161, + 0.9989362359046936, + 0.9989377856254578 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989194869995117, + 0.9989373087882996, + 0.9987398982048035, + 0.9975823163986206 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989320635795593, + 0.9989390969276428, + 0.9989060163497925, + 0.9984643459320068 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 0.9090909090909091, + "final_counts": { + "POSITIVE": 10, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + } + } }, { "season_code": "202303", @@ -177683,7 +364979,7 @@ "9:00", "10:15", "HQ C15 - Humanities Quadrangle C15", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -177691,7 +364987,7 @@ "9:00", "10:15", "HQ C15 - Humanities Quadrangle C15", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Friday": [ @@ -177699,7 +364995,7 @@ "13:00", "16:00", "LC 101 - Linsly-Chittenden Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -177715,15 +365011,100 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89767\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89767/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "", - "description": "Focusing on the figure of the hero through different eras, cultures, and media, this course provides first-year students with a reading-and writing-intensive introduction to studying the humanities at Yale. The course is anchored around six transcultural models of the hero that similarly transcend boundaries of time and place: the warrior, the sage, the political leader, the proponent of justice, the poet\/singer, and the unsung. Our sources range widely across genres, media, periods, and geographies: from the ancient Near Eastern, Epic of Gilgamesh (1500 BCE) to the Southeast Asian Ramayana, to the Icelandic-Ukrainian climate activism film, Woman at War (2018). As part of the Six Pretty Good suite, we explore Yale's special collections and art galleries to broaden our perspectives on hierarchies of value and to sharpen our skills of observation and working with evidence. Six Pretty Good Heroes is a 1.5 credit course, devoting sustained attention students\u2019 academic writing and is an excellent foundation for the next seven semesters at Yale. Required Friday sessions are reserved for writing labs and visits to Yale collections, as well as one-on-one and small-group meetings with the writing instruction staff.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986675977706909, + 0.9988318085670471, + 0.9989344477653503 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9896343946456909, + 0.9985063672065735, + 0.9115263819694519 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9959161877632141, + 0.99814772605896, + 0.9983722567558289 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 0.7777777777777778, + "final_counts": { + "POSITIVE": 7, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.7777777777777778, + "NEGATIVE": 0.2222222222222222 + } + } + }, + { + "season_code": "202303", + "requirements": "", + "description": "Focusing on the figure of the hero through different eras, cultures, and media, this course provides first-year students with a reading-and writing-intensive introduction to studying the humanities at Yale. The course is anchored around six transcultural models of the hero that similarly transcend boundaries of time and place: the warrior, the sage, the political leader, the proponent of justice, the poet/singer, and the unsung. Our sources range widely across genres, media, periods, and geographies: from the ancient Near Eastern, Epic of Gilgamesh (1500 BCE) to the Southeast Asian Ramayana, to the Icelandic-Ukrainian climate activism film, Woman at War (2018). As part of the Six Pretty Good suite, we explore Yale's special collections and art galleries to broaden our perspectives on hierarchies of value and to sharpen our skills of observation and working with evidence. Six Pretty Good Heroes is a 1.5 credit course, devoting sustained attention students\u2019 academic writing and is an excellent foundation for the next seven semesters at Yale. Required Friday sessions are reserved for writing labs and visits to Yale collections, as well as one-on-one and small-group meetings with the writing instruction staff.", "short_title": "Six Pretty Good Heroes", "title": "Six Pretty Good Heroes", "school": "YC", @@ -177756,7 +365137,7 @@ "9:00", "10:15", "HQ C03 - Humanities Quadrangle C03", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -177764,7 +365145,7 @@ "9:00", "10:15", "HQ C03 - Humanities Quadrangle C03", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Friday": [ @@ -177772,7 +365153,7 @@ "13:00", "16:00", "LC 101 - Linsly-Chittenden Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -177788,10 +365169,105 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89567\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89567/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988095760345459, + 0.9988370537757874, + 0.9988528490066528, + 0.9986515641212463, + 0.9987872242927551 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.991910994052887, + 0.9989297986030579, + 0.9987996816635132, + 0.9952474236488342, + 0.9985960125923157 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 4 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2, + "POSITIVE": 0.8 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989088773727417, + 0.99835604429245, + 0.9963201284408569, + 0.9985750913619995 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 0.9285714285714286, + "final_counts": { + "POSITIVE": 13, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9285714285714286, + "NEGATIVE": 0.07142857142857142 + } + } }, { "season_code": "202303", @@ -177829,7 +365305,7 @@ "13:00", "14:15", "LC 317 - Linsly-Chittenden Hall 317", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -177837,7 +365313,7 @@ "13:00", "14:15", "LC 317 - Linsly-Chittenden Hall 317", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -177851,10 +365327,107 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90705\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90705/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987730383872986, + 0.9988664388656616, + 0.9988695979118347, + 0.9987571239471436, + 0.9892282485961914, + 0.9988892674446106 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988442659378052, + 0.998768150806427, + 0.9988682270050049, + 0.9988166093826294, + 0.9989327788352966 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9931514263153076, + 0.9989325404167175, + 0.998938262462616, + 0.9989142417907715, + 0.9989155530929565 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 16 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -177892,7 +365465,7 @@ "16:00", "17:15", "HQ C07 - Humanities Quadrangle C07", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -177900,7 +365473,7 @@ "16:00", "17:15", "HQ C07 - Humanities Quadrangle C07", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Friday": [ @@ -177908,7 +365481,7 @@ "13:00", "16:00", "LC 101 - Linsly-Chittenden Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -177924,10 +365497,123 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90616\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90616/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989246726036072, + 0.9962335228919983, + 0.9988872408866882, + 0.9989070892333984, + 0.998167872428894, + 0.9988753199577332, + 0.9987077713012695 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988293051719666, + 0.993525505065918, + 0.9900222420692444, + 0.9989116191864014, + 0.9983357787132263, + 0.9988400340080261, + 0.9988987445831299, + 0.9979932308197021 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9873408675193787, + 0.9989326596260071, + 0.9989327788352966, + 0.9985975623130798, + 0.9988211989402771, + 0.998918890953064, + 0.9989345669746399, + 0.998770534992218 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 21, + "final_proportion": 0.9130434782608695, + "final_counts": { + "POSITIVE": 21, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9130434782608695, + "NEGATIVE": 0.08695652173913043 + } + } }, { "season_code": "202303", @@ -177964,7 +365650,7 @@ "9:00", "10:15", "HQ 401 - Humanities Quadrangle 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -177972,7 +365658,7 @@ "9:00", "10:15", "HQ 401 - Humanities Quadrangle 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Friday": [ @@ -177980,7 +365666,7 @@ "13:00", "16:00", "LC 101 - Linsly-Chittenden Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -177996,10 +365682,141 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92440\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92440/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986627101898193, + 0.996663510799408, + 0.9968559741973877, + 0.9975411891937256, + 0.9987492561340332, + 0.9984838366508484, + 0.998043417930603, + 0.9989047050476074, + 0.9989161491394043, + 0.9988511800765991 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9994887113571167, + 0.998892605304718, + 0.9989159107208252, + 0.9995032548904419, + 0.9988563060760498, + 0.996641993522644, + 0.999504804611206, + 0.9995123147964478, + 0.9810061454772949, + 0.9995018243789673, + 0.9991793036460876 + ], + "sentiment_counts": { + "NEGATIVE": 7, + "POSITIVE": 4 + }, + "sentiment_distribution": { + "NEGATIVE": 0.6363636363636364, + "POSITIVE": 0.36363636363636365 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.6363636363636364 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9863744974136353, + 0.9987724423408508, + 0.9986940026283264, + 0.9981302618980408, + 0.9989274144172668, + 0.9989012479782104, + 0.9987909197807312, + 0.9994978904724121, + 0.9938693046569824, + 0.9995033740997314, + 0.9991793036460876 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.6363636363636364, + "NEGATIVE": 0.36363636363636365 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6363636363636364 + ] + }, + "final_label": "POSITIVE", + "final_count": 21, + "final_proportion": 0.65625, + "final_counts": { + "POSITIVE": 21, + "NEGATIVE": 11 + }, + "final_distribution": { + "POSITIVE": 0.65625, + "NEGATIVE": 0.34375 + } + } }, { "season_code": "202303", @@ -178037,7 +365854,7 @@ "13:00", "14:15", "WLH 009 - William L. Harkness Hall 009", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -178045,7 +365862,7 @@ "13:00", "14:15", "WLH 009 - William L. Harkness Hall 009", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -178059,10 +365876,87 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88271\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88271/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988859295845032 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988659620285034, + 0.9971823692321777 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989385008811951, + 0.9989293217658997 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 4, + "final_proportion": 0.8, + "final_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + } + } }, { "season_code": "202303", @@ -178102,7 +365996,7 @@ "14:30", "15:45", "WLH 210 - William L. Harkness Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -178110,7 +366004,7 @@ "14:30", "15:45", "WLH 210 - William L. Harkness Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -178119,17 +366013,128 @@ "Hu" ], "flags": [ - "YC English: 20th\/21st Century" + "YC English: 20th/21st Century" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92208\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92208/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989194869995117, + 0.998807430267334, + 0.9989216327667236, + 0.9989217519760132, + 0.9988271594047546, + 0.9989245533943176, + 0.9988633394241333, + 0.9989174604415894 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989226460456848, + 0.9987207055091858, + 0.9989091157913208, + 0.9989288449287415, + 0.998916506767273, + 0.9985612034797668, + 0.9989011287689209, + 0.9988120794296265 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989247918128967, + 0.9989142417907715, + 0.9988695979118347, + 0.9988844990730286, + 0.9986010193824768, + 0.9988746047019958, + 0.9989295601844788 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 23, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 23 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -178167,7 +366172,7 @@ "13:00", "14:15", "HQ 129 - Humanities Quadrangle 129", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -178175,7 +366180,7 @@ "13:00", "14:15", "HQ 129 - Humanities Quadrangle 129", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -178199,10 +366204,113 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91898\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91898/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989161491394043, + 0.9988446235656738, + 0.9989218711853027, + 0.9986396431922913, + 0.9989049434661865, + 0.9988186955451965 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988262057304382, + 0.9983693957328796, + 0.9989318251609802, + 0.9989239573478699, + 0.9989050626754761, + 0.9989338517189026 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988940358161926, + 0.9988877177238464, + 0.998930037021637, + 0.9989092350006104, + 0.9989228844642639, + 0.9989363551139832 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 0.9444444444444444, + "final_counts": { + "POSITIVE": 17, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9444444444444444, + "NEGATIVE": 0.05555555555555555 + } + } }, { "season_code": "202303", @@ -178239,7 +366347,7 @@ "9:00", "10:15", "HQ C65 - Humanities Quadrangle C65", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -178247,7 +366355,7 @@ "9:00", "10:15", "HQ C65 - Humanities Quadrangle C65", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -178263,10 +366371,99 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89859\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89859/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.99891197681427, + 0.998898983001709, + 0.9988073110580444, + 0.9989144802093506 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988586902618408, + 0.9988993406295776, + 0.998903751373291, + 0.9989147186279297 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998916506767273, + 0.9989098310470581, + 0.9988794922828674, + 0.9987257122993469 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 12 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -178313,7 +366510,35 @@ "syllabus_url": "", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -178351,7 +366576,7 @@ "9:00", "10:15", "HQ C11 - Humanities Quadrangle C11", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -178359,7 +366584,7 @@ "9:00", "10:15", "HQ C11 - Humanities Quadrangle C11", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -178375,10 +366600,129 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89768\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89768/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989151954650879, + 0.9989203214645386, + 0.9988577365875244, + 0.9989153146743774, + 0.9989333748817444, + 0.9988754391670227, + 0.998689591884613, + 0.9989070892333984 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988741278648376, + 0.9971822500228882, + 0.9954577684402466, + 0.998915433883667, + 0.9989280104637146, + 0.9988555908203125, + 0.9994416832923889, + 0.9988996982574463, + 0.9988652467727661 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989379048347473, + 0.9989138841629028, + 0.998704195022583, + 0.9989247918128967, + 0.9989290833473206, + 0.998908281326294, + 0.997117280960083, + 0.9988497495651245, + 0.9989017248153687 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 25, + "final_proportion": 0.9615384615384616, + "final_counts": { + "POSITIVE": 25, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9615384615384616, + "NEGATIVE": 0.038461538461538464 + } + } }, { "season_code": "202303", @@ -178415,7 +366759,7 @@ "14:30", "15:45", "HQ C64 - Humanities Quadrangle C64", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -178423,7 +366767,7 @@ "14:30", "15:45", "HQ C64 - Humanities Quadrangle C64", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -178437,10 +366781,107 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88498\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88498/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998783528804779, + 0.9905356764793396, + 0.9989222288131714, + 0.9777122735977173, + 0.9989142417907715, + 0.9988777041435242, + 0.9986411929130554 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989340901374817, + 0.9989032745361328, + 0.9989153146743774 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998805046081543, + 0.9989296793937683, + 0.9981922507286072, + 0.9989281296730042, + 0.9989243149757385, + 0.9989137649536133 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 16 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -178477,7 +366918,7 @@ "14:30", "17:30", "DC 215 - Davenport College 215", - "https:\/\/map.yale.edu\/?id=1910#!m\/560004" + "https://map.yale.edu/?id=1910#!m/560004" ] ] }, @@ -178491,10 +366932,95 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92631\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92631/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9878270030021667, + 0.9989198446273804, + 0.9965094923973083 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994997978210449, + 0.9989014863967896, + 0.9989117383956909 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988131523132324, + 0.998880922794342, + 0.9989132881164551 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 8, + "final_proportion": 0.8888888888888888, + "final_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + } + } }, { "season_code": "202303", @@ -178531,7 +367057,7 @@ "13:00", "16:00", "BRBL 38 - Beinecke Rare Book Library 38", - "https:\/\/map.yale.edu\/?id=1910#!m\/531533" + "https://map.yale.edu/?id=1910#!m/531533" ] ] }, @@ -178545,10 +367071,43 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89854\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89854/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989235997200012, + 0.9989315867424011 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 2, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 2 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -178588,7 +367147,7 @@ "14:30", "15:45", "LC 209 - Linsly-Chittenden Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -178596,7 +367155,7 @@ "14:30", "15:45", "LC 209 - Linsly-Chittenden Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -178612,10 +367171,123 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88538\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88538/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989283680915833, + 0.9980698227882385, + 0.9989109039306641, + 0.9989012479782104, + 0.9989288449287415, + 0.9989268183708191, + 0.9988389611244202, + 0.9987667798995972 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989386200904846, + 0.9989200830459595, + 0.9986739158630371, + 0.998127281665802, + 0.9988141059875488, + 0.99893718957901, + 0.9989105463027954, + 0.9989297986030579 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989369511604309, + 0.9975807666778564, + 0.9989223480224609, + 0.9989076852798462, + 0.9989245533943176, + 0.998906135559082, + 0.9988064765930176, + 0.9989016056060791 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 24, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 24 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -178655,7 +367327,7 @@ "13:00", "14:15", "LC 209 - Linsly-Chittenden Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -178663,7 +367335,7 @@ "13:00", "14:15", "LC 209 - Linsly-Chittenden Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -178682,10 +367354,115 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89291\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89291/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988321661949158, + 0.9986724853515625, + 0.9989258646965027, + 0.998866081237793, + 0.9989006519317627, + 0.9453980922698975, + 0.9988527297973633 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988483190536499, + 0.9989327788352966, + 0.998859167098999, + 0.9988797307014465, + 0.9995015859603882, + 0.9988183379173279 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988825917243958, + 0.9989270567893982, + 0.9989299178123474, + 0.9989286065101624, + 0.9995086193084717, + 0.9989349246025085 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 0.8947368421052632, + "final_counts": { + "POSITIVE": 17, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8947368421052632, + "NEGATIVE": 0.10526315789473684 + } + } }, { "season_code": "202303", @@ -178724,7 +367501,7 @@ "15:30", "17:20", "WLH 112 - William L. Harkness Hall 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -178738,10 +367515,111 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88277\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88277/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9814392924308777, + 0.9988698363304138, + 0.9989160299301147, + 0.998717188835144, + 0.9982116222381592 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9856525659561157, + 0.9957072734832764, + 0.9955268502235413, + 0.9981972575187683, + 0.9985709190368652 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.4, + "POSITIVE": 0.6 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.999470055103302, + 0.9976195693016052, + 0.9980016350746155, + 0.9994938373565674, + 0.999467670917511, + 0.9266988039016724, + 0.9995023012161255 + ], + "sentiment_counts": { + "NEGATIVE": 7, + "POSITIVE": 0 + }, + "sentiment_distribution": { + "NEGATIVE": 1.0, + "POSITIVE": 0.0 + }, + "sentiment_overall": [ + "NEGATIVE", + 1.0 + ] + }, + "final_label": "neutral", + "final_count": 9, + "final_proportion": 0.5, + "final_counts": { + "POSITIVE": 8, + "NEGATIVE": 9 + }, + "final_distribution": { + "POSITIVE": 0.47058823529411764, + "NEGATIVE": 0.5294117647058824 + } + } }, { "season_code": "202303", @@ -178784,7 +367662,7 @@ "10:30", "11:20", "LC 317 - Linsly-Chittenden Hall 317", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -178792,7 +367670,7 @@ "10:30", "11:20", "LC 317 - Linsly-Chittenden Hall 317", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -178811,10 +367689,107 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89272\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89272/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983270764350891, + 0.9988164901733398, + 0.9979806542396545, + 0.9987630844116211 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9983147382736206, + 0.9988991022109985, + 0.9994614720344543, + 0.9976310729980469, + 0.9976523518562317 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.6, + "POSITIVE": 0.4 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.6 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9994681477546692, + 0.9970071911811829, + 0.9857144951820374, + 0.998894989490509, + 0.9994803071022034, + 0.9983184337615967 + ], + "sentiment_counts": { + "NEGATIVE": 4, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.6666666666666666, + "POSITIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.6666666666666666 + ] + }, + "final_label": "neutral", + "final_count": 8, + "final_proportion": 0.5, + "final_counts": { + "POSITIVE": 8, + "NEGATIVE": 7 + }, + "final_distribution": { + "POSITIVE": 0.5333333333333333, + "NEGATIVE": 0.4666666666666667 + } + } }, { "season_code": "202303", @@ -178848,7 +367823,7 @@ "11:35", "12:25", "HQ 123 - Humanities Quadrangle 123", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -178870,7 +367845,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -178904,7 +367907,7 @@ "13:30", "14:20", "WLH 209 - William L. Harkness Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -178926,7 +367929,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -178990,7 +368021,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -179056,10 +368115,85 @@ "classnotes": "", "final_exam": "Friday, December 15, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89643\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89643/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986761212348938 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998141884803772, + 0.9985087513923645 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9990181922912598 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 0 + }, + "sentiment_distribution": { + "NEGATIVE": 1.0, + "POSITIVE": 0.0 + }, + "sentiment_overall": [ + "NEGATIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 3, + "final_proportion": 0.75, + "final_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + } + } }, { "season_code": "202303", @@ -179094,7 +368228,7 @@ "11:35", "12:25", "HQ 401 - Humanities Quadrangle 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -179111,7 +368245,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -179146,7 +368308,7 @@ "10:30", "11:20", "LC 317 - Linsly-Chittenden Hall 317", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -179163,7 +368325,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -179201,7 +368391,7 @@ "14:30", "15:45", "STOECK 210 - Stoeckel Hall (renovated) 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ], "Thursday": [ @@ -179209,7 +368399,7 @@ "14:30", "15:45", "STOECK 210 - Stoeckel Hall (renovated) 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ] }, @@ -179223,10 +368413,99 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88495\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88495/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988009929656982, + 0.9988589286804199, + 0.9988229870796204, + 0.9988786578178406 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989224672317505, + 0.9989171028137207, + 0.9988357424736023, + 0.9988330006599426 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998694121837616, + 0.9988202452659607, + 0.9989377856254578, + 0.9985834360122681 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 12 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -179259,7 +368538,7 @@ "10:30", "11:20", "HQ 127 - Humanities Quadrangle 127", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -179285,7 +368564,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -179318,7 +368625,7 @@ "13:30", "14:20", "WLH 009 - William L. Harkness Hall 009", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -179344,7 +368651,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -179403,7 +368738,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -179436,7 +368799,7 @@ "15:30", "16:20", "HQ 213 - Humanities Quadrangle 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -179462,7 +368825,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -179501,7 +368892,7 @@ "11:35", "12:50", "LC 101 - Linsly-Chittenden Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -179509,7 +368900,7 @@ "11:35", "12:50", "LC 101 - Linsly-Chittenden Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -179532,10 +368923,183 @@ "classnotes": "", "final_exam": "Friday, December 15, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88428\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88428/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988732933998108, + 0.9988717436790466, + 0.9986395239830017, + 0.9988631010055542, + 0.9988541603088379, + 0.9989005327224731, + 0.998845100402832, + 0.9984721541404724, + 0.9982134103775024, + 0.9989302754402161, + 0.9989340901374817, + 0.9989004135131836, + 0.9987493753433228, + 0.9989318251609802, + 0.9989117383956909 + ], + "sentiment_counts": { + "POSITIVE": 15, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988794922828674, + 0.9978839755058289, + 0.9988847374916077, + 0.9989196062088013, + 0.9988914132118225, + 0.9982833862304688, + 0.9989017248153687, + 0.998753547668457, + 0.9928911924362183, + 0.998895525932312, + 0.9989286065101624, + 0.9988344311714172, + 0.998668909072876, + 0.9979167580604553, + 0.9946585297584534, + 0.9987351298332214, + 0.9989124536514282 + ], + "sentiment_counts": { + "POSITIVE": 16, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9411764705882353, + "NEGATIVE": 0.058823529411764705 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9411764705882353 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989284873008728, + 0.9989261031150818, + 0.9988994598388672, + 0.9989174604415894, + 0.9989205598831177, + 0.994897186756134, + 0.9974592328071594, + 0.9988806843757629, + 0.9987263083457947, + 0.997117280960083, + 0.9989051818847656, + 0.9988407492637634, + 0.9988033771514893, + 0.9989031553268433, + 0.9989389777183533, + 0.997117280960083, + 0.9982335567474365, + 0.9985068440437317, + 0.9988753199577332, + 0.9986358284950256, + 0.9989301562309265 + ], + "sentiment_counts": { + "POSITIVE": 19, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.9047619047619048, + "NEGATIVE": 0.09523809523809523 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9047619047619048 + ] + }, + "final_label": "POSITIVE", + "final_count": 50, + "final_proportion": 0.9433962264150944, + "final_counts": { + "POSITIVE": 50, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.9433962264150944, + "NEGATIVE": 0.05660377358490566 + } + } }, { "season_code": "202303", @@ -179568,7 +369132,7 @@ "16:00", "16:50", "HQ 313 - Humanities Quadrangle 313", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -179594,7 +369158,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -179627,7 +369219,7 @@ "16:30", "17:20", "HQ 213 - Humanities Quadrangle 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -179653,7 +369245,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -179687,7 +369307,7 @@ "Hu" ], "flags": [ - "YC CLSS: Lit\/Cult Anc Greece" + "YC CLSS: Lit/Cult Anc Greece" ], "regnotes": "", "rp_attr": "", @@ -179697,7 +369317,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -179736,7 +369384,7 @@ "15:30", "17:20", "WLH 007 - William L. Harkness Hall 007", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -179750,10 +369398,131 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90510\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90510/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988572597503662, + 0.9988958835601807, + 0.9988824725151062, + 0.9988672733306885, + 0.9988343119621277, + 0.9989312291145325, + 0.9988188147544861, + 0.9988503456115723, + 0.9988911747932434 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998895525932312, + 0.9988721013069153, + 0.9988676309585571, + 0.9988422989845276, + 0.9988681077957153, + 0.9988824725151062, + 0.9989058971405029, + 0.9981061220169067 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989357590675354, + 0.998867392539978, + 0.9976968169212341, + 0.9988635778427124, + 0.9988962411880493, + 0.9988586902618408, + 0.9989223480224609, + 0.9989124536514282, + 0.9988627433776855, + 0.9988425970077515, + 0.9989343285560608 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 28, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 28 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -179798,7 +369567,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -179843,7 +369640,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -179882,7 +369707,7 @@ "13:00", "14:15", "HQ 227 - Humanities Quadrangle 227", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -179890,7 +369715,7 @@ "13:00", "14:15", "HQ 227 - Humanities Quadrangle 227", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -179908,10 +369733,99 @@ "classnotes": "", "final_exam": "Saturday, December 16, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88113\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88113/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998877227306366, + 0.9987377524375916, + 0.998773992061615, + 0.9987092018127441 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989387392997742, + 0.9988440275192261, + 0.9989190101623535, + 0.9961065649986267 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989225268363953, + 0.9987555742263794, + 0.9989308714866638, + 0.9987749457359314 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 12 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -179948,7 +369862,7 @@ "13:30", "15:20", "HQ 317 - Humanities Quadrangle 317", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -179962,10 +369876,91 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90429\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90429/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988014698028564, + 0.99886155128479 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9819775223731995, + 0.9987762570381165, + 0.9989323019981384 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9975155591964722, + 0.9988942742347717 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 0.8571428571428571, + "final_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + } + } }, { "season_code": "202303", @@ -180004,7 +369999,7 @@ "9:25", "11:15", "HQ 113 - Humanities Quadrangle 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -180018,10 +370013,93 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90387\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90387/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989182949066162, + 0.998304009437561 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9875518679618835, + 0.9994242191314697 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 0 + }, + "sentiment_distribution": { + "NEGATIVE": 1.0, + "POSITIVE": 0.0 + }, + "sentiment_overall": [ + "NEGATIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989215135574341, + 0.9981397390365601, + 0.9982553124427795, + 0.9989250302314758 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 0.75, + "final_counts": { + "POSITIVE": 6, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + } + } }, { "season_code": "202303", @@ -180060,7 +370138,7 @@ "11:35", "12:50", "LC 210 - Linsly-Chittenden Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -180068,7 +370146,7 @@ "11:35", "12:50", "LC 210 - Linsly-Chittenden Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -180087,11 +370165,90 @@ "rp_attr": "", "classnotes": "", "final_exam": "No regular final examination", - "course_home_url": "https:\/\/yale.instructure.com\/courses\/88053", + "course_home_url": "https://yale.instructure.com/courses/88053", "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989147186279297, + 0.998907208442688 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988935589790344, + 0.9988746047019958 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989237189292908, + 0.9987202882766724, + 0.9989175796508789 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 7 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -180134,7 +370291,7 @@ "13:00", "14:15", "HQ C11 - Humanities Quadrangle C11", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -180142,7 +370299,7 @@ "13:00", "14:15", "HQ C11 - Humanities Quadrangle C11", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -180156,15 +370313,128 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89006\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89006/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "", - "description": "Was Sappho a feminist? This course tries to answer that question by analyzing how women\u2019s voices have been appropriated by the literary and cultural canon of the west\u2013and how in turn women writers and readers have reappropriated those voices. Students read a generous amount of literary (and in some cases, musical) works, along with a variety of contemporary theoretical approaches so as to engage in conversation about authorship, classical reception, and materiality. Following an introduction to Greek and Roman texts key for problematic female figures such as sirens and sibyls, we turn to two later historical moments to explore how women artists have both broken out of and used the western canon, redefining genre, content, and style in literary creation writ large. How did Renaissance women such as Laura Cereta, Gaspara Stampa, and Sor Juana In\u00e9s de la Cruz fashion themselves as authors in light of the classical sources they had at hand? And once we arrive in the 20th and 21st centuries, how do Sibilla Aleramo, Elsa Morante, Anna Maria Ortese, and Elena Ferrante forge a new, feminist writing via classical, queer and\/or animal viewpoints?", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988124370574951, + 0.9988865256309509, + 0.9989105463027954, + 0.9988695979118347, + 0.9984996318817139, + 0.9989117383956909, + 0.9988561868667603 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989283680915833, + 0.9989339709281921, + 0.9989217519760132, + 0.9989386200904846, + 0.9989239573478699, + 0.9989343285560608, + 0.9989400506019592 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988386034965515, + 0.998931348323822, + 0.9989206790924072, + 0.99875807762146, + 0.9989272952079773, + 0.9989187717437744, + 0.9989375472068787, + 0.9989213943481445, + 0.9988805651664734, + 0.9989261031150818 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 24, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 24 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } + }, + { + "season_code": "202303", + "requirements": "", + "description": "Was Sappho a feminist? This course tries to answer that question by analyzing how women\u2019s voices have been appropriated by the literary and cultural canon of the west\u2013and how in turn women writers and readers have reappropriated those voices. Students read a generous amount of literary (and in some cases, musical) works, along with a variety of contemporary theoretical approaches so as to engage in conversation about authorship, classical reception, and materiality. Following an introduction to Greek and Roman texts key for problematic female figures such as sirens and sibyls, we turn to two later historical moments to explore how women artists have both broken out of and used the western canon, redefining genre, content, and style in literary creation writ large. How did Renaissance women such as Laura Cereta, Gaspara Stampa, and Sor Juana In\u00e9s de la Cruz fashion themselves as authors in light of the classical sources they had at hand? And once we arrive in the 20th and 21st centuries, how do Sibilla Aleramo, Elsa Morante, Anna Maria Ortese, and Elena Ferrante forge a new, feminist writing via classical, queer and/or animal viewpoints?", "short_title": "Dangerous Women: Sirens, Siby...", "title": "Dangerous Women: Sirens, Sibyls, Poets and Singers from Sappho through Elena Ferrante", "school": "YC", @@ -180199,7 +370469,7 @@ "11:35", "12:50", "WLH 112 - William L. Harkness Hall 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -180207,7 +370477,7 @@ "11:35", "12:50", "WLH 112 - William L. Harkness Hall 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -180223,10 +370493,133 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89644\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89644/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989196062088013, + 0.998461127281189, + 0.9989305138587952, + 0.9987473487854004, + 0.9988574981689453, + 0.9988310933113098, + 0.9987288117408752, + 0.9987872242927551 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984928369522095, + 0.9987698197364807, + 0.999487042427063, + 0.9993746876716614, + 0.9989004135131836, + 0.993488073348999, + 0.9987336993217468, + 0.9982598423957825, + 0.9989217519760132, + 0.998910665512085, + 0.9988431930541992 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.7272727272727273, + "NEGATIVE": 0.2727272727272727 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7272727272727273 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9953521490097046, + 0.9983676075935364, + 0.9995096921920776, + 0.998089611530304, + 0.9988279938697815, + 0.9987051486968994, + 0.9988396763801575, + 0.9985581040382385, + 0.9989101886749268 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.7777777777777778, + "NEGATIVE": 0.2222222222222222 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7777777777777778 + ] + }, + "final_label": "POSITIVE", + "final_count": 23, + "final_proportion": 0.8214285714285714, + "final_counts": { + "POSITIVE": 23, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.8214285714285714, + "NEGATIVE": 0.17857142857142858 + } + } }, { "season_code": "202303", @@ -180266,7 +370659,7 @@ "14:30", "15:45", "LC 204 - Linsly-Chittenden Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -180274,7 +370667,7 @@ "14:30", "15:45", "LC 204 - Linsly-Chittenden Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -180294,10 +370687,87 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89647\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89647/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986574649810791, + 0.9988542795181274 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.997345507144928, + 0.998895525932312 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9968374967575073, + 0.9988742470741272 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 6 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -180337,7 +370807,7 @@ "11:35", "12:25", "WLH 201 - William L. Harkness Hall 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -180345,7 +370815,7 @@ "11:35", "12:25", "WLH 201 - William L. Harkness Hall 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -180355,7 +370825,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC GLHTH: Hist Approaches", "YC HIST: Race Gender & Sexuality", @@ -180368,10 +370838,287 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88408\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88408/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989221096038818, + 0.9989122152328491, + 0.9971765279769897, + 0.9988479614257812, + 0.9988617897033691, + 0.9988810420036316, + 0.9989307522773743, + 0.9989302754402161, + 0.999503493309021, + 0.9984203577041626, + 0.9988889098167419, + 0.9984398484230042, + 0.9985142350196838, + 0.9988987445831299, + 0.9985565543174744, + 0.9988300204277039, + 0.9988391995429993, + 0.9988646507263184, + 0.9988455772399902, + 0.9988808035850525, + 0.998936116695404, + 0.9993313550949097, + 0.9988445043563843, + 0.998875081539154, + 0.9985804557800293, + 0.991515040397644, + 0.9981314539909363, + 0.9987795948982239, + 0.998927652835846, + 0.9989064931869507, + 0.998665452003479, + 0.9982216954231262 + ], + "sentiment_counts": { + "POSITIVE": 29, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.90625, + "NEGATIVE": 0.09375 + }, + "sentiment_overall": [ + "POSITIVE", + 0.90625 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988808035850525, + 0.9989232420921326, + 0.9971765279769897, + 0.9987169504165649, + 0.9989343285560608, + 0.9988642930984497, + 0.9955214262008667, + 0.9989181756973267, + 0.9946451187133789, + 0.9982569813728333, + 0.9994854927062988, + 0.99892657995224, + 0.9988929629325867, + 0.9988682270050049, + 0.9988287091255188, + 0.9989097118377686, + 0.9984312653541565, + 0.9987331032752991, + 0.9987967014312744, + 0.9989365935325623, + 0.9989336133003235, + 0.9915447235107422, + 0.9988372921943665, + 0.9984152317047119, + 0.9987523555755615, + 0.9964898228645325, + 0.9988711476325989, + 0.9989134073257446, + 0.998863697052002, + 0.9988773465156555, + 0.9989261031150818, + 0.9989269375801086 + ], + "sentiment_counts": { + "POSITIVE": 27, + "NEGATIVE": 5 + }, + "sentiment_distribution": { + "POSITIVE": 0.84375, + "NEGATIVE": 0.15625 + }, + "sentiment_overall": [ + "POSITIVE", + 0.84375 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998896598815918, + 0.998497486114502, + 0.9988008737564087, + 0.9971765279769897, + 0.9989367127418518, + 0.9989266991615295, + 0.9989004135131836, + 0.9988742470741272, + 0.9989070892333984, + 0.9995094537734985, + 0.9980815649032593, + 0.9986956715583801, + 0.9989151954650879, + 0.9989186525344849, + 0.9981266856193542, + 0.9988677501678467, + 0.9988314509391785, + 0.9984139204025269, + 0.9989039897918701, + 0.9995056390762329, + 0.9984253644943237, + 0.9989351630210876, + 0.998708963394165, + 0.9989380240440369, + 0.9989187717437744, + 0.9989246726036072, + 0.9988629817962646, + 0.9994989633560181, + 0.997117280960083, + 0.9986889958381653, + 0.9922507405281067, + 0.9974708557128906, + 0.9989194869995117, + 0.998660683631897, + 0.9988895058631897, + 0.9989277720451355, + 0.9988332390785217, + 0.9987298846244812, + 0.9988711476325989, + 0.9981772899627686, + 0.9988407492637634 + ], + "sentiment_counts": { + "POSITIVE": 37, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.9024390243902439, + "NEGATIVE": 0.0975609756097561 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9024390243902439 + ] + }, + "final_label": "POSITIVE", + "final_count": 93, + "final_proportion": 0.8857142857142857, + "final_counts": { + "POSITIVE": 93, + "NEGATIVE": 12 + }, + "final_distribution": { + "POSITIVE": 0.8857142857142857, + "NEGATIVE": 0.11428571428571428 + } + } }, { "season_code": "202303", @@ -180405,7 +371152,7 @@ "14:30", "15:20", "WLH 210 - William L. Harkness Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -180415,7 +371162,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC GLHTH: Hist Approaches", "YC HIST: Race Gender & Sexuality", @@ -180431,7 +371178,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -180465,7 +371240,7 @@ "15:30", "16:20", "WLH 210 - William L. Harkness Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -180475,7 +371250,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC GLHTH: Hist Approaches", "YC HIST: Race Gender & Sexuality", @@ -180491,7 +371266,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -180525,7 +371328,7 @@ "13:30", "14:20", "WLH 209 - William L. Harkness Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -180535,7 +371338,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC GLHTH: Hist Approaches", "YC HIST: Race Gender & Sexuality", @@ -180551,7 +371354,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -180585,7 +371416,7 @@ "16:30", "17:20", "WLH 210 - William L. Harkness Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -180595,7 +371426,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC GLHTH: Hist Approaches", "YC HIST: Race Gender & Sexuality", @@ -180611,7 +371442,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -180645,7 +371504,7 @@ "8:20", "9:10", "WLH 009 - William L. Harkness Hall 009", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -180655,7 +371514,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC GLHTH: Hist Approaches", "YC HIST: Race Gender & Sexuality", @@ -180671,7 +371530,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -180705,7 +371592,7 @@ "9:25", "10:15", "WLH 009 - William L. Harkness Hall 009", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -180715,7 +371602,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC GLHTH: Hist Approaches", "YC HIST: Race Gender & Sexuality", @@ -180731,7 +371618,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -180765,7 +371680,7 @@ "19:00", "19:50", "HQ 113 - Humanities Quadrangle 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -180775,7 +371690,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC GLHTH: Hist Approaches", "YC HIST: Race Gender & Sexuality", @@ -180791,7 +371706,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -180825,7 +371768,7 @@ "13:30", "14:20", "WALL81 301 - 81 Wall Street 301", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -180835,7 +371778,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC GLHTH: Hist Approaches", "YC HIST: Race Gender & Sexuality", @@ -180851,7 +371794,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -180885,7 +371856,7 @@ "10:30", "11:20", "HQ C64 - Humanities Quadrangle C64", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -180895,7 +371866,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC GLHTH: Hist Approaches", "YC HIST: Race Gender & Sexuality", @@ -180911,7 +371882,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -180945,7 +371944,7 @@ "11:35", "12:25", "HQ C64 - Humanities Quadrangle C64", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -180955,7 +371954,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC GLHTH: Hist Approaches", "YC HIST: Race Gender & Sexuality", @@ -180971,7 +371970,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -181011,7 +372038,7 @@ "14:30", "15:45", "HQ 225 - Humanities Quadrangle 225", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -181019,7 +372046,7 @@ "14:30", "15:45", "HQ 225 - Humanities Quadrangle 225", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -181029,17 +372056,146 @@ ], "flags": [ "YSE MEM C&A Electives", - "YC EVST: Core Human\/Social Sci" + "YC EVST: Core Human/Social Sci" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89849\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89849/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9962582588195801, + 0.9987448453903198, + 0.9989109039306641, + 0.9988428354263306, + 0.9987834095954895, + 0.9942436814308167, + 0.9989105463027954, + 0.9987689852714539, + 0.9988893866539001, + 0.9980958104133606, + 0.9988905787467957 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 10 + }, + "sentiment_distribution": { + "NEGATIVE": 0.09090909090909091, + "POSITIVE": 0.9090909090909091 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9090909090909091 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9962582588195801, + 0.9989333748817444, + 0.9989383816719055, + 0.996529757976532, + 0.9989294409751892, + 0.9988657236099243, + 0.9987187385559082, + 0.9989200830459595, + 0.9989365935325623 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 8 + }, + "sentiment_distribution": { + "NEGATIVE": 0.1111111111111111, + "POSITIVE": 0.8888888888888888 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9962582588195801, + 0.9988861680030823, + 0.9989386200904846, + 0.9989379048347473, + 0.9989110231399536, + 0.99885094165802, + 0.9989312291145325, + 0.9988710284233093, + 0.9989226460456848, + 0.9989266991615295, + 0.9989321827888489 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 10 + }, + "sentiment_distribution": { + "NEGATIVE": 0.09090909090909091, + "POSITIVE": 0.9090909090909091 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9090909090909091 + ] + }, + "final_label": "POSITIVE", + "final_count": 28, + "final_proportion": 0.9032258064516129, + "final_counts": { + "NEGATIVE": 3, + "POSITIVE": 28 + }, + "final_distribution": { + "NEGATIVE": 0.0967741935483871, + "POSITIVE": 0.9032258064516129 + } + } }, { "season_code": "202303", @@ -181079,7 +372235,7 @@ "13:00", "14:15", "HQ 401 - Humanities Quadrangle 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -181087,7 +372243,7 @@ "13:00", "14:15", "HQ 401 - Humanities Quadrangle 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -181101,10 +372257,139 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88811\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88811/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989308714866638, + 0.9988654851913452, + 0.998934805393219, + 0.9989339709281921, + 0.9988791346549988, + 0.9989226460456848, + 0.9988712668418884, + 0.9987667798995972, + 0.9987731575965881, + 0.9989311099052429 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989227652549744, + 0.9987680315971375, + 0.9988743662834167, + 0.998927891254425, + 0.9989215135574341, + 0.9989293217658997, + 0.9989306330680847, + 0.9989328980445862, + 0.9988389611244202, + 0.998935878276825, + 0.9987994432449341 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985301494598389, + 0.9989317059516907, + 0.7024456262588501, + 0.9988414645195007, + 0.9989373087882996, + 0.9989206790924072, + 0.9988911747932434, + 0.9989330172538757, + 0.9989141225814819, + 0.9989374279975891, + 0.9989349246025085 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 32, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 32 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -181143,7 +372428,7 @@ "16:00", "17:50", "WLH 002 - William L. Harkness Hall 002", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -181160,10 +372445,101 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88911\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88911/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988440275192261, + 0.9987886548042297, + 0.9986199140548706, + 0.9989138841629028 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982112646102905, + 0.9980571866035461, + 0.9985040426254272, + 0.9987245202064514 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989025592803955, + 0.9995042085647583, + 0.9982553124427795, + 0.9982150793075562 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 0.9166666666666666, + "final_counts": { + "POSITIVE": 11, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + } + } }, { "season_code": "202303", @@ -181202,7 +372578,7 @@ "12:00", "15:00", "BRBL - BRBL", - "https:\/\/map.yale.edu\/?id=1910#!m\/531533" + "https://map.yale.edu/?id=1910#!m/531533" ] ] }, @@ -181214,7 +372590,7 @@ ], "flags": [ "YC AMST: Junior Seminars", - "YC English: 20th\/21st Century", + "YC English: 20th/21st Century", "YC English: Junior Seminar" ], "regnotes": "", @@ -181222,10 +372598,111 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89489\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89489/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989125728607178, + 0.9989162683486938, + 0.9988430738449097, + 0.9989159107208252, + 0.9989309906959534 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.99885094165802, + 0.998633086681366, + 0.9989224672317505, + 0.9988797307014465, + 0.9989097118377686 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989286065101624, + 0.9989244341850281, + 0.9989396929740906, + 0.9988844990730286, + 0.9989045858383179, + 0.9988904595375061, + 0.9989011287689209 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 0.9411764705882353, + "final_counts": { + "POSITIVE": 16, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9411764705882353, + "NEGATIVE": 0.058823529411764705 + } + } }, { "season_code": "202303", @@ -181265,7 +372742,7 @@ "10:30", "11:20", "WLH 119 - William L. Harkness Hall 119", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -181273,7 +372750,7 @@ "10:30", "11:20", "WLH 119 - William L. Harkness Hall 119", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -181290,10 +372767,129 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89330\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89330/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989168643951416, + 0.9988473653793335, + 0.9987714886665344, + 0.9987844824790955, + 0.9986546039581299, + 0.9988982677459717, + 0.9989064931869507 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989263415336609, + 0.9988247752189636, + 0.9989228844642639, + 0.9985866546630859, + 0.9988899827003479, + 0.9988968372344971, + 0.9988973140716553, + 0.9988595247268677 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989326596260071, + 0.9989070892333984, + 0.9981922507286072, + 0.9982553124427795, + 0.9985001087188721, + 0.9968937635421753, + 0.9989194869995117, + 0.9988752007484436, + 0.9989221096038818, + 0.9985120892524719, + 0.9989042282104492, + 0.9988299012184143 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 27, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 27 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -181327,7 +372923,7 @@ "10:30", "11:20", "WLH 014 - William L. Harkness Hall 014", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -181346,7 +372942,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -181380,7 +373004,7 @@ "10:30", "11:20", "LORIA 360 - Loria Center 360", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -181399,7 +373023,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -181433,7 +373085,7 @@ "16:00", "16:50", "HQ 129 - Humanities Quadrangle 129", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -181452,7 +373104,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -181486,7 +373166,7 @@ "13:30", "14:20", "WALL81 401 - 81 Wall Street 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -181505,7 +373185,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -181539,7 +373247,7 @@ "10:30", "11:20", "HQ 123 - Humanities Quadrangle 123", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -181558,7 +373266,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -181597,7 +373333,7 @@ "9:25", "11:15", "HQ 313 - Humanities Quadrangle 313", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -181613,10 +373349,103 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90362\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90362/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987460374832153, + 0.9989262223243713, + 0.9981698989868164 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988895058631897, + 0.9989159107208252, + 0.9994282126426697, + 0.9989380240440369, + 0.998887836933136 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987872242927551, + 0.9988885521888733, + 0.9995037317276001, + 0.9988582134246826, + 0.998910665512085 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 0.8461538461538461, + "final_counts": { + "POSITIVE": 11, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8461538461538461, + "NEGATIVE": 0.15384615384615385 + } + } }, { "season_code": "202303", @@ -181656,7 +373485,7 @@ "14:30", "15:45", "HQ 227 - Humanities Quadrangle 227", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -181664,7 +373493,7 @@ "14:30", "15:45", "HQ 227 - Humanities Quadrangle 227", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -181683,10 +373512,113 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91565\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91565/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9980986714363098, + 0.998824417591095, + 0.9982035160064697, + 0.9987812638282776, + 0.9988441467285156, + 0.9988885521888733 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987928867340088, + 0.9989217519760132, + 0.9988355040550232, + 0.9989357590675354, + 0.9987519979476929, + 0.998730480670929 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988663196563721, + 0.9988304972648621, + 0.9988301396369934, + 0.9989150762557983, + 0.9974507689476013, + 0.9988853335380554, + 0.9989401698112488 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 19 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -181726,7 +373658,7 @@ "13:30", "15:20", "HQ 309 - Humanities Quadrangle 309", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -181740,10 +373672,101 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88598\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88598/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989068508148193, + 0.9984636306762695 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988297820091248, + 0.9989150762557983, + 0.9982605576515198, + 0.9974096417427063 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987319111824036, + 0.9988688826560974, + 0.9986447691917419, + 0.9989240765571594, + 0.9966188669204712, + 0.9989379048347473 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 0.9166666666666666, + "final_counts": { + "POSITIVE": 11, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + } + } }, { "season_code": "202303", @@ -181784,7 +373807,7 @@ "9:25", "11:15", "HQ C07 - Humanities Quadrangle C07", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -181806,10 +373829,93 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89002\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89002/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998885452747345, + 0.9988933205604553 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985866546630859, + 0.9988686442375183 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 1 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9983514547348022, + 0.9988250136375427, + 0.9973405003547668, + 0.999376118183136 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "final_label": "POSITIVE", + "final_count": 5, + "final_proportion": 0.625, + "final_counts": { + "POSITIVE": 5, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.625, + "NEGATIVE": 0.375 + } + } }, { "season_code": "202303", @@ -181847,7 +373953,7 @@ "15:30", "17:20", "HQ C64 - Humanities Quadrangle C64", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -181869,10 +373975,91 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88110\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88110/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989386200904846, + 0.9985283613204956 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989213943481445, + 0.9988999366760254, + 0.9989275336265564 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9863190650939941, + 0.9989246726036072 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 1 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 0.8571428571428571, + "final_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + } + } }, { "season_code": "202303", @@ -181911,7 +374098,7 @@ "11:35", "12:25", "LC 102 - Linsly-Chittenden Hall 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -181919,7 +374106,7 @@ "11:35", "12:25", "LC 102 - Linsly-Chittenden Hall 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -181940,10 +374127,347 @@ "classnotes": "", "final_exam": "Sunday, December 17, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88122\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88122/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987336993217468, + 0.9988294243812561, + 0.9988992214202881, + 0.997711181640625, + 0.998875081539154, + 0.9988821148872375, + 0.9989181756973267, + 0.9988784193992615, + 0.9983707070350647, + 0.9987987279891968, + 0.9987614154815674, + 0.9988840222358704, + 0.9988892674446106, + 0.998894989490509, + 0.9988988637924194, + 0.9989058971405029, + 0.9988641738891602, + 0.998920202255249, + 0.998924195766449, + 0.9989107847213745, + 0.99891197681427, + 0.9989122152328491, + 0.9964891672134399, + 0.9989381432533264, + 0.9989281296730042, + 0.998292863368988, + 0.9989233613014221, + 0.9986610412597656, + 0.9988368153572083, + 0.9989339709281921, + 0.9988908171653748, + 0.9988044500350952, + 0.9989073276519775, + 0.9988841414451599, + 0.9904956817626953, + 0.9986951947212219, + 0.9986358284950256, + 0.9988773465156555, + 0.9989238381385803, + 0.9989262223243713, + 0.9886372685432434, + 0.9988590478897095 + ], + "sentiment_counts": { + "POSITIVE": 41, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9761904761904762, + "NEGATIVE": 0.023809523809523808 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9761904761904762 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9867270588874817, + 0.9986535310745239, + 0.9988663196563721, + 0.9989116191864014, + 0.9988403916358948, + 0.997931957244873, + 0.9988431930541992, + 0.9988688826560974, + 0.9976928234100342, + 0.9987874627113342, + 0.9988565444946289, + 0.998822033405304, + 0.9986225366592407, + 0.998573899269104, + 0.9989251494407654, + 0.99814772605896, + 0.998877227306366, + 0.9985949397087097, + 0.9988124370574951, + 0.9989299178123474, + 0.9989124536514282, + 0.9983547329902649, + 0.9987427592277527, + 0.9989377856254578, + 0.9989261031150818, + 0.9989060163497925, + 0.9983075857162476, + 0.9988855719566345, + 0.998660683631897, + 0.9988848567008972, + 0.9989207983016968, + 0.9955605268478394, + 0.9989387392997742, + 0.995101809501648, + 0.9989135265350342, + 0.9989338517189026, + 0.9988781809806824, + 0.998703122138977, + 0.9944803714752197, + 0.9986145496368408, + 0.9929161071777344 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 38 + }, + "sentiment_distribution": { + "NEGATIVE": 0.07317073170731707, + "POSITIVE": 0.926829268292683 + }, + "sentiment_overall": [ + "POSITIVE", + 0.926829268292683 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998340368270874, + 0.9988769888877869, + 0.9989193677902222, + 0.9989342093467712, + 0.9989159107208252, + 0.9863590598106384, + 0.9989112615585327, + 0.9989171028137207, + 0.9987984895706177, + 0.9989234805107117, + 0.9989328980445862, + 0.9984555244445801, + 0.998916745185852, + 0.9927777647972107, + 0.9986757636070251, + 0.9989181756973267, + 0.9989314675331116, + 0.9989306330680847, + 0.9987879395484924, + 0.9989381432533264, + 0.9989344477653503, + 0.9988827109336853, + 0.9989132881164551, + 0.998869001865387, + 0.9988380074501038, + 0.998893678188324, + 0.9963608384132385, + 0.9988961219787598, + 0.9989044666290283, + 0.9979197382926941, + 0.998938262462616, + 0.998927652835846, + 0.9979901313781738, + 0.9980168342590332, + 0.998867392539978, + 0.9989216327667236, + 0.9989210367202759, + 0.9986213445663452, + 0.998927891254425, + 0.9988067150115967, + 0.9947983026504517, + 0.9988901019096375, + 0.9987568855285645, + 0.9988664388656616, + 0.9989355206489563, + 0.9989367127418518, + 0.9989306330680847, + 0.9995005130767822, + 0.9989087581634521, + 0.9915728569030762, + 0.9981217980384827, + 0.998865008354187 + ], + "sentiment_counts": { + "POSITIVE": 48, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.9230769230769231, + "NEGATIVE": 0.07692307692307693 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9230769230769231 + ] + }, + "final_label": "POSITIVE", + "final_count": 127, + "final_proportion": 0.9407407407407408, + "final_counts": { + "POSITIVE": 127, + "NEGATIVE": 8 + }, + "final_distribution": { + "POSITIVE": 0.9407407407407408, + "NEGATIVE": 0.05925925925925926 + } + } }, { "season_code": "202303", @@ -181976,7 +374500,7 @@ "13:30", "14:20", "WLH 211 - William L. Harkness Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -181999,7 +374523,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -182032,7 +374584,7 @@ "14:30", "15:20", "WLH 211 - William L. Harkness Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -182055,7 +374607,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -182088,7 +374668,7 @@ "15:30", "16:20", "WLH 205 - William L. Harkness Hall 205", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -182111,7 +374691,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -182144,7 +374752,7 @@ "16:30", "17:20", "WLH 203 - William L. Harkness Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -182167,7 +374775,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -182200,7 +374836,7 @@ "19:00", "19:50", "HQ 213 - Humanities Quadrangle 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -182223,7 +374859,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -182256,7 +374920,7 @@ "20:00", "20:50", "HQ 213 - Humanities Quadrangle 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -182279,7 +374943,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -182312,7 +375004,7 @@ "19:00", "19:50", "HQ 313 - Humanities Quadrangle 313", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -182335,7 +375027,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -182368,7 +375088,7 @@ "20:00", "20:50", "HQ 313 - Humanities Quadrangle 313", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -182391,7 +375111,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -182424,7 +375172,7 @@ "13:30", "14:20", "WLH 203 - William L. Harkness Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -182447,7 +375195,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -182480,7 +375256,7 @@ "14:30", "15:20", "WLH 114 - William L. Harkness Hall 114", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -182503,7 +375279,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -182536,7 +375340,7 @@ "13:30", "14:20", "LC 206 - Linsly-Chittenden Hall 206", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -182559,7 +375363,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -182592,7 +375424,7 @@ "14:30", "15:20", "LC 211 - Linsly-Chittenden Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -182615,7 +375447,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -182656,7 +375516,7 @@ "18:00", "20:00", "HQ L01 - Humanities Quadrangle L01", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -182664,7 +375524,7 @@ "9:25", "11:15", "HQ 109 - Humanities Quadrangle 109", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -182680,10 +375540,99 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89058\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89058/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988817572593689, + 0.9989174604415894, + 0.9986761212348938, + 0.9989038705825806 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9972802400588989, + 0.9986962676048279, + 0.9988734126091003 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989151954650879, + 0.9989027976989746, + 0.997117280960083, + 0.9988980293273926 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 0.9090909090909091, + "final_counts": { + "POSITIVE": 10, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + } + } }, { "season_code": "202303", @@ -182721,7 +375670,7 @@ "9:25", "11:15", "LC 207 - Linsly-Chittenden Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -182740,10 +375689,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89650\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89650/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -182784,7 +375761,7 @@ "19:00", "22:00", "HQ 109 - Humanities Quadrangle 109", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Tuesday": [ @@ -182792,7 +375769,7 @@ "13:30", "15:20", "", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -182808,10 +375785,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88283\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88283/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -182847,10 +375852,38 @@ "classnotes": "", "final_exam": "Monday, December 18, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89628\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89628/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -182888,7 +375921,7 @@ "13:30", "15:20", "HQ 307 - Humanities Quadrangle 307", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -182902,10 +375935,159 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89780\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89780/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9963589310646057, + 0.9907398223876953, + 0.9989112615585327, + 0.9988957643508911, + 0.998859167098999, + 0.9988798499107361, + 0.9988723397254944, + 0.9988818764686584, + 0.9988564252853394, + 0.9988780617713928, + 0.9987995624542236, + 0.9988930821418762, + 0.9988628625869751 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9230769230769231, + "NEGATIVE": 0.07692307692307693 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9230769230769231 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.8180915117263794, + 0.998852014541626, + 0.9988589286804199, + 0.9989041090011597, + 0.9989124536514282, + 0.9987824559211731, + 0.9989227652549744, + 0.9989159107208252, + 0.9988572597503662, + 0.9989244341850281, + 0.9989400506019592, + 0.9989078044891357 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985401630401611, + 0.9988999366760254, + 0.9985218644142151, + 0.9989270567893982, + 0.998883068561554, + 0.9988977909088135, + 0.9988570213317871, + 0.998898983001709, + 0.9989185333251953, + 0.9985694885253906, + 0.9988157749176025, + 0.9989281296730042, + 0.998884379863739, + 0.9989381432533264, + 0.9984610080718994, + 0.9989343285560608 + ], + "sentiment_counts": { + "POSITIVE": 15, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9375, + "NEGATIVE": 0.0625 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9375 + ] + }, + "final_label": "POSITIVE", + "final_count": 39, + "final_proportion": 0.9512195121951219, + "final_counts": { + "POSITIVE": 39, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9512195121951219, + "NEGATIVE": 0.04878048780487805 + } + } }, { "season_code": "202303", @@ -182945,7 +376127,7 @@ "14:30", "15:45", "LC 209 - Linsly-Chittenden Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -182953,7 +376135,7 @@ "14:30", "15:45", "LC 209 - Linsly-Chittenden Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -182971,10 +376153,113 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89343\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89343/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9974373579025269, + 0.9987890124320984, + 0.9988380074501038, + 0.9987541437149048, + 0.9989184141159058, + 0.9923685193061829 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9993056058883667, + 0.998877227306366, + 0.9989055395126343, + 0.9983024597167969, + 0.9989049434661865 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 4 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2, + "POSITIVE": 0.8 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.998906135559082, + 0.9827965497970581, + 0.9986029267311096, + 0.9988454580307007, + 0.9987548589706421, + 0.9988775849342346, + 0.9953162670135498 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 0.8888888888888888, + "final_counts": { + "POSITIVE": 16, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + } + } }, { "season_code": "202303", @@ -183015,7 +376300,7 @@ "13:30", "15:20", "HQ 317 - Humanities Quadrangle 317", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -183029,10 +376314,107 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90234\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90234/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984467625617981, + 0.9988627433776855, + 0.9987572431564331, + 0.9988536834716797, + 0.998889148235321, + 0.9987830519676208 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989288449287415, + 0.9893749952316284, + 0.9988841414451599, + 0.9984605312347412, + 0.9988671541213989 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988357424736023, + 0.9982391595840454, + 0.9988481998443604, + 0.9988767504692078, + 0.9964302182197571 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 16 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -183069,7 +376451,7 @@ "13:30", "15:20", "HQ C05 - Humanities Quadrangle C05", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -183083,10 +376465,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90545\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90545/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -183124,7 +376534,7 @@ "13:00", "14:15", "HQ C65 - Humanities Quadrangle C65", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -183132,7 +376542,7 @@ "13:00", "14:15", "HQ C65 - Humanities Quadrangle C65", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -183146,10 +376556,113 @@ "classnotes": "Instructor Permission Required: Please see Canvas for details", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90142\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90142/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989252686500549, + 0.9988903403282166, + 0.998865008354187, + 0.9988271594047546, + 0.998772919178009, + 0.9988202452659607, + 0.998783528804779 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989303946495056, + 0.9988800883293152, + 0.9989261031150818, + 0.9989292025566101, + 0.998884379863739, + 0.9989039897918701 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988114833831787, + 0.998908281326294, + 0.998916745185852, + 0.9989150762557983, + 0.9989336133003235, + 0.998783528804779 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 19 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -183188,7 +376701,7 @@ "13:30", "15:20", "BASSLB L73 - Bass Library L73", - "https:\/\/map.yale.edu\/?id=1910#!m\/564574" + "https://map.yale.edu/?id=1910#!m/564574" ] ] }, @@ -183204,10 +376717,105 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88731\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88731/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9979153275489807, + 0.9910615086555481, + 0.9988904595375061, + 0.9984556436538696, + 0.998033344745636 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9975212216377258, + 0.9995012283325195, + 0.9995098114013672, + 0.8628511428833008 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9849085807800293, + 0.9988566637039185, + 0.9988561868667603, + 0.9938501119613647, + 0.9988143444061279 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.4, + "POSITIVE": 0.6 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 0.7142857142857143, + "final_counts": { + "POSITIVE": 10, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.7142857142857143, + "NEGATIVE": 0.2857142857142857 + } + } }, { "season_code": "202303", @@ -183245,7 +376853,7 @@ "13:30", "15:20", "RKZ 08 - Rosenkranz Hall 08", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -183259,10 +376867,93 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92675\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92675/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988768696784973, + 0.998807430267334, + 0.9988810420036316 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998778760433197, + 0.9989184141159058 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988952875137329, + 0.997117280960083, + 0.9988490343093872, + 0.9981922507286072 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 9 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -183301,7 +376992,7 @@ "9:25", "11:15", "HQ 123 - Humanities Quadrangle 123", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -183315,10 +377006,97 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89311\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89311/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989074468612671, + 0.9988844990730286, + 0.9987744688987732 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988852143287659, + 0.9986816048622131, + 0.9988956451416016 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989224672317505, + 0.9987837672233582, + 0.9988345503807068, + 0.9989204406738281, + 0.9988905787467957 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 11 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -183356,7 +377134,7 @@ "13:30", "15:20", "WLH 112 - William L. Harkness Hall 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -183365,7 +377143,7 @@ "Hu" ], "flags": [ - "YC English: 18th\/19th Century ", + "YC English: 18th/19th Century ", "YC English: Junior Seminar" ], "regnotes": "", @@ -183373,17 +377151,114 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89498\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89498/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "", - "description": "A close reading (in English) of Marcel Proust\u2019s masterpiece, Remembrance of Things Past, with emphasis upon major themes: time and memory, desire and jealousy, social life and artistic experience, sexual identity and personal authenticity, class and nation. Portions from Swann\u2019s Way, Within a Budding Grove, Cities of the Plain, Time Regained considered from biographical, psychological\/psychoanalytic, gender, sociological, historical, and philosophical perspectives.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998744010925293, + 0.9987805485725403, + 0.9987375140190125, + 0.9988963603973389, + 0.9988946318626404 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986785054206848, + 0.9933604598045349, + 0.9989393353462219, + 0.9988259673118591, + 0.99893718957901 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988201260566711, + 0.9978093504905701, + 0.9988658428192139, + 0.9988566637039185, + 0.9988295435905457, + 0.9989174604415894 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 16 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } + }, + { + "season_code": "202303", + "requirements": "", + "description": "A close reading (in English) of Marcel Proust\u2019s masterpiece, Remembrance of Things Past, with emphasis upon major themes: time and memory, desire and jealousy, social life and artistic experience, sexual identity and personal authenticity, class and nation. Portions from Swann\u2019s Way, Within a Budding Grove, Cities of the Plain, Time Regained considered from biographical, psychological/psychoanalytic, gender, sociological, historical, and philosophical perspectives.", "short_title": "Proust Interpretations: Readi...", - "title": "Proust Interpretations: Reading Remembrance of Things Past<\/i>", + "title": "Proust Interpretations: Reading Remembrance of Things Past", "school": "YC", "credits": 1.0, "extra_info": "CANCELLED", @@ -183421,7 +377296,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -183462,7 +377365,7 @@ "11:35", "12:50", "LC 213 - Linsly-Chittenden Hall 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -183470,7 +377373,7 @@ "11:35", "12:50", "LC 213 - Linsly-Chittenden Hall 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -183481,7 +377384,7 @@ "Hu" ], "flags": [ - "YC English: 18th\/19th Century ", + "YC English: 18th/19th Century ", "YC English: Junior Seminar" ], "regnotes": "", @@ -183489,10 +377392,103 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89490\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89490/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988678693771362, + 0.9988947510719299, + 0.9988542795181274, + 0.9988831877708435 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989194869995117, + 0.9989294409751892, + 0.9984079003334045, + 0.9988424181938171, + 0.9989364743232727 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989339709281921, + 0.9988778233528137, + 0.9989098310470581, + 0.9989124536514282, + 0.9989086389541626 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 14 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -183537,7 +377533,7 @@ "10:30", "11:20", "SLB AUD - Sterling Law Buildings AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/531532" + "https://map.yale.edu/?id=1910#!m/531532" ] ], "Thursday": [ @@ -183545,7 +377541,7 @@ "10:30", "11:20", "SLB AUD - Sterling Law Buildings AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/531532" + "https://map.yale.edu/?id=1910#!m/531532" ] ] }, @@ -183567,10 +377563,133 @@ "classnotes": "", "final_exam": "Wednesday, December 20, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88386\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88386/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985223412513733, + 0.9989092350006104, + 0.9987646341323853, + 0.9987454414367676, + 0.9985785484313965, + 0.9848566651344299, + 0.9987179040908813, + 0.9988694787025452, + 0.9988390803337097 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988865256309509, + 0.9981716871261597, + 0.9995027780532837, + 0.9989137649536133, + 0.9960718154907227, + 0.997552216053009, + 0.9951534271240234, + 0.9966200590133667, + 0.9995075464248657 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988435506820679, + 0.9930912256240845, + 0.9987755417823792, + 0.9971940517425537, + 0.9887712597846985, + 0.9986974596977234, + 0.9988498687744141, + 0.9989063739776611, + 0.9982147216796875, + 0.9985767602920532 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.6, + "NEGATIVE": 0.4 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 0.7142857142857143, + "final_counts": { + "POSITIVE": 20, + "NEGATIVE": 8 + }, + "final_distribution": { + "POSITIVE": 0.7142857142857143, + "NEGATIVE": 0.2857142857142857 + } + } }, { "season_code": "202303", @@ -183603,7 +377722,7 @@ "16:00", "16:50", "WTS A39 - Watson Center 60 Sachem Street A39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -183627,7 +377746,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -183660,7 +377807,7 @@ "17:00", "17:50", "WTS A39 - Watson Center 60 Sachem Street A39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -183684,7 +377831,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -183717,7 +377892,7 @@ "15:30", "16:20", "WTS B39 - Watson Center 60 Sachem Street B39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -183741,7 +377916,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -183774,7 +377977,7 @@ "16:30", "17:20", "WTS B39 - Watson Center 60 Sachem Street B39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -183798,7 +378001,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -183831,7 +378062,7 @@ "9:25", "10:15", "WLH 210 - William L. Harkness Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -183855,7 +378086,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -183888,7 +378147,7 @@ "11:35", "12:25", "WLH 210 - William L. Harkness Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -183912,7 +378171,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -183949,7 +378236,7 @@ "11:35", "12:50", "HQ C05 - Humanities Quadrangle C05", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -183957,7 +378244,7 @@ "11:35", "12:50", "HQ C05 - Humanities Quadrangle C05", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -183971,10 +378258,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90546\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90546/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -184013,7 +378328,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -184055,7 +378398,7 @@ "15:30", "17:20", "WALL81 301 - 81 Wall Street 301", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -184072,10 +378415,97 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90076\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90076/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998767614364624, + 0.9986365437507629, + 0.9987506866455078, + 0.9986162185668945 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988875985145569, + 0.9985893368721008, + 0.998904824256897 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988605976104736, + 0.997117280960083, + 0.9989264607429504, + 0.9977026581764221 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 11 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -184111,10 +378541,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90587\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90587/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -184157,7 +378615,7 @@ "13:30", "15:20", "WLH 202 - William L. Harkness Hall 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -184175,10 +378633,99 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88938\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88938/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998917818069458, + 0.9989336133003235, + 0.9989350438117981 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9948537945747375, + 0.9993378520011902, + 0.9989354014396667, + 0.9986166954040527 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988767504692078, + 0.998809814453125, + 0.9989318251609802, + 0.9995081424713135 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 0.8181818181818182, + "final_counts": { + "POSITIVE": 9, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8181818181818182, + "NEGATIVE": 0.18181818181818182 + } + } }, { "season_code": "202303", @@ -184219,7 +378766,7 @@ "13:30", "15:20", "HQ C03 - Humanities Quadrangle C03", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -184238,10 +378785,111 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89781\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89781/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989038705825806, + 0.998881995677948, + 0.9989314675331116, + 0.9988376498222351, + 0.9989163875579834, + 0.9989125728607178 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989294409751892, + 0.9988766312599182, + 0.9989217519760132, + 0.9988623857498169, + 0.9988903403282166, + 0.9989312291145325 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987277388572693, + 0.9989243149757385, + 0.998910665512085, + 0.9985809326171875, + 0.9989239573478699, + 0.9988672733306885 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 18 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -184279,7 +378927,7 @@ "13:30", "15:20", "WLH 014 - William L. Harkness Hall 014", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -184295,10 +378943,111 @@ "classnotes": "This course requires instructor permission. Please state your motivation to take this course and relevant previous coursework. ", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90313\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90313/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989261031150818, + 0.9988741278648376, + 0.9989381432533264, + 0.9988007545471191, + 0.9989350438117981, + 0.9956515431404114 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998932421207428, + 0.9988850951194763, + 0.9989193677902222, + 0.9988700747489929, + 0.9988310933113098, + 0.9980677962303162 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989180564880371, + 0.9985949397087097, + 0.9989128112792969, + 0.9989137649536133, + 0.9989184141159058, + 0.9981386661529541 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 18 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -184341,7 +379090,7 @@ "19:00", "22:00", "HQ L02 - Humanities Quadrangle L02", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -184349,7 +379098,7 @@ "19:00", "20:50", "PH 207 - Phelps Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -184365,10 +379114,91 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90200\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90200/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988154172897339, + 0.998854398727417 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9859976768493652, + 0.9980385899543762, + 0.9989142417907715 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9908983111381531, + 0.9986674785614014 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 1 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "final_label": "POSITIVE", + "final_count": 5, + "final_proportion": 0.7142857142857143, + "final_counts": { + "POSITIVE": 5, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.7142857142857143, + "NEGATIVE": 0.2857142857142857 + } + } }, { "season_code": "202303", @@ -184405,7 +379235,7 @@ "9:25", "11:15", "HQ 209 - Humanities Quadrangle 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -184421,10 +379251,81 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92392\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92392/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986993074417114 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989039897918701 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989191293716431 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 3, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 3 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -184465,7 +379366,7 @@ "13:30", "15:20", "HQ 317 - Humanities Quadrangle 317", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -184492,10 +379393,87 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88105\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88105/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987886548042297, + 0.9987472295761108 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989280104637146, + 0.9989338517189026 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998802900314331, + 0.9989396929740906 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 6 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -184535,10 +379513,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92683\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92683/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -184580,7 +379586,7 @@ "13:30", "15:20", "LC 319 - Linsly-Chittenden Hall 319", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -184594,10 +379600,91 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88465\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88465/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986985921859741, + 0.9985851049423218, + 0.9989144802093506 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989105463027954, + 0.9987713694572449, + 0.998869001865387 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989247918128967, + 0.9989323019981384 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 8, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 8 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -184637,10 +379724,95 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90563\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90563/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998815655708313, + 0.9987806677818298, + 0.9988008737564087 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9925905466079712, + 0.9986295700073242, + 0.9989064931869507 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9949256181716919, + 0.9985358715057373, + 0.9989075660705566 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 0.7777777777777778, + "final_counts": { + "POSITIVE": 7, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.7777777777777778, + "NEGATIVE": 0.2222222222222222 + } + } }, { "season_code": "202303", @@ -184677,12 +379849,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "The development of the immune system. Cellular and molecular mechanisms of immune recognition. Effector responses against pathogens. Immunologic memory and vaccines. Human diseases including allergy, autoimmunity, cancer, immunodeficiency, HIV\/AIDS.", + "description": "The development of the immune system. Cellular and molecular mechanisms of immune recognition. Effector responses against pathogens. Immunologic memory and vaccines. Human diseases including allergy, autoimmunity, cancer, immunodeficiency, HIV/AIDS.", "short_title": "Biology of the Immune System", "title": "Biology of the Immune System", "school": "GS", @@ -184774,7 +379974,7 @@ "9:25", "10:15", "WLH 119 - William L. Harkness Hall 119", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -184782,7 +379982,7 @@ "9:25", "10:15", "WLH 119 - William L. Harkness Hall 119", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Friday": [ @@ -184790,7 +379990,7 @@ "9:25", "10:15", "WLH 119 - William L. Harkness Hall 119", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -184804,15 +380004,154 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90345\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90345/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "", - "description": "Introduction to the research interests of the faculty. Required of all first-year Immunology\/BBS students. Pass\/Fail.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989323019981384, + 0.99882572889328, + 0.9862096905708313, + 0.9987843632698059, + 0.998793363571167, + 0.9988719820976257, + 0.9989079236984253, + 0.9986584186553955, + 0.9989327788352966, + 0.9624254703521729, + 0.9966232776641846, + 0.9984096884727478 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9166666666666666 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989351630210876, + 0.9988769888877869, + 0.998191773891449, + 0.998806357383728, + 0.997580885887146, + 0.9914201498031616, + 0.9995098114013672, + 0.9959096908569336, + 0.998777449131012, + 0.9989198446273804, + 0.9985442161560059, + 0.9987282156944275, + 0.9942849278450012 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.7692307692307693, + "NEGATIVE": 0.23076923076923078 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7692307692307693 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989050626754761, + 0.9988560676574707, + 0.9980132579803467, + 0.9989252686500549, + 0.9984480142593384, + 0.9990231990814209, + 0.9994864463806152, + 0.9939033389091492, + 0.998900294303894, + 0.9989205598831177, + 0.9986580610275269 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8181818181818182, + "NEGATIVE": 0.18181818181818182 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8181818181818182 + ] + }, + "final_label": "POSITIVE", + "final_count": 30, + "final_proportion": 0.8333333333333334, + "final_counts": { + "POSITIVE": 30, + "NEGATIVE": 6 + }, + "final_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + } + } + }, + { + "season_code": "202303", + "requirements": "", + "description": "Introduction to the research interests of the faculty. Required of all first-year Immunology/BBS students. Pass/Fail.", "short_title": "Introduction to Research: Fac...", "title": "Introduction to Research: Faculty Research Presentations", "school": "GS", @@ -184847,15 +380186,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90333\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90333/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "Intensive experience in the design and execution of experiments in immunology or other areas of biology. Students design a focused research project in consultation with a faculty mentor and execute the designed experiments in the mentor\u2019s laboratory. Students are expected to read relevant background papers from the literature, design and perform experiments, interpret the resulting data, and propose follow-up experiments. Students are also expected to attend the mentor\u2019s weekly lab meeting(s) as well as weekly Immunobiology departmental seminars and Research in Progress seminars. The course concludes with the student giving a brief presentation of the work performed at Rotation Talks, attended by other first-year immunology-track graduate students. Evaluation is by the mentor; students also evaluate the rotation experience. Students must turn in a prioritized list of four possible mentors to the office of the DGS at least one week prior to the beginning of the course. Mentors are assigned by the DGS. Graded Satisfactory\/Unsatisfactory. Minimum of 20 hours\/week. Required of all first-year Immunology\/BBS students.", + "description": "Intensive experience in the design and execution of experiments in immunology or other areas of biology. Students design a focused research project in consultation with a faculty mentor and execute the designed experiments in the mentor\u2019s laboratory. Students are expected to read relevant background papers from the literature, design and perform experiments, interpret the resulting data, and propose follow-up experiments. Students are also expected to attend the mentor\u2019s weekly lab meeting(s) as well as weekly Immunobiology departmental seminars and Research in Progress seminars. The course concludes with the student giving a brief presentation of the work performed at Rotation Talks, attended by other first-year immunology-track graduate students. Evaluation is by the mentor; students also evaluate the rotation experience. Students must turn in a prioritized list of four possible mentors to the office of the DGS at least one week prior to the beginning of the course. Mentors are assigned by the DGS. Graded Satisfactory/Unsatisfactory. Minimum of 20 hours/week. Required of all first-year Immunology/BBS students.", "short_title": "Research Rotation 1", "title": "Research Rotation 1", "school": "GS", @@ -184890,15 +380257,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90334\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90334/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "Intensive experience in the design and execution of experiments in immunology or other areas of biology. Students design a focused research project in consultation with a faculty mentor and execute the designed experiments in the mentor\u2019s laboratory. Students are expected to read relevant background papers from the literature, design and perform experiments, interpret the resulting data, and propose follow-up experiments. Students are also expected to attend the mentor\u2019s weekly lab meeting(s) as well as weekly Immunobiology departmental seminars and Research in Progress seminars. The course concludes with the student giving a brief presentation of the work performed at Rotation Talks, attended by other first-year immunology-track graduate students. Evaluation is by the mentor; students also evaluate the rotation experience. Students must turn in a prioritized list of four possible mentors to Barbara Cotton in the office of the director of graduate studies at least one week prior to the beginning of the course. Mentors are assigned by the DGS. Graded Pass\/Fail. 1 course credit; minimum of 20 hours\/week. Required of all first-year Immunology\/BBS students.", + "description": "Intensive experience in the design and execution of experiments in immunology or other areas of biology. Students design a focused research project in consultation with a faculty mentor and execute the designed experiments in the mentor\u2019s laboratory. Students are expected to read relevant background papers from the literature, design and perform experiments, interpret the resulting data, and propose follow-up experiments. Students are also expected to attend the mentor\u2019s weekly lab meeting(s) as well as weekly Immunobiology departmental seminars and Research in Progress seminars. The course concludes with the student giving a brief presentation of the work performed at Rotation Talks, attended by other first-year immunology-track graduate students. Evaluation is by the mentor; students also evaluate the rotation experience. Students must turn in a prioritized list of four possible mentors to Barbara Cotton in the office of the director of graduate studies at least one week prior to the beginning of the course. Mentors are assigned by the DGS. Graded Pass/Fail. 1 course credit; minimum of 20 hours/week. Required of all first-year Immunology/BBS students.", "short_title": "Research Rotation 2", "title": "Research Rotation 2", "school": "GS", @@ -184927,10 +380322,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90335\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90335/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -184970,10 +380393,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88812\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88812/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -185013,15 +380464,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88813\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88813/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "Consent of instructor required.", - "description": "An independent study course for first-year students in the Investigative Medicine program. Topics are chosen by the student, and reading lists are provided by faculty for weekly meetings to discuss articles. Four sessions are required; dates\/times by arrangement.", + "description": "An independent study course for first-year students in the Investigative Medicine program. Topics are chosen by the student, and reading lists are provided by faculty for weekly meetings to discuss articles. Four sessions are required; dates/times by arrangement.", "short_title": "Directed Reading in Investiga...", "title": "Directed Reading in Investigative Medicine", "school": "GS", @@ -185059,12 +380538,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "The course provides an introduction to statistical concepts and techniques commonly encountered in medical research. Previous course work in statistics or experience with statistical packages is not a requirement. Topics to be discussed include study design, probability, comparing sample means and proportions, survival analysis, and sample size\/power calculations. The computer lab incorporates lecture content into practical application by introducing the statistical software package SPSS to describe and analyze data.", + "description": "The course provides an introduction to statistical concepts and techniques commonly encountered in medical research. Previous course work in statistics or experience with statistical packages is not a requirement. Topics to be discussed include study design, probability, comparing sample means and proportions, survival analysis, and sample size/power calculations. The computer lab incorporates lecture content into practical application by introducing the statistical software package SPSS to describe and analyze data.", "short_title": "Introduction to Biostatistics...", "title": "Introduction to Biostatistics in Clinical Investigation", "school": "GS", @@ -185102,10 +380609,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88815\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88815/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -185148,7 +380683,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -185191,7 +380754,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -185234,7 +380825,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -185277,7 +380896,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -185320,7 +380967,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -185357,7 +381032,7 @@ "9:25", "10:15", "WTS A48 - Watson Center 60 Sachem Street A48", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Tuesday": [ @@ -185365,7 +381040,7 @@ "9:25", "10:15", "WTS A48 - Watson Center 60 Sachem Street A48", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -185373,7 +381048,7 @@ "9:25", "10:15", "WTS A48 - Watson Center 60 Sachem Street A48", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -185381,7 +381056,7 @@ "9:25", "10:15", "WTS A48 - Watson Center 60 Sachem Street A48", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Friday": [ @@ -185389,7 +381064,7 @@ "9:25", "10:15", "WTS A48 - Watson Center 60 Sachem Street A48", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -185403,10 +381078,89 @@ "classnotes": "", "final_exam": "Friday, December 15, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88503\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88503/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989124536514282, + 0.9987314343452454 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989296793937683, + 0.9989239573478699 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989054203033447, + 0.9988490343093872, + 0.9978912472724915 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 7 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -185443,7 +381197,7 @@ "10:30", "11:20", "WTS A48 - Watson Center 60 Sachem Street A48", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Tuesday": [ @@ -185451,7 +381205,7 @@ "10:30", "11:20", "WTS A48 - Watson Center 60 Sachem Street A48", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -185459,7 +381213,7 @@ "10:30", "11:20", "WTS A48 - Watson Center 60 Sachem Street A48", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -185467,7 +381221,7 @@ "10:30", "11:20", "WTS A48 - Watson Center 60 Sachem Street A48", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Friday": [ @@ -185475,7 +381229,7 @@ "10:30", "11:20", "WTS A48 - Watson Center 60 Sachem Street A48", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -185489,10 +381243,107 @@ "classnotes": "", "final_exam": "Friday, December 15, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88508\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88508/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9976376295089722, + 0.9987560510635376, + 0.9988100528717041, + 0.9988881945610046, + 0.9959470629692078 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988760352134705, + 0.9987561702728271, + 0.9987277388572693, + 0.9956595301628113, + 0.9988864064216614 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988816380500793, + 0.9988768696784973, + 0.9986464381217957, + 0.997117280960083, + 0.998869001865387, + 0.9988452196121216 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 16 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -185529,7 +381380,7 @@ "9:25", "10:15", "WALL81 401 - 81 Wall Street 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ], "Tuesday": [ @@ -185537,7 +381388,7 @@ "9:25", "10:15", "WALL81 401 - 81 Wall Street 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ], "Wednesday": [ @@ -185545,7 +381396,7 @@ "9:25", "10:15", "WALL81 401 - 81 Wall Street 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ], "Thursday": [ @@ -185553,7 +381404,7 @@ "9:25", "10:15", "WALL81 401 - 81 Wall Street 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ], "Friday": [ @@ -185561,7 +381412,7 @@ "9:25", "10:15", "WALL81 401 - 81 Wall Street 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -185578,7 +381429,96 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984753727912903, + 0.9985276460647583, + 0.9989063739776611, + 0.998868465423584 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9945282340049744, + 0.9988203644752502, + 0.9987565279006958, + 0.9989147186279297 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.25, + "POSITIVE": 0.75 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988460540771484, + 0.9984046816825867, + 0.998907208442688 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 0.9090909090909091, + "final_counts": { + "POSITIVE": 10, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + } + } }, { "season_code": "202303", @@ -185615,7 +381555,7 @@ "10:30", "11:20", "WALL81 401 - 81 Wall Street 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ], "Tuesday": [ @@ -185623,7 +381563,7 @@ "10:30", "11:20", "WALL81 401 - 81 Wall Street 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ], "Wednesday": [ @@ -185631,7 +381571,7 @@ "10:30", "11:20", "WALL81 401 - 81 Wall Street 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ], "Thursday": [ @@ -185639,7 +381579,7 @@ "10:30", "11:20", "WALL81 401 - 81 Wall Street 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ], "Friday": [ @@ -185647,7 +381587,7 @@ "10:30", "11:20", "WALL81 401 - 81 Wall Street 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -185664,7 +381604,98 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988197684288025, + 0.9989099502563477, + 0.9988369345664978, + 0.9974220991134644 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989031553268433, + 0.9989327788352966, + 0.9988744854927063, + 0.9988085031509399 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989249110221863, + 0.9985961318016052, + 0.9989367127418518, + 0.9988067150115967, + 0.997117280960083 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 13 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -185709,7 +381740,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -185754,7 +381813,86 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989111423492432, + 0.9987793564796448, + 0.9982938170433044 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989216327667236, + 0.9988971948623657 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9966656565666199, + 0.9988449811935425 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 7 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -185799,12 +381937,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "Prerequisites: advanced Indonesian and permission of the instructor.", - "description": "For students with advanced Indonesian language skills preparing for academic performance and\/or research purposes.", + "description": "For students with advanced Indonesian language skills preparing for academic performance and/or research purposes.", "short_title": "Readings in Indonesian", "title": "Readings in Indonesian", "school": "GS", @@ -185842,12 +382008,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "Prerequisites: advanced Indonesian and permission of the instructor.", - "description": "For students with advanced Indonesian language skills preparing for academic performance and\/or research purposes.", + "description": "For students with advanced Indonesian language skills preparing for academic performance and/or research purposes.", "short_title": "Readings in Indonesian", "title": "Readings in Indonesian", "school": "GS", @@ -185885,12 +382079,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "An integrative overview of the structure and function of the human brain as it pertains to major neurological and psychiatric disorders. Neuroanatomy, neurophysiology, and clinical correlations are interrelated to provide essential background in the neurosciences. Lectures in neurocytology and neuroanatomy survey neuronal organization in the human brain, with emphasis on long fiber tracts related to clinical neurology. Lectures in neurophysiology cover various aspects of neural function at the cellular and systems levels, with a strong emphasis on the mammalian nervous system. Clinical correlations consist of sessions applying basic science principles to understanding pathophysiology in the context of patients. Seven three-hour laboratory sessions are coordinated with lectures throughout the course to provide an understanding of the structural basis of function and disease. Case-based conference sections provide an opportunity to integrate and apply the information learned about the structure and function of the nervous system in the rest of the course to solving a focused clinical problem in a journal club format. Variable class schedule; contact course instructors. This course is offered to graduate and M.D.\/Ph.D. students only and cannot be audited.", + "description": "An integrative overview of the structure and function of the human brain as it pertains to major neurological and psychiatric disorders. Neuroanatomy, neurophysiology, and clinical correlations are interrelated to provide essential background in the neurosciences. Lectures in neurocytology and neuroanatomy survey neuronal organization in the human brain, with emphasis on long fiber tracts related to clinical neurology. Lectures in neurophysiology cover various aspects of neural function at the cellular and systems levels, with a strong emphasis on the mammalian nervous system. Clinical correlations consist of sessions applying basic science principles to understanding pathophysiology in the context of patients. Seven three-hour laboratory sessions are coordinated with lectures throughout the course to provide an understanding of the structural basis of function and disease. Case-based conference sections provide an opportunity to integrate and apply the information learned about the structure and function of the nervous system in the rest of the course to solving a focused clinical problem in a journal club format. Variable class schedule; contact course instructors. This course is offered to graduate and M.D./Ph.D. students only and cannot be audited.", "short_title": "Structural and Functional Org...", "title": "Structural and Functional Organization of the Human Nervous System", "school": "GS", @@ -185928,12 +382150,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "Required of all first-year Neuroscience track graduate students. Rotation period is one term. Grading is Satisfactory\/Unsatisfactory.", + "description": "Required of all first-year Neuroscience track graduate students. Rotation period is one term. Grading is Satisfactory/Unsatisfactory.", "short_title": "Lab Rotation for First-Year S...", "title": "Lab Rotation for First-Year Students", "school": "GS", @@ -185971,12 +382221,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "Required of all second-year INP graduate students. Grading is Satisfactory\/Unsatisfactory.", + "description": "Required of all second-year INP graduate students. Grading is Satisfactory/Unsatisfactory.", "short_title": "Second-Year Thesis Research", "title": "Second-Year Thesis Research", "school": "GS", @@ -186014,7 +382292,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -186051,7 +382357,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -186088,7 +382422,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -186130,7 +382492,7 @@ "14:30", "15:45", "WTS A51 - Watson Center 60 Sachem Street A51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -186138,7 +382500,7 @@ "14:30", "15:45", "WTS A51 - Watson Center 60 Sachem Street A51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -186150,10 +382512,133 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88172\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88172/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9980304837226868, + 0.9986047148704529, + 0.9162562489509583, + 0.9986104965209961, + 0.9976143836975098, + 0.998491644859314, + 0.9988740086555481, + 0.9988579750061035, + 0.9949612617492676 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989176988601685, + 0.9995079040527344, + 0.9989275336265564, + 0.9894932508468628, + 0.9986346364021301, + 0.998930037021637, + 0.9988192915916443, + 0.9995110034942627 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989182949066162, + 0.999414324760437, + 0.9994677901268005, + 0.9995068311691284, + 0.9987934827804565, + 0.9987847208976746, + 0.9989137649536133, + 0.9989270567893982, + 0.998902440071106, + 0.9983886480331421, + 0.9988535642623901 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.6363636363636364, + "NEGATIVE": 0.36363636363636365 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6363636363636364 + ] + }, + "final_label": "POSITIVE", + "final_count": 22, + "final_proportion": 0.7857142857142857, + "final_counts": { + "POSITIVE": 22, + "NEGATIVE": 6 + }, + "final_distribution": { + "POSITIVE": 0.7857142857142857, + "NEGATIVE": 0.21428571428571427 + } + } }, { "season_code": "202303", @@ -186194,7 +382679,7 @@ "9:30", "11:00", "SHM I116 - Sterling Hall of Medicine I116", - "https:\/\/map.yale.edu\/?id=1910#!m\/559929" + "https://map.yale.edu/?id=1910#!m/559929" ] ], "Thursday": [ @@ -186202,7 +382687,7 @@ "9:30", "11:00", "SHM I116 - Sterling Hall of Medicine I116", - "https:\/\/map.yale.edu\/?id=1910#!m\/559929" + "https://map.yale.edu/?id=1910#!m/559929" ] ] }, @@ -186214,10 +382699,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92342\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92342/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -186266,12 +382779,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "A comprehensive overview of cellular and molecular concepts in neuroscience. Each exam (of three) covers one-third of the course (cell biology, electrophysiology, and synaptic function) and is take-home, with short answer\/essay questions.", + "description": "A comprehensive overview of cellular and molecular concepts in neuroscience. Each exam (of three) covers one-third of the course (cell biology, electrophysiology, and synaptic function) and is take-home, with short answer/essay questions.", "short_title": "Foundations of Cellular and M...", "title": "Foundations of Cellular and Molecular Neurobiology", "school": "GS", @@ -186312,7 +382853,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -186355,7 +382924,7 @@ "11:35", "12:25", "WTS A53 - Watson Center 60 Sachem Street A53", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -186363,7 +382932,7 @@ "11:35", "12:25", "WTS A53 - Watson Center 60 Sachem Street A53", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Friday": [ @@ -186371,7 +382940,7 @@ "11:35", "12:25", "WTS A53 - Watson Center 60 Sachem Street A53", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -186383,10 +382952,163 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89358\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89358/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988732933998108, + 0.9987448453903198, + 0.9980521202087402, + 0.9988383650779724, + 0.9987984895706177, + 0.9943441152572632, + 0.9983344674110413, + 0.9987303614616394, + 0.9994884729385376 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9955495595932007, + 0.9994706511497498, + 0.998485267162323, + 0.9918396472930908, + 0.9857528805732727, + 0.999496340751648, + 0.9988102912902832, + 0.9973223805427551, + 0.9983134269714355, + 0.9863342642784119, + 0.9894793629646301, + 0.9994966983795166, + 0.9870967864990234, + 0.9985388517379761, + 0.9981233477592468, + 0.9979408383369446, + 0.9994723200798035 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 9 + }, + "sentiment_distribution": { + "POSITIVE": 0.47058823529411764, + "NEGATIVE": 0.5294117647058824 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9986711740493774, + 0.9988766312599182, + 0.9948697090148926, + 0.9948377013206482, + 0.9987778067588806, + 0.999508261680603, + 0.9994785189628601, + 0.9988413453102112, + 0.9982150793075562, + 0.9994805455207825, + 0.9921711683273315, + 0.9968649744987488, + 0.9994605183601379, + 0.996715784072876, + 0.9989230036735535, + 0.9988738894462585, + 0.9994912147521973 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 9 + }, + "sentiment_distribution": { + "POSITIVE": 0.47058823529411764, + "NEGATIVE": 0.5294117647058824 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "final_label": "POSITIVE", + "final_count": 24, + "final_proportion": 0.5581395348837209, + "final_counts": { + "POSITIVE": 24, + "NEGATIVE": 19 + }, + "final_distribution": { + "POSITIVE": 0.5581395348837209, + "NEGATIVE": 0.4418604651162791 + } + } }, { "season_code": "202303", @@ -186424,7 +383146,7 @@ "9:00", "10:15", "HQ C15 - Humanities Quadrangle C15", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -186432,7 +383154,7 @@ "9:00", "10:15", "HQ C15 - Humanities Quadrangle C15", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Friday": [ @@ -186440,7 +383162,7 @@ "13:00", "16:00", "LC 101 - Linsly-Chittenden Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -186456,10 +383178,95 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89767\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89767/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986675977706909, + 0.9988318085670471, + 0.9989344477653503 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9896343946456909, + 0.9985063672065735, + 0.9115263819694519 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9959161877632141, + 0.99814772605896, + 0.9983722567558289 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 0.7777777777777778, + "final_counts": { + "POSITIVE": 7, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.7777777777777778, + "NEGATIVE": 0.2222222222222222 + } + } }, { "season_code": "202303", @@ -186497,7 +383304,7 @@ "16:00", "17:15", "HQ C07 - Humanities Quadrangle C07", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -186505,7 +383312,7 @@ "16:00", "17:15", "HQ C07 - Humanities Quadrangle C07", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Friday": [ @@ -186513,7 +383320,7 @@ "13:00", "16:00", "LC 101 - Linsly-Chittenden Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -186529,10 +383336,123 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90616\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90616/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989246726036072, + 0.9962335228919983, + 0.9988872408866882, + 0.9989070892333984, + 0.998167872428894, + 0.9988753199577332, + 0.9987077713012695 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988293051719666, + 0.993525505065918, + 0.9900222420692444, + 0.9989116191864014, + 0.9983357787132263, + 0.9988400340080261, + 0.9988987445831299, + 0.9979932308197021 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9873408675193787, + 0.9989326596260071, + 0.9989327788352966, + 0.9985975623130798, + 0.9988211989402771, + 0.998918890953064, + 0.9989345669746399, + 0.998770534992218 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 21, + "final_proportion": 0.9130434782608695, + "final_counts": { + "POSITIVE": 21, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9130434782608695, + "NEGATIVE": 0.08695652173913043 + } + } }, { "season_code": "202303", @@ -186569,7 +383489,7 @@ "9:25", "10:15", "DL 316 - Dunham Laboratory 316", - "https:\/\/map.yale.edu\/?id=1910#!m\/560005" + "https://map.yale.edu/?id=1910#!m/560005" ] ], "Tuesday": [ @@ -186577,7 +383497,7 @@ "9:25", "10:15", "DL 316 - Dunham Laboratory 316", - "https:\/\/map.yale.edu\/?id=1910#!m\/560005" + "https://map.yale.edu/?id=1910#!m/560005" ] ], "Wednesday": [ @@ -186585,7 +383505,7 @@ "9:25", "10:15", "DL 316 - Dunham Laboratory 316", - "https:\/\/map.yale.edu\/?id=1910#!m\/560005" + "https://map.yale.edu/?id=1910#!m/560005" ] ], "Thursday": [ @@ -186593,7 +383513,7 @@ "9:25", "10:15", "DL 316 - Dunham Laboratory 316", - "https:\/\/map.yale.edu\/?id=1910#!m\/560005" + "https://map.yale.edu/?id=1910#!m/560005" ] ], "Friday": [ @@ -186601,7 +383521,7 @@ "9:25", "10:15", "DL 316 - Dunham Laboratory 316", - "https:\/\/map.yale.edu\/?id=1910#!m\/560005" + "https://map.yale.edu/?id=1910#!m/560005" ] ] }, @@ -186617,10 +383537,107 @@ "classnotes": "", "final_exam": "Friday, December 15, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88054\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88054/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987737536430359, + 0.9984616041183472, + 0.9929660558700562, + 0.9988422989845276, + 0.9989240765571594 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989042282104492, + 0.9988967180252075, + 0.9960541725158691, + 0.9977147579193115, + 0.9917824268341064 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989266991615295, + 0.9989079236984253, + 0.9991546869277954, + 0.9988846182823181, + 0.9989283680915833 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 0.9333333333333333, + "final_counts": { + "POSITIVE": 14, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9333333333333333, + "NEGATIVE": 0.06666666666666667 + } + } }, { "season_code": "202303", @@ -186657,7 +383674,7 @@ "9:25", "10:15", "RKZ 08 - Rosenkranz Hall 08", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ], "Tuesday": [ @@ -186665,7 +383682,7 @@ "9:25", "10:15", "RKZ 08 - Rosenkranz Hall 08", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ], "Wednesday": [ @@ -186673,7 +383690,7 @@ "9:25", "10:15", "RKZ 08 - Rosenkranz Hall 08", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ], "Thursday": [ @@ -186681,7 +383698,7 @@ "9:25", "10:15", "RKZ 08 - Rosenkranz Hall 08", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ], "Friday": [ @@ -186689,7 +383706,7 @@ "9:25", "10:15", "RKZ 08 - Rosenkranz Hall 08", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -186705,10 +383722,93 @@ "classnotes": "", "final_exam": "Friday, December 15, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88059\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88059/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987069368362427, + 0.9988676309585571, + 0.9985235333442688 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988903403282166, + 0.998856782913208, + 0.9850435256958008 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989118576049805, + 0.9984617233276367 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 0.875, + "final_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + } + } }, { "season_code": "202303", @@ -186745,7 +383845,7 @@ "10:30", "11:20", "LC 208 - Linsly-Chittenden Hall 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Tuesday": [ @@ -186753,7 +383853,7 @@ "10:30", "11:20", "LC 208 - Linsly-Chittenden Hall 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -186761,7 +383861,7 @@ "10:30", "11:20", "LC 208 - Linsly-Chittenden Hall 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -186769,7 +383869,7 @@ "10:30", "11:20", "LC 208 - Linsly-Chittenden Hall 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Friday": [ @@ -186777,7 +383877,7 @@ "10:30", "11:20", "LC 208 - Linsly-Chittenden Hall 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -186793,10 +383893,103 @@ "classnotes": "", "final_exam": "Friday, December 15, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88063\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88063/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9960707426071167, + 0.9985120892524719, + 0.9988848567008972 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988079071044922, + 0.9924295544624329, + 0.9987316727638245, + 0.9988835453987122, + 0.9988566637039185 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998819887638092, + 0.9988958835601807, + 0.9984132051467896, + 0.9951786994934082, + 0.9989118576049805 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 0.9230769230769231, + "final_counts": { + "POSITIVE": 12, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9230769230769231, + "NEGATIVE": 0.07692307692307693 + } + } }, { "season_code": "202303", @@ -186833,7 +384026,7 @@ "10:30", "11:20", "WLH 009 - William L. Harkness Hall 009", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Tuesday": [ @@ -186841,7 +384034,7 @@ "10:30", "11:20", "WLH 009 - William L. Harkness Hall 009", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -186849,7 +384042,7 @@ "10:30", "11:20", "WLH 009 - William L. Harkness Hall 009", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -186857,7 +384050,7 @@ "10:30", "11:20", "WLH 009 - William L. Harkness Hall 009", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Friday": [ @@ -186865,7 +384058,7 @@ "10:30", "11:20", "WLH 009 - William L. Harkness Hall 009", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -186881,10 +384074,38 @@ "classnotes": "", "final_exam": "Friday, December 15, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88067\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88067/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -186921,7 +384142,7 @@ "10:30", "11:20", "BASSLB L73 - Bass Library L73", - "https:\/\/map.yale.edu\/?id=1910#!m\/564574" + "https://map.yale.edu/?id=1910#!m/564574" ] ], "Tuesday": [ @@ -186929,7 +384150,7 @@ "10:30", "11:20", "BASSLB L73 - Bass Library L73", - "https:\/\/map.yale.edu\/?id=1910#!m\/564574" + "https://map.yale.edu/?id=1910#!m/564574" ] ], "Wednesday": [ @@ -186937,7 +384158,7 @@ "10:30", "11:20", "BASSLB L73 - Bass Library L73", - "https:\/\/map.yale.edu\/?id=1910#!m\/564574" + "https://map.yale.edu/?id=1910#!m/564574" ] ], "Thursday": [ @@ -186945,7 +384166,7 @@ "10:30", "11:20", "BASSLB L73 - Bass Library L73", - "https:\/\/map.yale.edu\/?id=1910#!m\/564574" + "https://map.yale.edu/?id=1910#!m/564574" ] ], "Friday": [ @@ -186953,7 +384174,7 @@ "10:30", "11:20", "BASSLB L73 - Bass Library L73", - "https:\/\/map.yale.edu\/?id=1910#!m\/564574" + "https://map.yale.edu/?id=1910#!m/564574" ] ] }, @@ -186969,10 +384190,93 @@ "classnotes": "", "final_exam": "Friday, December 15, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88072\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88072/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988774657249451, + 0.9988027811050415, + 0.9978756904602051 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989392161369324, + 0.9989275336265564, + 0.9988797307014465 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9944255352020264, + 0.9988877177238464, + 0.998927652835846 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 9 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -187009,7 +384313,7 @@ "11:35", "12:25", "WLH 003 - William L. Harkness Hall 003", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Tuesday": [ @@ -187017,7 +384321,7 @@ "11:35", "12:25", "WLH 003 - William L. Harkness Hall 003", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -187025,7 +384329,7 @@ "11:35", "12:25", "WLH 003 - William L. Harkness Hall 003", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -187033,7 +384337,7 @@ "11:35", "12:25", "WLH 003 - William L. Harkness Hall 003", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Friday": [ @@ -187041,7 +384345,7 @@ "11:35", "12:25", "WLH 003 - William L. Harkness Hall 003", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -187057,10 +384361,101 @@ "classnotes": "", "final_exam": "Friday, December 15, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88077\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88077/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987851977348328, + 0.9988106489181519, + 0.9985359907150269, + 0.9987407326698303 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998891294002533, + 0.9988915324211121, + 0.9984820485115051, + 0.9989257454872131 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989368319511414, + 0.9987058639526367, + 0.9988719820976257, + 0.9989144802093506 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 0.9166666666666666, + "final_counts": { + "POSITIVE": 11, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + } + } }, { "season_code": "202303", @@ -187097,7 +384492,7 @@ "9:25", "10:15", "YK220 100 - 220 York Street 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ], "Tuesday": [ @@ -187105,7 +384500,7 @@ "9:25", "10:15", "YK220 100 - 220 York Street 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ], "Wednesday": [ @@ -187113,7 +384508,7 @@ "9:25", "10:15", "YK220 100 - 220 York Street 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ], "Thursday": [ @@ -187121,7 +384516,7 @@ "9:25", "10:15", "YK220 100 - 220 York Street 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ], "Friday": [ @@ -187129,7 +384524,7 @@ "9:25", "10:15", "YK220 100 - 220 York Street 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ] }, @@ -187145,10 +384540,109 @@ "classnotes": "", "final_exam": "Friday, December 15, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88082\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88082/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987707734107971, + 0.9988663196563721, + 0.9980124235153198, + 0.9988589286804199 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988749623298645, + 0.9988793730735779, + 0.9988313317298889, + 0.9988341927528381, + 0.9976264834403992, + 0.9988431930541992 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988699555397034, + 0.9982553124427795, + 0.9982553124427795, + 0.9988622665405273, + 0.998467743396759, + 0.9986515641212463, + 0.9984233379364014 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 17 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -187185,7 +384679,7 @@ "9:25", "10:15", "WLH 003 - William L. Harkness Hall 003", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Tuesday": [ @@ -187193,7 +384687,7 @@ "9:25", "10:15", "WLH 003 - William L. Harkness Hall 003", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -187201,7 +384695,7 @@ "9:25", "10:15", "WLH 003 - William L. Harkness Hall 003", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -187209,7 +384703,7 @@ "9:25", "10:15", "WLH 003 - William L. Harkness Hall 003", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Friday": [ @@ -187217,7 +384711,7 @@ "9:25", "10:15", "WLH 003 - William L. Harkness Hall 003", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -187233,10 +384727,81 @@ "classnotes": "", "final_exam": "Friday, December 15, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88087\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88087/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989036321640015 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989356398582458 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988252520561218 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 3, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 3 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -187273,7 +384838,7 @@ "10:30", "11:20", "YK220 100 - 220 York Street 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ], "Tuesday": [ @@ -187281,7 +384846,7 @@ "10:30", "11:20", "YK220 100 - 220 York Street 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ], "Wednesday": [ @@ -187289,7 +384854,7 @@ "10:30", "11:20", "YK220 100 - 220 York Street 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ], "Thursday": [ @@ -187297,7 +384862,7 @@ "10:30", "11:20", "YK220 100 - 220 York Street 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ], "Friday": [ @@ -187305,7 +384870,7 @@ "10:30", "11:20", "YK220 100 - 220 York Street 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ] }, @@ -187321,10 +384886,107 @@ "classnotes": "", "final_exam": "Friday, December 15, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88091\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88091/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989027976989746, + 0.9986531734466553, + 0.9987591505050659, + 0.9978697299957275 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989394545555115, + 0.9988886713981628, + 0.9979894161224365, + 0.998927891254425, + 0.9989135265350342 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989394545555115, + 0.9984315037727356, + 0.9972322583198547, + 0.9988414645195007, + 0.9989309906959534, + 0.9988504648208618 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 0.9333333333333333, + "final_counts": { + "POSITIVE": 14, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9333333333333333, + "NEGATIVE": 0.06666666666666667 + } + } }, { "season_code": "202303", @@ -187361,7 +385023,7 @@ "10:30", "11:20", "WLH 003 - William L. Harkness Hall 003", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Tuesday": [ @@ -187369,7 +385031,7 @@ "10:30", "11:20", "WLH 003 - William L. Harkness Hall 003", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -187377,7 +385039,7 @@ "10:30", "11:20", "WLH 003 - William L. Harkness Hall 003", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -187385,7 +385047,7 @@ "10:30", "11:20", "WLH 003 - William L. Harkness Hall 003", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Friday": [ @@ -187393,7 +385055,7 @@ "10:30", "11:20", "WLH 003 - William L. Harkness Hall 003", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -187409,10 +385071,91 @@ "classnotes": "", "final_exam": "Friday, December 15, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88096\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88096/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987263083457947, + 0.9988687634468079, + 0.998887836933136 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989123344421387, + 0.9988846182823181 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987867474555969, + 0.9988906979560852, + 0.9988275170326233 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 8, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 8 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -187449,7 +385192,7 @@ "10:30", "11:20", "WLH 006 - William L. Harkness Hall 006", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Tuesday": [ @@ -187457,7 +385200,7 @@ "10:30", "11:20", "WLH 006 - William L. Harkness Hall 006", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -187465,7 +385208,7 @@ "10:30", "11:20", "WLH 006 - William L. Harkness Hall 006", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -187473,7 +385216,7 @@ "10:30", "11:20", "WLH 006 - William L. Harkness Hall 006", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Friday": [ @@ -187481,7 +385224,7 @@ "10:30", "11:20", "WLH 006 - William L. Harkness Hall 006", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -187497,10 +385240,83 @@ "classnotes": "", "final_exam": "Friday, December 15, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88099\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88099/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989166259765625 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9994819760322571 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 0 + }, + "sentiment_distribution": { + "NEGATIVE": 1.0, + "POSITIVE": 0.0 + }, + "sentiment_overall": [ + "NEGATIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989175796508789 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 2, + "final_proportion": 0.6666666666666666, + "final_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + } + } }, { "season_code": "202303", @@ -187537,7 +385353,7 @@ "11:35", "12:25", "YK220 100 - 220 York Street 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ], "Tuesday": [ @@ -187545,7 +385361,7 @@ "11:35", "12:25", "YK220 100 - 220 York Street 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ], "Wednesday": [ @@ -187553,7 +385369,7 @@ "11:35", "12:25", "YK220 100 - 220 York Street 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ], "Thursday": [ @@ -187561,7 +385377,7 @@ "11:35", "12:25", "YK220 100 - 220 York Street 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ], "Friday": [ @@ -187569,7 +385385,7 @@ "11:35", "12:25", "YK220 100 - 220 York Street 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ] }, @@ -187585,10 +385401,101 @@ "classnotes": "", "final_exam": "Friday, December 15, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88104\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88104/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998788058757782, + 0.9980767965316772, + 0.9986284971237183, + 0.998618483543396 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988579750061035, + 0.9989064931869507, + 0.9989062547683716, + 0.9988808035850525 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987265467643738, + 0.9989064931869507, + 0.9989101886749268, + 0.9988813996315002, + 0.9989186525344849 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 13 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -187625,7 +385532,7 @@ "13:00", "14:15", "HQ 133 - Humanities Quadrangle 133", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -187633,7 +385540,7 @@ "13:00", "14:15", "HQ 133 - Humanities Quadrangle 133", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -187649,10 +385556,95 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89220\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89220/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985601305961609, + 0.9988678693771362, + 0.9988443851470947 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.997025191783905, + 0.9989029169082642, + 0.9963821172714233 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984967708587646, + 0.998842179775238, + 0.9989344477653503, + 0.9989110231399536 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 10 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -187689,7 +385681,7 @@ "14:30", "15:45", "WLH 009 - William L. Harkness Hall 009", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -187697,7 +385689,7 @@ "14:30", "15:45", "WLH 009 - William L. Harkness Hall 009", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -187715,10 +385707,113 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88108\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88108/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987995624542236, + 0.9988008737564087, + 0.9988802075386047, + 0.9989149570465088, + 0.9987585544586182, + 0.9988467693328857 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998913049697876, + 0.9988981485366821, + 0.9989250302314758, + 0.9988910555839539, + 0.9983068704605103, + 0.9987179040908813 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988642930984497, + 0.9985882639884949, + 0.9988856911659241, + 0.9989200830459595, + 0.9989234805107117, + 0.9985396862030029, + 0.9988424181938171 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 19 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -187763,7 +385858,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -187809,7 +385932,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -187848,7 +385999,7 @@ "13:00", "14:15", "HQ 227 - Humanities Quadrangle 227", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -187856,7 +386007,7 @@ "13:00", "14:15", "HQ 227 - Humanities Quadrangle 227", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -187874,10 +386025,99 @@ "classnotes": "", "final_exam": "Saturday, December 16, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88113\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88113/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998877227306366, + 0.9987377524375916, + 0.998773992061615, + 0.9987092018127441 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989387392997742, + 0.9988440275192261, + 0.9989190101623535, + 0.9961065649986267 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989225268363953, + 0.9987555742263794, + 0.9989308714866638, + 0.9987749457359314 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 12 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -187916,7 +386156,7 @@ "14:30", "15:20", "WLH 116 - William L. Harkness Hall 116", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -187924,7 +386164,7 @@ "14:30", "15:20", "WLH 116 - William L. Harkness Hall 116", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -187944,10 +386184,181 @@ "classnotes": "", "final_exam": "Monday, December 18, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88130\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88130/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987202882766724, + 0.9987051486968994, + 0.9988952875137329, + 0.9988301396369934, + 0.994616687297821, + 0.9988757967948914, + 0.9989155530929565, + 0.9988829493522644, + 0.9988141059875488, + 0.9987867474555969, + 0.9988582134246826, + 0.9987875819206238, + 0.9980543851852417, + 0.9987416863441467, + 0.9987664222717285, + 0.9988697171211243, + 0.99853515625 + ], + "sentiment_counts": { + "POSITIVE": 17, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988013505935669, + 0.9784038662910461, + 0.8716951012611389, + 0.9962931275367737, + 0.9987888932228088, + 0.9989182949066162, + 0.9994246959686279, + 0.9988508224487305, + 0.9989198446273804, + 0.9948171973228455, + 0.9924448132514954, + 0.997286319732666, + 0.9989118576049805, + 0.9988754391670227, + 0.9989197254180908, + 0.9988769888877869, + 0.9988527297973633 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.7647058823529411, + "NEGATIVE": 0.23529411764705882 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7647058823529411 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987240433692932, + 0.9986931681632996, + 0.9989138841629028, + 0.9989334940910339, + 0.998892605304718, + 0.99888676404953, + 0.9989388585090637, + 0.9988824725151062, + 0.9988534450531006, + 0.9989224672317505, + 0.998918890953064, + 0.9989345669746399, + 0.9987761378288269, + 0.9967390894889832, + 0.9989230036735535, + 0.9988725781440735, + 0.9988471269607544, + 0.9987552165985107 + ], + "sentiment_counts": { + "POSITIVE": 18, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 48, + "final_proportion": 0.9230769230769231, + "final_counts": { + "POSITIVE": 48, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.9230769230769231, + "NEGATIVE": 0.07692307692307693 + } + } }, { "season_code": "202303", @@ -187980,7 +386391,7 @@ "15:30", "16:20", "LC 103 - Linsly-Chittenden Hall 103", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -188003,7 +386414,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -188036,7 +386475,7 @@ "10:30", "11:20", "WLH 207 - William L. Harkness Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -188059,7 +386498,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -188092,7 +386559,7 @@ "15:30", "16:20", "HQ 307 - Humanities Quadrangle 307", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -188115,7 +386582,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -188148,7 +386643,7 @@ "16:30", "17:20", "HQ 307 - Humanities Quadrangle 307", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -188171,12 +386666,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "Was Sappho a feminist? This course tries to answer that question by analyzing how women\u2019s voices have been appropriated by the literary and cultural canon of the west\u2013and how in turn women writers and readers have reappropriated those voices. Students read a generous amount of literary (and in some cases, musical) works, along with a variety of contemporary theoretical approaches so as to engage in conversation about authorship, classical reception, and materiality. Following an introduction to Greek and Roman texts key for problematic female figures such as sirens and sibyls, we turn to two later historical moments to explore how women artists have both broken out of and used the western canon, redefining genre, content, and style in literary creation writ large. How did Renaissance women such as Laura Cereta, Gaspara Stampa, and Sor Juana In\u00e9s de la Cruz fashion themselves as authors in light of the classical sources they had at hand? And once we arrive in the 20th and 21st centuries, how do Sibilla Aleramo, Elsa Morante, Anna Maria Ortese, and Elena Ferrante forge a new, feminist writing via classical, queer and\/or animal viewpoints?", + "description": "Was Sappho a feminist? This course tries to answer that question by analyzing how women\u2019s voices have been appropriated by the literary and cultural canon of the west\u2013and how in turn women writers and readers have reappropriated those voices. Students read a generous amount of literary (and in some cases, musical) works, along with a variety of contemporary theoretical approaches so as to engage in conversation about authorship, classical reception, and materiality. Following an introduction to Greek and Roman texts key for problematic female figures such as sirens and sibyls, we turn to two later historical moments to explore how women artists have both broken out of and used the western canon, redefining genre, content, and style in literary creation writ large. How did Renaissance women such as Laura Cereta, Gaspara Stampa, and Sor Juana In\u00e9s de la Cruz fashion themselves as authors in light of the classical sources they had at hand? And once we arrive in the 20th and 21st centuries, how do Sibilla Aleramo, Elsa Morante, Anna Maria Ortese, and Elena Ferrante forge a new, feminist writing via classical, queer and/or animal viewpoints?", "short_title": "Dangerous Women: Sirens, Siby...", "title": "Dangerous Women: Sirens, Sibyls, Poets and Singers from Sappho through Elena Ferrante", "school": "YC", @@ -188211,7 +386734,7 @@ "11:35", "12:50", "WLH 112 - William L. Harkness Hall 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -188219,7 +386742,7 @@ "11:35", "12:50", "WLH 112 - William L. Harkness Hall 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -188235,10 +386758,133 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89644\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89644/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989196062088013, + 0.998461127281189, + 0.9989305138587952, + 0.9987473487854004, + 0.9988574981689453, + 0.9988310933113098, + 0.9987288117408752, + 0.9987872242927551 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984928369522095, + 0.9987698197364807, + 0.999487042427063, + 0.9993746876716614, + 0.9989004135131836, + 0.993488073348999, + 0.9987336993217468, + 0.9982598423957825, + 0.9989217519760132, + 0.998910665512085, + 0.9988431930541992 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.7272727272727273, + "NEGATIVE": 0.2727272727272727 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7272727272727273 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9953521490097046, + 0.9983676075935364, + 0.9995096921920776, + 0.998089611530304, + 0.9988279938697815, + 0.9987051486968994, + 0.9988396763801575, + 0.9985581040382385, + 0.9989101886749268 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.7777777777777778, + "NEGATIVE": 0.2222222222222222 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7777777777777778 + ] + }, + "final_label": "POSITIVE", + "final_count": 23, + "final_proportion": 0.8214285714285714, + "final_counts": { + "POSITIVE": 23, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.8214285714285714, + "NEGATIVE": 0.17857142857142858 + } + } }, { "season_code": "202303", @@ -188280,10 +386926,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88117\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88117/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -188325,10 +386999,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88123\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88123/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -188371,7 +387073,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -188408,7 +387138,7 @@ "15:30", "17:20", "HQ 213 - Humanities Quadrangle 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -188420,10 +387150,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89634\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89634/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -188466,7 +387224,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -188503,7 +387289,7 @@ "13:30", "15:20", "HQ 227 - Humanities Quadrangle 227", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -188515,10 +387301,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89724\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89724/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -188558,10 +387372,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89221\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89221/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -188598,7 +387440,7 @@ "9:25", "10:15", "AKW 100 - Arthur K. Watson Hall 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560119" + "https://map.yale.edu/?id=1910#!m/560119" ] ], "Tuesday": [ @@ -188606,7 +387448,7 @@ "9:25", "10:15", "AKW 100 - Arthur K. Watson Hall 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560119" + "https://map.yale.edu/?id=1910#!m/560119" ] ], "Wednesday": [ @@ -188614,7 +387456,7 @@ "9:25", "10:15", "AKW 100 - Arthur K. Watson Hall 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560119" + "https://map.yale.edu/?id=1910#!m/560119" ] ], "Thursday": [ @@ -188622,7 +387464,7 @@ "9:25", "10:15", "AKW 100 - Arthur K. Watson Hall 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560119" + "https://map.yale.edu/?id=1910#!m/560119" ] ], "Friday": [ @@ -188630,7 +387472,7 @@ "9:25", "10:15", "AKW 100 - Arthur K. Watson Hall 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560119" + "https://map.yale.edu/?id=1910#!m/560119" ] ] }, @@ -188644,10 +387486,93 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89470\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89470/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986445307731628, + 0.9981207251548767, + 0.9890122413635254 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988627433776855, + 0.9989062547683716, + 0.9982900023460388 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988995790481567, + 0.9988742470741272, + 0.998761773109436 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 9 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -188684,7 +387609,7 @@ "9:25", "10:15", "RKZ 06 - Rosenkranz Hall 06", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ], "Tuesday": [ @@ -188692,7 +387617,7 @@ "9:25", "10:15", "RKZ 06 - Rosenkranz Hall 06", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ], "Wednesday": [ @@ -188700,7 +387625,7 @@ "9:25", "10:15", "RKZ 06 - Rosenkranz Hall 06", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ], "Thursday": [ @@ -188708,7 +387633,7 @@ "9:25", "10:15", "RKZ 06 - Rosenkranz Hall 06", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ], "Friday": [ @@ -188716,7 +387641,7 @@ "9:25", "10:15", "RKZ 06 - Rosenkranz Hall 06", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -188730,10 +387655,41 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89471\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89471/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982757568359375 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 1, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 1 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -188770,7 +387726,7 @@ "10:30", "11:20", "AKW 100 - Arthur K. Watson Hall 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560119" + "https://map.yale.edu/?id=1910#!m/560119" ] ], "Tuesday": [ @@ -188778,7 +387734,7 @@ "10:30", "11:20", "AKW 100 - Arthur K. Watson Hall 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560119" + "https://map.yale.edu/?id=1910#!m/560119" ] ], "Wednesday": [ @@ -188786,7 +387742,7 @@ "10:30", "11:20", "AKW 100 - Arthur K. Watson Hall 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560119" + "https://map.yale.edu/?id=1910#!m/560119" ] ], "Thursday": [ @@ -188794,7 +387750,7 @@ "10:30", "11:20", "AKW 100 - Arthur K. Watson Hall 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560119" + "https://map.yale.edu/?id=1910#!m/560119" ] ], "Friday": [ @@ -188802,7 +387758,7 @@ "10:30", "11:20", "AKW 100 - Arthur K. Watson Hall 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560119" + "https://map.yale.edu/?id=1910#!m/560119" ] ] }, @@ -188816,10 +387772,109 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89470\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89470/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9978898167610168, + 0.9988633394241333, + 0.9987987279891968, + 0.9947566986083984, + 0.9989374279975891 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988524913787842, + 0.9989339709281921, + 0.9987125396728516, + 0.998677670955658, + 0.9988766312599182, + 0.9973459243774414 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988762736320496, + 0.9986693859100342, + 0.9988802075386047, + 0.9989284873008728, + 0.9579633474349976, + 0.9989294409751892 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 17 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -188856,7 +387911,7 @@ "10:30", "11:20", "RKZ 06 - Rosenkranz Hall 06", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ], "Tuesday": [ @@ -188864,7 +387919,7 @@ "10:30", "11:20", "RKZ 06 - Rosenkranz Hall 06", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ], "Wednesday": [ @@ -188872,7 +387927,7 @@ "10:30", "11:20", "RKZ 06 - Rosenkranz Hall 06", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ], "Thursday": [ @@ -188880,7 +387935,7 @@ "10:30", "11:20", "RKZ 06 - Rosenkranz Hall 06", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ], "Friday": [ @@ -188888,7 +387943,7 @@ "10:30", "11:20", "RKZ 06 - Rosenkranz Hall 06", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -188902,10 +387957,105 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89471\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89471/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985830783843994, + 0.9984028935432434, + 0.998660683631897, + 0.9987661838531494, + 0.9987510442733765 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998960018157959, + 0.9989219903945923, + 0.9989199638366699, + 0.9989055395126343, + 0.9988873600959778 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 4 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2, + "POSITIVE": 0.8 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989295601844788, + 0.998809814453125, + 0.9893198013305664, + 0.9989243149757385 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 0.9285714285714286, + "final_counts": { + "POSITIVE": 13, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9285714285714286, + "NEGATIVE": 0.07142857142857142 + } + } }, { "season_code": "202303", @@ -188942,7 +388092,7 @@ "10:30", "11:20", "HLH17 113 - 17 Hillhouse Avenue 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Tuesday": [ @@ -188950,7 +388100,7 @@ "10:30", "11:20", "HLH17 113 - 17 Hillhouse Avenue 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Wednesday": [ @@ -188958,7 +388108,7 @@ "10:30", "11:20", "HLH17 113 - 17 Hillhouse Avenue 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Thursday": [ @@ -188966,7 +388116,7 @@ "10:30", "11:20", "HLH17 113 - 17 Hillhouse Avenue 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Friday": [ @@ -188974,7 +388124,7 @@ "10:30", "11:20", "HLH17 113 - 17 Hillhouse Avenue 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -188988,10 +388138,89 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89474\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89474/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9921293258666992 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 0 + }, + "sentiment_distribution": { + "NEGATIVE": 1.0, + "POSITIVE": 0.0 + }, + "sentiment_overall": [ + "NEGATIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989352822303772, + 0.9988208413124084 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988753199577332, + 0.9984440207481384, + 0.9988180994987488 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 5, + "final_proportion": 0.8333333333333334, + "final_counts": { + "NEGATIVE": 1, + "POSITIVE": 5 + }, + "final_distribution": { + "NEGATIVE": 0.16666666666666666, + "POSITIVE": 0.8333333333333334 + } + } }, { "season_code": "202303", @@ -189028,7 +388257,7 @@ "11:35", "12:25", "RKZ 06 - Rosenkranz Hall 06", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ], "Tuesday": [ @@ -189036,7 +388265,7 @@ "11:35", "12:25", "RKZ 06 - Rosenkranz Hall 06", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ], "Wednesday": [ @@ -189044,7 +388273,7 @@ "11:35", "12:25", "RKZ 06 - Rosenkranz Hall 06", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ], "Thursday": [ @@ -189052,7 +388281,7 @@ "11:35", "12:25", "RKZ 06 - Rosenkranz Hall 06", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ], "Friday": [ @@ -189060,7 +388289,7 @@ "11:35", "12:25", "RKZ 06 - Rosenkranz Hall 06", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -189074,10 +388303,101 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89471\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89471/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9974297881126404, + 0.9955747127532959, + 0.9988105297088623, + 0.9989100694656372 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989064931869507, + 0.9987062215805054, + 0.9981998205184937, + 0.9969366788864136, + 0.9987887740135193 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989160299301147, + 0.9985865354537964, + 0.998939573764801, + 0.9988370537757874 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 13 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -189114,7 +388434,7 @@ "9:25", "10:15", "RKZ 04 - Rosenkranz Hall 04", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ], "Tuesday": [ @@ -189122,7 +388442,7 @@ "9:25", "10:15", "RKZ 04 - Rosenkranz Hall 04", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ], "Wednesday": [ @@ -189130,7 +388450,7 @@ "9:25", "10:15", "RKZ 04 - Rosenkranz Hall 04", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ], "Thursday": [ @@ -189138,7 +388458,7 @@ "9:25", "10:15", "RKZ 04 - Rosenkranz Hall 04", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ], "Friday": [ @@ -189146,7 +388466,7 @@ "9:25", "10:15", "RKZ 04 - Rosenkranz Hall 04", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -189160,10 +388480,81 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89476\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89476/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988032579421997 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984523057937622 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988730549812317 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 3, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 3 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -189200,7 +388591,7 @@ "10:30", "11:20", "RKZ 04 - Rosenkranz Hall 04", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ], "Tuesday": [ @@ -189208,7 +388599,7 @@ "10:30", "11:20", "RKZ 04 - Rosenkranz Hall 04", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ], "Wednesday": [ @@ -189216,7 +388607,7 @@ "10:30", "11:20", "RKZ 04 - Rosenkranz Hall 04", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ], "Thursday": [ @@ -189224,7 +388615,7 @@ "10:30", "11:20", "RKZ 04 - Rosenkranz Hall 04", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ], "Friday": [ @@ -189232,7 +388623,7 @@ "10:30", "11:20", "RKZ 04 - Rosenkranz Hall 04", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -189246,10 +388637,95 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89477\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89477/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.997154712677002, + 0.9968620538711548, + 0.9988001585006714 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989160299301147, + 0.9989219903945923, + 0.9991198182106018 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988430738449097, + 0.9987499713897705, + 0.9912262558937073 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 0.7777777777777778, + "final_counts": { + "POSITIVE": 7, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.7777777777777778, + "NEGATIVE": 0.2222222222222222 + } + } }, { "season_code": "202303", @@ -189286,7 +388762,7 @@ "11:35", "12:25", "RKZ 04 - Rosenkranz Hall 04", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ], "Tuesday": [ @@ -189294,7 +388770,7 @@ "11:35", "12:25", "RKZ 04 - Rosenkranz Hall 04", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ], "Wednesday": [ @@ -189302,7 +388778,7 @@ "11:35", "12:25", "RKZ 04 - Rosenkranz Hall 04", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ], "Thursday": [ @@ -189310,7 +388786,7 @@ "11:35", "12:25", "RKZ 04 - Rosenkranz Hall 04", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ], "Friday": [ @@ -189318,7 +388794,7 @@ "11:35", "12:25", "RKZ 04 - Rosenkranz Hall 04", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -189332,10 +388808,99 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89478\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89478/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9956865906715393, + 0.9974477291107178, + 0.9855341911315918, + 0.99880051612854 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988370537757874, + 0.99854576587677, + 0.9994685053825378, + 0.9989199638366699 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9968357682228088, + 0.998309850692749, + 0.9989369511604309 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 0.9090909090909091, + "final_counts": { + "POSITIVE": 10, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + } + } }, { "season_code": "202303", @@ -189372,7 +388937,7 @@ "13:00", "14:15", "WTS B30 - Watson Center 60 Sachem Street B30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -189380,7 +388945,7 @@ "13:00", "14:15", "WTS B30 - Watson Center 60 Sachem Street B30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -189394,10 +388959,91 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89479\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89479/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989033937454224, + 0.9988627433776855 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998918890953064, + 0.998816967010498 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9979900121688843, + 0.9989205598831177, + 0.9983184337615967 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 0.8571428571428571, + "final_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + } + } }, { "season_code": "202303", @@ -189434,7 +389080,7 @@ "14:30", "15:45", "WTS B30 - Watson Center 60 Sachem Street B30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -189442,7 +389088,7 @@ "14:30", "15:45", "WTS B30 - Watson Center 60 Sachem Street B30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -189456,10 +389102,89 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89479\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89479/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988470077514648, + 0.9983726143836975 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9974642992019653, + 0.9994972944259644 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988729357719421, + 0.9994644522666931 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "final_label": "POSITIVE", + "final_count": 4, + "final_proportion": 0.6666666666666666, + "final_counts": { + "POSITIVE": 4, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + } + } }, { "season_code": "202303", @@ -189496,7 +389221,7 @@ "16:00", "17:15", "WTS B30 - Watson Center 60 Sachem Street B30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -189504,7 +389229,7 @@ "16:00", "17:15", "WTS B30 - Watson Center 60 Sachem Street B30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -189518,10 +389243,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89479\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89479/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -189558,7 +389311,7 @@ "14:30", "15:45", "TM432 102 - 432 Temple Street 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/559942" + "https://map.yale.edu/?id=1910#!m/559942" ] ], "Thursday": [ @@ -189566,7 +389319,7 @@ "14:30", "15:45", "TM432 102 - 432 Temple Street 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/559942" + "https://map.yale.edu/?id=1910#!m/559942" ] ] }, @@ -189580,10 +389333,93 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89481\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89481/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985558390617371, + 0.9987106323242188, + 0.9988532066345215 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989290833473206, + 0.9988970756530762, + 0.9985547661781311 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988577365875244, + 0.9988389611244202, + 0.9911786913871765 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 9 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -189621,7 +389457,7 @@ "11:35", "12:50", "HQ C01 - Humanities Quadrangle C01", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -189629,7 +389465,7 @@ "11:35", "12:50", "HQ C01 - Humanities Quadrangle C01", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -189645,10 +389481,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90112\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90112/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -189686,7 +389550,7 @@ "11:35", "12:50", "HQ C01 - Humanities Quadrangle C01", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -189694,7 +389558,7 @@ "11:35", "12:50", "HQ C01 - Humanities Quadrangle C01", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -189706,10 +389570,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90112\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90112/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -189748,7 +389640,7 @@ "13:30", "15:20", "HQ 317 - Humanities Quadrangle 317", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -189762,10 +389654,87 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89353\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89353/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988947510719299, + 0.9988930821418762 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987646341323853, + 0.9988976716995239 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988653659820557, + 0.9989171028137207 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 6 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -189810,7 +389779,7 @@ "11:35", "12:50", "HQ 307 - Humanities Quadrangle 307", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -189818,7 +389787,7 @@ "11:35", "12:50", "HQ 307 - Humanities Quadrangle 307", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -189843,10 +389812,109 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88080\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88080/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9975146055221558, + 0.9974174499511719, + 0.9988190531730652, + 0.9983605742454529, + 0.998916506767273 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994046688079834, + 0.9984863996505737, + 0.9987554550170898, + 0.9995070695877075, + 0.9988973140716553, + 0.9988811612129211 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 4 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984442591667175, + 0.9970195889472961, + 0.9945054650306702, + 0.999510645866394, + 0.9989393353462219 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 0.8125, + "final_counts": { + "POSITIVE": 13, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.8125, + "NEGATIVE": 0.1875 + } + } }, { "season_code": "202303", @@ -189886,7 +389954,7 @@ "11:35", "12:50", "WLH 115 - William L. Harkness Hall 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -189894,7 +389962,7 @@ "11:35", "12:50", "WLH 115 - William L. Harkness Hall 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -189908,15 +389976,108 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89237\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89237/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987500905990601, + 0.9987700581550598, + 0.9988369345664978, + 0.9988104104995728 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998916506767273, + 0.997928261756897, + 0.9988961219787598, + 0.9966838955879211 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988834261894226, + 0.9988922476768494, + 0.9988200068473816, + 0.9984257221221924, + 0.9988338351249695, + 0.990307092666626 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 14 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", "requirements": "Readings, including primary Genizah sources, are in English translation, but students with knowledge of Arabic will be offered an additional weekly session providing instruction in\u00a0reading Judeo-Arabic and centered on readings of sources in the Judeo-Arabic\u00a0original.", - "description": "Ancient and medieval Jews did not throw away Hebrew texts they considered sacred, but rather, they\u00a0deposited and\/or buried them in dedicated rooms known as Genizot. The most famous of these\u00a0depositories was in the Ben Ezra Synagogue in Old Cairo, which contained perhaps the single most\u00a0important trove ever discovered of Jewish literary and documentary sources from around the\u00a0Mediterranean basin, sources dating as early as the ninth century and extending into the early\u00a0modern period. This course introduces students to the Jewish manuscript remains of the medieval\u00a0Cairo Genizah as well as other important Cairo manuscript caches. Students study the wide\u00a0\nvariety of types of literary and documentary genres in these collections, and gain familiarity\u00a0with the history of the Genizah\u2019s discovery in the late nineteenth and early twentieth century as\u00a0well as the acquisition of these manuscripts by institutions outside the Middle East (including\u00a0Harvard).", + "description": "Ancient and medieval Jews did not throw away Hebrew texts they considered sacred, but rather, they\u00a0deposited and/or buried them in dedicated rooms known as Genizot. The most famous of these\u00a0depositories was in the Ben Ezra Synagogue in Old Cairo, which contained perhaps the single most\u00a0important trove ever discovered of Jewish literary and documentary sources from around the\u00a0Mediterranean basin, sources dating as early as the ninth century and extending into the early\u00a0modern period. This course introduces students to the Jewish manuscript remains of the medieval\u00a0Cairo Genizah as well as other important Cairo manuscript caches. Students study the wide\u00a0\nvariety of types of literary and documentary genres in these collections, and gain familiarity\u00a0with the history of the Genizah\u2019s discovery in the late nineteenth and early twentieth century as\u00a0well as the acquisition of these manuscripts by institutions outside the Middle East (including\u00a0Harvard).", "short_title": "The Cairo Genizot and their L...", "title": "The Cairo Genizot and their Literatures", "school": "YC", @@ -189951,7 +390112,7 @@ "13:30", "15:20", "WLH 011 - William L. Harkness Hall 011", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -189966,11 +390127,39 @@ "rp_attr": "", "classnotes": "", "final_exam": "HTBA", - "course_home_url": "https:\/\/yale.instructure.com\/courses\/90554", - "syllabus_url": "", - "fysem": false, - "sysem": false, - "colsem": false + "course_home_url": "https://yale.instructure.com/courses/90554", + "syllabus_url": "", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -190011,7 +390200,7 @@ "13:30", "15:20", "HQ 317 - Humanities Quadrangle 317", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -190038,10 +390227,87 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88105\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88105/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987886548042297, + 0.9987472295761108 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989280104637146, + 0.9989338517189026 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998802900314331, + 0.9989396929740906 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 6 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -190082,7 +390348,7 @@ "13:30", "15:20", "HQ C03 - Humanities Quadrangle C03", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -190101,10 +390367,111 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89781\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89781/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989038705825806, + 0.998881995677948, + 0.9989314675331116, + 0.9988376498222351, + 0.9989163875579834, + 0.9989125728607178 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989294409751892, + 0.9988766312599182, + 0.9989217519760132, + 0.9988623857498169, + 0.9988903403282166, + 0.9989312291145325 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987277388572693, + 0.9989243149757385, + 0.998910665512085, + 0.9985809326171875, + 0.9989239573478699, + 0.9988672733306885 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 18 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -190150,7 +390517,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -190190,7 +390585,7 @@ "13:30", "15:20", "PH 207 - Phelps Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -190214,10 +390609,101 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88726\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88726/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994853734970093, + 0.9989376664161682, + 0.9986500144004822, + 0.9986982345581055 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.25, + "POSITIVE": 0.75 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9966853260993958, + 0.9989364743232727, + 0.9987745881080627, + 0.997749388217926 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.25, + "POSITIVE": 0.75 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986067414283752, + 0.9989312291145325, + 0.9988231062889099, + 0.9969677329063416 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 0.8333333333333334, + "final_counts": { + "NEGATIVE": 2, + "POSITIVE": 10 + }, + "final_distribution": { + "NEGATIVE": 0.16666666666666666, + "POSITIVE": 0.8333333333333334 + } + } }, { "season_code": "202303", @@ -190258,7 +390744,7 @@ "9:00", "10:15", "WLH 115 - William L. Harkness Hall 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -190266,7 +390752,7 @@ "9:00", "10:15", "WLH 115 - William L. Harkness Hall 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -190280,10 +390766,99 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89238\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89238/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983246922492981, + 0.9988728165626526, + 0.9986433386802673, + 0.9988020658493042 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981042146682739, + 0.998875081539154, + 0.9988712668418884, + 0.9989253878593445 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988529682159424, + 0.9988498687744141, + 0.9988981485366821, + 0.9989317059516907 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 12 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -190325,7 +390900,7 @@ "14:30", "15:45", "HQ 129 - Humanities Quadrangle 129", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -190333,7 +390908,7 @@ "14:30", "15:45", "HQ 129 - Humanities Quadrangle 129", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -190351,10 +390926,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89239\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89239/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -190397,7 +391000,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -190440,7 +391071,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -190480,10 +391139,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89874\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89874/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -190524,7 +391211,7 @@ "13:00", "14:15", "HQ 313 - Humanities Quadrangle 313", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -190532,7 +391219,7 @@ "13:00", "14:15", "HQ 313 - Humanities Quadrangle 313", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -190544,10 +391231,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91592\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91592/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -190588,7 +391282,7 @@ "9:00", "10:15", "WLH 115 - William L. Harkness Hall 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -190596,7 +391290,7 @@ "9:00", "10:15", "WLH 115 - William L. Harkness Hall 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -190608,10 +391302,99 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89238\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89238/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983246922492981, + 0.9988728165626526, + 0.9986433386802673, + 0.9988020658493042 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981042146682739, + 0.998875081539154, + 0.9988712668418884, + 0.9989253878593445 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988529682159424, + 0.9988498687744141, + 0.9988981485366821, + 0.9989317059516907 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 12 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -190653,7 +391436,7 @@ "14:30", "15:45", "HQ 129 - Humanities Quadrangle 129", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -190661,7 +391444,7 @@ "14:30", "15:45", "HQ 129 - Humanities Quadrangle 129", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -190673,10 +391456,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89239\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89239/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -190721,7 +391532,7 @@ "11:35", "12:50", "HQ 307 - Humanities Quadrangle 307", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -190729,7 +391540,7 @@ "11:35", "12:50", "HQ 307 - Humanities Quadrangle 307", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -190741,15 +391552,114 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88080\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88080/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "", - "description": "Ancient and medieval Jews did not throw away Hebrew texts they considered sacred, but rather, they deposited and\/or buried them in dedicated rooms known as Genizot. The most famous of these depositories was in the Ben Ezra Synagogue in Old Cairo, which contained perhaps the single most important trove ever discovered of Jewish literary and documentary sources from around the Mediterranean basin, sources dating as early as the ninth century and extending into the early modern period. This course introduces students to the Jewish manuscript remains of the medieval Cairo Genizah as well as other important Cairo manuscript caches. Students study the wide variety of types of literary and documentary genres in these collections and gain familiarity with the history of the Genizah\u2019s discovery in the late nineteenth and early twentieth century as well as the acquisition of these manuscripts by institutions outside the Middle East (including Harvard). Readings, including primary Genizah sources, are in English translation, but students with knowledge of Arabic are offered an additional weekly session providing instruction in reading Judeo-Arabic and centered on readings of sources in the Judeo-Arabic original.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9975146055221558, + 0.9974174499511719, + 0.9988190531730652, + 0.9983605742454529, + 0.998916506767273 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994046688079834, + 0.9984863996505737, + 0.9987554550170898, + 0.9995070695877075, + 0.9988973140716553, + 0.9988811612129211 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 4 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984442591667175, + 0.9970195889472961, + 0.9945054650306702, + 0.999510645866394, + 0.9989393353462219 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 0.8125, + "final_counts": { + "POSITIVE": 13, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.8125, + "NEGATIVE": 0.1875 + } + } + }, + { + "season_code": "202303", + "requirements": "", + "description": "Ancient and medieval Jews did not throw away Hebrew texts they considered sacred, but rather, they deposited and/or buried them in dedicated rooms known as Genizot. The most famous of these depositories was in the Ben Ezra Synagogue in Old Cairo, which contained perhaps the single most important trove ever discovered of Jewish literary and documentary sources from around the Mediterranean basin, sources dating as early as the ninth century and extending into the early modern period. This course introduces students to the Jewish manuscript remains of the medieval Cairo Genizah as well as other important Cairo manuscript caches. Students study the wide variety of types of literary and documentary genres in these collections and gain familiarity with the history of the Genizah\u2019s discovery in the late nineteenth and early twentieth century as well as the acquisition of these manuscripts by institutions outside the Middle East (including Harvard). Readings, including primary Genizah sources, are in English translation, but students with knowledge of Arabic are offered an additional weekly session providing instruction in reading Judeo-Arabic and centered on readings of sources in the Judeo-Arabic original.", "short_title": "The Cairo Genizot and their L...", "title": "The Cairo Genizot and their Literatures", "school": "GS", @@ -190784,7 +391694,7 @@ "13:30", "15:20", "WLH 011 - William L. Harkness Hall 011", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -190797,11 +391707,39 @@ "rp_attr": "", "classnotes": "", "final_exam": "HTBA", - "course_home_url": "https:\/\/yale.instructure.com\/courses\/90554", - "syllabus_url": "", - "fysem": false, - "sysem": false, - "colsem": false + "course_home_url": "https://yale.instructure.com/courses/90554", + "syllabus_url": "", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -190839,7 +391777,7 @@ "15:30", "17:20", "HQ 317 - Humanities Quadrangle 317", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -190851,10 +391789,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88470\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88470/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -190918,7 +391884,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -190957,7 +391951,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -190994,7 +392016,7 @@ "9:25", "10:15", "WTS A68 - Watson Center 60 Sachem Street A68", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Tuesday": [ @@ -191002,7 +392024,7 @@ "9:25", "10:15", "WTS A68 - Watson Center 60 Sachem Street A68", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -191010,7 +392032,7 @@ "9:25", "10:15", "WTS A68 - Watson Center 60 Sachem Street A68", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -191018,7 +392040,7 @@ "9:25", "10:15", "WTS A68 - Watson Center 60 Sachem Street A68", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Friday": [ @@ -191026,7 +392048,7 @@ "9:25", "10:15", "WTS A68 - Watson Center 60 Sachem Street A68", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -191040,10 +392062,91 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89401\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89401/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.99892657995224, + 0.9980656504631042, + 0.9988808035850525 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989144802093506, + 0.9989109039306641, + 0.9988786578178406 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988802075386047, + 0.9989294409751892 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 8, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 8 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -191080,7 +392183,7 @@ "9:25", "10:15", "RKZ 02 - Rosenkranz Hall 02", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ], "Tuesday": [ @@ -191088,7 +392191,7 @@ "9:25", "10:15", "RKZ 02 - Rosenkranz Hall 02", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ], "Wednesday": [ @@ -191096,7 +392199,7 @@ "9:25", "10:15", "RKZ 02 - Rosenkranz Hall 02", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ], "Thursday": [ @@ -191104,7 +392207,7 @@ "9:25", "10:15", "RKZ 02 - Rosenkranz Hall 02", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ], "Friday": [ @@ -191112,7 +392215,7 @@ "9:25", "10:15", "RKZ 02 - Rosenkranz Hall 02", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -191126,10 +392229,113 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89403\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89403/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988910555839539, + 0.9987571239471436, + 0.9989196062088013, + 0.9987105131149292, + 0.9809404015541077, + 0.9988905787467957 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989306330680847, + 0.9987873435020447, + 0.9988842606544495, + 0.9987510442733765, + 0.9989284873008728, + 0.9989239573478699 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988743662834167, + 0.9989331364631653, + 0.9988023042678833, + 0.9986191987991333, + 0.9989352822303772, + 0.9989389777183533 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 0.9444444444444444, + "final_counts": { + "POSITIVE": 17, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9444444444444444, + "NEGATIVE": 0.05555555555555555 + } + } }, { "season_code": "202303", @@ -191166,7 +392372,7 @@ "10:30", "11:20", "PH 207 - Phelps Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ], "Tuesday": [ @@ -191174,7 +392380,7 @@ "10:30", "11:20", "PH 207 - Phelps Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ], "Wednesday": [ @@ -191182,7 +392388,7 @@ "10:30", "11:20", "PH 207 - Phelps Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ], "Thursday": [ @@ -191190,7 +392396,7 @@ "10:30", "11:20", "PH 207 - Phelps Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ], "Friday": [ @@ -191198,7 +392404,7 @@ "10:30", "11:20", "PH 207 - Phelps Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -191212,10 +392418,103 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89400\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89400/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9859551787376404, + 0.9987984895706177, + 0.9989140033721924, + 0.9987370371818542 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989270567893982, + 0.9989087581634521, + 0.9987899661064148, + 0.9989006519317627 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987186193466187, + 0.998916745185852, + 0.9986466765403748, + 0.998938262462616, + 0.997117280960083, + 0.9989253878593445 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 14 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -191252,7 +392551,7 @@ "10:30", "11:20", "WTS A68 - Watson Center 60 Sachem Street A68", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Tuesday": [ @@ -191260,7 +392559,7 @@ "10:30", "11:20", "WTS A68 - Watson Center 60 Sachem Street A68", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -191268,7 +392567,7 @@ "10:30", "11:20", "WTS A68 - Watson Center 60 Sachem Street A68", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -191276,7 +392575,7 @@ "10:30", "11:20", "WTS A68 - Watson Center 60 Sachem Street A68", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Friday": [ @@ -191284,7 +392583,7 @@ "10:30", "11:20", "WTS A68 - Watson Center 60 Sachem Street A68", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -191298,10 +392597,95 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89401\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89401/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9975922703742981, + 0.998683512210846, + 0.9960237741470337 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9978875517845154, + 0.9987695813179016, + 0.9989237189292908 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988090991973877, + 0.9980168342590332, + 0.9987747073173523, + 0.9989169836044312 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 10 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -191338,7 +392722,7 @@ "11:35", "12:25", "WTS B30 - Watson Center 60 Sachem Street B30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Tuesday": [ @@ -191346,7 +392730,7 @@ "11:35", "12:25", "WTS B30 - Watson Center 60 Sachem Street B30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -191354,7 +392738,7 @@ "11:35", "12:25", "WTS B30 - Watson Center 60 Sachem Street B30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -191362,7 +392746,7 @@ "11:35", "12:25", "WTS B30 - Watson Center 60 Sachem Street B30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Friday": [ @@ -191370,7 +392754,7 @@ "11:35", "12:25", "WTS B30 - Watson Center 60 Sachem Street B30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -191384,10 +392768,101 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89402\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89402/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9969192743301392, + 0.9989149570465088, + 0.9962477087974548 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989180564880371, + 0.9989192485809326, + 0.9986693859100342, + 0.9989067316055298 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987780451774597, + 0.998759388923645, + 0.9989224672317505, + 0.9983333945274353, + 0.9989051818847656 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 0.9166666666666666, + "final_counts": { + "NEGATIVE": 1, + "POSITIVE": 11 + }, + "final_distribution": { + "NEGATIVE": 0.08333333333333333, + "POSITIVE": 0.9166666666666666 + } + } }, { "season_code": "202303", @@ -191424,7 +392899,7 @@ "11:35", "12:25", "RKZ 02 - Rosenkranz Hall 02", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ], "Tuesday": [ @@ -191432,7 +392907,7 @@ "11:35", "12:25", "RKZ 02 - Rosenkranz Hall 02", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ], "Wednesday": [ @@ -191440,7 +392915,7 @@ "11:35", "12:25", "RKZ 02 - Rosenkranz Hall 02", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ], "Thursday": [ @@ -191448,7 +392923,7 @@ "11:35", "12:25", "RKZ 02 - Rosenkranz Hall 02", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ], "Friday": [ @@ -191456,7 +392931,7 @@ "11:35", "12:25", "RKZ 02 - Rosenkranz Hall 02", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -191470,10 +392945,95 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89403\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89403/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9984076619148254, + 0.998562753200531, + 0.9649995565414429 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989240765571594, + 0.9989109039306641, + 0.998705267906189 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989010095596313, + 0.9988454580307007, + 0.99883633852005 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 8, + "final_proportion": 0.8888888888888888, + "final_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + } + } }, { "season_code": "202303", @@ -191510,7 +393070,7 @@ "9:25", "10:15", "PH 207 - Phelps Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ], "Tuesday": [ @@ -191518,7 +393078,7 @@ "9:25", "10:15", "PH 207 - Phelps Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ], "Wednesday": [ @@ -191526,7 +393086,7 @@ "9:25", "10:15", "PH 207 - Phelps Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ], "Thursday": [ @@ -191534,7 +393094,7 @@ "9:25", "10:15", "PH 207 - Phelps Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ], "Friday": [ @@ -191542,7 +393102,7 @@ "9:25", "10:15", "PH 207 - Phelps Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -191556,10 +393116,113 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89404\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89404/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988182187080383, + 0.998590886592865, + 0.9959865212440491, + 0.9988724589347839, + 0.9989149570465088, + 0.9988273978233337 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988621473312378, + 0.9981826543807983, + 0.9988258481025696, + 0.998928964138031, + 0.9988654851913452, + 0.9989381432533264, + 0.9989380240440369 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988495111465454, + 0.9988781809806824, + 0.9987404942512512, + 0.9989363551139832, + 0.9989284873008728, + 0.9989230036735535 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 19 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -191596,7 +393259,7 @@ "10:30", "11:20", "RKZ 02 - Rosenkranz Hall 02", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ], "Tuesday": [ @@ -191604,7 +393267,7 @@ "10:30", "11:20", "RKZ 02 - Rosenkranz Hall 02", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ], "Wednesday": [ @@ -191612,7 +393275,7 @@ "10:30", "11:20", "RKZ 02 - Rosenkranz Hall 02", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ], "Thursday": [ @@ -191620,7 +393283,7 @@ "10:30", "11:20", "RKZ 02 - Rosenkranz Hall 02", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ], "Friday": [ @@ -191628,7 +393291,7 @@ "10:30", "11:20", "RKZ 02 - Rosenkranz Hall 02", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -191642,10 +393305,115 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89405\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89405/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9198408126831055, + 0.9986817240715027, + 0.9989049434661865, + 0.9985131621360779, + 0.9987624883651733, + 0.9989246726036072 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9934775829315186, + 0.9989211559295654, + 0.9988621473312378, + 0.9988921284675598, + 0.9989144802093506, + 0.9989075660705566 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.997117280960083, + 0.9974592328071594, + 0.9983450174331665, + 0.99891197681427, + 0.9989184141159058, + 0.9988980293273926, + 0.9983842372894287, + 0.9989375472068787 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 20 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -191682,7 +393450,7 @@ "11:35", "12:25", "WTS A68 - Watson Center 60 Sachem Street A68", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Tuesday": [ @@ -191690,7 +393458,7 @@ "11:35", "12:25", "WTS A68 - Watson Center 60 Sachem Street A68", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -191698,7 +393466,7 @@ "11:35", "12:25", "WTS A68 - Watson Center 60 Sachem Street A68", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -191706,7 +393474,7 @@ "11:35", "12:25", "WTS A68 - Watson Center 60 Sachem Street A68", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Friday": [ @@ -191714,7 +393482,7 @@ "11:35", "12:25", "WTS A68 - Watson Center 60 Sachem Street A68", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -191728,10 +393496,95 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89406\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89406/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986926913261414, + 0.9989226460456848, + 0.9984787106513977, + 0.9988644123077393 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989006519317627, + 0.9988822340965271, + 0.9988465309143066 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982553124427795, + 0.9989330172538757, + 0.9982553124427795 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 10 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -191768,7 +393621,7 @@ "10:30", "11:20", "WTS A30 - Watson Center 60 Sachem Street A30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Tuesday": [ @@ -191776,7 +393629,7 @@ "10:30", "11:20", "WTS A30 - Watson Center 60 Sachem Street A30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -191784,7 +393637,7 @@ "10:30", "11:20", "WTS A30 - Watson Center 60 Sachem Street A30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -191792,7 +393645,7 @@ "10:30", "11:20", "WTS A30 - Watson Center 60 Sachem Street A30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Friday": [ @@ -191800,7 +393653,7 @@ "10:30", "11:20", "WTS A30 - Watson Center 60 Sachem Street A30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -191814,10 +393667,63 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89407\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89407/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986781477928162, + 0.9922888875007629 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988584518432617 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 3, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 3 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -191854,7 +393760,7 @@ "11:35", "12:25", "PH 207 - Phelps Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ], "Wednesday": [ @@ -191862,7 +393768,7 @@ "11:35", "12:25", "PH 207 - Phelps Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ], "Friday": [ @@ -191870,7 +393776,7 @@ "11:35", "12:25", "PH 207 - Phelps Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -191884,10 +393790,109 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89408\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89408/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988945126533508, + 0.998843789100647, + 0.9984652996063232, + 0.9987611770629883, + 0.9986371397972107, + 0.9985711574554443 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988992214202881, + 0.9989317059516907, + 0.9989280104637146, + 0.9989180564880371 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988817572593689, + 0.9988590478897095, + 0.998909592628479, + 0.998932421207428, + 0.9988223910331726, + 0.9989160299301147, + 0.9989203214645386 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 17 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -191924,7 +393929,7 @@ "9:25", "10:15", "WTS B30 - Watson Center 60 Sachem Street B30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -191932,7 +393937,7 @@ "9:25", "10:15", "WTS B30 - Watson Center 60 Sachem Street B30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Friday": [ @@ -191940,7 +393945,7 @@ "9:25", "10:15", "WTS B30 - Watson Center 60 Sachem Street B30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -191954,10 +393959,105 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89410\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89410/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998214602470398, + 0.9987319111824036, + 0.9983789920806885, + 0.9987682700157166, + 0.998931348323822 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989128112792969, + 0.9989153146743774, + 0.9989144802093506, + 0.9989339709281921 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988131523132324, + 0.9987773299217224, + 0.9988507032394409, + 0.9988135099411011, + 0.9989123344421387, + 0.9988933205604553 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 15 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -191994,7 +394094,7 @@ "10:30", "11:20", "WTS A74 - Watson Center 60 Sachem Street A74", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -192002,7 +394102,7 @@ "10:30", "11:20", "WTS A74 - Watson Center 60 Sachem Street A74", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Friday": [ @@ -192010,7 +394110,7 @@ "10:30", "11:20", "WTS A74 - Watson Center 60 Sachem Street A74", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -192024,10 +394124,105 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89410\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89410/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987545013427734, + 0.9989014863967896, + 0.998854398727417, + 0.9951688647270203, + 0.9907310605049133 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988847374916077, + 0.9989350438117981, + 0.9988172650337219, + 0.998935878276825, + 0.9981935620307922 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989330172538757, + 0.9989173412322998, + 0.9989064931869507, + 0.9987882971763611, + 0.9989124536514282 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 15 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -192065,7 +394260,7 @@ "14:30", "15:45", "WLH 207 - William L. Harkness Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -192073,7 +394268,7 @@ "14:30", "15:45", "WLH 207 - William L. Harkness Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -192087,10 +394282,127 @@ "classnotes": "", "final_exam": "Sunday, December 17, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90176\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/90176/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989219903945923, + 0.9988314509391785, + 0.9989122152328491, + 0.9988000392913818, + 0.9989171028137207, + 0.9987183809280396, + 0.9988985061645508, + 0.9987180233001709, + 0.9983730316162109 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989198446273804, + 0.9989194869995117, + 0.9913262724876404, + 0.9988608360290527, + 0.9978978633880615, + 0.9988935589790344, + 0.9987372756004333 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.7142857142857143, + "NEGATIVE": 0.2857142857142857 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7142857142857143 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.998766303062439, + 0.9974468946456909, + 0.9989305138587952, + 0.9989244341850281, + 0.9989290833473206, + 0.9986879229545593, + 0.9989318251609802, + 0.9989209175109863, + 0.9995086193084717 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "final_label": "POSITIVE", + "final_count": 22, + "final_proportion": 0.88, + "final_counts": { + "POSITIVE": 22, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.88, + "NEGATIVE": 0.12 + } + } }, { "season_code": "202303", @@ -192128,7 +394440,7 @@ "14:30", "15:20", "WLH 113 - William L. Harkness Hall 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -192136,7 +394448,7 @@ "14:30", "15:20", "WLH 113 - William L. Harkness Hall 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -192152,10 +394464,123 @@ "classnotes": "", "final_exam": "Monday, December 18, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89164\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89164/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989079236984253, + 0.9989097118377686, + 0.9988766312599182, + 0.9988687634468079, + 0.9989359974861145 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989141225814819, + 0.998794674873352, + 0.998839795589447, + 0.9989356398582458, + 0.9995057582855225, + 0.9989168643951416, + 0.9989114999771118, + 0.9985226988792419, + 0.9988418221473694 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988144636154175, + 0.9988247752189636, + 0.9989305138587952, + 0.9988815188407898, + 0.9986985921859741, + 0.9995052814483643, + 0.9989349246025085, + 0.9989147186279297, + 0.9989363551139832 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "final_label": "POSITIVE", + "final_count": 21, + "final_proportion": 0.9130434782608695, + "final_counts": { + "POSITIVE": 21, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9130434782608695, + "NEGATIVE": 0.08695652173913043 + } + } }, { "season_code": "202303", @@ -192187,7 +394612,7 @@ "10:30", "11:20", "HQ 213 - Humanities Quadrangle 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -192206,7 +394631,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -192238,7 +394691,7 @@ "11:35", "12:25", "HQ 213 - Humanities Quadrangle 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -192257,7 +394710,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -192297,7 +394778,7 @@ "16:30", "17:20", "WTS A51 - Watson Center 60 Sachem Street A51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -192305,7 +394786,7 @@ "16:30", "17:20", "WTS A51 - Watson Center 60 Sachem Street A51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -192324,10 +394805,137 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89163\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89163/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987770915031433, + 0.9989281296730042, + 0.9988021850585938, + 0.9989131689071655, + 0.9978353381156921, + 0.9988918900489807, + 0.9988707900047302, + 0.9988301396369934, + 0.9988916516304016 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994995594024658, + 0.9984616041183472, + 0.9895910620689392, + 0.9988960027694702, + 0.998921275138855, + 0.9982247948646545, + 0.99699866771698, + 0.9988629817962646, + 0.9988136291503906, + 0.9984989166259766, + 0.9988767504692078 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 9 + }, + "sentiment_distribution": { + "NEGATIVE": 0.18181818181818182, + "POSITIVE": 0.8181818181818182 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8181818181818182 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988865256309509, + 0.9988271594047546, + 0.9989141225814819, + 0.9985136389732361, + 0.9925960898399353, + 0.9988418221473694, + 0.9988685846328735, + 0.9987994432449341, + 0.9984018206596375, + 0.9968264102935791 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "final_label": "POSITIVE", + "final_count": 27, + "final_proportion": 0.9, + "final_counts": { + "POSITIVE": 27, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + } + } }, { "season_code": "202303", @@ -192361,7 +394969,7 @@ "14:30", "15:20", "WTS A32 - Watson Center 60 Sachem Street A32", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -192382,7 +394990,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -192416,7 +395052,7 @@ "15:30", "16:20", "WTS A32 - Watson Center 60 Sachem Street A32", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -192437,7 +395073,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -192471,7 +395135,7 @@ "14:30", "15:20", "WTS B51 - Watson Center 60 Sachem Street B51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -192492,7 +395156,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -192526,7 +395218,7 @@ "17:00", "17:50", "WLH 004 - William L. Harkness Hall 004", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -192547,7 +395239,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -192585,7 +395305,7 @@ "9:00", "10:15", "HQ 133 - Humanities Quadrangle 133", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -192593,7 +395313,7 @@ "9:00", "10:15", "HQ 133 - Humanities Quadrangle 133", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -192607,10 +395327,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89620\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89620/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -192648,7 +395396,7 @@ "11:35", "12:50", "WLH 113 - William L. Harkness Hall 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -192656,7 +395404,7 @@ "11:35", "12:50", "WLH 113 - William L. Harkness Hall 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -192670,10 +395418,123 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89621\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89621/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988799691200256, + 0.998908519744873, + 0.9987664222717285, + 0.9988318085670471, + 0.9971306920051575, + 0.9987516403198242, + 0.9958904981613159, + 0.9902257323265076 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989307522773743, + 0.9987292885780334, + 0.998848557472229, + 0.9989290833473206, + 0.9976480603218079, + 0.9987146854400635, + 0.9931655526161194 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988943934440613, + 0.9988433122634888, + 0.9989012479782104, + 0.9989210367202759, + 0.9988541603088379, + 0.9989045858383179, + 0.9985470175743103, + 0.9986529350280762 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "final_label": "POSITIVE", + "final_count": 22, + "final_proportion": 0.9565217391304348, + "final_counts": { + "POSITIVE": 22, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9565217391304348, + "NEGATIVE": 0.043478260869565216 + } + } }, { "season_code": "202303", @@ -192711,7 +395572,7 @@ "11:35", "12:50", "WLH 210 - William L. Harkness Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -192719,7 +395580,7 @@ "11:35", "12:50", "WLH 210 - William L. Harkness Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -192733,10 +395594,113 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89622\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89622/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987082481384277, + 0.9989263415336609, + 0.9988492727279663, + 0.998853325843811, + 0.9982299208641052, + 0.9989122152328491, + 0.9986253976821899 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988968372344971, + 0.99888676404953, + 0.9987539052963257, + 0.9989128112792969, + 0.9987121820449829 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988623857498169, + 0.9989019632339478, + 0.9987572431564331, + 0.9989138841629028, + 0.9989049434661865, + 0.99769526720047, + 0.9988648891448975 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 19 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -192774,7 +395738,7 @@ "13:00", "14:15", "WLH 114 - William L. Harkness Hall 114", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -192782,7 +395746,7 @@ "13:00", "14:15", "WLH 114 - William L. Harkness Hall 114", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -192796,15 +395760,114 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88820\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88820/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988129138946533, + 0.99892657995224, + 0.9989114999771118, + 0.998664140701294, + 0.9986434578895569 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987229704856873, + 0.9968668818473816, + 0.9987925291061401, + 0.9989250302314758, + 0.9987142086029053 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 4 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2, + "POSITIVE": 0.8 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9964457154273987, + 0.9989122152328491, + 0.9986421465873718, + 0.9989128112792969, + 0.9989078044891357, + 0.9995118379592896 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 4 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 0.8125, + "final_counts": { + "POSITIVE": 13, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.8125, + "NEGATIVE": 0.1875 + } + } }, { "season_code": "202303", "requirements": "Prerequisite: SPAN 140 or 145, or in accordance with placement results.\u00a0", - "description": "Extreme weather, proliferation of species extinctions, climate migration, and the outbreak of pandemics can all be understood as instances of koyaanisqatsi, the Hopi word for life out of balance. They may also be viewed as indications that we are living in the age of the Anthropocene, a term in the natural and social sciences that acknowledges that human activities have had a radical geological impact on the planet since the onset of the Industrial revolution.\u00a0In this course we study relations between humans and other-than-humans to understand how we arrived at a life out of balance. We inquire into how binary distinctions between nature and culture are made, sustained, or questioned through a diversity of meaning-making practices in Spanish, Latin American, and indigenous literature, visual culture, and material culture. The indigenous artifacts studied include Popol Vuh, poetry, petroglyphs, and documentaries by indigenous people of the Amazon, which provide opportunities for asking pressing questions: To what extent does the nature and culture binary foreclose alternative possibilities for imagining ourselves and our relation to the world? Are there ways of perceiving our world and ourselves that bypass such binaries and if so, what are they? In the final weeks of the course, we draw from our insights to investigate where the nature\/culture binary figures in present discussions of environmental catastrophes and rights of nature movements in Latin America. Taught in Spanish.", + "description": "Extreme weather, proliferation of species extinctions, climate migration, and the outbreak of pandemics can all be understood as instances of koyaanisqatsi, the Hopi word for life out of balance. They may also be viewed as indications that we are living in the age of the Anthropocene, a term in the natural and social sciences that acknowledges that human activities have had a radical geological impact on the planet since the onset of the Industrial revolution.\u00a0In this course we study relations between humans and other-than-humans to understand how we arrived at a life out of balance. We inquire into how binary distinctions between nature and culture are made, sustained, or questioned through a diversity of meaning-making practices in Spanish, Latin American, and indigenous literature, visual culture, and material culture. The indigenous artifacts studied include Popol Vuh, poetry, petroglyphs, and documentaries by indigenous people of the Amazon, which provide opportunities for asking pressing questions: To what extent does the nature and culture binary foreclose alternative possibilities for imagining ourselves and our relation to the world? Are there ways of perceiving our world and ourselves that bypass such binaries and if so, what are they? In the final weeks of the course, we draw from our insights to investigate where the nature/culture binary figures in present discussions of environmental catastrophes and rights of nature movements in Latin America. Taught in Spanish.", "short_title": "Reading Environments: Nature,...", "title": "Reading Environments: Nature, Culture, and Agency", "school": "YC", @@ -192839,7 +395902,7 @@ "11:35", "12:50", "HQ 313 - Humanities Quadrangle 313", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -192847,7 +395910,7 @@ "11:35", "12:50", "HQ 313 - Humanities Quadrangle 313", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -192861,10 +395924,109 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89727\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89727/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998887836933136, + 0.9988370537757874, + 0.9987188577651978, + 0.9989056587219238 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998939573764801, + 0.9986592531204224, + 0.9989306330680847, + 0.9943006038665771, + 0.998871386051178, + 0.9988806843757629 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989240765571594, + 0.9988006353378296, + 0.9989392161369324, + 0.9940915703773499, + 0.9989081621170044, + 0.9988939166069031 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 0.9375, + "final_counts": { + "POSITIVE": 15, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9375, + "NEGATIVE": 0.0625 + } + } }, { "season_code": "202303", @@ -192902,7 +396064,7 @@ "13:00", "14:15", "HQ C07 - Humanities Quadrangle C07", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -192910,7 +396072,7 @@ "13:00", "14:15", "HQ C07 - Humanities Quadrangle C07", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -192924,10 +396086,99 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88821\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88821/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989117383956909, + 0.9988166093826294, + 0.9986082911491394, + 0.9988388419151306 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989245533943176, + 0.9987865090370178, + 0.9988905787467957, + 0.9989114999771118 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986417889595032, + 0.9988778233528137, + 0.9989051818847656, + 0.9988735318183899 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 12 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -192966,7 +396217,7 @@ "11:35", "12:50", "HQ 207 - Humanities Quadrangle 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -192974,7 +396225,7 @@ "11:35", "12:50", "HQ 207 - Humanities Quadrangle 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -192988,10 +396239,87 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89726\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89726/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989153146743774, + 0.9989243149757385 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988337159156799, + 0.9989074468612671 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989240765571594, + 0.9974592328071594 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 6 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -193029,7 +396357,7 @@ "9:25", "10:15", "HQ C03 - Humanities Quadrangle C03", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -193037,7 +396365,7 @@ "9:25", "10:15", "HQ C03 - Humanities Quadrangle C03", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Friday": [ @@ -193045,7 +396373,7 @@ "9:25", "10:15", "HQ C03 - Humanities Quadrangle C03", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -193059,10 +396387,101 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89623\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89623/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988324046134949, + 0.9984859824180603, + 0.9987244009971619, + 0.9989181756973267 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.99712735414505, + 0.998293936252594, + 0.998636782169342, + 0.9984418749809265 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9965477585792542, + 0.999506950378418, + 0.9989299178123474, + 0.9988359808921814 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 0.8333333333333334, + "final_counts": { + "POSITIVE": 10, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + } + } }, { "season_code": "202303", @@ -193100,7 +396519,7 @@ "14:30", "15:45", "HQ 207 - Humanities Quadrangle 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -193108,7 +396527,7 @@ "14:30", "15:45", "HQ 207 - Humanities Quadrangle 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -193126,10 +396545,105 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90706\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90706/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998889148235321, + 0.9988922476768494, + 0.9989053010940552, + 0.9988775849342346, + 0.9987649917602539 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9972993731498718, + 0.9988824725151062, + 0.9977165460586548, + 0.9966172575950623, + 0.9988940358161926 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989221096038818, + 0.9987751841545105, + 0.9989293217658997, + 0.9989383816719055, + 0.9989030361175537 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 15 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -193170,7 +396684,7 @@ "11:35", "12:50", "HLH51 101 - 51 Hillhouse Avenue 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559970" + "https://map.yale.edu/?id=1910#!m/559970" ] ], "Thursday": [ @@ -193178,7 +396692,7 @@ "11:35", "12:50", "HLH51 101 - 51 Hillhouse Avenue 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559970" + "https://map.yale.edu/?id=1910#!m/559970" ] ] }, @@ -193194,10 +396708,95 @@ "classnotes": "", "final_exam": "Friday, December 15, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90580\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90580/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987101554870605, + 0.9989376664161682, + 0.9988366961479187 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988262057304382, + 0.9987607002258301, + 0.9988501071929932 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989184141159058, + 0.9989233613014221, + 0.9989168643951416, + 0.9986386895179749 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 10 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -193235,7 +396834,7 @@ "14:30", "15:45", "WLH 003 - William L. Harkness Hall 003", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -193243,7 +396842,7 @@ "14:30", "15:45", "WLH 003 - William L. Harkness Hall 003", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -193259,10 +396858,115 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88703\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88703/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988247752189636, + 0.9986410737037659, + 0.9988918900489807, + 0.9987267851829529, + 0.9986794590950012, + 0.998918890953064 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9964235424995422, + 0.9989153146743774, + 0.9989290833473206, + 0.9989148378372192, + 0.9989076852798462, + 0.9989342093467712, + 0.9988239407539368 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998915433883667, + 0.9989326596260071, + 0.9985975623130798, + 0.9985563158988953, + 0.9989209175109863, + 0.9987584352493286, + 0.9988491535186768 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 20 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -193301,7 +397005,7 @@ "11:35", "12:50", "HQ C11 - Humanities Quadrangle C11", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -193309,7 +397013,7 @@ "11:35", "12:50", "HQ C11 - Humanities Quadrangle C11", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -193323,10 +397027,109 @@ "classnotes": "", "final_exam": "Sunday, December 17, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90175\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90175/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989116191864014, + 0.9987921118736267, + 0.9988742470741272, + 0.9989226460456848, + 0.998815655708313, + 0.9988058805465698 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989327788352966, + 0.9989396929740906, + 0.9987360835075378, + 0.9989016056060791, + 0.9987634420394897 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989309906959534, + 0.9989262223243713, + 0.998887836933136, + 0.99893718957901, + 0.9988725781440735, + 0.9989104270935059 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 17 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -193365,7 +397168,7 @@ "9:25", "11:15", "HQ C05 - Humanities Quadrangle C05", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -193388,10 +397191,87 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88154\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88154/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989250302314758, + 0.9988572597503662 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989370703697205, + 0.9969276785850525 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989068508148193, + 0.9988124370574951 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 6 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -193429,7 +397309,7 @@ "9:00", "10:15", "WLH 204 - William L. Harkness Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -193437,7 +397317,7 @@ "9:00", "10:15", "WLH 204 - William L. Harkness Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -193453,10 +397333,129 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88705\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88705/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988388419151306, + 0.9973123073577881, + 0.9986945986747742, + 0.9988456964492798, + 0.9989334940910339, + 0.998684823513031, + 0.9988887906074524, + 0.9988607168197632 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988918900489807, + 0.9108808636665344, + 0.9987818598747253, + 0.9994503855705261, + 0.9989215135574341, + 0.9989087581634521, + 0.9880746006965637, + 0.9989060163497925 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.625, + "NEGATIVE": 0.375 + }, + "sentiment_overall": [ + "POSITIVE", + 0.625 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986889958381653, + 0.9988596439361572, + 0.9988551139831543, + 0.9970284104347229, + 0.9989240765571594, + 0.998852014541626, + 0.997117280960083, + 0.998736560344696, + 0.9903036952018738, + 0.9989027976989746 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 22, + "final_proportion": 0.8461538461538461, + "final_counts": { + "POSITIVE": 22, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.8461538461538461, + "NEGATIVE": 0.15384615384615385 + } + } }, { "season_code": "202303", @@ -193494,7 +397493,7 @@ "11:35", "12:25", "HQ 133 - Humanities Quadrangle 133", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -193502,7 +397501,7 @@ "11:35", "12:25", "HQ 133 - Humanities Quadrangle 133", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -193525,10 +397524,93 @@ "classnotes": "", "final_exam": "Friday, December 15, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88163\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88163/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988872408866882, + 0.9989173412322998, + 0.9989045858383179 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.997760534286499, + 0.998873770236969, + 0.9989080429077148 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989287257194519, + 0.9989292025566101, + 0.9989218711853027 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 9 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -193560,7 +397642,7 @@ "13:30", "14:20", "WTS B51 - Watson Center 60 Sachem Street B51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -193586,7 +397668,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -193618,7 +397728,7 @@ "19:00", "19:50", "WLH 006 - William L. Harkness Hall 006", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -193644,7 +397754,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -193687,7 +397825,7 @@ "19:00", "22:00", "HQ L02 - Humanities Quadrangle L02", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -193695,7 +397833,7 @@ "19:00", "20:50", "PH 207 - Phelps Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -193711,10 +397849,91 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90200\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90200/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988154172897339, + 0.998854398727417 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9859976768493652, + 0.9980385899543762, + 0.9989142417907715 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9908983111381531, + 0.9986674785614014 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 1 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "final_label": "POSITIVE", + "final_count": 5, + "final_proportion": 0.7142857142857143, + "final_counts": { + "POSITIVE": 5, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.7142857142857143, + "NEGATIVE": 0.2857142857142857 + } + } }, { "season_code": "202303", @@ -193755,7 +397974,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -193796,7 +398043,7 @@ "13:30", "15:20", "RKZ 04 - Rosenkranz Hall 04", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -193814,10 +398061,87 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88477\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88477/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988580942153931, + 0.9987786412239075 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989128112792969, + 0.9987824559211731 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989303946495056, + 0.9989103078842163 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 6 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -193857,7 +398181,7 @@ "15:30", "17:20", "HQ C11 - Humanities Quadrangle C11", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -193875,10 +398199,87 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88667\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88667/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988834261894226, + 0.9986335635185242 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9978232383728027, + 0.998855471611023 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998842179775238, + 0.9988335967063904 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 6 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -193921,7 +398322,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -193964,7 +398393,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -194001,7 +398458,7 @@ "9:25", "10:15", "PH 312 - Phelps Hall 312", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ], "Tuesday": [ @@ -194009,7 +398466,7 @@ "9:25", "10:15", "PH 312 - Phelps Hall 312", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ], "Wednesday": [ @@ -194017,7 +398474,7 @@ "9:25", "10:15", "PH 312 - Phelps Hall 312", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ], "Thursday": [ @@ -194025,7 +398482,7 @@ "9:25", "10:15", "PH 312 - Phelps Hall 312", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ], "Friday": [ @@ -194033,7 +398490,7 @@ "9:25", "10:15", "PH 312 - Phelps Hall 312", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -194049,10 +398506,113 @@ "classnotes": "", "final_exam": "Friday, December 15, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88150\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88150/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981139898300171, + 0.9989182949066162, + 0.9931043982505798, + 0.9988309741020203, + 0.9983867406845093, + 0.9989182949066162 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988877177238464, + 0.9989342093467712, + 0.9985939860343933, + 0.9989104270935059, + 0.9989157915115356, + 0.9986839890480042 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998802661895752, + 0.9988405108451843, + 0.9943337440490723, + 0.998908519744873, + 0.9989148378372192, + 0.9987592697143555 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 0.9444444444444444, + "final_counts": { + "POSITIVE": 17, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9444444444444444, + "NEGATIVE": 0.05555555555555555 + } + } }, { "season_code": "202303", @@ -194089,7 +398649,7 @@ "10:30", "11:20", "PH 312 - Phelps Hall 312", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ], "Tuesday": [ @@ -194097,7 +398657,7 @@ "10:30", "11:20", "PH 312 - Phelps Hall 312", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ], "Wednesday": [ @@ -194105,7 +398665,7 @@ "10:30", "11:20", "PH 312 - Phelps Hall 312", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ], "Thursday": [ @@ -194113,7 +398673,7 @@ "10:30", "11:20", "PH 312 - Phelps Hall 312", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ], "Friday": [ @@ -194121,7 +398681,7 @@ "10:30", "11:20", "PH 312 - Phelps Hall 312", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -194137,10 +398697,38 @@ "classnotes": "", "final_exam": "Friday, December 15, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88155\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88155/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -194177,7 +398765,7 @@ "10:30", "11:20", "PH 407 - Phelps Hall 407", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ], "Wednesday": [ @@ -194185,7 +398773,7 @@ "10:30", "11:20", "PH 407 - Phelps Hall 407", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ], "Friday": [ @@ -194193,7 +398781,7 @@ "10:30", "11:20", "PH 407 - Phelps Hall 407", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -194207,10 +398795,99 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88160\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88160/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.99868243932724, + 0.9987020492553711, + 0.9988127946853638, + 0.9985585808753967 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989357590675354, + 0.9988207221031189, + 0.9989067316055298, + 0.9989162683486938 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989261031150818, + 0.9987911581993103, + 0.9987812638282776, + 0.9987502098083496 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 12 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -194247,7 +398924,7 @@ "10:30", "11:20", "PH 310 - Phelps Hall 310", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ], "Wednesday": [ @@ -194255,7 +398932,7 @@ "10:30", "11:20", "PH 310 - Phelps Hall 310", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ], "Friday": [ @@ -194263,7 +398940,7 @@ "10:30", "11:20", "PH 310 - Phelps Hall 310", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -194277,10 +398954,93 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92830\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92830/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.990992546081543, + 0.9989000558853149 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.997927188873291, + 0.9985894560813904, + 0.9977108240127563 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9983881711959839, + 0.9970558881759644, + 0.9945679903030396 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 0.875, + "final_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + } + } }, { "season_code": "202303", @@ -194319,7 +399079,7 @@ "11:35", "12:50", "PH 312 - Phelps Hall 312", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ], "Wednesday": [ @@ -194327,7 +399087,7 @@ "11:35", "12:50", "PH 312 - Phelps Hall 312", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -194338,17 +399098,45 @@ "Hu" ], "flags": [ - "YC CLSS: Lit\/Cult Anc Rome" + "YC CLSS: Lit/Cult Anc Rome" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "Sunday, December 17, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89336\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89336/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -194385,7 +399173,7 @@ "14:30", "15:45", "WLH 003 - William L. Harkness Hall 003", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -194393,7 +399181,7 @@ "14:30", "15:45", "WLH 003 - William L. Harkness Hall 003", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -194406,13 +399194,146 @@ ], "regnotes": "", "rp_attr": "", - "classnotes": "This fall, LATN 444 will also serve as the \"bridge course,\" a point of entry (or consolidation) for reading Latin at the 400 (advanced) level. See https:\/\/classics.yale.edu\/undergraduate\/major-classics for an explanation of how language levels for Latin and Greek are designated at Yale.", + "classnotes": "This fall, LATN 444 will also serve as the \"bridge course,\" a point of entry (or consolidation) for reading Latin at the 400 (advanced) level. See https://classics.yale.edu/undergraduate/major-classics for an explanation of how language levels for Latin and Greek are designated at Yale.", "final_exam": "Monday, December 18, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90430\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/90430/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983882904052734, + 0.9988214373588562, + 0.9985529780387878, + 0.9987679123878479, + 0.998785674571991, + 0.998754620552063, + 0.9988123178482056, + 0.9988419413566589, + 0.9989093542098999, + 0.998865008354187, + 0.9986194372177124 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988225102424622, + 0.9987720847129822, + 0.9989320635795593, + 0.9988539218902588, + 0.998767614364624, + 0.9992823004722595, + 0.998881995677948, + 0.9959924817085266, + 0.9987940788269043, + 0.9986475110054016, + 0.9987611770629883 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8181818181818182, + "NEGATIVE": 0.18181818181818182 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8181818181818182 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9948688745498657, + 0.9985516667366028, + 0.997117280960083, + 0.9984812140464783, + 0.9987591505050659, + 0.999497652053833, + 0.9988172054290771, + 0.9989084005355835, + 0.9988395571708679, + 0.9988407492637634, + 0.9986048340797424 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9090909090909091 + ] + }, + "final_label": "POSITIVE", + "final_count": 30, + "final_proportion": 0.9090909090909091, + "final_counts": { + "POSITIVE": 30, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + } + } }, { "season_code": "202303", @@ -194450,7 +399371,7 @@ "13:00", "14:15", "PH 207 - Phelps Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ], "Thursday": [ @@ -194458,7 +399379,7 @@ "13:00", "14:15", "PH 207 - Phelps Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -194469,17 +399390,110 @@ "Hu" ], "flags": [ - "YC CLSS: Lit\/Cult Anc Rome" + "YC CLSS: Lit/Cult Anc Rome" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89337\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89337/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987205862998962, + 0.9988728165626526, + 0.9988248944282532, + 0.9988915324211121, + 0.9989069700241089 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989047050476074, + 0.9989251494407654, + 0.9988318085670471, + 0.9989069700241089 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987264275550842, + 0.9988644123077393, + 0.9988403916358948, + 0.998683750629425, + 0.9988460540771484 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 14 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -194518,7 +399532,7 @@ "11:35", "12:50", "PH 312 - Phelps Hall 312", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ], "Wednesday": [ @@ -194526,7 +399540,7 @@ "11:35", "12:50", "PH 312 - Phelps Hall 312", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -194538,10 +399552,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89336\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89336/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -194579,7 +399621,7 @@ "13:00", "14:15", "PH 207 - Phelps Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ], "Thursday": [ @@ -194587,7 +399629,7 @@ "13:00", "14:15", "PH 207 - Phelps Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -194599,10 +399641,103 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89337\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89337/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987205862998962, + 0.9988728165626526, + 0.9988248944282532, + 0.9988915324211121, + 0.9989069700241089 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989047050476074, + 0.9989251494407654, + 0.9988318085670471, + 0.9989069700241089 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987264275550842, + 0.9988644123077393, + 0.9988403916358948, + 0.998683750629425, + 0.9988460540771484 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 14 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -194640,7 +399775,7 @@ "9:00", "10:15", "LORIA 358 - Loria Center 358", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ], "Wednesday": [ @@ -194648,7 +399783,7 @@ "9:00", "10:15", "LORIA 358 - Loria Center 358", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -194659,13 +399794,120 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "This course may satisfy a historical distribution requirement for prospective English majors with permission from the instructor and the DUS. The English Distribution Request Form is available at https:\/\/english.yale.edu\/undergraduate\/deadlines-and-forms.", + "classnotes": "This course may satisfy a historical distribution requirement for prospective English majors with permission from the instructor and the DUS. The English Distribution Request Form is available at https://english.yale.edu/undergraduate/deadlines-and-forms.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88510\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88510/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987868666648865, + 0.9986658096313477, + 0.998671293258667, + 0.9988376498222351, + 0.9984069466590881, + 0.9987953901290894, + 0.9988762736320496 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988855719566345, + 0.9988389611244202, + 0.9989253878593445, + 0.9989031553268433, + 0.9989117383956909, + 0.9988957643508911 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989027976989746, + 0.9930095672607422, + 0.9989042282104492, + 0.9989355206489563, + 0.9989022016525269, + 0.9974592328071594, + 0.9988712668418884, + 0.9989086389541626 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 21, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 21 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -194703,7 +399945,7 @@ "11:35", "12:50", "DOW 112 - Dow Hall 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ], "Wednesday": [ @@ -194711,7 +399953,7 @@ "11:35", "12:50", "DOW 112 - Dow Hall 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ] }, @@ -194726,10 +399968,99 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88166\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88166/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986559152603149, + 0.9989206790924072, + 0.9787597060203552, + 0.9988994598388672 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988560676574707, + 0.9924554824829102, + 0.9977320432662964 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.998793363571167, + 0.9989187717437744, + 0.997117280960083, + 0.9981145858764648 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 0.9090909090909091, + "final_counts": { + "POSITIVE": 10, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + } + } }, { "season_code": "202303", @@ -194767,7 +400098,7 @@ "13:00", "14:15", "WALL53 AUD - 53 Wall Street AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/559554" + "https://map.yale.edu/?id=1910#!m/559554" ] ], "Thursday": [ @@ -194775,7 +400106,7 @@ "13:00", "14:15", "WALL53 AUD - 53 Wall Street AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/559554" + "https://map.yale.edu/?id=1910#!m/559554" ] ] }, @@ -194792,10 +400123,215 @@ "classnotes": "", "final_exam": "Saturday, December 16, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88173\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88173/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9975751042366028, + 0.9988784193992615, + 0.998880922794342, + 0.9986238479614258, + 0.9988561868667603, + 0.9971554279327393, + 0.9988870024681091, + 0.998799204826355, + 0.9986581802368164, + 0.9989099502563477, + 0.9989032745361328, + 0.9985612034797668, + 0.9989117383956909, + 0.9989011287689209, + 0.9988571405410767, + 0.9988834261894226, + 0.9984662532806396, + 0.9989112615585327, + 0.9964547157287598, + 0.9988996982574463, + 0.9989169836044312, + 0.9986873269081116, + 0.9989056587219238, + 0.998744010925293 + ], + "sentiment_counts": { + "POSITIVE": 24, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989123344421387, + 0.998933732509613, + 0.9907287359237671, + 0.9471314549446106, + 0.9979667663574219, + 0.9987672567367554, + 0.9989367127418518, + 0.97334223985672, + 0.9988799691200256, + 0.99887615442276, + 0.998810887336731, + 0.9988043308258057, + 0.9989204406738281, + 0.9989251494407654, + 0.9989070892333984, + 0.9989354014396667, + 0.9987095594406128, + 0.9988580942153931, + 0.9989017248153687, + 0.9989116191864014, + 0.999351441860199, + 0.9988069534301758 + ], + "sentiment_counts": { + "POSITIVE": 19, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.8636363636363636, + "NEGATIVE": 0.13636363636363635 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8636363636363636 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988777041435242, + 0.9988897442817688, + 0.9988584518432617, + 0.9986823201179504, + 0.9989179372787476, + 0.9988916516304016, + 0.9988157749176025, + 0.9989365935325623, + 0.9866808652877808, + 0.9987249970436096, + 0.9988269209861755, + 0.9988723397254944, + 0.9988893866539001, + 0.9989131689071655, + 0.9989326596260071, + 0.9988736510276794, + 0.998914361000061, + 0.9988781809806824, + 0.9989149570465088, + 0.9989351630210876, + 0.9995115995407104, + 0.99744713306427, + 0.9989312291145325 + ], + "sentiment_counts": { + "POSITIVE": 21, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.9130434782608695, + "NEGATIVE": 0.08695652173913043 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9130434782608695 + ] + }, + "final_label": "POSITIVE", + "final_count": 64, + "final_proportion": 0.927536231884058, + "final_counts": { + "POSITIVE": 64, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.927536231884058, + "NEGATIVE": 0.07246376811594203 + } + } }, { "season_code": "202303", @@ -194835,7 +400371,7 @@ "11:35", "12:25", "WTS B35 - Watson Center 60 Sachem Street B35", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Tuesday": [ @@ -194843,7 +400379,7 @@ "11:35", "12:25", "WTS B35 - Watson Center 60 Sachem Street B35", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -194851,7 +400387,7 @@ "11:35", "12:25", "WTS B35 - Watson Center 60 Sachem Street B35", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -194859,7 +400395,7 @@ "11:35", "12:25", "WTS B35 - Watson Center 60 Sachem Street B35", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Friday": [ @@ -194867,7 +400403,7 @@ "11:35", "12:25", "WTS B35 - Watson Center 60 Sachem Street B35", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -194881,15 +400417,43 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88656\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "", - "description": "This course explores how languages get invented, drawing inspiration both from well-known constructed\/invented languages like Klingon, Dothraki, and Esperanto, as well as from natural languages. Students learn about the primary linguistic aspects of natural language\u2014Phonetics, Phonology, Morphology, Syntax, and Semantics\u2014and learn how those aspects of grammar are used in various constructed languages. Students, working in small groups, create and describe a new language (or at least a fragment of a new language) over the course of the semester, using the principles learned in class.", + "syllabus_url": "https://yale.instructure.com/courses/88656/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } + }, + { + "season_code": "202303", + "requirements": "", + "description": "This course explores how languages get invented, drawing inspiration both from well-known constructed/invented languages like Klingon, Dothraki, and Esperanto, as well as from natural languages. Students learn about the primary linguistic aspects of natural language\u2014Phonetics, Phonology, Morphology, Syntax, and Semantics\u2014and learn how those aspects of grammar are used in various constructed languages. Students, working in small groups, create and describe a new language (or at least a fragment of a new language) over the course of the semester, using the principles learned in class.", "short_title": "How to Create a Language: Con...", "title": "How to Create a Language: Constructed Language and Natural Language", "school": "YC", @@ -194926,7 +400490,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -194968,7 +400560,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -195008,7 +400628,7 @@ "10:30", "11:20", "WTS B35 - Watson Center 60 Sachem Street B35", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -195016,7 +400636,7 @@ "10:30", "11:20", "WTS B35 - Watson Center 60 Sachem Street B35", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Friday": [ @@ -195024,7 +400644,7 @@ "10:30", "11:20", "WTS B35 - Watson Center 60 Sachem Street B35", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -195038,10 +400658,81 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88658\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88658/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.998731791973114 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989050626754761 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988837838172913 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 3, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 3 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -195082,7 +400773,7 @@ "11:35", "12:50", "LC 209 - Linsly-Chittenden Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -195090,7 +400781,7 @@ "11:35", "12:50", "LC 209 - Linsly-Chittenden Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -195108,10 +400799,115 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89648\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89648/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987421631813049, + 0.9985588192939758, + 0.9986642599105835, + 0.9986306428909302, + 0.9987571239471436, + 0.9988455772399902, + 0.9986991882324219 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9978771209716797, + 0.9988460540771484, + 0.9988961219787598, + 0.9989224672317505, + 0.9988743662834167 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989064931869507, + 0.997453510761261, + 0.9988991022109985, + 0.9988448619842529, + 0.9980862140655518, + 0.9989029169082642, + 0.9989354014396667, + 0.9987841248512268 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 20 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -195153,7 +400949,7 @@ "14:30", "15:45", "HQ 129 - Humanities Quadrangle 129", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -195161,7 +400957,7 @@ "14:30", "15:45", "HQ 129 - Humanities Quadrangle 129", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -195179,15 +400975,43 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89239\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "", - "description": "The crisis of language predates the invention of ChatGPT (who may or may not have helped write this syllabus). This course delves into the concept of language crises and its long history from a philosophical and literary perspective, examining how crises of language are represented in literature and how they reflect broader philosophical questions about language, identity, and power. We explore different philosophical approaches to language, such as the history of language and philology (Herder, Humboldt, Nietzsche), structuralism and post-structuralism (Saussure), analytical and pragmatic philosophies (Wittgenstein), phenomenology and deconstruction (Heidegger), and analyze how these theories shape our understanding of language while simultaneously evoking its crisis.\u00a0The course also examines how such language crises are represented and produced in literature and the arts; how authors and artists approach the complexities of language loss, and how crises help birth alternative systems of signification. Through close readings of literary texts by Hofmannsthal, Musil, Bachmann, et. al., we analyze the symbolic and metaphorical significance of language crises, as well as the ethical and political implications of language loss for (cultural) identity. Experimental use of language such as DaDa artwork, performance cultures, and \"Sprachspiel\" poetry by the \"Wiener Gruppe,\" as well as contemporary KI\/AI literature, further complement the theoretical readings. By exploring language crises through the lens of philosophy and literature, we gain a deeper understanding of the role of language\u2014and its many crises\u2014in shaping our understanding of ourselves and our communities.", + "syllabus_url": "https://yale.instructure.com/courses/89239/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } + }, + { + "season_code": "202303", + "requirements": "", + "description": "The crisis of language predates the invention of ChatGPT (who may or may not have helped write this syllabus). This course delves into the concept of language crises and its long history from a philosophical and literary perspective, examining how crises of language are represented in literature and how they reflect broader philosophical questions about language, identity, and power. We explore different philosophical approaches to language, such as the history of language and philology (Herder, Humboldt, Nietzsche), structuralism and post-structuralism (Saussure), analytical and pragmatic philosophies (Wittgenstein), phenomenology and deconstruction (Heidegger), and analyze how these theories shape our understanding of language while simultaneously evoking its crisis.\u00a0The course also examines how such language crises are represented and produced in literature and the arts; how authors and artists approach the complexities of language loss, and how crises help birth alternative systems of signification. Through close readings of literary texts by Hofmannsthal, Musil, Bachmann, et. al., we analyze the symbolic and metaphorical significance of language crises, as well as the ethical and political implications of language loss for (cultural) identity. Experimental use of language such as DaDa artwork, performance cultures, and \"Sprachspiel\" poetry by the \"Wiener Gruppe,\" as well as contemporary KI/AI literature, further complement the theoretical readings. By exploring language crises through the lens of philosophy and literature, we gain a deeper understanding of the role of language\u2014and its many crises\u2014in shaping our understanding of ourselves and our communities.", "short_title": "\u201cSprachkrise\u201d\u2014Philosophies & ...", "title": "\u201cSprachkrise\u201d\u2014Philosophies & Language Crises", "school": "YC", @@ -195221,7 +401045,7 @@ "13:30", "15:20", "WALL81 301 - 81 Wall Street 301", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -195239,10 +401063,109 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89548\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89548/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989271759986877, + 0.9986422657966614, + 0.9985001087188721, + 0.9988093376159668 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988709092140198, + 0.9985893368721008, + 0.9989199638366699, + 0.9987195730209351, + 0.9988613128662109, + 0.996631920337677 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989349246025085, + 0.997117280960083, + 0.9989315867424011, + 0.9985492825508118, + 0.9918227791786194, + 0.9987828135490417 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 0.9375, + "final_counts": { + "POSITIVE": 15, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9375, + "NEGATIVE": 0.0625 + } + } }, { "season_code": "202303", @@ -195280,7 +401203,7 @@ "9:25", "11:15", "DOW 215 - Dow Hall 215", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ] }, @@ -195289,9 +401212,9 @@ "So" ], "flags": [ - "YC LING: Adv Courses\/Seminars", + "YC LING: Adv Courses/Seminars", "YC LING: Depth", - "YC LING Depth: Lang&Mind\/Brain", + "YC LING Depth: Lang&Mind/Brain", "YC LING: Elective" ], "regnotes": "", @@ -195299,10 +401222,95 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88184\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88184/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988125562667847, + 0.9987892508506775, + 0.9987264275550842 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989210367202759, + 0.998820960521698, + 0.9986342787742615 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989306330680847, + 0.9983008503913879, + 0.9994977712631226 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 8, + "final_proportion": 0.8888888888888888, + "final_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + } + } }, { "season_code": "202303", @@ -195340,7 +401348,7 @@ "13:00", "14:15", "DOW 112 - Dow Hall 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ], "Thursday": [ @@ -195348,7 +401356,7 @@ "13:00", "14:15", "DOW 112 - Dow Hall 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ] }, @@ -195359,7 +401367,7 @@ "So" ], "flags": [ - "YC LING: Adv Courses\/Seminars", + "YC LING: Adv Courses/Seminars", "YC LING: Depth", "YC LING Depth: Historical Ling", "YC LING: Elective" @@ -195369,10 +401377,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88189\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88189/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -195412,7 +401448,7 @@ "14:30", "15:45", "DOW 112 - Dow Hall 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ], "Thursday": [ @@ -195420,7 +401456,7 @@ "14:30", "15:45", "DOW 112 - Dow Hall 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ] }, @@ -195432,7 +401468,7 @@ "YC EDST: Indv Society", "YC LING: Intermediate Courses", "YC LING: Breadth", - "YC LING Brdth: Lang&Mind\/Brain", + "YC LING Brdth: Lang&Mind/Brain", "YC LING: Elective" ], "regnotes": "", @@ -195440,10 +401476,107 @@ "classnotes": "", "final_exam": "Monday, December 18, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88196\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88196/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988497495651245, + 0.9988068342208862, + 0.995704710483551, + 0.9986888766288757, + 0.9985502362251282 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9994514584541321, + 0.9949553608894348, + 0.9987591505050659, + 0.9979653358459473, + 0.9988920092582703, + 0.9970979690551758 + ], + "sentiment_counts": { + "NEGATIVE": 4, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.6666666666666666, + "POSITIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9980016350746155, + 0.998740017414093, + 0.9933339953422546, + 0.9985765218734741 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 1 + }, + "sentiment_distribution": { + "NEGATIVE": 0.75, + "POSITIVE": 0.25 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.75 + ] + }, + "final_label": "neutral", + "final_count": 8, + "final_proportion": 0.5, + "final_counts": { + "POSITIVE": 8, + "NEGATIVE": 7 + }, + "final_distribution": { + "POSITIVE": 0.5333333333333333, + "NEGATIVE": 0.4666666666666667 + } + } }, { "season_code": "202303", @@ -195482,7 +401615,7 @@ "13:00", "14:15", "DOW 112 - Dow Hall 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ], "Wednesday": [ @@ -195490,7 +401623,7 @@ "13:00", "14:15", "DOW 112 - Dow Hall 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ] }, @@ -195509,10 +401642,85 @@ "classnotes": "", "final_exam": "Wednesday, December 20, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88201\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88201/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989010095596313 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989218711853027, + 0.9989344477653503 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988962411880493, + 0.9989055395126343 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 5, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 5 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -195550,7 +401758,7 @@ "16:00", "17:15", "WLH 207 - William L. Harkness Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -195558,7 +401766,7 @@ "16:00", "17:15", "WLH 207 - William L. Harkness Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -195576,10 +401784,129 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88206\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88206/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984847903251648, + 0.9989126920700073, + 0.9988862872123718, + 0.9976868629455566, + 0.9986810088157654, + 0.9988237023353577, + 0.9983611702919006, + 0.9896807074546814 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987624883651733, + 0.9979726672172546, + 0.9988706707954407, + 0.996793806552887, + 0.9987190961837769, + 0.9982411861419678, + 0.9989301562309265, + 0.9989151954650879, + 0.9988681077957153 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.7777777777777778, + "NEGATIVE": 0.2222222222222222 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7777777777777778 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989092350006104, + 0.9988956451416016, + 0.9957179427146912, + 0.9989259839057922, + 0.9988234639167786, + 0.9971267580986023, + 0.9989306330680847, + 0.9985265731811523, + 0.9989308714866638 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 24, + "final_proportion": 0.9230769230769231, + "final_counts": { + "POSITIVE": 24, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9230769230769231, + "NEGATIVE": 0.07692307692307693 + } + } }, { "season_code": "202303", @@ -195617,7 +401944,7 @@ "9:00", "10:15", "WLH 002 - William L. Harkness Hall 002", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -195625,7 +401952,7 @@ "9:00", "10:15", "WLH 002 - William L. Harkness Hall 002", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -195644,10 +401971,109 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88211\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88211/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986894726753235, + 0.995590090751648, + 0.9987722039222717, + 0.9985439777374268, + 0.9928798079490662, + 0.9953657388687134 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998764157295227, + 0.9988480806350708, + 0.9903016090393066, + 0.9988234639167786 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9913173913955688, + 0.9988312125205994, + 0.9987131357192993, + 0.9982777833938599, + 0.998659610748291, + 0.9987115859985352 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 0.875, + "final_counts": { + "POSITIVE": 14, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + } + } }, { "season_code": "202303", @@ -195685,7 +402111,7 @@ "14:30", "15:45", "DOW 112 - Dow Hall 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ], "Wednesday": [ @@ -195693,7 +402119,7 @@ "14:30", "15:45", "DOW 112 - Dow Hall 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ] }, @@ -195702,7 +402128,7 @@ "So" ], "flags": [ - "YC LING: Adv Courses\/Seminars", + "YC LING: Adv Courses/Seminars", "YC LING: Depth", "YC LING Depth: Phonology", "YC LING: Elective" @@ -195712,15 +402138,96 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88216\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88216/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986956715583801, + 0.9988310933113098, + 0.9984744191169739 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988755583763123, + 0.9989194869995117, + 0.9988273978233337 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9976637363433838, + 0.9988535642623901 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 8, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 8 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", "requirements": "Prerequisites: LING 220 and LING 232 or permission of instructor.\u00a0", - "description": "Study of experimental methods to record articulatory movements using electromagnetic articulography and\/or ultrasound technologies and analytical approaches for relating articulatory movements to phonological structure. Hands-on training in laboratory techniques are paired with discussion of related experimental and theoretical research.", + "description": "Study of experimental methods to record articulatory movements using electromagnetic articulography and/or ultrasound technologies and analytical approaches for relating articulatory movements to phonological structure. Hands-on training in laboratory techniques are paired with discussion of related experimental and theoretical research.", "short_title": "Articulatory Phonology", "title": "Articulatory Phonology", "school": "YC", @@ -195753,7 +402260,7 @@ "9:25", "11:15", "DOW 112 - Dow Hall 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ] }, @@ -195762,7 +402269,7 @@ "So" ], "flags": [ - "YC LING: Adv Courses\/Seminars", + "YC LING: Adv Courses/Seminars", "YC LING: Depth", "YC LING Depth: Phonetics", "YC LING: Elective" @@ -195772,10 +402279,38 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88221\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88221/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -195813,7 +402348,7 @@ "11:35", "12:50", "DOW 100 - Dow Hall 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ], "Wednesday": [ @@ -195821,7 +402356,7 @@ "11:35", "12:50", "DOW 100 - Dow Hall 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ] }, @@ -195839,15 +402374,138 @@ "classnotes": "", "final_exam": "Sunday, December 17, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88226\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "", - "description": "Introduction to truth-conditional compositional semantics. Set theory, first- and higher-order logic, and the lambda calculus as they relate to the study of natural language meaning. Some attention to analyzing the meanings of tense\/aspect markers, adverbs, and modals.", + "syllabus_url": "https://yale.instructure.com/courses/88226/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985314607620239, + 0.9989302754402161, + 0.9987951517105103, + 0.9988279938697815, + 0.9937760829925537, + 0.9988879561424255, + 0.9989134073257446, + 0.9989039897918701 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9953145980834961, + 0.998879611492157, + 0.998904824256897, + 0.9987333416938782, + 0.9989137649536133, + 0.9988598823547363, + 0.9989233613014221, + 0.998871386051178, + 0.9989262223243713 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 8 + }, + "sentiment_distribution": { + "NEGATIVE": 0.1111111111111111, + "POSITIVE": 0.8888888888888888 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9944941401481628, + 0.9987123012542725, + 0.9988732933998108, + 0.9988898634910583, + 0.9989060163497925, + 0.9988616704940796, + 0.9989294409751892, + 0.998829185962677, + 0.998928964138031, + 0.9989056587219238, + 0.9868841171264648 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 27, + "final_proportion": 0.9642857142857143, + "final_counts": { + "POSITIVE": 27, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9642857142857143, + "NEGATIVE": 0.03571428571428571 + } + } + }, + { + "season_code": "202303", + "requirements": "", + "description": "Introduction to truth-conditional compositional semantics. Set theory, first- and higher-order logic, and the lambda calculus as they relate to the study of natural language meaning. Some attention to analyzing the meanings of tense/aspect markers, adverbs, and modals.", "short_title": "Semantics I", "title": "Semantics I", "school": "YC", @@ -195880,7 +402538,7 @@ "11:35", "12:50", "DOW 100 - Dow Hall 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ], "Thursday": [ @@ -195888,7 +402546,7 @@ "11:35", "12:50", "DOW 100 - Dow Hall 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ] }, @@ -195901,7 +402559,7 @@ "flags": [ "YC LING: Intermediate Courses", "YC LING: Breadth", - "YC LING Brdth: Semntcs\/Pragmat", + "YC LING Brdth: Semntcs/Pragmat", "YC LING: Elective" ], "regnotes": "", @@ -195909,10 +402567,103 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88233\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88233/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987547397613525, + 0.9988502264022827, + 0.9988923668861389, + 0.9988590478897095 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998863935470581, + 0.9988321661949158, + 0.9988880753517151, + 0.9989309906959534, + 0.9988371729850769 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989173412322998, + 0.998895525932312, + 0.998928964138031, + 0.9989217519760132, + 0.9989274144172668 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 14 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -195950,7 +402701,7 @@ "11:35", "12:50", "LC 317 - Linsly-Chittenden Hall 317", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -195958,7 +402709,7 @@ "11:35", "12:50", "LC 317 - Linsly-Chittenden Hall 317", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -195974,10 +402725,131 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88601\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88601/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988968372344971, + 0.9988853335380554, + 0.9988003969192505, + 0.9988263249397278, + 0.9975695013999939, + 0.9984750151634216, + 0.9983165264129639, + 0.9987867474555969, + 0.9987196922302246 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9968260526657104, + 0.9974603652954102, + 0.9974164962768555, + 0.9989306330680847, + 0.998806357383728, + 0.9988588094711304, + 0.998601496219635, + 0.9989582300186157 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.998925507068634, + 0.9989318251609802, + 0.9986709356307983, + 0.9989390969276428, + 0.9989354014396667, + 0.9989294409751892, + 0.998883068561554, + 0.9989181756973267, + 0.9943373799324036, + 0.9994702935218811 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "final_label": "POSITIVE", + "final_count": 25, + "final_proportion": 0.9259259259259259, + "final_counts": { + "POSITIVE": 25, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9259259259259259, + "NEGATIVE": 0.07407407407407407 + } + } }, { "season_code": "202303", @@ -196015,7 +402887,7 @@ "9:25", "11:15", "DOW 112 - Dow Hall 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ] }, @@ -196024,7 +402896,7 @@ "So" ], "flags": [ - "YC LING: Adv Courses\/Seminars", + "YC LING: Adv Courses/Seminars", "YC LING: Depth", "YC LING Depth: Phonology", "YC LING Depth: Historical Ling", @@ -196035,10 +402907,87 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88238\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88238/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985522627830505, + 0.9988332390785217 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989204406738281, + 0.998885452747345 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998734176158905, + 0.9987994432449341 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 6 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -196072,7 +403021,7 @@ "So" ], "flags": [ - "YC LING: Adv Courses\/Seminars", + "YC LING: Adv Courses/Seminars", "YC LING: Breadth", "YC LING: Depth", "YC LING Brdth: Comp Ling", @@ -196088,7 +403037,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -196126,7 +403103,7 @@ "9:00", "10:15", "DOW 215 - Dow Hall 215", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ], "Thursday": [ @@ -196134,7 +403111,7 @@ "9:00", "10:15", "DOW 215 - Dow Hall 215", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ] }, @@ -196143,7 +403120,7 @@ "So" ], "flags": [ - "YC LING: Adv Courses\/Seminars", + "YC LING: Adv Courses/Seminars", "YC LING: Depth", "YC LING Depth: Comp Linguistic", "YC LING: Elective" @@ -196153,10 +403130,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90081\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90081/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -196194,7 +403199,7 @@ "10:30", "12:20", "WLH 002 - William L. Harkness Hall 002", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -196203,7 +403208,7 @@ "So" ], "flags": [ - "YC LING: Adv Courses\/Seminars", + "YC LING: Adv Courses/Seminars", "YC LING: Depth", "YC LING Depth: Syntax", "YC LING: Elective" @@ -196213,15 +403218,102 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88248\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88248/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "Prerequisite: LING 263\/LING 663 or permission of the instructor.", - "description": "The concept of singularity vs. plurality is arguably universal, yet its morpho-syntactic expression is subject to a great deal of cross-linguistic variation. Many languages have one form for singular reference and another for plural. English, for example, canonically uses the unmarked form of a noun for singular reference and a plural marked form for plural reference, at least with count nouns: dog vs. dog+s. In many languages, the base form itself can be used to refer to a plurality but there is nevertheless a form that can be added to ensure plurality. Mandarin, for example, uses the base form itself to refer to singularities as well as pluralities but the addition of the plural marker rules out the possibility of singular reference: gou \"the dog\/the dogs\" vs. gou-men \"the dogs\". Finally, there are languages, such as Cuzco Quechua, in which the verb has a singular and a plural form, such that the singular form refers to a single event while the plural form refers to a plurality of events. In this course we discuss the semantic underpinnings of these three types of plural morphology, plural marking as in English -s, optional plurality as in Mandarin -men, and pluractionality as in Quechua plural marked verbs.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985169768333435, + 0.9987257122993469 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989252686500549, + 0.9988861680030823, + 0.9826977849006653, + 0.9989320635795593 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998704195022583, + 0.9988309741020203, + 0.9984580278396606, + 0.9987965822219849 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 0.9, + "final_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + } + } + }, + { + "season_code": "202303", + "requirements": "Prerequisite: LING 263/LING 663 or permission of the instructor.", + "description": "The concept of singularity vs. plurality is arguably universal, yet its morpho-syntactic expression is subject to a great deal of cross-linguistic variation. Many languages have one form for singular reference and another for plural. English, for example, canonically uses the unmarked form of a noun for singular reference and a plural marked form for plural reference, at least with count nouns: dog vs. dog+s. In many languages, the base form itself can be used to refer to a plurality but there is nevertheless a form that can be added to ensure plurality. Mandarin, for example, uses the base form itself to refer to singularities as well as pluralities but the addition of the plural marker rules out the possibility of singular reference: gou \"the dog/the dogs\" vs. gou-men \"the dogs\". Finally, there are languages, such as Cuzco Quechua, in which the verb has a singular and a plural form, such that the singular form refers to a single event while the plural form refers to a plurality of events. In this course we discuss the semantic underpinnings of these three types of plural morphology, plural marking as in English -s, optional plurality as in Mandarin -men, and pluractionality as in Quechua plural marked verbs.", "short_title": "Plurality, Optional Plurality...", "title": "Plurality, Optional Plurality, Pluractionality", "school": "YC", @@ -196254,7 +403346,7 @@ "9:25", "11:15", "DOW 112 - Dow Hall 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ] }, @@ -196268,10 +403360,63 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88253\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88253/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9977503418922424, + 0.9987816214561462 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988059997558594 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 3, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 3 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -196314,7 +403459,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -196351,24 +403524,101 @@ "16:00", "17:50", "DOW - DOW", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ] }, "skills": [], "areas": [], "flags": [ - "YC LING: Res Courses\/Sr Essay" + "YC LING: Res Courses/Sr Essay" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88259\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88259/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9962190985679626, + 0.9988027811050415 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.997420072555542, + 0.998859167098999, + 0.9989111423492432 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9977654218673706 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 6 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -196409,7 +403659,7 @@ "11:35", "12:50", "LC 209 - Linsly-Chittenden Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -196417,7 +403667,7 @@ "11:35", "12:50", "LC 209 - Linsly-Chittenden Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -196431,10 +403681,115 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89648\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89648/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987421631813049, + 0.9985588192939758, + 0.9986642599105835, + 0.9986306428909302, + 0.9987571239471436, + 0.9988455772399902, + 0.9986991882324219 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9978771209716797, + 0.9988460540771484, + 0.9988961219787598, + 0.9989224672317505, + 0.9988743662834167 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989064931869507, + 0.997453510761261, + 0.9988991022109985, + 0.9988448619842529, + 0.9980862140655518, + 0.9989029169082642, + 0.9989354014396667, + 0.9987841248512268 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 20 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -196472,7 +403827,7 @@ "13:00", "14:15", "WALL53 AUD - 53 Wall Street AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/559554" + "https://map.yale.edu/?id=1910#!m/559554" ] ], "Thursday": [ @@ -196480,7 +403835,7 @@ "13:00", "14:15", "WALL53 AUD - 53 Wall Street AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/559554" + "https://map.yale.edu/?id=1910#!m/559554" ] ] }, @@ -196492,15 +403847,220 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88173\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88173/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "", - "description": "An introduction to Sanskrit language and grammar. Focus on learning to read and translate basic Sanskrit sentences in the Indian Devanagari script. No prior background in Sanskrit assumed. Credit only on completion of SKRT 520\/LING 525.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9975751042366028, + 0.9988784193992615, + 0.998880922794342, + 0.9986238479614258, + 0.9988561868667603, + 0.9971554279327393, + 0.9988870024681091, + 0.998799204826355, + 0.9986581802368164, + 0.9989099502563477, + 0.9989032745361328, + 0.9985612034797668, + 0.9989117383956909, + 0.9989011287689209, + 0.9988571405410767, + 0.9988834261894226, + 0.9984662532806396, + 0.9989112615585327, + 0.9964547157287598, + 0.9988996982574463, + 0.9989169836044312, + 0.9986873269081116, + 0.9989056587219238, + 0.998744010925293 + ], + "sentiment_counts": { + "POSITIVE": 24, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989123344421387, + 0.998933732509613, + 0.9907287359237671, + 0.9471314549446106, + 0.9979667663574219, + 0.9987672567367554, + 0.9989367127418518, + 0.97334223985672, + 0.9988799691200256, + 0.99887615442276, + 0.998810887336731, + 0.9988043308258057, + 0.9989204406738281, + 0.9989251494407654, + 0.9989070892333984, + 0.9989354014396667, + 0.9987095594406128, + 0.9988580942153931, + 0.9989017248153687, + 0.9989116191864014, + 0.999351441860199, + 0.9988069534301758 + ], + "sentiment_counts": { + "POSITIVE": 19, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.8636363636363636, + "NEGATIVE": 0.13636363636363635 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8636363636363636 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988777041435242, + 0.9988897442817688, + 0.9988584518432617, + 0.9986823201179504, + 0.9989179372787476, + 0.9988916516304016, + 0.9988157749176025, + 0.9989365935325623, + 0.9866808652877808, + 0.9987249970436096, + 0.9988269209861755, + 0.9988723397254944, + 0.9988893866539001, + 0.9989131689071655, + 0.9989326596260071, + 0.9988736510276794, + 0.998914361000061, + 0.9988781809806824, + 0.9989149570465088, + 0.9989351630210876, + 0.9995115995407104, + 0.99744713306427, + 0.9989312291145325 + ], + "sentiment_counts": { + "POSITIVE": 21, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.9130434782608695, + "NEGATIVE": 0.08695652173913043 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9130434782608695 + ] + }, + "final_label": "POSITIVE", + "final_count": 64, + "final_proportion": 0.927536231884058, + "final_counts": { + "POSITIVE": 64, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.927536231884058, + "NEGATIVE": 0.07246376811594203 + } + } + }, + { + "season_code": "202303", + "requirements": "", + "description": "An introduction to Sanskrit language and grammar. Focus on learning to read and translate basic Sanskrit sentences in the Indian Devanagari script. No prior background in Sanskrit assumed. Credit only on completion of SKRT 520/LING 525.", "short_title": "Introductory Sanskrit I", "title": "Introductory Sanskrit I", "school": "GS", @@ -196535,7 +404095,7 @@ "11:35", "12:25", "WTS B35 - Watson Center 60 Sachem Street B35", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Tuesday": [ @@ -196543,7 +404103,7 @@ "11:35", "12:25", "WTS B35 - Watson Center 60 Sachem Street B35", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -196551,7 +404111,7 @@ "11:35", "12:25", "WTS B35 - Watson Center 60 Sachem Street B35", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -196559,7 +404119,7 @@ "11:35", "12:25", "WTS B35 - Watson Center 60 Sachem Street B35", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Friday": [ @@ -196567,7 +404127,7 @@ "11:35", "12:25", "WTS B35 - Watson Center 60 Sachem Street B35", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -196579,10 +404139,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88656\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88656/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -196619,7 +404207,7 @@ "13:30", "15:20", "DOW 112 - Dow Hall 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ] }, @@ -196631,14 +404219,42 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88264\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88264/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", - "requirements": "Prerequisite: SKRT 520\/LING 525 or equivalent.", + "requirements": "Prerequisite: SKRT 520/LING 525 or equivalent.", "description": "The first half of a two-term sequence aimed at helping students develop the skills necessary to read texts written in Sanskrit. Readings include selections from the Hitopadesa, Kathasaritsagara, Mahabharata, and Bhagavadgita.", "short_title": "Intermediate Sanskrit I", "title": "Intermediate Sanskrit I", @@ -196674,7 +404290,7 @@ "10:30", "11:20", "WTS B35 - Watson Center 60 Sachem Street B35", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -196682,7 +404298,7 @@ "10:30", "11:20", "WTS B35 - Watson Center 60 Sachem Street B35", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Friday": [ @@ -196690,7 +404306,7 @@ "10:30", "11:20", "WTS B35 - Watson Center 60 Sachem Street B35", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -196702,10 +404318,81 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88658\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88658/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.998731791973114 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989050626754761 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988837838172913 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 3, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 3 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -196743,7 +404430,7 @@ "9:25", "11:15", "DOW 215 - Dow Hall 215", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ] }, @@ -196755,10 +404442,95 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88184\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88184/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988125562667847, + 0.9987892508506775, + 0.9987264275550842 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989210367202759, + 0.998820960521698, + 0.9986342787742615 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989306330680847, + 0.9983008503913879, + 0.9994977712631226 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 8, + "final_proportion": 0.8888888888888888, + "final_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + } + } }, { "season_code": "202303", @@ -196796,7 +404568,7 @@ "13:00", "14:15", "DOW 112 - Dow Hall 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ], "Thursday": [ @@ -196804,7 +404576,7 @@ "13:00", "14:15", "DOW 112 - Dow Hall 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ] }, @@ -196816,10 +404588,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88189\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88189/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -196859,7 +404659,7 @@ "14:30", "15:45", "DOW 112 - Dow Hall 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ], "Thursday": [ @@ -196867,7 +404667,7 @@ "14:30", "15:45", "DOW 112 - Dow Hall 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ] }, @@ -196879,10 +404679,107 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88196\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88196/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988497495651245, + 0.9988068342208862, + 0.995704710483551, + 0.9986888766288757, + 0.9985502362251282 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9994514584541321, + 0.9949553608894348, + 0.9987591505050659, + 0.9979653358459473, + 0.9988920092582703, + 0.9970979690551758 + ], + "sentiment_counts": { + "NEGATIVE": 4, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.6666666666666666, + "POSITIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9980016350746155, + 0.998740017414093, + 0.9933339953422546, + 0.9985765218734741 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 1 + }, + "sentiment_distribution": { + "NEGATIVE": 0.75, + "POSITIVE": 0.25 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.75 + ] + }, + "final_label": "neutral", + "final_count": 8, + "final_proportion": 0.5, + "final_counts": { + "POSITIVE": 8, + "NEGATIVE": 7 + }, + "final_distribution": { + "POSITIVE": 0.5333333333333333, + "NEGATIVE": 0.4666666666666667 + } + } }, { "season_code": "202303", @@ -196921,7 +404818,7 @@ "13:00", "14:15", "DOW 112 - Dow Hall 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ], "Wednesday": [ @@ -196929,7 +404826,7 @@ "13:00", "14:15", "DOW 112 - Dow Hall 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ] }, @@ -196941,10 +404838,85 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88201\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88201/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989010095596313 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989218711853027, + 0.9989344477653503 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988962411880493, + 0.9989055395126343 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 5, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 5 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -196982,7 +404954,7 @@ "16:00", "17:15", "WLH 207 - William L. Harkness Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -196990,7 +404962,7 @@ "16:00", "17:15", "WLH 207 - William L. Harkness Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -197002,10 +404974,129 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88206\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88206/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984847903251648, + 0.9989126920700073, + 0.9988862872123718, + 0.9976868629455566, + 0.9986810088157654, + 0.9988237023353577, + 0.9983611702919006, + 0.9896807074546814 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987624883651733, + 0.9979726672172546, + 0.9988706707954407, + 0.996793806552887, + 0.9987190961837769, + 0.9982411861419678, + 0.9989301562309265, + 0.9989151954650879, + 0.9988681077957153 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.7777777777777778, + "NEGATIVE": 0.2222222222222222 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7777777777777778 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989092350006104, + 0.9988956451416016, + 0.9957179427146912, + 0.9989259839057922, + 0.9988234639167786, + 0.9971267580986023, + 0.9989306330680847, + 0.9985265731811523, + 0.9989308714866638 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 24, + "final_proportion": 0.9230769230769231, + "final_counts": { + "POSITIVE": 24, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9230769230769231, + "NEGATIVE": 0.07692307692307693 + } + } }, { "season_code": "202303", @@ -197043,7 +405134,7 @@ "9:00", "10:15", "WLH 002 - William L. Harkness Hall 002", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -197051,7 +405142,7 @@ "9:00", "10:15", "WLH 002 - William L. Harkness Hall 002", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -197063,10 +405154,109 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88211\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88211/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986894726753235, + 0.995590090751648, + 0.9987722039222717, + 0.9985439777374268, + 0.9928798079490662, + 0.9953657388687134 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998764157295227, + 0.9988480806350708, + 0.9903016090393066, + 0.9988234639167786 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9913173913955688, + 0.9988312125205994, + 0.9987131357192993, + 0.9982777833938599, + 0.998659610748291, + 0.9987115859985352 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 0.875, + "final_counts": { + "POSITIVE": 14, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + } + } }, { "season_code": "202303", @@ -197104,7 +405294,7 @@ "14:30", "15:45", "DOW 112 - Dow Hall 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ], "Wednesday": [ @@ -197112,7 +405302,7 @@ "14:30", "15:45", "DOW 112 - Dow Hall 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ] }, @@ -197124,10 +405314,91 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88216\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88216/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986956715583801, + 0.9988310933113098, + 0.9984744191169739 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988755583763123, + 0.9989194869995117, + 0.9988273978233337 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9976637363433838, + 0.9988535642623901 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 8, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 8 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -197165,7 +405436,7 @@ "9:25", "11:15", "DOW 112 - Dow Hall 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ] }, @@ -197177,10 +405448,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88221\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88221/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -197218,7 +405517,7 @@ "11:35", "12:50", "DOW 100 - Dow Hall 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ], "Wednesday": [ @@ -197226,7 +405525,7 @@ "11:35", "12:50", "DOW 100 - Dow Hall 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ] }, @@ -197238,15 +405537,138 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88226\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88226/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "", - "description": "Introduction to truth-conditional compositional semantics. Set theory, first- and higher-order logic, and the lambda calculus as they relate to the study of natural language meaning. Some attention to analyzing the meanings of tense\/aspect markers, adverbs, and modals.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985314607620239, + 0.9989302754402161, + 0.9987951517105103, + 0.9988279938697815, + 0.9937760829925537, + 0.9988879561424255, + 0.9989134073257446, + 0.9989039897918701 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9953145980834961, + 0.998879611492157, + 0.998904824256897, + 0.9987333416938782, + 0.9989137649536133, + 0.9988598823547363, + 0.9989233613014221, + 0.998871386051178, + 0.9989262223243713 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 8 + }, + "sentiment_distribution": { + "NEGATIVE": 0.1111111111111111, + "POSITIVE": 0.8888888888888888 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9944941401481628, + 0.9987123012542725, + 0.9988732933998108, + 0.9988898634910583, + 0.9989060163497925, + 0.9988616704940796, + 0.9989294409751892, + 0.998829185962677, + 0.998928964138031, + 0.9989056587219238, + 0.9868841171264648 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 27, + "final_proportion": 0.9642857142857143, + "final_counts": { + "POSITIVE": 27, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9642857142857143, + "NEGATIVE": 0.03571428571428571 + } + } + }, + { + "season_code": "202303", + "requirements": "", + "description": "Introduction to truth-conditional compositional semantics. Set theory, first- and higher-order logic, and the lambda calculus as they relate to the study of natural language meaning. Some attention to analyzing the meanings of tense/aspect markers, adverbs, and modals.", "short_title": "Semantics I", "title": "Semantics I", "school": "GS", @@ -197279,7 +405701,7 @@ "11:35", "12:50", "DOW 100 - Dow Hall 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ], "Thursday": [ @@ -197287,7 +405709,7 @@ "11:35", "12:50", "DOW 100 - Dow Hall 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ] }, @@ -197299,10 +405721,103 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88233\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88233/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987547397613525, + 0.9988502264022827, + 0.9988923668861389, + 0.9988590478897095 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998863935470581, + 0.9988321661949158, + 0.9988880753517151, + 0.9989309906959534, + 0.9988371729850769 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989173412322998, + 0.998895525932312, + 0.998928964138031, + 0.9989217519760132, + 0.9989274144172668 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 14 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -197340,7 +405855,7 @@ "9:00", "10:15", "DOW 215 - Dow Hall 215", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ], "Thursday": [ @@ -197348,7 +405863,7 @@ "9:00", "10:15", "DOW 215 - Dow Hall 215", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ] }, @@ -197360,10 +405875,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90081\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90081/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -197401,7 +405944,7 @@ "9:25", "11:15", "DOW 112 - Dow Hall 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ] }, @@ -197413,10 +405956,87 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88238\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88238/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985522627830505, + 0.9988332390785217 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989204406738281, + 0.998885452747345 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998734176158905, + 0.9987994432449341 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 6 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -197454,7 +406074,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -197492,7 +406140,7 @@ "10:30", "12:20", "WLH 002 - William L. Harkness Hall 002", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -197504,15 +406152,102 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88248\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88248/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "\u00a0Prerequisite: LING 263\/LING 663 or permission of the instructor.", - "description": "The concept of singularity vs. plurality is arguably universal, yet its morpho-syntactic expression is subject to a great deal of cross-linguistic variation. Many languages have one form for singular reference and another for plural. English, for example, canonically uses the unmarked form of a noun for singular reference and a plural marked form for plural reference, at least with count nouns:\u00a0dog\u00a0vs.\u00a0dog+s. In many languages, the base form itself can be used to refer to a plurality but there is nevertheless a form that can be added to ensure plurality. Mandarin, for example, uses the base form itself to refer to singularities as well as pluralities but the addition of the plural marker rules out the possibility of singular reference:\u00a0gou\u00a0\"the dog\/the dogs\" vs.\u00a0gou-men\u00a0\"the dogs\". Finally, there are languages, such as Cuzco Quechua, in which the verb has a singular and a plural form, such that the singular form refers to a single event while the plural form refers to a plurality of events. In this course we discuss the semantic underpinnings of these three types of plural morphology, plural marking as in English\u00a0-s, optional plurality as in Mandarin\u00a0-men, and pluractionality as in Quechua plural marked verbs.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985169768333435, + 0.9987257122993469 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989252686500549, + 0.9988861680030823, + 0.9826977849006653, + 0.9989320635795593 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998704195022583, + 0.9988309741020203, + 0.9984580278396606, + 0.9987965822219849 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 0.9, + "final_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + } + } + }, + { + "season_code": "202303", + "requirements": "\u00a0Prerequisite: LING 263/LING 663 or permission of the instructor.", + "description": "The concept of singularity vs. plurality is arguably universal, yet its morpho-syntactic expression is subject to a great deal of cross-linguistic variation. Many languages have one form for singular reference and another for plural. English, for example, canonically uses the unmarked form of a noun for singular reference and a plural marked form for plural reference, at least with count nouns:\u00a0dog\u00a0vs.\u00a0dog+s. In many languages, the base form itself can be used to refer to a plurality but there is nevertheless a form that can be added to ensure plurality. Mandarin, for example, uses the base form itself to refer to singularities as well as pluralities but the addition of the plural marker rules out the possibility of singular reference:\u00a0gou\u00a0\"the dog/the dogs\" vs.\u00a0gou-men\u00a0\"the dogs\". Finally, there are languages, such as Cuzco Quechua, in which the verb has a singular and a plural form, such that the singular form refers to a single event while the plural form refers to a plurality of events. In this course we discuss the semantic underpinnings of these three types of plural morphology, plural marking as in English\u00a0-s, optional plurality as in Mandarin\u00a0-men, and pluractionality as in Quechua plural marked verbs.", "short_title": "Plurality, Optional Plurality...", "title": "Plurality, Optional Plurality, Pluractionality", "school": "GS", @@ -197545,24 +406280,77 @@ "9:25", "11:15", "DOW 112 - Dow Hall 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ] }, "skills": [], "areas": [], "flags": [ - "YC LING: Adv Courses\/Seminars" + "YC LING: Adv Courses/Seminars" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88253\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88253/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9977503418922424, + 0.9987816214561462 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988059997558594 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 3, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 3 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -197605,7 +406393,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -197643,7 +406459,7 @@ "13:00", "14:15", "WLH 003 - William L. Harkness Hall 003", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -197651,7 +406467,7 @@ "13:00", "14:15", "WLH 003 - William L. Harkness Hall 003", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -197667,10 +406483,93 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89766\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89766/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988564252853394, + 0.9989172220230103, + 0.9988217949867249 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989081621170044, + 0.9989141225814819, + 0.9988840222358704 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989050626754761, + 0.9989169836044312, + 0.9988502264022827 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 9 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -197708,7 +406607,7 @@ "13:00", "14:15", "LC 317 - Linsly-Chittenden Hall 317", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -197716,7 +406615,7 @@ "13:00", "14:15", "LC 317 - Linsly-Chittenden Hall 317", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -197730,10 +406629,107 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90705\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90705/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987730383872986, + 0.9988664388656616, + 0.9988695979118347, + 0.9987571239471436, + 0.9892282485961914, + 0.9988892674446106 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988442659378052, + 0.998768150806427, + 0.9988682270050049, + 0.9988166093826294, + 0.9989327788352966 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9931514263153076, + 0.9989325404167175, + 0.998938262462616, + 0.9989142417907715, + 0.9989155530929565 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 16 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -197780,7 +406776,35 @@ "syllabus_url": "", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -197818,7 +406842,7 @@ "13:00", "14:15", "WLH 009 - William L. Harkness Hall 009", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -197826,7 +406850,7 @@ "13:00", "14:15", "WLH 009 - William L. Harkness Hall 009", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -197840,10 +406864,87 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88271\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88271/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988859295845032 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988659620285034, + 0.9971823692321777 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989385008811951, + 0.9989293217658997 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 4, + "final_proportion": 0.8, + "final_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + } + } }, { "season_code": "202303", @@ -197882,7 +406983,7 @@ "15:30", "17:20", "WLH 112 - William L. Harkness Hall 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -197896,10 +406997,111 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88277\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88277/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9814392924308777, + 0.9988698363304138, + 0.9989160299301147, + 0.998717188835144, + 0.9982116222381592 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9856525659561157, + 0.9957072734832764, + 0.9955268502235413, + 0.9981972575187683, + 0.9985709190368652 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.4, + "POSITIVE": 0.6 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.999470055103302, + 0.9976195693016052, + 0.9980016350746155, + 0.9994938373565674, + 0.999467670917511, + 0.9266988039016724, + 0.9995023012161255 + ], + "sentiment_counts": { + "NEGATIVE": 7, + "POSITIVE": 0 + }, + "sentiment_distribution": { + "NEGATIVE": 1.0, + "POSITIVE": 0.0 + }, + "sentiment_overall": [ + "NEGATIVE", + 1.0 + ] + }, + "final_label": "neutral", + "final_count": 9, + "final_proportion": 0.5, + "final_counts": { + "POSITIVE": 8, + "NEGATIVE": 9 + }, + "final_distribution": { + "POSITIVE": 0.47058823529411764, + "NEGATIVE": 0.5294117647058824 + } + } }, { "season_code": "202303", @@ -197939,7 +407141,7 @@ "14:30", "15:45", "LC 209 - Linsly-Chittenden Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -197947,7 +407149,7 @@ "14:30", "15:45", "LC 209 - Linsly-Chittenden Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -197965,10 +407167,113 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89343\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89343/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9974373579025269, + 0.9987890124320984, + 0.9988380074501038, + 0.9987541437149048, + 0.9989184141159058, + 0.9923685193061829 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9993056058883667, + 0.998877227306366, + 0.9989055395126343, + 0.9983024597167969, + 0.9989049434661865 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 4 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2, + "POSITIVE": 0.8 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.998906135559082, + 0.9827965497970581, + 0.9986029267311096, + 0.9988454580307007, + 0.9987548589706421, + 0.9988775849342346, + 0.9953162670135498 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 0.8888888888888888, + "final_counts": { + "POSITIVE": 16, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + } + } }, { "season_code": "202303", @@ -198006,7 +407311,7 @@ "13:00", "14:15", "HQ C65 - Humanities Quadrangle C65", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -198014,7 +407319,7 @@ "13:00", "14:15", "HQ C65 - Humanities Quadrangle C65", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -198028,10 +407333,113 @@ "classnotes": "Instructor Permission Required: Please see Canvas for details", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90142\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90142/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989252686500549, + 0.9988903403282166, + 0.998865008354187, + 0.9988271594047546, + 0.998772919178009, + 0.9988202452659607, + 0.998783528804779 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989303946495056, + 0.9988800883293152, + 0.9989261031150818, + 0.9989292025566101, + 0.998884379863739, + 0.9989039897918701 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988114833831787, + 0.998908281326294, + 0.998916745185852, + 0.9989150762557983, + 0.9989336133003235, + 0.998783528804779 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 19 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -198071,7 +407479,7 @@ "14:30", "15:45", "LC 209 - Linsly-Chittenden Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -198079,7 +407487,7 @@ "14:30", "15:45", "LC 209 - Linsly-Chittenden Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -198095,10 +407503,123 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88538\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88538/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989283680915833, + 0.9980698227882385, + 0.9989109039306641, + 0.9989012479782104, + 0.9989288449287415, + 0.9989268183708191, + 0.9988389611244202, + 0.9987667798995972 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989386200904846, + 0.9989200830459595, + 0.9986739158630371, + 0.998127281665802, + 0.9988141059875488, + 0.99893718957901, + 0.9989105463027954, + 0.9989297986030579 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989369511604309, + 0.9975807666778564, + 0.9989223480224609, + 0.9989076852798462, + 0.9989245533943176, + 0.998906135559082, + 0.9988064765930176, + 0.9989016056060791 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 24, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 24 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -198136,7 +407657,7 @@ "13:00", "14:15", "WLH 001 - William L. Harkness Hall 001", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -198144,7 +407665,7 @@ "13:00", "14:15", "WLH 001 - William L. Harkness Hall 001", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -198160,10 +407681,89 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88539\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88539/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986720085144043, + 0.9986802935600281 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989331364631653, + 0.9986866116523743 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998340368270874, + 0.9989053010940552, + 0.998902440071106 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 7 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -198208,7 +407808,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -198253,7 +407881,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -198292,7 +407948,7 @@ "13:00", "14:15", "HQ 227 - Humanities Quadrangle 227", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -198300,7 +407956,7 @@ "13:00", "14:15", "HQ 227 - Humanities Quadrangle 227", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -198318,10 +407974,99 @@ "classnotes": "", "final_exam": "Saturday, December 16, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88113\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88113/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998877227306366, + 0.9987377524375916, + 0.998773992061615, + 0.9987092018127441 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989387392997742, + 0.9988440275192261, + 0.9989190101623535, + 0.9961065649986267 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989225268363953, + 0.9987555742263794, + 0.9989308714866638, + 0.9987749457359314 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 12 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -198364,7 +408109,7 @@ "10:30", "11:20", "LC 317 - Linsly-Chittenden Hall 317", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -198372,7 +408117,7 @@ "10:30", "11:20", "LC 317 - Linsly-Chittenden Hall 317", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -198391,10 +408136,107 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89272\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89272/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983270764350891, + 0.9988164901733398, + 0.9979806542396545, + 0.9987630844116211 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9983147382736206, + 0.9988991022109985, + 0.9994614720344543, + 0.9976310729980469, + 0.9976523518562317 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.6, + "POSITIVE": 0.4 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.6 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9994681477546692, + 0.9970071911811829, + 0.9857144951820374, + 0.998894989490509, + 0.9994803071022034, + 0.9983184337615967 + ], + "sentiment_counts": { + "NEGATIVE": 4, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.6666666666666666, + "POSITIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.6666666666666666 + ] + }, + "final_label": "neutral", + "final_count": 8, + "final_proportion": 0.5, + "final_counts": { + "POSITIVE": 8, + "NEGATIVE": 7 + }, + "final_distribution": { + "POSITIVE": 0.5333333333333333, + "NEGATIVE": 0.4666666666666667 + } + } }, { "season_code": "202303", @@ -198428,7 +408270,7 @@ "11:35", "12:25", "HQ 123 - Humanities Quadrangle 123", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -198450,7 +408292,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -198484,7 +408354,7 @@ "13:30", "14:20", "WLH 209 - William L. Harkness Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -198506,7 +408376,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -198570,7 +408468,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -198610,7 +408536,7 @@ "14:30", "15:45", "LC 204 - Linsly-Chittenden Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -198618,7 +408544,7 @@ "14:30", "15:45", "LC 204 - Linsly-Chittenden Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -198638,10 +408564,87 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89647\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89647/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986574649810791, + 0.9988542795181274 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.997345507144928, + 0.998895525932312 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9968374967575073, + 0.9988742470741272 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 6 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -198681,7 +408684,7 @@ "14:30", "15:45", "HQ 227 - Humanities Quadrangle 227", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -198689,7 +408692,7 @@ "14:30", "15:45", "HQ 227 - Humanities Quadrangle 227", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -198708,10 +408711,113 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91565\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91565/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9980986714363098, + 0.998824417591095, + 0.9982035160064697, + 0.9987812638282776, + 0.9988441467285156, + 0.9988885521888733 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987928867340088, + 0.9989217519760132, + 0.9988355040550232, + 0.9989357590675354, + 0.9987519979476929, + 0.998730480670929 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988663196563721, + 0.9988304972648621, + 0.9988301396369934, + 0.9989150762557983, + 0.9974507689476013, + 0.9988853335380554, + 0.9989401698112488 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 19 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -198751,7 +408857,7 @@ "13:00", "14:15", "LC 209 - Linsly-Chittenden Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -198759,7 +408865,7 @@ "13:00", "14:15", "LC 209 - Linsly-Chittenden Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -198778,10 +408884,115 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89291\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89291/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988321661949158, + 0.9986724853515625, + 0.9989258646965027, + 0.998866081237793, + 0.9989006519317627, + 0.9453980922698975, + 0.9988527297973633 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988483190536499, + 0.9989327788352966, + 0.998859167098999, + 0.9988797307014465, + 0.9995015859603882, + 0.9988183379173279 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988825917243958, + 0.9989270567893982, + 0.9989299178123474, + 0.9989286065101624, + 0.9995086193084717, + 0.9989349246025085 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 0.8947368421052632, + "final_counts": { + "POSITIVE": 17, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8947368421052632, + "NEGATIVE": 0.10526315789473684 + } + } }, { "season_code": "202303", @@ -198822,7 +409033,7 @@ "15:30", "17:20", "HQ 113 - Humanities Quadrangle 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -198838,10 +409049,93 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89137\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89137/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989191293716431, + 0.9986900687217712, + 0.9948129653930664 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988294243812561, + 0.9984099864959717, + 0.9988916516304016 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987150430679321, + 0.9987962245941162, + 0.9988998174667358 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 9 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -198887,7 +409181,7 @@ "15:30", "17:20", "HQ 209 - Humanities Quadrangle 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -198901,17 +409195,104 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88908\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88908/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "", - "description": "A close reading (in English) of Marcel Proust\u2019s masterpiece, Remembrance of Things Past, with emphasis upon major themes: time and memory, desire and jealousy, social life and artistic experience, sexual identity and personal authenticity, class and nation. Portions from Swann\u2019s Way, Within a Budding Grove, Cities of the Plain, Time Regained considered from biographical, psychological\/psychoanalytic, gender, sociological, historical, and philosophical perspectives.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988865256309509, + 0.9988441467285156, + 0.9987584352493286, + 0.9989197254180908 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989302754402161, + 0.998914361000061, + 0.9977319240570068 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988856911659241, + 0.9989079236984253, + 0.9989084005355835, + 0.9989058971405029 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 11 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } + }, + { + "season_code": "202303", + "requirements": "", + "description": "A close reading (in English) of Marcel Proust\u2019s masterpiece, Remembrance of Things Past, with emphasis upon major themes: time and memory, desire and jealousy, social life and artistic experience, sexual identity and personal authenticity, class and nation. Portions from Swann\u2019s Way, Within a Budding Grove, Cities of the Plain, Time Regained considered from biographical, psychological/psychoanalytic, gender, sociological, historical, and philosophical perspectives.", "short_title": "Proust Interpretations: Readi...", - "title": "Proust Interpretations: Reading Remembrance of Things Past<\/i>", + "title": "Proust Interpretations: Reading Remembrance of Things Past", "school": "YC", "credits": 1.0, "extra_info": "CANCELLED", @@ -198949,7 +409330,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -198990,7 +409399,7 @@ "13:30", "15:20", "HQ C03 - Humanities Quadrangle C03", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -199009,10 +409418,111 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89781\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89781/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989038705825806, + 0.998881995677948, + 0.9989314675331116, + 0.9988376498222351, + 0.9989163875579834, + 0.9989125728607178 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989294409751892, + 0.9988766312599182, + 0.9989217519760132, + 0.9988623857498169, + 0.9988903403282166, + 0.9989312291145325 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987277388572693, + 0.9989243149757385, + 0.998910665512085, + 0.9985809326171875, + 0.9989239573478699, + 0.9988672733306885 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 18 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -199052,7 +409562,7 @@ "13:30", "15:20", "RKZ 102 - Rosenkranz Hall 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -199066,10 +409576,111 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88472\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88472/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989111423492432, + 0.9988601207733154, + 0.9989058971405029, + 0.9987803101539612, + 0.9986018538475037 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9969589710235596, + 0.9987708926200867, + 0.9988803267478943, + 0.9989339709281921, + 0.9974442720413208 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9954793453216553, + 0.9986547231674194, + 0.9989053010940552, + 0.9988651275634766, + 0.9988355040550232, + 0.9984233379364014, + 0.9989383816719055 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 6 + }, + "sentiment_distribution": { + "NEGATIVE": 0.14285714285714285, + "POSITIVE": 0.8571428571428571 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 0.9411764705882353, + "final_counts": { + "POSITIVE": 16, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9411764705882353, + "NEGATIVE": 0.058823529411764705 + } + } }, { "season_code": "202303", @@ -199121,10 +409732,63 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92571\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92571/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988359808921814 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998896598815918, + 0.9988890290260315 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 3, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 3 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -199164,7 +409828,7 @@ "15:30", "17:20", "HQ 113 - Humanities Quadrangle 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -199180,10 +409844,61 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92375\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92375/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989321827888489 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981922507286072 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 2, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 2 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -199222,7 +409937,7 @@ "15:30", "17:20", "HQ 209 - Humanities Quadrangle 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -199238,10 +409953,87 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88665\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88665/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988693594932556, + 0.9987756609916687 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985318183898926, + 0.9989325404167175 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.5296843647956848, + 0.9988837838172913 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 6 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -199281,7 +410073,7 @@ "15:30", "17:20", "HQ C11 - Humanities Quadrangle C11", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -199299,10 +410091,87 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88667\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88667/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988834261894226, + 0.9986335635185242 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9978232383728027, + 0.998855471611023 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998842179775238, + 0.9988335967063904 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 6 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -199343,7 +410212,7 @@ "15:30", "17:20", "WLH 202 - William L. Harkness Hall 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -199360,10 +410229,113 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90678\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90678/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998809814453125, + 0.998860239982605, + 0.9986899495124817, + 0.9989328980445862, + 0.9988508224487305, + 0.9988728165626526, + 0.9989239573478699 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987543821334839, + 0.9989011287689209, + 0.9760379791259766, + 0.9978674650192261, + 0.9987699389457703 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983333945274353, + 0.9989117383956909, + 0.998925507068634, + 0.9988470077514648, + 0.998916506767273, + 0.9988755583763123, + 0.9981794357299805 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 19 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -199409,7 +410381,7 @@ "15:30", "17:20", "HQ C03 - Humanities Quadrangle C03", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -199425,10 +410397,101 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89026\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89026/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988987445831299, + 0.9986571073532104, + 0.9933185577392578, + 0.9986230134963989 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989332556724548, + 0.9987208247184753, + 0.998921275138855 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9963036775588989, + 0.9982940554618835, + 0.9988642930984497, + 0.9975757002830505, + 0.9988969564437866, + 0.9988803267478943 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 13 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -199468,7 +410531,7 @@ "14:30", "15:45", "HQ 225 - Humanities Quadrangle 225", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -199476,7 +410539,7 @@ "14:30", "15:45", "HQ 225 - Humanities Quadrangle 225", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -199486,22 +410549,151 @@ ], "flags": [ "YSE MEM C&A Electives", - "YC EVST: Core Human\/Social Sci" + "YC EVST: Core Human/Social Sci" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89849\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89849/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "", - "description": "Was Sappho a feminist? This course tries to answer that question by analyzing how women\u2019s voices have been appropriated by the literary and cultural canon of the west\u2013and how in turn women writers and readers have reappropriated those voices. Students read a generous amount of literary (and in some cases, musical) works, along with a variety of contemporary theoretical approaches so as to engage in conversation about authorship, classical reception, and materiality. Following an introduction to Greek and Roman texts key for problematic female figures such as sirens and sibyls, we turn to two later historical moments to explore how women artists have both broken out of and used the western canon, redefining genre, content, and style in literary creation writ large. How did Renaissance women such as Laura Cereta, Gaspara Stampa, and Sor Juana In\u00e9s de la Cruz fashion themselves as authors in light of the classical sources they had at hand? And once we arrive in the 20th and 21st centuries, how do Sibilla Aleramo, Elsa Morante, Anna Maria Ortese, and Elena Ferrante forge a new, feminist writing via classical, queer and\/or animal viewpoints?", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9962582588195801, + 0.9987448453903198, + 0.9989109039306641, + 0.9988428354263306, + 0.9987834095954895, + 0.9942436814308167, + 0.9989105463027954, + 0.9987689852714539, + 0.9988893866539001, + 0.9980958104133606, + 0.9988905787467957 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 10 + }, + "sentiment_distribution": { + "NEGATIVE": 0.09090909090909091, + "POSITIVE": 0.9090909090909091 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9090909090909091 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9962582588195801, + 0.9989333748817444, + 0.9989383816719055, + 0.996529757976532, + 0.9989294409751892, + 0.9988657236099243, + 0.9987187385559082, + 0.9989200830459595, + 0.9989365935325623 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 8 + }, + "sentiment_distribution": { + "NEGATIVE": 0.1111111111111111, + "POSITIVE": 0.8888888888888888 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9962582588195801, + 0.9988861680030823, + 0.9989386200904846, + 0.9989379048347473, + 0.9989110231399536, + 0.99885094165802, + 0.9989312291145325, + 0.9988710284233093, + 0.9989226460456848, + 0.9989266991615295, + 0.9989321827888489 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 10 + }, + "sentiment_distribution": { + "NEGATIVE": 0.09090909090909091, + "POSITIVE": 0.9090909090909091 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9090909090909091 + ] + }, + "final_label": "POSITIVE", + "final_count": 28, + "final_proportion": 0.9032258064516129, + "final_counts": { + "NEGATIVE": 3, + "POSITIVE": 28 + }, + "final_distribution": { + "NEGATIVE": 0.0967741935483871, + "POSITIVE": 0.9032258064516129 + } + } + }, + { + "season_code": "202303", + "requirements": "", + "description": "Was Sappho a feminist? This course tries to answer that question by analyzing how women\u2019s voices have been appropriated by the literary and cultural canon of the west\u2013and how in turn women writers and readers have reappropriated those voices. Students read a generous amount of literary (and in some cases, musical) works, along with a variety of contemporary theoretical approaches so as to engage in conversation about authorship, classical reception, and materiality. Following an introduction to Greek and Roman texts key for problematic female figures such as sirens and sibyls, we turn to two later historical moments to explore how women artists have both broken out of and used the western canon, redefining genre, content, and style in literary creation writ large. How did Renaissance women such as Laura Cereta, Gaspara Stampa, and Sor Juana In\u00e9s de la Cruz fashion themselves as authors in light of the classical sources they had at hand? And once we arrive in the 20th and 21st centuries, how do Sibilla Aleramo, Elsa Morante, Anna Maria Ortese, and Elena Ferrante forge a new, feminist writing via classical, queer and/or animal viewpoints?", "short_title": "Dangerous Women: Sirens, Siby...", "title": "Dangerous Women: Sirens, Sibyls, Poets and Singers from Sappho through Elena Ferrante", "school": "YC", @@ -199536,7 +410728,7 @@ "11:35", "12:50", "WLH 112 - William L. Harkness Hall 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -199544,7 +410736,7 @@ "11:35", "12:50", "WLH 112 - William L. Harkness Hall 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -199560,10 +410752,133 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89644\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89644/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989196062088013, + 0.998461127281189, + 0.9989305138587952, + 0.9987473487854004, + 0.9988574981689453, + 0.9988310933113098, + 0.9987288117408752, + 0.9987872242927551 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984928369522095, + 0.9987698197364807, + 0.999487042427063, + 0.9993746876716614, + 0.9989004135131836, + 0.993488073348999, + 0.9987336993217468, + 0.9982598423957825, + 0.9989217519760132, + 0.998910665512085, + 0.9988431930541992 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.7272727272727273, + "NEGATIVE": 0.2727272727272727 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7272727272727273 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9953521490097046, + 0.9983676075935364, + 0.9995096921920776, + 0.998089611530304, + 0.9988279938697815, + 0.9987051486968994, + 0.9988396763801575, + 0.9985581040382385, + 0.9989101886749268 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.7777777777777778, + "NEGATIVE": 0.2222222222222222 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7777777777777778 + ] + }, + "final_label": "POSITIVE", + "final_count": 23, + "final_proportion": 0.8214285714285714, + "final_counts": { + "POSITIVE": 23, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.8214285714285714, + "NEGATIVE": 0.17857142857142858 + } + } }, { "season_code": "202303", @@ -199604,7 +410919,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -199636,7 +410979,7 @@ "11:35", "12:25", "HQ 123 - Humanities Quadrangle 123", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -199655,7 +410998,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -199693,7 +411064,7 @@ "11:35", "12:25", "HQ L01 - Humanities Quadrangle L01", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -199701,7 +411072,7 @@ "11:35", "12:25", "HQ L01 - Humanities Quadrangle L01", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Tuesday": [ @@ -199709,7 +411080,7 @@ "19:00", "22:00", "HQ L02 - Humanities Quadrangle L02", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -199725,10 +411096,151 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88267\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88267/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988619089126587, + 0.9986670017242432, + 0.9988223910331726, + 0.9989142417907715, + 0.9989191293716431, + 0.9959142804145813, + 0.9987924098968506, + 0.9989334940910339, + 0.9986922144889832, + 0.998903751373291, + 0.9983952641487122, + 0.9989051818847656, + 0.9988734126091003 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982823133468628, + 0.9988613128662109, + 0.998923122882843, + 0.9989179372787476, + 0.9987800717353821, + 0.9987646341323853, + 0.9994970560073853, + 0.9987301230430603, + 0.9876741766929626, + 0.9989331364631653, + 0.9988270401954651 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8181818181818182, + "NEGATIVE": 0.18181818181818182 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8181818181818182 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989234805107117, + 0.9936182498931885, + 0.9989390969276428, + 0.9988886713981628, + 0.998924195766449, + 0.9988371729850769, + 0.9988738894462585, + 0.9989086389541626, + 0.9989196062088013, + 0.9957998394966125, + 0.9985685348510742, + 0.9988759160041809, + 0.9977092742919922 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 35, + "final_proportion": 0.9459459459459459, + "final_counts": { + "POSITIVE": 35, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9459459459459459, + "NEGATIVE": 0.05405405405405406 + } + } }, { "season_code": "202303", @@ -199760,7 +411272,7 @@ "10:30", "11:20", "HQ 113 - Humanities Quadrangle 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -199779,7 +411291,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -199811,7 +411351,7 @@ "10:30", "11:20", "WALL81 101 - 81 Wall Street 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -199830,7 +411370,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -199862,7 +411430,7 @@ "14:30", "15:20", "YK220 100 - 220 York Street 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ] }, @@ -199881,7 +411449,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -199913,7 +411509,7 @@ "16:30", "17:20", "HQ 127 - Humanities Quadrangle 127", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -199932,7 +411528,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -199975,7 +411599,7 @@ "19:00", "22:00", "HQ L02 - Humanities Quadrangle L02", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -199983,7 +411607,7 @@ "19:00", "20:50", "PH 207 - Phelps Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -199999,10 +411623,91 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90200\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90200/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988154172897339, + 0.998854398727417 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9859976768493652, + 0.9980385899543762, + 0.9989142417907715 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9908983111381531, + 0.9986674785614014 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 1 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "final_label": "POSITIVE", + "final_count": 5, + "final_proportion": 0.7142857142857143, + "final_counts": { + "POSITIVE": 5, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.7142857142857143, + "NEGATIVE": 0.2857142857142857 + } + } }, { "season_code": "202303", @@ -200044,7 +411749,7 @@ "15:30", "17:20", "WALL81 301 - 81 Wall Street 301", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -200061,10 +411766,97 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90076\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90076/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998767614364624, + 0.9986365437507629, + 0.9987506866455078, + 0.9986162185668945 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988875985145569, + 0.9985893368721008, + 0.998904824256897 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988605976104736, + 0.997117280960083, + 0.9989264607429504, + 0.9977026581764221 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 11 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -200107,7 +411899,7 @@ "13:30", "15:20", "WLH 202 - William L. Harkness Hall 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -200125,10 +411917,99 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88938\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88938/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998917818069458, + 0.9989336133003235, + 0.9989350438117981 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9948537945747375, + 0.9993378520011902, + 0.9989354014396667, + 0.9986166954040527 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988767504692078, + 0.998809814453125, + 0.9989318251609802, + 0.9995081424713135 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 0.8181818181818182, + "final_counts": { + "POSITIVE": 9, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8181818181818182, + "NEGATIVE": 0.18181818181818182 + } + } }, { "season_code": "202303", @@ -200167,7 +412048,7 @@ "9:25", "11:15", "HQ 123 - Humanities Quadrangle 123", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -200181,10 +412062,97 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89311\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89311/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989074468612671, + 0.9988844990730286, + 0.9987744688987732 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988852143287659, + 0.9986816048622131, + 0.9988956451416016 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989224672317505, + 0.9987837672233582, + 0.9988345503807068, + 0.9989204406738281, + 0.9988905787467957 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 11 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -200222,7 +412190,7 @@ "16:00", "17:15", "HQ C64 - Humanities Quadrangle C64", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -200230,7 +412198,7 @@ "16:00", "17:15", "HQ C64 - Humanities Quadrangle C64", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -200246,10 +412214,65 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89222\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89222/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9980109333992004, + 0.9986377358436584 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986938834190369, + 0.9985283613204956 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 4, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 4 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -200315,10 +412338,85 @@ "classnotes": "", "final_exam": "Friday, December 15, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89643\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89643/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986761212348938 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998141884803772, + 0.9985087513923645 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9990181922912598 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 0 + }, + "sentiment_distribution": { + "NEGATIVE": 1.0, + "POSITIVE": 0.0 + }, + "sentiment_overall": [ + "NEGATIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 3, + "final_proportion": 0.75, + "final_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + } + } }, { "season_code": "202303", @@ -200353,7 +412451,7 @@ "11:35", "12:25", "HQ 401 - Humanities Quadrangle 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -200370,7 +412468,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -200405,7 +412531,7 @@ "10:30", "11:20", "LC 317 - Linsly-Chittenden Hall 317", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -200422,7 +412548,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -200463,7 +412617,7 @@ "19:00", "22:00", "HQ 109 - Humanities Quadrangle 109", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Tuesday": [ @@ -200471,7 +412625,7 @@ "13:30", "15:20", "", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -200487,10 +412641,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88283\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88283/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -200533,7 +412715,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -200575,7 +412785,7 @@ "13:30", "15:20", "LC 319 - Linsly-Chittenden Hall 319", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -200589,10 +412799,91 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88465\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88465/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986985921859741, + 0.9985851049423218, + 0.9989144802093506 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989105463027954, + 0.9987713694572449, + 0.998869001865387 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989247918128967, + 0.9989323019981384 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 8, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 8 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -200635,7 +412926,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -200678,7 +412997,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -200715,7 +413062,7 @@ "14:30", "15:45", "LOM 214 - Leet Oliver Memorial Hall 214", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ], "Thursday": [ @@ -200723,7 +413070,7 @@ "14:30", "15:45", "LOM 214 - Leet Oliver Memorial Hall 214", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ] }, @@ -200739,10 +413086,89 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89034\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89034/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9995054006576538, + 0.9984806180000305 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 0 + }, + "sentiment_distribution": { + "NEGATIVE": 1.0, + "POSITIVE": 0.0 + }, + "sentiment_overall": [ + "NEGATIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9965026378631592, + 0.9995002746582031 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9995042085647583, + 0.9995129108428955 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 0 + }, + "sentiment_distribution": { + "NEGATIVE": 1.0, + "POSITIVE": 0.0 + }, + "sentiment_overall": [ + "NEGATIVE", + 1.0 + ] + }, + "final_label": "NEGATIVE", + "final_count": 5, + "final_proportion": 0.8333333333333334, + "final_counts": { + "NEGATIVE": 5, + "POSITIVE": 1 + }, + "final_distribution": { + "NEGATIVE": 0.8333333333333334, + "POSITIVE": 0.16666666666666666 + } + } }, { "season_code": "202303", @@ -200801,10 +413227,119 @@ "classnotes": "", "final_exam": "Tuesday, December 19, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89035\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89035/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985297918319702, + 0.9989385008811951, + 0.9975511431694031, + 0.9987164735794067, + 0.9988154172897339, + 0.9968938827514648, + 0.9989129304885864 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994332194328308, + 0.998897910118103, + 0.9988256096839905, + 0.9989134073257446, + 0.9988788962364197, + 0.9973061084747314, + 0.9988188147544861 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 6 + }, + "sentiment_distribution": { + "NEGATIVE": 0.14285714285714285, + "POSITIVE": 0.8571428571428571 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9968992471694946, + 0.9989369511604309, + 0.9988239407539368, + 0.998925507068634, + 0.9988491535186768, + 0.9958367347717285, + 0.9985463619232178 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 0.9523809523809523, + "final_counts": { + "POSITIVE": 20, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9523809523809523, + "NEGATIVE": 0.047619047619047616 + } + } }, { "season_code": "202303", @@ -200863,10 +413398,105 @@ "classnotes": "", "final_exam": "Tuesday, December 19, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89036\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89036/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988412261009216, + 0.9970753192901611, + 0.9988849759101868, + 0.998649537563324, + 0.994788408279419 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9820393919944763, + 0.9989197254180908, + 0.9989306330680847, + 0.9988842606544495, + 0.9988534450531006 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9984049201011658, + 0.9988616704940796, + 0.9988918900489807, + 0.998908281326294 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 0.9285714285714286, + "final_counts": { + "POSITIVE": 13, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9285714285714286, + "NEGATIVE": 0.07142857142857142 + } + } }, { "season_code": "202303", @@ -200925,10 +413555,105 @@ "classnotes": "", "final_exam": "Tuesday, December 19, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89037\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89037/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994704127311707, + 0.9678680300712585, + 0.9983850717544556, + 0.9987553358078003, + 0.9984294772148132 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 4 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2, + "POSITIVE": 0.8 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9503366947174072, + 0.9989839196205139, + 0.9812333583831787, + 0.9857503175735474 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.995093584060669, + 0.9988042116165161, + 0.9994971752166748, + 0.9985648989677429, + 0.9987248778343201 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 0.7857142857142857, + "final_counts": { + "NEGATIVE": 3, + "POSITIVE": 11 + }, + "final_distribution": { + "NEGATIVE": 0.21428571428571427, + "POSITIVE": 0.7857142857142857 + } + } }, { "season_code": "202303", @@ -200989,10 +413714,125 @@ "classnotes": "", "final_exam": "Tuesday, December 19, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91544\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/91544/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982249140739441, + 0.9988105297088623, + 0.9986715316772461, + 0.9989092350006104, + 0.9988898634910583, + 0.9987906813621521, + 0.9989227652549744, + 0.9988548755645752 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9965608716011047, + 0.998469889163971, + 0.9994109869003296, + 0.9989036321640015, + 0.9987199306488037, + 0.9988210797309875, + 0.9988131523132324, + 0.9987637996673584 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9980652928352356, + 0.9956901669502258, + 0.99883633852005, + 0.9988576173782349, + 0.9989056587219238, + 0.9989369511604309, + 0.998897910118103, + 0.9988935589790344 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 6 + }, + "sentiment_distribution": { + "NEGATIVE": 0.25, + "POSITIVE": 0.75 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 21, + "final_proportion": 0.875, + "final_counts": { + "POSITIVE": 21, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + } + } }, { "season_code": "202303", @@ -201050,7 +413890,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -201111,10 +413979,87 @@ "classnotes": "", "final_exam": "Tuesday, December 19, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89060\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89060/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989323019981384 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9972551465034485, + 0.9994927644729614 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.992091178894043, + 0.9988915324211121 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 1 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "final_label": "POSITIVE", + "final_count": 3, + "final_proportion": 0.6, + "final_counts": { + "POSITIVE": 3, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.6, + "NEGATIVE": 0.4 + } + } }, { "season_code": "202303", @@ -201175,10 +414120,109 @@ "classnotes": "", "final_exam": "Tuesday, December 19, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89061\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89061/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9675756692886353, + 0.9986966252326965, + 0.9988993406295776, + 0.8153260350227356 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986415505409241, + 0.9988715052604675, + 0.9988834261894226, + 0.9983037710189819, + 0.9994827508926392, + 0.9987039566040039, + 0.9989181756973267 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.997117280960083, + 0.9988502264022827, + 0.9989147186279297, + 0.9967921376228333, + 0.9986090064048767 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 0.9375, + "final_counts": { + "POSITIVE": 15, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9375, + "NEGATIVE": 0.0625 + } + } }, { "season_code": "202303", @@ -201215,7 +414259,7 @@ "14:30", "15:45", "HLH17 03 - 17 Hillhouse Avenue 03", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Thursday": [ @@ -201223,7 +414267,7 @@ "14:30", "15:45", "HLH17 03 - 17 Hillhouse Avenue 03", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -201239,10 +414283,111 @@ "classnotes": "", "final_exam": "Tuesday, December 19, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89062\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89062/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987962245941162, + 0.9995063543319702, + 0.9939755797386169, + 0.9969514608383179, + 0.9972442388534546, + 0.9989345669746399 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9911640882492065, + 0.9986240863800049, + 0.9979143738746643, + 0.9989176988601685, + 0.997345507144928 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 4 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2, + "POSITIVE": 0.8 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981600642204285, + 0.9994877576828003, + 0.9978426694869995, + 0.9985430240631104, + 0.9971553087234497, + 0.9988756775856018 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 0.7647058823529411, + "final_counts": { + "POSITIVE": 13, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.7647058823529411, + "NEGATIVE": 0.23529411764705882 + } + } }, { "season_code": "202303", @@ -201303,10 +414448,111 @@ "classnotes": "", "final_exam": "Tuesday, December 19, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89063\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89063/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987466335296631, + 0.9987461566925049, + 0.9985823631286621, + 0.9988999366760254 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988833069801331, + 0.9974581599235535, + 0.9741622805595398, + 0.9824510216712952, + 0.9917171597480774, + 0.9987812638282776, + 0.9987782835960388 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9948751330375671, + 0.9994844198226929, + 0.9986993074417114, + 0.988585889339447, + 0.9995051622390747, + 0.9988864064216614 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 0.8235294117647058, + "final_counts": { + "POSITIVE": 14, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.8235294117647058, + "NEGATIVE": 0.17647058823529413 + } + } }, { "season_code": "202303", @@ -201367,10 +414613,93 @@ "classnotes": "", "final_exam": "Tuesday, December 19, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89064\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89064/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994124174118042, + 0.9987348914146423, + 0.9825144410133362 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9986611604690552, + 0.9994926452636719 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982916712760925, + 0.9990983009338379, + 0.9934588074684143 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 5, + "final_proportion": 0.625, + "final_counts": { + "NEGATIVE": 3, + "POSITIVE": 5 + }, + "final_distribution": { + "NEGATIVE": 0.375, + "POSITIVE": 0.625 + } + } }, { "season_code": "202303", @@ -201431,10 +414760,105 @@ "classnotes": "", "final_exam": "Tuesday, December 19, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89065\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89065/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.998874843120575, + 0.9969852566719055, + 0.9980415105819702, + 0.9994843006134033 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998934805393219, + 0.9988112449645996, + 0.9988877177238464, + 0.9851284623146057, + 0.9985452890396118 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988666772842407, + 0.9985219836235046, + 0.9988517761230469, + 0.9994999170303345, + 0.9988721013069153 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.6, + "NEGATIVE": 0.4 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 0.7857142857142857, + "final_counts": { + "POSITIVE": 11, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.7857142857142857, + "NEGATIVE": 0.21428571428571427 + } + } }, { "season_code": "202303", @@ -201471,7 +414895,7 @@ "11:35", "12:50", "HLH17 113 - 17 Hillhouse Avenue 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Thursday": [ @@ -201479,7 +414903,7 @@ "11:35", "12:50", "HLH17 113 - 17 Hillhouse Avenue 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -201496,10 +414920,115 @@ "classnotes": "", "final_exam": "Tuesday, December 19, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91546\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91546/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989076852798462, + 0.9982357025146484, + 0.99853515625, + 0.9750720262527466, + 0.9976311922073364 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982447624206543, + 0.9988516569137573, + 0.9988642930984497, + 0.9988424181938171, + 0.9984514713287354, + 0.9993820190429688, + 0.9994951486587524, + 0.9988176226615906 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9991286396980286, + 0.9950095415115356, + 0.997117280960083, + 0.9988530874252319, + 0.9983578324317932, + 0.9974592328071594 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 0.7368421052631579, + "final_counts": { + "POSITIVE": 14, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.7368421052631579, + "NEGATIVE": 0.2631578947368421 + } + } }, { "season_code": "202303", @@ -201536,7 +415065,7 @@ "11:35", "12:50", "WLH 207 - William L. Harkness Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -201544,7 +415073,7 @@ "11:35", "12:50", "WLH 207 - William L. Harkness Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -201563,7 +415092,100 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987748265266418, + 0.9988958835601807, + 0.9986212253570557, + 0.9984543323516846, + 0.9981393814086914 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988875985145569, + 0.9967468976974487, + 0.9988946318626404, + 0.9976288676261902 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988651275634766, + 0.9993957281112671, + 0.9980459213256836, + 0.9923978447914124 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 0.9230769230769231, + "final_counts": { + "POSITIVE": 12, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9230769230769231, + "NEGATIVE": 0.07692307692307693 + } + } }, { "season_code": "202303", @@ -201624,10 +415246,127 @@ "classnotes": "", "final_exam": "Tuesday, December 19, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89042\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89042/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9971569776535034, + 0.9983598589897156, + 0.861725389957428, + 0.9849390983581543, + 0.988060712814331, + 0.9930737018585205, + 0.998075008392334 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 4 + }, + "sentiment_distribution": { + "NEGATIVE": 0.42857142857142855, + "POSITIVE": 0.5714285714285714 + }, + "sentiment_overall": [ + "POSITIVE", + 0.5714285714285714 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988309741020203, + 0.9994925260543823, + 0.997327446937561, + 0.9994959831237793, + 0.998760461807251, + 0.9995039701461792, + 0.9988523721694946, + 0.9985207915306091, + 0.9935330152511597, + 0.9975718855857849 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 5 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9994887113571167, + 0.9988189339637756, + 0.9914229512214661, + 0.9994326233863831, + 0.9983808994293213, + 0.9981118440628052, + 0.9946938157081604, + 0.9986942410469055 + ], + "sentiment_counts": { + "NEGATIVE": 4, + "POSITIVE": 4 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "final_label": "neutral", + "final_count": 13, + "final_proportion": 0.5, + "final_counts": { + "NEGATIVE": 12, + "POSITIVE": 13 + }, + "final_distribution": { + "NEGATIVE": 0.48, + "POSITIVE": 0.52 + } + } }, { "season_code": "202303", @@ -201688,10 +415427,119 @@ "classnotes": "", "final_exam": "Tuesday, December 19, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89043\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89043/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988903403282166, + 0.9985281229019165, + 0.9994935989379883, + 0.9989056587219238, + 0.9985803365707397, + 0.9986457228660583, + 0.9952064156532288 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9964742064476013, + 0.9986633062362671, + 0.9995079040527344, + 0.9988582134246826, + 0.9800690412521362, + 0.9994064569473267, + 0.998847484588623, + 0.9985117316246033 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989264607429504, + 0.9965968728065491, + 0.9937127232551575, + 0.9817549586296082, + 0.9995036125183105, + 0.9989014863967896 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 0.6190476190476191, + "final_counts": { + "POSITIVE": 13, + "NEGATIVE": 8 + }, + "final_distribution": { + "POSITIVE": 0.6190476190476191, + "NEGATIVE": 0.38095238095238093 + } + } }, { "season_code": "202303", @@ -201752,10 +415600,141 @@ "classnotes": "", "final_exam": "Tuesday, December 19, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89044\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89044/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.5494200587272644, + 0.9986604452133179, + 0.9759582281112671, + 0.9985297918319702, + 0.9982137680053711, + 0.9984931945800781, + 0.9984884262084961, + 0.998512327671051, + 0.9983330368995667, + 0.9987857937812805, + 0.9973042011260986 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 10 + }, + "sentiment_distribution": { + "NEGATIVE": 0.09090909090909091, + "POSITIVE": 0.9090909090909091 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9090909090909091 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9938708543777466, + 0.9986978769302368, + 0.9994791150093079, + 0.9988879561424255, + 0.9989185333251953, + 0.9987986087799072, + 0.9988781809806824, + 0.9973526000976562, + 0.9987637996673584, + 0.998875081539154 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9984235763549805, + 0.9966444969177246, + 0.9990279674530029, + 0.9988827109336853, + 0.9988549947738647, + 0.9988896250724792, + 0.9988812804222107, + 0.9987596273422241, + 0.9903826117515564, + 0.9988892674446106, + 0.9994860887527466 + ], + "sentiment_counts": { + "NEGATIVE": 4, + "POSITIVE": 7 + }, + "sentiment_distribution": { + "NEGATIVE": 0.36363636363636365, + "POSITIVE": 0.6363636363636364 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6363636363636364 + ] + }, + "final_label": "POSITIVE", + "final_count": 26, + "final_proportion": 0.8125, + "final_counts": { + "NEGATIVE": 6, + "POSITIVE": 26 + }, + "final_distribution": { + "NEGATIVE": 0.1875, + "POSITIVE": 0.8125 + } + } }, { "season_code": "202303", @@ -201816,10 +415795,137 @@ "classnotes": "", "final_exam": "Tuesday, December 19, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89045\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89045/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9965255856513977, + 0.9985679388046265, + 0.998706579208374, + 0.9984962940216064, + 0.9987970590591431, + 0.9988275170326233, + 0.949487030506134, + 0.9750238656997681 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9950864911079407, + 0.9943760633468628, + 0.9988614320755005, + 0.9986081719398499, + 0.9989056587219238, + 0.9974119067192078, + 0.9987050294876099, + 0.9978602528572083, + 0.9995046854019165, + 0.8883683085441589, + 0.9981570839881897 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 5 + }, + "sentiment_distribution": { + "POSITIVE": 0.5454545454545454, + "NEGATIVE": 0.45454545454545453 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9984434247016907, + 0.9994982481002808, + 0.9894952178001404, + 0.9988067150115967, + 0.9988307356834412, + 0.5453629493713379, + 0.9973496198654175, + 0.9988856911659241, + 0.9986594915390015, + 0.9985172152519226, + 0.9981435537338257 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.6363636363636364, + "NEGATIVE": 0.36363636363636365 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6363636363636364 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 0.6333333333333333, + "final_counts": { + "POSITIVE": 19, + "NEGATIVE": 11 + }, + "final_distribution": { + "POSITIVE": 0.6333333333333333, + "NEGATIVE": 0.36666666666666664 + } + } }, { "season_code": "202303", @@ -201880,10 +415986,111 @@ "classnotes": "", "final_exam": "Tuesday, December 19, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89046\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89046/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.968306303024292, + 0.9926160573959351, + 0.9984673857688904, + 0.9988412261009216, + 0.9989174604415894 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 4 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2, + "POSITIVE": 0.8 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9962221384048462, + 0.9995052814483643, + 0.9994997978210449, + 0.9988477230072021, + 0.993492066860199, + 0.9989207983016968 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9980016350746155, + 0.9994962215423584, + 0.9994169473648071, + 0.9980016350746155, + 0.999500036239624, + 0.9989014863967896 + ], + "sentiment_counts": { + "NEGATIVE": 5, + "POSITIVE": 1 + }, + "sentiment_distribution": { + "NEGATIVE": 0.8333333333333334, + "POSITIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.8333333333333334 + ] + }, + "final_label": "neutral", + "final_count": 9, + "final_proportion": 0.5, + "final_counts": { + "NEGATIVE": 9, + "POSITIVE": 8 + }, + "final_distribution": { + "NEGATIVE": 0.5294117647058824, + "POSITIVE": 0.47058823529411764 + } + } }, { "season_code": "202303", @@ -201944,10 +416151,121 @@ "classnotes": "", "final_exam": "Tuesday, December 19, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89047\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89047/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981017708778381, + 0.9980396628379822, + 0.9987561702728271, + 0.998782217502594, + 0.9988860487937927, + 0.9985596537590027 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988083839416504, + 0.9887689352035522, + 0.9994595646858215, + 0.9987987279891968, + 0.9929792284965515, + 0.9981288313865662, + 0.9391863942146301 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.5714285714285714, + "NEGATIVE": 0.42857142857142855 + }, + "sentiment_overall": [ + "POSITIVE", + 0.5714285714285714 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.997117280960083, + 0.9987366795539856, + 0.9988675117492676, + 0.9950443506240845, + 0.9975060820579529, + 0.9987322688102722, + 0.9988945126533508, + 0.9994795918464661, + 0.9941539168357849 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 0.7272727272727273, + "final_counts": { + "POSITIVE": 16, + "NEGATIVE": 6 + }, + "final_distribution": { + "POSITIVE": 0.7272727272727273, + "NEGATIVE": 0.2727272727272727 + } + } }, { "season_code": "202303", @@ -202008,10 +416326,107 @@ "classnotes": "", "final_exam": "Tuesday, December 19, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89048\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89048/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985641837120056, + 0.9987998008728027, + 0.9987630844116211, + 0.9417807459831238, + 0.9890804886817932 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.6, + "NEGATIVE": 0.4 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9895137548446655, + 0.9989005327224731, + 0.9995076656341553, + 0.9992731213569641, + 0.9981277585029602 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.6, + "POSITIVE": 0.4 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.6 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988811612129211, + 0.9989262223243713, + 0.999099612236023, + 0.9988386034965515, + 0.9994745850563049 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.6, + "NEGATIVE": 0.4 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6 + ] + }, + "final_label": "neutral", + "final_count": 8, + "final_proportion": 0.5, + "final_counts": { + "POSITIVE": 8, + "NEGATIVE": 7 + }, + "final_distribution": { + "POSITIVE": 0.5333333333333333, + "NEGATIVE": 0.4666666666666667 + } + } }, { "season_code": "202303", @@ -202072,10 +416487,101 @@ "classnotes": "", "final_exam": "Tuesday, December 19, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89049\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89049/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985464215278625, + 0.9987152814865112, + 0.9985775947570801 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9978495836257935, + 0.9989000558853149, + 0.9986734390258789, + 0.9988422989845276 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.999497652053833, + 0.9985743761062622, + 0.9988892674446106, + 0.9988290667533875, + 0.9966827034950256 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.4, + "POSITIVE": 0.6 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 0.8333333333333334, + "final_counts": { + "POSITIVE": 10, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + } + } }, { "season_code": "202303", @@ -202136,10 +416642,103 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89138\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89138/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9956753849983215, + 0.9989035129547119, + 0.9829619526863098, + 0.9988803267478943 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9969984292984009, + 0.9982477426528931, + 0.9989253878593445, + 0.9994974136352539, + 0.998874843120575 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.4, + "POSITIVE": 0.6 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9981922507286072, + 0.9950195550918579, + 0.998910665512085, + 0.999376118183136 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 0.7692307692307693, + "final_counts": { + "POSITIVE": 10, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.7692307692307693, + "NEGATIVE": 0.23076923076923078 + } + } }, { "season_code": "202303", @@ -202202,10 +416801,137 @@ "classnotes": "", "final_exam": "Tuesday, December 19, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91547\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/91547/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985681772232056, + 0.9985705614089966, + 0.9988203644752502, + 0.9987325072288513, + 0.9986127614974976, + 0.9986623525619507, + 0.9988216757774353, + 0.9980633854866028, + 0.9950805902481079, + 0.9984293580055237 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9923557043075562, + 0.9986427426338196, + 0.9909722805023193, + 0.9988753199577332, + 0.9995028972625732, + 0.9987290501594543, + 0.9986135959625244, + 0.9988698363304138, + 0.9983002543449402, + 0.9993233680725098 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 5 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9994843006134033, + 0.9966259002685547, + 0.9995036125183105, + 0.9994878768920898, + 0.9995059967041016, + 0.9966511130332947, + 0.9994900226593018, + 0.9995026588439941, + 0.9929366707801819, + 0.9931647181510925 + ], + "sentiment_counts": { + "NEGATIVE": 9, + "POSITIVE": 1 + }, + "sentiment_distribution": { + "NEGATIVE": 0.9, + "POSITIVE": 0.1 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.9 + ] + }, + "final_label": "neutral", + "final_count": 16, + "final_proportion": 0.5, + "final_counts": { + "POSITIVE": 16, + "NEGATIVE": 14 + }, + "final_distribution": { + "POSITIVE": 0.5333333333333333, + "NEGATIVE": 0.4666666666666667 + } + } }, { "season_code": "202303", @@ -202268,14 +416994,99 @@ "classnotes": "", "final_exam": "Tuesday, December 19, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91548\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91548/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "Prerequisite: MATH 112, or placement into MATH 115\/116 on the Mathematics placement exam. May not be taken after MATH 115.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.996039867401123, + 0.9766921997070312, + 0.9803435802459717 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989320635795593, + 0.9995001554489136, + 0.9976928234100342 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989280104637146, + 0.9983184337615967, + 0.9917154908180237 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.3333333333333333, + "NEGATIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 0.6666666666666666, + "final_counts": { + "POSITIVE": 6, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + } + } + }, + { + "season_code": "202303", + "requirements": "Prerequisite: MATH 112, or placement into MATH 115/116 on the Mathematics placement exam. May not be taken after MATH 115.", "description": "Techniques and applications of integration, approximation of functions by polynomials, modeling by differential equations. Introduction to topics in mathematical modeling that are applicable to biological systems. Discrete and continuous models of population, neural, and cardiac dynamics. Stability of fixed points and limit cycles of differential equations.", "short_title": "Mathematical Models in the Bi...", "title": "Mathematical Models in the Biosciences I: Calculus Techniques", @@ -202308,7 +417119,7 @@ "9:00", "10:15", "WTS A60 - Watson Center 60 Sachem Street A60", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -202316,7 +417127,7 @@ "9:00", "10:15", "WTS A60 - Watson Center 60 Sachem Street A60", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -202332,10 +417143,135 @@ "classnotes": "", "final_exam": "Saturday, December 16, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89066\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89066/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988155364990234, + 0.9988539218902588, + 0.9982678890228271, + 0.9988168478012085, + 0.9972454309463501, + 0.9978911280632019, + 0.9988331198692322, + 0.998890221118927, + 0.9988861680030823 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989033937454224, + 0.998923122882843, + 0.9929428100585938, + 0.9987963438034058, + 0.9988886713981628, + 0.9988756775856018, + 0.9989342093467712, + 0.9988757967948914, + 0.9989232420921326, + 0.9988866448402405 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981938004493713, + 0.9895808100700378, + 0.9948818683624268, + 0.9989223480224609, + 0.9989271759986877, + 0.9989288449287415, + 0.9989323019981384, + 0.9989249110221863, + 0.9939826130867004, + 0.998873770236969, + 0.9989364743232727 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 30, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 30 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -202372,7 +417308,7 @@ "11:35", "12:50", "WTS A48 - Watson Center 60 Sachem Street A48", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -202380,7 +417316,7 @@ "11:35", "12:50", "WTS A48 - Watson Center 60 Sachem Street A48", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -202394,10 +417330,157 @@ "classnotes": "", "final_exam": "Friday, December 15, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89067\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89067/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986503720283508, + 0.9971765279769897, + 0.9988564252853394, + 0.9977185726165771, + 0.9985499978065491, + 0.9979815483093262, + 0.9987785220146179, + 0.9988372921943665, + 0.9988502264022827, + 0.9981316924095154, + 0.9987911581993103, + 0.9984421133995056, + 0.9989140033721924 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9230769230769231, + "NEGATIVE": 0.07692307692307693 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9230769230769231 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988961219787598, + 0.9985151886940002, + 0.9989181756973267, + 0.9986967444419861, + 0.9950920343399048, + 0.9989086389541626, + 0.998877227306366, + 0.9989249110221863, + 0.9983515739440918, + 0.9988471269607544, + 0.9989295601844788, + 0.9957942962646484, + 0.9988180994987488 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9230769230769231, + "NEGATIVE": 0.07692307692307693 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9230769230769231 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986881613731384, + 0.9988749623298645, + 0.9988982677459717, + 0.998779833316803, + 0.9983158111572266, + 0.9988495111465454, + 0.9987872242927551, + 0.998728334903717, + 0.9989226460456848, + 0.9984263181686401, + 0.998616099357605, + 0.9989140033721924, + 0.9988853335380554, + 0.9989172220230103 + ], + "sentiment_counts": { + "POSITIVE": 14, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 38, + "final_proportion": 0.95, + "final_counts": { + "POSITIVE": 38, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.95, + "NEGATIVE": 0.05 + } + } }, { "season_code": "202303", @@ -202458,10 +417541,101 @@ "classnotes": "", "final_exam": "Tuesday, December 19, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89050\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89050/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998760461807251, + 0.9988527297973633, + 0.9987969398498535, + 0.9984325766563416 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985895752906799, + 0.9940290451049805, + 0.9908560514450073, + 0.9983476400375366 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982876181602478, + 0.9984931945800781, + 0.9994556307792664, + 0.8527063727378845 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 1 + }, + "sentiment_distribution": { + "NEGATIVE": 0.75, + "POSITIVE": 0.25 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 0.75, + "final_counts": { + "POSITIVE": 9, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + } + } }, { "season_code": "202303", @@ -202522,10 +417696,157 @@ "classnotes": "", "final_exam": "Tuesday, December 19, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89051\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89051/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987032413482666, + 0.9987818598747253, + 0.9985827207565308, + 0.9973875880241394, + 0.9987781643867493, + 0.9988344311714172, + 0.9988775849342346, + 0.9985325336456299, + 0.9988762736320496, + 0.998650848865509, + 0.998935878276825, + 0.7518426775932312, + 0.9988217949867249, + 0.9955783486366272 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9285714285714286, + "NEGATIVE": 0.07142857142857142 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9285714285714286 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9814592599868774, + 0.9986034035682678, + 0.9989140033721924, + 0.9972437620162964, + 0.9988879561424255, + 0.9989223480224609, + 0.9986479878425598, + 0.9984884262084961, + 0.998672604560852, + 0.998927652835846, + 0.9985692501068115, + 0.9989309906959534, + 0.9986795783042908 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8461538461538461, + "NEGATIVE": 0.15384615384615385 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8461538461538461 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9995015859603882, + 0.9975797533988953, + 0.9921711683273315, + 0.99741530418396, + 0.9988970756530762, + 0.9989330172538757, + 0.9986280202865601, + 0.9994176626205444, + 0.9989168643951416, + 0.9988962411880493, + 0.9989230036735535, + 0.9959869980812073, + 0.998874843120575 + ], + "sentiment_counts": { + "NEGATIVE": 4, + "POSITIVE": 9 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3076923076923077, + "POSITIVE": 0.6923076923076923 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6923076923076923 + ] + }, + "final_label": "POSITIVE", + "final_count": 33, + "final_proportion": 0.825, + "final_counts": { + "POSITIVE": 33, + "NEGATIVE": 7 + }, + "final_distribution": { + "POSITIVE": 0.825, + "NEGATIVE": 0.175 + } + } }, { "season_code": "202303", @@ -202586,10 +417907,107 @@ "classnotes": "", "final_exam": "Tuesday, December 19, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89052\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89052/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998386025428772, + 0.997016191482544, + 0.9987918734550476, + 0.9974437952041626, + 0.9987632036209106 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 4 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2, + "POSITIVE": 0.8 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9980342984199524, + 0.9994924068450928, + 0.9947649240493774, + 0.9753382205963135, + 0.9982814788818359 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.4, + "NEGATIVE": 0.6 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.6 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989026784896851, + 0.9980652928352356, + 0.9986053109169006, + 0.9960522651672363, + 0.9976580142974854 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.6, + "NEGATIVE": 0.4 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 0.6, + "final_counts": { + "NEGATIVE": 6, + "POSITIVE": 9 + }, + "final_distribution": { + "NEGATIVE": 0.4, + "POSITIVE": 0.6 + } + } }, { "season_code": "202303", @@ -202626,7 +418044,7 @@ "14:30", "15:45", "ESC 110 - Environmental Sciences Center 110", - "https:\/\/map.yale.edu\/?id=1910#!m\/560020" + "https://map.yale.edu/?id=1910#!m/560020" ] ], "Thursday": [ @@ -202634,7 +418052,7 @@ "14:30", "15:45", "ESC 110 - Environmental Sciences Center 110", - "https:\/\/map.yale.edu\/?id=1910#!m\/560020" + "https://map.yale.edu/?id=1910#!m/560020" ] ] }, @@ -202650,10 +418068,135 @@ "classnotes": "", "final_exam": "Tuesday, December 19, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89053\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89053/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9973875880241394, + 0.9922478199005127, + 0.9983800649642944, + 0.9987090826034546, + 0.9987021684646606, + 0.998481810092926, + 0.9986853003501892, + 0.9987661838531494, + 0.9981665015220642 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988076686859131, + 0.9986067414283752, + 0.9989245533943176, + 0.9989190101623535, + 0.9764857292175293, + 0.9987686276435852, + 0.9924271702766418, + 0.9988852143287659, + 0.9968374967575073, + 0.9891464710235596 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.7, + "NEGATIVE": 0.3 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988563060760498, + 0.999508261680603, + 0.9988687634468079, + 0.9988285899162292, + 0.9980103373527527, + 0.9980356097221375, + 0.998935878276825, + 0.9989128112792969, + 0.9987039566040039, + 0.9989700317382812 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 24, + "final_proportion": 0.8275862068965517, + "final_counts": { + "POSITIVE": 24, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.8275862068965517, + "NEGATIVE": 0.1724137931034483 + } + } }, { "season_code": "202303", @@ -202714,10 +418257,149 @@ "classnotes": "", "final_exam": "Tuesday, December 19, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89054\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89054/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.995876669883728, + 0.9988960027694702, + 0.9994397759437561, + 0.9906744360923767, + 0.995419979095459, + 0.9972468614578247, + 0.9986346364021301, + 0.9988765120506287, + 0.9987853169441223, + 0.9986494183540344, + 0.9987202882766724, + 0.9874414205551147 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9954596161842346, + 0.9942082166671753, + 0.9994972944259644, + 0.9994959831237793, + 0.9929961562156677, + 0.9826053380966187, + 0.9865706562995911, + 0.9995036125183105, + 0.9969263672828674, + 0.9924153685569763, + 0.9988328814506531, + 0.9995100498199463 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 7 + }, + "sentiment_distribution": { + "POSITIVE": 0.4166666666666667, + "NEGATIVE": 0.5833333333333334 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.5833333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9982494115829468, + 0.9981775283813477, + 0.9994981288909912, + 0.9980008006095886, + 0.9891613125801086, + 0.9969275593757629, + 0.9994809031486511, + 0.9885003566741943, + 0.9982420206069946, + 0.9989159107208252, + 0.9921610951423645, + 0.9995021820068359 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 5 + }, + "sentiment_distribution": { + "POSITIVE": 0.5833333333333334, + "NEGATIVE": 0.4166666666666667 + }, + "sentiment_overall": [ + "POSITIVE", + 0.5833333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 22, + "final_proportion": 0.6111111111111112, + "final_counts": { + "POSITIVE": 22, + "NEGATIVE": 14 + }, + "final_distribution": { + "POSITIVE": 0.6111111111111112, + "NEGATIVE": 0.3888888888888889 + } + } }, { "season_code": "202303", @@ -202778,10 +418460,115 @@ "classnotes": "", "final_exam": "Tuesday, December 19, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89055\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89055/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9972385168075562, + 0.997804582118988, + 0.9985281229019165, + 0.9969326257705688, + 0.9976792931556702, + 0.998843789100647 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9930505752563477, + 0.9983428716659546, + 0.6711422204971313, + 0.9946350455284119, + 0.996780514717102, + 0.9989144802093506, + 0.9991379976272583 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.7142857142857143, + "NEGATIVE": 0.2857142857142857 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7142857142857143 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985154271125793, + 0.9950047135353088, + 0.999504566192627, + 0.9988389611244202, + 0.9972641468048096, + 0.9987611770629883 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 0.7894736842105263, + "final_counts": { + "POSITIVE": 15, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.7894736842105263, + "NEGATIVE": 0.21052631578947367 + } + } }, { "season_code": "202303", @@ -202842,10 +418629,97 @@ "classnotes": "", "final_exam": "Tuesday, December 19, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89056\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89056/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985390901565552, + 0.9981271624565125, + 0.9981977343559265, + 0.9987614154815674 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9979953765869141, + 0.9986912608146667, + 0.9980317950248718, + 0.9987530708312988 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988853335380554, + 0.9984307885169983 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 8, + "final_proportion": 0.8, + "final_counts": { + "POSITIVE": 8, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + } + } }, { "season_code": "202303", @@ -202906,10 +418780,131 @@ "classnotes": "", "final_exam": "Tuesday, December 19, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89057\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89057/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9961049556732178, + 0.9987930059432983, + 0.9972877502441406, + 0.9966093301773071, + 0.9987990856170654, + 0.9988549947738647, + 0.9988711476325989, + 0.998927891254425 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989271759986877, + 0.9986401200294495, + 0.9988406300544739, + 0.9985209107398987, + 0.9987210631370544, + 0.9989185333251953, + 0.9991594552993774, + 0.998916506767273, + 0.9945278763771057 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986482262611389, + 0.9970360994338989, + 0.9930166006088257, + 0.9946854114532471, + 0.998021125793457, + 0.998754620552063, + 0.9989307522773743, + 0.9989205598831177, + 0.998132050037384, + 0.9989315867424011 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "final_label": "POSITIVE", + "final_count": 25, + "final_proportion": 0.9259259259259259, + "final_counts": { + "POSITIVE": 25, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9259259259259259, + "NEGATIVE": 0.07407407407407407 + } + } }, { "season_code": "202303", @@ -202970,10 +418965,149 @@ "classnotes": "", "final_exam": "Tuesday, December 19, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89139\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89139/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986949563026428, + 0.9988393187522888, + 0.9988204836845398, + 0.9989292025566101, + 0.9987780451774597, + 0.9889025092124939, + 0.9988896250724792, + 0.9985864162445068, + 0.998939573764801, + 0.9989050626754761, + 0.9987702965736389 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9090909090909091 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9984256029129028, + 0.9980610013008118, + 0.998903751373291, + 0.9989066123962402, + 0.998855471611023, + 0.9989257454872131, + 0.9989144802093506, + 0.9988632202148438, + 0.9988991022109985, + 0.9995080232620239, + 0.9988728165626526, + 0.9994999170303345 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.991007387638092, + 0.9989073276519775, + 0.9984955787658691, + 0.9987754225730896, + 0.9988856911659241, + 0.9974194765090942, + 0.9989080429077148, + 0.9983717799186707, + 0.9989110231399536, + 0.9988148212432861, + 0.9923912882804871, + 0.9985685348510742, + 0.9979214072227478 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 10 + }, + "sentiment_distribution": { + "NEGATIVE": 0.23076923076923078, + "POSITIVE": 0.7692307692307693 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7692307692307693 + ] + }, + "final_label": "POSITIVE", + "final_count": 30, + "final_proportion": 0.8333333333333334, + "final_counts": { + "POSITIVE": 30, + "NEGATIVE": 6 + }, + "final_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + } + } }, { "season_code": "202303", @@ -203036,10 +419170,135 @@ "classnotes": "", "final_exam": "Tuesday, December 19, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91549\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/91549/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9913685917854309, + 0.998908281326294, + 0.9973875880241394, + 0.9987450838088989, + 0.9988206028938293, + 0.9987731575965881, + 0.9982616305351257, + 0.9987955093383789, + 0.998685896396637 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988256096839905, + 0.9986090064048767, + 0.9985876083374023, + 0.987079381942749, + 0.9988741278648376, + 0.9987080097198486, + 0.997873067855835, + 0.9988856911659241, + 0.9989331364631653, + 0.9937418103218079, + 0.9994969367980957, + 0.9942634701728821 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 9 + }, + "sentiment_distribution": { + "NEGATIVE": 0.25, + "POSITIVE": 0.75 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987179040908813, + 0.9987711310386658, + 0.9974592328071594, + 0.9989247918128967, + 0.9986730813980103, + 0.9989203214645386, + 0.9989156723022461, + 0.9987201690673828 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 26, + "final_proportion": 0.896551724137931, + "final_counts": { + "POSITIVE": 26, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.896551724137931, + "NEGATIVE": 0.10344827586206896 + } + } }, { "season_code": "202303", @@ -203094,7 +419353,7 @@ ], "areas": [], "flags": [ - "YC Math: Algebra\/Number Theory", + "YC Math: Algebra/Number Theory", "YC MENG: Eng Sci-Mech Crse", "YC MENG: BS Technical Elective", "YC NSCI: Quantitative" @@ -203104,10 +419363,191 @@ "classnotes": "", "final_exam": "Tuesday, December 19, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89068\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89068/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988952279090881, + 0.9986178874969482, + 0.9989060163497925, + 0.9986304044723511, + 0.996855616569519, + 0.9988687634468079, + 0.9979276657104492, + 0.9985707998275757, + 0.9987970590591431, + 0.998892605304718, + 0.9980090260505676, + 0.9920542240142822, + 0.9988805651664734, + 0.9987199306488037, + 0.9987319111824036, + 0.9988778233528137, + 0.9969979524612427 + ], + "sentiment_counts": { + "POSITIVE": 15, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8823529411764706, + "NEGATIVE": 0.11764705882352941 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8823529411764706 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989044666290283, + 0.9974538683891296, + 0.9988884329795837, + 0.9987932443618774, + 0.9988253712654114, + 0.9988126754760742, + 0.998916745185852, + 0.9988916516304016, + 0.9987626075744629, + 0.9988056421279907, + 0.9989198446273804, + 0.9987658262252808, + 0.9988561868667603, + 0.9988844990730286, + 0.9987409710884094, + 0.9986971020698547, + 0.9989363551139832, + 0.9985384941101074 + ], + "sentiment_counts": { + "POSITIVE": 18, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9927211403846741, + 0.9989249110221863, + 0.9989089965820312, + 0.998176097869873, + 0.9979358911514282, + 0.9987114667892456, + 0.9988916516304016, + 0.9960540533065796, + 0.9988691210746765, + 0.9989166259765625, + 0.9987672567367554, + 0.9986851811408997, + 0.9985625147819519, + 0.9988589286804199, + 0.9880467653274536, + 0.9989363551139832, + 0.9987494945526123, + 0.997117280960083, + 0.9988646507263184, + 0.9988235831260681, + 0.9989306330680847, + 0.9939954876899719 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 21 + }, + "sentiment_distribution": { + "NEGATIVE": 0.045454545454545456, + "POSITIVE": 0.9545454545454546 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9545454545454546 + ] + }, + "final_label": "POSITIVE", + "final_count": 54, + "final_proportion": 0.9473684210526315, + "final_counts": { + "POSITIVE": 54, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.9473684210526315, + "NEGATIVE": 0.05263157894736842 + } + } }, { "season_code": "202303", @@ -203145,7 +419585,7 @@ "11:35", "12:50", "WTS A30 - Watson Center 60 Sachem Street A30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -203153,7 +419593,7 @@ "11:35", "12:50", "WTS A30 - Watson Center 60 Sachem Street A30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -203162,7 +419602,7 @@ ], "areas": [], "flags": [ - "YC Math: Algebra\/Number Theory", + "YC Math: Algebra/Number Theory", "YC MENG: Eng Sci-Mech Crse", "YC MENG: BS Technical Elective", "YC NSCI: Quantitative" @@ -203172,10 +419612,129 @@ "classnotes": "", "final_exam": "Tuesday, December 19, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89069\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89069/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9972291588783264, + 0.9939993619918823, + 0.9984737038612366, + 0.9983988404273987, + 0.9993647933006287, + 0.9982895255088806, + 0.9977923631668091, + 0.998789370059967 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994878768920898, + 0.9984979629516602, + 0.9929225444793701, + 0.9991626739501953, + 0.9995110034942627, + 0.9988699555397034, + 0.9987615346908569, + 0.9918181896209717, + 0.9995070695877075, + 0.9986000657081604 + ], + "sentiment_counts": { + "NEGATIVE": 5, + "POSITIVE": 5 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9938374161720276, + 0.998916506767273, + 0.997117280960083, + 0.9994986057281494, + 0.9994907379150391, + 0.9988553524017334, + 0.9988948702812195, + 0.9962939620018005 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 0.6923076923076923, + "final_counts": { + "POSITIVE": 18, + "NEGATIVE": 8 + }, + "final_distribution": { + "POSITIVE": 0.6923076923076923, + "NEGATIVE": 0.3076923076923077 + } + } }, { "season_code": "202303", @@ -203213,7 +419772,7 @@ "14:30", "15:45", "WTS A51 - Watson Center 60 Sachem Street A51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -203221,7 +419780,7 @@ "14:30", "15:45", "WTS A51 - Watson Center 60 Sachem Street A51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -203230,7 +419789,7 @@ ], "areas": [], "flags": [ - "YC Math: Algebra\/Number Theory", + "YC Math: Algebra/Number Theory", "YC MENG: Eng Sci-Mech Crse", "YC MENG: BS Technical Elective", "YC NSCI: Quantitative" @@ -203240,10 +419799,101 @@ "classnotes": "", "final_exam": "Tuesday, December 19, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89070\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89070/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986724853515625, + 0.9806985259056091, + 0.9976748824119568, + 0.9975541234016418 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989328980445862, + 0.9987456798553467, + 0.9983574748039246, + 0.998594343662262 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987039566040039, + 0.9988775849342346, + 0.9994851350784302, + 0.998792290687561 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 0.75, + "final_counts": { + "POSITIVE": 9, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + } + } }, { "season_code": "202303", @@ -203280,7 +419930,7 @@ "9:00", "10:15", "WTS A51 - Watson Center 60 Sachem Street A51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -203288,7 +419938,7 @@ "9:00", "10:15", "WTS A51 - Watson Center 60 Sachem Street A51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -203297,7 +419947,7 @@ ], "areas": [], "flags": [ - "YC Math: Algebra\/Number Theory", + "YC Math: Algebra/Number Theory", "YC MENG: BS Technical Elective", "YC NSCI: Quantitative" ], @@ -203306,10 +419956,177 @@ "classnotes": "", "final_exam": "Tuesday, December 19, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89071\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89071/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986661672592163, + 0.9987731575965881, + 0.998297393321991, + 0.9946356415748596, + 0.9988141059875488, + 0.9981426000595093, + 0.9983762502670288, + 0.9924192428588867, + 0.9988693594932556, + 0.9968852400779724, + 0.9984656572341919, + 0.9989216327667236, + 0.9984434247016907, + 0.9988879561424255, + 0.992151141166687, + 0.9987963438034058, + 0.9986120462417603 + ], + "sentiment_counts": { + "POSITIVE": 15, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8823529411764706, + "NEGATIVE": 0.11764705882352941 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8823529411764706 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983595013618469, + 0.9979863166809082, + 0.9984885454177856, + 0.9984775185585022, + 0.9932988882064819, + 0.9995051622390747, + 0.9987995624542236, + 0.9986091256141663, + 0.9989114999771118, + 0.9988079071044922, + 0.9988768696784973, + 0.9977524876594543, + 0.9974810481071472, + 0.9989122152328491, + 0.995665967464447, + 0.9988064765930176, + 0.9969410300254822 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 5 + }, + "sentiment_distribution": { + "POSITIVE": 0.7058823529411765, + "NEGATIVE": 0.29411764705882354 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7058823529411765 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989055395126343, + 0.997543215751648, + 0.9989256262779236, + 0.995158851146698, + 0.9995020627975464, + 0.9987315535545349, + 0.9936347007751465, + 0.9988793730735779, + 0.9987385869026184, + 0.9988716244697571, + 0.9988982677459717, + 0.9989166259765625, + 0.997902512550354, + 0.9988706707954407, + 0.9989093542098999, + 0.9982170462608337 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 39, + "final_proportion": 0.78, + "final_counts": { + "POSITIVE": 39, + "NEGATIVE": 11 + }, + "final_distribution": { + "POSITIVE": 0.78, + "NEGATIVE": 0.22 + } + } }, { "season_code": "202303", @@ -203346,7 +420163,7 @@ "11:35", "12:50", "WTS A60 - Watson Center 60 Sachem Street A60", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -203354,7 +420171,7 @@ "11:35", "12:50", "WTS A60 - Watson Center 60 Sachem Street A60", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -203363,7 +420180,7 @@ ], "areas": [], "flags": [ - "YC Math: Algebra\/Number Theory", + "YC Math: Algebra/Number Theory", "YC MENG: BS Technical Elective", "YC NSCI: Quantitative" ], @@ -203372,10 +420189,197 @@ "classnotes": "", "final_exam": "Tuesday, December 19, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89072\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89072/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987584352493286, + 0.9945111274719238, + 0.9962653517723083, + 0.9988256096839905, + 0.9987415671348572, + 0.9983046054840088, + 0.983853816986084, + 0.996953010559082, + 0.9982713460922241, + 0.9922156929969788, + 0.9977501034736633, + 0.9966208934783936, + 0.9983820915222168, + 0.9986887574195862, + 0.9983793497085571, + 0.9975044131278992, + 0.9975007176399231, + 0.9969542026519775, + 0.9980987906455994 + ], + "sentiment_counts": { + "POSITIVE": 17, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8947368421052632, + "NEGATIVE": 0.10526315789473684 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8947368421052632 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988724589347839, + 0.9978717565536499, + 0.9960663914680481, + 0.9993693232536316, + 0.9986280202865601, + 0.999430239200592, + 0.9989022016525269, + 0.9950835704803467, + 0.9986372590065002, + 0.9975230097770691, + 0.9989287257194519, + 0.9978594183921814, + 0.9992576241493225, + 0.9983990788459778, + 0.9990065693855286, + 0.9965002536773682, + 0.9963088631629944, + 0.998907208442688, + 0.9880313873291016, + 0.9983806610107422 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 8 + }, + "sentiment_distribution": { + "POSITIVE": 0.6, + "NEGATIVE": 0.4 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9972902536392212, + 0.9985028505325317, + 0.9994739890098572, + 0.9953263998031616, + 0.994134247303009, + 0.9983943104743958, + 0.9994101524353027, + 0.9987937211990356, + 0.9994862079620361, + 0.995635449886322, + 0.9975748658180237, + 0.9988717436790466, + 0.9986446499824524, + 0.9988816380500793, + 0.9989991784095764, + 0.9959661960601807, + 0.9994939565658569, + 0.998770534992218, + 0.9986153841018677, + 0.9987799525260925, + 0.9991655349731445 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 10 + }, + "sentiment_distribution": { + "POSITIVE": 0.5238095238095238, + "NEGATIVE": 0.47619047619047616 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "final_label": "POSITIVE", + "final_count": 40, + "final_proportion": 0.6666666666666666, + "final_counts": { + "POSITIVE": 40, + "NEGATIVE": 20 + }, + "final_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + } + } }, { "season_code": "202303", @@ -203437,7 +420441,7 @@ ], "areas": [], "flags": [ - "YC Math: Algebra\/Number Theory", + "YC Math: Algebra/Number Theory", "YC NSCI: Quantitative" ], "regnotes": "", @@ -203445,10 +420449,155 @@ "classnotes": "", "final_exam": "Thursday, December 14, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89073\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89073/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988545179367065, + 0.9980611205101013, + 0.9987455606460571, + 0.9736225008964539, + 0.9987970590591431, + 0.9986000657081604, + 0.9986152648925781, + 0.9989281296730042, + 0.998898983001709, + 0.9987409710884094, + 0.998789370059967, + 0.9979041814804077, + 0.9987205266952515, + 0.9988743662834167 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9285714285714286, + "NEGATIVE": 0.07142857142857142 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9285714285714286 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.994305431842804, + 0.9988382458686829, + 0.998515784740448, + 0.9986959099769592, + 0.9976567029953003, + 0.9985656142234802, + 0.9981424808502197, + 0.9989290833473206, + 0.998801589012146, + 0.9988600015640259, + 0.9989089965820312 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998913049697876, + 0.9987818598747253, + 0.9988656044006348, + 0.9988975524902344, + 0.9978893399238586, + 0.9935535192489624, + 0.9994396567344666, + 0.998848557472229, + 0.9988014698028564, + 0.9962298274040222, + 0.9987298846244812, + 0.9988706707954407, + 0.9988960027694702, + 0.9967653751373291 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9285714285714286, + "NEGATIVE": 0.07142857142857142 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9285714285714286 + ] + }, + "final_label": "POSITIVE", + "final_count": 37, + "final_proportion": 0.9487179487179487, + "final_counts": { + "POSITIVE": 37, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9487179487179487, + "NEGATIVE": 0.05128205128205128 + } + } }, { "season_code": "202303", @@ -203487,7 +420636,7 @@ "9:00", "10:15", "YSB MARSH - Yale Science Building MARSH", - "https:\/\/map.yale.edu\/?id=1910#!m\/563700" + "https://map.yale.edu/?id=1910#!m/563700" ] ], "Wednesday": [ @@ -203495,7 +420644,7 @@ "9:00", "10:15", "YSB MARSH - Yale Science Building MARSH", - "https:\/\/map.yale.edu\/?id=1910#!m\/563700" + "https://map.yale.edu/?id=1910#!m/563700" ] ] }, @@ -203504,17 +420653,530 @@ ], "areas": [], "flags": [ - "YC Math: Stat\/Applied Math" + "YC Math: Stat/Applied Math" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "Thursday, December 14, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88785\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88785/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9922088384628296, + 0.9988448619842529, + 0.9987841248512268, + 0.9980996251106262, + 0.9980090260505676, + 0.9862581491470337, + 0.9932124614715576, + 0.9975044131278992, + 0.9986936450004578, + 0.9972137808799744, + 0.9988860487937927, + 0.9607011675834656, + 0.9951561689376831, + 0.9977083206176758, + 0.9986571073532104, + 0.9985337257385254, + 0.9987702965736389, + 0.998678982257843, + 0.9914599657058716, + 0.9887861013412476, + 0.9988879561424255, + 0.9988693594932556, + 0.9989025592803955, + 0.9983875751495361, + 0.9763613939285278, + 0.9987866282463074, + 0.9867428541183472, + 0.998925507068634, + 0.9967980980873108, + 0.9710434079170227, + 0.9920361638069153, + 0.9987838864326477, + 0.998725950717926, + 0.9986494183540344, + 0.9987427592277527, + 0.9862191081047058, + 0.9985862970352173, + 0.9935139417648315, + 0.987275242805481, + 0.9879562258720398, + 0.9914578795433044, + 0.9981551766395569, + 0.9946544170379639, + 0.9981948733329773, + 0.9931229948997498, + 0.9988886713981628, + 0.9449286460876465, + 0.9950195550918579, + 0.9987497329711914, + 0.9265551567077637, + 0.9981997013092041, + 0.9984840750694275, + 0.9909586906433105, + 0.9607011675834656, + 0.9905112385749817, + 0.9710434079170227, + 0.9607011675834656, + 0.9966055154800415, + 0.9988293051719666, + 0.9980244636535645, + 0.9985841512680054, + 0.9986422657966614, + 0.9987488985061646, + 0.9985709190368652, + 0.9988871216773987, + 0.9988468885421753, + 0.9988774657249451, + 0.9985264539718628, + 0.9986937642097473, + 0.9986024498939514, + 0.9967966675758362, + 0.9958661794662476, + 0.9852821826934814, + 0.9988529682159424 + ], + "sentiment_counts": { + "POSITIVE": 61, + "NEGATIVE": 13 + }, + "sentiment_distribution": { + "POSITIVE": 0.8243243243243243, + "NEGATIVE": 0.17567567567567569 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8243243243243243 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984436631202698, + 0.998590886592865, + 0.9988439083099365, + 0.9985301494598389, + 0.9994983673095703, + 0.9965038299560547, + 0.9993413090705872, + 0.998417854309082, + 0.997890293598175, + 0.9957457184791565, + 0.998856782913208, + 0.9995087385177612, + 0.9987764954566956, + 0.9979186654090881, + 0.9987837672233582, + 0.9994136095046997, + 0.9898231625556946, + 0.9988947510719299, + 0.9994986057281494, + 0.9989155530929565, + 0.9987443685531616, + 0.9989176988601685, + 0.9986748695373535, + 0.997704803943634, + 0.9989057779312134, + 0.9994675517082214, + 0.9928760528564453, + 0.9980384707450867, + 0.9963361024856567, + 0.9994969367980957, + 0.9987447261810303, + 0.9980171918869019, + 0.9915614724159241, + 0.9979273080825806, + 0.9985038042068481, + 0.9983540773391724, + 0.9977091550827026, + 0.9984152317047119, + 0.9988763928413391, + 0.9971765279769897, + 0.9956926703453064, + 0.998913049697876, + 0.9982097148895264, + 0.9845065474510193, + 0.9994513392448425, + 0.9962577819824219, + 0.9985924363136292, + 0.9988585710525513, + 0.9988277554512024, + 0.9993222951889038, + 0.9988855719566345, + 0.9981684684753418, + 0.9988149404525757, + 0.9988549947738647, + 0.998898983001709, + 0.9986258745193481, + 0.9984549283981323, + 0.9979239702224731, + 0.9988574981689453, + 0.9987952709197998, + 0.9975115060806274, + 0.9816967844963074, + 0.9994984865188599, + 0.9978863596916199, + 0.9989087581634521, + 0.9989068508148193, + 0.9988377690315247, + 0.9983034133911133, + 0.9985352754592896, + 0.9989275336265564, + 0.9994840621948242, + 0.9988749623298645, + 0.9989074468612671 + ], + "sentiment_counts": { + "POSITIVE": 54, + "NEGATIVE": 19 + }, + "sentiment_distribution": { + "POSITIVE": 0.7397260273972602, + "NEGATIVE": 0.2602739726027397 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7397260273972602 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989011287689209, + 0.9987314343452454, + 0.9819492697715759, + 0.9988594055175781, + 0.998671293258667, + 0.9985107779502869, + 0.9920382499694824, + 0.9989142417907715, + 0.9988102912902832, + 0.994491696357727, + 0.9987694621086121, + 0.9995049238204956, + 0.9986810088157654, + 0.9986795783042908, + 0.9985092282295227, + 0.9988483190536499, + 0.9935640692710876, + 0.9975690245628357, + 0.9989199638366699, + 0.9967365860939026, + 0.9987497329711914, + 0.9979348182678223, + 0.9985588192939758, + 0.9988377690315247, + 0.9988184571266174, + 0.9987712502479553, + 0.9988905787467957, + 0.9976322650909424, + 0.9981504082679749, + 0.994041383266449, + 0.9988378882408142, + 0.9977939128875732, + 0.9908273816108704, + 0.9987969398498535, + 0.9986781477928162, + 0.9994988441467285, + 0.9987773299217224, + 0.9978945851325989, + 0.9987804293632507, + 0.9989076852798462, + 0.9984985589981079, + 0.998862624168396, + 0.9465747475624084, + 0.9963223934173584, + 0.9982625842094421, + 0.9988148212432861, + 0.9985452890396118, + 0.9981560111045837, + 0.9994097948074341, + 0.9994888305664062, + 0.9985515475273132, + 0.998698353767395, + 0.9987881779670715, + 0.9985462427139282, + 0.9981922507286072, + 0.9988242983818054, + 0.9993966817855835, + 0.9988186955451965, + 0.9959861636161804, + 0.9989281296730042, + 0.9994947910308838, + 0.9994603991508484, + 0.9652548432350159, + 0.998933732509613, + 0.9988805651664734, + 0.9988366961479187, + 0.9969596862792969, + 0.9987900853157043, + 0.9959138035774231, + 0.9976015686988831, + 0.9983513355255127, + 0.9937657117843628, + 0.9988779425621033, + 0.9981922507286072, + 0.9988390803337097, + 0.9988701939582825 + ], + "sentiment_counts": { + "POSITIVE": 61, + "NEGATIVE": 15 + }, + "sentiment_distribution": { + "POSITIVE": 0.8026315789473685, + "NEGATIVE": 0.19736842105263158 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8026315789473685 + ] + }, + "final_label": "POSITIVE", + "final_count": 176, + "final_proportion": 0.7892376681614349, + "final_counts": { + "POSITIVE": 176, + "NEGATIVE": 47 + }, + "final_distribution": { + "POSITIVE": 0.7892376681614349, + "NEGATIVE": 0.21076233183856502 + } + } }, { "season_code": "202303", @@ -203552,7 +421214,7 @@ "11:35", "12:50", "ML 211 - Mason Laboratory 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ], "Thursday": [ @@ -203560,7 +421222,7 @@ "11:35", "12:50", "ML 211 - Mason Laboratory 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ] }, @@ -203569,8 +421231,8 @@ ], "areas": [], "flags": [ - "YC Math: Stat\/Applied Math", - "YC Math: Algebra\/Number Theory", + "YC Math: Stat/Applied Math", + "YC Math: Algebra/Number Theory", "YC NSCI: Quantitative" ], "regnotes": "", @@ -203578,10 +421240,189 @@ "classnotes": "", "final_exam": "Friday, December 15, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89075\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89075/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987881779670715, + 0.9991299510002136, + 0.9988893866539001, + 0.9986748695373535, + 0.9988062381744385, + 0.9972847700119019, + 0.9869139790534973, + 0.9904670119285583, + 0.9987292885780334, + 0.9871401190757751, + 0.9978348612785339, + 0.9945563077926636, + 0.9866459369659424, + 0.9987922310829163, + 0.9985802173614502, + 0.9987646341323853, + 0.9987784028053284, + 0.998895525932312 + ], + "sentiment_counts": { + "POSITIVE": 16, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987518787384033, + 0.9994433522224426, + 0.9989211559295654, + 0.9994798302650452, + 0.9989092350006104, + 0.9891903400421143, + 0.9977372884750366, + 0.9983057975769043, + 0.9995124340057373, + 0.9931814074516296, + 0.9981828331947327, + 0.9989369511604309, + 0.9963041543960571, + 0.9973909854888916, + 0.998403012752533, + 0.9994440674781799, + 0.9988681077957153, + 0.9989389777183533 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 6 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988977909088135, + 0.9993708729743958, + 0.9985209107398987, + 0.9984652996063232, + 0.9985761642456055, + 0.8825386762619019, + 0.9988740086555481, + 0.9988793730735779, + 0.9987108707427979, + 0.8952719569206238, + 0.9972313046455383, + 0.9989171028137207, + 0.9955788254737854, + 0.9947608113288879, + 0.9989080429077148, + 0.9988777041435242, + 0.9986586570739746, + 0.9995002746582031, + 0.9989001750946045, + 0.9988880753517151 + ], + "sentiment_counts": { + "POSITIVE": 18, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "final_label": "POSITIVE", + "final_count": 46, + "final_proportion": 0.8214285714285714, + "final_counts": { + "POSITIVE": 46, + "NEGATIVE": 10 + }, + "final_distribution": { + "POSITIVE": 0.8214285714285714, + "NEGATIVE": 0.17857142857142858 + } + } }, { "season_code": "202303", @@ -203636,7 +421477,7 @@ "areas": [], "flags": [ "YC Mathematics: Analysis", - "YC Math: Stat\/Applied Math", + "YC Math: Stat/Applied Math", "YC NSCI: Quantitative" ], "regnotes": "", @@ -203644,10 +421485,149 @@ "classnotes": "", "final_exam": "Monday, December 18, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89074\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89074/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9955182671546936, + 0.8333531618118286, + 0.9937469959259033, + 0.9987075328826904, + 0.9988382458686829, + 0.9943389296531677, + 0.9951550960540771, + 0.9988734126091003, + 0.9983261227607727, + 0.997305154800415, + 0.9989000558853149, + 0.9935264587402344 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988812804222107, + 0.9994716048240662, + 0.9989266991615295, + 0.9962634444236755, + 0.9994926452636719, + 0.9989258646965027, + 0.9985948204994202, + 0.9989026784896851, + 0.9988272786140442, + 0.9989074468612671, + 0.998916506767273, + 0.9935638308525085 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9934879541397095, + 0.9652339816093445, + 0.9988856911659241, + 0.996179461479187, + 0.9976971745491028, + 0.9985759258270264, + 0.9890522360801697, + 0.9988952279090881, + 0.9988319277763367, + 0.998598039150238, + 0.9987446069717407, + 0.9977961778640747 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 29, + "final_proportion": 0.8055555555555556, + "final_counts": { + "POSITIVE": 29, + "NEGATIVE": 7 + }, + "final_distribution": { + "POSITIVE": 0.8055555555555556, + "NEGATIVE": 0.19444444444444445 + } + } }, { "season_code": "202303", @@ -203684,7 +421664,7 @@ "13:00", "14:15", "WTS A51 - Watson Center 60 Sachem Street A51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -203692,7 +421672,7 @@ "13:00", "14:15", "WTS A51 - Watson Center 60 Sachem Street A51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -203709,10 +421689,197 @@ "classnotes": "", "final_exam": "Tuesday, December 19, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89076\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89076/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9942528605461121, + 0.9987494945526123, + 0.9988915324211121, + 0.9987913966178894, + 0.9988147020339966, + 0.99871826171875, + 0.9987072944641113, + 0.9989209175109863, + 0.9933307766914368, + 0.9984947443008423, + 0.9977341890335083, + 0.9988933205604553, + 0.9986401200294495, + 0.9987708926200867, + 0.9988932013511658, + 0.9989123344421387, + 0.9988682270050049 + ], + "sentiment_counts": { + "POSITIVE": 17, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994789958000183, + 0.9076681137084961, + 0.9993689656257629, + 0.9994872808456421, + 0.9989257454872131, + 0.9987156391143799, + 0.9981291890144348, + 0.9989342093467712, + 0.9994975328445435, + 0.9989314675331116, + 0.9984546899795532, + 0.9987488985061646, + 0.9988747239112854, + 0.9987480640411377, + 0.9981764554977417, + 0.998747706413269, + 0.99826580286026, + 0.998855471611023, + 0.9987254738807678, + 0.998927891254425, + 0.9989076852798462 + ], + "sentiment_counts": { + "NEGATIVE": 10, + "POSITIVE": 11 + }, + "sentiment_distribution": { + "NEGATIVE": 0.47619047619047616, + "POSITIVE": 0.5238095238095238 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994589686393738, + 0.9988671541213989, + 0.9983402490615845, + 0.9987408518791199, + 0.9512525200843811, + 0.9987609386444092, + 0.9994656443595886, + 0.9983229041099548, + 0.9989373087882996, + 0.9989019632339478, + 0.99885094165802, + 0.9989005327224731, + 0.9985994696617126, + 0.9988529682159424, + 0.9976503252983093, + 0.998852014541626, + 0.9989275336265564, + 0.9988553524017334, + 0.9989297986030579, + 0.9987529516220093, + 0.9989326596260071, + 0.9986931681632996 + ], + "sentiment_counts": { + "NEGATIVE": 4, + "POSITIVE": 18 + }, + "sentiment_distribution": { + "NEGATIVE": 0.18181818181818182, + "POSITIVE": 0.8181818181818182 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8181818181818182 + ] + }, + "final_label": "POSITIVE", + "final_count": 46, + "final_proportion": 0.7666666666666667, + "final_counts": { + "POSITIVE": 46, + "NEGATIVE": 14 + }, + "final_distribution": { + "POSITIVE": 0.7666666666666667, + "NEGATIVE": 0.23333333333333334 + } + } }, { "season_code": "202303", @@ -203766,17 +421933,138 @@ ], "areas": [], "flags": [ - "YC Math: Logic\/Foundations" + "YC Math: Logic/Foundations" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "Sunday, December 17, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89077\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89077/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9944615364074707, + 0.9983243346214294, + 0.9995099306106567, + 0.9976880550384521, + 0.9877073168754578, + 0.9982660412788391, + 0.9986010193824768, + 0.9987937211990356, + 0.9994655251502991 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.7777777777777778, + "NEGATIVE": 0.2222222222222222 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7777777777777778 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9994896650314331, + 0.9981862902641296, + 0.9995019435882568, + 0.9994901418685913, + 0.9987817406654358, + 0.9972303509712219, + 0.9994990825653076, + 0.9986536502838135, + 0.9994562268257141 + ], + "sentiment_counts": { + "NEGATIVE": 6, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.6666666666666666, + "POSITIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9994705319404602, + 0.9987597465515137, + 0.9995063543319702, + 0.9994900226593018, + 0.9988645315170288, + 0.997703492641449, + 0.9995063543319702, + 0.995318591594696, + 0.9994012117385864 + ], + "sentiment_counts": { + "NEGATIVE": 6, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.6666666666666666, + "POSITIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.6666666666666666 + ] + }, + "final_label": "neutral", + "final_count": 14, + "final_proportion": 0.5, + "final_counts": { + "POSITIVE": 13, + "NEGATIVE": 14 + }, + "final_distribution": { + "POSITIVE": 0.48148148148148145, + "NEGATIVE": 0.5185185185185185 + } + } }, { "season_code": "202303", @@ -203813,7 +422101,7 @@ "13:00", "14:15", "WTS A60 - Watson Center 60 Sachem Street A60", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -203821,7 +422109,7 @@ "13:00", "14:15", "WTS A60 - Watson Center 60 Sachem Street A60", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -203838,10 +422126,179 @@ "classnotes": "", "final_exam": "Saturday, December 16, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89078\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89078/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9942142367362976, + 0.998629093170166, + 0.9893625378608704, + 0.9988386034965515, + 0.997917115688324, + 0.9988051652908325, + 0.9939661622047424, + 0.9978762865066528, + 0.9958212375640869, + 0.998894989490509, + 0.9987282156944275, + 0.9986681938171387, + 0.9879254102706909, + 0.9983610510826111, + 0.9634470343589783, + 0.9939959049224854, + 0.9981849789619446 + ], + "sentiment_counts": { + "POSITIVE": 17, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988729357719421, + 0.9988343119621277, + 0.9986715316772461, + 0.9947189092636108, + 0.998150646686554, + 0.9978920817375183, + 0.9988110065460205, + 0.9987390637397766, + 0.9988095760345459, + 0.9987195730209351, + 0.9985550045967102, + 0.9995081424713135, + 0.9993270635604858, + 0.9985454082489014, + 0.9995017051696777, + 0.9988868832588196, + 0.9986795783042908 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 7 + }, + "sentiment_distribution": { + "POSITIVE": 0.5882352941176471, + "NEGATIVE": 0.4117647058823529 + }, + "sentiment_overall": [ + "POSITIVE", + 0.5882352941176471 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9294323921203613, + 0.9987510442733765, + 0.9972025156021118, + 0.9986532926559448, + 0.9987431168556213, + 0.9989315867424011, + 0.9987244009971619, + 0.9956406354904175, + 0.9988852143287659, + 0.9995139837265015, + 0.9984464049339294, + 0.9995102882385254, + 0.9986959099769592, + 0.9916549921035767, + 0.9956325888633728, + 0.997300922870636, + 0.9989140033721924 + ], + "sentiment_counts": { + "NEGATIVE": 6, + "POSITIVE": 11 + }, + "sentiment_distribution": { + "NEGATIVE": 0.35294117647058826, + "POSITIVE": 0.6470588235294118 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6470588235294118 + ] + }, + "final_label": "POSITIVE", + "final_count": 38, + "final_proportion": 0.7450980392156863, + "final_counts": { + "POSITIVE": 38, + "NEGATIVE": 13 + }, + "final_distribution": { + "POSITIVE": 0.7450980392156863, + "NEGATIVE": 0.2549019607843137 + } + } }, { "season_code": "202303", @@ -203878,7 +422335,7 @@ "9:00", "10:15", "WTS A60 - Watson Center 60 Sachem Street A60", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -203886,7 +422343,7 @@ "9:00", "10:15", "WTS A60 - Watson Center 60 Sachem Street A60", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -203897,17 +422354,214 @@ "flags": [ "YC Math: Core Complex Analysis", "YC Mathematics: Analysis", - "YC Math: Stat\/Applied Math" + "YC Math: Stat/Applied Math" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "Thursday, December 14, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89079\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89079/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9980021119117737, + 0.9651203751564026, + 0.9945141077041626, + 0.9983043670654297, + 0.9947800636291504, + 0.9974314570426941, + 0.9992547631263733, + 0.9985784292221069, + 0.9940550327301025, + 0.9987064599990845, + 0.9988278746604919, + 0.9979408383369446, + 0.9986904263496399, + 0.9983875751495361, + 0.9974833130836487, + 0.9985413551330566, + 0.993996262550354, + 0.9980923533439636, + 0.9988977909088135 + ], + "sentiment_counts": { + "NEGATIVE": 4, + "POSITIVE": 15 + }, + "sentiment_distribution": { + "NEGATIVE": 0.21052631578947367, + "POSITIVE": 0.7894736842105263 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7894736842105263 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994723200798035, + 0.9985396862030029, + 0.9914632439613342, + 0.9986775517463684, + 0.9986063838005066, + 0.9989128112792969, + 0.9988654851913452, + 0.9993307590484619, + 0.9987755417823792, + 0.998145341873169, + 0.9987223744392395, + 0.9994933605194092, + 0.9988489151000977, + 0.9985548853874207, + 0.9994996786117554, + 0.9988527297973633, + 0.9987578392028809, + 0.9988382458686829, + 0.9989256262779236, + 0.9994173049926758, + 0.9987708926200867, + 0.9986838698387146 + ], + "sentiment_counts": { + "NEGATIVE": 8, + "POSITIVE": 14 + }, + "sentiment_distribution": { + "NEGATIVE": 0.36363636363636365, + "POSITIVE": 0.6363636363636364 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6363636363636364 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994733929634094, + 0.998809814453125, + 0.9774155020713806, + 0.9985734224319458, + 0.9988804459571838, + 0.997117280960083, + 0.9987198114395142, + 0.9920274615287781, + 0.9988440275192261, + 0.9992648959159851, + 0.9988241791725159, + 0.999342143535614, + 0.998838484287262, + 0.9987651109695435, + 0.9990293979644775, + 0.998887836933136, + 0.998785674571991, + 0.9995110034942627, + 0.9988131523132324, + 0.9994468092918396, + 0.9988497495651245, + 0.9994970560073853, + 0.9987253546714783, + 0.9989261031150818 + ], + "sentiment_counts": { + "NEGATIVE": 8, + "POSITIVE": 16 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 45, + "final_proportion": 0.6923076923076923, + "final_counts": { + "NEGATIVE": 20, + "POSITIVE": 45 + }, + "final_distribution": { + "NEGATIVE": 0.3076923076923077, + "POSITIVE": 0.6923076923076923 + } + } }, { "season_code": "202303", @@ -203970,10 +422624,91 @@ "classnotes": "", "final_exam": "Sunday, December 17, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89080\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89080/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9876307845115662, + 0.9987039566040039 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 1 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987910389900208, + 0.9984209537506104 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989280104637146, + 0.9982775449752808, + 0.9988995790481567 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 0.8571428571428571, + "final_counts": { + "NEGATIVE": 1, + "POSITIVE": 6 + }, + "final_distribution": { + "NEGATIVE": 0.14285714285714285, + "POSITIVE": 0.8571428571428571 + } + } }, { "season_code": "202303", @@ -204029,17 +422764,146 @@ ], "areas": [], "flags": [ - "YC Math: Stat\/Applied Math" + "YC Math: Stat/Applied Math" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88630\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88630/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981789588928223, + 0.9710434079170227, + 0.9981359243392944, + 0.9385605454444885, + 0.9989168643951416, + 0.9839439392089844, + 0.9988215565681458, + 0.9982486963272095, + 0.9987636804580688, + 0.9989122152328491 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9991459846496582, + 0.9989067316055298, + 0.9994729161262512, + 0.9987096786499023, + 0.9988675117492676, + 0.998776376247406, + 0.998906135559082, + 0.9988901019096375, + 0.998683750629425, + 0.9986937642097473 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 8 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2, + "POSITIVE": 0.8 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9094185829162598, + 0.9994508624076843, + 0.9981964230537415, + 0.9962233304977417, + 0.99524986743927, + 0.9988453388214111, + 0.9988884329795837, + 0.9977830052375793, + 0.9986488223075867, + 0.998782217502594, + 0.998781144618988 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8181818181818182, + "NEGATIVE": 0.18181818181818182 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8181818181818182 + ] + }, + "final_label": "POSITIVE", + "final_count": 27, + "final_proportion": 0.8709677419354839, + "final_counts": { + "POSITIVE": 27, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.8709677419354839, + "NEGATIVE": 0.12903225806451613 + } + } }, { "season_code": "202303", @@ -204093,18 +422957,121 @@ ], "areas": [], "flags": [ - "YC Math: Stat\/Applied Math", - "YC Math: Algebra\/Number Theory" + "YC Math: Stat/Applied Math", + "YC Math: Algebra/Number Theory" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "Sunday, December 17, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89081\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89081/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982039928436279, + 0.9957263469696045, + 0.9983772039413452, + 0.9985699653625488, + 0.9987686276435852, + 0.9975749850273132 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.8861423134803772, + 0.9987015724182129, + 0.9995002746582031, + 0.9987155199050903, + 0.9995096921920776, + 0.9992150068283081, + 0.9989385008811951 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.42857142857142855, + "NEGATIVE": 0.5714285714285714 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.5714285714285714 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987666606903076, + 0.9994946718215942, + 0.9989280104637146, + 0.9988802075386047, + 0.9961225390434265 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.6, + "NEGATIVE": 0.4 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 0.6666666666666666, + "final_counts": { + "POSITIVE": 12, + "NEGATIVE": 6 + }, + "final_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + } + } }, { "season_code": "202303", @@ -204141,7 +423108,7 @@ "10:30", "11:20", "WTS A60 - Watson Center 60 Sachem Street A60", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -204149,7 +423116,7 @@ "10:30", "11:20", "WTS A60 - Watson Center 60 Sachem Street A60", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Friday": [ @@ -204157,7 +423124,7 @@ "10:30", "11:20", "WTS A60 - Watson Center 60 Sachem Street A60", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -204167,17 +423134,234 @@ "areas": [], "flags": [ "YC Mathematics: Core Algebra", - "YC Math: Algebra\/Number Theory" - ], - "regnotes": "", - "rp_attr": "", - "classnotes": "", - "final_exam": "No regular final examination", - "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89082\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "YC Math: Algebra/Number Theory" + ], + "regnotes": "", + "rp_attr": "", + "classnotes": "", + "final_exam": "No regular final examination", + "course_home_url": "", + "syllabus_url": "https://yale.instructure.com/courses/89082/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9879270195960999, + 0.9986248016357422, + 0.9966756105422974, + 0.9987645149230957, + 0.9989200830459595, + 0.9976893663406372, + 0.9986500144004822, + 0.9987027645111084, + 0.9982002973556519, + 0.9987801909446716, + 0.9988055229187012, + 0.9987867474555969, + 0.9986960291862488, + 0.9417198896408081, + 0.9969342947006226, + 0.9951925277709961, + 0.9989314675331116, + 0.9950729012489319, + 0.9988669157028198, + 0.9989216327667236, + 0.9989171028137207, + 0.9970725774765015, + 0.9987589120864868, + 0.9980815649032593 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 21 + }, + "sentiment_distribution": { + "NEGATIVE": 0.125, + "POSITIVE": 0.875 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988839030265808, + 0.9993756413459778, + 0.9989155530929565, + 0.998786985874176, + 0.9986477494239807, + 0.9989076852798462, + 0.9905824661254883, + 0.9987975358963013, + 0.9988119602203369, + 0.9979830980300903, + 0.995310366153717, + 0.9988778233528137, + 0.9988653659820557, + 0.9988164901733398, + 0.9988357424736023, + 0.9989117383956909, + 0.9988501071929932, + 0.9955352544784546, + 0.9989238381385803, + 0.9989023208618164, + 0.9988480806350708, + 0.9988740086555481, + 0.9972739815711975 + ], + "sentiment_counts": { + "POSITIVE": 22, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9565217391304348, + "NEGATIVE": 0.043478260869565216 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9565217391304348 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987683892250061, + 0.9984768033027649, + 0.9989405274391174, + 0.9985985159873962, + 0.9987762570381165, + 0.9988999366760254, + 0.9928136467933655, + 0.9989264607429504, + 0.9988631010055542, + 0.6015727519989014, + 0.9974477291107178, + 0.9986394047737122, + 0.9988921284675598, + 0.998869001865387, + 0.9988771080970764, + 0.9988621473312378, + 0.99620121717453, + 0.9988669157028198, + 0.9989326596260071, + 0.9989247918128967, + 0.9989297986030579, + 0.9989153146743774, + 0.9987001419067383, + 0.9987003803253174, + 0.9987980127334595, + 0.9989049434661865, + 0.998915433883667, + 0.9988487958908081 + ], + "sentiment_counts": { + "POSITIVE": 25, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.8928571428571429, + "NEGATIVE": 0.10714285714285714 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8928571428571429 + ] + }, + "final_label": "POSITIVE", + "final_count": 68, + "final_proportion": 0.9066666666666666, + "final_counts": { + "NEGATIVE": 7, + "POSITIVE": 68 + }, + "final_distribution": { + "NEGATIVE": 0.09333333333333334, + "POSITIVE": 0.9066666666666666 + } + } }, { "season_code": "202303", @@ -204233,17 +423417,118 @@ "areas": [], "flags": [ "YC Mathematics: Core Algebra", - "YC Math: Algebra\/Number Theory" + "YC Math: Algebra/Number Theory" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "Saturday, December 16, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89083\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89083/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987959861755371, + 0.9986388087272644, + 0.9976481795310974, + 0.9926488995552063, + 0.9987275004386902 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998753547668457, + 0.9989252686500549, + 0.9989132881164551, + 0.9987483024597168, + 0.9989234805107117, + 0.9986482262611389 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987290501594543, + 0.9969369173049927, + 0.9931390881538391, + 0.9992469549179077, + 0.9760538339614868, + 0.9987205862998962 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 0.9411764705882353, + "final_counts": { + "POSITIVE": 16, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9411764705882353, + "NEGATIVE": 0.058823529411764705 + } + } }, { "season_code": "202303", @@ -204300,17 +423585,110 @@ "Sc" ], "flags": [ - "YC Math: Stat\/Applied Math" + "YC Math: Stat/Applied Math" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "Wednesday, December 20, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90006\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90006/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998829185962677, + 0.9968031644821167, + 0.9952688813209534, + 0.9989026784896851, + 0.9987257122993469 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989243149757385, + 0.9987503290176392, + 0.9987583160400391, + 0.9988709092140198, + 0.9989049434661865 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998840868473053, + 0.9988143444061279, + 0.997434675693512, + 0.9988879561424255 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 14 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -204350,10 +423728,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89084\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89084/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -204393,10 +423799,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89085\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89085/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -204453,10 +423887,131 @@ "classnotes": "", "final_exam": "Wednesday, December 20, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89086\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89086/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9931358098983765, + 0.9963300824165344, + 0.997407853603363, + 0.9988037347793579, + 0.9980828762054443, + 0.9982397556304932, + 0.998678982257843, + 0.9987275004386902, + 0.9977424144744873 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988345503807068, + 0.9987753033638, + 0.9983354210853577, + 0.998740017414093, + 0.9942017197608948, + 0.9984222650527954, + 0.9994997978210449, + 0.9987276196479797, + 0.9989142417907715 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981008172035217, + 0.9987993240356445, + 0.998608410358429, + 0.979162871837616, + 0.9950752854347229, + 0.9988504648208618, + 0.9985154271125793, + 0.9988201260566711, + 0.998814582824707 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "final_label": "POSITIVE", + "final_count": 24, + "final_proportion": 0.8888888888888888, + "final_counts": { + "POSITIVE": 24, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + } + } }, { "season_code": "202303", @@ -204514,10 +424069,111 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89083\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89083/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987959861755371, + 0.9986388087272644, + 0.9976481795310974, + 0.9926488995552063, + 0.9987275004386902 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998753547668457, + 0.9989252686500549, + 0.9989132881164551, + 0.9987483024597168, + 0.9989234805107117, + 0.9986482262611389 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987290501594543, + 0.9969369173049927, + 0.9931390881538391, + 0.9992469549179077, + 0.9760538339614868, + 0.9987205862998962 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 0.9411764705882353, + "final_counts": { + "POSITIVE": 16, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9411764705882353, + "NEGATIVE": 0.058823529411764705 + } + } }, { "season_code": "202303", @@ -204575,10 +424231,91 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89080\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89080/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9876307845115662, + 0.9987039566040039 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 1 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987910389900208, + 0.9984209537506104 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989280104637146, + 0.9982775449752808, + 0.9988995790481567 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 0.8571428571428571, + "final_counts": { + "NEGATIVE": 1, + "POSITIVE": 6 + }, + "final_distribution": { + "NEGATIVE": 0.14285714285714285, + "POSITIVE": 0.8571428571428571 + } + } }, { "season_code": "202303", @@ -204615,7 +424352,7 @@ "11:35", "12:50", "LOM 206 - Leet Oliver Memorial Hall 206", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ], "Thursday": [ @@ -204623,7 +424360,7 @@ "11:35", "12:50", "LOM 206 - Leet Oliver Memorial Hall 206", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ] }, @@ -204635,10 +424372,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89095\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89095/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -204690,21 +424455,49 @@ "skills": [], "areas": [], "flags": [ - "YC Math: Geometry\/Topology" + "YC Math: Geometry/Topology" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89096\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89096/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", - "requirements": "Prerequisite: commutative algebra at the level of MATH 500\/501.", + "requirements": "Prerequisite: commutative algebra at the level of MATH 500/501.", "description": "This course provides an introduction to the language of basic ideas of algebraic geometry. We study affine and projective varieties, and introduce the more general theory of schemes. Our main references are Robin Hartshorne\u2019s book and Ravi Vakil\u2019s lecture notes.", "short_title": "Foundations of Algebraic Geom...", "title": "Foundations of Algebraic Geometry", @@ -204757,10 +424550,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91731\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91731/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -204799,7 +424620,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -204857,10 +424706,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90058\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90058/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -204897,7 +424774,7 @@ "11:35", "12:50", "LOM 205 - Leet Oliver Memorial Hall 205", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ], "Thursday": [ @@ -204905,7 +424782,7 @@ "11:35", "12:50", "LOM 205 - Leet Oliver Memorial Hall 205", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ] }, @@ -204917,10 +424794,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90054\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90054/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -204977,10 +424882,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90055\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90055/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -205029,10 +424962,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90056\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90056/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -205089,10 +425050,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90057\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90057/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -205130,7 +425119,7 @@ "14:30", "15:20", "WTS A51 - Watson Center 60 Sachem Street A51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -205142,10 +425131,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88867\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88867/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -205177,7 +425194,7 @@ "14:30", "15:20", "WTS B31 - Watson Center 60 Sachem Street B31", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -205198,7 +425215,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -205245,7 +425290,7 @@ "11:35", "12:25", "DAVIES AUD - Davies Auditorium, Becton Ctr AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ], "Wednesday": [ @@ -205253,7 +425298,7 @@ "11:35", "12:25", "DAVIES AUD - Davies Auditorium, Becton Ctr AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ] }, @@ -205271,10 +425316,367 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88332\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88332/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988285899162292, + 0.9985987544059753, + 0.998809814453125, + 0.9988301396369934, + 0.9961885809898376, + 0.9963723421096802, + 0.9986674785614014, + 0.9987983703613281, + 0.9987311959266663, + 0.9987553358078003, + 0.9985275268554688, + 0.9957778453826904, + 0.9983938336372375, + 0.9987599849700928, + 0.9987176656723022, + 0.9988657236099243, + 0.998927891254425, + 0.9988483190536499, + 0.9988301396369934, + 0.9910455346107483, + 0.9989321827888489, + 0.9988906979560852, + 0.9988834261894226, + 0.998792290687561, + 0.9988495111465454, + 0.9989033937454224, + 0.9965193271636963, + 0.9988548755645752, + 0.9983649849891663, + 0.9987993240356445, + 0.9988406300544739, + 0.9987932443618774, + 0.9982810020446777, + 0.8538457155227661, + 0.9988825917243958, + 0.9987704157829285, + 0.9978635907173157, + 0.9988207221031189, + 0.9988892674446106, + 0.9988671541213989, + 0.9988056421279907, + 0.9986447691917419, + 0.9988947510719299, + 0.9987120628356934, + 0.9989367127418518, + 0.998769223690033 + ], + "sentiment_counts": { + "POSITIVE": 44, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.9565217391304348, + "NEGATIVE": 0.043478260869565216 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9565217391304348 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988279938697815, + 0.9994444251060486, + 0.9985741376876831, + 0.9994774460792542, + 0.9989008903503418, + 0.9987242817878723, + 0.9977802634239197, + 0.9995132684707642, + 0.9988910555839539, + 0.9963772892951965, + 0.9880117177963257, + 0.9988518953323364, + 0.9988295435905457, + 0.9970928430557251, + 0.9989290833473206, + 0.9988700747489929, + 0.9986900687217712, + 0.9986742734909058, + 0.9987769722938538, + 0.9989011287689209, + 0.9994779229164124, + 0.9988723397254944, + 0.9987779259681702, + 0.9983661770820618, + 0.9988215565681458, + 0.9981575608253479, + 0.9988675117492676, + 0.9989315867424011, + 0.9957335591316223, + 0.9988970756530762, + 0.9877747297286987, + 0.9989112615585327, + 0.9972335696220398, + 0.9992927312850952, + 0.9988829493522644, + 0.9994925260543823, + 0.9988806843757629, + 0.9989114999771118, + 0.9994921684265137, + 0.9988721013069153, + 0.9989233613014221, + 0.9989159107208252, + 0.9986124038696289, + 0.9988852143287659, + 0.9994407296180725, + 0.9988445043563843, + 0.9989389777183533, + 0.9982842803001404, + 0.9989089965820312, + 0.9995017051696777 + ], + "sentiment_counts": { + "POSITIVE": 39, + "NEGATIVE": 11 + }, + "sentiment_distribution": { + "POSITIVE": 0.78, + "NEGATIVE": 0.22 + }, + "sentiment_overall": [ + "POSITIVE", + 0.78 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989595413208008, + 0.9974592328071594, + 0.993377149105072, + 0.9987908005714417, + 0.991025984287262, + 0.995650589466095, + 0.9972100853919983, + 0.9988038539886475, + 0.9987607002258301, + 0.9937959909439087, + 0.9989293217658997, + 0.998931348323822, + 0.9988873600959778, + 0.9653174877166748, + 0.9987359642982483, + 0.9965479969978333, + 0.9981427192687988, + 0.9989380240440369, + 0.9988470077514648, + 0.9988991022109985, + 0.998837411403656, + 0.998458981513977, + 0.9987277388572693, + 0.9981497526168823, + 0.9988180994987488, + 0.997117280960083, + 0.9988136291503906, + 0.9989150762557983, + 0.9989114999771118, + 0.9980016350746155, + 0.9942157864570618, + 0.9984766840934753, + 0.9987624883651733, + 0.9988430738449097, + 0.9983935952186584, + 0.9988662004470825, + 0.9988620281219482, + 0.9980016350746155, + 0.998796820640564, + 0.9958065748214722, + 0.9989221096038818, + 0.9989190101623535, + 0.9973594546318054, + 0.9989247918128967, + 0.999472439289093, + 0.9989268183708191, + 0.9988610744476318, + 0.9994988441467285, + 0.9995007514953613 + ], + "sentiment_counts": { + "NEGATIVE": 11, + "POSITIVE": 38 + }, + "sentiment_distribution": { + "NEGATIVE": 0.22448979591836735, + "POSITIVE": 0.7755102040816326 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7755102040816326 + ] + }, + "final_label": "POSITIVE", + "final_count": 121, + "final_proportion": 0.8344827586206897, + "final_counts": { + "POSITIVE": 121, + "NEGATIVE": 24 + }, + "final_distribution": { + "POSITIVE": 0.8344827586206897, + "NEGATIVE": 0.16551724137931034 + } + } }, { "season_code": "202303", @@ -205306,7 +425708,7 @@ "14:30", "15:20", "WTS A35 - Watson Center 60 Sachem Street A35", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -205327,7 +425729,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -205359,7 +425789,7 @@ "14:30", "15:20", "WTS B35 - Watson Center 60 Sachem Street B35", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -205380,7 +425810,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -205412,7 +425870,7 @@ "14:30", "15:20", "WTS A72 - Watson Center 60 Sachem Street A72", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -205433,7 +425891,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -205465,7 +425951,7 @@ "16:00", "16:50", "WTS A32 - Watson Center 60 Sachem Street A32", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -205486,7 +425972,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -205518,7 +426032,7 @@ "16:00", "16:50", "HQ 313 - Humanities Quadrangle 313", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -205539,7 +426053,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -205571,7 +426113,7 @@ "16:00", "16:50", "WTS A48 - Watson Center 60 Sachem Street A48", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -205592,7 +426134,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -205624,7 +426194,7 @@ "16:00", "16:50", "WTS A72 - Watson Center 60 Sachem Street A72", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -205645,7 +426215,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -205677,7 +426275,7 @@ "19:00", "19:50", "WTS A32 - Watson Center 60 Sachem Street A32", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -205698,7 +426296,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -205730,7 +426356,7 @@ "19:00", "19:50", "WTS A42 - Watson Center 60 Sachem Street A42", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -205751,7 +426377,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -205783,7 +426437,7 @@ "19:00", "19:50", "WTS A72 - Watson Center 60 Sachem Street A72", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -205804,7 +426458,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -205836,7 +426518,7 @@ "20:00", "20:50", "WTS A38 - Watson Center 60 Sachem Street A38", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -205857,7 +426539,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -205889,7 +426599,7 @@ "20:00", "20:50", "WTS A42 - Watson Center 60 Sachem Street A42", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -205910,7 +426620,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -205942,7 +426680,7 @@ "20:00", "20:50", "WTS A72 - Watson Center 60 Sachem Street A72", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -205963,7 +426701,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -206026,10 +426792,133 @@ "classnotes": "Meets the first half of the semester.", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90064\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/90064/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988477230072021, + 0.9988722205162048, + 0.9987996816635132, + 0.9983581900596619, + 0.9989103078842163, + 0.9982422590255737, + 0.9962298274040222, + 0.9893654584884644, + 0.9985705614089966 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989131689071655, + 0.9968743324279785, + 0.9989282488822937, + 0.9989216327667236, + 0.998839795589447, + 0.9989263415336609, + 0.9988406300544739, + 0.9988790154457092, + 0.9989156723022461 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989022016525269, + 0.9988371729850769, + 0.9958525896072388, + 0.9988958835601807, + 0.9989234805107117, + 0.9988799691200256, + 0.999194324016571, + 0.997117280960083, + 0.9989032745361328, + 0.9986969828605652 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "final_label": "POSITIVE", + "final_count": 26, + "final_proportion": 0.9285714285714286, + "final_counts": { + "POSITIVE": 26, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9285714285714286, + "NEGATIVE": 0.07142857142857142 + } + } }, { "season_code": "202303", @@ -206092,10 +426981,117 @@ "classnotes": "Meets second half of the semester", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90065\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90065/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9972466230392456, + 0.9949384927749634, + 0.9830280542373657, + 0.9982722997665405, + 0.9989120960235596, + 0.9987200498580933 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988265633583069, + 0.9987083673477173, + 0.9984380602836609, + 0.9989286065101624, + 0.9989261031150818, + 0.9989287257194519, + 0.9989250302314758 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989369511604309, + 0.9942492246627808, + 0.9974592328071594, + 0.9983680844306946, + 0.9989282488822937, + 0.9989184141159058, + 0.997117280960083, + 0.9988899827003479 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 21, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 21 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -206163,17 +427159,224 @@ "Sc" ], "flags": [ - "YC NSCI: Molecular\/Cell\/Biol" + "YC NSCI: Molecular/Cell/Biol" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "Thursday, December 14, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88819\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88819/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986960291862488, + 0.9985559582710266, + 0.9982325434684753, + 0.9988131523132324, + 0.998867392539978, + 0.9987497329711914, + 0.9987788796424866, + 0.9987605810165405, + 0.9982513785362244, + 0.998813271522522, + 0.9984017014503479, + 0.9988995790481567, + 0.9988046884536743, + 0.998624324798584, + 0.9987528324127197, + 0.9960021376609802, + 0.9968575239181519, + 0.9987786412239075, + 0.998595654964447, + 0.9986783862113953 + ], + "sentiment_counts": { + "POSITIVE": 20, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987408518791199, + 0.9985047578811646, + 0.9962441921234131, + 0.9940443634986877, + 0.9828140735626221, + 0.9972666501998901, + 0.9988413453102112, + 0.9989017248153687, + 0.9988958835601807, + 0.9989025592803955, + 0.9982696771621704, + 0.9988996982574463, + 0.9995028972625732, + 0.991534948348999, + 0.9988479614257812, + 0.998833954334259, + 0.998845100402832, + 0.9902716279029846, + 0.9987928867340088, + 0.9988393187522888, + 0.9988351464271545, + 0.9988656044006348, + 0.9988148212432861, + 0.9882069230079651, + 0.9975110292434692 + ], + "sentiment_counts": { + "POSITIVE": 20, + "NEGATIVE": 5 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9959800243377686, + 0.9892011880874634, + 0.9993071556091309, + 0.8197240829467773, + 0.9974592328071594, + 0.9950361847877502, + 0.998599112033844, + 0.9943869113922119, + 0.9989386200904846, + 0.9988058805465698, + 0.9987941980361938, + 0.9988412261009216, + 0.9988968372344971, + 0.9958109855651855, + 0.9989206790924072, + 0.9968640804290771, + 0.9989198446273804, + 0.998873770236969, + 0.9988381266593933, + 0.998514711856842, + 0.9989145994186401, + 0.9988763928413391, + 0.9988619089126587, + 0.9987030029296875, + 0.9921451210975647 + ], + "sentiment_counts": { + "POSITIVE": 18, + "NEGATIVE": 7 + }, + "sentiment_distribution": { + "POSITIVE": 0.72, + "NEGATIVE": 0.28 + }, + "sentiment_overall": [ + "POSITIVE", + 0.72 + ] + }, + "final_label": "POSITIVE", + "final_count": 58, + "final_proportion": 0.8285714285714286, + "final_counts": { + "POSITIVE": 58, + "NEGATIVE": 12 + }, + "final_distribution": { + "POSITIVE": 0.8285714285714286, + "NEGATIVE": 0.17142857142857143 + } + } }, { "season_code": "202303", @@ -206213,7 +427416,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -206265,10 +427496,103 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89383\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89383/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987697005271912, + 0.9984121322631836, + 0.9986899495124817, + 0.9988988637924194, + 0.9901955723762512 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988981485366821, + 0.9987503290176392, + 0.9985507130622864, + 0.9973391890525818 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986788630485535, + 0.9976834058761597, + 0.9947240948677063, + 0.998528003692627, + 0.9987967014312744 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 14 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -206322,10 +427646,99 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92385\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92385/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981042146682739, + 0.9981800317764282, + 0.9988228678703308 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981681108474731, + 0.9987755417823792, + 0.9995086193084717, + 0.9988229870796204 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987838864326477, + 0.9965007305145264, + 0.9971877932548523, + 0.9989282488822937 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 0.9090909090909091, + "final_counts": { + "POSITIVE": 10, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + } + } }, { "season_code": "202303", @@ -206365,7 +427778,7 @@ "13:00", "14:15", "BASS 305 - Bass Center 305", - "https:\/\/map.yale.edu\/?id=1910#!m\/560102" + "https://map.yale.edu/?id=1910#!m/560102" ] ], "Wednesday": [ @@ -206373,7 +427786,7 @@ "13:00", "14:15", "BASS 305 - Bass Center 305", - "https:\/\/map.yale.edu\/?id=1910#!m\/560102" + "https://map.yale.edu/?id=1910#!m/560102" ] ] }, @@ -206389,10 +427802,167 @@ "classnotes": "", "final_exam": "Wednesday, December 20, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89368\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89368/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989311099052429, + 0.9989317059516907, + 0.9986868500709534, + 0.9988890290260315, + 0.9925073981285095, + 0.9926857948303223, + 0.9986482262611389, + 0.9989123344421387, + 0.9987484216690063, + 0.9987963438034058, + 0.9983347058296204, + 0.9988929629325867, + 0.9971981048583984, + 0.9988210797309875, + 0.9987902045249939 + ], + "sentiment_counts": { + "POSITIVE": 15, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989107847213745, + 0.9989303946495056, + 0.9888554215431213, + 0.9988623857498169, + 0.9995075464248657, + 0.9994850158691406, + 0.9994930028915405, + 0.9989196062088013, + 0.9987736344337463, + 0.9991497993469238, + 0.9989172220230103, + 0.9989104270935059, + 0.9989157915115356, + 0.9988584518432617, + 0.9988516569137573 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.7333333333333333, + "NEGATIVE": 0.26666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7333333333333333 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989226460456848, + 0.9989157915115356, + 0.9979368448257446, + 0.9989171028137207, + 0.9984418749809265, + 0.998794436454773, + 0.9923925399780273, + 0.9989383816719055, + 0.9988804459571838, + 0.9989251494407654, + 0.9988817572593689, + 0.9988722205162048, + 0.9981887936592102, + 0.9989019632339478, + 0.9989290833473206 + ], + "sentiment_counts": { + "POSITIVE": 15, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 41, + "final_proportion": 0.9111111111111111, + "final_counts": { + "POSITIVE": 41, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.9111111111111111, + "NEGATIVE": 0.08888888888888889 + } + } }, { "season_code": "202303", @@ -206436,7 +428006,7 @@ "11:35", "12:50", "LUCE 101 - Luce Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ], "Thursday": [ @@ -206444,7 +428014,7 @@ "11:35", "12:50", "LUCE 101 - Luce Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ] }, @@ -206454,17 +428024,260 @@ ], "flags": [ "YC ENRG: Energy Science & Tech", - "YC NSCI: Molecular\/Cell\/Biol" + "YC NSCI: Molecular/Cell/Biol" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "Friday, December 15, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89011\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89011/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988887906074524, + 0.9983737468719482, + 0.9988142251968384, + 0.9988908171653748, + 0.998441755771637, + 0.9987757802009583, + 0.99888676404953, + 0.9874891638755798, + 0.9989352822303772, + 0.9987177848815918, + 0.9952391386032104, + 0.9892055988311768, + 0.9987354874610901, + 0.9989192485809326, + 0.9986441731452942, + 0.9905911087989807, + 0.9987533092498779, + 0.998866081237793, + 0.9989217519760132, + 0.9980227947235107, + 0.9988921284675598, + 0.990639328956604, + 0.9982396364212036, + 0.9988879561424255, + 0.9988849759101868, + 0.9983193278312683, + 0.9987794756889343, + 0.9978753328323364 + ], + "sentiment_counts": { + "POSITIVE": 27, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9642857142857143, + "NEGATIVE": 0.03571428571428571 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9642857142857143 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9948838353157043, + 0.9989210367202759, + 0.9983953833580017, + 0.9989014863967896, + 0.9988848567008972, + 0.9988791346549988, + 0.9986065030097961, + 0.9987772107124329, + 0.9987404942512512, + 0.9988987445831299, + 0.9989137649536133, + 0.9988067150115967, + 0.9989389777183533, + 0.9988881945610046, + 0.9987785220146179, + 0.9988686442375183, + 0.9986944794654846, + 0.989252507686615, + 0.9989281296730042, + 0.9980921149253845, + 0.9989100694656372, + 0.9994986057281494, + 0.9993464350700378, + 0.9989088773727417, + 0.9989386200904846, + 0.998891294002533, + 0.9988569021224976, + 0.9989243149757385, + 0.9988303780555725, + 0.998458981513977 + ], + "sentiment_counts": { + "POSITIVE": 24, + "NEGATIVE": 6 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9940357208251953, + 0.9982839226722717, + 0.9983761310577393, + 0.99873286485672, + 0.9970833659172058, + 0.9989056587219238, + 0.9988123178482056, + 0.998794674873352, + 0.9989261031150818, + 0.9988017082214355, + 0.9989323019981384, + 0.9969401359558105, + 0.9989219903945923, + 0.9987335801124573, + 0.9989346861839294, + 0.9918033480644226, + 0.9988143444061279, + 0.9989153146743774, + 0.9988839030265808, + 0.9982178807258606, + 0.9988948702812195, + 0.9982427358627319, + 0.9989099502563477, + 0.9978256821632385, + 0.99891197681427, + 0.9989271759986877, + 0.9987196922302246, + 0.9987320303916931, + 0.9989320635795593, + 0.999473512172699 + ], + "sentiment_counts": { + "POSITIVE": 28, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.9333333333333333, + "NEGATIVE": 0.06666666666666667 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9333333333333333 + ] + }, + "final_label": "POSITIVE", + "final_count": 79, + "final_proportion": 0.8977272727272727, + "final_counts": { + "POSITIVE": 79, + "NEGATIVE": 9 + }, + "final_distribution": { + "POSITIVE": 0.8977272727272727, + "NEGATIVE": 0.10227272727272728 + } + } }, { "season_code": "202303", @@ -206495,7 +428308,7 @@ "19:00", "19:50", "WTS A39 - Watson Center 60 Sachem Street A39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -206505,7 +428318,7 @@ ], "flags": [ "YC ENRG: Energy Science & Tech", - "YC NSCI: Molecular\/Cell\/Biol" + "YC NSCI: Molecular/Cell/Biol" ], "regnotes": "", "rp_attr": "", @@ -206515,7 +428328,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -206546,7 +428387,7 @@ "19:00", "19:50", "WTS A68 - Watson Center 60 Sachem Street A68", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -206556,7 +428397,7 @@ ], "flags": [ "YC ENRG: Energy Science & Tech", - "YC NSCI: Molecular\/Cell\/Biol" + "YC NSCI: Molecular/Cell/Biol" ], "regnotes": "", "rp_attr": "", @@ -206566,7 +428407,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -206597,7 +428466,7 @@ "20:00", "20:50", "WTS A39 - Watson Center 60 Sachem Street A39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -206607,7 +428476,7 @@ ], "flags": [ "YC ENRG: Energy Science & Tech", - "YC NSCI: Molecular\/Cell\/Biol" + "YC NSCI: Molecular/Cell/Biol" ], "regnotes": "", "rp_attr": "", @@ -206617,7 +428486,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -206648,7 +428545,7 @@ "19:00", "19:50", "WTS A35 - Watson Center 60 Sachem Street A35", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -206658,7 +428555,7 @@ ], "flags": [ "YC ENRG: Energy Science & Tech", - "YC NSCI: Molecular\/Cell\/Biol" + "YC NSCI: Molecular/Cell/Biol" ], "regnotes": "", "rp_attr": "", @@ -206668,7 +428565,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -206717,7 +428642,7 @@ ], "flags": [ "YC ENRG: Energy Science & Tech", - "YC NSCI: Molecular\/Cell\/Biol" + "YC NSCI: Molecular/Cell/Biol" ], "regnotes": "", "rp_attr": "", @@ -206727,7 +428652,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -206766,12 +428719,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", - "requirements": "Prerequisites: MATH 115 or 116. BIOL 101-104,\u00a0 or with permission of instructors. This course also benefits students who have taken more advanced biology courses (e.g. MCDB 200, MCDB 310, MB&B 300\/301).", - "description": "Biological systems make sophisticated decisions at many levels. This course explores the molecular and computational underpinnings of how these decisions are made, with a focus on modeling static and dynamic processes in example biological systems. This course is aimed at biology students and teaches the analytic and computational methods needed to model genetic networks and protein signaling pathways. Students present and discuss original papers in class. They learn to model using MatLab in a series of in-class hackathons that illustrate the biological examples discussed in the lectures. Biological systems and processes that are modeled include: (i) gene expression, including the kinetics of RNA and protein synthesis and degradation; (ii) activators and repressors; (iii) the lysogeny\/lysis switch of lambda phage; (iv) network motifs and how they shape response dynamics; (v) cell signaling, MAP kinase networks and cell fate decisions; and (vi) noise in gene expression.", + "requirements": "Prerequisites: MATH 115 or 116. BIOL 101-104,\u00a0 or with permission of instructors. This course also benefits students who have taken more advanced biology courses (e.g. MCDB 200, MCDB 310, MB&B 300/301).", + "description": "Biological systems make sophisticated decisions at many levels. This course explores the molecular and computational underpinnings of how these decisions are made, with a focus on modeling static and dynamic processes in example biological systems. This course is aimed at biology students and teaches the analytic and computational methods needed to model genetic networks and protein signaling pathways. Students present and discuss original papers in class. They learn to model using MatLab in a series of in-class hackathons that illustrate the biological examples discussed in the lectures. Biological systems and processes that are modeled include: (i) gene expression, including the kinetics of RNA and protein synthesis and degradation; (ii) activators and repressors; (iii) the lysogeny/lysis switch of lambda phage; (iv) network motifs and how they shape response dynamics; (v) cell signaling, MAP kinase networks and cell fate decisions; and (vi) noise in gene expression.", "short_title": "Modeling Biological Systems I", "title": "Modeling Biological Systems I", "school": "YC", @@ -206812,7 +428793,7 @@ "14:30", "15:45", "BASS 405 - Bass Center 405", - "https:\/\/map.yale.edu\/?id=1910#!m\/560102" + "https://map.yale.edu/?id=1910#!m/560102" ] ], "Thursday": [ @@ -206820,7 +428801,7 @@ "14:30", "15:45", "BASS 405 - Bass Center 405", - "https:\/\/map.yale.edu\/?id=1910#!m\/560102" + "https://map.yale.edu/?id=1910#!m/560102" ] ] }, @@ -206831,7 +428812,7 @@ "Sc" ], "flags": [ - "YC NSCI: Molecular\/Cell\/Biol", + "YC NSCI: Molecular/Cell/Biol", "YC NSCI: Quantitative" ], "regnotes": "", @@ -206839,15 +428820,124 @@ "classnotes": "Undergraduates only; graduate students need instructor permission. Graduate students with a physics, mathematics, or engineering background are not allowed in the course and should instead take MCDB 562 Modeling Biological Systems II, which is offered in the spring. Biology graduate students with little to no background in physics, mathematics, or engineering must first contact the instructor.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88784\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88784/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "Prerequisites: MCDB 205, PHYS 170\/171 or above, either\u00a0CHEM 161\/165\u00a0or above; with\u00a0CHEM 134L,\u00a0136L or permission from the instructor.", - "description": "A rigorous study of principles and pertinent modalities involved in modern light microscopy. The overall course learning objective is to develop competencies involving advanced light microscopy applications common to multidisciplinary research. Laboratory modules coupled with critical analysis of pertinent research papers cover all major light microscope methods\u2014from the basics (principles of optics, image contrast, detector types, fluorescence, 1P and 2P excitation, widefield, confocal principle, TIRF), to more recent advances, including: superresolution, lightsheet, FLIM\/FRET, motion analysis and force measurements. This course is capped at 8 students to promote interactions and ensure a favorable hands-on experience. Priority for enrollment is given to students who are planning on using these techniques in their independent research.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988932013511658, + 0.9985255599021912, + 0.9988605976104736, + 0.998641312122345, + 0.998914361000061, + 0.9989007711410522 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981176853179932, + 0.9986761212348938, + 0.9943771958351135, + 0.9985344409942627, + 0.9989160299301147, + 0.9989138841629028, + 0.9989339709281921, + 0.9988695979118347, + 0.9775633811950684 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 8 + }, + "sentiment_distribution": { + "NEGATIVE": 0.1111111111111111, + "POSITIVE": 0.8888888888888888 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9911907911300659, + 0.9986100196838379, + 0.9853668212890625, + 0.9989172220230103, + 0.9989176988601685, + 0.9988948702812195 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 0.9523809523809523, + "final_counts": { + "POSITIVE": 20, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9523809523809523, + "NEGATIVE": 0.047619047619047616 + } + } + }, + { + "season_code": "202303", + "requirements": "Prerequisites: MCDB 205, PHYS 170/171 or above, either\u00a0CHEM 161/165\u00a0or above; with\u00a0CHEM 134L,\u00a0136L or permission from the instructor.", + "description": "A rigorous study of principles and pertinent modalities involved in modern light microscopy. The overall course learning objective is to develop competencies involving advanced light microscopy applications common to multidisciplinary research. Laboratory modules coupled with critical analysis of pertinent research papers cover all major light microscope methods\u2014from the basics (principles of optics, image contrast, detector types, fluorescence, 1P and 2P excitation, widefield, confocal principle, TIRF), to more recent advances, including: superresolution, lightsheet, FLIM/FRET, motion analysis and force measurements. This course is capped at 8 students to promote interactions and ensure a favorable hands-on experience. Priority for enrollment is given to students who are planning on using these techniques in their independent research.", "short_title": "Light Microscopy: Techniques ...", "title": "Light Microscopy: Techniques and Image Analysis", "school": "YC", @@ -206880,7 +428970,7 @@ "13:30", "16:30", "YSB C105 - Yale Science Building C105", - "https:\/\/map.yale.edu\/?id=1910#!m\/563700" + "https://map.yale.edu/?id=1910#!m/563700" ] ], "Wednesday": [ @@ -206888,7 +428978,7 @@ "13:30", "16:30", "YSB C105 - Yale Science Building C105", - "https:\/\/map.yale.edu\/?id=1910#!m\/563700" + "https://map.yale.edu/?id=1910#!m/563700" ] ] }, @@ -206902,14 +428992,97 @@ "classnotes": "Students must contact Joseph.Wolenski@yale.edu prior to the start of the fall term to determine suitability for enrollment. Preference to MCDB and MB&B majors, but Chemistry and Physics majors are encouraged to apply.", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89231\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89231/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "Prerequisites: MB&B 300\/301 or MB&B 200\/MCDB 300 or permission of the instructor.\u00a0 Can be taken concurrently with MB&B 301.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989235997200012, + 0.9988644123077393, + 0.9974601864814758 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989271759986877, + 0.9989346861839294, + 0.998874843120575 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989025592803955, + 0.9989216327667236, + 0.9983476400375366 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 9 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } + }, + { + "season_code": "202303", + "requirements": "Prerequisites: MB&B 300/301 or MB&B 200/MCDB 300 or permission of the instructor.\u00a0 Can be taken concurrently with MB&B 301.", "description": "Climate change is impacting how cells and organisms grow and reproduce. Imagine the ocean spiking a fever: cold-blooded organisms of all shapes, sizes and complexities struggle to survive when water temperatures go up 2-4 degrees. Some organisms adapt to extremes, while others cannot. Predicted and observed changes in temperature, pH and salt concentration do and will affect many parameters of the living world, from the kinetics of chemical reactions and cellular signaling pathways to the accumulation of unforeseen chemicals in the environment, the appearance and dispersal of new diseases, and the development of new foods. In this course, we approach climate change from the molecular point of view, identifying how cells and organisms\u2015from microbes to plants and animals\u2015respond to changing environmental conditions. To embrace the concept of \"one health\" for all life on the planet, this course leverages biochemistry, cell biology, molecular biophysics, and genetics to develop an understanding of the impact of climate change on the living world. We consider the foundational knowledge that biochemistry can bring to the table as we meet the challenge of climate change.", "short_title": "Biochemistry and Our Changing...", "title": "Biochemistry and Our Changing Climate", @@ -206948,7 +429121,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -206989,7 +429190,7 @@ "11:35", "12:50", "BASS 405 - Bass Center 405", - "https:\/\/map.yale.edu\/?id=1910#!m\/560102" + "https://map.yale.edu/?id=1910#!m/560102" ] ], "Thursday": [ @@ -206997,7 +429198,7 @@ "11:35", "12:50", "BASS 405 - Bass Center 405", - "https:\/\/map.yale.edu\/?id=1910#!m\/560102" + "https://map.yale.edu/?id=1910#!m/560102" ] ] }, @@ -207011,10 +429212,131 @@ "classnotes": "", "final_exam": "Friday, December 15, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89369\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89369/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998708963394165, + 0.9987239241600037, + 0.998914361000061, + 0.9874030351638794, + 0.8866985440254211, + 0.9985920786857605, + 0.998738706111908, + 0.9900042414665222, + 0.993880033493042, + 0.998815655708313 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986750483512878, + 0.9987726807594299, + 0.9988424181938171, + 0.9987418055534363, + 0.9988721013069153, + 0.9984982013702393, + 0.998648464679718, + 0.997121274471283, + 0.9986887574195862 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9893759489059448, + 0.9988746047019958, + 0.9451174139976501, + 0.9983795881271362, + 0.9987201690673828, + 0.9986739158630371, + 0.998892605304718, + 0.998865008354187 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "final_label": "POSITIVE", + "final_count": 25, + "final_proportion": 0.9259259259259259, + "final_counts": { + "POSITIVE": 25, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9259259259259259, + "NEGATIVE": 0.07407407407407407 + } + } }, { "season_code": "202303", @@ -207055,7 +429377,7 @@ "11:35", "12:50", "TAC N107 - The Anlyan Center N107", - "https:\/\/map.yale.edu\/?id=1910#!m\/563380" + "https://map.yale.edu/?id=1910#!m/563380" ] ], "Wednesday": [ @@ -207063,7 +429385,7 @@ "11:35", "12:50", "TAC N107 - The Anlyan Center N107", - "https:\/\/map.yale.edu\/?id=1910#!m\/563380" + "https://map.yale.edu/?id=1910#!m/563380" ] ] }, @@ -207077,15 +429399,140 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89500\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89500/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984577894210815, + 0.9988810420036316, + 0.9957754015922546, + 0.998795747756958, + 0.998793363571167, + 0.9979946613311768, + 0.9842560887336731, + 0.9963437914848328, + 0.9892461895942688, + 0.9987061023712158 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986854195594788, + 0.9976736903190613, + 0.9987643957138062, + 0.9987610578536987, + 0.9988402724266052, + 0.9988735318183899, + 0.998514711856842, + 0.9988810420036316, + 0.9853230714797974, + 0.9994864463806152, + 0.9987854361534119 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8181818181818182, + "NEGATIVE": 0.18181818181818182 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8181818181818182 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987319111824036, + 0.9979998469352722, + 0.9995076656341553, + 0.9974592328071594, + 0.9989075660705566, + 0.997117280960083, + 0.998001754283905, + 0.9986473917961121 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.625, + "NEGATIVE": 0.375 + }, + "sentiment_overall": [ + "POSITIVE", + 0.625 + ] + }, + "final_label": "POSITIVE", + "final_count": 24, + "final_proportion": 0.8275862068965517, + "final_counts": { + "POSITIVE": 24, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.8275862068965517, + "NEGATIVE": 0.1724137931034483 + } + } }, { "season_code": "202303", "requirements": "Prerequisites: MATH 120 and MB&B 300 or equivalents, or with permission of instructors.", - "description": "An introduction to quantitative methods relevant to analysis and interpretation of biophysical and biochemical data. Topics include statistical testing, data presentation, and error analysis; introduction to mathematical modeling of biological dynamics; analysis of large datasets; and Fourier analysis in signal\/image processing and macromolecular structural studies. Instruction in basic programming skills and data analysis using MATLAB; study of real data from MB&B research groups.", + "description": "An introduction to quantitative methods relevant to analysis and interpretation of biophysical and biochemical data. Topics include statistical testing, data presentation, and error analysis; introduction to mathematical modeling of biological dynamics; analysis of large datasets; and Fourier analysis in signal/image processing and macromolecular structural studies. Instruction in basic programming skills and data analysis using MATLAB; study of real data from MB&B research groups.", "short_title": "Quantitative Approaches in Bi...", "title": "Quantitative Approaches in Biophysics and Biochemistry", "school": "YC", @@ -207122,7 +429569,7 @@ "9:00", "10:15", "BASS 405 - Bass Center 405", - "https:\/\/map.yale.edu\/?id=1910#!m\/560102" + "https://map.yale.edu/?id=1910#!m/560102" ] ], "Thursday": [ @@ -207130,7 +429577,7 @@ "9:00", "10:15", "BASS 405 - Bass Center 405", - "https:\/\/map.yale.edu\/?id=1910#!m\/560102" + "https://map.yale.edu/?id=1910#!m/560102" ] ] }, @@ -207146,10 +429593,151 @@ "classnotes": "", "final_exam": "Saturday, December 16, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89370\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89370/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986211061477661, + 0.9979197382926941, + 0.9974398612976074, + 0.9965272545814514, + 0.9986338019371033, + 0.9984960556030273, + 0.9987004995346069, + 0.9988278746604919, + 0.9871156215667725, + 0.9861375689506531, + 0.9986512064933777, + 0.9986913800239563 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.998908519744873, + 0.9995070695877075, + 0.9992726445198059, + 0.9989141225814819, + 0.9989199638366699, + 0.9988821148872375, + 0.998176097869873, + 0.998900294303894, + 0.9991794228553772, + 0.9991742968559265, + 0.9987002611160278, + 0.9987385869026184, + 0.9994890689849854 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 5 + }, + "sentiment_distribution": { + "POSITIVE": 0.6153846153846154, + "NEGATIVE": 0.38461538461538464 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6153846153846154 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988873600959778, + 0.9986721277236938, + 0.9988164901733398, + 0.9989210367202759, + 0.9981752634048462, + 0.9989155530929565, + 0.9988371729850769, + 0.9988906979560852, + 0.9995007514953613, + 0.9961637258529663, + 0.9995008707046509, + 0.9904946088790894 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 5 + }, + "sentiment_distribution": { + "POSITIVE": 0.5833333333333334, + "NEGATIVE": 0.4166666666666667 + }, + "sentiment_overall": [ + "POSITIVE", + 0.5833333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 27, + "final_proportion": 0.7297297297297297, + "final_counts": { + "POSITIVE": 27, + "NEGATIVE": 10 + }, + "final_distribution": { + "POSITIVE": 0.7297297297297297, + "NEGATIVE": 0.2702702702702703 + } + } }, { "season_code": "202303", @@ -207188,7 +429776,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -207227,7 +429843,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -207282,7 +429926,7 @@ "13:00", "14:15", "SHM C103 - Sterling Hall of Medicine C103", - "https:\/\/map.yale.edu\/?id=1910#!m\/559929" + "https://map.yale.edu/?id=1910#!m/559929" ] ], "Thursday": [ @@ -207290,7 +429934,7 @@ "13:00", "14:15", "SHM C103 - Sterling Hall of Medicine C103", - "https:\/\/map.yale.edu\/?id=1910#!m\/559929" + "https://map.yale.edu/?id=1910#!m/559929" ] ] }, @@ -207304,15 +429948,124 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89371\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89371/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998819887638092, + 0.9989011287689209, + 0.9987859129905701, + 0.9987367987632751, + 0.9971091151237488, + 0.9989238381385803, + 0.9969215989112854 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988747239112854, + 0.9917789101600647, + 0.9986696243286133, + 0.9985606074333191, + 0.9987351298332214, + 0.988201916217804, + 0.997342050075531 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.5714285714285714, + "NEGATIVE": 0.42857142857142855 + }, + "sentiment_overall": [ + "POSITIVE", + 0.5714285714285714 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988784193992615, + 0.9977163076400757, + 0.9935786724090576, + 0.9938667416572571, + 0.999504566192627, + 0.9966446161270142, + 0.9877158999443054 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.7142857142857143, + "NEGATIVE": 0.2857142857142857 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7142857142857143 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 0.7619047619047619, + "final_counts": { + "POSITIVE": 16, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.7619047619047619, + "NEGATIVE": 0.23809523809523808 + } + } }, { "season_code": "202303", "requirements": "Enrollment limited to MB&B majors. Prerequisite: MB&B 251L or permission of the instructor.", - "description": "Individual laboratory projects under the supervision of a faculty member. Students must submit an enrollment form that specifies the research supervisor by the date that course schedules are due. Students are expected to commit at least ten hours per week to working in a laboratory. Written assignments include a research proposal, due near the beginning of the term, and a research report that summarizes experimental results, due before the beginning of the final examination period. Students receive a letter grade. Up to 2 credits of MB&B 470\/471 may be counted toward the MB&B major requirements.", + "description": "Individual laboratory projects under the supervision of a faculty member. Students must submit an enrollment form that specifies the research supervisor by the date that course schedules are due. Students are expected to commit at least ten hours per week to working in a laboratory. Written assignments include a research proposal, due near the beginning of the term, and a research report that summarizes experimental results, due before the beginning of the final examination period. Students receive a letter grade. Up to 2 credits of MB&B 470/471 may be counted toward the MB&B major requirements.", "short_title": "Research in Biochemistry and ...", "title": "Research in Biochemistry and Biophysics for the Major", "school": "YC", @@ -207347,15 +430100,110 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89372\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89372/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985530972480774, + 0.9986200332641602, + 0.9980313181877136, + 0.9986820816993713, + 0.9986996650695801 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9911848902702332, + 0.9994173049926758, + 0.9982615113258362, + 0.9988699555397034, + 0.998909592628479 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.6, + "NEGATIVE": 0.4 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987816214561462, + 0.9988663196563721, + 0.9989145994186401, + 0.9989124536514282 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 0.8571428571428571, + "final_counts": { + "POSITIVE": 12, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + } + } }, { "season_code": "202303", "requirements": "Prerequisites: MB&B 470, 471 and 251L or permission of the instructor.", - "description": "Individual laboratory projects under the supervision of a faculty member. Students must submit an enrollment form that specifies the research supervisor by the date that course schedules are due. Students are expected to commit at least ten hours per week to working in a laboratory. Written assignments include a research proposal, due near the beginning of the term, and a research report that summarizes experimental results, due before the beginning of the final examination period. Students are graded pass\/fail. Taken after students have completed two credits of MB&B 470 and 471. These courses do not count toward the major requirements.", + "description": "Individual laboratory projects under the supervision of a faculty member. Students must submit an enrollment form that specifies the research supervisor by the date that course schedules are due. Students are expected to commit at least ten hours per week to working in a laboratory. Written assignments include a research proposal, due near the beginning of the term, and a research report that summarizes experimental results, due before the beginning of the final examination period. Students are graded pass/fail. Taken after students have completed two credits of MB&B 470 and 471. These courses do not count toward the major requirements.", "short_title": "Research in Biochemistry and ...", "title": "Research in Biochemistry and Biophysics", "school": "YC", @@ -207390,15 +430238,43 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89374\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89374/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "Prerequisites: MB&B 470, 471 and 251L or permission of the instructor.", - "description": "Individual laboratory projects under the supervision of a faculty member. Students must submit an enrollment form that specifies the research supervisor by the date that course schedules are due. Students are expected to commit at least ten hours per week to working in a laboratory. Written assignments include a research proposal, due near the beginning of the term, and a research report that summarizes experimental results, due before the beginning of the final examination period. Students are graded pass\/fail. Taken after students have completed two credits of MB&B 470 and 471. These courses do not count toward the major requirements.", + "description": "Individual laboratory projects under the supervision of a faculty member. Students must submit an enrollment form that specifies the research supervisor by the date that course schedules are due. Students are expected to commit at least ten hours per week to working in a laboratory. Written assignments include a research proposal, due near the beginning of the term, and a research report that summarizes experimental results, due before the beginning of the final examination period. Students are graded pass/fail. Taken after students have completed two credits of MB&B 470 and 471. These courses do not count toward the major requirements.", "short_title": "Research in Biochemistry and ...", "title": "Research in Biochemistry and Biophysics", "school": "YC", @@ -207430,7 +430306,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -207470,10 +430374,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89378\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89378/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -207510,12 +430442,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "This course fulfills the MB&B senior requirement for BA\/BS majors and may taken in either the fall or spring term of senior year. Students complete an independent project by reading primary literature and writing a critical review on a topic chosen by the student in any area of molecular biophysics and biochemistry. The chosen topic cannot draw directly on the student\u2019s research experiences while enrolled at Yale. For topics drawing directly from a student's research experience, students should enroll in MB&B 491: Senior Research Essay. The course structure first assists the student to identify a topic and then identifies a member of the MB&B faculty with appropriate expertise. The member of faculty meets regularly with the student as the topic is researched, drafted, and submitted at a quality appropriate for publication. A departmental poster session at the end of the semester gives the student the opportunity to disseminate their work to the broader MB&B and Yale community.", + "description": "This course fulfills the MB&B senior requirement for BA/BS majors and may taken in either the fall or spring term of senior year. Students complete an independent project by reading primary literature and writing a critical review on a topic chosen by the student in any area of molecular biophysics and biochemistry. The chosen topic cannot draw directly on the student\u2019s research experiences while enrolled at Yale. For topics drawing directly from a student's research experience, students should enroll in MB&B 491: Senior Research Essay. The course structure first assists the student to identify a topic and then identifies a member of the MB&B faculty with appropriate expertise. The member of faculty meets regularly with the student as the topic is researched, drafted, and submitted at a quality appropriate for publication. A departmental poster session at the end of the semester gives the student the opportunity to disseminate their work to the broader MB&B and Yale community.", "short_title": "The Senior Literature Essay", "title": "The Senior Literature Essay", "school": "YC", @@ -207550,10 +430510,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89379\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89379/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -207593,10 +430581,105 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89380\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89380/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9859090447425842, + 0.9984371066093445, + 0.9988284707069397, + 0.998640239238739 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988076686859131, + 0.9994792342185974, + 0.9987616539001465, + 0.9989184141159058, + 0.9986411929130554 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989113807678223, + 0.9956241250038147, + 0.9989301562309265, + 0.9412791132926941, + 0.9988229870796204 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 0.9285714285714286, + "final_counts": { + "POSITIVE": 13, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9285714285714286, + "NEGATIVE": 0.07142857142857142 + } + } }, { "season_code": "202303", @@ -207667,10 +430750,217 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88819\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88819/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986960291862488, + 0.9985559582710266, + 0.9982325434684753, + 0.9988131523132324, + 0.998867392539978, + 0.9987497329711914, + 0.9987788796424866, + 0.9987605810165405, + 0.9982513785362244, + 0.998813271522522, + 0.9984017014503479, + 0.9988995790481567, + 0.9988046884536743, + 0.998624324798584, + 0.9987528324127197, + 0.9960021376609802, + 0.9968575239181519, + 0.9987786412239075, + 0.998595654964447, + 0.9986783862113953 + ], + "sentiment_counts": { + "POSITIVE": 20, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987408518791199, + 0.9985047578811646, + 0.9962441921234131, + 0.9940443634986877, + 0.9828140735626221, + 0.9972666501998901, + 0.9988413453102112, + 0.9989017248153687, + 0.9988958835601807, + 0.9989025592803955, + 0.9982696771621704, + 0.9988996982574463, + 0.9995028972625732, + 0.991534948348999, + 0.9988479614257812, + 0.998833954334259, + 0.998845100402832, + 0.9902716279029846, + 0.9987928867340088, + 0.9988393187522888, + 0.9988351464271545, + 0.9988656044006348, + 0.9988148212432861, + 0.9882069230079651, + 0.9975110292434692 + ], + "sentiment_counts": { + "POSITIVE": 20, + "NEGATIVE": 5 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9959800243377686, + 0.9892011880874634, + 0.9993071556091309, + 0.8197240829467773, + 0.9974592328071594, + 0.9950361847877502, + 0.998599112033844, + 0.9943869113922119, + 0.9989386200904846, + 0.9988058805465698, + 0.9987941980361938, + 0.9988412261009216, + 0.9988968372344971, + 0.9958109855651855, + 0.9989206790924072, + 0.9968640804290771, + 0.9989198446273804, + 0.998873770236969, + 0.9988381266593933, + 0.998514711856842, + 0.9989145994186401, + 0.9988763928413391, + 0.9988619089126587, + 0.9987030029296875, + 0.9921451210975647 + ], + "sentiment_counts": { + "POSITIVE": 18, + "NEGATIVE": 7 + }, + "sentiment_distribution": { + "POSITIVE": 0.72, + "NEGATIVE": 0.28 + }, + "sentiment_overall": [ + "POSITIVE", + 0.72 + ] + }, + "final_label": "POSITIVE", + "final_count": 58, + "final_proportion": 0.8285714285714286, + "final_counts": { + "POSITIVE": 58, + "NEGATIVE": 12 + }, + "final_distribution": { + "POSITIVE": 0.8285714285714286, + "NEGATIVE": 0.17142857142857143 + } + } }, { "season_code": "202303", @@ -207710,7 +431000,7 @@ "14:00", "16:00", "BASS 205 - Bass Center 205", - "https:\/\/map.yale.edu\/?id=1910#!m\/560102" + "https://map.yale.edu/?id=1910#!m/560102" ] ] }, @@ -207722,10 +431012,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89196\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89196/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -207765,7 +431083,7 @@ "13:00", "14:15", "HLH17 115 - 17 Hillhouse Avenue 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Thursday": [ @@ -207773,7 +431091,7 @@ "13:00", "14:15", "HLH17 115 - 17 Hillhouse Avenue 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -207785,15 +431103,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89265\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89265/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", - "requirements": "Prerequisites: MATH 115\u00a0or\u00a0116,\u00a0BIOL 101\u2013104, or with permission of instructors. This course also benefits students who have taken more advanced biology courses (e.g.\u00a0MCDB 200,\u00a0MCDB 310,\u00a0MB&B 300\/301).", - "description": "Biological systems make sophisticated decisions at many levels. This course explores the molecular and computational underpinnings of how these decisions are made, with a focus on modeling static and dynamic processes in example biological systems. This course is aimed at biology students and teaches the analytic and computational methods needed to model genetic networks and protein signaling pathways. Students present and discuss original papers in class. They learn to model using MatLab in a series of in-class hackathons that illustrate the biological examples discussed in the lectures. Biological systems and processes that are modeled include: (i) gene expression, including the kinetics of RNA and protein synthesis and degradation; (ii) activators and repressors; (iii) the lysogeny\/lysis switch of lambda phage; (iv) network motifs and how they shape response dynamics; (v) cell signaling, MAP kinase networks and cell fate decisions; and (vi) noise in gene expression.", + "requirements": "Prerequisites: MATH 115\u00a0or\u00a0116,\u00a0BIOL 101\u2013104, or with permission of instructors. This course also benefits students who have taken more advanced biology courses (e.g.\u00a0MCDB 200,\u00a0MCDB 310,\u00a0MB&B 300/301).", + "description": "Biological systems make sophisticated decisions at many levels. This course explores the molecular and computational underpinnings of how these decisions are made, with a focus on modeling static and dynamic processes in example biological systems. This course is aimed at biology students and teaches the analytic and computational methods needed to model genetic networks and protein signaling pathways. Students present and discuss original papers in class. They learn to model using MatLab in a series of in-class hackathons that illustrate the biological examples discussed in the lectures. Biological systems and processes that are modeled include: (i) gene expression, including the kinetics of RNA and protein synthesis and degradation; (ii) activators and repressors; (iii) the lysogeny/lysis switch of lambda phage; (iv) network motifs and how they shape response dynamics; (v) cell signaling, MAP kinase networks and cell fate decisions; and (vi) noise in gene expression.", "short_title": "Modeling Biological Systems I", "title": "Modeling Biological Systems I", "school": "GS", @@ -207834,7 +431180,7 @@ "14:30", "15:45", "BASS 405 - Bass Center 405", - "https:\/\/map.yale.edu\/?id=1910#!m\/560102" + "https://map.yale.edu/?id=1910#!m/560102" ] ], "Thursday": [ @@ -207842,7 +431188,7 @@ "14:30", "15:45", "BASS 405 - Bass Center 405", - "https:\/\/map.yale.edu\/?id=1910#!m\/560102" + "https://map.yale.edu/?id=1910#!m/560102" ] ] }, @@ -207854,17 +431200,126 @@ "classnotes": "Undergraduates only; graduate students need instructor permission. Graduate students with a physics, mathematics, or engineering background are not allowed in the course and should instead take MCDB 562 Modeling Biological Systems II, which is offered in the spring. Biology graduate students with little to no background in physics, mathematics, or engineering must first contact the instructor.", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88784\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88784/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "", - "description": "Required of students in the joint B.S.\/M.S. program with Yale College.", - "short_title": "Intensive Research for B.S.\/M...", - "title": "Intensive Research for B.S.\/M.S. Candidates", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988932013511658, + 0.9985255599021912, + 0.9988605976104736, + 0.998641312122345, + 0.998914361000061, + 0.9989007711410522 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981176853179932, + 0.9986761212348938, + 0.9943771958351135, + 0.9985344409942627, + 0.9989160299301147, + 0.9989138841629028, + 0.9989339709281921, + 0.9988695979118347, + 0.9775633811950684 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 8 + }, + "sentiment_distribution": { + "NEGATIVE": 0.1111111111111111, + "POSITIVE": 0.8888888888888888 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9911907911300659, + 0.9986100196838379, + 0.9853668212890625, + 0.9989172220230103, + 0.9989176988601685, + 0.9988948702812195 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 0.9523809523809523, + "final_counts": { + "POSITIVE": 20, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9523809523809523, + "NEGATIVE": 0.047619047619047616 + } + } + }, + { + "season_code": "202303", + "requirements": "", + "description": "Required of students in the joint B.S./M.S. program with Yale College.", + "short_title": "Intensive Research for B.S./M...", + "title": "Intensive Research for B.S./M.S. Candidates", "school": "GS", "credits": 2.0, "extra_info": "ACTIVE", @@ -207897,10 +431352,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89193\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89193/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -207940,7 +431423,7 @@ "14:30", "15:45", "HLH17 03 - 17 Hillhouse Avenue 03", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Wednesday": [ @@ -207948,7 +431431,7 @@ "14:30", "15:45", "HLH17 03 - 17 Hillhouse Avenue 03", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -207960,10 +431443,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88768\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88768/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -208007,7 +431518,7 @@ "11:35", "12:50", "LUCE 101 - Luce Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ], "Thursday": [ @@ -208015,7 +431526,7 @@ "11:35", "12:50", "LUCE 101 - Luce Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ] }, @@ -208029,10 +431540,253 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89011\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89011/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988887906074524, + 0.9983737468719482, + 0.9988142251968384, + 0.9988908171653748, + 0.998441755771637, + 0.9987757802009583, + 0.99888676404953, + 0.9874891638755798, + 0.9989352822303772, + 0.9987177848815918, + 0.9952391386032104, + 0.9892055988311768, + 0.9987354874610901, + 0.9989192485809326, + 0.9986441731452942, + 0.9905911087989807, + 0.9987533092498779, + 0.998866081237793, + 0.9989217519760132, + 0.9980227947235107, + 0.9988921284675598, + 0.990639328956604, + 0.9982396364212036, + 0.9988879561424255, + 0.9988849759101868, + 0.9983193278312683, + 0.9987794756889343, + 0.9978753328323364 + ], + "sentiment_counts": { + "POSITIVE": 27, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9642857142857143, + "NEGATIVE": 0.03571428571428571 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9642857142857143 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9948838353157043, + 0.9989210367202759, + 0.9983953833580017, + 0.9989014863967896, + 0.9988848567008972, + 0.9988791346549988, + 0.9986065030097961, + 0.9987772107124329, + 0.9987404942512512, + 0.9988987445831299, + 0.9989137649536133, + 0.9988067150115967, + 0.9989389777183533, + 0.9988881945610046, + 0.9987785220146179, + 0.9988686442375183, + 0.9986944794654846, + 0.989252507686615, + 0.9989281296730042, + 0.9980921149253845, + 0.9989100694656372, + 0.9994986057281494, + 0.9993464350700378, + 0.9989088773727417, + 0.9989386200904846, + 0.998891294002533, + 0.9988569021224976, + 0.9989243149757385, + 0.9988303780555725, + 0.998458981513977 + ], + "sentiment_counts": { + "POSITIVE": 24, + "NEGATIVE": 6 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9940357208251953, + 0.9982839226722717, + 0.9983761310577393, + 0.99873286485672, + 0.9970833659172058, + 0.9989056587219238, + 0.9988123178482056, + 0.998794674873352, + 0.9989261031150818, + 0.9988017082214355, + 0.9989323019981384, + 0.9969401359558105, + 0.9989219903945923, + 0.9987335801124573, + 0.9989346861839294, + 0.9918033480644226, + 0.9988143444061279, + 0.9989153146743774, + 0.9988839030265808, + 0.9982178807258606, + 0.9988948702812195, + 0.9982427358627319, + 0.9989099502563477, + 0.9978256821632385, + 0.99891197681427, + 0.9989271759986877, + 0.9987196922302246, + 0.9987320303916931, + 0.9989320635795593, + 0.999473512172699 + ], + "sentiment_counts": { + "POSITIVE": 28, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.9333333333333333, + "NEGATIVE": 0.06666666666666667 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9333333333333333 + ] + }, + "final_label": "POSITIVE", + "final_count": 79, + "final_proportion": 0.8977272727272727, + "final_counts": { + "POSITIVE": 79, + "NEGATIVE": 9 + }, + "final_distribution": { + "POSITIVE": 0.8977272727272727, + "NEGATIVE": 0.10227272727272728 + } + } }, { "season_code": "202303", @@ -208100,7 +431854,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -208195,10 +431977,38 @@ "classnotes": "Undergraduate Prerequisites: This is a graduate level cell biology class. Any Yale undergraduates wishing to enroll must have already taken MCDB 205. In addition, undergraduates are strongly encouraged to first reach out to the course directors prior to enrollment.", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89571\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89571/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -208239,7 +432049,7 @@ "11:35", "12:50", "TAC N107 - The Anlyan Center N107", - "https:\/\/map.yale.edu\/?id=1910#!m\/563380" + "https://map.yale.edu/?id=1910#!m/563380" ] ], "Wednesday": [ @@ -208247,7 +432057,7 @@ "11:35", "12:50", "TAC N107 - The Anlyan Center N107", - "https:\/\/map.yale.edu\/?id=1910#!m\/563380" + "https://map.yale.edu/?id=1910#!m/563380" ] ] }, @@ -208259,15 +432069,140 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89500\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89500/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984577894210815, + 0.9988810420036316, + 0.9957754015922546, + 0.998795747756958, + 0.998793363571167, + 0.9979946613311768, + 0.9842560887336731, + 0.9963437914848328, + 0.9892461895942688, + 0.9987061023712158 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986854195594788, + 0.9976736903190613, + 0.9987643957138062, + 0.9987610578536987, + 0.9988402724266052, + 0.9988735318183899, + 0.998514711856842, + 0.9988810420036316, + 0.9853230714797974, + 0.9994864463806152, + 0.9987854361534119 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8181818181818182, + "NEGATIVE": 0.18181818181818182 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8181818181818182 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987319111824036, + 0.9979998469352722, + 0.9995076656341553, + 0.9974592328071594, + 0.9989075660705566, + 0.997117280960083, + 0.998001754283905, + 0.9986473917961121 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.625, + "NEGATIVE": 0.375 + }, + "sentiment_overall": [ + "POSITIVE", + 0.625 + ] + }, + "final_label": "POSITIVE", + "final_count": 24, + "final_proportion": 0.8275862068965517, + "final_counts": { + "POSITIVE": 24, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.8275862068965517, + "NEGATIVE": 0.1724137931034483 + } + } }, { "season_code": "202303", "requirements": "Prerequisites: MATH 120 and MB&B 600 or equivalents, or permission of the instructors.", - "description": "The course offers an introduction to quantitative methods relevant to analysis and interpretation of biophysical and biochemical data. Topics covered include statistical testing, data presentation, and error analysis; introduction to dynamical systems; analysis of large datasets; and Fourier analysis in signal\/image processing and macromolecular structural studies. The course also includes an introduction to basic programming skills and data analysis using MATLAB. Real data from research groups in MB&B are used for practice.", + "description": "The course offers an introduction to quantitative methods relevant to analysis and interpretation of biophysical and biochemical data. Topics covered include statistical testing, data presentation, and error analysis; introduction to dynamical systems; analysis of large datasets; and Fourier analysis in signal/image processing and macromolecular structural studies. The course also includes an introduction to basic programming skills and data analysis using MATLAB. Real data from research groups in MB&B are used for practice.", "short_title": "Quantitative Approaches in Bi...", "title": "Quantitative Approaches in Biophysics and Biochemistry", "school": "GS", @@ -208304,7 +432239,7 @@ "9:00", "10:15", "BASS 405 - Bass Center 405", - "https:\/\/map.yale.edu\/?id=1910#!m\/560102" + "https://map.yale.edu/?id=1910#!m/560102" ] ], "Thursday": [ @@ -208312,7 +432247,7 @@ "9:00", "10:15", "BASS 405 - Bass Center 405", - "https:\/\/map.yale.edu\/?id=1910#!m\/560102" + "https://map.yale.edu/?id=1910#!m/560102" ] ] }, @@ -208324,10 +432259,151 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89370\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89370/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986211061477661, + 0.9979197382926941, + 0.9974398612976074, + 0.9965272545814514, + 0.9986338019371033, + 0.9984960556030273, + 0.9987004995346069, + 0.9988278746604919, + 0.9871156215667725, + 0.9861375689506531, + 0.9986512064933777, + 0.9986913800239563 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.998908519744873, + 0.9995070695877075, + 0.9992726445198059, + 0.9989141225814819, + 0.9989199638366699, + 0.9988821148872375, + 0.998176097869873, + 0.998900294303894, + 0.9991794228553772, + 0.9991742968559265, + 0.9987002611160278, + 0.9987385869026184, + 0.9994890689849854 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 5 + }, + "sentiment_distribution": { + "POSITIVE": 0.6153846153846154, + "NEGATIVE": 0.38461538461538464 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6153846153846154 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988873600959778, + 0.9986721277236938, + 0.9988164901733398, + 0.9989210367202759, + 0.9981752634048462, + 0.9989155530929565, + 0.9988371729850769, + 0.9988906979560852, + 0.9995007514953613, + 0.9961637258529663, + 0.9995008707046509, + 0.9904946088790894 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 5 + }, + "sentiment_distribution": { + "POSITIVE": 0.5833333333333334, + "NEGATIVE": 0.4166666666666667 + }, + "sentiment_overall": [ + "POSITIVE", + 0.5833333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 27, + "final_proportion": 0.7297297297297297, + "final_counts": { + "POSITIVE": 27, + "NEGATIVE": 10 + }, + "final_distribution": { + "POSITIVE": 0.7297297297297297, + "NEGATIVE": 0.2702702702702703 + } + } }, { "season_code": "202303", @@ -208370,7 +432446,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -208419,7 +432523,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -208460,7 +432592,7 @@ "11:35", "12:50", "BASS 405 - Bass Center 405", - "https:\/\/map.yale.edu\/?id=1910#!m\/560102" + "https://map.yale.edu/?id=1910#!m/560102" ] ], "Thursday": [ @@ -208468,7 +432600,7 @@ "11:35", "12:50", "BASS 405 - Bass Center 405", - "https:\/\/map.yale.edu\/?id=1910#!m\/560102" + "https://map.yale.edu/?id=1910#!m/560102" ] ] }, @@ -208480,10 +432612,131 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89369\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89369/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998708963394165, + 0.9987239241600037, + 0.998914361000061, + 0.9874030351638794, + 0.8866985440254211, + 0.9985920786857605, + 0.998738706111908, + 0.9900042414665222, + 0.993880033493042, + 0.998815655708313 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986750483512878, + 0.9987726807594299, + 0.9988424181938171, + 0.9987418055534363, + 0.9988721013069153, + 0.9984982013702393, + 0.998648464679718, + 0.997121274471283, + 0.9986887574195862 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9893759489059448, + 0.9988746047019958, + 0.9451174139976501, + 0.9983795881271362, + 0.9987201690673828, + 0.9986739158630371, + 0.998892605304718, + 0.998865008354187 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "final_label": "POSITIVE", + "final_count": 25, + "final_proportion": 0.9259259259259259, + "final_counts": { + "POSITIVE": 25, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9259259259259259, + "NEGATIVE": 0.07407407407407407 + } + } }, { "season_code": "202303", @@ -208532,15 +432785,22 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89201\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89201/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "Prerequisite: biochemistry (may be taken concurrently).", - "description": "The seminar, which covers topics in the molecular mechanisms of disease, illustrates timely issues in areas such as protein chemistry and enzymology, intermediary metabolism, nucleic acid biochemistry, gene expression, and virology. M.D. and M.D.\/Ph.D. students only.", + "description": "The seminar, which covers topics in the molecular mechanisms of disease, illustrates timely issues in areas such as protein chemistry and enzymology, intermediary metabolism, nucleic acid biochemistry, gene expression, and virology. M.D. and M.D./Ph.D. students only.", "short_title": "Advanced Topics in Molecular ...", "title": "Advanced Topics in Molecular Medicine", "school": "GS", @@ -208581,7 +432841,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -208621,15 +432909,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91293\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91293/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "The development of the immune system. Cellular and molecular mechanisms of immune recognition. Effector responses against pathogens. Immunologic memory and vaccines. Human diseases including allergy, autoimmunity, cancer, immunodeficiency, HIV\/AIDS.", + "description": "The development of the immune system. Cellular and molecular mechanisms of immune recognition. Effector responses against pathogens. Immunologic memory and vaccines. Human diseases including allergy, autoimmunity, cancer, immunodeficiency, HIV/AIDS.", "short_title": "Biology of the Immune System", "title": "Biology of the Immune System", "school": "GS", @@ -208721,7 +433037,7 @@ "9:25", "10:15", "WLH 119 - William L. Harkness Hall 119", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -208729,7 +433045,7 @@ "9:25", "10:15", "WLH 119 - William L. Harkness Hall 119", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Friday": [ @@ -208737,7 +433053,7 @@ "9:25", "10:15", "WLH 119 - William L. Harkness Hall 119", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -208751,10 +433067,149 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90345\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90345/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989323019981384, + 0.99882572889328, + 0.9862096905708313, + 0.9987843632698059, + 0.998793363571167, + 0.9988719820976257, + 0.9989079236984253, + 0.9986584186553955, + 0.9989327788352966, + 0.9624254703521729, + 0.9966232776641846, + 0.9984096884727478 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9166666666666666 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989351630210876, + 0.9988769888877869, + 0.998191773891449, + 0.998806357383728, + 0.997580885887146, + 0.9914201498031616, + 0.9995098114013672, + 0.9959096908569336, + 0.998777449131012, + 0.9989198446273804, + 0.9985442161560059, + 0.9987282156944275, + 0.9942849278450012 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.7692307692307693, + "NEGATIVE": 0.23076923076923078 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7692307692307693 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989050626754761, + 0.9988560676574707, + 0.9980132579803467, + 0.9989252686500549, + 0.9984480142593384, + 0.9990231990814209, + 0.9994864463806152, + 0.9939033389091492, + 0.998900294303894, + 0.9989205598831177, + 0.9986580610275269 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8181818181818182, + "NEGATIVE": 0.18181818181818182 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8181818181818182 + ] + }, + "final_label": "POSITIVE", + "final_count": 30, + "final_proportion": 0.8333333333333334, + "final_counts": { + "POSITIVE": 30, + "NEGATIVE": 6 + }, + "final_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + } + } }, { "season_code": "202303", @@ -208797,7 +433252,14 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -208840,7 +433302,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -208877,7 +433367,7 @@ "10:00", "11:30", "BCMM 101 - Boyer Ctr Molecular Medicine 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/560055" + "https://map.yale.edu/?id=1910#!m/560055" ] ], "Thursday": [ @@ -208885,7 +433375,7 @@ "10:00", "11:30", "BCMM 101 - Boyer Ctr Molecular Medicine 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/560055" + "https://map.yale.edu/?id=1910#!m/560055" ] ] }, @@ -208897,10 +433387,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90186\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90186/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -208937,7 +433455,7 @@ "15:30", "16:30", "HOPE 216 - Hope 216", - "https:\/\/map.yale.edu\/?id=1910#!m\/560131" + "https://map.yale.edu/?id=1910#!m/560131" ] ] }, @@ -208952,7 +433470,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -208989,7 +433535,7 @@ "15:30", "16:30", "HOPE 216 - Hope 216", - "https:\/\/map.yale.edu\/?id=1910#!m\/560131" + "https://map.yale.edu/?id=1910#!m/560131" ] ] }, @@ -209004,7 +433550,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -209041,7 +433615,7 @@ "14:30", "15:45", "YK212 004 - 212 York Street 004", - "https:\/\/map.yale.edu\/?id=1910#!m\/559604" + "https://map.yale.edu/?id=1910#!m/559604" ] ], "Thursday": [ @@ -209049,7 +433623,7 @@ "14:30", "15:45", "YK212 004 - 212 York Street 004", - "https:\/\/map.yale.edu\/?id=1910#!m\/559604" + "https://map.yale.edu/?id=1910#!m/559604" ] ] }, @@ -209063,17 +433637,96 @@ "classnotes": "Enrollment for first-year students through Preference Selection only. ", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92443\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92443/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988195300102234, + 0.9987567663192749 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9972272515296936, + 0.998872697353363 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987308382987976, + 0.9988970756530762 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 1 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "final_label": "POSITIVE", + "final_count": 5, + "final_proportion": 0.8333333333333334, + "final_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + } + } }, { "season_code": "202303", "requirements": "Prerequisite: AP Biology or equivalent. Enrollment limited to first-year students. Preregistration required; see under First-Year Seminar Program.\u00a0", - "description": "Study of the basic\u00a0virology and immunology of HIV\/AIDS, along with its extraordinary historical and social effects. Issues include the threat of new epidemics emerging from a changing global environment; the potential harm of conspiracy theories based on false science; and how stigmas associated with poverty, gender inequality, sexual preference, and race facilitate an ongoing epidemic. For all first-year students regardless of whether they are considering a science major.", + "description": "Study of the basic\u00a0virology and immunology of HIV/AIDS, along with its extraordinary historical and social effects. Issues include the threat of new epidemics emerging from a changing global environment; the potential harm of conspiracy theories based on false science; and how stigmas associated with poverty, gender inequality, sexual preference, and race facilitate an ongoing epidemic. For all first-year students regardless of whether they are considering a science major.", "short_title": "The Science and Politics of H...", - "title": "The Science and Politics of HIV\/AIDS", + "title": "The Science and Politics of HIV/AIDS", "school": "YC", "credits": 1.0, "extra_info": "ACTIVE", @@ -209103,7 +433756,7 @@ "13:00", "14:15", "AKW 100 - Arthur K. Watson Hall 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560119" + "https://map.yale.edu/?id=1910#!m/560119" ] ], "Thursday": [ @@ -209111,7 +433764,7 @@ "13:00", "14:15", "AKW 100 - Arthur K. Watson Hall 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560119" + "https://map.yale.edu/?id=1910#!m/560119" ] ] }, @@ -209125,10 +433778,123 @@ "classnotes": "FIRST YEAR SEMINAR", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88316\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88316/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983381032943726, + 0.998900294303894, + 0.9989128112792969, + 0.9988580942153931, + 0.9989294409751892, + 0.9986520409584045, + 0.9987743496894836 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986598491668701, + 0.9988808035850525, + 0.9989315867424011, + 0.9989281296730042, + 0.9989266991615295, + 0.9989025592803955, + 0.9983429908752441, + 0.9988995790481567 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988391995429993, + 0.9988124370574951, + 0.9989387392997742, + 0.9988073110580444, + 0.9989294409751892, + 0.9989264607429504, + 0.9989271759986877, + 0.9988448619842529, + 0.9989076852798462 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 24, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 24 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -209175,7 +433941,7 @@ "11:35", "12:25", "DAVIES AUD - Davies Auditorium, Becton Ctr AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ], "Wednesday": [ @@ -209183,7 +433949,7 @@ "11:35", "12:25", "DAVIES AUD - Davies Auditorium, Becton Ctr AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ] }, @@ -209201,10 +433967,367 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88332\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88332/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988285899162292, + 0.9985987544059753, + 0.998809814453125, + 0.9988301396369934, + 0.9961885809898376, + 0.9963723421096802, + 0.9986674785614014, + 0.9987983703613281, + 0.9987311959266663, + 0.9987553358078003, + 0.9985275268554688, + 0.9957778453826904, + 0.9983938336372375, + 0.9987599849700928, + 0.9987176656723022, + 0.9988657236099243, + 0.998927891254425, + 0.9988483190536499, + 0.9988301396369934, + 0.9910455346107483, + 0.9989321827888489, + 0.9988906979560852, + 0.9988834261894226, + 0.998792290687561, + 0.9988495111465454, + 0.9989033937454224, + 0.9965193271636963, + 0.9988548755645752, + 0.9983649849891663, + 0.9987993240356445, + 0.9988406300544739, + 0.9987932443618774, + 0.9982810020446777, + 0.8538457155227661, + 0.9988825917243958, + 0.9987704157829285, + 0.9978635907173157, + 0.9988207221031189, + 0.9988892674446106, + 0.9988671541213989, + 0.9988056421279907, + 0.9986447691917419, + 0.9988947510719299, + 0.9987120628356934, + 0.9989367127418518, + 0.998769223690033 + ], + "sentiment_counts": { + "POSITIVE": 44, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.9565217391304348, + "NEGATIVE": 0.043478260869565216 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9565217391304348 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988279938697815, + 0.9994444251060486, + 0.9985741376876831, + 0.9994774460792542, + 0.9989008903503418, + 0.9987242817878723, + 0.9977802634239197, + 0.9995132684707642, + 0.9988910555839539, + 0.9963772892951965, + 0.9880117177963257, + 0.9988518953323364, + 0.9988295435905457, + 0.9970928430557251, + 0.9989290833473206, + 0.9988700747489929, + 0.9986900687217712, + 0.9986742734909058, + 0.9987769722938538, + 0.9989011287689209, + 0.9994779229164124, + 0.9988723397254944, + 0.9987779259681702, + 0.9983661770820618, + 0.9988215565681458, + 0.9981575608253479, + 0.9988675117492676, + 0.9989315867424011, + 0.9957335591316223, + 0.9988970756530762, + 0.9877747297286987, + 0.9989112615585327, + 0.9972335696220398, + 0.9992927312850952, + 0.9988829493522644, + 0.9994925260543823, + 0.9988806843757629, + 0.9989114999771118, + 0.9994921684265137, + 0.9988721013069153, + 0.9989233613014221, + 0.9989159107208252, + 0.9986124038696289, + 0.9988852143287659, + 0.9994407296180725, + 0.9988445043563843, + 0.9989389777183533, + 0.9982842803001404, + 0.9989089965820312, + 0.9995017051696777 + ], + "sentiment_counts": { + "POSITIVE": 39, + "NEGATIVE": 11 + }, + "sentiment_distribution": { + "POSITIVE": 0.78, + "NEGATIVE": 0.22 + }, + "sentiment_overall": [ + "POSITIVE", + 0.78 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989595413208008, + 0.9974592328071594, + 0.993377149105072, + 0.9987908005714417, + 0.991025984287262, + 0.995650589466095, + 0.9972100853919983, + 0.9988038539886475, + 0.9987607002258301, + 0.9937959909439087, + 0.9989293217658997, + 0.998931348323822, + 0.9988873600959778, + 0.9653174877166748, + 0.9987359642982483, + 0.9965479969978333, + 0.9981427192687988, + 0.9989380240440369, + 0.9988470077514648, + 0.9988991022109985, + 0.998837411403656, + 0.998458981513977, + 0.9987277388572693, + 0.9981497526168823, + 0.9988180994987488, + 0.997117280960083, + 0.9988136291503906, + 0.9989150762557983, + 0.9989114999771118, + 0.9980016350746155, + 0.9942157864570618, + 0.9984766840934753, + 0.9987624883651733, + 0.9988430738449097, + 0.9983935952186584, + 0.9988662004470825, + 0.9988620281219482, + 0.9980016350746155, + 0.998796820640564, + 0.9958065748214722, + 0.9989221096038818, + 0.9989190101623535, + 0.9973594546318054, + 0.9989247918128967, + 0.999472439289093, + 0.9989268183708191, + 0.9988610744476318, + 0.9994988441467285, + 0.9995007514953613 + ], + "sentiment_counts": { + "NEGATIVE": 11, + "POSITIVE": 38 + }, + "sentiment_distribution": { + "NEGATIVE": 0.22448979591836735, + "POSITIVE": 0.7755102040816326 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7755102040816326 + ] + }, + "final_label": "POSITIVE", + "final_count": 121, + "final_proportion": 0.8344827586206897, + "final_counts": { + "POSITIVE": 121, + "NEGATIVE": 24 + }, + "final_distribution": { + "POSITIVE": 0.8344827586206897, + "NEGATIVE": 0.16551724137931034 + } + } }, { "season_code": "202303", @@ -209236,7 +434359,7 @@ "14:30", "15:20", "WTS B31 - Watson Center 60 Sachem Street B31", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -209257,7 +434380,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -209289,7 +434440,7 @@ "14:30", "15:20", "WTS A35 - Watson Center 60 Sachem Street A35", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -209310,7 +434461,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -209342,7 +434521,7 @@ "14:30", "15:20", "WTS B35 - Watson Center 60 Sachem Street B35", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -209363,7 +434542,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -209395,7 +434602,7 @@ "14:30", "15:20", "WTS A72 - Watson Center 60 Sachem Street A72", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -209416,7 +434623,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -209448,7 +434683,7 @@ "16:00", "16:50", "WTS A32 - Watson Center 60 Sachem Street A32", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -209469,7 +434704,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -209501,7 +434764,7 @@ "16:00", "16:50", "HQ 313 - Humanities Quadrangle 313", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -209522,7 +434785,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -209554,7 +434845,7 @@ "16:00", "16:50", "WTS A48 - Watson Center 60 Sachem Street A48", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -209575,7 +434866,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -209607,7 +434926,7 @@ "16:00", "16:50", "WTS A72 - Watson Center 60 Sachem Street A72", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -209628,7 +434947,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -209660,7 +435007,7 @@ "19:00", "19:50", "WTS A32 - Watson Center 60 Sachem Street A32", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -209681,7 +435028,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -209713,7 +435088,7 @@ "19:00", "19:50", "WTS A42 - Watson Center 60 Sachem Street A42", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -209734,7 +435109,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -209766,7 +435169,7 @@ "19:00", "19:50", "WTS A72 - Watson Center 60 Sachem Street A72", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -209787,7 +435190,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -209819,7 +435250,7 @@ "20:00", "20:50", "WTS A38 - Watson Center 60 Sachem Street A38", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -209840,7 +435271,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -209872,7 +435331,7 @@ "20:00", "20:50", "WTS A42 - Watson Center 60 Sachem Street A42", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -209893,7 +435352,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -209925,7 +435412,7 @@ "20:00", "20:50", "WTS A72 - Watson Center 60 Sachem Street A72", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -209946,7 +435433,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -209985,7 +435500,7 @@ "13:00", "14:15", "LC 208 - Linsly-Chittenden Hall 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -209993,7 +435508,7 @@ "13:00", "14:15", "LC 208 - Linsly-Chittenden Hall 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -210011,10 +435526,99 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89882\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89882/assignments/syllabus", "fysem": true, "sysem": true, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998794436454773, + 0.9968249797821045 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9875105619430542, + 0.9986365437507629, + 0.9931440353393555, + 0.9988499879837036, + 0.9994962215423584 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.6, + "POSITIVE": 0.4 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.6 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9995063543319702, + 0.9986275434494019, + 0.9991681575775146, + 0.9989309906959534 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "final_label": "neutral", + "final_count": 6, + "final_proportion": 0.5, + "final_counts": { + "POSITIVE": 6, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.5454545454545454, + "NEGATIVE": 0.45454545454545453 + } + } }, { "season_code": "202303", @@ -210054,7 +435658,7 @@ "11:35", "12:50", "OML 202 - Osborn Memorial Laboratories 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/559958" + "https://map.yale.edu/?id=1910#!m/559958" ] ], "Thursday": [ @@ -210062,7 +435666,7 @@ "11:35", "12:50", "OML 202 - Osborn Memorial Laboratories 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/559958" + "https://map.yale.edu/?id=1910#!m/559958" ] ] }, @@ -210073,17 +435677,288 @@ "flags": [ "YC E&EB: Biodiversity Elective", "YC E&EB: Organismal Elective", - "YC NSCI: Molecular\/Cell\/Biol" - ], - "regnotes": "", - "rp_attr": "", - "classnotes": "", - "final_exam": "No regular final examination", - "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89227\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "YC NSCI: Molecular/Cell/Biol" + ], + "regnotes": "", + "rp_attr": "", + "classnotes": "", + "final_exam": "No regular final examination", + "course_home_url": "", + "syllabus_url": "https://yale.instructure.com/courses/89227/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998594343662262, + 0.9994008541107178, + 0.9976599216461182, + 0.998931348323822, + 0.9188480973243713, + 0.9383296370506287, + 0.9988573789596558, + 0.9988389611244202, + 0.9989109039306641, + 0.9988810420036316, + 0.9988744854927063, + 0.9940059185028076, + 0.9986531734466553, + 0.9985055923461914, + 0.9988634586334229, + 0.9988719820976257, + 0.9989029169082642, + 0.9892423748970032, + 0.9987647533416748, + 0.9983190894126892, + 0.9981910586357117, + 0.9986612796783447, + 0.9987632036209106, + 0.9984602928161621, + 0.9989210367202759, + 0.9988729357719421, + 0.9987295269966125, + 0.9988067150115967 + ], + "sentiment_counts": { + "POSITIVE": 26, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.9285714285714286, + "NEGATIVE": 0.07142857142857142 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9285714285714286 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9995001554489136, + 0.998908281326294, + 0.9995037317276001, + 0.9891359806060791, + 0.9988693594932556, + 0.9988164901733398, + 0.9993031024932861, + 0.9988064765930176, + 0.9988719820976257, + 0.9989266991615295, + 0.9956592321395874, + 0.9938546419143677, + 0.9967089891433716, + 0.9988839030265808, + 0.9984371066093445, + 0.9988760352134705, + 0.9989205598831177, + 0.9988895058631897, + 0.9986802935600281, + 0.9989198446273804, + 0.9951411485671997, + 0.9874186515808105, + 0.9987377524375916, + 0.9994903802871704, + 0.9994315505027771, + 0.9995025396347046, + 0.997016191482544, + 0.9988818764686584, + 0.9985861778259277, + 0.9988466501235962, + 0.9987101554870605, + 0.9981358051300049, + 0.9987653493881226, + 0.967879056930542, + 0.9946763515472412, + 0.9981576800346375, + 0.9995101690292358 + ], + "sentiment_counts": { + "NEGATIVE": 12, + "POSITIVE": 25 + }, + "sentiment_distribution": { + "NEGATIVE": 0.32432432432432434, + "POSITIVE": 0.6756756756756757 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6756756756756757 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982340335845947, + 0.9982590079307556, + 0.9989261031150818, + 0.9994778037071228, + 0.9995051622390747, + 0.9988664388656616, + 0.9970685839653015, + 0.9987753033638, + 0.9939947724342346, + 0.9923822283744812, + 0.9989153146743774, + 0.9989089965820312, + 0.998927652835846, + 0.9826144576072693, + 0.9851313233375549, + 0.9994788765907288, + 0.9986452460289001, + 0.9987762570381165, + 0.9980778694152832, + 0.9982168078422546, + 0.9994363188743591, + 0.9989389777183533, + 0.9995009899139404, + 0.9979526996612549, + 0.9974472522735596, + 0.998313307762146, + 0.981940507888794, + 0.9995046854019165, + 0.9995043277740479, + 0.9988586902618408, + 0.96718430519104, + 0.9984752535820007, + 0.9989381432533264, + 0.9987779259681702, + 0.9995119571685791, + 0.9995073080062866, + 0.9987841248512268 + ], + "sentiment_counts": { + "POSITIVE": 22, + "NEGATIVE": 15 + }, + "sentiment_distribution": { + "POSITIVE": 0.5945945945945946, + "NEGATIVE": 0.40540540540540543 + }, + "sentiment_overall": [ + "POSITIVE", + 0.5945945945945946 + ] + }, + "final_label": "POSITIVE", + "final_count": 73, + "final_proportion": 0.7156862745098039, + "final_counts": { + "POSITIVE": 73, + "NEGATIVE": 29 + }, + "final_distribution": { + "POSITIVE": 0.7156862745098039, + "NEGATIVE": 0.28431372549019607 + } + } }, { "season_code": "202303", @@ -210125,10 +436000,159 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89165\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89165/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988631010055542, + 0.9987567663192749, + 0.9983104467391968, + 0.9987996816635132, + 0.9987481832504272, + 0.9988778233528137, + 0.9988904595375061, + 0.9982752799987793, + 0.9981398582458496, + 0.9989073276519775, + 0.9988746047019958, + 0.9943135976791382, + 0.9983245730400085, + 0.9988569021224976, + 0.9973592162132263 + ], + "sentiment_counts": { + "POSITIVE": 15, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983673691749573, + 0.9988918900489807, + 0.9989198446273804, + 0.9988799691200256, + 0.9989162683486938, + 0.9989233613014221, + 0.9989175796508789, + 0.9988625049591064, + 0.9986352324485779, + 0.9966320395469666, + 0.9989331364631653, + 0.9988722205162048 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.99886155128479, + 0.998931348323822, + 0.9988307356834412, + 0.9988866448402405, + 0.9988701939582825, + 0.9989161491394043, + 0.9988883137702942, + 0.988017201423645, + 0.9989016056060791, + 0.9975095987319946, + 0.9989370703697205, + 0.9988147020339966, + 0.9989319443702698, + 0.9989376664161682 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9285714285714286, + "NEGATIVE": 0.07142857142857142 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9285714285714286 + ] + }, + "final_label": "POSITIVE", + "final_count": 40, + "final_proportion": 0.975609756097561, + "final_counts": { + "POSITIVE": 40, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.975609756097561, + "NEGATIVE": 0.024390243902439025 + } + } }, { "season_code": "202303", @@ -210176,7 +436200,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -210207,7 +436259,7 @@ "14:30", "17:30", "WALL53 B-02 - 53 Wall Street B-02", - "https:\/\/map.yale.edu\/?id=1910#!m\/559554" + "https://map.yale.edu/?id=1910#!m/559554" ] ] }, @@ -210224,7 +436276,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -210255,7 +436335,7 @@ "14:30", "17:30", "WALL53 B-02 - 53 Wall Street B-02", - "https:\/\/map.yale.edu\/?id=1910#!m\/559554" + "https://map.yale.edu/?id=1910#!m/559554" ] ] }, @@ -210272,7 +436352,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -210316,10 +436424,153 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88341\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88341/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989246726036072, + 0.9987965822219849, + 0.9988766312599182, + 0.9964128136634827, + 0.9989035129547119, + 0.998833954334259, + 0.9985889792442322, + 0.9987323880195618, + 0.9988580942153931, + 0.9988871216773987, + 0.9989162683486938, + 0.9984582662582397, + 0.9987961053848267 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988184571266174, + 0.9988399147987366, + 0.9957901835441589, + 0.7775424718856812, + 0.9986936450004578, + 0.9969847798347473, + 0.9989193677902222, + 0.9987071752548218, + 0.9986598491668701, + 0.9988211989402771, + 0.998885452747345, + 0.9989301562309265 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 11 + }, + "sentiment_distribution": { + "NEGATIVE": 0.08333333333333333, + "POSITIVE": 0.9166666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9166666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9977532029151917, + 0.9989012479782104, + 0.9995042085647583, + 0.9984575510025024, + 0.9988821148872375, + 0.9988594055175781, + 0.9988577365875244, + 0.9988692402839661, + 0.9989064931869507, + 0.9989036321640015, + 0.9988715052604675, + 0.9989137649536133, + 0.9988353848457336 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9230769230769231, + "NEGATIVE": 0.07692307692307693 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9230769230769231 + ] + }, + "final_label": "POSITIVE", + "final_count": 36, + "final_proportion": 0.9473684210526315, + "final_counts": { + "POSITIVE": 36, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9473684210526315, + "NEGATIVE": 0.05263157894736842 + } + } }, { "season_code": "202303", @@ -210350,7 +436601,7 @@ "13:30", "17:30", "SCL 144 - Sterling Chemistry Laboratory 144", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -210369,7 +436620,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -210400,7 +436679,7 @@ "13:30", "17:30", "SCL 144 - Sterling Chemistry Laboratory 144", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -210419,7 +436698,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -210450,7 +436757,7 @@ "13:30", "17:30", "SCL 144 - Sterling Chemistry Laboratory 144", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -210469,7 +436776,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -210500,7 +436835,7 @@ "13:30", "17:30", "SCL 144 - Sterling Chemistry Laboratory 144", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -210519,7 +436854,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -210587,17 +436950,224 @@ "Sc" ], "flags": [ - "YC NSCI: Molecular\/Cell\/Biol" + "YC NSCI: Molecular/Cell/Biol" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "Thursday, December 14, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88819\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88819/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986960291862488, + 0.9985559582710266, + 0.9982325434684753, + 0.9988131523132324, + 0.998867392539978, + 0.9987497329711914, + 0.9987788796424866, + 0.9987605810165405, + 0.9982513785362244, + 0.998813271522522, + 0.9984017014503479, + 0.9988995790481567, + 0.9988046884536743, + 0.998624324798584, + 0.9987528324127197, + 0.9960021376609802, + 0.9968575239181519, + 0.9987786412239075, + 0.998595654964447, + 0.9986783862113953 + ], + "sentiment_counts": { + "POSITIVE": 20, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987408518791199, + 0.9985047578811646, + 0.9962441921234131, + 0.9940443634986877, + 0.9828140735626221, + 0.9972666501998901, + 0.9988413453102112, + 0.9989017248153687, + 0.9988958835601807, + 0.9989025592803955, + 0.9982696771621704, + 0.9988996982574463, + 0.9995028972625732, + 0.991534948348999, + 0.9988479614257812, + 0.998833954334259, + 0.998845100402832, + 0.9902716279029846, + 0.9987928867340088, + 0.9988393187522888, + 0.9988351464271545, + 0.9988656044006348, + 0.9988148212432861, + 0.9882069230079651, + 0.9975110292434692 + ], + "sentiment_counts": { + "POSITIVE": 20, + "NEGATIVE": 5 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9959800243377686, + 0.9892011880874634, + 0.9993071556091309, + 0.8197240829467773, + 0.9974592328071594, + 0.9950361847877502, + 0.998599112033844, + 0.9943869113922119, + 0.9989386200904846, + 0.9988058805465698, + 0.9987941980361938, + 0.9988412261009216, + 0.9988968372344971, + 0.9958109855651855, + 0.9989206790924072, + 0.9968640804290771, + 0.9989198446273804, + 0.998873770236969, + 0.9988381266593933, + 0.998514711856842, + 0.9989145994186401, + 0.9988763928413391, + 0.9988619089126587, + 0.9987030029296875, + 0.9921451210975647 + ], + "sentiment_counts": { + "POSITIVE": 18, + "NEGATIVE": 7 + }, + "sentiment_distribution": { + "POSITIVE": 0.72, + "NEGATIVE": 0.28 + }, + "sentiment_overall": [ + "POSITIVE", + 0.72 + ] + }, + "final_label": "POSITIVE", + "final_count": 58, + "final_proportion": 0.8285714285714286, + "final_counts": { + "POSITIVE": 58, + "NEGATIVE": 12 + }, + "final_distribution": { + "POSITIVE": 0.8285714285714286, + "NEGATIVE": 0.17142857142857143 + } + } }, { "season_code": "202303", @@ -210637,7 +437207,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -210689,10 +437287,103 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89383\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89383/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987697005271912, + 0.9984121322631836, + 0.9986899495124817, + 0.9988988637924194, + 0.9901955723762512 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988981485366821, + 0.9987503290176392, + 0.9985507130622864, + 0.9973391890525818 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986788630485535, + 0.9976834058761597, + 0.9947240948677063, + 0.998528003692627, + 0.9987967014312744 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 14 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -210746,10 +437437,99 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92385\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92385/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981042146682739, + 0.9981800317764282, + 0.9988228678703308 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981681108474731, + 0.9987755417823792, + 0.9995086193084717, + 0.9988229870796204 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987838864326477, + 0.9965007305145264, + 0.9971877932548523, + 0.9989282488822937 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 0.9090909090909091, + "final_counts": { + "POSITIVE": 10, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + } + } }, { "season_code": "202303", @@ -210795,7 +437575,7 @@ "9:25", "10:15", "DAVIES AUD - Davies Auditorium, Becton Ctr AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ], "Wednesday": [ @@ -210803,7 +437583,7 @@ "9:25", "10:15", "DAVIES AUD - Davies Auditorium, Becton Ctr AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ], "Friday": [ @@ -210811,7 +437591,7 @@ "9:25", "10:15", "DAVIES AUD - Davies Auditorium, Becton Ctr AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ] }, @@ -210821,17 +437601,250 @@ ], "flags": [ "YC ENRG: Energy Science & Tech", - "YC NSCI: Molecular\/Cell\/Biol" + "YC NSCI: Molecular/Cell/Biol" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "Thursday, December 14, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88304\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88304/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989400506019592, + 0.9987356066703796, + 0.9988401532173157, + 0.9988483190536499, + 0.9987340569496155, + 0.9989243149757385, + 0.9981581568717957, + 0.9988138675689697, + 0.998855710029602, + 0.9988767504692078, + 0.997672975063324, + 0.9985867738723755, + 0.9987708926200867, + 0.9985735416412354, + 0.9977019429206848, + 0.9988190531730652, + 0.9987074136734009, + 0.9989060163497925, + 0.9975103139877319, + 0.9987026453018188, + 0.9986618757247925, + 0.9988909363746643, + 0.9978437423706055, + 0.9983353018760681, + 0.9985999464988708 + ], + "sentiment_counts": { + "POSITIVE": 25, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998848557472229, + 0.9993402361869812, + 0.9987609386444092, + 0.9989367127418518, + 0.9985036849975586, + 0.9989107847213745, + 0.9988788962364197, + 0.9987718462944031, + 0.9979021549224854, + 0.9987320303916931, + 0.998915433883667, + 0.9988909363746643, + 0.9995081424713135, + 0.9951971173286438, + 0.9987885355949402, + 0.9956823587417603, + 0.9983001351356506, + 0.9929627776145935, + 0.996518611907959, + 0.9988659620285034, + 0.9989122152328491, + 0.9994854927062988, + 0.9989089965820312, + 0.9989018440246582, + 0.9994179010391235, + 0.997342050075531, + 0.9988390803337097, + 0.9976304769515991, + 0.9986839890480042, + 0.9988480806350708 + ], + "sentiment_counts": { + "POSITIVE": 23, + "NEGATIVE": 7 + }, + "sentiment_distribution": { + "POSITIVE": 0.7666666666666667, + "NEGATIVE": 0.23333333333333334 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7666666666666667 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9943073391914368, + 0.9994959831237793, + 0.9987064599990845, + 0.9989296793937683, + 0.9986969828605652, + 0.9989004135131836, + 0.9988976716995239, + 0.9984064698219299, + 0.9987874627113342, + 0.9994966983795166, + 0.9988901019096375, + 0.9994984865188599, + 0.9989144802093506, + 0.9987828135490417, + 0.997117280960083, + 0.9971362352371216, + 0.9988127946853638, + 0.9988106489181519, + 0.9988019466400146, + 0.9968705773353577, + 0.9987626075744629, + 0.9989251494407654, + 0.9989131689071655, + 0.998771607875824, + 0.9962942004203796, + 0.9986621141433716, + 0.9647520780563354, + 0.9957173466682434 + ], + "sentiment_counts": { + "NEGATIVE": 7, + "POSITIVE": 21 + }, + "sentiment_distribution": { + "NEGATIVE": 0.25, + "POSITIVE": 0.75 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 69, + "final_proportion": 0.8313253012048193, + "final_counts": { + "POSITIVE": 69, + "NEGATIVE": 14 + }, + "final_distribution": { + "POSITIVE": 0.8313253012048193, + "NEGATIVE": 0.1686746987951807 + } + } }, { "season_code": "202303", @@ -210863,7 +437876,7 @@ "17:00", "17:50", "HQ 129 - Humanities Quadrangle 129", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -210882,7 +437895,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -210914,7 +437955,7 @@ "19:00", "19:50", "WTS B30 - Watson Center 60 Sachem Street B30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -210933,7 +437974,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -210965,7 +438034,7 @@ "19:00", "19:50", "WTS A38 - Watson Center 60 Sachem Street A38", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -210984,7 +438053,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -211016,7 +438113,7 @@ "20:00", "20:50", "WTS A39 - Watson Center 60 Sachem Street A39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -211035,7 +438132,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -211067,7 +438192,7 @@ "17:00", "17:50", "HQ 113 - Humanities Quadrangle 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -211086,7 +438211,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -211118,7 +438271,7 @@ "19:00", "19:50", "WTS B51 - Watson Center 60 Sachem Street B51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -211137,7 +438290,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -211180,7 +438361,7 @@ "11:35", "12:25", "WTS A53 - Watson Center 60 Sachem Street A53", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -211188,7 +438369,7 @@ "11:35", "12:25", "WTS A53 - Watson Center 60 Sachem Street A53", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Friday": [ @@ -211196,7 +438377,7 @@ "11:35", "12:25", "WTS A53 - Watson Center 60 Sachem Street A53", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -211210,10 +438391,163 @@ "classnotes": "", "final_exam": "Sunday, December 17, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89358\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89358/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988732933998108, + 0.9987448453903198, + 0.9980521202087402, + 0.9988383650779724, + 0.9987984895706177, + 0.9943441152572632, + 0.9983344674110413, + 0.9987303614616394, + 0.9994884729385376 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9955495595932007, + 0.9994706511497498, + 0.998485267162323, + 0.9918396472930908, + 0.9857528805732727, + 0.999496340751648, + 0.9988102912902832, + 0.9973223805427551, + 0.9983134269714355, + 0.9863342642784119, + 0.9894793629646301, + 0.9994966983795166, + 0.9870967864990234, + 0.9985388517379761, + 0.9981233477592468, + 0.9979408383369446, + 0.9994723200798035 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 9 + }, + "sentiment_distribution": { + "POSITIVE": 0.47058823529411764, + "NEGATIVE": 0.5294117647058824 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9986711740493774, + 0.9988766312599182, + 0.9948697090148926, + 0.9948377013206482, + 0.9987778067588806, + 0.999508261680603, + 0.9994785189628601, + 0.9988413453102112, + 0.9982150793075562, + 0.9994805455207825, + 0.9921711683273315, + 0.9968649744987488, + 0.9994605183601379, + 0.996715784072876, + 0.9989230036735535, + 0.9988738894462585, + 0.9994912147521973 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 9 + }, + "sentiment_distribution": { + "POSITIVE": 0.47058823529411764, + "NEGATIVE": 0.5294117647058824 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "final_label": "POSITIVE", + "final_count": 24, + "final_proportion": 0.5581395348837209, + "final_counts": { + "POSITIVE": 24, + "NEGATIVE": 19 + }, + "final_distribution": { + "POSITIVE": 0.5581395348837209, + "NEGATIVE": 0.4418604651162791 + } + } }, { "season_code": "202303", @@ -211251,7 +438585,7 @@ "13:30", "17:30", "SCL 139 - Sterling Chemistry Laboratory 139", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -211266,11 +438600,104 @@ "rp_attr": "", "classnotes": "", "final_exam": "HTBA", - "course_home_url": "https:\/\/yale.instructure.com\/courses\/89359", + "course_home_url": "https://yale.instructure.com/courses/89359", "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984543323516846, + 0.9988625049591064, + 0.9987198114395142, + 0.99886155128479 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987000226974487, + 0.9988138675689697, + 0.998690664768219, + 0.9985632300376892, + 0.998887836933136 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9995021820068359, + 0.9988586902618408, + 0.9988553524017334, + 0.9989161491394043 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.25, + "POSITIVE": 0.75 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 0.9230769230769231, + "final_counts": { + "POSITIVE": 12, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9230769230769231, + "NEGATIVE": 0.07692307692307693 + } + } }, { "season_code": "202303", @@ -211308,7 +438735,7 @@ "13:30", "17:30", "SCL 139 - Sterling Chemistry Laboratory 139", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -211323,11 +438750,100 @@ "rp_attr": "", "classnotes": "", "final_exam": "HTBA", - "course_home_url": "https:\/\/yale.instructure.com\/courses\/89360", + "course_home_url": "https://yale.instructure.com/courses/89360", "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988252520561218, + 0.9861161708831787, + 0.9876176714897156 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989145994186401, + 0.9984460473060608, + 0.9980629086494446, + 0.9992772936820984, + 0.9981222748756409 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.6, + "NEGATIVE": 0.4 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989062547683716, + 0.9988777041435242, + 0.9988237023353577 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 0.8181818181818182, + "final_counts": { + "POSITIVE": 9, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8181818181818182, + "NEGATIVE": 0.18181818181818182 + } + } }, { "season_code": "202303", @@ -211368,7 +438884,7 @@ "13:00", "14:15", "WTS A53 - Watson Center 60 Sachem Street A53", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -211376,7 +438892,7 @@ "13:00", "14:15", "WTS A53 - Watson Center 60 Sachem Street A53", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -211385,22 +438901,171 @@ "Sc" ], "flags": [ - "YC NSCI: Molecular\/Cell\/Biol" + "YC NSCI: Molecular/Cell/Biol" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "Wednesday, December 20, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88346\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "Prerequisites: MATH 115 or 116. BIOL 101-104,\u00a0 or with permission of instructors. This course also benefits students who have taken more advanced biology courses (e.g. MCDB 200, MCDB 310, MB&B 300\/301).", - "description": "Biological systems make sophisticated decisions at many levels. This course explores the molecular and computational underpinnings of how these decisions are made, with a focus on modeling static and dynamic processes in example biological systems. This course is aimed at biology students and teaches the analytic and computational methods needed to model genetic networks and protein signaling pathways. Students present and discuss original papers in class. They learn to model using MatLab in a series of in-class hackathons that illustrate the biological examples discussed in the lectures. Biological systems and processes that are modeled include: (i) gene expression, including the kinetics of RNA and protein synthesis and degradation; (ii) activators and repressors; (iii) the lysogeny\/lysis switch of lambda phage; (iv) network motifs and how they shape response dynamics; (v) cell signaling, MAP kinase networks and cell fate decisions; and (vi) noise in gene expression.", + "syllabus_url": "https://yale.instructure.com/courses/88346/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9993232488632202, + 0.998683512210846, + 0.9988698363304138, + 0.9995073080062866, + 0.9988082647323608, + 0.9984233379364014, + 0.9983254075050354, + 0.9988887906074524, + 0.9988904595375061, + 0.9989017248153687, + 0.9987772107124329 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 9 + }, + "sentiment_distribution": { + "NEGATIVE": 0.18181818181818182, + "POSITIVE": 0.8181818181818182 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8181818181818182 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989240765571594, + 0.9994738698005676, + 0.9947627186775208, + 0.9984633922576904, + 0.9987137317657471, + 0.9995067119598389, + 0.9989306330680847, + 0.9937893748283386, + 0.9961419701576233, + 0.9989323019981384, + 0.9987441301345825, + 0.9988355040550232, + 0.9994699358940125, + 0.9984657764434814, + 0.9988993406295776, + 0.9989219903945923 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989394545555115, + 0.9995017051696777, + 0.9988824725151062, + 0.998924195766449, + 0.9988539218902588, + 0.9995129108428955, + 0.998906135559082, + 0.9990150928497314, + 0.998798131942749, + 0.9988987445831299, + 0.998687207698822, + 0.9989054203033447, + 0.9988765120506287, + 0.9988271594047546 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.7857142857142857, + "NEGATIVE": 0.21428571428571427 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7857142857142857 + ] + }, + "final_label": "POSITIVE", + "final_count": 32, + "final_proportion": 0.7804878048780488, + "final_counts": { + "NEGATIVE": 9, + "POSITIVE": 32 + }, + "final_distribution": { + "NEGATIVE": 0.21951219512195122, + "POSITIVE": 0.7804878048780488 + } + } + }, + { + "season_code": "202303", + "requirements": "Prerequisites: MATH 115 or 116. BIOL 101-104,\u00a0 or with permission of instructors. This course also benefits students who have taken more advanced biology courses (e.g. MCDB 200, MCDB 310, MB&B 300/301).", + "description": "Biological systems make sophisticated decisions at many levels. This course explores the molecular and computational underpinnings of how these decisions are made, with a focus on modeling static and dynamic processes in example biological systems. This course is aimed at biology students and teaches the analytic and computational methods needed to model genetic networks and protein signaling pathways. Students present and discuss original papers in class. They learn to model using MatLab in a series of in-class hackathons that illustrate the biological examples discussed in the lectures. Biological systems and processes that are modeled include: (i) gene expression, including the kinetics of RNA and protein synthesis and degradation; (ii) activators and repressors; (iii) the lysogeny/lysis switch of lambda phage; (iv) network motifs and how they shape response dynamics; (v) cell signaling, MAP kinase networks and cell fate decisions; and (vi) noise in gene expression.", "short_title": "Modeling Biological Systems I", "title": "Modeling Biological Systems I", "school": "YC", @@ -211441,7 +439106,7 @@ "14:30", "15:45", "BASS 405 - Bass Center 405", - "https:\/\/map.yale.edu\/?id=1910#!m\/560102" + "https://map.yale.edu/?id=1910#!m/560102" ] ], "Thursday": [ @@ -211449,7 +439114,7 @@ "14:30", "15:45", "BASS 405 - Bass Center 405", - "https:\/\/map.yale.edu\/?id=1910#!m\/560102" + "https://map.yale.edu/?id=1910#!m/560102" ] ] }, @@ -211460,7 +439125,7 @@ "Sc" ], "flags": [ - "YC NSCI: Molecular\/Cell\/Biol", + "YC NSCI: Molecular/Cell/Biol", "YC NSCI: Quantitative" ], "regnotes": "", @@ -211468,10 +439133,119 @@ "classnotes": "Undergraduates only; graduate students need instructor permission. Graduate students with a physics, mathematics, or engineering background are not allowed in the course and should instead take MCDB 562 Modeling Biological Systems II, which is offered in the spring. Biology graduate students with little to no background in physics, mathematics, or engineering must first contact the instructor.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88784\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88784/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988932013511658, + 0.9985255599021912, + 0.9988605976104736, + 0.998641312122345, + 0.998914361000061, + 0.9989007711410522 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981176853179932, + 0.9986761212348938, + 0.9943771958351135, + 0.9985344409942627, + 0.9989160299301147, + 0.9989138841629028, + 0.9989339709281921, + 0.9988695979118347, + 0.9775633811950684 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 8 + }, + "sentiment_distribution": { + "NEGATIVE": 0.1111111111111111, + "POSITIVE": 0.8888888888888888 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9911907911300659, + 0.9986100196838379, + 0.9853668212890625, + 0.9989172220230103, + 0.9989176988601685, + 0.9988948702812195 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 0.9523809523809523, + "final_counts": { + "POSITIVE": 20, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9523809523809523, + "NEGATIVE": 0.047619047619047616 + } + } }, { "season_code": "202303", @@ -211530,15 +439304,122 @@ "classnotes": "Laboratory for undergraduate students only. ", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88352\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88352/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9981562495231628, + 0.9988611936569214, + 0.9987521171569824, + 0.99875807762146, + 0.9987064599990845, + 0.9812204837799072 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9984692931175232, + 0.9988975524902344, + 0.9995017051696777, + 0.9960298538208008, + 0.9989047050476074, + 0.9978870749473572, + 0.9987438321113586, + 0.9995044469833374 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989027976989746, + 0.9990025162696838, + 0.9988448619842529, + 0.9978062510490417, + 0.998845100402832, + 0.9994982481002808 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 0.75, + "final_counts": { + "POSITIVE": 15, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + } + } }, { "season_code": "202303", "requirements": "Enrollment limited. Special registration procedures apply; students should contact the instructor during January of the year you intend to take the course. Prerequisite; MCDB 342L or permission of\u00a0instructor.", - "description": "Continuation of MCDB 342L to more advanced projects in molecular and cell biology, such as microarray screening and analysis, next-generation DNA sequencing, or CRISPR\/Cas editing of genes. Laboratories meet twice a week for the second half of the term. 0.5 Yale College course credit(s)", + "description": "Continuation of MCDB 342L to more advanced projects in molecular and cell biology, such as microarray screening and analysis, next-generation DNA sequencing, or CRISPR/Cas editing of genes. Laboratories meet twice a week for the second half of the term. 0.5 Yale College course credit(s)", "short_title": "Laboratory in Nucleic Acids II", "title": "Laboratory in Nucleic Acids II", "school": "YC", @@ -211592,10 +439473,91 @@ "classnotes": "Laboratory for undergraduate students only. ", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88357\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88357/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987201690673828 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989326596260071, + 0.995919406414032 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989331364631653, + 0.9988802075386047, + 0.9988462924957275, + 0.9985854625701904, + 0.997117280960083 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 8, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 8 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -211636,7 +439598,7 @@ "11:35", "12:50", "YSB 352 - Yale Science Building 352", - "https:\/\/map.yale.edu\/?id=1910#!m\/563700" + "https://map.yale.edu/?id=1910#!m/563700" ] ], "Friday": [ @@ -211644,7 +439606,7 @@ "11:35", "12:50", "YSB 352 - Yale Science Building 352", - "https:\/\/map.yale.edu\/?id=1910#!m\/563700" + "https://map.yale.edu/?id=1910#!m/563700" ] ] }, @@ -211660,10 +439622,97 @@ "classnotes": "Prerequisite: Introductory courses (BIOL101-104) and two MCDB200-level courses (strongly recommended: MCDB200 and MCDB202) or instructor permission.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88361\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88361/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986675977706909, + 0.9986782670021057, + 0.998724639415741 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9785183668136597, + 0.9987537860870361, + 0.9988589286804199, + 0.9989319443702698 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987688660621643, + 0.9988111257553101, + 0.9989140033721924, + 0.9989286065101624 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 11 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -211700,7 +439749,7 @@ "9:25", "11:15", "TC 204 - Trumbull College 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/563697" + "https://map.yale.edu/?id=1910#!m/563697" ] ] }, @@ -211714,15 +439763,110 @@ "classnotes": "In-depth discussion of the cytoskeleton, proteins associated with the cytoskeleton, and diseases that implicate members of these protein families. \n\nPreference given to seniors in the MCDB major. \n\nPrerequisites:\nBIOL 101-104 and at least one MCDB 200-level course. \u200b", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89161\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89161/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "Prerequisites: MCDB 205, PHYS 170\/171 or above, either\u00a0CHEM 161\/165\u00a0or above; with\u00a0CHEM 134L,\u00a0136L or permission from the instructor.", - "description": "A rigorous study of principles and pertinent modalities involved in modern light microscopy. The overall course learning objective is to develop competencies involving advanced light microscopy applications common to multidisciplinary research. Laboratory modules coupled with critical analysis of pertinent research papers cover all major light microscope methods\u2014from the basics (principles of optics, image contrast, detector types, fluorescence, 1P and 2P excitation, widefield, confocal principle, TIRF), to more recent advances, including: superresolution, lightsheet, FLIM\/FRET, motion analysis and force measurements. This course is capped at 8 students to promote interactions and ensure a favorable hands-on experience. Priority for enrollment is given to students who are planning on using these techniques in their independent research.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985232949256897, + 0.9982777833938599, + 0.9974786639213562, + 0.9988324046134949, + 0.9986120462417603 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9409205913543701, + 0.9989234805107117, + 0.9989151954650879 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987518787384033, + 0.9667876958847046, + 0.9974592328071594, + 0.9989155530929565, + 0.9989374279975891, + 0.9989210367202759 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 0.8571428571428571, + "final_counts": { + "POSITIVE": 12, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + } + } + }, + { + "season_code": "202303", + "requirements": "Prerequisites: MCDB 205, PHYS 170/171 or above, either\u00a0CHEM 161/165\u00a0or above; with\u00a0CHEM 134L,\u00a0136L or permission from the instructor.", + "description": "A rigorous study of principles and pertinent modalities involved in modern light microscopy. The overall course learning objective is to develop competencies involving advanced light microscopy applications common to multidisciplinary research. Laboratory modules coupled with critical analysis of pertinent research papers cover all major light microscope methods\u2014from the basics (principles of optics, image contrast, detector types, fluorescence, 1P and 2P excitation, widefield, confocal principle, TIRF), to more recent advances, including: superresolution, lightsheet, FLIM/FRET, motion analysis and force measurements. This course is capped at 8 students to promote interactions and ensure a favorable hands-on experience. Priority for enrollment is given to students who are planning on using these techniques in their independent research.", "short_title": "Light Microscopy: Techniques ...", "title": "Light Microscopy: Techniques and Image Analysis", "school": "YC", @@ -211755,7 +439899,7 @@ "13:30", "16:30", "YSB C105 - Yale Science Building C105", - "https:\/\/map.yale.edu\/?id=1910#!m\/563700" + "https://map.yale.edu/?id=1910#!m/563700" ] ], "Wednesday": [ @@ -211763,7 +439907,7 @@ "13:30", "16:30", "YSB C105 - Yale Science Building C105", - "https:\/\/map.yale.edu\/?id=1910#!m\/563700" + "https://map.yale.edu/?id=1910#!m/563700" ] ] }, @@ -211777,10 +439921,93 @@ "classnotes": "Students must contact Joseph.Wolenski@yale.edu prior to the start of the fall term to determine suitability for enrollment. Preference to MCDB and MB&B majors, but Chemistry and Physics majors are encouraged to apply.", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89231\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89231/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989235997200012, + 0.9988644123077393, + 0.9974601864814758 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989271759986877, + 0.9989346861839294, + 0.998874843120575 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989025592803955, + 0.9989216327667236, + 0.9983476400375366 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 9 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -211824,7 +440051,7 @@ "9:25", "11:15", "YSB 352 - Yale Science Building 352", - "https:\/\/map.yale.edu\/?id=1910#!m\/563700" + "https://map.yale.edu/?id=1910#!m/563700" ] ] }, @@ -211838,10 +440065,117 @@ "classnotes": "The course will be limited to graduate students or undergraduate students having completed the introductory courses (BIOL101-104) and two MCDB200-level courses (or instructor permission).", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88366\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88366/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9953343272209167, + 0.9988288283348083, + 0.9971684813499451, + 0.9988923668861389, + 0.9989326596260071, + 0.9988914132118225 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988447427749634, + 0.9985038042068481, + 0.995853066444397, + 0.9988089799880981, + 0.9988425970077515, + 0.998914361000061, + 0.9989247918128967 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983256459236145, + 0.99883633852005, + 0.9989216327667236, + 0.9970096349716187, + 0.9989359974861145, + 0.9989134073257446, + 0.9988991022109985, + 0.9988752007484436 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 21, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 21 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -211882,7 +440216,7 @@ "11:35", "12:50", "TAC N107 - The Anlyan Center N107", - "https:\/\/map.yale.edu\/?id=1910#!m\/563380" + "https://map.yale.edu/?id=1910#!m/563380" ] ], "Wednesday": [ @@ -211890,7 +440224,7 @@ "11:35", "12:50", "TAC N107 - The Anlyan Center N107", - "https:\/\/map.yale.edu\/?id=1910#!m\/563380" + "https://map.yale.edu/?id=1910#!m/563380" ] ] }, @@ -211904,15 +440238,140 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89500\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89500/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "", - "description": "The development of the immune system. Cellular and molecular mechanisms of immune recognition. Effector responses against pathogens. Immunologic memory and vaccines. Human diseases including allergy, autoimmunity, immunodeficiency, and HIV\/AIDS. After MCDB 300.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984577894210815, + 0.9988810420036316, + 0.9957754015922546, + 0.998795747756958, + 0.998793363571167, + 0.9979946613311768, + 0.9842560887336731, + 0.9963437914848328, + 0.9892461895942688, + 0.9987061023712158 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986854195594788, + 0.9976736903190613, + 0.9987643957138062, + 0.9987610578536987, + 0.9988402724266052, + 0.9988735318183899, + 0.998514711856842, + 0.9988810420036316, + 0.9853230714797974, + 0.9994864463806152, + 0.9987854361534119 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8181818181818182, + "NEGATIVE": 0.18181818181818182 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8181818181818182 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987319111824036, + 0.9979998469352722, + 0.9995076656341553, + 0.9974592328071594, + 0.9989075660705566, + 0.997117280960083, + 0.998001754283905, + 0.9986473917961121 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.625, + "NEGATIVE": 0.375 + }, + "sentiment_overall": [ + "POSITIVE", + 0.625 + ] + }, + "final_label": "POSITIVE", + "final_count": 24, + "final_proportion": 0.8275862068965517, + "final_counts": { + "POSITIVE": 24, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.8275862068965517, + "NEGATIVE": 0.1724137931034483 + } + } + }, + { + "season_code": "202303", + "requirements": "", + "description": "The development of the immune system. Cellular and molecular mechanisms of immune recognition. Effector responses against pathogens. Immunologic memory and vaccines. Human diseases including allergy, autoimmunity, immunodeficiency, and HIV/AIDS. After MCDB 300.", "short_title": "Biology of the Immune System", "title": "Biology of the Immune System", "school": "YC", @@ -212004,7 +440463,7 @@ "9:25", "10:15", "WLH 119 - William L. Harkness Hall 119", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -212012,7 +440471,7 @@ "9:25", "10:15", "WLH 119 - William L. Harkness Hall 119", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Friday": [ @@ -212020,7 +440479,7 @@ "9:25", "10:15", "WLH 119 - William L. Harkness Hall 119", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -212036,15 +440495,154 @@ "classnotes": "", "final_exam": "Thursday, December 14, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90345\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "", - "description": "The development of the immune system. Cellular and molecular mechanisms of immune recognition. Effector responses against pathogens. Immunologic memory and vaccines. Human diseases including allergy, autoimmunity, immunodeficiency, and HIV\/AIDS. After MCDB 300.", + "syllabus_url": "https://yale.instructure.com/courses/90345/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989323019981384, + 0.99882572889328, + 0.9862096905708313, + 0.9987843632698059, + 0.998793363571167, + 0.9988719820976257, + 0.9989079236984253, + 0.9986584186553955, + 0.9989327788352966, + 0.9624254703521729, + 0.9966232776641846, + 0.9984096884727478 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9166666666666666 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989351630210876, + 0.9988769888877869, + 0.998191773891449, + 0.998806357383728, + 0.997580885887146, + 0.9914201498031616, + 0.9995098114013672, + 0.9959096908569336, + 0.998777449131012, + 0.9989198446273804, + 0.9985442161560059, + 0.9987282156944275, + 0.9942849278450012 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.7692307692307693, + "NEGATIVE": 0.23076923076923078 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7692307692307693 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989050626754761, + 0.9988560676574707, + 0.9980132579803467, + 0.9989252686500549, + 0.9984480142593384, + 0.9990231990814209, + 0.9994864463806152, + 0.9939033389091492, + 0.998900294303894, + 0.9989205598831177, + 0.9986580610275269 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8181818181818182, + "NEGATIVE": 0.18181818181818182 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8181818181818182 + ] + }, + "final_label": "POSITIVE", + "final_count": 30, + "final_proportion": 0.8333333333333334, + "final_counts": { + "POSITIVE": 30, + "NEGATIVE": 6 + }, + "final_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + } + } + }, + { + "season_code": "202303", + "requirements": "", + "description": "The development of the immune system. Cellular and molecular mechanisms of immune recognition. Effector responses against pathogens. Immunologic memory and vaccines. Human diseases including allergy, autoimmunity, immunodeficiency, and HIV/AIDS. After MCDB 300.", "short_title": "Biology of the Immune System", "title": "Biology of the Immune System", "school": "YC", @@ -212105,12 +440703,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "The development of the immune system. Cellular and molecular mechanisms of immune recognition. Effector responses against pathogens. Immunologic memory and vaccines. Human diseases including allergy, autoimmunity, immunodeficiency, and HIV\/AIDS. After MCDB 300.", + "description": "The development of the immune system. Cellular and molecular mechanisms of immune recognition. Effector responses against pathogens. Immunologic memory and vaccines. Human diseases including allergy, autoimmunity, immunodeficiency, and HIV/AIDS. After MCDB 300.", "short_title": "Biology of the Immune System", "title": "Biology of the Immune System", "school": "YC", @@ -212171,12 +440797,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "The development of the immune system. Cellular and molecular mechanisms of immune recognition. Effector responses against pathogens. Immunologic memory and vaccines. Human diseases including allergy, autoimmunity, immunodeficiency, and HIV\/AIDS. After MCDB 300.", + "description": "The development of the immune system. Cellular and molecular mechanisms of immune recognition. Effector responses against pathogens. Immunologic memory and vaccines. Human diseases including allergy, autoimmunity, immunodeficiency, and HIV/AIDS. After MCDB 300.", "short_title": "Biology of the Immune System", "title": "Biology of the Immune System", "school": "YC", @@ -212237,12 +440891,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "The development of the immune system. Cellular and molecular mechanisms of immune recognition. Effector responses against pathogens. Immunologic memory and vaccines. Human diseases including allergy, autoimmunity, immunodeficiency, and HIV\/AIDS. After MCDB 300.", + "description": "The development of the immune system. Cellular and molecular mechanisms of immune recognition. Effector responses against pathogens. Immunologic memory and vaccines. Human diseases including allergy, autoimmunity, immunodeficiency, and HIV/AIDS. After MCDB 300.", "short_title": "Biology of the Immune System", "title": "Biology of the Immune System", "school": "YC", @@ -212303,12 +440985,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "The development of the immune system. Cellular and molecular mechanisms of immune recognition. Effector responses against pathogens. Immunologic memory and vaccines. Human diseases including allergy, autoimmunity, immunodeficiency, and HIV\/AIDS. After MCDB 300.", + "description": "The development of the immune system. Cellular and molecular mechanisms of immune recognition. Effector responses against pathogens. Immunologic memory and vaccines. Human diseases including allergy, autoimmunity, immunodeficiency, and HIV/AIDS. After MCDB 300.", "short_title": "Biology of the Immune System", "title": "Biology of the Immune System", "school": "YC", @@ -212369,7 +441079,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -212415,15 +441153,43 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88435\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88435/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "Fulfills the senior requirement for the B.A. degree if taken in the senior year.", - "description": "Individual or small-group study for qualified students who wish to investigate a broad area of experimental biology not presently covered by regular courses. A student must be sponsored by a Yale faculty member, who sets the requirements. The course must include one or more written examinations and\/or a term paper. Intended to be a supplementary course and, therefore, to have weekly or biweekly discussion meetings between the student and the sponsoring faculty member. To register, the student must prepare a form, which is available at\u00a0http:\/\/mcdb.yale.edu\/forms as well as on the course site on Classes*v2, and a written plan of study with bibliography, approved by the faculty research adviser. The form and proposal must be uploaded to Classes*v2 by the end of the second week of classes. The final paper is due in the hands of the sponsoring faculty member, with a copy to the course instructor, by the last day of classes. In special cases, with approval of the director of undergraduate studies, this course may be elected for more than one term, but only one term may count as an elective toward the major.", + "description": "Individual or small-group study for qualified students who wish to investigate a broad area of experimental biology not presently covered by regular courses. A student must be sponsored by a Yale faculty member, who sets the requirements. The course must include one or more written examinations and/or a term paper. Intended to be a supplementary course and, therefore, to have weekly or biweekly discussion meetings between the student and the sponsoring faculty member. To register, the student must prepare a form, which is available at\u00a0http://mcdb.yale.edu/forms as well as on the course site on Classes*v2, and a written plan of study with bibliography, approved by the faculty research adviser. The form and proposal must be uploaded to Classes*v2 by the end of the second week of classes. The final paper is due in the hands of the sponsoring faculty member, with a copy to the course instructor, by the last day of classes. In special cases, with approval of the director of undergraduate studies, this course may be elected for more than one term, but only one term may count as an elective toward the major.", "short_title": "Tutorial in Molecular, Cellul...", "title": "Tutorial in Molecular, Cellular, and Developmental Biology", "school": "YC", @@ -212461,12 +441227,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "Research project under faculty supervision taken Pass\/Fail. This is the only independent research course available to underclassmen. Students are expected to spend approximately ten hours per week in the laboratory. To register, the student must submit a form, which is available from the course site on Canvas@Yale, and a written plan of study with bibliography, approved by the faculty research adviser. The form and proposal must be uploaded to Canvas@Yale by the end of the second week of classes. A final research report is required at the end of the term. Students who take this course more than once must reapply each term. Guidelines for the course should be obtained from the office of the director of undergraduate studies or downloaded from the Canvas@Yale server.", + "description": "Research project under faculty supervision taken Pass/Fail. This is the only independent research course available to underclassmen. Students are expected to spend approximately ten hours per week in the laboratory. To register, the student must submit a form, which is available from the course site on Canvas@Yale, and a written plan of study with bibliography, approved by the faculty research adviser. The form and proposal must be uploaded to Canvas@Yale by the end of the second week of classes. A final research report is required at the end of the term. Students who take this course more than once must reapply each term. Guidelines for the course should be obtained from the office of the director of undergraduate studies or downloaded from the Canvas@Yale server.", "short_title": "Independent Research", "title": "Independent Research", "school": "YC", @@ -212504,10 +441298,105 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88371\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88371/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988559484481812, + 0.9986968636512756, + 0.998880922794342, + 0.9988515377044678, + 0.9978043437004089 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998431384563446, + 0.9952385425567627, + 0.9989162683486938, + 0.9986338019371033, + 0.9984177350997925 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.99864262342453, + 0.9974499344825745, + 0.9989029169082642, + 0.9988901019096375, + 0.998674750328064 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 15 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -212550,10 +441439,17 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88376\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88376/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -212596,10 +441492,121 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88380\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88380/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987726807594299, + 0.9987795948982239, + 0.9973305463790894, + 0.9988476037979126, + 0.9987459182739258, + 0.998376727104187 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9640947580337524, + 0.9994995594024658, + 0.9988585710525513, + 0.9981811046600342, + 0.9973305463790894, + 0.9994949102401733, + 0.9914250373840332, + 0.9983170032501221, + 0.5254104733467102, + 0.9120535254478455, + 0.99772709608078 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 6 + }, + "sentiment_distribution": { + "POSITIVE": 0.45454545454545453, + "NEGATIVE": 0.5454545454545454 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982853531837463, + 0.9973305463790894, + 0.9970636963844299, + 0.9988349080085754, + 0.9971857666969299 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 0.7272727272727273, + "final_counts": { + "POSITIVE": 16, + "NEGATIVE": 6 + }, + "final_distribution": { + "POSITIVE": 0.7272727272727273, + "NEGATIVE": 0.2727272727272727 + } + } }, { "season_code": "202303", @@ -212642,10 +441649,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88384\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88384/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -212688,10 +441723,103 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88388\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88388/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.998702883720398, + 0.977603018283844, + 0.9872679114341736 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9984275102615356, + 0.997580885887146, + 0.9989801049232483, + 0.9982529282569885, + 0.9994727969169617 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.2, + "NEGATIVE": 0.8 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987837672233582, + 0.9983674883842468, + 0.9982746839523315, + 0.9973528385162354, + 0.9983956217765808 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 8, + "final_proportion": 0.6153846153846154, + "final_counts": { + "POSITIVE": 8, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.6153846153846154, + "NEGATIVE": 0.38461538461538464 + } + } }, { "season_code": "202303", @@ -212734,10 +441862,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88393\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88393/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -212808,15 +441964,222 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88819\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88819/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "", - "description": "The development of the immune system. Cellular and molecular mechanisms of immune recognition. Effector responses against pathogens. Immunologic memory and vaccines. Human diseases including allergy, autoimmunity, cancer, immunodeficiency, HIV\/AIDS.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986960291862488, + 0.9985559582710266, + 0.9982325434684753, + 0.9988131523132324, + 0.998867392539978, + 0.9987497329711914, + 0.9987788796424866, + 0.9987605810165405, + 0.9982513785362244, + 0.998813271522522, + 0.9984017014503479, + 0.9988995790481567, + 0.9988046884536743, + 0.998624324798584, + 0.9987528324127197, + 0.9960021376609802, + 0.9968575239181519, + 0.9987786412239075, + 0.998595654964447, + 0.9986783862113953 + ], + "sentiment_counts": { + "POSITIVE": 20, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987408518791199, + 0.9985047578811646, + 0.9962441921234131, + 0.9940443634986877, + 0.9828140735626221, + 0.9972666501998901, + 0.9988413453102112, + 0.9989017248153687, + 0.9988958835601807, + 0.9989025592803955, + 0.9982696771621704, + 0.9988996982574463, + 0.9995028972625732, + 0.991534948348999, + 0.9988479614257812, + 0.998833954334259, + 0.998845100402832, + 0.9902716279029846, + 0.9987928867340088, + 0.9988393187522888, + 0.9988351464271545, + 0.9988656044006348, + 0.9988148212432861, + 0.9882069230079651, + 0.9975110292434692 + ], + "sentiment_counts": { + "POSITIVE": 20, + "NEGATIVE": 5 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9959800243377686, + 0.9892011880874634, + 0.9993071556091309, + 0.8197240829467773, + 0.9974592328071594, + 0.9950361847877502, + 0.998599112033844, + 0.9943869113922119, + 0.9989386200904846, + 0.9988058805465698, + 0.9987941980361938, + 0.9988412261009216, + 0.9988968372344971, + 0.9958109855651855, + 0.9989206790924072, + 0.9968640804290771, + 0.9989198446273804, + 0.998873770236969, + 0.9988381266593933, + 0.998514711856842, + 0.9989145994186401, + 0.9988763928413391, + 0.9988619089126587, + 0.9987030029296875, + 0.9921451210975647 + ], + "sentiment_counts": { + "POSITIVE": 18, + "NEGATIVE": 7 + }, + "sentiment_distribution": { + "POSITIVE": 0.72, + "NEGATIVE": 0.28 + }, + "sentiment_overall": [ + "POSITIVE", + 0.72 + ] + }, + "final_label": "POSITIVE", + "final_count": 58, + "final_proportion": 0.8285714285714286, + "final_counts": { + "POSITIVE": 58, + "NEGATIVE": 12 + }, + "final_distribution": { + "POSITIVE": 0.8285714285714286, + "NEGATIVE": 0.17142857142857143 + } + } + }, + { + "season_code": "202303", + "requirements": "", + "description": "The development of the immune system. Cellular and molecular mechanisms of immune recognition. Effector responses against pathogens. Immunologic memory and vaccines. Human diseases including allergy, autoimmunity, cancer, immunodeficiency, HIV/AIDS.", "short_title": "Biology of the Immune System", "title": "Biology of the Immune System", "school": "GS", @@ -212908,7 +442271,7 @@ "9:25", "10:15", "WLH 119 - William L. Harkness Hall 119", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -212916,7 +442279,7 @@ "9:25", "10:15", "WLH 119 - William L. Harkness Hall 119", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Friday": [ @@ -212924,7 +442287,7 @@ "9:25", "10:15", "WLH 119 - William L. Harkness Hall 119", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -212938,10 +442301,149 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90345\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90345/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989323019981384, + 0.99882572889328, + 0.9862096905708313, + 0.9987843632698059, + 0.998793363571167, + 0.9988719820976257, + 0.9989079236984253, + 0.9986584186553955, + 0.9989327788352966, + 0.9624254703521729, + 0.9966232776641846, + 0.9984096884727478 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9166666666666666 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989351630210876, + 0.9988769888877869, + 0.998191773891449, + 0.998806357383728, + 0.997580885887146, + 0.9914201498031616, + 0.9995098114013672, + 0.9959096908569336, + 0.998777449131012, + 0.9989198446273804, + 0.9985442161560059, + 0.9987282156944275, + 0.9942849278450012 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.7692307692307693, + "NEGATIVE": 0.23076923076923078 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7692307692307693 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989050626754761, + 0.9988560676574707, + 0.9980132579803467, + 0.9989252686500549, + 0.9984480142593384, + 0.9990231990814209, + 0.9994864463806152, + 0.9939033389091492, + 0.998900294303894, + 0.9989205598831177, + 0.9986580610275269 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8181818181818182, + "NEGATIVE": 0.18181818181818182 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8181818181818182 + ] + }, + "final_label": "POSITIVE", + "final_count": 30, + "final_proportion": 0.8333333333333334, + "final_counts": { + "POSITIVE": 30, + "NEGATIVE": 6 + }, + "final_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + } + } }, { "season_code": "202303", @@ -212987,7 +442489,7 @@ "9:25", "10:15", "DAVIES AUD - Davies Auditorium, Becton Ctr AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ], "Wednesday": [ @@ -212995,7 +442497,7 @@ "9:25", "10:15", "DAVIES AUD - Davies Auditorium, Becton Ctr AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ], "Friday": [ @@ -213003,7 +442505,7 @@ "9:25", "10:15", "DAVIES AUD - Davies Auditorium, Becton Ctr AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ] }, @@ -213017,15 +442519,248 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88304\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "Prerequisites: MATH 115\u00a0or\u00a0116,\u00a0BIOL 101\u2013104, or with permission of instructors. This course also benefits students who have taken more advanced biology courses (e.g.\u00a0MCDB 200,\u00a0MCDB 310,\u00a0MB&B 300\/301).", - "description": "Biological systems make sophisticated decisions at many levels. This course explores the molecular and computational underpinnings of how these decisions are made, with a focus on modeling static and dynamic processes in example biological systems. This course is aimed at biology students and teaches the analytic and computational methods needed to model genetic networks and protein signaling pathways. Students present and discuss original papers in class. They learn to model using MatLab in a series of in-class hackathons that illustrate the biological examples discussed in the lectures. Biological systems and processes that are modeled include: (i) gene expression, including the kinetics of RNA and protein synthesis and degradation; (ii) activators and repressors; (iii) the lysogeny\/lysis switch of lambda phage; (iv) network motifs and how they shape response dynamics; (v) cell signaling, MAP kinase networks and cell fate decisions; and (vi) noise in gene expression.", + "syllabus_url": "https://yale.instructure.com/courses/88304/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989400506019592, + 0.9987356066703796, + 0.9988401532173157, + 0.9988483190536499, + 0.9987340569496155, + 0.9989243149757385, + 0.9981581568717957, + 0.9988138675689697, + 0.998855710029602, + 0.9988767504692078, + 0.997672975063324, + 0.9985867738723755, + 0.9987708926200867, + 0.9985735416412354, + 0.9977019429206848, + 0.9988190531730652, + 0.9987074136734009, + 0.9989060163497925, + 0.9975103139877319, + 0.9987026453018188, + 0.9986618757247925, + 0.9988909363746643, + 0.9978437423706055, + 0.9983353018760681, + 0.9985999464988708 + ], + "sentiment_counts": { + "POSITIVE": 25, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998848557472229, + 0.9993402361869812, + 0.9987609386444092, + 0.9989367127418518, + 0.9985036849975586, + 0.9989107847213745, + 0.9988788962364197, + 0.9987718462944031, + 0.9979021549224854, + 0.9987320303916931, + 0.998915433883667, + 0.9988909363746643, + 0.9995081424713135, + 0.9951971173286438, + 0.9987885355949402, + 0.9956823587417603, + 0.9983001351356506, + 0.9929627776145935, + 0.996518611907959, + 0.9988659620285034, + 0.9989122152328491, + 0.9994854927062988, + 0.9989089965820312, + 0.9989018440246582, + 0.9994179010391235, + 0.997342050075531, + 0.9988390803337097, + 0.9976304769515991, + 0.9986839890480042, + 0.9988480806350708 + ], + "sentiment_counts": { + "POSITIVE": 23, + "NEGATIVE": 7 + }, + "sentiment_distribution": { + "POSITIVE": 0.7666666666666667, + "NEGATIVE": 0.23333333333333334 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7666666666666667 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9943073391914368, + 0.9994959831237793, + 0.9987064599990845, + 0.9989296793937683, + 0.9986969828605652, + 0.9989004135131836, + 0.9988976716995239, + 0.9984064698219299, + 0.9987874627113342, + 0.9994966983795166, + 0.9988901019096375, + 0.9994984865188599, + 0.9989144802093506, + 0.9987828135490417, + 0.997117280960083, + 0.9971362352371216, + 0.9988127946853638, + 0.9988106489181519, + 0.9988019466400146, + 0.9968705773353577, + 0.9987626075744629, + 0.9989251494407654, + 0.9989131689071655, + 0.998771607875824, + 0.9962942004203796, + 0.9986621141433716, + 0.9647520780563354, + 0.9957173466682434 + ], + "sentiment_counts": { + "NEGATIVE": 7, + "POSITIVE": 21 + }, + "sentiment_distribution": { + "NEGATIVE": 0.25, + "POSITIVE": 0.75 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 69, + "final_proportion": 0.8313253012048193, + "final_counts": { + "POSITIVE": 69, + "NEGATIVE": 14 + }, + "final_distribution": { + "POSITIVE": 0.8313253012048193, + "NEGATIVE": 0.1686746987951807 + } + } + }, + { + "season_code": "202303", + "requirements": "Prerequisites: MATH 115\u00a0or\u00a0116,\u00a0BIOL 101\u2013104, or with permission of instructors. This course also benefits students who have taken more advanced biology courses (e.g.\u00a0MCDB 200,\u00a0MCDB 310,\u00a0MB&B 300/301).", + "description": "Biological systems make sophisticated decisions at many levels. This course explores the molecular and computational underpinnings of how these decisions are made, with a focus on modeling static and dynamic processes in example biological systems. This course is aimed at biology students and teaches the analytic and computational methods needed to model genetic networks and protein signaling pathways. Students present and discuss original papers in class. They learn to model using MatLab in a series of in-class hackathons that illustrate the biological examples discussed in the lectures. Biological systems and processes that are modeled include: (i) gene expression, including the kinetics of RNA and protein synthesis and degradation; (ii) activators and repressors; (iii) the lysogeny/lysis switch of lambda phage; (iv) network motifs and how they shape response dynamics; (v) cell signaling, MAP kinase networks and cell fate decisions; and (vi) noise in gene expression.", "short_title": "Modeling Biological Systems I", "title": "Modeling Biological Systems I", "school": "GS", @@ -213066,7 +442801,7 @@ "14:30", "15:45", "BASS 405 - Bass Center 405", - "https:\/\/map.yale.edu\/?id=1910#!m\/560102" + "https://map.yale.edu/?id=1910#!m/560102" ] ], "Thursday": [ @@ -213074,7 +442809,7 @@ "14:30", "15:45", "BASS 405 - Bass Center 405", - "https:\/\/map.yale.edu\/?id=1910#!m\/560102" + "https://map.yale.edu/?id=1910#!m/560102" ] ] }, @@ -213086,10 +442821,119 @@ "classnotes": "Undergraduates only; graduate students need instructor permission. Graduate students with a physics, mathematics, or engineering background are not allowed in the course and should instead take MCDB 562 Modeling Biological Systems II, which is offered in the spring. Biology graduate students with little to no background in physics, mathematics, or engineering must first contact the instructor.", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88784\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88784/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988932013511658, + 0.9985255599021912, + 0.9988605976104736, + 0.998641312122345, + 0.998914361000061, + 0.9989007711410522 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981176853179932, + 0.9986761212348938, + 0.9943771958351135, + 0.9985344409942627, + 0.9989160299301147, + 0.9989138841629028, + 0.9989339709281921, + 0.9988695979118347, + 0.9775633811950684 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 8 + }, + "sentiment_distribution": { + "NEGATIVE": 0.1111111111111111, + "POSITIVE": 0.8888888888888888 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9911907911300659, + 0.9986100196838379, + 0.9853668212890625, + 0.9989172220230103, + 0.9989176988601685, + 0.9988948702812195 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 0.9523809523809523, + "final_counts": { + "POSITIVE": 20, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9523809523809523, + "NEGATIVE": 0.047619047619047616 + } + } }, { "season_code": "202303", @@ -213129,7 +442973,7 @@ "14:30", "15:45", "HLH17 03 - 17 Hillhouse Avenue 03", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Wednesday": [ @@ -213137,7 +442981,7 @@ "14:30", "15:45", "HLH17 03 - 17 Hillhouse Avenue 03", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -213149,17 +442993,45 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88768\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88768/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "A four-credit, yearlong course (two credits each term) that is similar to MCDB 495\/496 and is taken during the senior year. During this course, students give an oral presentation describing their work. At the end of the course, students are expected to present their work to the department in the form of a poster presentation. In addition, students are expected to give an oral thesis defense, followed by a comprehensive examination of the thesis conducted by the thesis committee. Upon successful completion of this examination, as well as other requirements, the student is awarded the combined B.S.\/M.S. degree. Required of students in the joint B.S.\/M.S. program with Yale College.", + "description": "A four-credit, yearlong course (two credits each term) that is similar to MCDB 495/496 and is taken during the senior year. During this course, students give an oral presentation describing their work. At the end of the course, students are expected to present their work to the department in the form of a poster presentation. In addition, students are expected to give an oral thesis defense, followed by a comprehensive examination of the thesis conducted by the thesis committee. Upon successful completion of this examination, as well as other requirements, the student is awarded the combined B.S./M.S. degree. Required of students in the joint B.S./M.S. program with Yale College.", "short_title": "Intensive Research in MCDB fo...", - "title": "Intensive Research in MCDB for B.S.\/M.S. Candidates", + "title": "Intensive Research in MCDB for B.S./M.S. Candidates", "school": "GS", "credits": 2.0, "extra_info": "ACTIVE", @@ -213195,17 +443067,45 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89509\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89509/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "A four-credit, yearlong course (two credits each term) that is similar to MCDB 495\/496 and is taken during the senior year. During this course, students give an oral presentation describing their work. At the end of the course, students are expected to present their work to the department in the form of a poster presentation. In addition, students are expected to give an oral thesis defense, followed by a comprehensive examination of the thesis conducted by the thesis committee. Upon successful completion of this examination, as well as other requirements, the student is awarded the combined B.S.\/M.S. degree. Required of students in the joint B.S.\/M.S. program with Yale College.", + "description": "A four-credit, yearlong course (two credits each term) that is similar to MCDB 495/496 and is taken during the senior year. During this course, students give an oral presentation describing their work. At the end of the course, students are expected to present their work to the department in the form of a poster presentation. In addition, students are expected to give an oral thesis defense, followed by a comprehensive examination of the thesis conducted by the thesis committee. Upon successful completion of this examination, as well as other requirements, the student is awarded the combined B.S./M.S. degree. Required of students in the joint B.S./M.S. program with Yale College.", "short_title": "Intensive Research in MCDB fo...", - "title": "Intensive Research in MCDB for B.S.\/M.S. Candidates", + "title": "Intensive Research in MCDB for B.S./M.S. Candidates", "school": "GS", "credits": 2.0, "extra_info": "ACTIVE", @@ -213241,10 +443141,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89510\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89510/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -213339,10 +443267,38 @@ "classnotes": "Undergraduate Prerequisites: This is a graduate level cell biology class. Any Yale undergraduates wishing to enroll must have already taken MCDB 205. In addition, undergraduates are strongly encouraged to first reach out to the course directors prior to enrollment.", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89571\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89571/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -213422,10 +443378,38 @@ "classnotes": "Undergraduate Prerequisites: This is a graduate level cell biology class. Any Yale undergraduates wishing to enroll must have already taken MCDB 205. In addition, undergraduates are strongly encouraged to first reach out to the course directors prior to enrollment.", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89853\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89853/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -213466,7 +443450,7 @@ "11:35", "12:50", "TAC N107 - The Anlyan Center N107", - "https:\/\/map.yale.edu\/?id=1910#!m\/563380" + "https://map.yale.edu/?id=1910#!m/563380" ] ], "Wednesday": [ @@ -213474,7 +443458,7 @@ "11:35", "12:50", "TAC N107 - The Anlyan Center N107", - "https:\/\/map.yale.edu\/?id=1910#!m\/563380" + "https://map.yale.edu/?id=1910#!m/563380" ] ] }, @@ -213486,10 +443470,135 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89500\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89500/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984577894210815, + 0.9988810420036316, + 0.9957754015922546, + 0.998795747756958, + 0.998793363571167, + 0.9979946613311768, + 0.9842560887336731, + 0.9963437914848328, + 0.9892461895942688, + 0.9987061023712158 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986854195594788, + 0.9976736903190613, + 0.9987643957138062, + 0.9987610578536987, + 0.9988402724266052, + 0.9988735318183899, + 0.998514711856842, + 0.9988810420036316, + 0.9853230714797974, + 0.9994864463806152, + 0.9987854361534119 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8181818181818182, + "NEGATIVE": 0.18181818181818182 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8181818181818182 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987319111824036, + 0.9979998469352722, + 0.9995076656341553, + 0.9974592328071594, + 0.9989075660705566, + 0.997117280960083, + 0.998001754283905, + 0.9986473917961121 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.625, + "NEGATIVE": 0.375 + }, + "sentiment_overall": [ + "POSITIVE", + 0.625 + ] + }, + "final_label": "POSITIVE", + "final_count": 24, + "final_proportion": 0.8275862068965517, + "final_counts": { + "POSITIVE": 24, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.8275862068965517, + "NEGATIVE": 0.1724137931034483 + } + } }, { "season_code": "202303", @@ -213530,7 +443639,7 @@ "11:35", "12:50", "YSB 352 - Yale Science Building 352", - "https:\/\/map.yale.edu\/?id=1910#!m\/563700" + "https://map.yale.edu/?id=1910#!m/563700" ] ], "Friday": [ @@ -213538,7 +443647,7 @@ "11:35", "12:50", "YSB 352 - Yale Science Building 352", - "https:\/\/map.yale.edu\/?id=1910#!m\/563700" + "https://map.yale.edu/?id=1910#!m/563700" ] ] }, @@ -213552,10 +443661,97 @@ "classnotes": "Prerequisite: Introductory courses (BIOL101-104) and two MCDB200-level courses (strongly recommended: MCDB200 and MCDB202) or instructor permission.", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88361\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88361/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986675977706909, + 0.9986782670021057, + 0.998724639415741 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9785183668136597, + 0.9987537860870361, + 0.9988589286804199, + 0.9989319443702698 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987688660621643, + 0.9988111257553101, + 0.9989140033721924, + 0.9989286065101624 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 11 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -213599,7 +443795,7 @@ "9:25", "11:15", "YSB 352 - Yale Science Building 352", - "https:\/\/map.yale.edu\/?id=1910#!m\/563700" + "https://map.yale.edu/?id=1910#!m/563700" ] ] }, @@ -213611,10 +443807,117 @@ "classnotes": "The course will be limited to graduate students or undergraduate students having completed the introductory courses (BIOL101-104) and two MCDB200-level courses (or instructor permission).", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88366\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88366/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9953343272209167, + 0.9988288283348083, + 0.9971684813499451, + 0.9988923668861389, + 0.9989326596260071, + 0.9988914132118225 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988447427749634, + 0.9985038042068481, + 0.995853066444397, + 0.9988089799880981, + 0.9988425970077515, + 0.998914361000061, + 0.9989247918128967 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983256459236145, + 0.99883633852005, + 0.9989216327667236, + 0.9970096349716187, + 0.9989359974861145, + 0.9989134073257446, + 0.9988991022109985, + 0.9988752007484436 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 21, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 21 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -213657,7 +443960,7 @@ "11:35", "12:25", "WTS A53 - Watson Center 60 Sachem Street A53", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -213665,7 +443968,7 @@ "11:35", "12:25", "WTS A53 - Watson Center 60 Sachem Street A53", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Friday": [ @@ -213673,7 +443976,7 @@ "11:35", "12:25", "WTS A53 - Watson Center 60 Sachem Street A53", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -213685,10 +443988,163 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89358\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89358/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988732933998108, + 0.9987448453903198, + 0.9980521202087402, + 0.9988383650779724, + 0.9987984895706177, + 0.9943441152572632, + 0.9983344674110413, + 0.9987303614616394, + 0.9994884729385376 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9955495595932007, + 0.9994706511497498, + 0.998485267162323, + 0.9918396472930908, + 0.9857528805732727, + 0.999496340751648, + 0.9988102912902832, + 0.9973223805427551, + 0.9983134269714355, + 0.9863342642784119, + 0.9894793629646301, + 0.9994966983795166, + 0.9870967864990234, + 0.9985388517379761, + 0.9981233477592468, + 0.9979408383369446, + 0.9994723200798035 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 9 + }, + "sentiment_distribution": { + "POSITIVE": 0.47058823529411764, + "NEGATIVE": 0.5294117647058824 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9986711740493774, + 0.9988766312599182, + 0.9948697090148926, + 0.9948377013206482, + 0.9987778067588806, + 0.999508261680603, + 0.9994785189628601, + 0.9988413453102112, + 0.9982150793075562, + 0.9994805455207825, + 0.9921711683273315, + 0.9968649744987488, + 0.9994605183601379, + 0.996715784072876, + 0.9989230036735535, + 0.9988738894462585, + 0.9994912147521973 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 9 + }, + "sentiment_distribution": { + "POSITIVE": 0.47058823529411764, + "NEGATIVE": 0.5294117647058824 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "final_label": "POSITIVE", + "final_count": 24, + "final_proportion": 0.5581395348837209, + "final_counts": { + "POSITIVE": 24, + "NEGATIVE": 19 + }, + "final_distribution": { + "POSITIVE": 0.5581395348837209, + "NEGATIVE": 0.4418604651162791 + } + } }, { "season_code": "202303", @@ -213730,10 +444186,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92376\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92376/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -213769,10 +444253,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92377\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92377/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -213809,7 +444321,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -213854,7 +444394,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -213893,12 +444461,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "Through lectures, discussions, writing activities, and revisions, students become familiar with the principles of scientific grant writing, including language, style, content, and how to formulate a hypothesis and specific aims. Students effectively articulate their overall research plan and the significance of their research in writing and in oral presentations, and they learn to critique and review grant proposals by engaging in peer-review activities with fellow classmates. By the end of the term, students review, revise, and complete the research strategy for an NRSA F31 or NSF and\/or the foundation for their qualifying proposal.", + "description": "Through lectures, discussions, writing activities, and revisions, students become familiar with the principles of scientific grant writing, including language, style, content, and how to formulate a hypothesis and specific aims. Students effectively articulate their overall research plan and the significance of their research in writing and in oral presentations, and they learn to critique and review grant proposals by engaging in peer-review activities with fellow classmates. By the end of the term, students review, revise, and complete the research strategy for an NRSA F31 or NSF and/or the foundation for their qualifying proposal.", "short_title": "Developing and Writing a Scie...", "title": "Developing and Writing a Scientific Research Proposal", "school": "GS", @@ -213942,10 +444538,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89559\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89559/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -213982,7 +444606,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -214016,10 +444668,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92594\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92594/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -214054,10 +444734,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88936\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88936/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -214096,7 +444804,7 @@ "13:30", "15:20", "LC 319 - Linsly-Chittenden Hall 319", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -214110,15 +444818,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89203\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89203/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "This course is a practical studio, introducing students to the historical debates and the range of historical sources for the study of medieval Iberia, including Latin, Arabic, Judeo-Arabic, and Spanish material. Reading knowledge of Latin and\/or Arabic is required. Reading knowledge of Spanish is preferred.", + "description": "This course is a practical studio, introducing students to the historical debates and the range of historical sources for the study of medieval Iberia, including Latin, Arabic, Judeo-Arabic, and Spanish material. Reading knowledge of Latin and/or Arabic is required. Reading knowledge of Spanish is preferred.", "short_title": "Medieval Iberia", "title": "Medieval Iberia", "school": "GS", @@ -214152,7 +444888,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -214190,7 +444954,7 @@ "15:30", "17:20", "BRBL 9 - Beinecke Rare Book Library 9", - "https:\/\/map.yale.edu\/?id=1910#!m\/531533" + "https://map.yale.edu/?id=1910#!m/531533" ] ] }, @@ -214202,10 +444966,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91712\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91712/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -214250,7 +445042,7 @@ "11:35", "12:50", "HQ 307 - Humanities Quadrangle 307", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -214258,7 +445050,7 @@ "11:35", "12:50", "HQ 307 - Humanities Quadrangle 307", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -214270,10 +445062,109 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88080\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88080/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9975146055221558, + 0.9974174499511719, + 0.9988190531730652, + 0.9983605742454529, + 0.998916506767273 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994046688079834, + 0.9984863996505737, + 0.9987554550170898, + 0.9995070695877075, + 0.9988973140716553, + 0.9988811612129211 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 4 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984442591667175, + 0.9970195889472961, + 0.9945054650306702, + 0.999510645866394, + 0.9989393353462219 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 0.8125, + "final_counts": { + "POSITIVE": 13, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.8125, + "NEGATIVE": 0.1875 + } + } }, { "season_code": "202303", @@ -214311,7 +445202,7 @@ "10:00", "11:20", "SDQ WOOD - Sterling Divinity Quadrangle WOOD", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ], "Thursday": [ @@ -214319,7 +445210,7 @@ "10:00", "11:20", "SDQ WOOD - Sterling Divinity Quadrangle WOOD", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -214331,10 +445222,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90358\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90358/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -214372,7 +445291,7 @@ "9:25", "11:15", "HQ C05 - Humanities Quadrangle C05", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -214384,10 +445303,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88869\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88869/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -214428,7 +445375,7 @@ "11:35", "12:50", "LC 209 - Linsly-Chittenden Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -214436,7 +445383,7 @@ "11:35", "12:50", "LC 209 - Linsly-Chittenden Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -214450,10 +445397,115 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89648\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89648/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987421631813049, + 0.9985588192939758, + 0.9986642599105835, + 0.9986306428909302, + 0.9987571239471436, + 0.9988455772399902, + 0.9986991882324219 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9978771209716797, + 0.9988460540771484, + 0.9988961219787598, + 0.9989224672317505, + 0.9988743662834167 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989064931869507, + 0.997453510761261, + 0.9988991022109985, + 0.9988448619842529, + 0.9980862140655518, + 0.9989029169082642, + 0.9989354014396667, + 0.9987841248512268 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 20 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -214491,7 +445543,7 @@ "9:30", "10:20", "SDQ GREAT - Sterling Divinity Quadrangle GREAT", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ], "Wednesday": [ @@ -214499,7 +445551,7 @@ "9:30", "10:20", "SDQ GREAT - Sterling Divinity Quadrangle GREAT", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ], "Friday": [ @@ -214507,7 +445559,7 @@ "9:30", "10:20", "SDQ GREAT - Sterling Divinity Quadrangle GREAT", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -214519,10 +445571,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90374\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90374/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -214560,7 +445640,7 @@ "13:30", "15:20", "SDQ S151 - Sterling Divinity Quadrangle S151", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -214572,10 +445652,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90375\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90375/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -214617,7 +445725,7 @@ "13:30", "15:20", "SDQ SG54 - Sterling Divinity Quadrangle SG54", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -214629,10 +445737,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91054\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91054/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -214669,7 +445805,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -214706,7 +445870,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -214743,7 +445935,7 @@ "10:30", "11:20", "ML 104 - Mason Laboratory 104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ], "Thursday": [ @@ -214751,7 +445943,7 @@ "10:30", "11:20", "ML 104 - Mason Laboratory 104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ] }, @@ -214768,10 +445960,143 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88397\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88397/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9913131594657898, + 0.9966666102409363, + 0.9988254904747009, + 0.9988119602203369, + 0.9985424280166626, + 0.9987903237342834, + 0.9989073276519775, + 0.998784601688385, + 0.9989274144172668, + 0.9988008737564087 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998862624168396, + 0.9953860640525818, + 0.9983627200126648, + 0.9941076040267944, + 0.9976053237915039, + 0.998201847076416, + 0.9987311959266663, + 0.9986768364906311, + 0.9960141181945801, + 0.9980237483978271, + 0.9896877408027649, + 0.9986573457717896 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989053010940552, + 0.9984850287437439, + 0.9988420605659485, + 0.9988937973976135, + 0.997855007648468, + 0.9988278746604919, + 0.9987819790840149, + 0.991133987903595, + 0.9987916350364685, + 0.9989151954650879, + 0.9988828301429749 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9090909090909091 + ] + }, + "final_label": "POSITIVE", + "final_count": 28, + "final_proportion": 0.8484848484848485, + "final_counts": { + "POSITIVE": 28, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.8484848484848485, + "NEGATIVE": 0.15151515151515152 + } + } }, { "season_code": "202303", @@ -214808,7 +446133,7 @@ "13:00", "14:15", "WLH 208 - William L. Harkness Hall 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -214816,7 +446141,7 @@ "13:00", "14:15", "WLH 208 - William L. Harkness Hall 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -214836,10 +446161,103 @@ "classnotes": "", "final_exam": "Saturday, December 16, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88402\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88402/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986121654510498, + 0.9985415935516357, + 0.9989243149757385, + 0.9986763596534729 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9987794756889343, + 0.9986698627471924, + 0.9988383650779724, + 0.9989950060844421 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9932693839073181, + 0.9988571405410767, + 0.9989076852798462, + 0.9989396929740906, + 0.9988522529602051 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 0.9230769230769231, + "final_counts": { + "POSITIVE": 12, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9230769230769231, + "NEGATIVE": 0.07692307692307693 + } + } }, { "season_code": "202303", @@ -214876,7 +446294,7 @@ "9:00", "10:15", "ML 211 - Mason Laboratory 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ], "Wednesday": [ @@ -214884,7 +446302,7 @@ "9:00", "10:15", "ML 211 - Mason Laboratory 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ] }, @@ -214903,10 +446321,175 @@ "classnotes": "", "final_exam": "Thursday, December 14, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88407\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88407/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989080429077148, + 0.998704195022583, + 0.9989176988601685, + 0.9044316411018372, + 0.9953451752662659, + 0.9988652467727661, + 0.9987425208091736, + 0.9988994598388672, + 0.9988118410110474, + 0.9994906187057495, + 0.998681366443634, + 0.9988952279090881, + 0.9989079236984253, + 0.9988390803337097, + 0.9984499216079712 + ], + "sentiment_counts": { + "POSITIVE": 14, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9333333333333333, + "NEGATIVE": 0.06666666666666667 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9333333333333333 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998831570148468, + 0.998561680316925, + 0.999492883682251, + 0.9989228844642639, + 0.9989333748817444, + 0.9989239573478699, + 0.9880643486976624, + 0.9988162517547607, + 0.9989120960235596, + 0.9987830519676208, + 0.9984666109085083, + 0.9989256262779236, + 0.9988595247268677, + 0.9985072016716003, + 0.9994982481002808, + 0.9989172220230103, + 0.9989161491394043 + ], + "sentiment_counts": { + "POSITIVE": 14, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.8235294117647058, + "NEGATIVE": 0.17647058823529413 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8235294117647058 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9977173805236816, + 0.9950679540634155, + 0.9989232420921326, + 0.9989099502563477, + 0.998838484287262, + 0.9989025592803955, + 0.9989081621170044, + 0.9987579584121704, + 0.9987882971763611, + 0.9988616704940796, + 0.9952226281166077, + 0.9988718628883362, + 0.9987469911575317, + 0.998923122882843, + 0.9989215135574341, + 0.9988766312599182, + 0.9986922144889832 + ], + "sentiment_counts": { + "POSITIVE": 16, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9411764705882353, + "NEGATIVE": 0.058823529411764705 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9411764705882353 + ] + }, + "final_label": "POSITIVE", + "final_count": 44, + "final_proportion": 0.8979591836734694, + "final_counts": { + "POSITIVE": 44, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.8979591836734694, + "NEGATIVE": 0.10204081632653061 + } + } }, { "season_code": "202303", @@ -214943,7 +446526,7 @@ "9:00", "10:15", "HLH17 05 - 17 Hillhouse Avenue 05", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Thursday": [ @@ -214951,7 +446534,7 @@ "9:00", "10:15", "HLH17 05 - 17 Hillhouse Avenue 05", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -214970,10 +446553,135 @@ "classnotes": "", "final_exam": "Saturday, December 16, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88411\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88411/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9649503827095032, + 0.9983628392219543, + 0.9987813830375671, + 0.9989029169082642, + 0.9987118244171143, + 0.9986698627471924, + 0.9968070983886719, + 0.9987245202064514 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988722205162048, + 0.9994620680809021, + 0.9989219903945923, + 0.9989332556724548, + 0.9984827637672424, + 0.9950627684593201, + 0.9992778897285461, + 0.9987657070159912, + 0.9987962245941162, + 0.9994848966598511 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.7, + "NEGATIVE": 0.3 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9918366074562073, + 0.9994990825653076, + 0.9984075427055359, + 0.9988797307014465, + 0.9988162517547607, + 0.9995080232620239, + 0.9995163679122925, + 0.9988638162612915, + 0.9986512064933777, + 0.9987824559211731, + 0.9983548521995544 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.6363636363636364, + "NEGATIVE": 0.36363636363636365 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6363636363636364 + ] + }, + "final_label": "POSITIVE", + "final_count": 22, + "final_proportion": 0.7586206896551724, + "final_counts": { + "POSITIVE": 22, + "NEGATIVE": 7 + }, + "final_distribution": { + "POSITIVE": 0.7586206896551724, + "NEGATIVE": 0.2413793103448276 + } + } }, { "season_code": "202303", @@ -215010,7 +446718,7 @@ "14:30", "15:45", "HLH17 05 - 17 Hillhouse Avenue 05", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Wednesday": [ @@ -215018,7 +446726,7 @@ "14:30", "15:45", "HLH17 05 - 17 Hillhouse Avenue 05", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -215035,10 +446743,97 @@ "classnotes": "This course has both lectures (9-10) and laboratory sessions (7-8).\n\nLectures and Lab sessions are scattered during the whole semester depending on equipment availability etc. Detailed Schedule for the experiments in lab and the lecture schedule will be posted online. \n\nLectures are on topics that will have laboratory experiments. Students are required to register for either the Monday or Wednesday laboratory session during the first lecture. To expedite the process, you can send me an email (amit.datye@yale.edu) with your preference. We can only accommodate 6-7 students per session and the slots will be given on a first come first serve basis. Lectures and Laboratory sessions will not be held on the same day i.e in most cases there will be lectures one week and laboratory sessions the next.\n\n9-10 lectures in total on Mondays and Wednesdays 2:30 - 3.45 PM Location: TBD. (1 additional lecture if needed to teach data presentation and analysis using Origin)\n\n7 in total, 2 - 2.5 - hour laboratory meetings in small groups will be arranged to perform the actual experiments. (Refer to Calendar for updates). Lab sessions will be conducted M and W from 4:00 PM (4:15 PM depending on some students schedule ) to 6:30 PM. Each group will have to attend the lab session either on M or W ( whichever session they registered for during the first lecture or during registration). A Friday lab session might be opened if there are too many students. \n\nIn addition each group will be required to complete a final project. \n\nAttendance is required for all lectures and all labs.\n", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88416\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88416/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988968372344971, + 0.9994199275970459, + 0.9988617897033691, + 0.9984480142593384, + 0.9989138841629028 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9995025396347046, + 0.998816967010498, + 0.998902440071106 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9995019435882568, + 0.9986421465873718 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 1 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 0.7, + "final_counts": { + "POSITIVE": 7, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.7, + "NEGATIVE": 0.3 + } + } }, { "season_code": "202303", @@ -215069,7 +446864,7 @@ "16:00", "19:00", "WLH 115 - William L. Harkness Hall 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -215088,7 +446883,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -215119,7 +446942,7 @@ "16:00", "19:00", "WLH 015 - William L. Harkness Hall 015", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -215138,7 +446961,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -215177,7 +447028,7 @@ "9:00", "10:15", "ML 107 - Mason Laboratory 107", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ], "Thursday": [ @@ -215185,7 +447036,7 @@ "9:00", "10:15", "ML 107 - Mason Laboratory 107", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ] }, @@ -215201,10 +447052,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88420\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88420/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -215241,7 +447120,7 @@ "13:00", "14:15", "ML 104 - Mason Laboratory 104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ], "Wednesday": [ @@ -215249,7 +447128,7 @@ "13:00", "14:15", "ML 104 - Mason Laboratory 104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ] }, @@ -215264,10 +447143,135 @@ "classnotes": "", "final_exam": "Wednesday, December 20, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88422\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88422/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988391995429993, + 0.9987468719482422, + 0.9920638203620911, + 0.9988300204277039, + 0.9987875819206238, + 0.998734176158905, + 0.9908486604690552, + 0.9987844824790955, + 0.998845100402832 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988597631454468, + 0.998683512210846, + 0.9969724416732788, + 0.9988441467285156, + 0.9988160133361816, + 0.998865008354187, + 0.99562007188797, + 0.9989222288131714, + 0.9984765648841858, + 0.9979089498519897, + 0.9989250302314758 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8181818181818182, + "NEGATIVE": 0.18181818181818182 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8181818181818182 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985960125923157, + 0.995448887348175, + 0.9988617897033691, + 0.9987930059432983, + 0.9985851049423218, + 0.996503472328186, + 0.9988844990730286, + 0.9981423616409302, + 0.9989317059516907 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 27, + "final_proportion": 0.9310344827586207, + "final_counts": { + "POSITIVE": 27, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9310344827586207, + "NEGATIVE": 0.06896551724137931 + } + } }, { "season_code": "202303", @@ -215304,7 +447308,7 @@ "11:35", "12:50", "HLH17 05 - 17 Hillhouse Avenue 05", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Wednesday": [ @@ -215312,7 +447316,7 @@ "11:35", "12:50", "HLH17 05 - 17 Hillhouse Avenue 05", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -215331,10 +447335,183 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88427\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88427/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986936450004578, + 0.9910140633583069, + 0.9985020160675049, + 0.9985382556915283, + 0.9987176656723022, + 0.9977340698242188, + 0.9988189339637756, + 0.9986962676048279, + 0.9942901134490967, + 0.9987490177154541, + 0.9981799125671387, + 0.9987918734550476, + 0.9967007040977478, + 0.998916745185852 + ], + "sentiment_counts": { + "POSITIVE": 14, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989393353462219, + 0.9988492727279663, + 0.9953010082244873, + 0.997984766960144, + 0.9988940358161926, + 0.9988605976104736, + 0.9984283447265625, + 0.9988778233528137, + 0.9932304620742798, + 0.9988757967948914, + 0.998838484287262, + 0.9991227984428406, + 0.9988332390785217, + 0.9978467226028442, + 0.9989318251609802, + 0.9988906979560852, + 0.9988540410995483, + 0.9989307522773743, + 0.9989224672317505 + ], + "sentiment_counts": { + "POSITIVE": 17, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8947368421052632, + "NEGATIVE": 0.10526315789473684 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8947368421052632 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989218711853027, + 0.9980568289756775, + 0.9988995790481567, + 0.9988752007484436, + 0.9989161491394043, + 0.9988983869552612, + 0.9988743662834167, + 0.9830157160758972, + 0.9988788962364197, + 0.9971646666526794, + 0.9988666772842407, + 0.999007523059845, + 0.998925507068634, + 0.998747706413269, + 0.9982525706291199, + 0.9989076852798462, + 0.9987139701843262, + 0.9988540410995483, + 0.9986035227775574, + 0.998925507068634 + ], + "sentiment_counts": { + "POSITIVE": 17, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.85, + "NEGATIVE": 0.15 + }, + "sentiment_overall": [ + "POSITIVE", + 0.85 + ] + }, + "final_label": "POSITIVE", + "final_count": 48, + "final_proportion": 0.9056603773584906, + "final_counts": { + "POSITIVE": 48, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.9056603773584906, + "NEGATIVE": 0.09433962264150944 + } + } }, { "season_code": "202303", @@ -215371,7 +447548,7 @@ "10:30", "11:20", "HLH17 03 - 17 Hillhouse Avenue 03", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Wednesday": [ @@ -215379,7 +447556,7 @@ "10:30", "11:20", "HLH17 03 - 17 Hillhouse Avenue 03", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Friday": [ @@ -215387,7 +447564,7 @@ "10:30", "11:20", "HLH17 03 - 17 Hillhouse Avenue 03", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -215407,15 +447584,94 @@ "classnotes": "", "final_exam": "Monday, December 18, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90698\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90698/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988343119621277, + 0.9988802075386047 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989147186279297, + 0.9989092350006104 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989185333251953, + 0.9988110065460205, + 0.9987955093383789 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 7 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", "requirements": "Prerequisite: ENAS 130 or permission of instructor.", - "description": "Aspects of computer-aided design and manufacture (CAD\/CAM). The computer's role in the mechanical design and manufacturing process; commercial tools for two- and three-dimensional drafting and assembly modeling; finite-element analysis software for modeling mechanical, thermal, and fluid systems.", + "description": "Aspects of computer-aided design and manufacture (CAD/CAM). The computer's role in the mechanical design and manufacturing process; commercial tools for two- and three-dimensional drafting and assembly modeling; finite-element analysis software for modeling mechanical, thermal, and fluid systems.", "short_title": "Computer-Aided Engineering", "title": "Computer-Aided Engineering", "school": "YC", @@ -215448,7 +447704,7 @@ "18:00", "19:15", "HLH17 111 - 17 Hillhouse Avenue 111", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Thursday": [ @@ -215456,7 +447712,7 @@ "18:00", "19:15", "HLH17 111 - 17 Hillhouse Avenue 111", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -215473,10 +447729,151 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88437\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88437/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9977865219116211, + 0.998738706111908, + 0.9986549615859985, + 0.999468982219696, + 0.9969555139541626, + 0.9987850785255432, + 0.9953248500823975, + 0.9981675148010254, + 0.9983589053153992, + 0.9985007047653198, + 0.9988182187080383, + 0.9983614087104797 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9166666666666666 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989338517189026, + 0.9980549812316895, + 0.9987107515335083, + 0.9994206428527832, + 0.998910665512085, + 0.9983294606208801, + 0.9989210367202759, + 0.995602011680603, + 0.9986373782157898, + 0.998836100101471, + 0.9980272650718689 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.6363636363636364, + "NEGATIVE": 0.36363636363636365 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6363636363636364 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989185333251953, + 0.9986827969551086, + 0.9987340569496155, + 0.9866887927055359, + 0.9988508224487305, + 0.9988948702812195, + 0.9988712668418884, + 0.9986787438392639, + 0.9988974332809448, + 0.9985710382461548, + 0.9959818124771118, + 0.9989252686500549, + 0.9994933605194092, + 0.9995121955871582 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "final_label": "POSITIVE", + "final_count": 30, + "final_proportion": 0.8108108108108109, + "final_counts": { + "POSITIVE": 30, + "NEGATIVE": 7 + }, + "final_distribution": { + "POSITIVE": 0.8108108108108109, + "NEGATIVE": 0.1891891891891892 + } + } }, { "season_code": "202303", @@ -215515,7 +447912,7 @@ "9:00", "10:15", "DL 220 - Dunham Laboratory 220", - "https:\/\/map.yale.edu\/?id=1910#!m\/560005" + "https://map.yale.edu/?id=1910#!m/560005" ] ], "Wednesday": [ @@ -215523,7 +447920,7 @@ "9:00", "10:15", "DL 220 - Dunham Laboratory 220", - "https:\/\/map.yale.edu\/?id=1910#!m\/560005" + "https://map.yale.edu/?id=1910#!m/560005" ] ] }, @@ -215540,15 +447937,118 @@ "classnotes": "", "final_exam": "Thursday, December 14, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88492\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88492/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9980227947235107, + 0.9977900981903076, + 0.9985235333442688, + 0.9984800219535828, + 0.9987670183181763, + 0.9988449811935425 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989159107208252, + 0.9989302754402161, + 0.9989073276519775, + 0.9987850785255432, + 0.998891294002533, + 0.998920202255249 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.997117280960083, + 0.9988473653793335, + 0.9989357590675354, + 0.9989168643951416, + 0.9988254904747009, + 0.9988704323768616, + 0.9989297986030579 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 19 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", "requirements": "Experience with differential equations, linear algebra, and basic understanding of dynamics is required. Basic coding experience in e.g., python, c++, c, are also required. Juniors and seniors preferred.", - "description": "This course introduces fundamental concepts of robotics, optimal control, and reinforcement learning. Lectures cover topics on state representation, manipulator equations, forward\/inverse kinematics\/dynamics, planning and control of fully actuated and underactuated robots, operational space control, control via mathematical optimization, and reinforcement learning. The topics focus on connecting mathematical formulations to algorithmic implementation through simulated robotic systems. Coding assignments provide students experience setting up and interfacing with several simulated robotic systems, algorithmic implementation of several state-of-the-art methods, and a codebase for future use. Special topic lectures focus on recent developments in the field of robotics and highlight core research areas. A final class project takes place instead of a final exam where students leverage the codebase they have built throughout the course in a robot problem of their choosing.", + "description": "This course introduces fundamental concepts of robotics, optimal control, and reinforcement learning. Lectures cover topics on state representation, manipulator equations, forward/inverse kinematics/dynamics, planning and control of fully actuated and underactuated robots, operational space control, control via mathematical optimization, and reinforcement learning. The topics focus on connecting mathematical formulations to algorithmic implementation through simulated robotic systems. Coding assignments provide students experience setting up and interfacing with several simulated robotic systems, algorithmic implementation of several state-of-the-art methods, and a codebase for future use. Special topic lectures focus on recent developments in the field of robotics and highlight core research areas. A final class project takes place instead of a final exam where students leverage the codebase they have built throughout the course in a robot problem of their choosing.", "short_title": "Fundamentals of Robot Modelin...", "title": "Fundamentals of Robot Modeling and Control", "school": "YC", @@ -215582,7 +448082,7 @@ "16:00", "17:15", "HLH17 115 - 17 Hillhouse Avenue 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Thursday": [ @@ -215590,7 +448090,7 @@ "16:00", "17:15", "HLH17 115 - 17 Hillhouse Avenue 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -215602,10 +448102,115 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88762\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88762/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9939574003219604, + 0.9987218976020813, + 0.9988006353378296, + 0.9980480670928955, + 0.9947157502174377, + 0.998640239238739 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9967231154441833, + 0.9984797835350037, + 0.998910665512085, + 0.9994538426399231, + 0.9894299507141113 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.6, + "NEGATIVE": 0.4 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988191723823547, + 0.9989275336265564, + 0.998700737953186, + 0.9982008934020996, + 0.9717752933502197, + 0.9972643852233887, + 0.9986578226089478, + 0.9989294409751892 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 0.7368421052631579, + "final_counts": { + "POSITIVE": 14, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.7368421052631579, + "NEGATIVE": 0.2631578947368421 + } + } }, { "season_code": "202303", @@ -215643,7 +448248,7 @@ "19:00", "20:15", "HLH17 115 - 17 Hillhouse Avenue 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Wednesday": [ @@ -215651,7 +448256,7 @@ "19:00", "20:15", "HLH17 115 - 17 Hillhouse Avenue 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -215663,10 +448268,38 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90069\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/90069/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -215703,7 +448336,7 @@ "11:35", "12:50", "WLH 113 - William L. Harkness Hall 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -215711,7 +448344,7 @@ "11:35", "12:50", "WLH 113 - William L. Harkness Hall 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -215729,15 +448362,98 @@ "classnotes": "", "final_exam": "Friday, December 15, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88442\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88442/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "", - "description": "Faculty-supervised one- or two-person projects with emphasis on research (experiment, simulation, or theory), engineering design, or tutorial study. Students are expected to consult the course instructor, director of undergraduate studies, and\/or appropriate faculty members to discuss ideas and suggestions for topics. Focus on development of professional skills such as writing abstracts, prospectuses, and technical reports as well as good practices for preparing posters and delivering presentations. Permission of advisor and director of undergraduate studies is required. Students are required to attend a 75-minute section once per week.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986909031867981, + 0.9987309575080872, + 0.9988565444946289 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989174604415894, + 0.9964841604232788, + 0.9988503456115723 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988694787025452, + 0.9885544180870056, + 0.9988588094711304 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 9 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } + }, + { + "season_code": "202303", + "requirements": "", + "description": "Faculty-supervised one- or two-person projects with emphasis on research (experiment, simulation, or theory), engineering design, or tutorial study. Students are expected to consult the course instructor, director of undergraduate studies, and/or appropriate faculty members to discuss ideas and suggestions for topics. Focus on development of professional skills such as writing abstracts, prospectuses, and technical reports as well as good practices for preparing posters and delivering presentations. Permission of advisor and director of undergraduate studies is required. Students are required to attend a 75-minute section once per week.", "short_title": "Special Projects I", "title": "Special Projects I", "school": "YC", @@ -215769,7 +448485,7 @@ "16:00", "17:15", "HLH17 113 - 17 Hillhouse Avenue 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Wednesday": [ @@ -215777,7 +448493,7 @@ "16:00", "17:15", "HLH17 113 - 17 Hillhouse Avenue 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -215791,15 +448507,116 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88445\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88445/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998792290687561, + 0.9981620907783508, + 0.9989042282104492, + 0.9989184141159058, + 0.9986112117767334, + 0.9986067414283752 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9994732737541199, + 0.9988405108451843, + 0.997111439704895, + 0.9988975524902344, + 0.9989070892333984, + 0.9995077848434448 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 4 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9544849991798401, + 0.993567168712616, + 0.9987621307373047, + 0.9989185333251953, + 0.999504804611206 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.4, + "POSITIVE": 0.6 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 0.7647058823529411, + "final_counts": { + "POSITIVE": 13, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.7647058823529411, + "NEGATIVE": 0.23529411764705882 + } + } }, { "season_code": "202303", "requirements": "Prerequisites: MENG 471 or 472; permission of adviser and director of undergraduate studies.", - "description": "Faculty-supervised one- or two-person projects with emphasis on research (experiment, simulation, or theory), engineering design, or tutorial study. Students are expected to consult the course instructor, director of undergraduate studies, and\/or appropriate faculty members to discuss ideas and suggestions for topics. These courses may be taken at any time during the student's career and may be taken more than once.", + "description": "Faculty-supervised one- or two-person projects with emphasis on research (experiment, simulation, or theory), engineering design, or tutorial study. Students are expected to consult the course instructor, director of undergraduate studies, and/or appropriate faculty members to discuss ideas and suggestions for topics. These courses may be taken at any time during the student's career and may be taken more than once.", "short_title": "Special Projects II", "title": "Special Projects II", "school": "YC", @@ -215834,15 +448651,43 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88451\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88451/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "Prerequisite: MENG 361.", - "description": "This course draws inspiration from nature and focuses on utilizing the fundamental concepts of fluid mechanics and soft matter physics to explain these phenomena. We study a broad range of problems related to i) nutrient transport in plants, slime molds, and fungi and the adaptation of their networks in dynamic environments, ii) collective behavior and chemotaxis of swimming microorganisms, and iii) pattern formation in nature, e.g. icicles, mud cracks, salt polygons, dendritic crystals, and Turing patterns. We also discuss how our understanding of these problems could be used to develop sustainable solutions for the society, e.g. designing synthetic trees to convert CO2 to oxygen, developing micro\/nano robots for biomedical applications, and utilizing pattern formation and self-assembly to make new materials.", + "description": "This course draws inspiration from nature and focuses on utilizing the fundamental concepts of fluid mechanics and soft matter physics to explain these phenomena. We study a broad range of problems related to i) nutrient transport in plants, slime molds, and fungi and the adaptation of their networks in dynamic environments, ii) collective behavior and chemotaxis of swimming microorganisms, and iii) pattern formation in nature, e.g. icicles, mud cracks, salt polygons, dendritic crystals, and Turing patterns. We also discuss how our understanding of these problems could be used to develop sustainable solutions for the society, e.g. designing synthetic trees to convert CO2 to oxygen, developing micro/nano robots for biomedical applications, and utilizing pattern formation and self-assembly to make new materials.", "short_title": "Fluid Mechanics of Natural Ph...", "title": "Fluid Mechanics of Natural Phenomena", "school": "YC", @@ -215876,7 +448721,7 @@ "11:35", "12:50", "ML 104 - Mason Laboratory 104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ], "Wednesday": [ @@ -215884,7 +448729,7 @@ "11:35", "12:50", "ML 104 - Mason Laboratory 104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ] }, @@ -215898,10 +448743,111 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90549\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90549/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998904824256897, + 0.997648298740387, + 0.9989080429077148, + 0.9978927969932556, + 0.998863697052002, + 0.9987475872039795 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989355206489563, + 0.9988229870796204, + 0.9988677501678467, + 0.9983508586883545, + 0.9985163807868958, + 0.9989185333251953 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989367127418518, + 0.9988546371459961, + 0.9989064931869507, + 0.9975513815879822, + 0.9979827404022217, + 0.9989163875579834 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 18 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -215961,15 +448907,132 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88456\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88456/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "", - "description": "Workshop\/seminar for presentations and discussion on topics in the field of international trade.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985081553459167, + 0.9729959964752197, + 0.9906836748123169, + 0.9995062351226807, + 0.998659610748291, + 0.9995030164718628, + 0.9989233613014221 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.5714285714285714, + "NEGATIVE": 0.42857142857142855 + }, + "sentiment_overall": [ + "POSITIVE", + 0.5714285714285714 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988589286804199, + 0.9994520545005798, + 0.9989566802978516, + 0.9995077848434448, + 0.9995043277740479, + 0.9974257349967957, + 0.9988271594047546, + 0.9995110034942627, + 0.998123824596405 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 6 + }, + "sentiment_distribution": { + "POSITIVE": 0.3333333333333333, + "NEGATIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9982823133468628, + 0.9953775405883789, + 0.9994876384735107, + 0.9990280866622925, + 0.9959266185760498, + 0.9978756904602051, + 0.9978531002998352, + 0.9994927644729614, + 0.9937591552734375 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 7 + }, + "sentiment_distribution": { + "POSITIVE": 0.2222222222222222, + "NEGATIVE": 0.7777777777777778 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.7777777777777778 + ] + }, + "final_label": "NEGATIVE", + "final_count": 16, + "final_proportion": 0.64, + "final_counts": { + "POSITIVE": 9, + "NEGATIVE": 16 + }, + "final_distribution": { + "POSITIVE": 0.36, + "NEGATIVE": 0.64 + } + } + }, + { + "season_code": "202303", + "requirements": "", + "description": "Workshop/seminar for presentations and discussion on topics in the field of international trade.", "short_title": "Workshop: International Trade", "title": "Workshop: International Trade", "school": "GS", @@ -215996,7 +449059,7 @@ "14:30", "15:50", "HLH28 106 - 28 Hillhouse Avenue 106", - "https:\/\/map.yale.edu\/?id=1910#!m\/559988" + "https://map.yale.edu/?id=1910#!m/559988" ] ] }, @@ -216011,7 +449074,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -216048,7 +449139,7 @@ "13:15", "16:15", "EVANS 2230 - Edward P Evans Hall 2230", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -216060,10 +449151,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91407\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91407/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -216100,7 +449219,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -216137,7 +449284,7 @@ "16:10", "19:10", "EVANS - EVANS", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -216149,10 +449296,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90728\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90728/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -216189,7 +449364,7 @@ "16:00", "17:00", "EVANS 2230 - Edward P Evans Hall 2230", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -216204,7 +449379,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -216242,7 +449445,7 @@ "8:30", "11:30", "EVANS 1556 - Edward P Evans Hall 1556", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -216254,10 +449457,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90729\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90729/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -216298,7 +449529,7 @@ "16:00", "19:00", "EVANS 4230 - Edward P Evans Hall 4230", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -216310,15 +449541,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89950\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89950/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "This course provides a theoretical treatment of major topics in corporate finance and banking, including: capital structure; incomplete contract and ownership; agency theory, information, and financial contracting; corporate finance and financial market; banking and intermediaries; and recent topics relating to financial crises.Economics Ph.D.students need to take both this course and Empirical Corporate Finance (ECON 676\/MGMT 748) to obtain credit; then, together, they will be counted as one credit. The first class session for this course meets Friday, October 27, 2023.", + "description": "This course provides a theoretical treatment of major topics in corporate finance and banking, including: capital structure; incomplete contract and ownership; agency theory, information, and financial contracting; corporate finance and financial market; banking and intermediaries; and recent topics relating to financial crises.Economics Ph.D.students need to take both this course and Empirical Corporate Finance (ECON 676/MGMT 748) to obtain credit; then, together, they will be counted as one credit. The first class session for this course meets Friday, October 27, 2023.", "short_title": "Financial Econometrics and Ma...", "title": "Financial Econometrics and Machine Learning", "school": "GS", @@ -216350,7 +449609,7 @@ "13:00", "16:00", "EVANS 4220 - Edward P Evans Hall 4220", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -216362,10 +449621,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91410\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91410/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -216400,10 +449687,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90733\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90733/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -216444,7 +449759,7 @@ "16:10", "19:10", "EVANS 1556 - Edward P Evans Hall 1556", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -216456,10 +449771,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90731\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90731/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -216496,7 +449839,7 @@ "14:30", "17:30", "EVANS 4220 - Edward P Evans Hall 4220", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -216508,10 +449851,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90732\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90732/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -216549,7 +449920,7 @@ "16:10", "19:10", "EVANS 2210 - Edward P Evans Hall 2210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -216561,15 +449932,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90735\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90735/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "781-01, Accounting\/Finance Workshop; 781-03, Marketing Workshop; 781-04, Organizations and Management Workshop; 781-05, Operations Workshop.", + "description": "781-01, Accounting/Finance Workshop; 781-03, Marketing Workshop; 781-04, Organizations and Management Workshop; 781-05, Operations Workshop.", "short_title": "PhD Seminar: PhD Seminar: Acc...", "title": "PhD Seminar: PhD Seminar: Accounting", "school": "GS", @@ -216613,17 +450012,45 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91422\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91422/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "781-01, Accounting\/Finance Workshop; 781-03, Marketing Workshop; 781-04, Organizations and Management Workshop; 781-05, Operations Workshop.", + "description": "781-01, Accounting/Finance Workshop; 781-03, Marketing Workshop; 781-04, Organizations and Management Workshop; 781-05, Operations Workshop.", "short_title": "PhD Seminar: PhD Seminar: Acc...", - "title": "PhD Seminar: PhD Seminar: Acct\/Finance", + "title": "PhD Seminar: PhD Seminar: Acct/Finance", "school": "GS", "credits": 1.0, "extra_info": "ACTIVE", @@ -216653,7 +450080,7 @@ "11:10", "12:30", "EVANS 4200 - Edward P Evans Hall 4200", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -216668,12 +450095,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "781-01, Accounting\/Finance Workshop; 781-03, Marketing Workshop; 781-04, Organizations and Management Workshop; 781-05, Operations Workshop.", + "description": "781-01, Accounting/Finance Workshop; 781-03, Marketing Workshop; 781-04, Organizations and Management Workshop; 781-05, Operations Workshop.", "short_title": "PhD Seminar: PhD Seminar: Mar...", "title": "PhD Seminar: PhD Seminar: Marketing", "school": "GS", @@ -216705,7 +450160,7 @@ "11:35", "12:50", "EVANS 2210 - Edward P Evans Hall 2210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -216720,12 +450175,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "781-01, Accounting\/Finance Workshop; 781-03, Marketing Workshop; 781-04, Organizations and Management Workshop; 781-05, Operations Workshop.", + "description": "781-01, Accounting/Finance Workshop; 781-03, Marketing Workshop; 781-04, Organizations and Management Workshop; 781-05, Operations Workshop.", "short_title": "PhD Seminar: PhD Seminar: O & M", "title": "PhD Seminar: PhD Seminar: O & M", "school": "GS", @@ -216757,7 +450240,7 @@ "11:35", "12:50", "EVANS 2210 - Edward P Evans Hall 2210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -216769,15 +450252,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90738\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90738/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "781-01, Accounting\/Finance Workshop; 781-03, Marketing Workshop; 781-04, Organizations and Management Workshop; 781-05, Operations Workshop.", + "description": "781-01, Accounting/Finance Workshop; 781-03, Marketing Workshop; 781-04, Organizations and Management Workshop; 781-05, Operations Workshop.", "short_title": "PhD Seminar: PhD Seminar: Ope...", "title": "PhD Seminar: PhD Seminar: Operations", "school": "GS", @@ -216809,7 +450320,7 @@ "11:35", "12:50", "EVANS - EVANS", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -216824,7 +450335,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -216861,7 +450400,7 @@ "16:20", "17:20", "EVANS 2210 - Edward P Evans Hall 2210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -216873,10 +450412,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91423\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91423/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -216913,7 +450480,7 @@ "9:50", "11:00", "EVANS 4200 - Edward P Evans Hall 4200", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -216925,10 +450492,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90740\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90740/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -216965,7 +450560,7 @@ "10:10", "11:20", "EVANS 2210 - Edward P Evans Hall 2210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -216980,7 +450575,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -217017,7 +450640,7 @@ "10:10", "11:20", "EVANS 2210 - Edward P Evans Hall 2210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -217032,7 +450655,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -217084,7 +450735,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -217121,7 +450800,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -217158,7 +450865,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -217195,7 +450930,7 @@ "9:25", "10:15", "RKZ 241 - Rosenkranz Hall 241", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ], "Tuesday": [ @@ -217203,7 +450938,7 @@ "9:25", "10:15", "RKZ 241 - Rosenkranz Hall 241", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ], "Wednesday": [ @@ -217211,7 +450946,7 @@ "9:25", "10:15", "RKZ 241 - Rosenkranz Hall 241", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ], "Thursday": [ @@ -217219,7 +450954,7 @@ "9:25", "10:15", "RKZ 241 - Rosenkranz Hall 241", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ], "Friday": [ @@ -217227,7 +450962,7 @@ "9:25", "10:15", "RKZ 241 - Rosenkranz Hall 241", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -217241,10 +450976,119 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88461\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88461/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986355900764465, + 0.9980721473693848, + 0.9910972118377686, + 0.9968997240066528, + 0.7587822675704956, + 0.9987462759017944, + 0.998867392539978, + 0.9988817572593689 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988967180252075, + 0.9989303946495056, + 0.995705783367157, + 0.995387613773346, + 0.9989008903503418, + 0.9987930059432983, + 0.9988213181495667 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.7142857142857143, + "NEGATIVE": 0.2857142857142857 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7142857142857143 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9935686588287354, + 0.998340368270874, + 0.9988019466400146, + 0.9989076852798462, + 0.9988407492637634, + 0.9989053010940552 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 0.8571428571428571, + "final_counts": { + "POSITIVE": 18, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + } + } }, { "season_code": "202303", @@ -217281,7 +451125,7 @@ "10:30", "11:20", "RKZ 08 - Rosenkranz Hall 08", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ], "Tuesday": [ @@ -217289,7 +451133,7 @@ "10:30", "11:20", "RKZ 08 - Rosenkranz Hall 08", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ], "Wednesday": [ @@ -217297,7 +451141,7 @@ "10:30", "11:20", "RKZ 08 - Rosenkranz Hall 08", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ], "Thursday": [ @@ -217305,7 +451149,7 @@ "10:30", "11:20", "RKZ 08 - Rosenkranz Hall 08", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ], "Friday": [ @@ -217313,7 +451157,7 @@ "10:30", "11:20", "RKZ 08 - Rosenkranz Hall 08", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -217327,10 +451171,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88467\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88467/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -217370,7 +451242,7 @@ "13:30", "15:20", "RKZ 102 - Rosenkranz Hall 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -217384,10 +451256,111 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88472\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88472/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989111423492432, + 0.9988601207733154, + 0.9989058971405029, + 0.9987803101539612, + 0.9986018538475037 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9969589710235596, + 0.9987708926200867, + 0.9988803267478943, + 0.9989339709281921, + 0.9974442720413208 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9954793453216553, + 0.9986547231674194, + 0.9989053010940552, + 0.9988651275634766, + 0.9988355040550232, + 0.9984233379364014, + 0.9989383816719055 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 6 + }, + "sentiment_distribution": { + "NEGATIVE": 0.14285714285714285, + "POSITIVE": 0.8571428571428571 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 0.9411764705882353, + "final_counts": { + "POSITIVE": 16, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9411764705882353, + "NEGATIVE": 0.058823529411764705 + } + } }, { "season_code": "202303", @@ -217428,7 +451401,7 @@ "13:30", "15:20", "RKZ 04 - Rosenkranz Hall 04", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -217446,10 +451419,87 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88477\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88477/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988580942153931, + 0.9987786412239075 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989128112792969, + 0.9987824559211731 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989303946495056, + 0.9989103078842163 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 6 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -217488,7 +451538,7 @@ "13:30", "15:20", "RKZ 241 - Rosenkranz Hall 241", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -217502,10 +451552,81 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88481\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88481/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988154172897339 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.998902440071106 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989281296730042 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 3, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 3 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -217543,7 +451664,7 @@ "13:30", "15:20", "BASSLB L70 - Bass Library L70", - "https:\/\/map.yale.edu\/?id=1910#!m\/564574" + "https://map.yale.edu/?id=1910#!m/564574" ] ] }, @@ -217559,10 +451680,95 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88486\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88486/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988886713981628, + 0.9988388419151306, + 0.9978620409965515 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988657236099243, + 0.9989016056060791, + 0.9865346550941467 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9814485907554626, + 0.998939573764801, + 0.9995026588439941 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 1 + }, + "sentiment_distribution": { + "NEGATIVE": 0.6666666666666666, + "POSITIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 0.6666666666666666, + "final_counts": { + "POSITIVE": 6, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + } + } }, { "season_code": "202303", @@ -217599,7 +451805,7 @@ "16:10", "17:30", "EVANS 4430 - Edward P Evans Hall 4430", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Wednesday": [ @@ -217607,7 +451813,7 @@ "16:10", "17:30", "EVANS 4430 - Edward P Evans Hall 4430", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -217622,10 +451828,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91294\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91294/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -217662,7 +451896,7 @@ "14:40", "17:40", "EVANS 4430 - Edward P Evans Hall 4430", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -217674,15 +451908,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91295\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91295/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "\"The most important questions in business, public policy and beyond often revolve around understanding how some variable X affects some other variable Y. For example: How will demand for my product respond to a change in price? Will advertising increase demand for my product? Does this microfinance project seeking funding from my organization reduce poverty? Should I hold back my child a year before they start school? Will the outcome of the next election affect the value of my stock portfolio? This course will examine when and how data can be used specifically to infer whether there is a causal relationship between two variables. We will emphasize the role of theory in interpreting data and guiding analysis, and explore advanced techniques for inferring causality, including: regression discontinuity designs; matching estimators; instrumental variables; synthetic controls; event studies; heterogeneity modeling; audit studies; randomized controlled trials; natural experiments (and unnatural experiments); and A\/B testing. Lectures will contain some proofs and derivations (only calculus is required), but the emphasis will be on understanding the underlying concepts, and the practical use, implications and limitations of these techniques. Students will work intensively with data, drawing from examples in business and public policy. The goals of the course are for students to become expert consumers and producers of convincing causal empirical analysis.\"\"\"", + "description": "\"The most important questions in business, public policy and beyond often revolve around understanding how some variable X affects some other variable Y. For example: How will demand for my product respond to a change in price? Will advertising increase demand for my product? Does this microfinance project seeking funding from my organization reduce poverty? Should I hold back my child a year before they start school? Will the outcome of the next election affect the value of my stock portfolio? This course will examine when and how data can be used specifically to infer whether there is a causal relationship between two variables. We will emphasize the role of theory in interpreting data and guiding analysis, and explore advanced techniques for inferring causality, including: regression discontinuity designs; matching estimators; instrumental variables; synthetic controls; event studies; heterogeneity modeling; audit studies; randomized controlled trials; natural experiments (and unnatural experiments); and A/B testing. Lectures will contain some proofs and derivations (only calculus is required), but the emphasis will be on understanding the underlying concepts, and the practical use, implications and limitations of these techniques. Students will work intensively with data, drawing from examples in business and public policy. The goals of the course are for students to become expert consumers and producers of convincing causal empirical analysis.\"\"\"", "short_title": "Data Analysis and Causal Infe...", "title": "Data Analysis and Causal Inference", "school": "MG", @@ -217714,7 +451976,7 @@ "10:10", "11:30", "EVANS 2400 - Edward P Evans Hall 2400", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Thursday": [ @@ -217722,7 +451984,7 @@ "10:10", "11:30", "EVANS 2400 - Edward P Evans Hall 2400", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -217736,10 +451998,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91296\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91296/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -217779,7 +452069,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -217816,7 +452134,7 @@ "8:30", "9:50", "EVANS 4200 - Edward P Evans Hall 4200", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Thursday": [ @@ -217824,7 +452142,7 @@ "8:30", "9:50", "EVANS 4200 - Edward P Evans Hall 4200", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -217836,15 +452154,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91297\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91297/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "Launched in 2008 at the Yale School of Management, the Global Social Entrepreneurship (GSE) course links teams of Yale students with social enterprises based in India. GSE is committed to channeling the skills of Yale students to assist Indian organizations to expand their reach and impact on \"base of the pyramid\" communities. Yale students partner with mission-driven social entrepreneurs (SEs) to focus on a specific management challenge that the student\/SE teams work together to address during the semester. GSE has worked with more than 50 leading and emerging Indian social enterprises engaged in economic development, sustainable energy, women\u2019s empowerment, education, environmental conservation, and affordable housing. The course covers both theoretical and practical issues, including case studies and discussions on social enterprise, developing a theory of change and related social metrics, financing social businesses, the role of civil society in India, framing a consulting engagement, managing team dynamics, etc. The course is taught by Tony Sheldon, Lecturer in the Practice of Management and Executive Director of SOM\u2019s Program on Social Enterprise. The course meets on Wednesday afternoons 2:40 \u2013 5:40 during Fall-2 and Spring-1. All students will travel to India to work on-site with their partner SEs, and for a convening of all the student\/SE project teams, in late January. As with the International Experience and the Global Network Immersion Week, students will be responsible for covering the costs of their round-trip airfare to India and related expenses (such as visa and immunizations). The School will cover in-country travel, hotel and related costs (based on available GSA days). Course enrollment is by application only. Students accepted and enrolled in GSE will allocate 150 of their fall course bidding points towards the course. This is considered a 6 unit course that spans fall-2 and spring-1. It may not be taken as a half semester course. 2 units are applied in fall-2 and 4 units applied in spring-1. If travel to India is cancelled the units will change from 4 to 2 in spring 2022.", + "description": "Launched in 2008 at the Yale School of Management, the Global Social Entrepreneurship (GSE) course links teams of Yale students with social enterprises based in India. GSE is committed to channeling the skills of Yale students to assist Indian organizations to expand their reach and impact on \"base of the pyramid\" communities. Yale students partner with mission-driven social entrepreneurs (SEs) to focus on a specific management challenge that the student/SE teams work together to address during the semester. GSE has worked with more than 50 leading and emerging Indian social enterprises engaged in economic development, sustainable energy, women\u2019s empowerment, education, environmental conservation, and affordable housing. The course covers both theoretical and practical issues, including case studies and discussions on social enterprise, developing a theory of change and related social metrics, financing social businesses, the role of civil society in India, framing a consulting engagement, managing team dynamics, etc. The course is taught by Tony Sheldon, Lecturer in the Practice of Management and Executive Director of SOM\u2019s Program on Social Enterprise. The course meets on Wednesday afternoons 2:40 \u2013 5:40 during Fall-2 and Spring-1. All students will travel to India to work on-site with their partner SEs, and for a convening of all the student/SE project teams, in late January. As with the International Experience and the Global Network Immersion Week, students will be responsible for covering the costs of their round-trip airfare to India and related expenses (such as visa and immunizations). The School will cover in-country travel, hotel and related costs (based on available GSA days). Course enrollment is by application only. Students accepted and enrolled in GSE will allocate 150 of their fall course bidding points towards the course. This is considered a 6 unit course that spans fall-2 and spring-1. It may not be taken as a half semester course. 2 units are applied in fall-2 and 4 units applied in spring-1. If travel to India is cancelled the units will change from 4 to 2 in spring 2022.", "short_title": "GlblSocialEntrprneurship:India", "title": "GlblSocialEntrprneurship:India", "school": "MG", @@ -217880,7 +452226,7 @@ "14:40", "17:40", "EVANS 4220 - Edward P Evans Hall 4220", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -217892,10 +452238,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91298\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91298/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -217932,7 +452306,7 @@ "14:40", "17:40", "EVANS 4220 - Edward P Evans Hall 4220", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -217946,10 +452320,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91299\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91299/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -217986,7 +452388,7 @@ "13:00", "14:20", "EVANS 4200 - Edward P Evans Hall 4200", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Thursday": [ @@ -217994,7 +452396,7 @@ "13:00", "14:20", "EVANS 4200 - Edward P Evans Hall 4200", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -218008,10 +452410,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91240\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91240/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -218048,7 +452478,7 @@ "14:40", "16:00", "EVANS 4200 - Edward P Evans Hall 4200", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Thursday": [ @@ -218056,7 +452486,7 @@ "14:40", "16:00", "EVANS 4200 - Edward P Evans Hall 4200", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -218070,10 +452500,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91241\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91241/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -218110,7 +452568,7 @@ "13:00", "14:20", "EVANS 4430 - Edward P Evans Hall 4430", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Wednesday": [ @@ -218118,7 +452576,7 @@ "13:00", "14:20", "EVANS 4430 - Edward P Evans Hall 4430", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -218130,15 +452588,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91300\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91300/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "Class will begin on September 5, 2023. There will be a make-up class on September 8, 2023. This course provides a description of current trends in inequality and social and intergenerational mobility in the US and abroad, their possible causes, and the impact of public policies in shaping these trends. Drawing primarily on empirical evidence from the economics literature, we will examine the role of income, racial, and residential segregation; of access to education; and of labor market policies in determining economic opportunities within and across generations. The course will also provide a set of analytical tools required to understand and critically \"consume\" empirical academic research, as well as public commentary and policy, related to this topic. Class sessions are a mixture of lectures and discussion based on assigned readings. Assessment will be based on class participation, one\/ two assignments, and a final project.", + "description": "Class will begin on September 5, 2023. There will be a make-up class on September 8, 2023. This course provides a description of current trends in inequality and social and intergenerational mobility in the US and abroad, their possible causes, and the impact of public policies in shaping these trends. Drawing primarily on empirical evidence from the economics literature, we will examine the role of income, racial, and residential segregation; of access to education; and of labor market policies in determining economic opportunities within and across generations. The course will also provide a set of analytical tools required to understand and critically \"consume\" empirical academic research, as well as public commentary and policy, related to this topic. Class sessions are a mixture of lectures and discussion based on assigned readings. Assessment will be based on class participation, one/ two assignments, and a final project.", "short_title": "Inequality & Social Mobility", "title": "Inequality & Social Mobility", "school": "MG", @@ -218170,7 +452656,7 @@ "16:10", "17:30", "EVANS 4200 - Edward P Evans Hall 4200", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Thursday": [ @@ -218178,7 +452664,7 @@ "16:10", "17:30", "EVANS 4200 - Edward P Evans Hall 4200", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -218192,10 +452678,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91301\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91301/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -218232,7 +452746,7 @@ "8:30", "9:50", "EVANS 4220 - Edward P Evans Hall 4220", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Wednesday": [ @@ -218240,7 +452754,7 @@ "8:30", "9:50", "EVANS 4220 - Edward P Evans Hall 4220", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -218252,10 +452766,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91302\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91302/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -218292,7 +452834,7 @@ "10:10", "11:30", "EVANS 4220 - Edward P Evans Hall 4220", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Wednesday": [ @@ -218300,7 +452842,7 @@ "10:10", "11:30", "EVANS 4220 - Edward P Evans Hall 4220", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -218312,10 +452854,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91302\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91302/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -218352,7 +452922,7 @@ "13:00", "14:20", "EVANS 4220 - Edward P Evans Hall 4220", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Wednesday": [ @@ -218360,7 +452930,7 @@ "13:00", "14:20", "EVANS 4220 - Edward P Evans Hall 4220", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -218372,10 +452942,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91302\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91302/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -218412,7 +453010,7 @@ "14:40", "16:00", "EVANS 4220 - Edward P Evans Hall 4220", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Wednesday": [ @@ -218420,7 +453018,7 @@ "14:40", "16:00", "EVANS 4220 - Edward P Evans Hall 4220", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -218432,10 +453030,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91302\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91302/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -218472,7 +453098,7 @@ "14:40", "17:40", "EVANS 2400 - Edward P Evans Hall 2400", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -218487,15 +453113,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91306\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91306/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "This course is designed to provide students with rich knowledge and skills necessary to design and prototype new products in a start-up context. Students will learn how to identify opportunities, frame hypotheses, develop and validate product concepts, \u00a0design and test prototypes, and user interface (UI) and user experiences (UX) design. \u00a0The course will cover topics such as design thinking, product-market fit, customer development, rapid prototyping, UI\/UX design. We will learn practices in frugal innovation, lean methods, user innovation, open source, web3 and metaverse, and GPT and AIGC tools, which greatly enrich and accelerate product development process.", + "description": "This course is designed to provide students with rich knowledge and skills necessary to design and prototype new products in a start-up context. Students will learn how to identify opportunities, frame hypotheses, develop and validate product concepts, \u00a0design and test prototypes, and user interface (UI) and user experiences (UX) design. \u00a0The course will cover topics such as design thinking, product-market fit, customer development, rapid prototyping, UI/UX design. We will learn practices in frugal innovation, lean methods, user innovation, open source, web3 and metaverse, and GPT and AIGC tools, which greatly enrich and accelerate product development process.", "short_title": "Customer Discovery & Rapid Pr...", "title": "Customer Discovery & Rapid Prototyping in Tech Entrepreneurship", "school": "MG", @@ -218527,7 +453181,7 @@ "8:30", "9:50", "EVANS 2200 - Edward P Evans Hall 2200", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Wednesday": [ @@ -218535,7 +453189,7 @@ "8:30", "9:50", "EVANS 2200 - Edward P Evans Hall 2200", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -218547,10 +453201,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91308\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91308/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -218587,7 +453269,7 @@ "13:00", "14:20", "EVANS 4200 - Edward P Evans Hall 4200", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Wednesday": [ @@ -218595,7 +453277,7 @@ "13:00", "14:20", "EVANS 4200 - Edward P Evans Hall 4200", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -218607,10 +453289,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91309\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91309/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -218647,7 +453357,7 @@ "14:40", "16:00", "EVANS 4200 - Edward P Evans Hall 4200", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Wednesday": [ @@ -218655,7 +453365,7 @@ "14:40", "16:00", "EVANS 4200 - Edward P Evans Hall 4200", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -218667,10 +453377,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91309\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91309/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -218707,7 +453445,7 @@ "10:10", "11:30", "EVANS 4200 - Edward P Evans Hall 4200", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Wednesday": [ @@ -218715,7 +453453,7 @@ "10:10", "11:30", "EVANS 4200 - Edward P Evans Hall 4200", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -218727,10 +453465,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91309\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91309/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -218767,7 +453533,7 @@ "8:30", "9:50", "EVANS 4400 - Edward P Evans Hall 4400", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Wednesday": [ @@ -218775,7 +453541,7 @@ "8:30", "9:50", "EVANS 4400 - Edward P Evans Hall 4400", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -218787,10 +453553,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91312\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91312/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -218827,7 +453621,7 @@ "10:10", "11:30", "EVANS 4400 - Edward P Evans Hall 4400", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Wednesday": [ @@ -218835,7 +453629,7 @@ "10:10", "11:30", "EVANS 4400 - Edward P Evans Hall 4400", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -218847,15 +453641,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91312\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91312/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "This course offers a systems analysis approach to describe and explain the basics of energy systems, including all forms of energy (fossil and renewable), all sectors\/activities of energy production\/conversion, and all end-uses, irrespective of the form of market transaction (commercial or noncommercial) or form of technology (traditional as well as novel advanced concepts) deployed. Students gain a comprehensive theoretical and empirical knowledge base from which to analyze energy-environmental issues as well as to participate effectively in policy debates. Special attention is given to introduce students to formal methods used to analyze energy systems or individual energy projects and to discuss also traditionally lesser-researched elements of energy systems (energy use in developing countries; energy densities and urban energy use; income, gender, and lifestyle differences in energy end-use patterns) in addition to currently dominant energy issues such as energy security and climate change. Active student participation is encouraged, including voluntary (extra credit) research projects with class presentations and participation in student debates. Completion of 6 problem sets and a final written exam are mandatory. Invited external speakers complement topics covered in class. This is a cross-listed course from the School of Forestry.", + "description": "This course offers a systems analysis approach to describe and explain the basics of energy systems, including all forms of energy (fossil and renewable), all sectors/activities of energy production/conversion, and all end-uses, irrespective of the form of market transaction (commercial or noncommercial) or form of technology (traditional as well as novel advanced concepts) deployed. Students gain a comprehensive theoretical and empirical knowledge base from which to analyze energy-environmental issues as well as to participate effectively in policy debates. Special attention is given to introduce students to formal methods used to analyze energy systems or individual energy projects and to discuss also traditionally lesser-researched elements of energy systems (energy use in developing countries; energy densities and urban energy use; income, gender, and lifestyle differences in energy end-use patterns) in addition to currently dominant energy issues such as energy security and climate change. Active student participation is encouraged, including voluntary (extra credit) research projects with class presentations and participation in student debates. Completion of 6 problem sets and a final written exam are mandatory. Invited external speakers complement topics covered in class. This is a cross-listed course from the School of Forestry.", "short_title": "Energy System Analysis", "title": "Energy System Analysis", "school": "MG", @@ -218888,7 +453710,7 @@ "9:00", "10:20", "KRN 301 - Kroon Hall 301", - "https:\/\/map.yale.edu\/?id=1910#!m\/559995" + "https://map.yale.edu/?id=1910#!m/559995" ] ], "Wednesday": [ @@ -218896,7 +453718,7 @@ "9:00", "10:20", "KRN 301 - Kroon Hall 301", - "https:\/\/map.yale.edu\/?id=1910#!m\/559995" + "https://map.yale.edu/?id=1910#!m/559995" ] ] }, @@ -218913,10 +453735,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90880\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90880/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -218954,7 +453804,7 @@ "13:00", "16:00", "EVANS 2210 - Edward P Evans Hall 2210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -218966,10 +453816,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91243\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91243/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -219006,7 +453884,7 @@ "13:00", "16:00", "EVANS 2210 - Edward P Evans Hall 2210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -219018,10 +453896,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91244\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91244/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -219058,7 +453964,7 @@ "8:30", "11:30", "EVANS 4400 - Edward P Evans Hall 4400", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -219072,10 +453978,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91315\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91315/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -219112,7 +454046,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -219149,7 +454111,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -219186,7 +454176,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -219223,7 +454241,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -219260,7 +454306,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -219297,7 +454371,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -219334,7 +454436,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -219371,7 +454501,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -219408,7 +454566,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -219445,7 +454631,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -219482,7 +454696,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -219519,7 +454761,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -219556,7 +454826,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -219593,7 +454891,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -219630,7 +454956,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -219667,7 +455021,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -219704,7 +455086,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -219741,7 +455151,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -219778,7 +455216,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -219815,7 +455281,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -219854,7 +455348,7 @@ "9:25", "11:15", "WTS B74 - Watson Center 60 Sachem Street B74", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -219866,10 +455360,99 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88359\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88359/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989244341850281, + 0.9989097118377686, + 0.9988629817962646, + 0.9989198446273804 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988501071929932, + 0.998322069644928, + 0.9988399147987366, + 0.998907208442688 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998898983001709, + 0.9988883137702942, + 0.9985051155090332, + 0.9983800649642944 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 12 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -219907,7 +455490,7 @@ "13:00", "14:20", "EVANS 4430 - Edward P Evans Hall 4430", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Thursday": [ @@ -219915,7 +455498,7 @@ "13:00", "14:20", "EVANS 4430 - Edward P Evans Hall 4430", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -219929,10 +455512,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91336\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91336/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -219969,7 +455580,7 @@ "10:10", "11:30", "EVANS 4430 - Edward P Evans Hall 4430", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Thursday": [ @@ -219977,7 +455588,7 @@ "10:10", "11:30", "EVANS 4430 - Edward P Evans Hall 4430", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -219991,10 +455602,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91337\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91337/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -220034,24 +455673,52 @@ "16:10", "19:10", "EVANS 4400 - Edward P Evans Hall 4400", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, "skills": [], "areas": [], "flags": [ - "PH: Global Health, Development\/Political Economy" + "PH: Global Health, Development/Political Economy" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91260\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91260/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -220091,7 +455758,7 @@ "11:35", "12:50", "YSB MARSH - Yale Science Building MARSH", - "https:\/\/map.yale.edu\/?id=1910#!m\/563700" + "https://map.yale.edu/?id=1910#!m/563700" ] ], "Thursday": [ @@ -220099,22 +455766,601 @@ "11:35", "12:50", "YSB MARSH - Yale Science Building MARSH", - "https:\/\/map.yale.edu\/?id=1910#!m\/563700" - ] - ] - }, - "skills": [], - "areas": [], - "flags": [], - "regnotes": "", - "rp_attr": "", - "classnotes": "", - "final_exam": "", - "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88301\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "https://map.yale.edu/?id=1910#!m/563700" + ] + ] + }, + "skills": [], + "areas": [], + "flags": [], + "regnotes": "", + "rp_attr": "", + "classnotes": "", + "final_exam": "", + "course_home_url": "", + "syllabus_url": "https://yale.instructure.com/courses/88301/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988328814506531, + 0.9987678527832031, + 0.9989029169082642, + 0.9987850785255432, + 0.9985333681106567, + 0.998874843120575, + 0.9987993240356445, + 0.9916856288909912, + 0.9987795948982239, + 0.992846667766571, + 0.9989186525344849, + 0.9987413287162781, + 0.9857977032661438, + 0.9986491799354553, + 0.9988352656364441, + 0.9988735318183899, + 0.9989136457443237, + 0.9989369511604309, + 0.9984112977981567, + 0.998889148235321, + 0.9985790252685547, + 0.9989058971405029, + 0.9988297820091248, + 0.9988999366760254, + 0.9987982511520386, + 0.9975742697715759, + 0.997580885887146, + 0.9989216327667236, + 0.9987282156944275, + 0.99814772605896, + 0.9989179372787476, + 0.99883633852005, + 0.9376633167266846, + 0.99861741065979, + 0.9987965822219849, + 0.9989234805107117, + 0.998908281326294, + 0.9838896989822388, + 0.9987568855285645, + 0.9987894892692566, + 0.9988409876823425, + 0.9988536834716797, + 0.998916506767273, + 0.9987753033638, + 0.9988309741020203, + 0.9986878037452698, + 0.9992117881774902, + 0.9988033771514893, + 0.998843789100647, + 0.9776723980903625, + 0.9975645542144775, + 0.9988446235656738, + 0.9988473653793335, + 0.9986982345581055, + 0.9903036952018738, + 0.9705064296722412, + 0.9989140033721924, + 0.9988831877708435, + 0.998897910118103, + 0.993658721446991, + 0.9988058805465698, + 0.9988296627998352, + 0.9988345503807068, + 0.9988833069801331, + 0.9988095760345459, + 0.9907042384147644, + 0.9988505840301514, + 0.9987712502479553, + 0.9987385869026184, + 0.9988734126091003, + 0.99809330701828, + 0.9989033937454224, + 0.9989109039306641, + 0.9988868832588196, + 0.9988898634910583, + 0.9947611689567566 + ], + "sentiment_counts": { + "POSITIVE": 69, + "NEGATIVE": 7 + }, + "sentiment_distribution": { + "POSITIVE": 0.9078947368421053, + "NEGATIVE": 0.09210526315789473 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9078947368421053 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988524913787842, + 0.9989342093467712, + 0.9989349246025085, + 0.9952126741409302, + 0.9986928105354309, + 0.9988322854042053, + 0.9987527132034302, + 0.9988521337509155, + 0.9984802603721619, + 0.9989323019981384, + 0.9988800883293152, + 0.9988971948623657, + 0.9989069700241089, + 0.9988536834716797, + 0.9974876642227173, + 0.9984444975852966, + 0.9994601607322693, + 0.9973527193069458, + 0.9988449811935425, + 0.9988797307014465, + 0.9988973140716553, + 0.9988452196121216, + 0.9986401200294495, + 0.9988596439361572, + 0.9989132881164551, + 0.9988672733306885, + 0.9989253878593445, + 0.9988951086997986, + 0.9989296793937683, + 0.8647946715354919, + 0.9988044500350952, + 0.9988201260566711, + 0.9988527297973633, + 0.9988943934440613, + 0.998814582824707, + 0.9907764792442322, + 0.9958012700080872, + 0.9988685846328735, + 0.997369647026062, + 0.9677252173423767, + 0.9988704323768616, + 0.998880922794342, + 0.9986574649810791, + 0.9988893866539001, + 0.9986768364906311, + 0.9994491934776306, + 0.9989185333251953, + 0.9988904595375061, + 0.9989345669746399, + 0.9987977743148804, + 0.9989196062088013, + 0.9871354699134827, + 0.9989036321640015, + 0.997565507888794, + 0.9994885921478271, + 0.9989306330680847, + 0.9986711740493774, + 0.9976551532745361, + 0.9987519979476929, + 0.9989110231399536, + 0.9987799525260925, + 0.9988604784011841, + 0.9989546537399292, + 0.999433696269989, + 0.9988986253738403, + 0.9988963603973389, + 0.9988654851913452, + 0.998879611492157, + 0.9993359446525574, + 0.9988881945610046, + 0.9988303780555725, + 0.9988094568252563, + 0.9988603591918945, + 0.998600423336029, + 0.9989230036735535, + 0.9987108707427979, + 0.9984436631202698, + 0.9948320388793945, + 0.9988206028938293, + 0.9974150657653809, + 0.9988582134246826, + 0.9989387392997742, + 0.9988917708396912, + 0.9988988637924194, + 0.9987918734550476, + 0.9986183643341064 + ], + "sentiment_counts": { + "POSITIVE": 75, + "NEGATIVE": 11 + }, + "sentiment_distribution": { + "POSITIVE": 0.872093023255814, + "NEGATIVE": 0.12790697674418605 + }, + "sentiment_overall": [ + "POSITIVE", + 0.872093023255814 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988653659820557, + 0.997117280960083, + 0.9982553124427795, + 0.9988961219787598, + 0.9989204406738281, + 0.9989281296730042, + 0.9988858103752136, + 0.9989022016525269, + 0.9989365935325623, + 0.9897352457046509, + 0.9915253520011902, + 0.9988810420036316, + 0.998927891254425, + 0.9989368319511414, + 0.9989221096038818, + 0.9988188147544861, + 0.9986863732337952, + 0.9969866871833801, + 0.9981594681739807, + 0.9989274144172668, + 0.9988725781440735, + 0.9988383650779724, + 0.9989064931869507, + 0.9989125728607178, + 0.9989036321640015, + 0.9988792538642883, + 0.9989277720451355, + 0.9988688826560974, + 0.9989233613014221, + 0.9987791180610657, + 0.9950087070465088, + 0.9988943934440613, + 0.9988545179367065, + 0.9989001750946045, + 0.998924195766449, + 0.9982967972755432, + 0.9986022114753723, + 0.9981766939163208, + 0.998323380947113, + 0.9989210367202759, + 0.9980652928352356, + 0.9988710284233093, + 0.9988687634468079, + 0.9989157915115356, + 0.9987446069717407, + 0.9987768530845642, + 0.9986080527305603, + 0.9995026588439941, + 0.9988376498222351, + 0.998927891254425, + 0.9989131689071655, + 0.9989184141159058, + 0.9813989996910095, + 0.9988642930984497, + 0.9987595081329346, + 0.998931348323822, + 0.998908519744873, + 0.9988783001899719, + 0.9988755583763123, + 0.9983327984809875, + 0.9989163875579834, + 0.9994763731956482, + 0.9983184337615967, + 0.9988032579421997, + 0.9989168643951416, + 0.997117280960083, + 0.9988829493522644, + 0.9989328980445862, + 0.9988662004470825, + 0.9988217949867249, + 0.9986963868141174, + 0.9989078044891357, + 0.9989161491394043, + 0.9967746138572693, + 0.9989290833473206, + 0.9989135265350342, + 0.9988150596618652, + 0.9989153146743774, + 0.9989232420921326, + 0.9989031553268433, + 0.9989168643951416, + 0.9963138699531555, + 0.9983408451080322, + 0.9988994598388672, + 0.998891294002533, + 0.9988792538642883, + 0.9988793730735779, + 0.9988914132118225, + 0.9987395405769348, + 0.998927891254425, + 0.9988341927528381, + 0.998869001865387, + 0.9970780611038208, + 0.9982553124427795 + ], + "sentiment_counts": { + "POSITIVE": 85, + "NEGATIVE": 9 + }, + "sentiment_distribution": { + "POSITIVE": 0.9042553191489362, + "NEGATIVE": 0.09574468085106383 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9042553191489362 + ] + }, + "final_label": "POSITIVE", + "final_count": 229, + "final_proportion": 0.89453125, + "final_counts": { + "POSITIVE": 229, + "NEGATIVE": 27 + }, + "final_distribution": { + "POSITIVE": 0.89453125, + "NEGATIVE": 0.10546875 + } + } }, { "season_code": "202303", @@ -220175,15 +456421,94 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88319\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88319/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "", - "description": "The application for this course will be available through Jackson and won't be posted until August. All public leaders must make choices that challenge their code of ethics. Sometimes, a chance of life or death is literally at stake: how and when should a leader decide to let some people die, or explicitly ask people to die to give others a chance to live? At other times, while life or death may not be at stake, a leader must still decide difficult issues: when to partner with unsavory characters, when to admit failure, when to release information or make choices transparent. The pandemic today makes clearer than ever the consequences of decisions in one community that can affect the entire world. This interdisciplinary seminar draws on perspectives from law, management, and public policy in exploring how leaders develop their principles, respond when their principles fail or conflict, and make real-world choices when, in fact, there are no good choices. Application ONLY: visit https:\/\/jackson.yale.edu\/academics\/registrar\/ in August to apply. Attendance at first session is mandatory. Location: Horchow Hall, 55 Hillhouse Avenue Course dates\/times: Fridays, 8:30-11:15am on Sept 8, 15, 29, Oct. 13, Nov 3, 17, Dec 1 AND on Thursday Nov 30, 6:00-8:00pm.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985900521278381, + 0.9989251494407654 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986591339111328, + 0.9989367127418518 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986397624015808, + 0.9989387392997742 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 1 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "final_label": "POSITIVE", + "final_count": 5, + "final_proportion": 0.8333333333333334, + "final_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + } + } + }, + { + "season_code": "202303", + "requirements": "", + "description": "The application for this course will be available through Jackson and won't be posted until August. All public leaders must make choices that challenge their code of ethics. Sometimes, a chance of life or death is literally at stake: how and when should a leader decide to let some people die, or explicitly ask people to die to give others a chance to live? At other times, while life or death may not be at stake, a leader must still decide difficult issues: when to partner with unsavory characters, when to admit failure, when to release information or make choices transparent. The pandemic today makes clearer than ever the consequences of decisions in one community that can affect the entire world. This interdisciplinary seminar draws on perspectives from law, management, and public policy in exploring how leaders develop their principles, respond when their principles fail or conflict, and make real-world choices when, in fact, there are no good choices. Application ONLY: visit https://jackson.yale.edu/academics/registrar/ in August to apply. Attendance at first session is mandatory. Location: Horchow Hall, 55 Hillhouse Avenue Course dates/times: Fridays, 8:30-11:15am on Sept 8, 15, 29, Oct. 13, Nov 3, 17, Dec 1 AND on Thursday Nov 30, 6:00-8:00pm.", "short_title": "Ethical Choices in Public Lea...", "title": "Ethical Choices in Public Leadership", "school": "MG", @@ -220216,7 +456541,7 @@ "8:30", "11:15", "HLH55 - HLH55", - "https:\/\/map.yale.edu\/?id=1910#!m\/560099" + "https://map.yale.edu/?id=1910#!m/560099" ] ] }, @@ -220225,13 +456550,41 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Location: Horchow Hall, 55 Hillhouse Avenue \nCourse dates\/times: Fridays, 8:30-11:15am on Sept 8, 15, 29, Oct. 13, Nov 3, 17, Dec 1 AND on Thursday Nov 30, 6:00-8:00pm. Application ONLY visit https:\/\/jackson.yale.edu\/academics\/registrar\/ in August to apply.", + "classnotes": "Location: Horchow Hall, 55 Hillhouse Avenue \nCourse dates/times: Fridays, 8:30-11:15am on Sept 8, 15, 29, Oct. 13, Nov 3, 17, Dec 1 AND on Thursday Nov 30, 6:00-8:00pm. Application ONLY visit https://jackson.yale.edu/academics/registrar/ in August to apply.", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89190\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89190/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -220275,7 +456628,7 @@ "9:30", "12:30", "SLB 121 - Sterling Law Buildings 121", - "https:\/\/map.yale.edu\/?id=1910#!m\/531532" + "https://map.yale.edu/?id=1910#!m/531532" ] ] }, @@ -220284,13 +456637,41 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Architecture courses will be open for registration on August 25 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. \n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https:\/\/www.architecture.yale.edu\/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on the YaleHub link: https:\/\/yub.yale.edu\/. ", + "classnotes": "Architecture courses will be open for registration on August 25 with limited seats. Non-YSOA students should follow the following procedures to register for a YSOA course: \n(1)\tYale College Students must request permission to register using the form, \u201cRequest to Enroll in a Professional School Course. \n\n(2)\tProfessional and Graduate students should submit the \"Request to Take Course at Architecture (Graduate or Professional School)\" form is available on our website https://www.architecture.yale.edu/forms-resources.\n\nRegistration for Non-YSOA students is not official until the YSOA Registrar notifies your Registrar and the course appears on the YaleHub link: https://yub.yale.edu/. ", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91447\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91447/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -220327,7 +456708,7 @@ "14:40", "16:00", "EVANS 4420 - Edward P Evans Hall 4420", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Thursday": [ @@ -220335,7 +456716,7 @@ "14:40", "16:00", "EVANS 4420 - Edward P Evans Hall 4420", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -220350,12 +456731,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "Leaders for business and society need an array of competencies, but for leaders who work in global\/multinational environments, there are additional skills, abilities, and knowledge needed to be successful. This course is designed to help students learn about and practice the mindsets and skills necessary to be more flexible, resilient, and confident when working across geographic, interpersonal and cultural contexts. The central focus is to increase students\u2019 personal and interpersonal skills necessary for more effective leadership in global contexts.", + "description": "Leaders for business and society need an array of competencies, but for leaders who work in global/multinational environments, there are additional skills, abilities, and knowledge needed to be successful. This course is designed to help students learn about and practice the mindsets and skills necessary to be more flexible, resilient, and confident when working across geographic, interpersonal and cultural contexts. The central focus is to increase students\u2019 personal and interpersonal skills necessary for more effective leadership in global contexts.", "short_title": "Global Leadership: Increasing...", "title": "Global Leadership: Increasing Personal and Interpersonal Effectiveness", "school": "MG", @@ -220387,29 +456796,57 @@ "16:10", "19:10", "EVANS 1300 - Edward P Evans Hall 1300", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, "skills": [], "areas": [], "flags": [ - "PH: Global Health, Development\/Political Economy" + "PH: Global Health, Development/Political Economy" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91343\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91343/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "This course is about experiencing social innovation. Over the course of the semester, students form innovation teams working with real-world organizations representing multiple topic areas including health, education, climate, civic engagement, and other topics. We will apply the ten-stage framework of the textbook \"Social Entrepreneurship: Building Impact Step by Step.\" Partner organizations are social enterprises or other social purpose organizations based globally and locally who present Yale students with a problem statement to work on over the course of one semester. This could include creating new programs or products, reaching new populations, measuring the impact of existing work, creating new communications tools for existing work, or other challenges. Students gain social innovation and entrepreneurship experience, and partner organizations benefit from students\u2019 problem solving. Students from all programs and concentrations at Yale are welcome to join Jackson students in forming inter-disciplinary teams to tackle social and environmental challenges. This course runs during the same semester as the Social Entrepreneurship Lab at Yale School of Management, which is also cross-listed. The key distinction is that in the former, students pick their own topic to research and ideate on, whereas in this course students work on projects for existing organizations. Jackson students may elect to follow up on this course with an independent study and\/or summer internship with the partner organization, to help support implementation of their solution, if the partner organization and the school administration accepts their application.", + "description": "This course is about experiencing social innovation. Over the course of the semester, students form innovation teams working with real-world organizations representing multiple topic areas including health, education, climate, civic engagement, and other topics. We will apply the ten-stage framework of the textbook \"Social Entrepreneurship: Building Impact Step by Step.\" Partner organizations are social enterprises or other social purpose organizations based globally and locally who present Yale students with a problem statement to work on over the course of one semester. This could include creating new programs or products, reaching new populations, measuring the impact of existing work, creating new communications tools for existing work, or other challenges. Students gain social innovation and entrepreneurship experience, and partner organizations benefit from students\u2019 problem solving. Students from all programs and concentrations at Yale are welcome to join Jackson students in forming inter-disciplinary teams to tackle social and environmental challenges. This course runs during the same semester as the Social Entrepreneurship Lab at Yale School of Management, which is also cross-listed. The key distinction is that in the former, students pick their own topic to research and ideate on, whereas in this course students work on projects for existing organizations. Jackson students may elect to follow up on this course with an independent study and/or summer internship with the partner organization, to help support implementation of their solution, if the partner organization and the school administration accepts their application.", "short_title": "Social Innovation Starter", "title": "Social Innovation Starter", "school": "MG", @@ -220444,7 +456881,7 @@ "9:00", "11:00", "WTS B52 - Watson Center 60 Sachem Street B52", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -220456,15 +456893,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89996\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89996/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "The purpose of this course is to provide full-time Yale SOM students with a mechanism to work on their start-up ventures for credit, applying principles derived from their other coursework, particularly the integrated core curriculum. Students in this course articulate milestones for their ventures and work with faculty, staff, and mentors to meet those milestones. Generally, the course employs \"lean\" methodology. Admission to the course is restricted to students in a full-time program at Yale SOM who have formed a venture prior to the beginning of the class. Admission is by application only and is limited to Yale SOM students and joint degree students. To apply for Fall 2023, please fill out the application at https:\/\/forms.gle\/SavSMn8AqX6SywNr5 and provide all relevant supplementary documents. Applications are due by 11:59 PM on Saturday, 8\/5 and students will be notified of admission into the class by Friday, 8\/11. No bid points will be applied to this course. If you have any questions, please contact Jennifer McFadden, Lecturer and Associate Director of Entrepreneurial Programs at jennifer.mcfadden@yale.edu.", + "description": "The purpose of this course is to provide full-time Yale SOM students with a mechanism to work on their start-up ventures for credit, applying principles derived from their other coursework, particularly the integrated core curriculum. Students in this course articulate milestones for their ventures and work with faculty, staff, and mentors to meet those milestones. Generally, the course employs \"lean\" methodology. Admission to the course is restricted to students in a full-time program at Yale SOM who have formed a venture prior to the beginning of the class. Admission is by application only and is limited to Yale SOM students and joint degree students. To apply for Fall 2023, please fill out the application at https://forms.gle/SavSMn8AqX6SywNr5 and provide all relevant supplementary documents. Applications are due by 11:59 PM on Saturday, 8/5 and students will be notified of admission into the class by Friday, 8/11. No bid points will be applied to this course. If you have any questions, please contact Jennifer McFadden, Lecturer and Associate Director of Entrepreneurial Programs at jennifer.mcfadden@yale.edu.", "short_title": "Start-up Founder Practicum", "title": "Start-up Founder Practicum", "school": "MG", @@ -220496,7 +456961,7 @@ "11:40", "12:50", "EVANS 4230 - Edward P Evans Hall 4230", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -220511,7 +456976,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -220548,7 +457041,7 @@ "10:10", "11:30", "EVANS 4420 - Edward P Evans Hall 4420", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Thursday": [ @@ -220556,7 +457049,7 @@ "10:10", "11:30", "EVANS 4420 - Edward P Evans Hall 4420", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -220568,15 +457061,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91345\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91345/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "This 6-credit, project-based course gives students exposure to some of the complex questions and challenges on the minds of top marketing executives today. In this experiential learning course, each small group of students will be paired with a leading corporation and will work alongside experienced faculty and advisors to tackle a current business challenge. This course applies theories in Behavioral Science to help uncover the drivers of consumers\u2019 beliefs and motivations. These insights will then be used to meet the real-world marketing challenge and results will be presented to high-level managers within the participating firm. Students will learn how to go from problem to solution in real-world situations. Each five-member student team will meet at least once per week as a group, and will attend weekly faculty advising meetings. Approximately 10 mandatory lectures \/ course events will take place on Wednesdays from 5:45-7:15PM EST, dates TBC. This course is by application only; there are no bid points assigned. See YCCI site for more information: https:\/\/som.yale.edu\/faculty-research-centers\/centers-initiatives\/center-for-customer-insights\/discovery-projects", + "description": "This 6-credit, project-based course gives students exposure to some of the complex questions and challenges on the minds of top marketing executives today. In this experiential learning course, each small group of students will be paired with a leading corporation and will work alongside experienced faculty and advisors to tackle a current business challenge. This course applies theories in Behavioral Science to help uncover the drivers of consumers\u2019 beliefs and motivations. These insights will then be used to meet the real-world marketing challenge and results will be presented to high-level managers within the participating firm. Students will learn how to go from problem to solution in real-world situations. Each five-member student team will meet at least once per week as a group, and will attend weekly faculty advising meetings. Approximately 10 mandatory lectures / course events will take place on Wednesdays from 5:45-7:15PM EST, dates TBC. This course is by application only; there are no bid points assigned. See YCCI site for more information: https://som.yale.edu/faculty-research-centers/centers-initiatives/center-for-customer-insights/discovery-projects", "short_title": "CustomerInsights&Applications", "title": "CustomerInsights&Applications", "school": "MG", @@ -220614,7 +457135,7 @@ "17:45", "19:15", "EVANS 4400 - Edward P Evans Hall 4400", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -220626,15 +457147,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91245\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91245/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "Students in this course will learn how to manage software development teams through the process of building a basic web application. We will discuss \"agile\", continuous delivery, \"devops\", and related management practices. Along the way, students will acquire elementary software development skills for creating consumer web applications including both front-end development (typically HTML, JavaScript and CSS) and back-end development (typically Google\u2019s Go language). The coursework in MGT656 typically includes homework (mostly programming assignments completed individually), pre-class quizzes, in-class exams, and a group final project. Some experience programming is beneficial, though not necessary for the motivated student. The course is open to all Yale students. In some semesters MGT660 is offered as an advanced version of this course. For more information, see the class website at http:\/\/656.mba (offline between semesters).", + "description": "Students in this course will learn how to manage software development teams through the process of building a basic web application. We will discuss \"agile\", continuous delivery, \"devops\", and related management practices. Along the way, students will acquire elementary software development skills for creating consumer web applications including both front-end development (typically HTML, JavaScript and CSS) and back-end development (typically Google\u2019s Go language). The coursework in MGT656 typically includes homework (mostly programming assignments completed individually), pre-class quizzes, in-class exams, and a group final project. Some experience programming is beneficial, though not necessary for the motivated student. The course is open to all Yale students. In some semesters MGT660 is offered as an advanced version of this course. For more information, see the class website at http://656.mba (offline between semesters).", "short_title": "Management of Software Develo...", "title": "Management of Software Development", "school": "MG", @@ -220666,7 +457215,7 @@ "14:40", "16:00", "EVANS 4430 - Edward P Evans Hall 4430", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Wednesday": [ @@ -220674,7 +457223,7 @@ "14:40", "16:00", "EVANS 4430 - Edward P Evans Hall 4430", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -220686,10 +457235,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91346\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91346/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -220726,7 +457303,7 @@ "10:10", "12:00", "BAKER 116 - Baker Hall 116", - "https:\/\/map.yale.edu\/?id=1910#!m\/563680" + "https://map.yale.edu/?id=1910#!m/563680" ] ], "Wednesday": [ @@ -220734,7 +457311,7 @@ "10:10", "12:00", "BAKER 116 - Baker Hall 116", - "https:\/\/map.yale.edu\/?id=1910#!m\/563680" + "https://map.yale.edu/?id=1910#!m/563680" ] ] }, @@ -220746,10 +457323,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91780\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91780/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -220786,7 +457391,7 @@ "14:40", "17:40", "EVANS 4400 - Edward P Evans Hall 4400", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -220798,10 +457403,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91347\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91347/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -220838,7 +457471,7 @@ "16:10", "17:35", "SLB 128 - Sterling Law Buildings 128", - "https:\/\/map.yale.edu\/?id=1910#!m\/531532" + "https://map.yale.edu/?id=1910#!m/531532" ] ], "Wednesday": [ @@ -220846,7 +457479,7 @@ "16:10", "17:35", "SLB 128 - Sterling Law Buildings 128", - "https:\/\/map.yale.edu\/?id=1910#!m\/531532" + "https://map.yale.edu/?id=1910#!m/531532" ] ] }, @@ -220858,10 +457491,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91792\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91792/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -220898,7 +457559,7 @@ "10:10", "11:30", "EVANS 2410 - Edward P Evans Hall 2410", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Thursday": [ @@ -220906,7 +457567,7 @@ "10:10", "11:30", "EVANS 2410 - Edward P Evans Hall 2410", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -220918,10 +457579,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91348\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91348/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -220958,7 +457647,7 @@ "18:10", "19:10", "SLB 112 - Sterling Law Buildings 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/531532" + "https://map.yale.edu/?id=1910#!m/531532" ] ] }, @@ -220970,10 +457659,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91791\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91791/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -221010,7 +457727,7 @@ "10:10", "11:30", "EVANS 4200 - Edward P Evans Hall 4200", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Thursday": [ @@ -221018,7 +457735,7 @@ "10:10", "11:30", "EVANS 4200 - Edward P Evans Hall 4200", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -221032,10 +457749,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91247\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91247/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -221073,7 +457818,7 @@ "15:30", "17:20", "WTS A42 - Watson Center 60 Sachem Street A42", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -221085,15 +457830,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92516\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92516/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "Attendance for this course will be virtual for students outside of the MBA\/MD and MBA\/MPH joint degree programs and you will be enrolled as an auditor (no credit) for AY 2021-2022. The Colloquium in Healthcare Leadership brings prominent leaders from public, private, and nonprofit healthcare organizations to campus for candid discussions. You will deepen your understanding of the major trends in healthcare as well as the challenges of being a leader in this space. (The course provides credit (2 School of Management units) in the spring semester for a full-year of attendance. Only students that have been attending fall sessions can enroll in the spring). Thursday Evening Series - 6:30 PM , Beaumont Room, Sterling Hall of Medicine (2nd Floor), 333 Cedar Street http:\/\/som.yale.edu\/programs\/joint-degrees\/medicine\/colloquium-in-healthcare-leadership-thursday-evening-series", + "description": "Attendance for this course will be virtual for students outside of the MBA/MD and MBA/MPH joint degree programs and you will be enrolled as an auditor (no credit) for AY 2021-2022. The Colloquium in Healthcare Leadership brings prominent leaders from public, private, and nonprofit healthcare organizations to campus for candid discussions. You will deepen your understanding of the major trends in healthcare as well as the challenges of being a leader in this space. (The course provides credit (2 School of Management units) in the spring semester for a full-year of attendance. Only students that have been attending fall sessions can enroll in the spring). Thursday Evening Series - 6:30 PM , Beaumont Room, Sterling Hall of Medicine (2nd Floor), 333 Cedar Street http://som.yale.edu/programs/joint-degrees/medicine/colloquium-in-healthcare-leadership-thursday-evening-series", "short_title": "ColloquiumHealthcareLeadership", "title": "ColloquiumHealthcareLeadership", "school": "MG", @@ -221137,10 +457910,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91349\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91349/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -221180,7 +457981,7 @@ "13:00", "14:20", "EVANS 4210 - Edward P Evans Hall 4210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Thursday": [ @@ -221188,7 +457989,7 @@ "13:00", "14:20", "EVANS 4210 - Edward P Evans Hall 4210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -221200,10 +458001,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91353\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91353/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -221240,7 +458069,7 @@ "13:00", "14:20", "EVANS 2400 - Edward P Evans Hall 2400", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Wednesday": [ @@ -221248,7 +458077,7 @@ "13:00", "14:20", "EVANS 2400 - Edward P Evans Hall 2400", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -221260,10 +458089,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91354\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91354/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -221300,7 +458157,7 @@ "14:40", "16:00", "EVANS 2200 - Edward P Evans Hall 2200", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Wednesday": [ @@ -221308,7 +458165,7 @@ "14:40", "16:00", "EVANS 2200 - Edward P Evans Hall 2200", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -221320,10 +458177,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91355\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91355/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -221360,7 +458245,7 @@ "16:10", "17:30", "EVANS 2200 - Edward P Evans Hall 2200", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Wednesday": [ @@ -221368,7 +458253,7 @@ "16:10", "17:30", "EVANS 2200 - Edward P Evans Hall 2200", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -221380,10 +458265,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91356\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91356/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -221420,7 +458333,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -221457,7 +458398,7 @@ "10:10", "11:30", "EVANS 4420 - Edward P Evans Hall 4420", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Wednesday": [ @@ -221465,7 +458406,7 @@ "10:10", "11:30", "EVANS 4420 - Edward P Evans Hall 4420", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -221477,10 +458418,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91248\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91248/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -221517,7 +458486,7 @@ "13:00", "14:20", "EVANS 4420 - Edward P Evans Hall 4420", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Wednesday": [ @@ -221525,7 +458494,7 @@ "13:00", "14:20", "EVANS 4420 - Edward P Evans Hall 4420", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -221537,10 +458506,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91248\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91248/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -221577,7 +458574,7 @@ "8:30", "9:50", "EVANS 4420 - Edward P Evans Hall 4420", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Wednesday": [ @@ -221585,7 +458582,7 @@ "8:30", "9:50", "EVANS 4420 - Edward P Evans Hall 4420", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -221597,10 +458594,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91248\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91248/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -221640,7 +458665,7 @@ "16:10", "19:10", "EVANS 4420 - Edward P Evans Hall 4420", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -221652,10 +458677,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91359\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91359/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -221692,7 +458745,7 @@ "13:00", "14:20", "EVANS 4420 - Edward P Evans Hall 4420", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Thursday": [ @@ -221700,7 +458753,7 @@ "13:00", "14:20", "EVANS 4420 - Edward P Evans Hall 4420", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -221717,7 +458770,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -221754,7 +458835,7 @@ "10:10", "11:30", "EVANS 4430 - Edward P Evans Hall 4430", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Wednesday": [ @@ -221762,7 +458843,7 @@ "10:10", "11:30", "EVANS 4430 - Edward P Evans Hall 4430", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -221774,10 +458855,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92632\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92632/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -221814,7 +458923,7 @@ "13:00", "14:20", "EVANS 2210 - Edward P Evans Hall 2210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Wednesday": [ @@ -221822,7 +458931,7 @@ "13:00", "14:20", "EVANS 2210 - Edward P Evans Hall 2210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -221834,10 +458943,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91361\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91361/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -221874,7 +459011,7 @@ "16:10", "19:10", "EVANS 2400 - Edward P Evans Hall 2400", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -221886,10 +459023,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91362\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91362/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -221926,7 +459091,7 @@ "14:40", "17:40", "EVANS 4210 - Edward P Evans Hall 4210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -221937,16 +459102,44 @@ "rp_attr": "", "classnotes": "", "final_exam": "", - "course_home_url": "https:\/\/yale.instructure.com\/courses\/91363", + "course_home_url": "https://yale.instructure.com/courses/91363", "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "This course focuses on the investment decision process of leveraged buyout (LBO) firms. Students will gain an understanding of how private equity professionals evaluate opportunities and manage due diligence. Topics covered include early deal screening, thesis\/risk assessment, due diligence, business forecasting and LBO modeling, debt structure alternatives, and value creation strategies. Classes will be comprised of discussions of organizational frameworks and practices of PE firms, and group analysis of LBO transactions. Student teams will prepare investment materials based on transaction case studies which mirror a PE firm\u2019s process of evaluating LBO opportunities.", + "description": "This course focuses on the investment decision process of leveraged buyout (LBO) firms. Students will gain an understanding of how private equity professionals evaluate opportunities and manage due diligence. Topics covered include early deal screening, thesis/risk assessment, due diligence, business forecasting and LBO modeling, debt structure alternatives, and value creation strategies. Classes will be comprised of discussions of organizational frameworks and practices of PE firms, and group analysis of LBO transactions. Student teams will prepare investment materials based on transaction case studies which mirror a PE firm\u2019s process of evaluating LBO opportunities.", "short_title": "Private Equity: Leveraged Buy...", "title": "Private Equity: Leveraged Buyouts", "school": "MG", @@ -221978,7 +459171,7 @@ "16:10", "19:10", "EVANS 4420 - Edward P Evans Hall 4420", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -221990,10 +459183,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91364\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91364/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -222030,7 +459251,7 @@ "10:10", "11:30", "EVANS 4430 - Edward P Evans Hall 4430", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Thursday": [ @@ -222038,7 +459259,7 @@ "10:10", "11:30", "EVANS 4430 - Edward P Evans Hall 4430", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -222050,10 +459271,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91365\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91365/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -222090,7 +459339,7 @@ "8:30", "9:50", "EVANS 4430 - Edward P Evans Hall 4430", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Thursday": [ @@ -222098,7 +459347,7 @@ "8:30", "9:50", "EVANS 4430 - Edward P Evans Hall 4430", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -222110,15 +459359,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91365\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91365/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "\"Any company is confronted with management decision problems that require collection and analysis of data, as well as managerial knowledge and experience to interpret the data correctly. \"Strategic Market Measurement\" will equip you with practical data analysis tools to implement marketing strategies you have learned in the core \"Customer\" course. It is a prerequisite for \"Listening to the Customer\" (MGT 852) - which will be offered in Fall 2 - where you learn how to collect the right qualitative and quantitative data in order to answer management decision problems. \"Strategic Market Measurement\" is thus the first part of a classic \"Marketing Research\" class offered in most MBA programs, but can also be taken separately if you would like to get a \"hands-on\" introduction to basic data analysis concepts and tools. This course is also a good preparation for the MGT 556 (\"Big Data for Customer Analytics\") and MGT 869 (\"Machine Learning for Customer Analytics\") offered in the Spring. After successful completion of \"Strategic Market Management,\" you will be able to 1) conduct data analysis techniques such as Hypothesis testing, A\/B testing, multi-armed bandit approach (which is frequently used to test website designs, products, email marketing, \u2026), Logistic regression and discriminant analysis (which is frequently used for one-to-one marketing, targeting, \u2026), Cluster Analysis (which is frequently used for market segmentation, determination of the competitive set, \u2026), Factor analysis, perceptual maps (which is used for positioning of a brand, dealing with multi-colinearity in regressions, \u2026), Conjoint analysis (which is frequently used for new product development and market simulations). 2) choose and apply the correct tool to implement marketing strategies. 3) evaluate how a specific data analysis tool can inform your marketing strategies and understand the limitations of each statistical analysis. We will first practice each concept using simple, small data sets for educational purposes and then apply them to \"real\" data that I am collecting from a pre-course student survey. The group projects, the final assessment of your learning in this course, will consist of an application to company data.\"\"\"", + "description": "\"Any company is confronted with management decision problems that require collection and analysis of data, as well as managerial knowledge and experience to interpret the data correctly. \"Strategic Market Measurement\" will equip you with practical data analysis tools to implement marketing strategies you have learned in the core \"Customer\" course. It is a prerequisite for \"Listening to the Customer\" (MGT 852) - which will be offered in Fall 2 - where you learn how to collect the right qualitative and quantitative data in order to answer management decision problems. \"Strategic Market Measurement\" is thus the first part of a classic \"Marketing Research\" class offered in most MBA programs, but can also be taken separately if you would like to get a \"hands-on\" introduction to basic data analysis concepts and tools. This course is also a good preparation for the MGT 556 (\"Big Data for Customer Analytics\") and MGT 869 (\"Machine Learning for Customer Analytics\") offered in the Spring. After successful completion of \"Strategic Market Management,\" you will be able to 1) conduct data analysis techniques such as Hypothesis testing, A/B testing, multi-armed bandit approach (which is frequently used to test website designs, products, email marketing, \u2026), Logistic regression and discriminant analysis (which is frequently used for one-to-one marketing, targeting, \u2026), Cluster Analysis (which is frequently used for market segmentation, determination of the competitive set, \u2026), Factor analysis, perceptual maps (which is used for positioning of a brand, dealing with multi-colinearity in regressions, \u2026), Conjoint analysis (which is frequently used for new product development and market simulations). 2) choose and apply the correct tool to implement marketing strategies. 3) evaluate how a specific data analysis tool can inform your marketing strategies and understand the limitations of each statistical analysis. We will first practice each concept using simple, small data sets for educational purposes and then apply them to \"real\" data that I am collecting from a pre-course student survey. The group projects, the final assessment of your learning in this course, will consist of an application to company data.\"\"\"", "short_title": "Strategic Market Measurement", "title": "Strategic Market Measurement", "school": "MG", @@ -222150,7 +459427,7 @@ "8:30", "9:50", "EVANS 4410 - Edward P Evans Hall 4410", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Thursday": [ @@ -222158,7 +459435,7 @@ "8:30", "9:50", "EVANS 4410 - Edward P Evans Hall 4410", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -222170,15 +459447,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91367\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91367/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "\"Any company is confronted with management decision problems that require collection and analysis of data, as well as managerial knowledge and experience to interpret the data correctly. \"Strategic Market Measurement\" will equip you with practical data analysis tools to implement marketing strategies you have learned in the core \"Customer\" course. It is a prerequisite for \"Listening to the Customer\" (MGT 852) - which will be offered in Fall 2 - where you learn how to collect the right qualitative and quantitative data in order to answer management decision problems. \"Strategic Market Measurement\" is thus the first part of a classic \"Marketing Research\" class offered in most MBA programs, but can also be taken separately if you would like to get a \"hands-on\" introduction to basic data analysis concepts and tools. This course is also a good preparation for the MGT 556 (\"Big Data for Customer Analytics\") and MGT 869 (\"Machine Learning for Customer Analytics\") offered in the Spring. After successful completion of \"Strategic Market Management,\" you will be able to 1) conduct data analysis techniques such as Hypothesis testing, A\/B testing, multi-armed bandit approach (which is frequently used to test website designs, products, email marketing, \u2026), Logistic regression and discriminant analysis (which is frequently used for one-to-one marketing, targeting, \u2026), Cluster Analysis (which is frequently used for market segmentation, determination of the competitive set, \u2026), Factor analysis, perceptual maps (which is used for positioning of a brand, dealing with multi-colinearity in regressions, \u2026), Conjoint analysis (which is frequently used for new product development and market simulations). 2) choose and apply the correct tool to implement marketing strategies. 3) evaluate how a specific data analysis tool can inform your marketing strategies and understand the limitations of each statistical analysis. We will first practice each concept using simple, small data sets for educational purposes and then apply them to \"real\" data that I am collecting from a pre-course student survey. The group projects, the final assessment of your learning in this course, will consist of an application to company data.\"\"\"", + "description": "\"Any company is confronted with management decision problems that require collection and analysis of data, as well as managerial knowledge and experience to interpret the data correctly. \"Strategic Market Measurement\" will equip you with practical data analysis tools to implement marketing strategies you have learned in the core \"Customer\" course. It is a prerequisite for \"Listening to the Customer\" (MGT 852) - which will be offered in Fall 2 - where you learn how to collect the right qualitative and quantitative data in order to answer management decision problems. \"Strategic Market Measurement\" is thus the first part of a classic \"Marketing Research\" class offered in most MBA programs, but can also be taken separately if you would like to get a \"hands-on\" introduction to basic data analysis concepts and tools. This course is also a good preparation for the MGT 556 (\"Big Data for Customer Analytics\") and MGT 869 (\"Machine Learning for Customer Analytics\") offered in the Spring. After successful completion of \"Strategic Market Management,\" you will be able to 1) conduct data analysis techniques such as Hypothesis testing, A/B testing, multi-armed bandit approach (which is frequently used to test website designs, products, email marketing, \u2026), Logistic regression and discriminant analysis (which is frequently used for one-to-one marketing, targeting, \u2026), Cluster Analysis (which is frequently used for market segmentation, determination of the competitive set, \u2026), Factor analysis, perceptual maps (which is used for positioning of a brand, dealing with multi-colinearity in regressions, \u2026), Conjoint analysis (which is frequently used for new product development and market simulations). 2) choose and apply the correct tool to implement marketing strategies. 3) evaluate how a specific data analysis tool can inform your marketing strategies and understand the limitations of each statistical analysis. We will first practice each concept using simple, small data sets for educational purposes and then apply them to \"real\" data that I am collecting from a pre-course student survey. The group projects, the final assessment of your learning in this course, will consist of an application to company data.\"\"\"", "short_title": "Strategic Market Measurement", "title": "Strategic Market Measurement", "school": "MG", @@ -222210,7 +459515,7 @@ "10:10", "11:30", "EVANS 4410 - Edward P Evans Hall 4410", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Thursday": [ @@ -222218,7 +459523,7 @@ "10:10", "11:30", "EVANS 4410 - Edward P Evans Hall 4410", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -222230,10 +459535,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91367\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91367/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -222270,7 +459603,7 @@ "13:00", "14:20", "EVANS 4210 - Edward P Evans Hall 4210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Thursday": [ @@ -222278,7 +459611,7 @@ "13:00", "14:20", "EVANS 4210 - Edward P Evans Hall 4210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -222290,10 +459623,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91369\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91369/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -222330,7 +459691,7 @@ "14:40", "16:00", "EVANS 4210 - Edward P Evans Hall 4210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Thursday": [ @@ -222338,7 +459699,7 @@ "14:40", "16:00", "EVANS 4210 - Edward P Evans Hall 4210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -222350,10 +459711,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91369\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91369/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -222390,7 +459779,7 @@ "16:10", "17:30", "EVANS 4210 - Edward P Evans Hall 4210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Thursday": [ @@ -222398,7 +459787,7 @@ "16:10", "17:30", "EVANS 4210 - Edward P Evans Hall 4210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -222410,10 +459799,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91369\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91369/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -222453,7 +459870,7 @@ "14:40", "17:40", "EVANS 4430 - Edward P Evans Hall 4430", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -222465,15 +459882,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91372\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91372/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "Do you want a bigger pay raise? This half-semester elective will help you better negotiate with your boss, potential investors, clients, peers, and perhaps most formidable of all, friends and family. Through practice cases negotiated with classmates, you will obtain a set of tools (e.g., lie-detection\/prevention techniques, collaboration techniques) to improve the way you create and claim value. The class is both intense and fun. There are no prerequisites, and there are a few seats saved for non-SOM students. Sign up before enrollment is full.", + "description": "Do you want a bigger pay raise? This half-semester elective will help you better negotiate with your boss, potential investors, clients, peers, and perhaps most formidable of all, friends and family. Through practice cases negotiated with classmates, you will obtain a set of tools (e.g., lie-detection/prevention techniques, collaboration techniques) to improve the way you create and claim value. The class is both intense and fun. There are no prerequisites, and there are a few seats saved for non-SOM students. Sign up before enrollment is full.", "short_title": "Negotiations", "title": "Negotiations", "school": "MG", @@ -222505,7 +459950,7 @@ "8:30", "11:30", "EVANS 4400 - Edward P Evans Hall 4400", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -222519,15 +459964,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91373\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91373/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "Do you want a bigger pay raise? This half-semester elective will help you better negotiate with your boss, potential investors, clients, peers, and perhaps most formidable of all, friends and family. Through practice cases negotiated with classmates, you will obtain a set of tools (e.g., lie-detection\/prevention techniques, collaboration techniques) to improve the way you create and claim value. The class is both intense and fun. There are no prerequisites, and there are a few seats saved for non-SOM students. Sign up before enrollment is full.", + "description": "Do you want a bigger pay raise? This half-semester elective will help you better negotiate with your boss, potential investors, clients, peers, and perhaps most formidable of all, friends and family. Through practice cases negotiated with classmates, you will obtain a set of tools (e.g., lie-detection/prevention techniques, collaboration techniques) to improve the way you create and claim value. The class is both intense and fun. There are no prerequisites, and there are a few seats saved for non-SOM students. Sign up before enrollment is full.", "short_title": "Negotiations", "title": "Negotiations", "school": "MG", @@ -222559,7 +460032,7 @@ "13:00", "16:00", "EVANS 4400 - Edward P Evans Hall 4400", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -222573,15 +460046,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91374\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91374/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "Do you want a bigger pay raise? This half-semester elective will help you better negotiate with your boss, potential investors, clients, peers, and perhaps most formidable of all, friends and family. Through practice cases negotiated with classmates, you will obtain a set of tools (e.g., lie-detection\/prevention techniques, collaboration techniques) to improve the way you create and claim value. The class is both intense and fun. There are no prerequisites, and there are a few seats saved for non-SOM students. Sign up before enrollment is full.", + "description": "Do you want a bigger pay raise? This half-semester elective will help you better negotiate with your boss, potential investors, clients, peers, and perhaps most formidable of all, friends and family. Through practice cases negotiated with classmates, you will obtain a set of tools (e.g., lie-detection/prevention techniques, collaboration techniques) to improve the way you create and claim value. The class is both intense and fun. There are no prerequisites, and there are a few seats saved for non-SOM students. Sign up before enrollment is full.", "short_title": "Negotiations", "title": "Negotiations", "school": "MG", @@ -222613,7 +460114,7 @@ "13:00", "16:00", "EVANS 4400 - Edward P Evans Hall 4400", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -222625,10 +460126,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91375\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91375/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -222670,7 +460199,7 @@ "13:00", "14:20", "EVANS 2400 - Edward P Evans Hall 2400", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Thursday": [ @@ -222678,7 +460207,7 @@ "13:00", "14:20", "EVANS 2400 - Edward P Evans Hall 2400", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -222690,15 +460219,216 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91376\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91376/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "", - "description": "This half semester course will provide an introduction to real estate development, investment, finance and strategy outside of the United States. Global investment in financial assets, the need for risk diversification, the increased accuracy of property records, greater transparency, more relaxed laws permitting foreign investment, and population movement around the world\u2014all of these trends have led to a tremendous increase in cross-border real estate investing for both private equity and public companies. While many studies of international real estate focus on the role of foreign real property in the U. S. institutional portfolio, this course will take a wider and more historical view of the cultural attitudes towards real estate around the world and how they impact the quality and risk of investment assets. Detailed analysis will begin with property level due diligence in order to provide a fundamental understanding of how and why property markets differ by country beyond simple supply\/demand dynamics. This course will consist of three parts: a.) a micro-market analysis of real property characteristics in various countries around the world, including financing, leasing and valuation; b.) an analysis of investment vehicles\u2014public and private\u2014available to institutional investors, as well as cross-border transactions, and c.) a macro-market view of world space and capital markets, the rationale for international investing, trends in capital flows and portfolio composition and the various ways in which risk is measured and mitigated. Each part of the course will require a brief individual assignment completed over a two-week period. The first research project will be a study of a significant real property asset outside of the United States, including its market, ownership, legal structure, valuation, and transaction history. Both the G-8 and G-20 nations will be the object of study, but individual students are free to concentrate on any country of interest. The second research project will consist of an analysis of a private equity or publicly-traded foreign property company, its current fair value, competitive advantage and future prospects. An interview with a top executive of a company will be encouraged and facilitated. The third research project will consist of a comparative analysis of world property markets and the hypothetical investment in a portfolio of real estate assets across three or more foreign property markets. The course will consist of lectures, discussion, case studies and readings on international real estate from a variety of sources. No final exam or group project will be required.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989088773727417, + 0.9989094734191895, + 0.9963840246200562, + 0.9989087581634521, + 0.9988449811935425, + 0.998381495475769, + 0.9987321496009827, + 0.9932696223258972, + 0.9988447427749634, + 0.9987480640411377, + 0.998752236366272, + 0.9986697435379028, + 0.9925482869148254, + 0.9986465573310852, + 0.9987859129905701, + 0.9988889098167419, + 0.9988905787467957, + 0.9989097118377686, + 0.9987688660621643, + 0.9988158941268921, + 0.9988059997558594 + ], + "sentiment_counts": { + "POSITIVE": 20, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9523809523809523, + "NEGATIVE": 0.047619047619047616 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9523809523809523 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988442659378052, + 0.9989211559295654, + 0.9986534118652344, + 0.9987027645111084, + 0.9980021119117737, + 0.9988382458686829, + 0.9911856055259705, + 0.999417781829834, + 0.9979094862937927, + 0.9981579184532166, + 0.9980608820915222, + 0.9921026825904846, + 0.9991815686225891, + 0.9982477426528931, + 0.9595071077346802, + 0.9917184114456177, + 0.9948939085006714, + 0.9989126920700073, + 0.9988045692443848, + 0.9988516569137573, + 0.9988731741905212, + 0.9988073110580444, + 0.9989381432533264, + 0.998777449131012 + ], + "sentiment_counts": { + "POSITIVE": 18, + "NEGATIVE": 6 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994586110115051, + 0.9989323019981384, + 0.9978334307670593, + 0.9989314675331116, + 0.9989346861839294, + 0.9987173080444336, + 0.9989073276519775, + 0.9978169202804565, + 0.9478885531425476, + 0.9990455508232117, + 0.9988546371459961, + 0.9994947910308838, + 0.9967663288116455, + 0.998862624168396, + 0.9989227652549744, + 0.9989007711410522, + 0.998934805393219, + 0.9984074234962463, + 0.9986627101898193, + 0.9989176988601685, + 0.9987670183181763, + 0.9988954067230225 + ], + "sentiment_counts": { + "NEGATIVE": 4, + "POSITIVE": 18 + }, + "sentiment_distribution": { + "NEGATIVE": 0.18181818181818182, + "POSITIVE": 0.8181818181818182 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8181818181818182 + ] + }, + "final_label": "POSITIVE", + "final_count": 56, + "final_proportion": 0.835820895522388, + "final_counts": { + "POSITIVE": 56, + "NEGATIVE": 11 + }, + "final_distribution": { + "POSITIVE": 0.835820895522388, + "NEGATIVE": 0.16417910447761194 + } + } + }, + { + "season_code": "202303", + "requirements": "", + "description": "This half semester course will provide an introduction to real estate development, investment, finance and strategy outside of the United States. Global investment in financial assets, the need for risk diversification, the increased accuracy of property records, greater transparency, more relaxed laws permitting foreign investment, and population movement around the world\u2014all of these trends have led to a tremendous increase in cross-border real estate investing for both private equity and public companies. While many studies of international real estate focus on the role of foreign real property in the U. S. institutional portfolio, this course will take a wider and more historical view of the cultural attitudes towards real estate around the world and how they impact the quality and risk of investment assets. Detailed analysis will begin with property level due diligence in order to provide a fundamental understanding of how and why property markets differ by country beyond simple supply/demand dynamics. This course will consist of three parts: a.) a micro-market analysis of real property characteristics in various countries around the world, including financing, leasing and valuation; b.) an analysis of investment vehicles\u2014public and private\u2014available to institutional investors, as well as cross-border transactions, and c.) a macro-market view of world space and capital markets, the rationale for international investing, trends in capital flows and portfolio composition and the various ways in which risk is measured and mitigated. Each part of the course will require a brief individual assignment completed over a two-week period. The first research project will be a study of a significant real property asset outside of the United States, including its market, ownership, legal structure, valuation, and transaction history. Both the G-8 and G-20 nations will be the object of study, but individual students are free to concentrate on any country of interest. The second research project will consist of an analysis of a private equity or publicly-traded foreign property company, its current fair value, competitive advantage and future prospects. An interview with a top executive of a company will be encouraged and facilitated. The third research project will consist of a comparative analysis of world property markets and the hypothetical investment in a portfolio of real estate assets across three or more foreign property markets. The course will consist of lectures, discussion, case studies and readings on international real estate from a variety of sources. No final exam or group project will be required.", "short_title": "International Real Estate", "title": "International Real Estate", "school": "MG", @@ -222730,7 +460460,7 @@ "16:10", "19:10", "EVANS 2200 - Edward P Evans Hall 2200", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -222742,10 +460472,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91377\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91377/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -222782,7 +460540,7 @@ "12:30", "14:30", "EVANS 2410 - Edward P Evans Hall 2410", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -222794,10 +460552,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91378\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91378/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -222834,7 +460620,7 @@ "16:10", "19:10", "EVANS 4410 - Edward P Evans Hall 4410", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -222846,10 +460632,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91379\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91379/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -222886,7 +460700,7 @@ "10:10", "11:30", "EVANS 2400 - Edward P Evans Hall 2400", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Wednesday": [ @@ -222894,7 +460708,7 @@ "10:10", "11:30", "EVANS 2400 - Edward P Evans Hall 2400", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -222906,10 +460720,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91380\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91380/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -222946,7 +460788,7 @@ "8:30", "11:30", "EVANS 2410 - Edward P Evans Hall 2410", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -222958,10 +460800,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91381\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91381/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -223001,7 +460871,7 @@ "13:00", "14:20", "EVANS 4400 - Edward P Evans Hall 4400", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Wednesday": [ @@ -223009,7 +460879,7 @@ "13:00", "14:20", "EVANS 4400 - Edward P Evans Hall 4400", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -223021,10 +460891,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91251\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91251/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -223064,7 +460962,7 @@ "14:40", "16:00", "EVANS 4400 - Edward P Evans Hall 4400", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Wednesday": [ @@ -223072,7 +460970,7 @@ "14:40", "16:00", "EVANS 4400 - Edward P Evans Hall 4400", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -223084,10 +460982,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91251\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91251/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -223124,7 +461050,7 @@ "10:10", "11:30", "EVANS 4400 - Edward P Evans Hall 4400", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Wednesday": [ @@ -223132,7 +461058,7 @@ "10:10", "11:30", "EVANS 4400 - Edward P Evans Hall 4400", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -223146,10 +461072,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91253\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91253/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -223186,7 +461140,7 @@ "14:40", "16:00", "EVANS 4410 - Edward P Evans Hall 4410", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Wednesday": [ @@ -223194,7 +461148,7 @@ "14:40", "16:00", "EVANS 4410 - Edward P Evans Hall 4410", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -223208,10 +461162,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91253\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91253/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -223255,7 +461237,7 @@ "14:40", "16:00", "EVANS 2210 - Edward P Evans Hall 2210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Wednesday": [ @@ -223263,7 +461245,7 @@ "14:40", "16:00", "EVANS 2210 - Edward P Evans Hall 2210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -223275,10 +461257,38 @@ "classnotes": "This is an SOM course but Jackson School students may request enrollment between April 14-24. Others will need to follow the SOM enrollment process which opens in August.", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91259\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/91259/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -223315,15 +461325,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91382\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91382/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "This course is designed to help students develop the skills they need to conduct first rate fundamental analysis. It is a learning by doing format and you will \"do\" by conducting in-depth industry and company analyses, writing reports, and presenting and defending results. Each team of two students analyzes and reports on one industry and three companies. Most of the class time is spent on presenting and discussing the reports. Grades depend on the reports and insightful contributions to class discussion. Reports of exceptional quality are posted to the Internet at https:\/\/analystreports.som.yale.edu\/ for public downloading and comment with the authors\u2019 names on them.", + "description": "This course is designed to help students develop the skills they need to conduct first rate fundamental analysis. It is a learning by doing format and you will \"do\" by conducting in-depth industry and company analyses, writing reports, and presenting and defending results. Each team of two students analyzes and reports on one industry and three companies. Most of the class time is spent on presenting and discussing the reports. Grades depend on the reports and insightful contributions to class discussion. Reports of exceptional quality are posted to the Internet at https://analystreports.som.yale.edu/ for public downloading and comment with the authors\u2019 names on them.", "short_title": "Security Analysis & Valuation", "title": "Security Analysis & Valuation", "school": "MG", @@ -223355,7 +461393,7 @@ "10:10", "11:30", "EVANS 2210 - Edward P Evans Hall 2210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Wednesday": [ @@ -223363,7 +461401,7 @@ "10:10", "11:30", "EVANS 2210 - Edward P Evans Hall 2210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -223375,10 +461413,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91383\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91383/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -223418,7 +461484,7 @@ "13:00", "14:40", "EVANS 4210 - Edward P Evans Hall 4210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -223430,10 +461496,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91384\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91384/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -223464,7 +461558,7 @@ "9:00", "11:00", "EVANS - EVANS", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -223479,7 +461573,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -223510,7 +461632,7 @@ "8:30", "11:30", "EVANS - EVANS", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -223525,7 +461647,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -223571,7 +461721,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -223629,10 +461807,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91388\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91388/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -223690,10 +461896,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91388\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91388/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -223730,7 +461964,7 @@ "17:00", "19:00", "EVANS - EVANS", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Thursday": [ @@ -223738,7 +461972,7 @@ "17:00", "19:00", "EVANS - EVANS", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -223753,7 +461987,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -223799,7 +462061,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -223830,7 +462120,7 @@ "18:00", "20:00", "EVANS - EVANS", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -223845,7 +462135,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -223876,7 +462194,7 @@ "9:00", "11:00", "EVANS - EVANS", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Wednesday": [ @@ -223884,7 +462202,7 @@ "9:00", "11:00", "EVANS - EVANS", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Friday": [ @@ -223892,7 +462210,7 @@ "9:00", "11:00", "EVANS - EVANS", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -223907,7 +462225,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -223953,7 +462299,7 @@ "13:00", "14:15", "HQ 132 - Humanities Quadrangle 132", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -223961,7 +462307,7 @@ "13:00", "14:15", "HQ 132 - Humanities Quadrangle 132", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -223973,10 +462319,87 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88370\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88370/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988937973976135, + 0.9988699555397034 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9950098991394043, + 0.9987722039222717 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988951086997986, + 0.9988582134246826 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 6 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -224013,7 +462436,7 @@ "14:40", "16:00", "EVANS 2200 - Edward P Evans Hall 2200", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ], "Wednesday": [ @@ -224021,7 +462444,7 @@ "14:40", "16:00", "EVANS 2200 - Edward P Evans Hall 2200", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -224033,15 +462456,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91394\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91394/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "This year-long workshop focuses on the concepts, debates, methodologies, theories, and real-world constraints of the material histories of the human record across a range of formats and media. Organized around six rubrics\u2014Collecting, Describing, Displaying, Embodying, Disembodying, and Representing\u2014we aim to cut across long-standing divides between collections, archives and libraries, on the hand, and scholarly\/artistic spaces of the academic world; between preservation and consumption; between privacy and publicity; between the social sciences and the humanities.\u00a0Through critical readings that engage with diverse geographic and temporal subjects; the close analysis and physical handling of rare books, maps, manuscripts, images, objects, and textiles; and an orientation to cultural heritage and library professional practices and procedures, students learn the critical interventions of the history of the book and the archival turn in the humanities; the\u00a0key concepts and genealogies of archives and library special collections; and the generative collaborations currently underway between faculty and librarians to jointly address legacies of racism and white privilege, advance intellectual freedom and parity, and define the ethical stewardship of the material histories of the human record today. This workshop takes the form of a half-credit course in each semester that meets six times a term (every other week).\u00a0This course must be taken before or after MHHR 701 to earn 1 full credit.\u00a0We welcome all curious students to the first class, but permission of the instructors is subsequently required for enrollment\/registration.", + "description": "This year-long workshop focuses on the concepts, debates, methodologies, theories, and real-world constraints of the material histories of the human record across a range of formats and media. Organized around six rubrics\u2014Collecting, Describing, Displaying, Embodying, Disembodying, and Representing\u2014we aim to cut across long-standing divides between collections, archives and libraries, on the hand, and scholarly/artistic spaces of the academic world; between preservation and consumption; between privacy and publicity; between the social sciences and the humanities.\u00a0Through critical readings that engage with diverse geographic and temporal subjects; the close analysis and physical handling of rare books, maps, manuscripts, images, objects, and textiles; and an orientation to cultural heritage and library professional practices and procedures, students learn the critical interventions of the history of the book and the archival turn in the humanities; the\u00a0key concepts and genealogies of archives and library special collections; and the generative collaborations currently underway between faculty and librarians to jointly address legacies of racism and white privilege, advance intellectual freedom and parity, and define the ethical stewardship of the material histories of the human record today. This workshop takes the form of a half-credit course in each semester that meets six times a term (every other week).\u00a0This course must be taken before or after MHHR 701 to earn 1 full credit.\u00a0We welcome all curious students to the first class, but permission of the instructors is subsequently required for enrollment/registration.", "short_title": "Theory and Praxis of Material...", "title": "Theory and Praxis of Material Histories", "school": "GS", @@ -224076,7 +462527,7 @@ "15:30", "17:20", "BRBL 38 - Beinecke Rare Book Library 38", - "https:\/\/map.yale.edu\/?id=1910#!m\/531533" + "https://map.yale.edu/?id=1910#!m/531533" ] ] }, @@ -224085,13 +462536,41 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Class meets 9\/1 (to make up for the Labor Day holiday) and then 9\/11, 9\/25, 10\/9, 10\/23, 11\/6, 12\/4.", + "classnotes": "Class meets 9/1 (to make up for the Labor Day holiday) and then 9/11, 9/25, 10/9, 10/23, 11/6, 12/4.", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90512\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90512/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -224130,7 +462609,7 @@ "13:30", "15:20", "WLH 004 - William L. Harkness Hall 004", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -224142,10 +462621,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90231\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90231/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -224184,7 +462691,7 @@ "15:30", "17:20", "LC 206 - Linsly-Chittenden Hall 206", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -224196,10 +462703,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89348\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89348/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -224239,7 +462774,7 @@ "10:30", "11:20", "LORIA 351 - Loria Center 351", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ], "Wednesday": [ @@ -224247,7 +462782,7 @@ "10:30", "11:20", "LORIA 351 - Loria Center 351", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -224261,7 +462796,7 @@ "YC HistofArt: 1500-1800", "YC HistofArt: Transchron", "YC HistofArt: Transregional", - "YC HistofArt: Asia\/Near East", + "YC HistofArt: Asia/Near East", "YC MDVL: Nr East & N Africa" ], "regnotes": "", @@ -224269,10 +462804,165 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88363\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88363/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9968078136444092, + 0.9988483190536499, + 0.8139111399650574, + 0.9988471269607544, + 0.9988279938697815, + 0.9989147186279297, + 0.9962338805198669, + 0.9989122152328491, + 0.998839795589447, + 0.998469889163971, + 0.9970951080322266, + 0.9986948370933533, + 0.9988358616828918 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9230769230769231, + "NEGATIVE": 0.07692307692307693 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9230769230769231 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988831877708435, + 0.9985210299491882, + 0.9953655004501343, + 0.919914960861206, + 0.9978929162025452, + 0.9989249110221863, + 0.9988729357719421, + 0.9989274144172668, + 0.9989389777183533, + 0.9987909197807312, + 0.9986699819564819, + 0.9984334111213684, + 0.9893514513969421, + 0.9987282156944275, + 0.9985567927360535 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.7333333333333333, + "NEGATIVE": 0.26666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7333333333333333 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988988637924194, + 0.9989264607429504, + 0.9985346794128418, + 0.9824399948120117, + 0.9946346282958984, + 0.9986942410469055, + 0.9983599781990051, + 0.9989287257194519, + 0.9989047050476074, + 0.9989331364631653, + 0.998633086681366, + 0.9890312552452087, + 0.997117280960083, + 0.9877563714981079, + 0.9994623064994812, + 0.9989323019981384 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.8125, + "NEGATIVE": 0.1875 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8125 + ] + }, + "final_label": "POSITIVE", + "final_count": 36, + "final_proportion": 0.8181818181818182, + "final_counts": { + "POSITIVE": 36, + "NEGATIVE": 8 + }, + "final_distribution": { + "POSITIVE": 0.8181818181818182, + "NEGATIVE": 0.18181818181818182 + } + } }, { "season_code": "202303", @@ -224306,7 +462996,7 @@ "10:30", "11:20", "LC 213 - Linsly-Chittenden Hall 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -224323,7 +463013,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -224357,7 +463075,7 @@ "17:00", "17:50", "HQ C15 - Humanities Quadrangle C15", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -224374,7 +463092,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -224433,7 +463179,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -224467,7 +463241,7 @@ "19:00", "19:50", "HQ 313 - Humanities Quadrangle 313", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -224484,7 +463258,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -224535,7 +463337,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -224569,7 +463399,7 @@ "17:00", "17:50", "HQ C15 - Humanities Quadrangle C15", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -224586,7 +463416,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -224645,7 +463503,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -224704,7 +463590,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -224738,7 +463652,7 @@ "17:00", "17:50", "HQ 313 - Humanities Quadrangle 313", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -224755,7 +463669,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -224789,7 +463731,7 @@ "10:30", "11:20", "WLH 014 - William L. Harkness Hall 014", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -224806,7 +463748,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -224872,10 +463842,85 @@ "classnotes": "", "final_exam": "Friday, December 15, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89643\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89643/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986761212348938 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998141884803772, + 0.9985087513923645 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9990181922912598 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 0 + }, + "sentiment_distribution": { + "NEGATIVE": 1.0, + "POSITIVE": 0.0 + }, + "sentiment_overall": [ + "NEGATIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 3, + "final_proportion": 0.75, + "final_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + } + } }, { "season_code": "202303", @@ -224910,7 +463955,7 @@ "11:35", "12:25", "HQ 401 - Humanities Quadrangle 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -224927,7 +463972,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -224962,7 +464035,7 @@ "10:30", "11:20", "LC 317 - Linsly-Chittenden Hall 317", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -224979,7 +464052,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -225024,7 +464125,7 @@ "11:35", "12:50", "HQ 307 - Humanities Quadrangle 307", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -225032,7 +464133,7 @@ "11:35", "12:50", "HQ 307 - Humanities Quadrangle 307", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -225057,10 +464158,109 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88080\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88080/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9975146055221558, + 0.9974174499511719, + 0.9988190531730652, + 0.9983605742454529, + 0.998916506767273 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994046688079834, + 0.9984863996505737, + 0.9987554550170898, + 0.9995070695877075, + 0.9988973140716553, + 0.9988811612129211 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 4 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984442591667175, + 0.9970195889472961, + 0.9945054650306702, + 0.999510645866394, + 0.9989393353462219 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 0.8125, + "final_counts": { + "POSITIVE": 13, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.8125, + "NEGATIVE": 0.1875 + } + } }, { "season_code": "202303", @@ -225100,7 +464300,7 @@ "11:35", "12:50", "WLH 115 - William L. Harkness Hall 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -225108,7 +464308,7 @@ "11:35", "12:50", "WLH 115 - William L. Harkness Hall 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -225122,10 +464322,103 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89237\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89237/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987500905990601, + 0.9987700581550598, + 0.9988369345664978, + 0.9988104104995728 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998916506767273, + 0.997928261756897, + 0.9988961219787598, + 0.9966838955879211 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988834261894226, + 0.9988922476768494, + 0.9988200068473816, + 0.9984257221221924, + 0.9988338351249695, + 0.990307092666626 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 14 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -225167,7 +464460,7 @@ "14:30", "15:45", "HQ 129 - Humanities Quadrangle 129", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -225175,7 +464468,7 @@ "14:30", "15:45", "HQ 129 - Humanities Quadrangle 129", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -225193,10 +464486,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89239\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89239/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -225237,7 +464558,7 @@ "9:00", "10:15", "WLH 115 - William L. Harkness Hall 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -225245,7 +464566,7 @@ "9:00", "10:15", "WLH 115 - William L. Harkness Hall 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -225259,10 +464580,99 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89238\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89238/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983246922492981, + 0.9988728165626526, + 0.9986433386802673, + 0.9988020658493042 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981042146682739, + 0.998875081539154, + 0.9988712668418884, + 0.9989253878593445 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988529682159424, + 0.9988498687744141, + 0.9988981485366821, + 0.9989317059516907 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 12 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -225301,7 +464711,7 @@ "14:30", "15:45", "WLH 004 - William L. Harkness Hall 004", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -225309,7 +464719,7 @@ "14:30", "15:45", "WLH 004 - William L. Harkness Hall 004", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -225323,10 +464733,38 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89215\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89215/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -225365,7 +464803,7 @@ "11:35", "12:50", "HQ 317 - Humanities Quadrangle 317", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -225373,7 +464811,7 @@ "11:35", "12:50", "HQ 317 - Humanities Quadrangle 317", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -225390,7 +464828,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -225428,7 +464894,7 @@ "16:00", "17:15", "HQ C64 - Humanities Quadrangle C64", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -225436,7 +464902,7 @@ "16:00", "17:15", "HQ C64 - Humanities Quadrangle C64", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -225452,15 +464918,70 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89222\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89222/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9980109333992004, + 0.9986377358436584 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986938834190369, + 0.9985283613204956 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 4, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 4 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", "requirements": "Readings, including primary Genizah sources, are in English translation, but students with knowledge of Arabic will be offered an additional weekly session providing instruction in\u00a0reading Judeo-Arabic and centered on readings of sources in the Judeo-Arabic\u00a0original.", - "description": "Ancient and medieval Jews did not throw away Hebrew texts they considered sacred, but rather, they\u00a0deposited and\/or buried them in dedicated rooms known as Genizot. The most famous of these\u00a0depositories was in the Ben Ezra Synagogue in Old Cairo, which contained perhaps the single most\u00a0important trove ever discovered of Jewish literary and documentary sources from around the\u00a0Mediterranean basin, sources dating as early as the ninth century and extending into the early\u00a0modern period. This course introduces students to the Jewish manuscript remains of the medieval\u00a0Cairo Genizah as well as other important Cairo manuscript caches. Students study the wide\u00a0\nvariety of types of literary and documentary genres in these collections, and gain familiarity\u00a0with the history of the Genizah\u2019s discovery in the late nineteenth and early twentieth century as\u00a0well as the acquisition of these manuscripts by institutions outside the Middle East (including\u00a0Harvard).", + "description": "Ancient and medieval Jews did not throw away Hebrew texts they considered sacred, but rather, they\u00a0deposited and/or buried them in dedicated rooms known as Genizot. The most famous of these\u00a0depositories was in the Ben Ezra Synagogue in Old Cairo, which contained perhaps the single most\u00a0important trove ever discovered of Jewish literary and documentary sources from around the\u00a0Mediterranean basin, sources dating as early as the ninth century and extending into the early\u00a0modern period. This course introduces students to the Jewish manuscript remains of the medieval\u00a0Cairo Genizah as well as other important Cairo manuscript caches. Students study the wide\u00a0\nvariety of types of literary and documentary genres in these collections, and gain familiarity\u00a0with the history of the Genizah\u2019s discovery in the late nineteenth and early twentieth century as\u00a0well as the acquisition of these manuscripts by institutions outside the Middle East (including\u00a0Harvard).", "short_title": "The Cairo Genizot and their L...", "title": "The Cairo Genizot and their Literatures", "school": "YC", @@ -225495,7 +465016,7 @@ "13:30", "15:20", "WLH 011 - William L. Harkness Hall 011", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -225510,11 +465031,39 @@ "rp_attr": "", "classnotes": "", "final_exam": "HTBA", - "course_home_url": "https:\/\/yale.instructure.com\/courses\/90554", - "syllabus_url": "", - "fysem": false, - "sysem": false, - "colsem": false + "course_home_url": "https://yale.instructure.com/courses/90554", + "syllabus_url": "", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -225556,7 +465105,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -225596,7 +465173,7 @@ "10:30", "11:20", "WLH 116 - William L. Harkness Hall 116", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -225604,7 +465181,7 @@ "10:30", "11:20", "WLH 116 - William L. Harkness Hall 116", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -225618,10 +465195,101 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88906\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88906/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9974307417869568, + 0.9988592863082886, + 0.9989388585090637 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988848567008972, + 0.9984784722328186, + 0.9989389777183533, + 0.9976162910461426 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989210367202759, + 0.9988842606544495, + 0.9988515377044678, + 0.9988043308258057, + 0.9985300302505493 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 0.9166666666666666, + "final_counts": { + "POSITIVE": 11, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + } + } }, { "season_code": "202303", @@ -225654,7 +465322,7 @@ "9:25", "10:15", "HQ C01 - Humanities Quadrangle C01", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -225671,7 +465339,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -225704,7 +465400,7 @@ "16:00", "16:50", "LC 104 - Linsly-Chittenden Hall 104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -225721,7 +465417,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -225754,7 +465478,7 @@ "17:00", "17:50", "LC 103 - Linsly-Chittenden Hall 103", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -225771,7 +465495,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -225804,7 +465556,7 @@ "10:30", "11:20", "WALL53 208 - 53 Wall Street 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/559554" + "https://map.yale.edu/?id=1910#!m/559554" ] ] }, @@ -225821,7 +465573,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -225861,7 +465641,7 @@ "13:30", "15:20", "RKZ 05 - Rosenkranz Hall 05", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -225880,10 +465660,121 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88792\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88792/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989345669746399, + 0.9988642930984497, + 0.9987000226974487, + 0.9989055395126343, + 0.9989038705825806, + 0.998897910118103 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998870313167572, + 0.9988762736320496, + 0.9985916018486023, + 0.9988872408866882, + 0.9988853335380554, + 0.998897910118103, + 0.9988659620285034 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988710284233093, + 0.9989325404167175, + 0.9898777604103088, + 0.998649537563324, + 0.9989272952079773, + 0.9988763928413391, + 0.9989022016525269, + 0.9989399313926697, + 0.999453604221344 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.7777777777777778, + "NEGATIVE": 0.2222222222222222 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7777777777777778 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 0.9090909090909091, + "final_counts": { + "POSITIVE": 20, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + } + } }, { "season_code": "202303", @@ -225924,7 +465815,7 @@ "13:30", "15:20", "HQ 317 - Humanities Quadrangle 317", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -225951,10 +465842,87 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88105\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88105/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987886548042297, + 0.9987472295761108 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989280104637146, + 0.9989338517189026 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998802900314331, + 0.9989396929740906 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 6 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -225997,7 +465965,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -226040,7 +466036,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -226077,7 +466101,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -226149,7 +466201,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -226205,7 +466285,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -226261,7 +466369,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -226298,7 +466434,7 @@ "9:00", "10:15", "LEIGH 402 - Leigh Hall (435 College) 402", - "https:\/\/map.yale.edu\/?id=1910#!m\/559539" + "https://map.yale.edu/?id=1910#!m/559539" ] ], "Wednesday": [ @@ -226306,7 +466442,7 @@ "9:00", "10:15", "LEIGH 402 - Leigh Hall (435 College) 402", - "https:\/\/map.yale.edu\/?id=1910#!m\/559539" + "https://map.yale.edu/?id=1910#!m/559539" ] ], "Friday": [ @@ -226314,7 +466450,7 @@ "9:00", "10:15", "LEIGH 402 - Leigh Hall (435 College) 402", - "https:\/\/map.yale.edu\/?id=1910#!m\/559539" + "https://map.yale.edu/?id=1910#!m/559539" ] ], "Thursday": [ @@ -226322,7 +466458,7 @@ "9:00", "10:15", "HEN 314 - Hendrie Hall 314", - "https:\/\/map.yale.edu\/?id=1910#!m\/559539" + "https://map.yale.edu/?id=1910#!m/559539" ] ] }, @@ -226337,7 +466473,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -226374,7 +466538,7 @@ "9:00", "10:15", "LEIGH PARK - Leigh Hall (435 College) PARK", - "https:\/\/map.yale.edu\/?id=1910#!m\/559539" + "https://map.yale.edu/?id=1910#!m/559539" ] ], "Wednesday": [ @@ -226382,7 +466546,7 @@ "9:00", "10:15", "LEIGH PARK - Leigh Hall (435 College) PARK", - "https:\/\/map.yale.edu\/?id=1910#!m\/559539" + "https://map.yale.edu/?id=1910#!m/559539" ] ], "Friday": [ @@ -226390,7 +466554,7 @@ "9:00", "10:15", "LEIGH PARK - Leigh Hall (435 College) PARK", - "https:\/\/map.yale.edu\/?id=1910#!m\/559539" + "https://map.yale.edu/?id=1910#!m/559539" ] ] }, @@ -226405,7 +466569,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -226437,7 +466629,7 @@ "10:30", "12:15", "HEN 101 - Hendrie Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/563676" + "https://map.yale.edu/?id=1910#!m/563676" ] ] }, @@ -226454,14 +466646,42 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", "description": "2 credits per term. A language course designed specifically for the needs of singers. Intensive work on pronunciation, grammar, and literature throughout the term. French, German, English, Italian, Russian, and Latin are offered in alternating terms. Required.", - "short_title": "LyricDiction\/Singers: LyricDi...", - "title": "LyricDiction\/Singers: LyricDiction\/Singers\/GERMAN", + "short_title": "LyricDiction/Singers: LyricDi...", + "title": "LyricDiction/Singers: LyricDiction/Singers/GERMAN", "school": "MU", "credits": 0.0, "extra_info": "ACTIVE", @@ -226492,7 +466712,7 @@ "12:00", "13:30", "HEN 114 - Hendrie Hall 114", - "https:\/\/map.yale.edu\/?id=1910#!m\/563676" + "https://map.yale.edu/?id=1910#!m/563676" ] ] }, @@ -226509,14 +466729,42 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", "description": "2 credits per term. A language course designed specifically for the needs of singers. Intensive work on pronunciation, grammar, and literature throughout the term. French, German, English, Italian, Russian, and Latin are offered in alternating terms. Required.", - "short_title": "LyricDiction\/Singers: LyricDi...", - "title": "LyricDiction\/Singers: LyricDiction\/Singers\/GERMAN", + "short_title": "LyricDiction/Singers: LyricDi...", + "title": "LyricDiction/Singers: LyricDiction/Singers/GERMAN", "school": "MU", "credits": 0.0, "extra_info": "ACTIVE", @@ -226547,7 +466795,7 @@ "10:30", "12:00", "HEN 114 - Hendrie Hall 114", - "https:\/\/map.yale.edu\/?id=1910#!m\/563676" + "https://map.yale.edu/?id=1910#!m/563676" ] ] }, @@ -226564,7 +466812,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -226603,7 +466879,7 @@ "10:30", "12:15", "HEN 114 - Hendrie Hall 114", - "https:\/\/map.yale.edu\/?id=1910#!m\/563676" + "https://map.yale.edu/?id=1910#!m/563676" ] ] }, @@ -226620,7 +466896,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -226707,7 +467011,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -226750,14 +467082,42 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", "description": "1 credit per term. Individual private coaching in the art song repertoire, in preparation for required recitals. Students are coached on such elements of musical style as phrasing, rubato, and articulation, and in English, French, Italian, German, and Spanish diction. Students are expected to bring their recital accompaniments to coaching sessions as their recital times approach.", "short_title": "Art Song Coaching for Singers...", - "title": "Art Song Coaching for Singers: Art Song Coaching\/Singers ISM", + "title": "Art Song Coaching for Singers: Art Song Coaching/Singers ISM", "school": "MU", "credits": 0.0, "extra_info": "ACTIVE", @@ -226793,7 +467153,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -226830,7 +467218,7 @@ "9:00", "10:15", "LEIGH PARK - Leigh Hall (435 College) PARK", - "https:\/\/map.yale.edu\/?id=1910#!m\/559539" + "https://map.yale.edu/?id=1910#!m/559539" ] ], "Thursday": [ @@ -226838,7 +467226,7 @@ "9:00", "10:15", "LEIGH PARK - Leigh Hall (435 College) PARK", - "https:\/\/map.yale.edu\/?id=1910#!m\/559539" + "https://map.yale.edu/?id=1910#!m/559539" ] ] }, @@ -226853,7 +467241,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -226890,7 +467306,7 @@ "9:00", "10:15", "LEIGH 402 - Leigh Hall (435 College) 402", - "https:\/\/map.yale.edu\/?id=1910#!m\/559539" + "https://map.yale.edu/?id=1910#!m/559539" ] ], "Thursday": [ @@ -226898,7 +467314,7 @@ "9:00", "10:15", "LEIGH 402 - Leigh Hall (435 College) 402", - "https:\/\/map.yale.edu\/?id=1910#!m\/559539" + "https://map.yale.edu/?id=1910#!m/559539" ] ] }, @@ -226913,7 +467329,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -226954,15 +467398,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90793\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90793/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "1 credit per term. NP. P\/F. Participation in seminars led by faculty and guest lecturers on topics concerning theology, music, worship, and related arts. Counts as one NP in the fourth term. Required of all Institute of Sacred Music students.", + "description": "1 credit per term. NP. P/F. Participation in seminars led by faculty and guest lecturers on topics concerning theology, music, worship, and related arts. Counts as one NP in the fourth term. Required of all Institute of Sacred Music students.", "short_title": "ISM Colloquium", "title": "ISM Colloquium", "school": "MU", @@ -226997,7 +467469,7 @@ "15:30", "17:00", "SDQ - SDQ", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -227009,15 +467481,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90799\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90799/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "4 credits. NP. Group C. This course is designed for international students in the Yale School of Music who exhibit a basic or intermediate level of English. Studies includes the refinement of skills such as writing (sentences\/paragraphs\/essays), speaking, reading, and grammar, as well as the expansion and appropriate use of informal, academic, and professional vocabulary.", + "description": "4 credits. NP. Group C. This course is designed for international students in the Yale School of Music who exhibit a basic or intermediate level of English. Studies includes the refinement of skills such as writing (sentences/paragraphs/essays), speaking, reading, and grammar, as well as the expansion and appropriate use of informal, academic, and professional vocabulary.", "short_title": "English Language Skills", "title": "English Language Skills", "school": "MU", @@ -227049,7 +467549,7 @@ "12:45", "14:15", "SMH 305 - Sprague Memorial Hall 305", - "https:\/\/map.yale.edu\/?id=1910#!m\/559936" + "https://map.yale.edu/?id=1910#!m/559936" ] ], "Thursday": [ @@ -227057,7 +467557,7 @@ "12:45", "14:15", "SMH 305 - Sprague Memorial Hall 305", - "https:\/\/map.yale.edu\/?id=1910#!m\/559936" + "https://map.yale.edu/?id=1910#!m/559936" ] ] }, @@ -227072,7 +467572,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -227110,7 +467638,7 @@ "9:25", "11:15", "HEN 301 - Hendrie Hall 301", - "https:\/\/map.yale.edu\/?id=1910#!m\/563676" + "https://map.yale.edu/?id=1910#!m/563676" ] ] }, @@ -227122,10 +467650,117 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88532\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88532/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.675739586353302, + 0.9982794523239136, + 0.9977467656135559, + 0.9987367987632751, + 0.9987555742263794, + 0.9828928112983704, + 0.9987043142318726 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994569420814514, + 0.9988603591918945, + 0.9976121187210083, + 0.9980469942092896, + 0.9988240599632263, + 0.9988825917243958 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 5 + }, + "sentiment_distribution": { + "NEGATIVE": 0.16666666666666666, + "POSITIVE": 0.8333333333333334 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.999496579170227, + 0.9988542795181274, + 0.9972623586654663, + 0.9979497790336609, + 0.9969943761825562, + 0.9988872408866882, + 0.9988897442817688 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 6 + }, + "sentiment_distribution": { + "NEGATIVE": 0.14285714285714285, + "POSITIVE": 0.8571428571428571 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 0.9, + "final_counts": { + "POSITIVE": 18, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + } + } }, { "season_code": "202303", @@ -227162,7 +467797,7 @@ "16:00", "18:00", "HEN 201 - Hendrie Hall 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/563676" + "https://map.yale.edu/?id=1910#!m/563676" ] ] }, @@ -227177,7 +467812,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -227214,7 +467877,7 @@ "16:00", "18:00", "HEN 201 - Hendrie Hall 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/563676" + "https://map.yale.edu/?id=1910#!m/563676" ] ] }, @@ -227229,7 +467892,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -227267,7 +467958,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -227305,7 +468024,7 @@ "16:15", "18:15", "HEN 201 - Hendrie Hall 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/563676" + "https://map.yale.edu/?id=1910#!m/563676" ] ] }, @@ -227320,7 +468039,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -227357,7 +468104,7 @@ "16:15", "18:15", "HEN 201 - Hendrie Hall 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/563676" + "https://map.yale.edu/?id=1910#!m/563676" ] ] }, @@ -227372,7 +468119,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -227410,7 +468185,7 @@ "16:15", "18:15", "HEN 201 - Hendrie Hall 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/563676" + "https://map.yale.edu/?id=1910#!m/563676" ] ] }, @@ -227425,7 +468200,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -227470,7 +468273,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -227514,7 +468345,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -227558,7 +468417,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -227602,7 +468489,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -227647,7 +468562,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -227691,7 +468634,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -227735,7 +468706,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -227779,7 +468778,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -227822,7 +468849,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -227867,7 +468922,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -227911,7 +468994,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -227956,7 +469067,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -228001,7 +469140,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -228045,7 +469212,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -228088,7 +469283,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -228134,7 +469357,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -228178,7 +469429,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -228221,7 +469500,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -228265,7 +469572,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -228309,7 +469644,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -228353,7 +469716,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -228396,7 +469787,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -228440,7 +469859,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -228484,7 +469931,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -228527,7 +470002,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -228571,7 +470074,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -228615,7 +470146,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -228660,7 +470219,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -228703,7 +470290,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -228746,7 +470361,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -228790,7 +470433,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -228834,7 +470505,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -228878,7 +470577,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -228922,7 +470649,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -228966,12 +470721,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "2 credits per term. P\/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http:\/\/music.yale.edu\/study\/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", + "description": "2 credits per term. P/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http://music.yale.edu/study/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", "short_title": "Secndry Instrmnt--: Secndry I...", "title": "Secndry Instrmnt--: Secndry Instrmnt--BASS", "school": "MU", @@ -229006,15 +470789,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90988\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90988/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "2 credits per term. P\/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http:\/\/music.yale.edu\/study\/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", + "description": "2 credits per term. P/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http://music.yale.edu/study/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", "short_title": "Secndry Instrmnt--: Secndry I...", "title": "Secndry Instrmnt--: Secndry Instrmnt--BASSOON", "school": "MU", @@ -229049,15 +470860,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90988\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90988/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "2 credits per term. P\/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http:\/\/music.yale.edu\/study\/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", + "description": "2 credits per term. P/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http://music.yale.edu/study/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", "short_title": "Secndry Instrmnt--: Secndry I...", "title": "Secndry Instrmnt--: Secndry Instrmnt--CELLO", "school": "MU", @@ -229092,15 +470931,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90988\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90988/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "2 credits per term. P\/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http:\/\/music.yale.edu\/study\/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", + "description": "2 credits per term. P/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http://music.yale.edu/study/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", "short_title": "Secndry Instrmnt--: Secndry I...", "title": "Secndry Instrmnt--: Secndry Instrmnt--CHORAL COND", "school": "MU", @@ -229135,15 +471002,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90988\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90988/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "2 credits per term. P\/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http:\/\/music.yale.edu\/study\/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", + "description": "2 credits per term. P/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http://music.yale.edu/study/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", "short_title": "Secndry Instrmnt--: Secndry I...", "title": "Secndry Instrmnt--: Secndry Instrmnt--CLARINET", "school": "MU", @@ -229178,15 +471073,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90988\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90988/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "2 credits per term. P\/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http:\/\/music.yale.edu\/study\/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", + "description": "2 credits per term. P/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http://music.yale.edu/study/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", "short_title": "Secndry Instrmnt--: Secndry I...", "title": "Secndry Instrmnt--: Secndry Instrmnt--COMPOSITION", "school": "MU", @@ -229221,15 +471144,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90988\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90988/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "2 credits per term. P\/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http:\/\/music.yale.edu\/study\/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", + "description": "2 credits per term. P/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http://music.yale.edu/study/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", "short_title": "Secndry Instrmnt--: Secndry I...", "title": "Secndry Instrmnt--: Secndry Instrmnt--FLUTE", "school": "MU", @@ -229264,15 +471215,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90988\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90988/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "2 credits per term. P\/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http:\/\/music.yale.edu\/study\/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", + "description": "2 credits per term. P/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http://music.yale.edu/study/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", "short_title": "Secndry Instrmnt--: Secndry I...", "title": "Secndry Instrmnt--: Secndry Instrmnt--FRENCH HORN", "school": "MU", @@ -229307,15 +471286,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90988\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90988/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "2 credits per term. P\/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http:\/\/music.yale.edu\/study\/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", + "description": "2 credits per term. P/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http://music.yale.edu/study/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", "short_title": "Secndry Instrmnt--: Secndry I...", "title": "Secndry Instrmnt--: Secndry Instrmnt--GUITAR", "school": "MU", @@ -229350,15 +471357,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90988\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90988/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "2 credits per term. P\/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http:\/\/music.yale.edu\/study\/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", + "description": "2 credits per term. P/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http://music.yale.edu/study/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", "short_title": "Secndry Instrmnt--: Secndry I...", "title": "Secndry Instrmnt--: Secndry Instrmnt--HARP", "school": "MU", @@ -229393,15 +471428,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90988\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90988/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "2 credits per term. P\/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http:\/\/music.yale.edu\/study\/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", + "description": "2 credits per term. P/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http://music.yale.edu/study/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", "short_title": "Secndry Instrmnt--: Secndry I...", "title": "Secndry Instrmnt--: Secndry Instrmnt--HARPSICHORD", "school": "MU", @@ -229436,15 +471499,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90988\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90988/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "2 credits per term. P\/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http:\/\/music.yale.edu\/study\/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", + "description": "2 credits per term. P/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http://music.yale.edu/study/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", "short_title": "Secndry Instrmnt--: Secndry I...", "title": "Secndry Instrmnt--: Secndry Instrmnt--OBOE", "school": "MU", @@ -229479,15 +471570,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90988\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90988/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "2 credits per term. P\/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http:\/\/music.yale.edu\/study\/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", + "description": "2 credits per term. P/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http://music.yale.edu/study/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", "short_title": "Secndry Instrmnt--: Secndry I...", "title": "Secndry Instrmnt--: Secndry Instrmnt--ORCH COND", "school": "MU", @@ -229522,15 +471641,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90988\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90988/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "2 credits per term. P\/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http:\/\/music.yale.edu\/study\/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", + "description": "2 credits per term. P/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http://music.yale.edu/study/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", "short_title": "Secndry Instrmnt--: Secndry I...", "title": "Secndry Instrmnt--: Secndry Instrmnt--ORGAN", "school": "MU", @@ -229565,15 +471712,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90988\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90988/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "2 credits per term. P\/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http:\/\/music.yale.edu\/study\/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", + "description": "2 credits per term. P/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http://music.yale.edu/study/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", "short_title": "Secndry Instrmnt--: Secndry I...", "title": "Secndry Instrmnt--: Secndry Instrmnt--PERCUSSION", "school": "MU", @@ -229608,15 +471783,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90988\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90988/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "2 credits per term. P\/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http:\/\/music.yale.edu\/study\/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", + "description": "2 credits per term. P/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http://music.yale.edu/study/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", "short_title": "Secndry Instrmnt--: Secndry I...", "title": "Secndry Instrmnt--: Secndry Instrmnt--PIANO", "school": "MU", @@ -229651,15 +471854,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90988\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90988/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "2 credits per term. P\/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http:\/\/music.yale.edu\/study\/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", + "description": "2 credits per term. P/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http://music.yale.edu/study/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", "short_title": "Secndry Instrmnt--: Secndry I...", "title": "Secndry Instrmnt--: Secndry Instrmnt--SAXOPHONE", "school": "MU", @@ -229694,15 +471925,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90988\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90988/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "2 credits per term. P\/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http:\/\/music.yale.edu\/study\/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", + "description": "2 credits per term. P/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http://music.yale.edu/study/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", "short_title": "Secndry Instrmnt--: Secndry I...", "title": "Secndry Instrmnt--: Secndry Instrmnt--TROMBONE", "school": "MU", @@ -229737,15 +471996,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90988\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90988/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "2 credits per term. P\/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http:\/\/music.yale.edu\/study\/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", + "description": "2 credits per term. P/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http://music.yale.edu/study/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", "short_title": "Secndry Instrmnt--: Secndry I...", "title": "Secndry Instrmnt--: Secndry Instrmnt--TRUMPET", "school": "MU", @@ -229780,15 +472067,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90988\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90988/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "2 credits per term. P\/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http:\/\/music.yale.edu\/study\/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", + "description": "2 credits per term. P/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http://music.yale.edu/study/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", "short_title": "Secndry Instrmnt--: Secndry I...", "title": "Secndry Instrmnt--: Secndry Instrmnt--TUBA", "school": "MU", @@ -229823,15 +472138,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90988\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90988/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "2 credits per term. P\/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http:\/\/music.yale.edu\/study\/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", + "description": "2 credits per term. P/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http://music.yale.edu/study/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", "short_title": "Secndry Instrmnt--: Secndry I...", "title": "Secndry Instrmnt--: Secndry Instrmnt--VIOLA", "school": "MU", @@ -229866,15 +472209,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90988\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90988/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "2 credits per term. P\/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http:\/\/music.yale.edu\/study\/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", + "description": "2 credits per term. P/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http://music.yale.edu/study/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", "short_title": "Secndry Instrmnt--: Secndry I...", "title": "Secndry Instrmnt--: Secndry Instrmnt--VIOLIN", "school": "MU", @@ -229909,15 +472280,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90988\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90988/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "2 credits per term. P\/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http:\/\/music.yale.edu\/study\/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", + "description": "2 credits per term. P/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http://music.yale.edu/study/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", "short_title": "Secndry Instrmnt--: Secndry I...", "title": "Secndry Instrmnt--: Secndry Instrmnt--VOICE", "school": "MU", @@ -229952,10 +472351,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90988\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90988/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -229998,7 +472425,7 @@ "14:30", "17:15", "HEN 218 - Hendrie Hall 218", - "https:\/\/map.yale.edu\/?id=1910#!m\/563676" + "https://map.yale.edu/?id=1910#!m/563676" ] ], "Thursday": [ @@ -230006,7 +472433,7 @@ "14:30", "17:15", "HEN 218 - Hendrie Hall 218", - "https:\/\/map.yale.edu\/?id=1910#!m\/563676" + "https://map.yale.edu/?id=1910#!m/563676" ] ], "Friday": [ @@ -230014,7 +472441,7 @@ "13:00", "15:30", "HEN 218 - Hendrie Hall 218", - "https:\/\/map.yale.edu\/?id=1910#!m\/563676" + "https://map.yale.edu/?id=1910#!m/563676" ] ] }, @@ -230029,7 +472456,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -230089,15 +472544,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91101\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91101/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--BASSOON", "school": "MU", @@ -230137,12 +472620,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--CELLO", "school": "MU", @@ -230176,7 +472687,7 @@ "10:30", "12:30", "LEIGH PARK - Leigh Hall (435 College) PARK", - "https:\/\/map.yale.edu\/?id=1910#!m\/559539" + "https://map.yale.edu/?id=1910#!m/559539" ] ] }, @@ -230191,12 +472702,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--CHORAL COND", "school": "MU", @@ -230228,7 +472767,7 @@ "13:30", "15:30", "HEN 201 - Hendrie Hall 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/563676" + "https://map.yale.edu/?id=1910#!m/563676" ] ] }, @@ -230243,12 +472782,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--CLARINET", "school": "MU", @@ -230288,12 +472855,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--CLARINET", "school": "MU", @@ -230331,12 +472926,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--COMPOSITION", "school": "MU", @@ -230370,7 +472993,7 @@ "14:30", "16:20", "LEIGH 402 - Leigh Hall (435 College) 402", - "https:\/\/map.yale.edu\/?id=1910#!m\/559539" + "https://map.yale.edu/?id=1910#!m/559539" ] ] }, @@ -230385,12 +473008,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--DOUBLE BASS", "school": "MU", @@ -230430,12 +473081,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--FLUTE", "school": "MU", @@ -230474,12 +473153,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--FRENCH HORN", "school": "MU", @@ -230519,12 +473226,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--GUITAR", "school": "MU", @@ -230557,7 +473292,7 @@ "16:00", "18:00", "HEN 313 - Hendrie Hall 313", - "https:\/\/map.yale.edu\/?id=1910#!m\/563676" + "https://map.yale.edu/?id=1910#!m/563676" ] ] }, @@ -230572,12 +473307,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--HARP", "school": "MU", @@ -230616,12 +473379,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--HARPSICHORD", "school": "MU", @@ -230661,12 +473452,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--OBOE", "school": "MU", @@ -230701,7 +473520,7 @@ "14:00", "16:00", "LEIGH PARK - Leigh Hall (435 College) PARK", - "https:\/\/map.yale.edu\/?id=1910#!m\/559539" + "https://map.yale.edu/?id=1910#!m/559539" ] ] }, @@ -230716,12 +473535,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--ORCH COND", "school": "MU", @@ -230759,12 +473606,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--ORGAN", "school": "MU", @@ -230812,12 +473687,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--PERCUSSION", "school": "MU", @@ -230856,12 +473759,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--TROMBONE", "school": "MU", @@ -230900,12 +473831,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--TRUMPET", "school": "MU", @@ -230944,12 +473903,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--TUBA", "school": "MU", @@ -230988,12 +473975,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--VIOLA", "school": "MU", @@ -231026,7 +474041,7 @@ "16:30", "18:30", "LEIGH 402 - Leigh Hall (435 College) 402", - "https:\/\/map.yale.edu\/?id=1910#!m\/559539" + "https://map.yale.edu/?id=1910#!m/559539" ] ] }, @@ -231041,12 +474056,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--VIOLIN", "school": "MU", @@ -231079,7 +474122,7 @@ "17:00", "20:00", "LEIGH PARK - Leigh Hall (435 College) PARK", - "https:\/\/map.yale.edu\/?id=1910#!m\/559539" + "https://map.yale.edu/?id=1910#!m/559539" ] ] }, @@ -231094,12 +474137,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--VIOLIN", "school": "MU", @@ -231138,12 +474209,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--VIOLIN", "school": "MU", @@ -231181,12 +474280,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--VIOLIN", "school": "MU", @@ -231225,12 +474352,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--VOICE", "school": "MU", @@ -231278,12 +474433,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--VOICE", "school": "MU", @@ -231316,7 +474499,7 @@ "16:00", "18:00", "ISM 100 - Institute of Sacred Music 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/559978" + "https://map.yale.edu/?id=1910#!m/559978" ] ] }, @@ -231331,7 +474514,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -231369,7 +474580,7 @@ "19:30", "22:00", "HEN 201 - Hendrie Hall 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/563676" + "https://map.yale.edu/?id=1910#!m/563676" ] ] }, @@ -231384,7 +474595,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -231422,7 +474661,7 @@ "9:25", "11:15", "HEN 313 - Hendrie Hall 313", - "https:\/\/map.yale.edu\/?id=1910#!m\/563676" + "https://map.yale.edu/?id=1910#!m/563676" ] ] }, @@ -231434,10 +474673,81 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91995\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91995/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.998900294303894 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988755583763123 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988901019096375 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 3, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 3 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -231474,7 +474784,7 @@ "9:25", "11:15", "SML MML101B - Sterling Memorial Library MML101B", - "https:\/\/map.yale.edu\/?id=1910#!m\/563698" + "https://map.yale.edu/?id=1910#!m/563698" ] ] }, @@ -231486,10 +474796,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92584\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92584/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -231526,7 +474864,7 @@ "10:30", "12:20", "HEN 314 - Hendrie Hall 314", - "https:\/\/map.yale.edu\/?id=1910#!m\/563676" + "https://map.yale.edu/?id=1910#!m/563676" ] ] }, @@ -231538,10 +474876,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92914\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92914/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -231578,7 +474944,7 @@ "10:30", "11:45", "HEN 201 - Hendrie Hall 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/563676" + "https://map.yale.edu/?id=1910#!m/563676" ] ], "Wednesday": [ @@ -231586,7 +474952,7 @@ "10:30", "11:45", "HEN 201 - Hendrie Hall 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/563676" + "https://map.yale.edu/?id=1910#!m/563676" ] ] }, @@ -231598,10 +474964,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90778\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90778/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -231638,7 +475032,7 @@ "18:30", "21:00", "SDQ GREAT - Sterling Divinity Quadrangle GREAT", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ], "Friday": [ @@ -231646,7 +475040,7 @@ "15:00", "17:30", "SDQ GREAT - Sterling Divinity Quadrangle GREAT", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -231661,12 +475055,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "4 credits. NP. Group B. An introduction to jazz from its roots in African music, through its development in New Orleans (1900\u20131917), to its evolutionary expansion throughout the United States. The course includes a study of jazz\u2019s artists\/styles from the 1880s through the 1970s; an examination of the social, racial, gendered, and economic factors that gave rise to jazz styles; and how jazz developmental patterns are represented in today\u2019s popular music. This introductory course may be redundant for students who have already had significant studies in jazz history. Students with some knowledge of jazz history may want to take this course to help them develop their own curriculum in preparation for teaching a similar course in the future. Course work is done through a combination of online work, short essays, group discussion, and reading assignments.", + "description": "4 credits. NP. Group B. An introduction to jazz from its roots in African music, through its development in New Orleans (1900\u20131917), to its evolutionary expansion throughout the United States. The course includes a study of jazz\u2019s artists/styles from the 1880s through the 1970s; an examination of the social, racial, gendered, and economic factors that gave rise to jazz styles; and how jazz developmental patterns are represented in today\u2019s popular music. This introductory course may be redundant for students who have already had significant studies in jazz history. Students with some knowledge of jazz history may want to take this course to help them develop their own curriculum in preparation for teaching a similar course in the future. Course work is done through a combination of online work, short essays, group discussion, and reading assignments.", "short_title": "Introduction to Jazz, Race, a...", "title": "Introduction to Jazz, Race, and Gender", "school": "MU", @@ -231698,7 +475120,7 @@ "9:25", "11:15", "HEN 313 - Hendrie Hall 313", - "https:\/\/map.yale.edu\/?id=1910#!m\/563676" + "https://map.yale.edu/?id=1910#!m/563676" ] ] }, @@ -231710,10 +475132,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91987\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91987/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -231750,7 +475200,7 @@ "10:45", "12:00", "HEN 314 - Hendrie Hall 314", - "https:\/\/map.yale.edu\/?id=1910#!m\/563676" + "https://map.yale.edu/?id=1910#!m/563676" ] ], "Wednesday": [ @@ -231758,7 +475208,7 @@ "10:45", "12:00", "HEN 314 - Hendrie Hall 314", - "https:\/\/map.yale.edu\/?id=1910#!m\/563676" + "https://map.yale.edu/?id=1910#!m/563676" ] ] }, @@ -231773,7 +475223,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -231810,7 +475288,7 @@ "10:30", "11:45", "LEIGH 402 - Leigh Hall (435 College) 402", - "https:\/\/map.yale.edu\/?id=1910#!m\/559539" + "https://map.yale.edu/?id=1910#!m/559539" ] ], "Wednesday": [ @@ -231818,7 +475296,7 @@ "10:30", "11:45", "LEIGH 402 - Leigh Hall (435 College) 402", - "https:\/\/map.yale.edu\/?id=1910#!m\/559539" + "https://map.yale.edu/?id=1910#!m/559539" ] ] }, @@ -231833,7 +475311,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -231885,7 +475391,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -231922,7 +475456,7 @@ "14:15", "15:45", "SDQ N 209 - Sterling Divinity Quadrangle N 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -231937,7 +475471,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -231969,7 +475531,7 @@ "10:30", "12:15", "HEN 101 - Hendrie Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/563676" + "https://map.yale.edu/?id=1910#!m/563676" ] ] }, @@ -231984,14 +475546,42 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", "description": "2 credits per term. A language course designed specifically for the needs of singers. Intensive work on pronunciation, grammar, and literature throughout the term. French, German, English, Italian, Russian, and Latin are offered in alternating terms. Required.", - "short_title": "LyricDiction\/Singers: LyricDi...", - "title": "LyricDiction\/Singers: LyricDiction\/Singers\/GERMAN", + "short_title": "LyricDiction/Singers: LyricDi...", + "title": "LyricDiction/Singers: LyricDiction/Singers/GERMAN", "school": "MU", "credits": 0.0, "extra_info": "ACTIVE", @@ -232022,7 +475612,7 @@ "12:00", "13:30", "HEN 114 - Hendrie Hall 114", - "https:\/\/map.yale.edu\/?id=1910#!m\/563676" + "https://map.yale.edu/?id=1910#!m/563676" ] ] }, @@ -232037,14 +475627,42 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", "description": "2 credits per term. A language course designed specifically for the needs of singers. Intensive work on pronunciation, grammar, and literature throughout the term. French, German, English, Italian, Russian, and Latin are offered in alternating terms. Required.", - "short_title": "LyricDiction\/Singers: LyricDi...", - "title": "LyricDiction\/Singers: LyricDiction\/Singers\/GERMAN", + "short_title": "LyricDiction/Singers: LyricDi...", + "title": "LyricDiction/Singers: LyricDiction/Singers/GERMAN", "school": "MU", "credits": 0.0, "extra_info": "ACTIVE", @@ -232075,7 +475693,7 @@ "10:30", "12:00", "HEN 114 - Hendrie Hall 114", - "https:\/\/map.yale.edu\/?id=1910#!m\/563676" + "https://map.yale.edu/?id=1910#!m/563676" ] ] }, @@ -232090,7 +475708,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -232129,7 +475775,7 @@ "10:30", "12:15", "HEN 114 - Hendrie Hall 114", - "https:\/\/map.yale.edu\/?id=1910#!m\/563676" + "https://map.yale.edu/?id=1910#!m/563676" ] ] }, @@ -232144,7 +475790,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -232229,7 +475903,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -232272,14 +475974,42 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", "description": "1 credit per term. Individual private coaching in the art song repertoire, in preparation for required recitals. Students are coached on such elements of musical style as phrasing, rubato, and articulation, and in English, French, Italian, German, and Spanish diction. Students are expected to bring their recital accompaniments to coaching sessions as their recital times approach.", "short_title": "Art Song Coaching for Singers...", - "title": "Art Song Coaching for Singers: Art Song Coaching\/Singers ISM", + "title": "Art Song Coaching for Singers: Art Song Coaching/Singers ISM", "school": "MU", "credits": 0.0, "extra_info": "ACTIVE", @@ -232315,7 +476045,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -232352,7 +476110,7 @@ "10:30", "12:20", "HEN 114 - Hendrie Hall 114", - "https:\/\/map.yale.edu\/?id=1910#!m\/563676" + "https://map.yale.edu/?id=1910#!m/563676" ] ] }, @@ -232364,10 +476122,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91976\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91976/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -232404,7 +476190,7 @@ "10:30", "11:45", "HEN 314 - Hendrie Hall 314", - "https:\/\/map.yale.edu\/?id=1910#!m\/563676" + "https://map.yale.edu/?id=1910#!m/563676" ] ], "Thursday": [ @@ -232412,7 +476198,7 @@ "10:30", "11:45", "HEN 314 - Hendrie Hall 314", - "https:\/\/map.yale.edu\/?id=1910#!m\/563676" + "https://map.yale.edu/?id=1910#!m/563676" ] ] }, @@ -232424,10 +476210,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91989\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91989/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -232468,10 +476282,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90793\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90793/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -232509,7 +476351,7 @@ "13:30", "15:20", "PR406 203 - 406 Prospect St., Miller Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/559978" + "https://map.yale.edu/?id=1910#!m/559978" ] ] }, @@ -232521,15 +476363,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90919\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90919/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "1 credit per term. NP. P\/F. Participation in seminars led by faculty and guest lecturers on topics concerning theology, music, worship, and related arts. Counts as one NP in the fourth term. Required of all Institute of Sacred Music students.", + "description": "1 credit per term. NP. P/F. Participation in seminars led by faculty and guest lecturers on topics concerning theology, music, worship, and related arts. Counts as one NP in the fourth term. Required of all Institute of Sacred Music students.", "short_title": "ISM Colloquium", "title": "ISM Colloquium", "school": "MU", @@ -232564,7 +476434,7 @@ "15:30", "17:00", "SDQ - SDQ", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -232576,10 +476446,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90799\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90799/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -232616,7 +476514,7 @@ "10:30", "12:20", "HEN 116 - Hendrie Hall 116", - "https:\/\/map.yale.edu\/?id=1910#!m\/563676" + "https://map.yale.edu/?id=1910#!m/563676" ] ] }, @@ -232628,10 +476526,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91977\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91977/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -232668,7 +476594,7 @@ "10:30", "12:20", "HEN 114 - Hendrie Hall 114", - "https:\/\/map.yale.edu\/?id=1910#!m\/563676" + "https://map.yale.edu/?id=1910#!m/563676" ] ] }, @@ -232680,17 +476606,45 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91996\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91996/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", "description": "1 credit per term. Designed to address the specialized needs of the singing actor. Studies include technique in character analysis, together with studies in poetry as it applies to art song literature. Class work is extended in regular private coaching. ISM students are required to take two terms in their second year.", "short_title": "Acting for Singers: Acting fo...", - "title": "Acting for Singers: Acting for Singers\/ISM", + "title": "Acting for Singers: Acting for Singers/ISM", "school": "MU", "credits": 0.0, "extra_info": "ACTIVE", @@ -232720,7 +476674,7 @@ "13:45", "15:00", "HEN 201 - Hendrie Hall 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/563676" + "https://map.yale.edu/?id=1910#!m/563676" ] ] }, @@ -232735,7 +476689,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -232778,7 +476760,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -232815,7 +476825,7 @@ "16:00", "18:30", "HEN 114 - Hendrie Hall 114", - "https:\/\/map.yale.edu\/?id=1910#!m\/563676" + "https://map.yale.edu/?id=1910#!m/563676" ] ] }, @@ -232830,7 +476840,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -232870,7 +476908,7 @@ "9:25", "11:15", "HEN 214 - Hendrie Hall 214", - "https:\/\/map.yale.edu\/?id=1910#!m\/563676" + "https://map.yale.edu/?id=1910#!m/563676" ] ] }, @@ -232882,10 +476920,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91991\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91991/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -232922,7 +476988,7 @@ "10:30", "11:45", "SML MML101B - Sterling Memorial Library MML101B", - "https:\/\/map.yale.edu\/?id=1910#!m\/563698" + "https://map.yale.edu/?id=1910#!m/563698" ] ], "Thursday": [ @@ -232930,7 +476996,7 @@ "10:30", "11:45", "SML MML101B - Sterling Memorial Library MML101B", - "https:\/\/map.yale.edu\/?id=1910#!m\/563698" + "https://map.yale.edu/?id=1910#!m/563698" ] ] }, @@ -232945,7 +477011,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -232982,7 +477076,7 @@ "16:00", "18:00", "HEN 201 - Hendrie Hall 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/563676" + "https://map.yale.edu/?id=1910#!m/563676" ] ] }, @@ -232997,7 +477091,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -233034,7 +477156,7 @@ "16:00", "18:00", "HEN 201 - Hendrie Hall 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/563676" + "https://map.yale.edu/?id=1910#!m/563676" ] ] }, @@ -233049,7 +477171,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -233087,7 +477237,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -233125,7 +477303,7 @@ "16:15", "18:15", "HEN 201 - Hendrie Hall 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/563676" + "https://map.yale.edu/?id=1910#!m/563676" ] ] }, @@ -233140,7 +477318,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -233177,7 +477383,7 @@ "16:15", "18:15", "HEN 201 - Hendrie Hall 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/563676" + "https://map.yale.edu/?id=1910#!m/563676" ] ] }, @@ -233192,12 +477398,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "4 credits. NP. Group A or B. This course combines performance of the work under study with analysis and contextualization. Students include the vocalist and five instrumentalists and three to five commentators who analyze Pierrot and contextualize it through harmonic and contour analysis, text study\u2014both of the Giraud original and Hartleben translation\u2014and its formal musical consequences. The class gives attention to recorded performances, especially those by Schoenberg, Weisberg, Boulez (two), Da Capo, etc. Close reading of articles by Schoenberg, Lewin, Sims, Shawn, and others inform the performance. Underlying premises include theories of phrase structure (Schoenberg, Caplin), contour (Friedmann), text setting (Schoenberg, Lewin), harmony, and pitch considerations (Forte, Lewin). Prerequisites (for Yale College students): MUSI 211 and one more advanced theory\/analysis class, and one course in the required music history sequence; (for Yale School of Music students): completion of the Analysis and Musicianship requirement and one music history course. Permission of the instructor required for all students. By September 6, interested students should email the instructor directly to express interest in a performer slot or a commentator slot.", + "description": "4 credits. NP. Group A or B. This course combines performance of the work under study with analysis and contextualization. Students include the vocalist and five instrumentalists and three to five commentators who analyze Pierrot and contextualize it through harmonic and contour analysis, text study\u2014both of the Giraud original and Hartleben translation\u2014and its formal musical consequences. The class gives attention to recorded performances, especially those by Schoenberg, Weisberg, Boulez (two), Da Capo, etc. Close reading of articles by Schoenberg, Lewin, Sims, Shawn, and others inform the performance. Underlying premises include theories of phrase structure (Schoenberg, Caplin), contour (Friedmann), text setting (Schoenberg, Lewin), harmony, and pitch considerations (Forte, Lewin). Prerequisites (for Yale College students): MUSI 211 and one more advanced theory/analysis class, and one course in the required music history sequence; (for Yale School of Music students): completion of the Analysis and Musicianship requirement and one music history course. Permission of the instructor required for all students. By September 6, interested students should email the instructor directly to express interest in a performer slot or a commentator slot.", "short_title": "Schoenberg's Pierrot Lunaire", "title": "Schoenberg's Pierrot Lunaire", "school": "MU", @@ -233229,7 +477463,7 @@ "10:30", "11:45", "LEIGH PARK - Leigh Hall (435 College) PARK", - "https:\/\/map.yale.edu\/?id=1910#!m\/559539" + "https://map.yale.edu/?id=1910#!m/559539" ] ], "Wednesday": [ @@ -233237,7 +477471,7 @@ "10:30", "11:45", "LEIGH PARK - Leigh Hall (435 College) PARK", - "https:\/\/map.yale.edu\/?id=1910#!m\/559539" + "https://map.yale.edu/?id=1910#!m/559539" ] ] }, @@ -233249,10 +477483,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91998\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91998/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -233289,7 +477551,7 @@ "16:15", "18:15", "HEN 201 - Hendrie Hall 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/563676" + "https://map.yale.edu/?id=1910#!m/563676" ] ] }, @@ -233304,7 +477566,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -233349,7 +477639,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -233394,7 +477712,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -233438,7 +477784,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -233482,7 +477856,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -233526,7 +477928,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -233571,7 +478001,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -233615,7 +478073,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -233659,7 +478145,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -233703,7 +478217,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -233746,7 +478288,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -233790,7 +478360,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -233835,7 +478433,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -233880,7 +478506,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -233924,7 +478578,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -233968,7 +478650,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -234014,7 +478724,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -234058,7 +478796,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -234101,7 +478867,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -234145,7 +478939,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -234189,7 +479011,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -234233,7 +479083,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -234277,7 +479155,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -234321,7 +479227,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -234364,7 +479298,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -234407,7 +479369,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -234451,7 +479441,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -234495,7 +479513,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -234540,7 +479586,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -234584,7 +479658,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -234627,7 +479729,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -234671,7 +479801,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -234714,7 +479872,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -234758,7 +479944,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -234802,7 +480016,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -234846,7 +480088,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -234889,12 +480159,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "2 credits per term. P\/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http:\/\/music.yale.edu\/study\/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", + "description": "2 credits per term. P/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http://music.yale.edu/study/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", "short_title": "Secndry Instrmnt--: Secndry I...", "title": "Secndry Instrmnt--: Secndry Instrmnt--BASS", "school": "MU", @@ -234929,15 +480227,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90988\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90988/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "2 credits per term. P\/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http:\/\/music.yale.edu\/study\/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", + "description": "2 credits per term. P/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http://music.yale.edu/study/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", "short_title": "Secndry Instrmnt--: Secndry I...", "title": "Secndry Instrmnt--: Secndry Instrmnt--BASSOON", "school": "MU", @@ -234972,15 +480298,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90988\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90988/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "2 credits per term. P\/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http:\/\/music.yale.edu\/study\/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", + "description": "2 credits per term. P/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http://music.yale.edu/study/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", "short_title": "Secndry Instrmnt--: Secndry I...", "title": "Secndry Instrmnt--: Secndry Instrmnt--CELLO", "school": "MU", @@ -235015,15 +480369,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90988\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90988/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "2 credits per term. P\/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http:\/\/music.yale.edu\/study\/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", + "description": "2 credits per term. P/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http://music.yale.edu/study/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", "short_title": "Secndry Instrmnt--: Secndry I...", "title": "Secndry Instrmnt--: Secndry Instrmnt--CHORAL COND", "school": "MU", @@ -235058,15 +480440,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90988\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90988/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "2 credits per term. P\/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http:\/\/music.yale.edu\/study\/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", + "description": "2 credits per term. P/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http://music.yale.edu/study/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", "short_title": "Secndry Instrmnt--: Secndry I...", "title": "Secndry Instrmnt--: Secndry Instrmnt--CLARINET", "school": "MU", @@ -235101,15 +480511,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90988\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90988/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "2 credits per term. P\/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http:\/\/music.yale.edu\/study\/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", + "description": "2 credits per term. P/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http://music.yale.edu/study/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", "short_title": "Secndry Instrmnt--: Secndry I...", "title": "Secndry Instrmnt--: Secndry Instrmnt--COMPOSITION", "school": "MU", @@ -235144,15 +480582,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90988\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90988/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "2 credits per term. P\/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http:\/\/music.yale.edu\/study\/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", + "description": "2 credits per term. P/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http://music.yale.edu/study/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", "short_title": "Secndry Instrmnt--: Secndry I...", "title": "Secndry Instrmnt--: Secndry Instrmnt--FLUTE", "school": "MU", @@ -235187,15 +480653,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90988\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90988/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "2 credits per term. P\/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http:\/\/music.yale.edu\/study\/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", + "description": "2 credits per term. P/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http://music.yale.edu/study/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", "short_title": "Secndry Instrmnt--: Secndry I...", "title": "Secndry Instrmnt--: Secndry Instrmnt--FRENCH HORN", "school": "MU", @@ -235230,15 +480724,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90988\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90988/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "2 credits per term. P\/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http:\/\/music.yale.edu\/study\/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", + "description": "2 credits per term. P/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http://music.yale.edu/study/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", "short_title": "Secndry Instrmnt--: Secndry I...", "title": "Secndry Instrmnt--: Secndry Instrmnt--GUITAR", "school": "MU", @@ -235273,15 +480795,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90988\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90988/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "2 credits per term. P\/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http:\/\/music.yale.edu\/study\/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", + "description": "2 credits per term. P/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http://music.yale.edu/study/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", "short_title": "Secndry Instrmnt--: Secndry I...", "title": "Secndry Instrmnt--: Secndry Instrmnt--HARP", "school": "MU", @@ -235316,15 +480866,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90988\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90988/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "2 credits per term. P\/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http:\/\/music.yale.edu\/study\/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", + "description": "2 credits per term. P/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http://music.yale.edu/study/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", "short_title": "Secndry Instrmnt--: Secndry I...", "title": "Secndry Instrmnt--: Secndry Instrmnt--HARPSICHORD", "school": "MU", @@ -235359,15 +480937,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90988\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90988/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "2 credits per term. P\/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http:\/\/music.yale.edu\/study\/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", + "description": "2 credits per term. P/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http://music.yale.edu/study/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", "short_title": "Secndry Instrmnt--: Secndry I...", "title": "Secndry Instrmnt--: Secndry Instrmnt--OBOE", "school": "MU", @@ -235402,15 +481008,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90988\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90988/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "2 credits per term. P\/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http:\/\/music.yale.edu\/study\/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", + "description": "2 credits per term. P/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http://music.yale.edu/study/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", "short_title": "Secndry Instrmnt--: Secndry I...", "title": "Secndry Instrmnt--: Secndry Instrmnt--ORCH COND", "school": "MU", @@ -235445,15 +481079,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90988\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90988/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "2 credits per term. P\/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http:\/\/music.yale.edu\/study\/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", + "description": "2 credits per term. P/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http://music.yale.edu/study/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", "short_title": "Secndry Instrmnt--: Secndry I...", "title": "Secndry Instrmnt--: Secndry Instrmnt--ORGAN", "school": "MU", @@ -235488,15 +481150,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90988\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90988/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "2 credits per term. P\/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http:\/\/music.yale.edu\/study\/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", + "description": "2 credits per term. P/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http://music.yale.edu/study/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", "short_title": "Secndry Instrmnt--: Secndry I...", "title": "Secndry Instrmnt--: Secndry Instrmnt--PERCUSSION", "school": "MU", @@ -235531,15 +481221,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90988\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90988/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "2 credits per term. P\/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http:\/\/music.yale.edu\/study\/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", + "description": "2 credits per term. P/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http://music.yale.edu/study/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", "short_title": "Secndry Instrmnt--: Secndry I...", "title": "Secndry Instrmnt--: Secndry Instrmnt--PIANO", "school": "MU", @@ -235574,15 +481292,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90988\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90988/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "2 credits per term. P\/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http:\/\/music.yale.edu\/study\/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", + "description": "2 credits per term. P/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http://music.yale.edu/study/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", "short_title": "Secndry Instrmnt--: Secndry I...", "title": "Secndry Instrmnt--: Secndry Instrmnt--SAXOPHONE", "school": "MU", @@ -235617,15 +481363,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90988\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90988/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "2 credits per term. P\/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http:\/\/music.yale.edu\/study\/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", + "description": "2 credits per term. P/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http://music.yale.edu/study/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", "short_title": "Secndry Instrmnt--: Secndry I...", "title": "Secndry Instrmnt--: Secndry Instrmnt--TROMBONE", "school": "MU", @@ -235660,15 +481434,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90988\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90988/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "2 credits per term. P\/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http:\/\/music.yale.edu\/study\/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", + "description": "2 credits per term. P/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http://music.yale.edu/study/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", "short_title": "Secndry Instrmnt--: Secndry I...", "title": "Secndry Instrmnt--: Secndry Instrmnt--TRUMPET", "school": "MU", @@ -235703,15 +481505,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90988\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90988/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "2 credits per term. P\/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http:\/\/music.yale.edu\/study\/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", + "description": "2 credits per term. P/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http://music.yale.edu/study/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", "short_title": "Secndry Instrmnt--: Secndry I...", "title": "Secndry Instrmnt--: Secndry Instrmnt--VIOLA", "school": "MU", @@ -235746,15 +481576,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90988\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90988/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "2 credits per term. P\/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http:\/\/music.yale.edu\/study\/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", + "description": "2 credits per term. P/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http://music.yale.edu/study/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", "short_title": "Secndry Instrmnt--: Secndry I...", "title": "Secndry Instrmnt--: Secndry Instrmnt--VOICE", "school": "MU", @@ -235789,10 +481647,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90988\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90988/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -235835,7 +481721,7 @@ "14:30", "17:15", "HEN 218 - Hendrie Hall 218", - "https:\/\/map.yale.edu\/?id=1910#!m\/563676" + "https://map.yale.edu/?id=1910#!m/563676" ] ], "Thursday": [ @@ -235843,7 +481729,7 @@ "14:30", "17:15", "HEN 218 - Hendrie Hall 218", - "https:\/\/map.yale.edu\/?id=1910#!m\/563676" + "https://map.yale.edu/?id=1910#!m/563676" ] ], "Friday": [ @@ -235851,7 +481737,7 @@ "13:00", "15:30", "HEN 218 - Hendrie Hall 218", - "https:\/\/map.yale.edu\/?id=1910#!m\/563676" + "https://map.yale.edu/?id=1910#!m/563676" ] ] }, @@ -235866,7 +481752,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -235926,15 +481840,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91101\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91101/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--BASSOON", "school": "MU", @@ -235974,12 +481916,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--CELLO", "school": "MU", @@ -236013,7 +481983,7 @@ "10:30", "12:30", "LEIGH PARK - Leigh Hall (435 College) PARK", - "https:\/\/map.yale.edu\/?id=1910#!m\/559539" + "https://map.yale.edu/?id=1910#!m/559539" ] ] }, @@ -236028,12 +481998,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--CHORAL COND", "school": "MU", @@ -236065,7 +482063,7 @@ "13:30", "15:30", "HEN 201 - Hendrie Hall 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/563676" + "https://map.yale.edu/?id=1910#!m/563676" ] ] }, @@ -236080,12 +482078,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--CLARINET", "school": "MU", @@ -236125,12 +482151,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--COMPOSITION", "school": "MU", @@ -236164,7 +482218,7 @@ "14:30", "16:20", "LEIGH 402 - Leigh Hall (435 College) 402", - "https:\/\/map.yale.edu\/?id=1910#!m\/559539" + "https://map.yale.edu/?id=1910#!m/559539" ] ] }, @@ -236179,12 +482233,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--DOUBLE BASS", "school": "MU", @@ -236224,12 +482306,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--FLUTE", "school": "MU", @@ -236268,12 +482378,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--FRENCH HORN", "school": "MU", @@ -236313,12 +482451,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--GUITAR", "school": "MU", @@ -236351,7 +482517,7 @@ "16:00", "18:00", "HEN 313 - Hendrie Hall 313", - "https:\/\/map.yale.edu\/?id=1910#!m\/563676" + "https://map.yale.edu/?id=1910#!m/563676" ] ] }, @@ -236366,12 +482532,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--HARP", "school": "MU", @@ -236410,12 +482604,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--HARPSICHORD", "school": "MU", @@ -236455,12 +482677,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--OBOE", "school": "MU", @@ -236495,7 +482745,7 @@ "14:00", "16:00", "LEIGH PARK - Leigh Hall (435 College) PARK", - "https:\/\/map.yale.edu\/?id=1910#!m\/559539" + "https://map.yale.edu/?id=1910#!m/559539" ] ] }, @@ -236510,12 +482760,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--ORCH COND", "school": "MU", @@ -236553,12 +482831,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--ORGAN", "school": "MU", @@ -236606,12 +482912,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--PERCUSSION", "school": "MU", @@ -236650,12 +482984,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--PERCUSSION", "school": "MU", @@ -236693,12 +483055,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--TROMBONE", "school": "MU", @@ -236737,12 +483127,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--TRUMPET", "school": "MU", @@ -236781,12 +483199,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--TUBA", "school": "MU", @@ -236825,12 +483271,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--VIOLA", "school": "MU", @@ -236863,7 +483337,7 @@ "16:30", "18:30", "LEIGH 402 - Leigh Hall (435 College) 402", - "https:\/\/map.yale.edu\/?id=1910#!m\/559539" + "https://map.yale.edu/?id=1910#!m/559539" ] ] }, @@ -236878,12 +483352,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--VIOLIN", "school": "MU", @@ -236916,7 +483418,7 @@ "17:00", "20:00", "LEIGH PARK - Leigh Hall (435 College) PARK", - "https:\/\/map.yale.edu\/?id=1910#!m\/559539" + "https://map.yale.edu/?id=1910#!m/559539" ] ] }, @@ -236931,12 +483433,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--VIOLIN", "school": "MU", @@ -236975,12 +483505,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--VIOLIN", "school": "MU", @@ -237019,12 +483577,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--VIOLIN", "school": "MU", @@ -237062,12 +483648,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--VOICE", "school": "MU", @@ -237115,12 +483729,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--VOICE", "school": "MU", @@ -237153,7 +483795,7 @@ "16:00", "18:00", "ISM 100 - Institute of Sacred Music 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/559978" + "https://map.yale.edu/?id=1910#!m/559978" ] ] }, @@ -237168,7 +483810,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -237206,7 +483876,7 @@ "19:30", "22:00", "HEN 201 - Hendrie Hall 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/563676" + "https://map.yale.edu/?id=1910#!m/563676" ] ] }, @@ -237221,7 +483891,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -237258,7 +483956,7 @@ "12:30", "14:20", "HEN 314 - Hendrie Hall 314", - "https:\/\/map.yale.edu\/?id=1910#!m\/563676" + "https://map.yale.edu/?id=1910#!m/563676" ] ] }, @@ -237270,10 +483968,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91999\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91999/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -237307,10 +484033,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91909\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91909/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -237347,7 +484101,7 @@ "12:35", "13:50", "SDQ MARQ - Sterling Divinity Quadrangle MARQ", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -237359,15 +484113,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91910\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91910/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "4 credits. NP. Group B or C. This course is designed to broaden a student\u2019s knowledge of music in the western classical tradition beyond what is commonly understood to be \"the canon.\" Students will examine the lives and works of black composers beginning with Joseph Bologne, George Bridgetower, and Samuel Coleridge-Taylor in Europe and the UK, as well as Florence Price, William Grant Still, Margaret Bonds, George Walker, Adolphus Hailstork, Julius Eastman, Wynton Marsalis, et al in the United States for their connection to or divergence from the musical tradition\/convention,as well as the context that propelled their creative journeys. Students complete weekly readings, viewings, and\/or listening on various composers and musical works for class discussion, and research major events in history (e.g., French Revolution, Industrial Revolution, the American Revolution, the Civil War, Reconstruction, WWI, the Great Migration, etc.) to situate class discussions in their historical context. Assignments include four three-page papers on composers, compositions, and historical events discussed in class (topics that connect the course material to a student\u2019s individual performance, composition, or research interests are encouraged), as well as the submission of a sample concert program integrating knowledge of the standard canon with the course material. This concert program will be the basis of the oral final exam.", + "description": "4 credits. NP. Group B or C. This course is designed to broaden a student\u2019s knowledge of music in the western classical tradition beyond what is commonly understood to be \"the canon.\" Students will examine the lives and works of black composers beginning with Joseph Bologne, George Bridgetower, and Samuel Coleridge-Taylor in Europe and the UK, as well as Florence Price, William Grant Still, Margaret Bonds, George Walker, Adolphus Hailstork, Julius Eastman, Wynton Marsalis, et al in the United States for their connection to or divergence from the musical tradition/convention,as well as the context that propelled their creative journeys. Students complete weekly readings, viewings, and/or listening on various composers and musical works for class discussion, and research major events in history (e.g., French Revolution, Industrial Revolution, the American Revolution, the Civil War, Reconstruction, WWI, the Great Migration, etc.) to situate class discussions in their historical context. Assignments include four three-page papers on composers, compositions, and historical events discussed in class (topics that connect the course material to a student\u2019s individual performance, composition, or research interests are encouraged), as well as the submission of a sample concert program integrating knowledge of the standard canon with the course material. This concert program will be the basis of the oral final exam.", "short_title": "A Parallel Canon: A Survey of...", "title": "A Parallel Canon: A Survey of Black Composers in the Western Classical Tradition", "school": "MU", @@ -237399,7 +484181,7 @@ "10:30", "12:20", "HEN 316 - Hendrie Hall 316", - "https:\/\/map.yale.edu\/?id=1910#!m\/563676" + "https://map.yale.edu/?id=1910#!m/563676" ] ] }, @@ -237411,10 +484193,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92000\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92000/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -237451,7 +484261,7 @@ "18:30", "21:00", "SDQ GREAT - Sterling Divinity Quadrangle GREAT", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ], "Friday": [ @@ -237459,7 +484269,7 @@ "15:00", "17:30", "SDQ GREAT - Sterling Divinity Quadrangle GREAT", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -237474,7 +484284,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -237511,7 +484349,7 @@ "16:00", "17:50", "HEN 214 - Hendrie Hall 214", - "https:\/\/map.yale.edu\/?id=1910#!m\/563676" + "https://map.yale.edu/?id=1910#!m/563676" ] ] }, @@ -237526,7 +484364,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -237563,7 +484429,7 @@ "14:15", "15:45", "SDQ N 209 - Sterling Divinity Quadrangle N 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -237575,10 +484441,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92565\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92565/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -237615,7 +484509,7 @@ "10:30", "12:15", "HEN 101 - Hendrie Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/563676" + "https://map.yale.edu/?id=1910#!m/563676" ] ] }, @@ -237630,7 +484524,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -237669,7 +484591,7 @@ "10:30", "12:15", "HEN 114 - Hendrie Hall 114", - "https:\/\/map.yale.edu\/?id=1910#!m\/563676" + "https://map.yale.edu/?id=1910#!m/563676" ] ] }, @@ -237684,7 +484606,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -237768,7 +484718,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -237811,12 +484789,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "2 credits. This course explores the improvisation of full organ symphony in four movements, Tryptique (Rondo-Aria-Theme\/variations), improvisation on visual images, text-based improvisation, and silent film. Classes typically are made up of two students, for a one-hour lesson on Mondays. The term culminates with an improvised recital, open to the public. In this recital, each student improvises for up to ten minutes on a submitted theme.", + "description": "2 credits. This course explores the improvisation of full organ symphony in four movements, Tryptique (Rondo-Aria-Theme/variations), improvisation on visual images, text-based improvisation, and silent film. Classes typically are made up of two students, for a one-hour lesson on Mondays. The term culminates with an improvised recital, open to the public. In this recital, each student improvises for up to ten minutes on a submitted theme.", "short_title": "Improvisation at the Organ III", "title": "Improvisation at the Organ III", "school": "MU", @@ -237851,15 +484857,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92651\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92651/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "1 credit per term. NP. P\/F. Participation in seminars led by faculty and guest lecturers on topics concerning theology, music, worship, and related arts. Counts as one NP in the fourth term. Required of all Institute of Sacred Music students.", + "description": "1 credit per term. NP. P/F. Participation in seminars led by faculty and guest lecturers on topics concerning theology, music, worship, and related arts. Counts as one NP in the fourth term. Required of all Institute of Sacred Music students.", "short_title": "ISM Colloquium", "title": "ISM Colloquium", "school": "MU", @@ -237894,7 +484928,7 @@ "15:30", "17:00", "SDQ - SDQ", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -237906,10 +484940,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90799\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90799/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -237947,7 +485009,7 @@ "16:15", "18:15", "HEN 201 - Hendrie Hall 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/563676" + "https://map.yale.edu/?id=1910#!m/563676" ] ] }, @@ -237962,7 +485024,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -238007,7 +485097,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -238050,7 +485168,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -238095,7 +485241,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -238138,7 +485312,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -238183,7 +485385,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -238228,7 +485458,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -238273,7 +485531,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -238317,7 +485603,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -238363,7 +485677,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -238415,7 +485757,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -238458,7 +485828,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -238501,7 +485899,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -238544,7 +485970,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -238587,7 +486041,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -238632,7 +486114,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -238675,7 +486185,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -238718,7 +486256,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -238761,12 +486327,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "2 credits per term. P\/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http:\/\/music.yale.edu\/study\/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", + "description": "2 credits per term. P/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http://music.yale.edu/study/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", "short_title": "Secndry Instrmnt--: Secndry I...", "title": "Secndry Instrmnt--: Secndry Instrmnt--PIANO", "school": "MU", @@ -238801,15 +486395,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90988\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90988/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "2 credits per term. P\/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http:\/\/music.yale.edu\/study\/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", + "description": "2 credits per term. P/F. All students enrolled in secondary lessons can receive instruction in either voice or piano. In addition, YSM keyboard majors may take secondary organ or harpsichord, and YSM violinists may take secondary viola. Any other students who wish to take secondary lessons in any other instruments must petition the director of secondary lessons, Kyung Yu, by email (kyung.yu@yale.edu) no later than Aug. 30, 2021, for the fall term and Jan. 14, 2022, for the spring term. Students who are not conducting majors may take only one secondary instrument per term. YSM students who wish to take secondary lessons must register for the course and request a teacher using the online form for graduate students found at http://music.yale.edu/study/music-lessons; the availability of a secondary lessons teacher is not guaranteed until the form is received and a teacher assigned by the director of lessons. Secondary instruction in choral conducting and orchestral conducting is only available with permission of the instructor and requires as prerequisites MUS 565 for secondary instruction in choral conducting, and both MUS 529 and MUS 530 for secondary instruction in orchestral conducting. Students of the Yale Divinity School, School of Drama, and School of Art may also register as above for secondary lessons and will be charged $200 per term for these lessons. Questions may be emailed to the director, Kyung Yu (kyung.yu@yale.edu).", "short_title": "Secndry Instrmnt--: Secndry I...", "title": "Secndry Instrmnt--: Secndry Instrmnt--PIANO", "school": "MU", @@ -238844,10 +486466,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90988\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90988/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -238890,7 +486540,7 @@ "14:30", "17:15", "HEN 218 - Hendrie Hall 218", - "https:\/\/map.yale.edu\/?id=1910#!m\/563676" + "https://map.yale.edu/?id=1910#!m/563676" ] ], "Thursday": [ @@ -238898,7 +486548,7 @@ "14:30", "17:15", "HEN 218 - Hendrie Hall 218", - "https:\/\/map.yale.edu\/?id=1910#!m\/563676" + "https://map.yale.edu/?id=1910#!m/563676" ] ], "Friday": [ @@ -238906,7 +486556,7 @@ "13:00", "15:30", "HEN 218 - Hendrie Hall 218", - "https:\/\/map.yale.edu\/?id=1910#!m\/563676" + "https://map.yale.edu/?id=1910#!m/563676" ] ] }, @@ -238921,7 +486571,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -238981,15 +486659,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91101\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91101/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--BASSOON", "school": "MU", @@ -239029,12 +486735,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--CELLO", "school": "MU", @@ -239068,7 +486802,7 @@ "10:30", "12:30", "LEIGH PARK - Leigh Hall (435 College) PARK", - "https:\/\/map.yale.edu\/?id=1910#!m\/559539" + "https://map.yale.edu/?id=1910#!m/559539" ] ] }, @@ -239083,12 +486817,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--CLARINET", "school": "MU", @@ -239128,12 +486890,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--COMPOSITION", "school": "MU", @@ -239167,7 +486957,7 @@ "14:30", "16:20", "LEIGH 402 - Leigh Hall (435 College) 402", - "https:\/\/map.yale.edu\/?id=1910#!m\/559539" + "https://map.yale.edu/?id=1910#!m/559539" ] ] }, @@ -239182,12 +486972,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--DOUBLE BASS", "school": "MU", @@ -239227,12 +487045,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--FRENCH HORN", "school": "MU", @@ -239272,12 +487118,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--HARPSICHORD", "school": "MU", @@ -239317,12 +487191,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--OBOE", "school": "MU", @@ -239357,7 +487259,7 @@ "14:00", "16:00", "LEIGH PARK - Leigh Hall (435 College) PARK", - "https:\/\/map.yale.edu\/?id=1910#!m\/559539" + "https://map.yale.edu/?id=1910#!m/559539" ] ] }, @@ -239372,12 +487274,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--ORGAN", "school": "MU", @@ -239415,12 +487345,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--PERCUSSION", "school": "MU", @@ -239458,12 +487416,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--TROMBONE", "school": "MU", @@ -239501,12 +487487,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--VIOLA", "school": "MU", @@ -239538,7 +487552,7 @@ "16:30", "18:30", "LEIGH 402 - Leigh Hall (435 College) 402", - "https:\/\/map.yale.edu\/?id=1910#!m\/559539" + "https://map.yale.edu/?id=1910#!m/559539" ] ] }, @@ -239553,12 +487567,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--VIOLIN", "school": "MU", @@ -239596,12 +487638,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--VIOLIN", "school": "MU", @@ -239639,12 +487709,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and\/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", + "description": "2 credits per term. An examination of a wide range of problems relating to the area of the major. Specific requirements may differ by department. At the discretion of each department, seminar requirements can be met partially through off-campus field trips and/or off-campus fieldwork, e.g., performance or teaching. Required of all School of Music students except pianists who take 533, 633, 733.", "short_title": "Seminar, Major--: Seminar, Ma...", "title": "Seminar, Major--: Seminar, Major--VOICE", "school": "MU", @@ -239682,7 +487780,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -239725,12 +487851,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "Required of all Institute of Sacred Music students.", - "description": "1 credit per term. NP. P\/F. Participation in seminars led by faculty and guest lecturers on topics concerning theology, music, worship, and related arts.", + "description": "1 credit per term. NP. P/F. Participation in seminars led by faculty and guest lecturers on topics concerning theology, music, worship, and related arts.", "short_title": "Colloquium", "title": "Colloquium", "school": "MU", @@ -239762,7 +487916,7 @@ "15:30", "17:00", "SDQ - SDQ", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -239777,7 +487931,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -239823,14 +488005,42 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", "description": "", - "short_title": "Philharmonia\/New Music", - "title": "Philharmonia\/New Music", + "short_title": "Philharmonia/New Music", + "title": "Philharmonia/New Music", "school": "MU", "credits": 0.0, "extra_info": "ACTIVE", @@ -239866,7 +488076,7 @@ "14:30", "17:15", "HEN 218 - Hendrie Hall 218", - "https:\/\/map.yale.edu\/?id=1910#!m\/563676" + "https://map.yale.edu/?id=1910#!m/563676" ] ], "Thursday": [ @@ -239874,7 +488084,7 @@ "14:30", "17:15", "HEN 218 - Hendrie Hall 218", - "https:\/\/map.yale.edu\/?id=1910#!m\/563676" + "https://map.yale.edu/?id=1910#!m/563676" ] ], "Friday": [ @@ -239882,7 +488092,7 @@ "13:00", "15:30", "HEN 218 - Hendrie Hall 218", - "https:\/\/map.yale.edu\/?id=1910#!m\/563676" + "https://map.yale.edu/?id=1910#!m/563676" ] ] }, @@ -239897,7 +488107,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -239957,10 +488195,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91101\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91101/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -240000,7 +488266,7 @@ "14:00", "16:00", "LEIGH PARK - Leigh Hall (435 College) PARK", - "https:\/\/map.yale.edu\/?id=1910#!m\/559539" + "https://map.yale.edu/?id=1910#!m/559539" ] ] }, @@ -240015,7 +488281,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -240052,7 +488346,7 @@ "10:30", "12:20", "ELM143 106 - 143 Elm Street 106", - "https:\/\/map.yale.edu\/?id=1910#!m\/559994" + "https://map.yale.edu/?id=1910#!m/559994" ] ] }, @@ -240067,7 +488361,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -240110,7 +488432,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -240153,7 +488503,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -240190,7 +488568,7 @@ "11:35", "12:50", "STOECK 313 - Stoeckel Hall (renovated) 313", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ], "Thursday": [ @@ -240198,7 +488576,7 @@ "11:35", "12:50", "STOECK 313 - Stoeckel Hall (renovated) 313", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ] }, @@ -240212,10 +488590,125 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88490\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88490/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987867474555969, + 0.9988952279090881, + 0.9988613128662109, + 0.998845100402832, + 0.9989297986030579, + 0.9988431930541992, + 0.998920202255249, + 0.9988937973976135 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988985061645508, + 0.9988695979118347, + 0.9989355206489563, + 0.9988541603088379, + 0.9989186525344849, + 0.9989081621170044, + 0.9988988637924194, + 0.9989290833473206 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989392161369324, + 0.9989207983016968, + 0.998934805393219, + 0.998572587966919, + 0.9988886713981628, + 0.998925507068634, + 0.9988289475440979, + 0.9988987445831299, + 0.9989155530929565 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 25, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 25 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -240252,7 +488745,7 @@ "11:35", "12:50", "STOECK 313 - Stoeckel Hall (renovated) 313", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ], "Wednesday": [ @@ -240260,7 +488753,7 @@ "11:35", "12:50", "STOECK 313 - Stoeckel Hall (renovated) 313", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ] }, @@ -240276,10 +488769,123 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92444\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92444/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988065958023071, + 0.9989097118377686, + 0.9989093542098999, + 0.9982682466506958, + 0.9984523057937622, + 0.9986718893051147, + 0.9988139867782593, + 0.9988880753517151 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988036155700684, + 0.998721182346344, + 0.9989205598831177, + 0.9988817572593689, + 0.9988833069801331, + 0.9988993406295776, + 0.9987984895706177, + 0.99891197681427 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989140033721924, + 0.9986151456832886, + 0.9989131689071655, + 0.9989263415336609, + 0.9987700581550598, + 0.9989263415336609, + 0.998893678188324, + 0.998927891254425 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 24, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 24 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -240319,7 +488925,7 @@ "14:30", "15:45", "WLH 210 - William L. Harkness Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -240327,7 +488933,7 @@ "14:30", "15:45", "WLH 210 - William L. Harkness Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -240336,17 +488942,128 @@ "Hu" ], "flags": [ - "YC English: 20th\/21st Century" + "YC English: 20th/21st Century" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92208\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92208/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989194869995117, + 0.998807430267334, + 0.9989216327667236, + 0.9989217519760132, + 0.9988271594047546, + 0.9989245533943176, + 0.9988633394241333, + 0.9989174604415894 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989226460456848, + 0.9987207055091858, + 0.9989091157913208, + 0.9989288449287415, + 0.998916506767273, + 0.9985612034797668, + 0.9989011287689209, + 0.9988120794296265 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989247918128967, + 0.9989142417907715, + 0.9988695979118347, + 0.9988844990730286, + 0.9986010193824768, + 0.9988746047019958, + 0.9989295601844788 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 23, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 23 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -240393,7 +489110,35 @@ "syllabus_url": "", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -240430,7 +489175,7 @@ "13:00", "14:15", "STOECK 107 - Stoeckel Hall (renovated) 107", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ], "Wednesday": [ @@ -240438,7 +489183,7 @@ "13:00", "14:15", "STOECK 107 - Stoeckel Hall (renovated) 107", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ] }, @@ -240454,10 +489199,123 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90077\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90077/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987862706184387, + 0.998890221118927, + 0.9988744854927063, + 0.9988890290260315, + 0.9982555508613586, + 0.9989294409751892, + 0.998775064945221 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989157915115356, + 0.9988442659378052, + 0.9982379674911499, + 0.9989030361175537, + 0.9937803149223328, + 0.9989244341850281, + 0.99885094165802, + 0.9989138841629028 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989159107208252, + 0.9989172220230103, + 0.9988995790481567, + 0.9981922507286072, + 0.9994868040084839, + 0.9988744854927063, + 0.9988980293273926, + 0.9989244341850281 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "final_label": "POSITIVE", + "final_count": 22, + "final_proportion": 0.9565217391304348, + "final_counts": { + "POSITIVE": 22, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9565217391304348, + "NEGATIVE": 0.043478260869565216 + } + } }, { "season_code": "202303", @@ -240496,7 +489354,7 @@ "16:00", "17:15", "CO493 208 - 493 College Street 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560001" + "https://map.yale.edu/?id=1910#!m/560001" ] ], "Wednesday": [ @@ -240504,7 +489362,7 @@ "16:00", "17:15", "CO493 208 - 493 College Street 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560001" + "https://map.yale.edu/?id=1910#!m/560001" ] ] }, @@ -240517,11 +489375,114 @@ "rp_attr": "", "classnotes": "", "final_exam": "HTBA", - "course_home_url": "https:\/\/yale.instructure.com\/courses\/88666", + "course_home_url": "https://yale.instructure.com/courses/88666", "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998832643032074, + 0.9988504648208618, + 0.9988884329795837, + 0.9987514019012451 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9944832921028137, + 0.9988648891448975, + 0.9986087679862976, + 0.9994294047355652, + 0.9946029782295227, + 0.998907208442688, + 0.9982296824455261 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9881994724273682, + 0.9989149570465088, + 0.9786842465400696, + 0.9977310299873352, + 0.9989294409751892, + 0.9989251494407654, + 0.9987794756889343 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 0.8888888888888888, + "final_counts": { + "POSITIVE": 16, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + } + } }, { "season_code": "202303", @@ -240558,7 +489519,7 @@ "13:00", "14:15", "STOECK 210 - Stoeckel Hall (renovated) 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ], "Thursday": [ @@ -240566,7 +489527,7 @@ "13:00", "14:15", "STOECK 210 - Stoeckel Hall (renovated) 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ] }, @@ -240580,10 +489541,93 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91177\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91177/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.967627227306366, + 0.9822559356689453 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986352324485779, + 0.9994655251502991, + 0.9988884329795837 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985289573669434, + 0.9972854852676392, + 0.9989160299301147 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 0.875, + "final_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + } + } }, { "season_code": "202303", @@ -240620,7 +489664,7 @@ "11:35", "12:50", "STOECK 312 - Stoeckel Hall (renovated) 312", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ], "Thursday": [ @@ -240628,7 +489672,7 @@ "11:35", "12:50", "STOECK 312 - Stoeckel Hall (renovated) 312", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ] }, @@ -240642,10 +489686,103 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91178\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91178/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987832903862, + 0.998802900314331, + 0.9980528354644775, + 0.9986018538475037 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984159469604492, + 0.9988030195236206, + 0.9977462887763977, + 0.9988147020339966, + 0.9989232420921326 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.99892657995224, + 0.998927891254425, + 0.9989317059516907, + 0.9983333945274353, + 0.9988887906074524 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 14 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -240683,7 +489820,7 @@ "14:30", "15:45", "STOECK 210 - Stoeckel Hall (renovated) 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ], "Thursday": [ @@ -240691,7 +489828,7 @@ "14:30", "15:45", "STOECK 210 - Stoeckel Hall (renovated) 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ] }, @@ -240705,10 +489842,99 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88495\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88495/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988009929656982, + 0.9988589286804199, + 0.9988229870796204, + 0.9988786578178406 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989224672317505, + 0.9989171028137207, + 0.9988357424736023, + 0.9988330006599426 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998694121837616, + 0.9988202452659607, + 0.9989377856254578, + 0.9985834360122681 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 12 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -240746,7 +489972,7 @@ "13:30", "15:20", "STOECK 312 - Stoeckel Hall (renovated) 312", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ] }, @@ -240762,15 +489988,134 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88499\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88499/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "Prerequisite: Completion of a 100- or 200-level music theory course or the corresponding placement exam, and\/or permission of instructor.", - "description": "An introduction to music-theory analysis of commercial and popular song (with a focus on American and British music of the past 50 years, across multiple genres). Coursework involves study of harmony, voice leading and text setting, rhythm and meter, and form, with assigned reading, listening, musical transcription and arranging, and written\/oral presentation of analysis.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988222718238831, + 0.9989332556724548, + 0.9987587928771973, + 0.9988229870796204, + 0.998887836933136, + 0.9989172220230103, + 0.9988307356834412, + 0.9988823533058167, + 0.9988420605659485 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988940358161926, + 0.9989123344421387, + 0.9985142350196838, + 0.9986957907676697, + 0.9988560676574707, + 0.9988935589790344, + 0.9988918900489807, + 0.9988779425621033, + 0.998923122882843 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984672665596008, + 0.9989233613014221, + 0.9989281296730042, + 0.9983071088790894, + 0.9986976385116577, + 0.9988781809806824, + 0.9982553124427795, + 0.9988391995429993, + 0.9988692402839661 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 27, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 27 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } + }, + { + "season_code": "202303", + "requirements": "Prerequisite: Completion of a 100- or 200-level music theory course or the corresponding placement exam, and/or permission of instructor.", + "description": "An introduction to music-theory analysis of commercial and popular song (with a focus on American and British music of the past 50 years, across multiple genres). Coursework involves study of harmony, voice leading and text setting, rhythm and meter, and form, with assigned reading, listening, musical transcription and arranging, and written/oral presentation of analysis.", "short_title": "Commercial and Popular Music ...", "title": "Commercial and Popular Music Theory", "school": "YC", @@ -240802,7 +490147,7 @@ "16:00", "17:15", "STOECK 210 - Stoeckel Hall (renovated) 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ], "Thursday": [ @@ -240810,7 +490155,7 @@ "16:00", "17:15", "STOECK 210 - Stoeckel Hall (renovated) 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ] }, @@ -240826,15 +490171,120 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88504\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88504/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "Prerequisite: Completion of a 100- or 200-level music theory course or the corresponding placement exam, and\/or permission of instructor.", - "description": "An introduction to music-theory analysis of commercial and popular song (with a focus on American and British music of the past 50 years, across multiple genres). Coursework involves study of harmony, voice leading and text setting, rhythm and meter, and form, with assigned reading, listening, musical transcription and arranging, and written\/oral presentation of analysis.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988008737564087, + 0.9988273978233337, + 0.9863710999488831, + 0.9986106157302856, + 0.9939426779747009, + 0.9988918900489807, + 0.9987348914146423 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986233711242676, + 0.9989206790924072, + 0.9989394545555115, + 0.9987407326698303, + 0.9989307522773743, + 0.9986110925674438 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987404942512512, + 0.9988616704940796, + 0.9985018968582153, + 0.9989334940910339, + 0.9989193677902222, + 0.9988968372344971, + 0.9987832903862 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 20 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } + }, + { + "season_code": "202303", + "requirements": "Prerequisite: Completion of a 100- or 200-level music theory course or the corresponding placement exam, and/or permission of instructor.", + "description": "An introduction to music-theory analysis of commercial and popular song (with a focus on American and British music of the past 50 years, across multiple genres). Coursework involves study of harmony, voice leading and text setting, rhythm and meter, and form, with assigned reading, listening, musical transcription and arranging, and written/oral presentation of analysis.", "short_title": "Commercial and Popular Music ...", "title": "Commercial and Popular Music Theory", "school": "YC", @@ -240860,7 +490310,7 @@ "13:30", "14:20", "STOECK 313 - Stoeckel Hall (renovated) 313", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ] }, @@ -240879,12 +490329,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", - "requirements": "Prerequisite: Completion of a 100- or 200-level music theory course or the corresponding placement exam, and\/or permission of instructor.", - "description": "An introduction to music-theory analysis of commercial and popular song (with a focus on American and British music of the past 50 years, across multiple genres). Coursework involves study of harmony, voice leading and text setting, rhythm and meter, and form, with assigned reading, listening, musical transcription and arranging, and written\/oral presentation of analysis.", + "requirements": "Prerequisite: Completion of a 100- or 200-level music theory course or the corresponding placement exam, and/or permission of instructor.", + "description": "An introduction to music-theory analysis of commercial and popular song (with a focus on American and British music of the past 50 years, across multiple genres). Coursework involves study of harmony, voice leading and text setting, rhythm and meter, and form, with assigned reading, listening, musical transcription and arranging, and written/oral presentation of analysis.", "short_title": "Commercial and Popular Music ...", "title": "Commercial and Popular Music Theory", "school": "YC", @@ -240910,7 +490388,7 @@ "14:30", "15:20", "STOECK 313 - Stoeckel Hall (renovated) 313", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ] }, @@ -240929,7 +490407,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -240966,7 +490472,7 @@ "13:00", "14:15", "STOECK 210 - Stoeckel Hall (renovated) 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ], "Wednesday": [ @@ -240974,7 +490480,7 @@ "13:00", "14:15", "STOECK 210 - Stoeckel Hall (renovated) 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ] }, @@ -240990,10 +490496,97 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88509\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88509/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987503290176392, + 0.9896802306175232, + 0.9862160682678223, + 0.9976000189781189 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9980937838554382, + 0.9987775683403015, + 0.9988293051719666 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989045858383179, + 0.9982354640960693, + 0.9972700476646423 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 0.9, + "final_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + } + } }, { "season_code": "202303", @@ -241030,7 +490623,7 @@ "16:00", "17:15", "STOECK 312 - Stoeckel Hall (renovated) 312", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ], "Wednesday": [ @@ -241038,7 +490631,7 @@ "16:00", "17:15", "STOECK 312 - Stoeckel Hall (renovated) 312", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ] }, @@ -241054,14 +490647,109 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92182\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92182/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "Prerequisite: Completion of MUSI 110, or any 200-level MUSI course, or the following: ability to match pitch and sing a major scale; knowledge of standard staff notation (treble\/bass clefs); knowledge of major\/minor key signatures; knowledge of basic time signatures; knowledge of intervals; knowledge of triads.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988942742347717, + 0.9972681999206543, + 0.998790442943573, + 0.998907208442688, + 0.9947019219398499 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986128807067871, + 0.9988671541213989, + 0.9962953925132751, + 0.9989112615585327, + 0.991990864276886 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.4, + "POSITIVE": 0.6 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.995172917842865, + 0.998874843120575, + 0.9989339709281921, + 0.9986904263496399 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 0.8571428571428571, + "final_counts": { + "POSITIVE": 12, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + } + } + }, + { + "season_code": "202303", + "requirements": "Prerequisite: Completion of MUSI 110, or any 200-level MUSI course, or the following: ability to match pitch and sing a major scale; knowledge of standard staff notation (treble/bass clefs); knowledge of major/minor key signatures; knowledge of basic time signatures; knowledge of intervals; knowledge of triads.", "description": "Tonal music theory topics with an emphasis on sight-sightreading, rhythm,\u00a0melodic and harmonic dictation,\u00a0and aural analysis.", "short_title": "Aural Skills for Tonal Music", "title": "Aural Skills for Tonal Music", @@ -241094,7 +490782,7 @@ "14:30", "15:20", "STOECK 210 - Stoeckel Hall (renovated) 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ], "Wednesday": [ @@ -241102,7 +490790,7 @@ "14:30", "15:20", "STOECK 210 - Stoeckel Hall (renovated) 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ], "Friday": [ @@ -241110,7 +490798,7 @@ "14:30", "15:20", "STOECK 210 - Stoeckel Hall (renovated) 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ] }, @@ -241126,14 +490814,119 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88515\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88515/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "Prerequisite: Completion of MUSI 110, or any 200-level MUSI course, or the following: ability to match pitch and sing a major scale; knowledge of standard staff notation (treble\/bass clefs); knowledge of major\/minor key signatures; knowledge of basic time signatures; knowledge of intervals; knowledge of triads.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981521964073181, + 0.9986401200294495, + 0.9977418184280396, + 0.9988794922828674, + 0.9985865354537964, + 0.9985149502754211 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9938534498214722, + 0.9848417043685913, + 0.9951620697975159, + 0.9988489151000977, + 0.9989169836044312, + 0.9986433386802673 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 5 + }, + "sentiment_distribution": { + "NEGATIVE": 0.16666666666666666, + "POSITIVE": 0.8333333333333334 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9911664128303528, + 0.9838956594467163, + 0.9981348514556885, + 0.9988411068916321, + 0.9987439513206482, + 0.9987622499465942, + 0.9989272952079773 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 5 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2857142857142857, + "POSITIVE": 0.7142857142857143 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7142857142857143 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 0.8421052631578947, + "final_counts": { + "POSITIVE": 16, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.8421052631578947, + "NEGATIVE": 0.15789473684210525 + } + } + }, + { + "season_code": "202303", + "requirements": "Prerequisite: Completion of MUSI 110, or any 200-level MUSI course, or the following: ability to match pitch and sing a major scale; knowledge of standard staff notation (treble/bass clefs); knowledge of major/minor key signatures; knowledge of basic time signatures; knowledge of intervals; knowledge of triads.", "description": "Tonal music theory topics with an emphasis on sight-sightreading, rhythm,\u00a0melodic and harmonic dictation,\u00a0and aural analysis.", "short_title": "Aural Skills for Tonal Music", "title": "Aural Skills for Tonal Music", @@ -241166,7 +490959,7 @@ "9:25", "10:15", "STOECK 312 - Stoeckel Hall (renovated) 312", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ], "Wednesday": [ @@ -241174,7 +490967,7 @@ "9:25", "10:15", "STOECK 312 - Stoeckel Hall (renovated) 312", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ], "Friday": [ @@ -241182,7 +490975,7 @@ "9:25", "10:15", "STOECK 312 - Stoeckel Hall (renovated) 312", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ] }, @@ -241199,15 +490992,138 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91454\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/91454/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983184337615967, + 0.9971515536308289, + 0.9955283999443054, + 0.9988082647323608, + 0.9964954257011414, + 0.9988967180252075, + 0.9967315196990967, + 0.9987533092498779, + 0.9987679123878479 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989333748817444, + 0.9988595247268677, + 0.9988628625869751, + 0.9884805679321289, + 0.9988631010055542, + 0.9989093542098999, + 0.9989101886749268, + 0.9989000558853149, + 0.988394021987915 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989390969276428, + 0.9987751841545105, + 0.998803973197937, + 0.9954663515090942, + 0.9987819790840149, + 0.9989307522773743, + 0.9989062547683716, + 0.9988842606544495, + 0.9986574649810791, + 0.9989043474197388 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "final_label": "POSITIVE", + "final_count": 26, + "final_proportion": 0.9285714285714286, + "final_counts": { + "POSITIVE": 26, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9285714285714286, + "NEGATIVE": 0.07142857142857142 + } + } }, { "season_code": "202303", "requirements": "Must have already taken MUSI 218, or demonstrate the following prerequisites:", - "description": "Study of chromatic tonal music theory topics through sightreading, transcription, aural analysis, and improvisation.\n\n\u2022 Knowledge of all key signatures\n\u2022 Knowledge of treble, bass, and c clefs\n\u2022 Ability to sing\/match pitch\n\u2022 Ability to perform roman-numeral analysis\n\u2022 Ability to perform harmonic dictation of diatonic music", + "description": "Study of chromatic tonal music theory topics through sightreading, transcription, aural analysis, and improvisation.\n\n\u2022 Knowledge of all key signatures\n\u2022 Knowledge of treble, bass, and c clefs\n\u2022 Ability to sing/match pitch\n\u2022 Ability to perform roman-numeral analysis\n\u2022 Ability to perform harmonic dictation of diatonic music", "short_title": "Aural Skills for Chromatic Music", "title": "Aural Skills for Chromatic Music", "school": "YC", @@ -241239,7 +491155,7 @@ "14:30", "15:45", "STOECK 313 - Stoeckel Hall (renovated) 313", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ], "Thursday": [ @@ -241247,7 +491163,7 @@ "14:30", "15:45", "STOECK 313 - Stoeckel Hall (renovated) 313", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ] }, @@ -241259,10 +491175,113 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88519\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88519/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986929297447205, + 0.998536229133606, + 0.9987542629241943, + 0.9988232254981995, + 0.9977151155471802, + 0.9895442724227905, + 0.9981579184532166 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998936116695404, + 0.9989252686500549, + 0.9989287257194519, + 0.9988988637924194, + 0.9988850951194763 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988642930984497, + 0.9989365935325623, + 0.9989277720451355, + 0.9989227652549744, + 0.9988827109336853, + 0.9981350898742676, + 0.9988893866539001 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 19 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -241299,7 +491318,7 @@ "16:30", "18:00", "WLH 201 - William L. Harkness Hall 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -241313,15 +491332,118 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88522\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88522/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988067150115967, + 0.9987228512763977, + 0.9988691210746765, + 0.9988629817962646, + 0.9985747337341309, + 0.9987930059432983 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989073276519775, + 0.9954633116722107, + 0.9988928437232971, + 0.9989288449287415, + 0.9989225268363953, + 0.9988728165626526, + 0.999430239200592 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9949470162391663, + 0.9989261031150818, + 0.9988433122634888, + 0.9986990690231323, + 0.9947994947433472 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 0.9444444444444444, + "final_counts": { + "POSITIVE": 17, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9444444444444444, + "NEGATIVE": 0.05555555555555555 + } + } }, { "season_code": "202303", "requirements": "Some previous musical experience is required.", - "description": "An introduction to the ensemble musics of West Asia\/Southeast Europe and their theoretical, cultural, and aesthetic traditions. Students learn repertoire and approaches to ornamentation, improvisation, and meter (including additive aksak meters like 7\/8 and 11\/8) on their own instruments and voice parts. Instruction on traditional regional instruments is also offered. The course culminates in a public ensemble performance. This course may be repeated for credit.", + "description": "An introduction to the ensemble musics of West Asia/Southeast Europe and their theoretical, cultural, and aesthetic traditions. Students learn repertoire and approaches to ornamentation, improvisation, and meter (including additive aksak meters like 7/8 and 11/8) on their own instruments and voice parts. Instruction on traditional regional instruments is also offered. The course culminates in a public ensemble performance. This course may be repeated for credit.", "short_title": "Near Eastern and Balkan Ensemble", "title": "Near Eastern and Balkan Ensemble", "school": "YC", @@ -241352,10 +491474,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90310\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/90310/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -241395,7 +491545,7 @@ "13:30", "15:20", "STOECK 313 - Stoeckel Hall (renovated) 313", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ] }, @@ -241411,10 +491561,111 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88525\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88525/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988604784011841, + 0.9989239573478699, + 0.9987784028053284, + 0.998918890953064, + 0.998488187789917 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989351630210876, + 0.9989253878593445, + 0.9989150762557983, + 0.9989067316055298, + 0.9989087581634521, + 0.9988695979118347 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989223480224609, + 0.9988647699356079, + 0.9989390969276428, + 0.9986425042152405, + 0.9989381432533264, + 0.9989247918128967, + 0.9988958835601807 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 18 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -241451,7 +491702,7 @@ "13:30", "15:20", "STOECK B01 - Stoeckel Hall (renovated) B01", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ] }, @@ -241465,10 +491716,81 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88528\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88528/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987279772758484 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989295601844788 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989373087882996 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 3, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 3 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -241505,7 +491827,7 @@ "9:25", "11:15", "STOECK B01 - Stoeckel Hall (renovated) B01", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ] }, @@ -241520,10 +491842,101 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90755\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90755/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998867392539978, + 0.9983274340629578, + 0.9988012313842773, + 0.9985866546630859 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988514184951782, + 0.9989238381385803, + 0.9988413453102112, + 0.9977462887763977 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988958835601807, + 0.9989250302314758, + 0.9988652467727661, + 0.9988738894462585, + 0.998819887638092 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 13 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -241560,7 +491973,7 @@ "13:30", "15:20", "STOECK 312 - Stoeckel Hall (renovated) 312", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ] }, @@ -241574,10 +491987,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89174\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89174/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -241619,7 +492060,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -241656,7 +492125,7 @@ "15:30", "17:20", "STOECK 106 - Stoeckel Hall (renovated) 106", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ] }, @@ -241673,10 +492142,119 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88530\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88530/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987934827804565, + 0.9970951080322266, + 0.9989275336265564, + 0.9881134629249573, + 0.998920202255249, + 0.9984184503555298, + 0.9987156391143799, + 0.9988061189651489 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.997067391872406, + 0.9989094734191895, + 0.9988724589347839, + 0.998744010925293, + 0.9987732768058777, + 0.9989230036735535 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988491535186768, + 0.998359739780426, + 0.9988877177238464, + 0.9987162351608276, + 0.9988930821418762, + 0.998863935470581, + 0.9989385008811951, + 0.998930037021637 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 22, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 22 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -241714,7 +492292,7 @@ "9:25", "11:15", "HEN 301 - Hendrie Hall 301", - "https:\/\/map.yale.edu\/?id=1910#!m\/563676" + "https://map.yale.edu/?id=1910#!m/563676" ] ] }, @@ -241728,10 +492306,117 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88532\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88532/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.675739586353302, + 0.9982794523239136, + 0.9977467656135559, + 0.9987367987632751, + 0.9987555742263794, + 0.9828928112983704, + 0.9987043142318726 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994569420814514, + 0.9988603591918945, + 0.9976121187210083, + 0.9980469942092896, + 0.9988240599632263, + 0.9988825917243958 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 5 + }, + "sentiment_distribution": { + "NEGATIVE": 0.16666666666666666, + "POSITIVE": 0.8333333333333334 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.999496579170227, + 0.9988542795181274, + 0.9972623586654663, + 0.9979497790336609, + 0.9969943761825562, + 0.9988872408866882, + 0.9988897442817688 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 6 + }, + "sentiment_distribution": { + "NEGATIVE": 0.14285714285714285, + "POSITIVE": 0.8571428571428571 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 0.9, + "final_counts": { + "POSITIVE": 18, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + } + } }, { "season_code": "202303", @@ -241768,7 +492453,7 @@ "15:30", "17:20", "STOECK 210 - Stoeckel Hall (renovated) 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ] }, @@ -241784,10 +492469,97 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92183\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92183/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987223744392395, + 0.9964185953140259, + 0.9987345337867737 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9993477463722229, + 0.9985401630401611 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 1 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988977909088135, + 0.9849957823753357, + 0.9989179372787476, + 0.9988715052604675, + 0.9985693693161011 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 0.9, + "final_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + } + } }, { "season_code": "202303", @@ -241826,13 +492598,178 @@ ], "regnotes": "", "rp_attr": "", - "classnotes": "You must also fill out a lesson application for this course: \nhttps:\/\/yalemusic.wufoo.com\/forms\/music-lessons-application\n", + "classnotes": "You must also fill out a lesson application for this course: \nhttps://yalemusic.wufoo.com/forms/music-lessons-application\n", "final_exam": "No regular final examination", "course_home_url": "", "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985974431037903, + 0.9941845536231995, + 0.998767614364624, + 0.9988008737564087, + 0.9988082647323608, + 0.9987370371818542, + 0.9988701939582825, + 0.9984819293022156, + 0.9987573623657227, + 0.9989014863967896, + 0.9984434247016907, + 0.9988755583763123, + 0.9988190531730652, + 0.998744010925293, + 0.9988988637924194, + 0.992960512638092 + ], + "sentiment_counts": { + "POSITIVE": 16, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989204406738281, + 0.9986661672592163, + 0.9987896084785461, + 0.9965420365333557, + 0.999494194984436, + 0.9986041188240051, + 0.9986611604690552, + 0.9983351826667786, + 0.9988623857498169, + 0.9987714886665344, + 0.9989204406738281, + 0.9988725781440735, + 0.9720565676689148, + 0.9988522529602051 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.7857142857142857, + "NEGATIVE": 0.21428571428571427 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7857142857142857 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987009763717651, + 0.9989112615585327, + 0.9978976249694824, + 0.9842442274093628, + 0.9989111423492432, + 0.998724639415741, + 0.9867039918899536, + 0.9988000392913818, + 0.9988164901733398, + 0.9988573789596558, + 0.9989277720451355, + 0.9986037611961365, + 0.9976826906204224, + 0.9988804459571838, + 0.9981555342674255, + 0.9988823533058167, + 0.9979933500289917, + 0.9989171028137207, + 0.9987751841545105 + ], + "sentiment_counts": { + "POSITIVE": 18, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9473684210526315, + "NEGATIVE": 0.05263157894736842 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9473684210526315 + ] + }, + "final_label": "POSITIVE", + "final_count": 45, + "final_proportion": 0.9183673469387755, + "final_counts": { + "POSITIVE": 45, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.9183673469387755, + "NEGATIVE": 0.08163265306122448 + } + } }, { "season_code": "202303", @@ -241869,7 +492806,7 @@ "13:00", "14:15", "STOECK 106 - Stoeckel Hall (renovated) 106", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ], "Wednesday": [ @@ -241877,7 +492814,7 @@ "13:00", "14:15", "STOECK 106 - Stoeckel Hall (renovated) 106", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ] }, @@ -241893,10 +492830,145 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90555\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/90555/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988804459571838, + 0.9977553486824036, + 0.9989295601844788, + 0.9989226460456848, + 0.9988338351249695, + 0.9989194869995117, + 0.9987922310829163, + 0.998915433883667, + 0.9989105463027954, + 0.9988922476768494, + 0.9985982775688171 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998917818069458, + 0.9988152980804443, + 0.9988571405410767, + 0.9989345669746399, + 0.9989099502563477, + 0.9989330172538757, + 0.998710036277771, + 0.9989281296730042, + 0.9989128112792969, + 0.9989307522773743, + 0.9987574815750122 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998881995677948, + 0.9989388585090637, + 0.9989166259765625, + 0.9988864064216614, + 0.9989326596260071, + 0.9987924098968506, + 0.9987885355949402, + 0.9980402588844299, + 0.9989228844642639, + 0.9989338517189026, + 0.9982553124427795, + 0.9989051818847656, + 0.9989141225814819 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 35, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 35 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -241933,7 +493005,7 @@ "11:35", "12:50", "STOECK 210 - Stoeckel Hall (renovated) 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ], "Wednesday": [ @@ -241941,7 +493013,7 @@ "11:35", "12:50", "STOECK 210 - Stoeckel Hall (renovated) 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ] }, @@ -241955,10 +493027,38 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92184\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/92184/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -241996,7 +493096,7 @@ "13:30", "15:20", "STOECK 211 - Stoeckel Hall (renovated) 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ] }, @@ -242012,10 +493112,93 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90206\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90206/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988031387329102, + 0.9989213943481445, + 0.9987892508506775 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988013505935669, + 0.9988573789596558 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9981885552406311, + 0.99869304895401, + 0.9809478521347046 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 0.875, + "final_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + } + } }, { "season_code": "202303", @@ -242052,7 +493235,7 @@ "14:30", "16:20", "STOECK 106 - Stoeckel Hall (renovated) 106", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ] }, @@ -242066,10 +493249,105 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88542\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88542/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986584186553955, + 0.9988560676574707, + 0.9987951517105103, + 0.9987010955810547, + 0.9988793730735779 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988779425621033, + 0.9988447427749634, + 0.9988757967948914, + 0.9988721013069153, + 0.9989215135574341 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981348514556885, + 0.9978867173194885, + 0.9982553124427795, + 0.9988815188407898, + 0.9989200830459595 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 15 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -242110,7 +493388,7 @@ "13:30", "17:20", "EDG36 204 - 36 Edgewood Ave. Sculpture Bld 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560028" + "https://map.yale.edu/?id=1910#!m/560028" ] ] }, @@ -242124,10 +493402,81 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89538\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89538/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985989928245544 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9974945783615112 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982890486717224 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 3, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 3 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -242166,7 +493515,7 @@ "11:35", "12:50", "LC 211 - Linsly-Chittenden Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -242174,7 +493523,7 @@ "11:35", "12:50", "LC 211 - Linsly-Chittenden Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -242188,10 +493537,137 @@ "classnotes": "", "final_exam": "Sunday, December 17, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88081\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88081/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9977549910545349, + 0.9985780715942383, + 0.9987484216690063, + 0.9987838864326477, + 0.9995070695877075, + 0.996698260307312, + 0.9979314804077148, + 0.9988934397697449, + 0.9979191422462463, + 0.9988676309585571 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.99891197681427, + 0.9992156028747559, + 0.9983904361724854, + 0.998883068561554, + 0.998672604560852, + 0.9986215829849243, + 0.929544985294342, + 0.9981362819671631, + 0.9988934397697449, + 0.9989307522773743 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989087581634521, + 0.9995052814483643, + 0.9949973821640015, + 0.9987932443618774, + 0.9995144605636597, + 0.9974592328071594, + 0.9982625842094421, + 0.9909600019454956, + 0.9989174604415894, + 0.9989205598831177 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.7, + "NEGATIVE": 0.3 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7 + ] + }, + "final_label": "POSITIVE", + "final_count": 24, + "final_proportion": 0.8, + "final_counts": { + "POSITIVE": 24, + "NEGATIVE": 6 + }, + "final_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + } + } }, { "season_code": "202303", @@ -242230,13 +493706,66 @@ ], "regnotes": "", "rp_attr": "", - "classnotes": "You must also fill out a lesson application for this course: \nhttps:\/\/yalemusic.wufoo.com\/forms\/music-lessons-application", + "classnotes": "You must also fill out a lesson application for this course: \nhttps://yalemusic.wufoo.com/forms/music-lessons-application", "final_exam": "No regular final examination", "course_home_url": "", "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998735249042511, + 0.9988605976104736 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9935500025749207 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 3, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 3 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -242274,7 +493803,7 @@ "9:25", "11:15", "HEN 313 - Hendrie Hall 313", - "https:\/\/map.yale.edu\/?id=1910#!m\/563676" + "https://map.yale.edu/?id=1910#!m/563676" ] ] }, @@ -242286,15 +493815,86 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91995\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91995/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.998900294303894 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988755583763123 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988901019096375 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 3, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 3 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", "requirements": "Prerequisite: one or more AFAM courses.", - "description": "This course traces the birth and evolution of Black arts writing and criticism\u2212its style and content, its major themes and groundbreaking practices\u2212from the late nineteenth century through the 2020s. From the innovations of W.E.B. DuBois, Pauline Hopkins, and postbellum Black arts journalists to the breakthroughs of Harlem Renaissance heavyweights (Zora Neale Hurston, Langston Hughes and others), from the jazz experimentalism of Ralph Ellison and Albert Murray to the revolutionary criticism of Amiri Baraka, Lorraine Hansberry, James Baldwin, Phyl Garland and others, this class explores the intellectual work of pioneering writers who produced radical knowledge about Black culture. Its second half turns to the late twentieth and twenty-first century criticism of legendary arts journalists, scholars and critics: Toni Morrison, Thulani Davis, Margo Jefferson, Hilton Als, Greg Tate, Farah J. Griffin, Joan Morgan, Danyel Smith, Wesley Morris, Hanif Abdurraqib, and others. Emphasis will be placed on music, literary, film, and theater\/performance arts writing.", + "description": "This course traces the birth and evolution of Black arts writing and criticism\u2212its style and content, its major themes and groundbreaking practices\u2212from the late nineteenth century through the 2020s. From the innovations of W.E.B. DuBois, Pauline Hopkins, and postbellum Black arts journalists to the breakthroughs of Harlem Renaissance heavyweights (Zora Neale Hurston, Langston Hughes and others), from the jazz experimentalism of Ralph Ellison and Albert Murray to the revolutionary criticism of Amiri Baraka, Lorraine Hansberry, James Baldwin, Phyl Garland and others, this class explores the intellectual work of pioneering writers who produced radical knowledge about Black culture. Its second half turns to the late twentieth and twenty-first century criticism of legendary arts journalists, scholars and critics: Toni Morrison, Thulani Davis, Margo Jefferson, Hilton Als, Greg Tate, Farah J. Griffin, Joan Morgan, Danyel Smith, Wesley Morris, Hanif Abdurraqib, and others. Emphasis will be placed on music, literary, film, and theater/performance arts writing.", "short_title": "Black Arts Criticism: Intelle...", "title": "Black Arts Criticism: Intellectual Life of Black Culture from W.E.B. DuBois to the 21st Century", "school": "YC", @@ -242328,7 +493928,7 @@ "13:30", "15:20", "WALL81 201 - 81 Wall Street 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -242339,13 +493939,112 @@ "flags": [], "regnotes": "", "rp_attr": "This course meets during the Reading Period: the week between the last week of classes and finals week. Meets Reading Period", - "classnotes": "Please note: Instructor Permission Requests will not be reviewed until add\/drop period in August. This course requires an application which will be provided by the instructor.", + "classnotes": "Please note: Instructor Permission Requests will not be reviewed until add/drop period in August. This course requires an application which will be provided by the instructor.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89259\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89259/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988983869552612, + 0.9988607168197632, + 0.9988065958023071, + 0.998902440071106, + 0.9988353848457336, + 0.9989376664161682 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988515377044678, + 0.9988080263137817, + 0.9988665580749512, + 0.998903751373291, + 0.9988962411880493 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989136457443237, + 0.9989116191864014, + 0.9988300204277039, + 0.9989012479782104, + 0.9988804459571838, + 0.9989251494407654 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 17 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -242385,7 +494084,7 @@ "14:30", "15:45", "LC 204 - Linsly-Chittenden Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -242393,7 +494092,7 @@ "14:30", "15:45", "LC 204 - Linsly-Chittenden Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -242413,10 +494112,87 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89647\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89647/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986574649810791, + 0.9988542795181274 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.997345507144928, + 0.998895525932312 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9968374967575073, + 0.9988742470741272 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 6 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -242457,7 +494233,7 @@ "13:30", "15:20", "STOECK 312 - Stoeckel Hall (renovated) 312", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ] }, @@ -242473,15 +494249,126 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90082\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90082/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987356066703796, + 0.9988833069801331, + 0.9988981485366821, + 0.9989221096038818, + 0.9988976716995239, + 0.9987940788269043, + 0.9989323019981384, + 0.9985860586166382 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988821148872375, + 0.9988889098167419, + 0.9989053010940552, + 0.998890221118927, + 0.9989303946495056, + 0.9989169836044312, + 0.998898983001709 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989113807678223, + 0.9989084005355835, + 0.9988080263137817, + 0.9989332556724548, + 0.9989216327667236, + 0.998910665512085, + 0.998880922794342, + 0.9988812804222107 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 23, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 23 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", "requirements": "This course does not require prior knowledge of specialist musical terminology.", - "description": "Exile has been the defining characteristic of Jewish culture for most of Jewish history. Sephardic and (more recently called) Mizrahi Jews across the Arab world developed unique languages, rituals, and musical styles that continued to grow following dramatic expulsions like those in 1492 or following 1948. In turn, Jewish musicians often shaped the soundworlds of their host cultures even as they continued to move across and around the Mediterranean. This class considers the musical styles of the Jews of Arab lands through the experience of exile and diaspora. We focus on the itineraries of Jewish musicians and musical styles that travelled from Babylonia, Yemen, and medieval Spain, through Livorno, Fez and Baghdad, and continue to live on today in Jerusalem, Casablanca and Brooklyn. We examine the musical framing of diaspora, and how the movement of people changes the way groups come to reframe music as memory. We also consider ritual and text, and the way each shapes intimate and sacred spaces. Thinking about some musical styles that have faded away and some that continue to flourish, we re-center the Jewish experience around its Sephardic\/Mizrahi history, with multiple routes of movement and memory.", + "description": "Exile has been the defining characteristic of Jewish culture for most of Jewish history. Sephardic and (more recently called) Mizrahi Jews across the Arab world developed unique languages, rituals, and musical styles that continued to grow following dramatic expulsions like those in 1492 or following 1948. In turn, Jewish musicians often shaped the soundworlds of their host cultures even as they continued to move across and around the Mediterranean. This class considers the musical styles of the Jews of Arab lands through the experience of exile and diaspora. We focus on the itineraries of Jewish musicians and musical styles that travelled from Babylonia, Yemen, and medieval Spain, through Livorno, Fez and Baghdad, and continue to live on today in Jerusalem, Casablanca and Brooklyn. We examine the musical framing of diaspora, and how the movement of people changes the way groups come to reframe music as memory. We also consider ritual and text, and the way each shapes intimate and sacred spaces. Thinking about some musical styles that have faded away and some that continue to flourish, we re-center the Jewish experience around its Sephardic/Mizrahi history, with multiple routes of movement and memory.", "short_title": "Music, Exile, and Diaspora\u2500th...", "title": "Music, Exile, and Diaspora\u2500the Jews of Arab Lands", "school": "YC", @@ -242513,7 +494400,7 @@ "15:30", "17:20", "STOECK 408 - Stoeckel Hall (renovated) 408", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ] }, @@ -242528,15 +494415,86 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91395\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91395/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "", - "description": "An examination of the Afro-diasporic music cultures of Cuba and Jamaica, placing the historical succession of musical genres and traditions into social, cultural, and political contexts. Cuban genres studied include religious\/folkloric traditions (Lucumi\/Santeria and Abakua), rumba, son, mambo, pachanga\/charanga, salsa, timba and reggaeton. Jamaican genres studied include: folkloric traditions (etu\/tambu\/kumina), Jamaican R&B, ska, rock steady, reggae, ragga\/dancehall. Prominent themes include: slavery, Afro-diasporic cultural traditions, Black Atlantic culture, nationalism\/independence\/post-colonial culture, relationships with the United States, music & gender\/sexuality, technology.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9979019165039062 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989026784896851 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9970442652702332 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 3, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 3 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } + }, + { + "season_code": "202303", + "requirements": "", + "description": "An examination of the Afro-diasporic music cultures of Cuba and Jamaica, placing the historical succession of musical genres and traditions into social, cultural, and political contexts. Cuban genres studied include religious/folkloric traditions (Lucumi/Santeria and Abakua), rumba, son, mambo, pachanga/charanga, salsa, timba and reggaeton. Jamaican genres studied include: folkloric traditions (etu/tambu/kumina), Jamaican R&B, ska, rock steady, reggae, ragga/dancehall. Prominent themes include: slavery, Afro-diasporic cultural traditions, Black Atlantic culture, nationalism/independence/post-colonial culture, relationships with the United States, music & gender/sexuality, technology.", "short_title": "Music of the Caribbean: Cuba ...", "title": "Music of the Caribbean: Cuba and Jamaica", "school": "YC", @@ -242569,7 +494527,7 @@ "15:30", "17:20", "STOECK 107 - Stoeckel Hall (renovated) 107", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ] }, @@ -242585,10 +494543,103 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90060\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90060/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998337984085083, + 0.9989049434661865, + 0.998915433883667, + 0.9988044500350952 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9995030164718628, + 0.9989092350006104, + 0.9989352822303772, + 0.9989145994186401 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.25, + "POSITIVE": 0.75 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9993032217025757, + 0.9989230036735535, + 0.9988609552383423, + 0.9988704323768616, + 0.9989168643951416 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 4 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2, + "POSITIVE": 0.8 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 0.8461538461538461, + "final_counts": { + "POSITIVE": 11, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8461538461538461, + "NEGATIVE": 0.15384615384615385 + } + } }, { "season_code": "202303", @@ -242633,7 +494684,7 @@ "13:30", "15:20", "YK220 001 - 220 York Street 001", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ] }, @@ -242650,15 +494701,43 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90520\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90520/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "Original essay in ethnomusicology, music history, music theory, or music technology and\/or multimedia art under the direction of a faculty adviser. Admission to the course upon submission to the department of the essay proposal by the registration deadline, and approval of the director of undergraduate studies.", + "description": "Original essay in ethnomusicology, music history, music theory, or music technology and/or multimedia art under the direction of a faculty adviser. Admission to the course upon submission to the department of the essay proposal by the registration deadline, and approval of the director of undergraduate studies.", "short_title": "Individual Study", "title": "Individual Study", "school": "YC", @@ -242696,7 +494775,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -242739,7 +494846,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -242782,7 +494917,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -242825,7 +494988,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -242868,7 +495059,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -242905,7 +495124,7 @@ "9:25", "11:15", "STOECK 211 - Stoeckel Hall (renovated) 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ] }, @@ -242917,10 +495136,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90078\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90078/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -242957,7 +495204,7 @@ "13:30", "15:20", "STOECK 211 - Stoeckel Hall (renovated) 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ] }, @@ -242969,10 +495216,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92478\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92478/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -243009,7 +495284,7 @@ "13:30", "15:20", "STOECK 107 - Stoeckel Hall (renovated) 107", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ] }, @@ -243021,10 +495296,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88556\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88556/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -243067,7 +495370,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -243110,7 +495441,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -243147,7 +495506,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -243184,7 +495571,7 @@ "9:25", "11:15", "STOECK 211 - Stoeckel Hall (renovated) 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ] }, @@ -243196,10 +495583,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90226\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90226/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -243237,7 +495652,7 @@ "13:30", "15:20", "STOECK 211 - Stoeckel Hall (renovated) 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ] }, @@ -243249,10 +495664,93 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90206\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90206/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988031387329102, + 0.9989213943481445, + 0.9987892508506775 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988013505935669, + 0.9988573789596558 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9981885552406311, + 0.99869304895401, + 0.9809478521347046 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 0.875, + "final_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + } + } }, { "season_code": "202303", @@ -243295,7 +495793,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -243332,7 +495858,7 @@ "9:25", "11:15", "STOECK 313 - Stoeckel Hall (renovated) 313", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ] }, @@ -243344,10 +495870,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88568\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88568/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -243384,7 +495938,7 @@ "12:30", "14:30", "WLH 201 - William L. Harkness Hall 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -243396,10 +495950,38 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90408\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/90408/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -243436,7 +496018,7 @@ "7:15", "8:45", "WH55 412 - 55 Whitney Avenue 412", - "https:\/\/map.yale.edu\/?id=1910#!m\/560121" + "https://map.yale.edu/?id=1910#!m/560121" ] ] }, @@ -243448,15 +496030,43 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90409\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "", - "description": "This course is a study of the U.S. Navy and the influence of U.S. sea power on world history that incorporates both a historical and political science process to explore the major events, attitudes, personalities, and circumstances that have imbued the U.S. Navy with its proud history and rich tradition. This course introduces grand strategy, evaluating key components, and examples from ancient history and modern U.S. history. It deals with issues of national imperatives in peacetime, as well as war, varying maritime philosophies that were interpreted into naval strategies\/doctrines, budgetary concerns which shaped force realities, and the pursuit of American diplomatic objectives. It concludes with a discussion of the Navy\u2019s strategic and structural changes post-Cold War, the evolution of its focus, mission, and strategy both in the post-September 11, 2001 world and post-Global War on Terrorism era.", + "syllabus_url": "https://yale.instructure.com/courses/90409/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } + }, + { + "season_code": "202303", + "requirements": "", + "description": "This course is a study of the U.S. Navy and the influence of U.S. sea power on world history that incorporates both a historical and political science process to explore the major events, attitudes, personalities, and circumstances that have imbued the U.S. Navy with its proud history and rich tradition. This course introduces grand strategy, evaluating key components, and examples from ancient history and modern U.S. history. It deals with issues of national imperatives in peacetime, as well as war, varying maritime philosophies that were interpreted into naval strategies/doctrines, budgetary concerns which shaped force realities, and the pursuit of American diplomatic objectives. It concludes with a discussion of the Navy\u2019s strategic and structural changes post-Cold War, the evolution of its focus, mission, and strategy both in the post-September 11, 2001 world and post-Global War on Terrorism era.", "short_title": "Seapower and Maritime Affairs", "title": "Seapower and Maritime Affairs", "school": "YC", @@ -243488,7 +496098,7 @@ "9:00", "10:15", "WH55 412 - 55 Whitney Avenue 412", - "https:\/\/map.yale.edu\/?id=1910#!m\/560121" + "https://map.yale.edu/?id=1910#!m/560121" ] ], "Thursday": [ @@ -243496,7 +496106,7 @@ "9:00", "10:15", "WH55 412 - 55 Whitney Avenue 412", - "https:\/\/map.yale.edu\/?id=1910#!m\/560121" + "https://map.yale.edu/?id=1910#!m/560121" ] ] }, @@ -243508,10 +496118,87 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90410\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90410/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988725781440735, + 0.9989275336265564, + 0.9988484382629395 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.998160183429718 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988980293273926, + 0.9989252686500549 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 6 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -243548,7 +496235,7 @@ "7:30", "8:45", "WH55 412 - 55 Whitney Avenue 412", - "https:\/\/map.yale.edu\/?id=1910#!m\/560121" + "https://map.yale.edu/?id=1910#!m/560121" ] ], "Thursday": [ @@ -243556,7 +496243,7 @@ "7:30", "8:45", "WH55 412 - 55 Whitney Avenue 412", - "https:\/\/map.yale.edu\/?id=1910#!m\/560121" + "https://map.yale.edu/?id=1910#!m/560121" ] ] }, @@ -243568,10 +496255,17 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90411\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90411/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -243608,7 +496302,7 @@ "9:00", "11:00", "WH55 212 - 55 Whitney Avenue 212", - "https:\/\/map.yale.edu\/?id=1910#!m\/560121" + "https://map.yale.edu/?id=1910#!m/560121" ] ] }, @@ -243620,14 +496314,21 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90412\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90412/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", - "requirements": "This course is offered to graduate and M.D.\/Ph.D. students only and cannot be audited.", + "requirements": "This course is offered to graduate and M.D./Ph.D. students only and cannot be audited.", "description": "An integrative overview of the structure and function of the human brain as it pertains to major neurological and psychiatric disorders. Neuroanatomy, neurophysiology, and clinical correlations are interrelated to provide essential background in the neurosciences. Lectures in neurocytology and neuroanatomy survey neuronal organization in the human brain, with emphasis on long fiber tracts related to clinical neurology. Weekly three-hour laboratory sessions in close collaboration with faculty members. Lectures in neurophysiology cover various aspects of neural function at the cellular level, with a strong emphasis on the mammalian nervous system. Clinical correlations consist of five sessions given by one or two faculty members representing both basic and clinical sciences. These sessions relate neurological symptoms to cellular processes in various diseases of the brain. Variable class schedule; contact course instructors.", "short_title": "Structural and Functional Org...", "title": "Structural and Functional Organization of the Human Nervous System", @@ -243667,7 +496368,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -243704,7 +496433,7 @@ "14:30", "15:45", "HQ C11 - Humanities Quadrangle C11", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -243712,7 +496441,7 @@ "14:30", "15:45", "HQ C11 - Humanities Quadrangle C11", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -243726,15 +496455,92 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90124\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90124/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "", - "description": "Focusing on the figure of the hero through different eras, cultures, and media, this course provides first-year students with a reading-and writing-intensive introduction to studying the humanities at Yale. The course is anchored around six transcultural models of the hero that similarly transcend boundaries of time and place: the warrior, the sage, the political leader, the proponent of justice, the poet\/singer, and the unsung. Our sources range widely across genres, media, periods, and geographies: from the ancient Near Eastern, Epic of Gilgamesh (1500 BCE) to the Southeast Asian Ramayana, to the Icelandic-Ukrainian climate activism film, Woman at War (2018). As part of the Six Pretty Good suite, we explore Yale's special collections and art galleries to broaden our perspectives on hierarchies of value and to sharpen our skills of observation and working with evidence. Six Pretty Good Heroes is a 1.5 credit course, devoting sustained attention students\u2019 academic writing and is an excellent foundation for the next seven semesters at Yale. Required Friday sessions are reserved for writing labs and visits to Yale collections, as well as one-on-one and small-group meetings with the writing instruction staff.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988937973976135, + 0.9834648370742798 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989356398582458, + 0.9986432194709778 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989283680915833, + 0.9976139068603516 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 6 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } + }, + { + "season_code": "202303", + "requirements": "", + "description": "Focusing on the figure of the hero through different eras, cultures, and media, this course provides first-year students with a reading-and writing-intensive introduction to studying the humanities at Yale. The course is anchored around six transcultural models of the hero that similarly transcend boundaries of time and place: the warrior, the sage, the political leader, the proponent of justice, the poet/singer, and the unsung. Our sources range widely across genres, media, periods, and geographies: from the ancient Near Eastern, Epic of Gilgamesh (1500 BCE) to the Southeast Asian Ramayana, to the Icelandic-Ukrainian climate activism film, Woman at War (2018). As part of the Six Pretty Good suite, we explore Yale's special collections and art galleries to broaden our perspectives on hierarchies of value and to sharpen our skills of observation and working with evidence. Six Pretty Good Heroes is a 1.5 credit course, devoting sustained attention students\u2019 academic writing and is an excellent foundation for the next seven semesters at Yale. Required Friday sessions are reserved for writing labs and visits to Yale collections, as well as one-on-one and small-group meetings with the writing instruction staff.", "short_title": "Six Pretty Good Heroes", "title": "Six Pretty Good Heroes", "school": "YC", @@ -243767,7 +496573,7 @@ "9:00", "10:15", "HQ C03 - Humanities Quadrangle C03", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -243775,7 +496581,7 @@ "9:00", "10:15", "HQ C03 - Humanities Quadrangle C03", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Friday": [ @@ -243783,7 +496589,7 @@ "13:00", "16:00", "LC 101 - Linsly-Chittenden Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -243799,10 +496605,105 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89567\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89567/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988095760345459, + 0.9988370537757874, + 0.9988528490066528, + 0.9986515641212463, + 0.9987872242927551 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.991910994052887, + 0.9989297986030579, + 0.9987996816635132, + 0.9952474236488342, + 0.9985960125923157 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 4 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2, + "POSITIVE": 0.8 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989088773727417, + 0.99835604429245, + 0.9963201284408569, + 0.9985750913619995 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 0.9285714285714286, + "final_counts": { + "POSITIVE": 13, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9285714285714286, + "NEGATIVE": 0.07142857142857142 + } + } }, { "season_code": "202303", @@ -243839,7 +496740,7 @@ "11:35", "12:50", "HQ 113 - Humanities Quadrangle 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -243847,7 +496748,7 @@ "11:35", "12:50", "HQ 113 - Humanities Quadrangle 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -243863,10 +496764,99 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90125\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90125/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986920952796936, + 0.9988358616828918, + 0.9988478422164917, + 0.9987807869911194, + 0.9988700747489929 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988823533058167, + 0.9989309906959534, + 0.998925507068634, + 0.9988231062889099 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988996982574463, + 0.9989317059516907, + 0.9986960291862488 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 12 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -243908,7 +496898,7 @@ "10:30", "11:20", "LC 101 - Linsly-Chittenden Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -243916,7 +496906,7 @@ "10:30", "11:20", "LC 101 - Linsly-Chittenden Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -243939,10 +496929,201 @@ "classnotes": "", "final_exam": "Wednesday, December 20, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88144\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88144/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988378882408142, + 0.9953532218933105, + 0.9988951086997986, + 0.9986488223075867, + 0.9982624650001526, + 0.9860534071922302, + 0.9988484382629395, + 0.9986264705657959, + 0.9987909197807312, + 0.998854398727417, + 0.9988672733306885, + 0.9986035227775574, + 0.9988545179367065, + 0.997929573059082, + 0.9989151954650879, + 0.998824417591095, + 0.9989160299301147, + 0.9988202452659607, + 0.9988542795181274 + ], + "sentiment_counts": { + "POSITIVE": 19, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988892674446106, + 0.9994922876358032, + 0.9988351464271545, + 0.998853325843811, + 0.996160626411438, + 0.9970585107803345, + 0.9985119700431824, + 0.9991745352745056, + 0.9988775849342346, + 0.9989223480224609, + 0.9958972930908203, + 0.998900294303894, + 0.9989225268363953, + 0.9994685053825378, + 0.9989032745361328, + 0.9989012479782104, + 0.9991877675056458, + 0.9987817406654358, + 0.997467041015625, + 0.9981908202171326 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 7 + }, + "sentiment_distribution": { + "POSITIVE": 0.65, + "NEGATIVE": 0.35 + }, + "sentiment_overall": [ + "POSITIVE", + 0.65 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998918890953064, + 0.998854398727417, + 0.9978829026222229, + 0.997734546661377, + 0.9929887652397156, + 0.9981157779693604, + 0.9981764554977417, + 0.99891197681427, + 0.9974592328071594, + 0.9986650943756104, + 0.9975800514221191, + 0.9988124370574951, + 0.9989287257194519, + 0.9989051818847656, + 0.9988356232643127, + 0.9988947510719299, + 0.9989290833473206, + 0.998824417591095, + 0.9944995641708374, + 0.9994848966598511, + 0.998868465423584, + 0.9983527660369873, + 0.9985677003860474 + ], + "sentiment_counts": { + "POSITIVE": 20, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.8695652173913043, + "NEGATIVE": 0.13043478260869565 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8695652173913043 + ] + }, + "final_label": "POSITIVE", + "final_count": 52, + "final_proportion": 0.8387096774193549, + "final_counts": { + "POSITIVE": 52, + "NEGATIVE": 10 + }, + "final_distribution": { + "POSITIVE": 0.8387096774193549, + "NEGATIVE": 0.16129032258064516 + } + } }, { "season_code": "202303", @@ -243975,7 +497156,7 @@ "20:00", "20:50", "HQ 209 - Humanities Quadrangle 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -244001,7 +497182,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -244034,7 +497243,7 @@ "19:00", "19:50", "HQ 225 - Humanities Quadrangle 225", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -244060,7 +497269,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -244093,7 +497330,7 @@ "15:30", "16:20", "BASSLB L73 - Bass Library L73", - "https:\/\/map.yale.edu\/?id=1910#!m\/564574" + "https://map.yale.edu/?id=1910#!m/564574" ] ] }, @@ -244119,7 +497356,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -244152,7 +497417,7 @@ "17:00", "17:50", "HQ 129 - Humanities Quadrangle 129", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -244178,7 +497443,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -244211,7 +497504,7 @@ "19:00", "19:50", "HQ 309 - Humanities Quadrangle 309", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -244237,7 +497530,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -244270,7 +497591,7 @@ "20:00", "20:50", "HQ 225 - Humanities Quadrangle 225", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -244296,7 +497617,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -244334,7 +497683,7 @@ "11:35", "12:25", "HQ 207 - Humanities Quadrangle 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -244342,7 +497691,7 @@ "11:35", "12:25", "HQ 207 - Humanities Quadrangle 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -244358,10 +497707,95 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90083\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90083/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998877227306366, + 0.9989239573478699, + 0.9988940358161926 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987151622772217, + 0.998871386051178, + 0.9988916516304016 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987807869911194, + 0.9988694787025452, + 0.9989235997200012, + 0.9988983869552612 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 10 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -244401,7 +497835,7 @@ "13:00", "14:15", "LC 209 - Linsly-Chittenden Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -244409,7 +497843,7 @@ "13:00", "14:15", "LC 209 - Linsly-Chittenden Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -244428,10 +497862,115 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89291\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89291/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988321661949158, + 0.9986724853515625, + 0.9989258646965027, + 0.998866081237793, + 0.9989006519317627, + 0.9453980922698975, + 0.9988527297973633 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988483190536499, + 0.9989327788352966, + 0.998859167098999, + 0.9988797307014465, + 0.9995015859603882, + 0.9988183379173279 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988825917243958, + 0.9989270567893982, + 0.9989299178123474, + 0.9989286065101624, + 0.9995086193084717, + 0.9989349246025085 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 0.8947368421052632, + "final_counts": { + "POSITIVE": 17, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8947368421052632, + "NEGATIVE": 0.10526315789473684 + } + } }, { "season_code": "202303", @@ -244497,10 +498036,85 @@ "classnotes": "", "final_exam": "Friday, December 15, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89643\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89643/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986761212348938 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998141884803772, + 0.9985087513923645 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9990181922912598 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 0 + }, + "sentiment_distribution": { + "NEGATIVE": 1.0, + "POSITIVE": 0.0 + }, + "sentiment_overall": [ + "NEGATIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 3, + "final_proportion": 0.75, + "final_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + } + } }, { "season_code": "202303", @@ -244535,7 +498149,7 @@ "11:35", "12:25", "HQ 401 - Humanities Quadrangle 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -244552,7 +498166,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -244587,7 +498229,7 @@ "10:30", "11:20", "LC 317 - Linsly-Chittenden Hall 317", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -244604,7 +498246,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -244644,7 +498314,7 @@ "11:35", "12:50", "HQ 127 - Humanities Quadrangle 127", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -244652,7 +498322,7 @@ "11:35", "12:50", "HQ 127 - Humanities Quadrangle 127", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -244666,10 +498336,93 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89289\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89289/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987824559211731, + 0.9987743496894836, + 0.9970487952232361 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987689852714539, + 0.759157657623291, + 0.9987950325012207 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985272884368896, + 0.9942271709442139 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 0.875, + "final_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + } + } }, { "season_code": "202303", @@ -244708,7 +498461,7 @@ "15:30", "17:20", "HQ C03 - Humanities Quadrangle C03", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -244718,7 +498471,7 @@ "So" ], "flags": [ - "YC EVST: Core Human\/Social Sci", + "YC EVST: Core Human/Social Sci", "YC HIST: Europe", "YC HIST: Latin America", "YC HIST: Environmental History", @@ -244730,15 +498483,94 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89149\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89149/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998364269733429, + 0.9988517761230469 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994974136352539, + 0.9988889098167419 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 1 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9994956254959106, + 0.9995169639587402 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 0 + }, + "sentiment_distribution": { + "NEGATIVE": 1.0, + "POSITIVE": 0.0 + }, + "sentiment_overall": [ + "NEGATIVE", + 1.0 + ] + }, + "final_label": "neutral", + "final_count": 0.5, + "final_proportion": 0.5, + "final_counts": { + "POSITIVE": 3, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + } + } }, { "season_code": "202303", "requirements": "Readings, including primary Genizah sources, are in English translation, but students with knowledge of Arabic will be offered an additional weekly session providing instruction in\u00a0reading Judeo-Arabic and centered on readings of sources in the Judeo-Arabic\u00a0original.", - "description": "Ancient and medieval Jews did not throw away Hebrew texts they considered sacred, but rather, they\u00a0deposited and\/or buried them in dedicated rooms known as Genizot. The most famous of these\u00a0depositories was in the Ben Ezra Synagogue in Old Cairo, which contained perhaps the single most\u00a0important trove ever discovered of Jewish literary and documentary sources from around the\u00a0Mediterranean basin, sources dating as early as the ninth century and extending into the early\u00a0modern period. This course introduces students to the Jewish manuscript remains of the medieval\u00a0Cairo Genizah as well as other important Cairo manuscript caches. Students study the wide\u00a0\nvariety of types of literary and documentary genres in these collections, and gain familiarity\u00a0with the history of the Genizah\u2019s discovery in the late nineteenth and early twentieth century as\u00a0well as the acquisition of these manuscripts by institutions outside the Middle East (including\u00a0Harvard).", + "description": "Ancient and medieval Jews did not throw away Hebrew texts they considered sacred, but rather, they\u00a0deposited and/or buried them in dedicated rooms known as Genizot. The most famous of these\u00a0depositories was in the Ben Ezra Synagogue in Old Cairo, which contained perhaps the single most\u00a0important trove ever discovered of Jewish literary and documentary sources from around the\u00a0Mediterranean basin, sources dating as early as the ninth century and extending into the early\u00a0modern period. This course introduces students to the Jewish manuscript remains of the medieval\u00a0Cairo Genizah as well as other important Cairo manuscript caches. Students study the wide\u00a0\nvariety of types of literary and documentary genres in these collections, and gain familiarity\u00a0with the history of the Genizah\u2019s discovery in the late nineteenth and early twentieth century as\u00a0well as the acquisition of these manuscripts by institutions outside the Middle East (including\u00a0Harvard).", "short_title": "The Cairo Genizot and their L...", "title": "The Cairo Genizot and their Literatures", "school": "YC", @@ -244773,7 +498605,7 @@ "13:30", "15:20", "WLH 011 - William L. Harkness Hall 011", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -244788,11 +498620,39 @@ "rp_attr": "", "classnotes": "", "final_exam": "HTBA", - "course_home_url": "https:\/\/yale.instructure.com\/courses\/90554", - "syllabus_url": "", - "fysem": false, - "sysem": false, - "colsem": false + "course_home_url": "https://yale.instructure.com/courses/90554", + "syllabus_url": "", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -244831,7 +498691,7 @@ "9:25", "11:15", "WLH 007 - William L. Harkness Hall 007", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -244842,7 +498702,7 @@ ], "flags": [ "PH: Climate Change and Health", - "YC EVST: Core Human\/Social Sci", + "YC EVST: Core Human/Social Sci", "YC GLHTH: Hist Approaches", "YC GLHTH: Bio & Env Influences", "YC GLBL: Elective" @@ -244852,10 +498712,101 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88239\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88239/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986259937286377, + 0.9988100528717041, + 0.9987377524375916 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9978216886520386, + 0.9961723685264587, + 0.9987773299217224, + 0.9985429048538208 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988422989845276, + 0.9914733171463013, + 0.9982972741127014, + 0.9988442659378052, + 0.9988338351249695 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 0.8333333333333334, + "final_counts": { + "POSITIVE": 10, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + } + } }, { "season_code": "202303", @@ -244896,7 +498847,7 @@ "13:00", "14:15", "HQ 313 - Humanities Quadrangle 313", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -244904,7 +498855,7 @@ "13:00", "14:15", "HQ 313 - Humanities Quadrangle 313", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -244919,10 +498870,17 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91592\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91592/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -244976,7 +498934,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -245027,10 +499013,38 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91592\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/91592/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -245068,7 +499082,7 @@ "9:00", "10:15", "HQ 309 - Humanities Quadrangle 309", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -245076,7 +499090,7 @@ "9:00", "10:15", "HQ 309 - Humanities Quadrangle 309", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -245088,10 +499102,81 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89375\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89375/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.998921275138855 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989367127418518 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987919926643372 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 3, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 3 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -245131,10 +499216,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89742\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89742/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -245171,7 +499284,7 @@ "13:00", "14:15", "SML 323 - Sterling Memorial Library 323", - "https:\/\/map.yale.edu\/?id=1910#!m\/563698" + "https://map.yale.edu/?id=1910#!m/563698" ] ], "Wednesday": [ @@ -245179,7 +499292,7 @@ "13:00", "14:15", "SML 323 - Sterling Memorial Library 323", - "https:\/\/map.yale.edu\/?id=1910#!m\/563698" + "https://map.yale.edu/?id=1910#!m/563698" ] ] }, @@ -245191,10 +499304,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90044\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90044/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -245237,7 +499378,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -245280,7 +499449,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -245318,7 +499515,7 @@ "11:35", "12:25", "HQ 207 - Humanities Quadrangle 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -245326,7 +499523,7 @@ "11:35", "12:25", "HQ 207 - Humanities Quadrangle 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -245338,10 +499535,95 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90083\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90083/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998877227306366, + 0.9989239573478699, + 0.9988940358161926 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987151622772217, + 0.998871386051178, + 0.9988916516304016 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987807869911194, + 0.9988694787025452, + 0.9989235997200012, + 0.9988983869552612 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 10 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -245381,7 +499663,7 @@ "13:00", "14:15", "LC 209 - Linsly-Chittenden Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -245389,7 +499671,7 @@ "13:00", "14:15", "LC 209 - Linsly-Chittenden Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -245403,10 +499685,115 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89291\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89291/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988321661949158, + 0.9986724853515625, + 0.9989258646965027, + 0.998866081237793, + 0.9989006519317627, + 0.9453980922698975, + 0.9988527297973633 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988483190536499, + 0.9989327788352966, + 0.998859167098999, + 0.9988797307014465, + 0.9995015859603882, + 0.9988183379173279 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988825917243958, + 0.9989270567893982, + 0.9989299178123474, + 0.9989286065101624, + 0.9995086193084717, + 0.9989349246025085 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 0.8947368421052632, + "final_counts": { + "POSITIVE": 17, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8947368421052632, + "NEGATIVE": 0.10526315789473684 + } + } }, { "season_code": "202303", @@ -245443,7 +499830,7 @@ "13:30", "15:20", "HQ C05 - Humanities Quadrangle C05", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -245457,10 +499844,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89482\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89482/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -245498,7 +499913,7 @@ "15:30", "17:20", "HQ 109 - Humanities Quadrangle 109", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -245510,10 +499925,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89483\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89483/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -245551,7 +499994,7 @@ "13:30", "15:20", "HQ C03 - Humanities Quadrangle C03", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -245565,10 +500008,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89748\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89748/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -245607,7 +500078,7 @@ "13:30", "15:20", "WLH 015 - William L. Harkness Hall 015", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -245619,10 +500090,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89646\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89646/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -245662,7 +500161,7 @@ "11:35", "12:50", "HQ 127 - Humanities Quadrangle 127", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -245670,7 +500169,7 @@ "11:35", "12:50", "HQ 127 - Humanities Quadrangle 127", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -245682,10 +500181,93 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89289\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89289/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987824559211731, + 0.9987743496894836, + 0.9970487952232361 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987689852714539, + 0.759157657623291, + 0.9987950325012207 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985272884368896, + 0.9942271709442139 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 0.875, + "final_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + } + } }, { "season_code": "202303", @@ -245726,7 +500308,7 @@ "13:00", "14:15", "HQ 313 - Humanities Quadrangle 313", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -245734,7 +500316,7 @@ "13:00", "14:15", "HQ 313 - Humanities Quadrangle 313", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -245746,10 +500328,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91592\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91592/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -245783,10 +500372,38 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91592\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/91592/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -245824,7 +500441,7 @@ "9:00", "10:15", "HQ 309 - Humanities Quadrangle 309", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -245832,7 +500449,7 @@ "9:00", "10:15", "HQ 309 - Humanities Quadrangle 309", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -245844,10 +500461,81 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89375\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89375/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.998921275138855 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989367127418518 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987919926643372 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 3, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 3 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -245919,7 +500607,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -245975,7 +500691,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -246031,7 +500775,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -246069,7 +500841,7 @@ "11:35", "12:50", "SSS 114 - Sheffield-Sterling-Strathcona 114", - "https:\/\/map.yale.edu\/?id=1910#!m\/563689" + "https://map.yale.edu/?id=1910#!m/563689" ] ], "Thursday": [ @@ -246077,7 +500849,7 @@ "11:35", "12:50", "SSS 114 - Sheffield-Sterling-Strathcona 114", - "https:\/\/map.yale.edu\/?id=1910#!m\/563689" + "https://map.yale.edu/?id=1910#!m/563689" ] ] }, @@ -246091,14 +500863,321 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88681\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "Prerequisites: PSYC 160\/NSCI 160 and a course in statistics, or permission of instructor.", + "syllabus_url": "https://yale.instructure.com/courses/88681/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989011287689209, + 0.9974243640899658, + 0.9989148378372192, + 0.9979779124259949, + 0.9987351298332214, + 0.9972881078720093, + 0.9988112449645996, + 0.9987128973007202, + 0.9987805485725403, + 0.9989234805107117, + 0.9987581968307495, + 0.9989097118377686, + 0.9986302852630615, + 0.9988333582878113, + 0.9993042945861816, + 0.998742401599884, + 0.9910605549812317, + 0.9979063272476196, + 0.9988829493522644, + 0.9977458119392395, + 0.998762845993042, + 0.9988215565681458, + 0.9981974959373474, + 0.9986722469329834, + 0.9980606436729431, + 0.99797123670578, + 0.9982799291610718, + 0.9989030361175537, + 0.9987512826919556, + 0.9988596439361572, + 0.9988070726394653 + ], + "sentiment_counts": { + "POSITIVE": 30, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.967741935483871, + "NEGATIVE": 0.03225806451612903 + }, + "sentiment_overall": [ + "POSITIVE", + 0.967741935483871 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988922476768494, + 0.9995067119598389, + 0.8784416913986206, + 0.9987435936927795, + 0.9924157857894897, + 0.9993305206298828, + 0.9950172305107117, + 0.9989137649536133, + 0.9986515641212463, + 0.724414587020874, + 0.9983383417129517, + 0.9989032745361328, + 0.9332682490348816, + 0.9987983703613281, + 0.9987780451774597, + 0.9995050430297852, + 0.998085618019104, + 0.9856709837913513, + 0.9891325831413269, + 0.99824059009552, + 0.9932042360305786, + 0.9985108971595764, + 0.9984570741653442, + 0.9979990124702454, + 0.9985492825508118, + 0.9984501600265503, + 0.9978197813034058, + 0.9989117383956909, + 0.998855710029602, + 0.9876476526260376, + 0.9926613569259644, + 0.9986238479614258, + 0.998629093170166, + 0.9995059967041016, + 0.9954375624656677, + 0.9969785213470459, + 0.9985257983207703, + 0.9958081245422363, + 0.9926315546035767, + 0.9986768364906311, + 0.9967679977416992, + 0.9971733093261719, + 0.999504566192627 + ], + "sentiment_counts": { + "POSITIVE": 23, + "NEGATIVE": 20 + }, + "sentiment_distribution": { + "POSITIVE": 0.5348837209302325, + "NEGATIVE": 0.46511627906976744 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.997517466545105, + 0.999506950378418, + 0.9990909099578857, + 0.9987516403198242, + 0.9970864653587341, + 0.9991094470024109, + 0.9995032548904419, + 0.9988136291503906, + 0.9986936450004578, + 0.998505711555481, + 0.9974592328071594, + 0.9680763483047485, + 0.9889293313026428, + 0.9987816214561462, + 0.9987653493881226, + 0.9982553124427795, + 0.9995063543319702, + 0.998615026473999, + 0.9981787204742432, + 0.9989126920700073, + 0.9955947995185852, + 0.9982031583786011, + 0.9910996556282043, + 0.9993583559989929, + 0.9989060163497925, + 0.9988712668418884, + 0.9979787468910217, + 0.9994829893112183, + 0.9988466501235962, + 0.9988338351249695, + 0.9967275857925415, + 0.9995068311691284, + 0.9987804293632507, + 0.9992393255233765, + 0.998924195766449, + 0.9918598532676697, + 0.9954480528831482, + 0.997117280960083, + 0.9968993663787842, + 0.9975898265838623, + 0.9988802075386047, + 0.9961423277854919, + 0.9987809062004089, + 0.9887917041778564, + 0.9935518503189087, + 0.9939263463020325 + ], + "sentiment_counts": { + "POSITIVE": 26, + "NEGATIVE": 20 + }, + "sentiment_distribution": { + "POSITIVE": 0.5652173913043478, + "NEGATIVE": 0.43478260869565216 + }, + "sentiment_overall": [ + "POSITIVE", + 0.5652173913043478 + ] + }, + "final_label": "POSITIVE", + "final_count": 79, + "final_proportion": 0.6583333333333333, + "final_counts": { + "POSITIVE": 79, + "NEGATIVE": 41 + }, + "final_distribution": { + "POSITIVE": 0.6583333333333333, + "NEGATIVE": 0.3416666666666667 + } + } + }, + { + "season_code": "202303", + "requirements": "Prerequisites: PSYC 160/NSCI 160 and a course in statistics, or permission of instructor.", "description": "Primary focus on structural, functional, and diffusion magnetic resonance imaging, with a secondary emphasis upon brain stimulation, electroencephalography, and evoked potentials. Students learn the fundamentals of each method and the experimental designs for which they are most applicable.", "short_title": "Research Methods in Human Neu...", "title": "Research Methods in Human Neuroscience", @@ -246156,10 +501235,125 @@ "classnotes": "", "final_exam": "Wednesday, December 20, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89394\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89394/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984342455863953, + 0.9964510202407837, + 0.9989194869995117, + 0.9986502528190613, + 0.9988454580307007, + 0.9988203644752502, + 0.9986831545829773, + 0.9986605644226074, + 0.9905793070793152 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989175796508789, + 0.9988553524017334, + 0.9989149570465088, + 0.9989103078842163, + 0.998869001865387, + 0.9988829493522644, + 0.9988918900489807, + 0.9975404739379883 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998840868473053, + 0.9989259839057922, + 0.9944868683815002, + 0.9985396862030029, + 0.9977290034294128, + 0.9987682700157166, + 0.9722131490707397, + 0.9986506104469299 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 25, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 25 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -246214,15 +501408,124 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89395\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89395/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998613715171814, + 0.9987055063247681, + 0.9988308548927307, + 0.9988676309585571, + 0.9985671043395996, + 0.9986202716827393, + 0.9987101554870605 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988778233528137, + 0.9989039897918701, + 0.9989064931869507, + 0.9988856911659241, + 0.99893718957901, + 0.9987679123878479, + 0.9988340735435486 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987770915031433, + 0.9985847473144531, + 0.9989131689071655, + 0.9988710284233093, + 0.9988935589790344, + 0.9989192485809326, + 0.998729407787323, + 0.9986860156059265 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 22, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 22 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", "requirements": "Prerequisite: S&DS 230.\u00a0Background in neuroscience is recommended but not required (e.g., it would be useful to have taken at the level of\u00a0NSCI 160).", - "description": "We discuss data analysis methods that are used in the neuroscience community. Methods include classical descriptive and inferential statistics, point process models, mutual information measures, machine learning (neural decoding) analyses, dimensionality reduction methods, and representational similarity analyses. Each week we read a research paper that uses one of these methods, and we replicate these analyses using the R or Python programming language. Emphasis is on analyzing neural spiking data, although we also discuss other imaging modalities such as magneto\/electro-encephalography (EEG\/MEG), two-photon imaging, and possibility functional magnetic resonance imaging data (fMRI). Data we analyze includes smaller datasets, such as single neuron recordings from songbird vocal motor system, as well as larger data sets, such as the Allen Brain observatory\u2019s simultaneous recordings from the mouse visual system.", + "description": "We discuss data analysis methods that are used in the neuroscience community. Methods include classical descriptive and inferential statistics, point process models, mutual information measures, machine learning (neural decoding) analyses, dimensionality reduction methods, and representational similarity analyses. Each week we read a research paper that uses one of these methods, and we replicate these analyses using the R or Python programming language. Emphasis is on analyzing neural spiking data, although we also discuss other imaging modalities such as magneto/electro-encephalography (EEG/MEG), two-photon imaging, and possibility functional magnetic resonance imaging data (fMRI). Data we analyze includes smaller datasets, such as single neuron recordings from songbird vocal motor system, as well as larger data sets, such as the Allen Brain observatory\u2019s simultaneous recordings from the mouse visual system.", "short_title": "Neural Data Analysis", "title": "Neural Data Analysis", "school": "YC", @@ -246280,10 +501583,129 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90506\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90506/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9944384098052979, + 0.9984148740768433, + 0.998818576335907, + 0.9984889030456543, + 0.994565486907959, + 0.9985947012901306, + 0.9987661838531494, + 0.9987624883651733, + 0.9958695769309998 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.99892657995224, + 0.9987216591835022, + 0.9989148378372192, + 0.9962735176086426, + 0.9988909363746643, + 0.9990758895874023, + 0.998863935470581, + 0.9989016056060791 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981732368469238, + 0.9980847835540771, + 0.9987239241600037, + 0.9987959861755371, + 0.99822598695755, + 0.9987899661064148, + 0.9989299178123474, + 0.998769223690033, + 0.9981922507286072 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 25, + "final_proportion": 0.9615384615384616, + "final_counts": { + "POSITIVE": 25, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9615384615384616, + "NEGATIVE": 0.038461538461538464 + } + } }, { "season_code": "202303", @@ -246326,7 +501748,7 @@ "11:35", "12:25", "WTS A53 - Watson Center 60 Sachem Street A53", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -246334,7 +501756,7 @@ "11:35", "12:25", "WTS A53 - Watson Center 60 Sachem Street A53", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Friday": [ @@ -246342,7 +501764,7 @@ "11:35", "12:25", "WTS A53 - Watson Center 60 Sachem Street A53", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -246356,10 +501778,163 @@ "classnotes": "", "final_exam": "Sunday, December 17, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89358\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89358/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988732933998108, + 0.9987448453903198, + 0.9980521202087402, + 0.9988383650779724, + 0.9987984895706177, + 0.9943441152572632, + 0.9983344674110413, + 0.9987303614616394, + 0.9994884729385376 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9955495595932007, + 0.9994706511497498, + 0.998485267162323, + 0.9918396472930908, + 0.9857528805732727, + 0.999496340751648, + 0.9988102912902832, + 0.9973223805427551, + 0.9983134269714355, + 0.9863342642784119, + 0.9894793629646301, + 0.9994966983795166, + 0.9870967864990234, + 0.9985388517379761, + 0.9981233477592468, + 0.9979408383369446, + 0.9994723200798035 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 9 + }, + "sentiment_distribution": { + "POSITIVE": 0.47058823529411764, + "NEGATIVE": 0.5294117647058824 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9986711740493774, + 0.9988766312599182, + 0.9948697090148926, + 0.9948377013206482, + 0.9987778067588806, + 0.999508261680603, + 0.9994785189628601, + 0.9988413453102112, + 0.9982150793075562, + 0.9994805455207825, + 0.9921711683273315, + 0.9968649744987488, + 0.9994605183601379, + 0.996715784072876, + 0.9989230036735535, + 0.9988738894462585, + 0.9994912147521973 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 9 + }, + "sentiment_distribution": { + "POSITIVE": 0.47058823529411764, + "NEGATIVE": 0.5294117647058824 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "final_label": "POSITIVE", + "final_count": 24, + "final_proportion": 0.5581395348837209, + "final_counts": { + "POSITIVE": 24, + "NEGATIVE": 19 + }, + "final_distribution": { + "POSITIVE": 0.5581395348837209, + "NEGATIVE": 0.4418604651162791 + } + } }, { "season_code": "202303", @@ -246397,7 +501972,7 @@ "13:30", "17:30", "SCL 139 - Sterling Chemistry Laboratory 139", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -246412,11 +501987,104 @@ "rp_attr": "", "classnotes": "", "final_exam": "HTBA", - "course_home_url": "https:\/\/yale.instructure.com\/courses\/89359", + "course_home_url": "https://yale.instructure.com/courses/89359", "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984543323516846, + 0.9988625049591064, + 0.9987198114395142, + 0.99886155128479 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987000226974487, + 0.9988138675689697, + 0.998690664768219, + 0.9985632300376892, + 0.998887836933136 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9995021820068359, + 0.9988586902618408, + 0.9988553524017334, + 0.9989161491394043 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.25, + "POSITIVE": 0.75 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 0.9230769230769231, + "final_counts": { + "POSITIVE": 12, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9230769230769231, + "NEGATIVE": 0.07692307692307693 + } + } }, { "season_code": "202303", @@ -246454,7 +502122,7 @@ "13:30", "17:30", "SCL 139 - Sterling Chemistry Laboratory 139", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -246469,16 +502137,105 @@ "rp_attr": "", "classnotes": "", "final_exam": "HTBA", - "course_home_url": "https:\/\/yale.instructure.com\/courses\/89360", + "course_home_url": "https://yale.instructure.com/courses/89360", "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "Prerequisites: MATH 115 or 116. BIOL 101-104,\u00a0 or with permission of instructors. This course also benefits students who have taken more advanced biology courses (e.g. MCDB 200, MCDB 310, MB&B 300\/301).", - "description": "Biological systems make sophisticated decisions at many levels. This course explores the molecular and computational underpinnings of how these decisions are made, with a focus on modeling static and dynamic processes in example biological systems. This course is aimed at biology students and teaches the analytic and computational methods needed to model genetic networks and protein signaling pathways. Students present and discuss original papers in class. They learn to model using MatLab in a series of in-class hackathons that illustrate the biological examples discussed in the lectures. Biological systems and processes that are modeled include: (i) gene expression, including the kinetics of RNA and protein synthesis and degradation; (ii) activators and repressors; (iii) the lysogeny\/lysis switch of lambda phage; (iv) network motifs and how they shape response dynamics; (v) cell signaling, MAP kinase networks and cell fate decisions; and (vi) noise in gene expression.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988252520561218, + 0.9861161708831787, + 0.9876176714897156 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989145994186401, + 0.9984460473060608, + 0.9980629086494446, + 0.9992772936820984, + 0.9981222748756409 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.6, + "NEGATIVE": 0.4 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989062547683716, + 0.9988777041435242, + 0.9988237023353577 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 0.8181818181818182, + "final_counts": { + "POSITIVE": 9, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8181818181818182, + "NEGATIVE": 0.18181818181818182 + } + } + }, + { + "season_code": "202303", + "requirements": "Prerequisites: MATH 115 or 116. BIOL 101-104,\u00a0 or with permission of instructors. This course also benefits students who have taken more advanced biology courses (e.g. MCDB 200, MCDB 310, MB&B 300/301).", + "description": "Biological systems make sophisticated decisions at many levels. This course explores the molecular and computational underpinnings of how these decisions are made, with a focus on modeling static and dynamic processes in example biological systems. This course is aimed at biology students and teaches the analytic and computational methods needed to model genetic networks and protein signaling pathways. Students present and discuss original papers in class. They learn to model using MatLab in a series of in-class hackathons that illustrate the biological examples discussed in the lectures. Biological systems and processes that are modeled include: (i) gene expression, including the kinetics of RNA and protein synthesis and degradation; (ii) activators and repressors; (iii) the lysogeny/lysis switch of lambda phage; (iv) network motifs and how they shape response dynamics; (v) cell signaling, MAP kinase networks and cell fate decisions; and (vi) noise in gene expression.", "short_title": "Modeling Biological Systems I", "title": "Modeling Biological Systems I", "school": "YC", @@ -246519,7 +502276,7 @@ "14:30", "15:45", "BASS 405 - Bass Center 405", - "https:\/\/map.yale.edu\/?id=1910#!m\/560102" + "https://map.yale.edu/?id=1910#!m/560102" ] ], "Thursday": [ @@ -246527,7 +502284,7 @@ "14:30", "15:45", "BASS 405 - Bass Center 405", - "https:\/\/map.yale.edu\/?id=1910#!m\/560102" + "https://map.yale.edu/?id=1910#!m/560102" ] ] }, @@ -246538,7 +502295,7 @@ "Sc" ], "flags": [ - "YC NSCI: Molecular\/Cell\/Biol", + "YC NSCI: Molecular/Cell/Biol", "YC NSCI: Quantitative" ], "regnotes": "", @@ -246546,10 +502303,119 @@ "classnotes": "Undergraduates only; graduate students need instructor permission. Graduate students with a physics, mathematics, or engineering background are not allowed in the course and should instead take MCDB 562 Modeling Biological Systems II, which is offered in the spring. Biology graduate students with little to no background in physics, mathematics, or engineering must first contact the instructor.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88784\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88784/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988932013511658, + 0.9985255599021912, + 0.9988605976104736, + 0.998641312122345, + 0.998914361000061, + 0.9989007711410522 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981176853179932, + 0.9986761212348938, + 0.9943771958351135, + 0.9985344409942627, + 0.9989160299301147, + 0.9989138841629028, + 0.9989339709281921, + 0.9988695979118347, + 0.9775633811950684 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 8 + }, + "sentiment_distribution": { + "NEGATIVE": 0.1111111111111111, + "POSITIVE": 0.8888888888888888 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9911907911300659, + 0.9986100196838379, + 0.9853668212890625, + 0.9989172220230103, + 0.9989176988601685, + 0.9988948702812195 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 0.9523809523809523, + "final_counts": { + "POSITIVE": 20, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9523809523809523, + "NEGATIVE": 0.047619047619047616 + } + } }, { "season_code": "202303", @@ -246590,7 +502456,7 @@ "13:00", "14:15", "WTS A53 - Watson Center 60 Sachem Street A53", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -246598,7 +502464,7 @@ "13:00", "14:15", "WTS A53 - Watson Center 60 Sachem Street A53", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -246607,17 +502473,166 @@ "Sc" ], "flags": [ - "YC NSCI: Molecular\/Cell\/Biol" + "YC NSCI: Molecular/Cell/Biol" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "Wednesday, December 20, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88346\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88346/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9993232488632202, + 0.998683512210846, + 0.9988698363304138, + 0.9995073080062866, + 0.9988082647323608, + 0.9984233379364014, + 0.9983254075050354, + 0.9988887906074524, + 0.9988904595375061, + 0.9989017248153687, + 0.9987772107124329 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 9 + }, + "sentiment_distribution": { + "NEGATIVE": 0.18181818181818182, + "POSITIVE": 0.8181818181818182 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8181818181818182 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989240765571594, + 0.9994738698005676, + 0.9947627186775208, + 0.9984633922576904, + 0.9987137317657471, + 0.9995067119598389, + 0.9989306330680847, + 0.9937893748283386, + 0.9961419701576233, + 0.9989323019981384, + 0.9987441301345825, + 0.9988355040550232, + 0.9994699358940125, + 0.9984657764434814, + 0.9988993406295776, + 0.9989219903945923 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989394545555115, + 0.9995017051696777, + 0.9988824725151062, + 0.998924195766449, + 0.9988539218902588, + 0.9995129108428955, + 0.998906135559082, + 0.9990150928497314, + 0.998798131942749, + 0.9988987445831299, + 0.998687207698822, + 0.9989054203033447, + 0.9988765120506287, + 0.9988271594047546 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.7857142857142857, + "NEGATIVE": 0.21428571428571427 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7857142857142857 + ] + }, + "final_label": "POSITIVE", + "final_count": 32, + "final_proportion": 0.7804878048780488, + "final_counts": { + "NEGATIVE": 9, + "POSITIVE": 32 + }, + "final_distribution": { + "NEGATIVE": 0.21951219512195122, + "POSITIVE": 0.7804878048780488 + } + } }, { "season_code": "202303", @@ -246655,7 +502670,7 @@ "14:30", "15:45", "LC 101 - Linsly-Chittenden Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -246663,7 +502678,7 @@ "14:30", "15:45", "LC 101 - Linsly-Chittenden Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -246672,7 +502687,7 @@ "Sc" ], "flags": [ - "YC NSCI: Systems\/Circuit\/Behav", + "YC NSCI: Systems/Circuit/Behav", "YC PSYC: Natural Science" ], "regnotes": "", @@ -246680,10 +502695,215 @@ "classnotes": "This course has two prerequisites: PSYC110 (Intro Psych) OR CGSI110 (Intro Cog Sci) OR AP Psych (Score of 5) and PSYC160 (Human Brain) \n\nJunior and Senior Psychology and Neuroscience majors will be given priority. This class is upper level neuroscience, proceeds at a fast pace, and students unfamiliar with neuroanatomy and neuroscience methods will find the content to be challenging. ", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89335\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89335/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.997355580329895, + 0.9988742470741272, + 0.9989174604415894, + 0.9987435936927795, + 0.9988214373588562, + 0.9988765120506287, + 0.998836100101471, + 0.9979779124259949, + 0.9969165325164795, + 0.9984605312347412, + 0.9987618923187256, + 0.9988667964935303, + 0.9984954595565796, + 0.9985998272895813, + 0.9988206028938293, + 0.998276948928833, + 0.9987579584121704, + 0.998817503452301, + 0.99874347448349 + ], + "sentiment_counts": { + "POSITIVE": 19, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983850717544556, + 0.9988722205162048, + 0.9989334940910339, + 0.9983199238777161, + 0.998798131942749, + 0.9987308382987976, + 0.9989044666290283, + 0.9989162683486938, + 0.9989113807678223, + 0.998651921749115, + 0.9887974858283997, + 0.998927891254425, + 0.9989250302314758, + 0.9988868832588196, + 0.9884689450263977, + 0.9988186955451965, + 0.9988522529602051, + 0.9985842704772949, + 0.9989343285560608, + 0.9988073110580444, + 0.9988351464271545, + 0.9987908005714417, + 0.9989117383956909, + 0.998847246170044 + ], + "sentiment_counts": { + "POSITIVE": 23, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9583333333333334, + "NEGATIVE": 0.041666666666666664 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9583333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985527396202087, + 0.9988672733306885, + 0.9988654851913452, + 0.996932864189148, + 0.9986220598220825, + 0.9988409876823425, + 0.9989049434661865, + 0.9982553124427795, + 0.9988800883293152, + 0.9986633062362671, + 0.9989053010940552, + 0.9989012479782104, + 0.9989308714866638, + 0.9941042065620422, + 0.9988923668861389, + 0.9873692393302917, + 0.9988265633583069, + 0.9988211989402771, + 0.9986417889595032, + 0.9989173412322998, + 0.9989320635795593, + 0.9988088607788086, + 0.9988324046134949, + 0.999040424823761, + 0.9988511800765991, + 0.9989035129547119 + ], + "sentiment_counts": { + "POSITIVE": 23, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.8846153846153846, + "NEGATIVE": 0.11538461538461539 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8846153846153846 + ] + }, + "final_label": "POSITIVE", + "final_count": 65, + "final_proportion": 0.9420289855072463, + "final_counts": { + "POSITIVE": 65, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.9420289855072463, + "NEGATIVE": 0.057971014492753624 + } + } }, { "season_code": "202303", @@ -246751,10 +502971,143 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90417\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/90417/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985688924789429, + 0.9986608028411865, + 0.9977846741676331, + 0.9986634254455566, + 0.9971073269844055, + 0.9988840222358704, + 0.9987875819206238, + 0.9940311312675476, + 0.9988539218902588, + 0.9986334443092346, + 0.998752236366272 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989266991615295, + 0.9906706809997559, + 0.9953182339668274, + 0.9987013339996338, + 0.998748779296875, + 0.9988732933998108, + 0.998763918876648, + 0.9987480640411377, + 0.9890273809432983, + 0.9987873435020447, + 0.9978893399238586 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.7272727272727273, + "NEGATIVE": 0.2727272727272727 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7272727272727273 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989051818847656, + 0.9984334111213684, + 0.9957656860351562, + 0.9988319277763367, + 0.9926602840423584, + 0.9989186525344849, + 0.9988943934440613, + 0.9994348883628845, + 0.9983170032501221, + 0.9987579584121704, + 0.9987553358078003 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.7272727272727273, + "NEGATIVE": 0.2727272727272727 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7272727272727273 + ] + }, + "final_label": "POSITIVE", + "final_count": 27, + "final_proportion": 0.8181818181818182, + "final_counts": { + "POSITIVE": 27, + "NEGATIVE": 6 + }, + "final_distribution": { + "POSITIVE": 0.8181818181818182, + "NEGATIVE": 0.18181818181818182 + } + } }, { "season_code": "202303", @@ -246801,7 +503154,7 @@ "Sc" ], "flags": [ - "YC NSCI: Systems\/Circuit\/Behav", + "YC NSCI: Systems/Circuit/Behav", "YC PSYC: NSCI Track Adv Scie" ], "regnotes": "", @@ -246809,15 +503162,122 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88699\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88699/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "", - "description": "Research project under faculty supervision taken Pass\/Fail; does not count toward the major, but does count toward graduation requirements. Students are expected to spend approximately ten hours per week in the laboratory. A final research report and\/or presentation is required by end of term. Students who take this course more than once must reapply each term. To register, students must submit a form and written plan of study with bibliography, approved by the faculty research adviser and DUS, by the end of the first week of class. More detailed guidelines and forms can be obtained\u00a0from http:\/\/neuroscience.yale.edu.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986769556999207, + 0.9988508224487305, + 0.9986993074417114, + 0.9986478686332703, + 0.9916695356369019, + 0.9988976716995239 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9889636039733887, + 0.9995020627975464, + 0.9929706454277039, + 0.9987550973892212, + 0.998588502407074, + 0.9994667172431946 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988232254981995, + 0.9862104058265686, + 0.9989150762557983, + 0.9986995458602905, + 0.9987391829490662, + 0.997117280960083, + 0.9989138841629028, + 0.9981281161308289 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 0.85, + "final_counts": { + "POSITIVE": 17, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.85, + "NEGATIVE": 0.15 + } + } + }, + { + "season_code": "202303", + "requirements": "", + "description": "Research project under faculty supervision taken Pass/Fail; does not count toward the major, but does count toward graduation requirements. Students are expected to spend approximately ten hours per week in the laboratory. A final research report and/or presentation is required by end of term. Students who take this course more than once must reapply each term. To register, students must submit a form and written plan of study with bibliography, approved by the faculty research adviser and DUS, by the end of the first week of class. More detailed guidelines and forms can be obtained\u00a0from http://neuroscience.yale.edu.", "short_title": "Independent Research", "title": "Independent Research", "school": "YC", @@ -246855,15 +503315,43 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88774\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88774/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "Research survey under faculty supervision fulfills the senior requirement for the B.A. degree and awards a letter grade. For NSCI seniors only (and second term juniors with DUS permission). Students are expected to conduct a literature review, to complete written assignments, and to present their research once in either the fall or spring term. Students are encouraged to pursue the same research project for two terms. The final research paper is due in the hands of the sponsoring faculty member, with a copy submitted to the department, by the stated deadline near the end of the term. To register, students submit a form and written plan of study with bibliography, approved by the faculty research adviser and DUS, by the end of the first week of classes. More detailed guidelines and forms can be obtained from http:\/\/neuroscience.yale.edu.", + "description": "Research survey under faculty supervision fulfills the senior requirement for the B.A. degree and awards a letter grade. For NSCI seniors only (and second term juniors with DUS permission). Students are expected to conduct a literature review, to complete written assignments, and to present their research once in either the fall or spring term. Students are encouraged to pursue the same research project for two terms. The final research paper is due in the hands of the sponsoring faculty member, with a copy submitted to the department, by the stated deadline near the end of the term. To register, students submit a form and written plan of study with bibliography, approved by the faculty research adviser and DUS, by the end of the first week of classes. More detailed guidelines and forms can be obtained from http://neuroscience.yale.edu.", "short_title": "Senior Non-empirical Research", "title": "Senior Non-empirical Research", "school": "YC", @@ -246901,15 +503389,43 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88775\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88775/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "Laboratory or independent empirical research project under faculty supervision to fulfill the senior requirement for the B.S. degree. For NSCI seniors only (and second term juniors with DUS permission); this course awards a letter grade. Students are expected to spend at least ten hours per week in the laboratory, to complete written assignments, and to present their research once in either the fall or the spring term. Written assignments include a short research proposal summary due at the beginning of the term and a full research report due at the end of the term. Students are encouraged to pursue the same research project for two terms, in which case, the first term research report and the second term proposal summary may be combined into a full research proposal due at the end of the first term.\u00a0Final papers are due by the stated deadline. Students should reserve a research laboratory during the term preceding the research. To register, students must submit a form and written plan of study with bibliography, approved by the faculty research adviser and DUS, by the end of the first week of classes. More detailed guidelines and forms can be obtained from http:\/\/neuroscience.yale.edu.", + "description": "Laboratory or independent empirical research project under faculty supervision to fulfill the senior requirement for the B.S. degree. For NSCI seniors only (and second term juniors with DUS permission); this course awards a letter grade. Students are expected to spend at least ten hours per week in the laboratory, to complete written assignments, and to present their research once in either the fall or the spring term. Written assignments include a short research proposal summary due at the beginning of the term and a full research report due at the end of the term. Students are encouraged to pursue the same research project for two terms, in which case, the first term research report and the second term proposal summary may be combined into a full research proposal due at the end of the first term.\u00a0Final papers are due by the stated deadline. Students should reserve a research laboratory during the term preceding the research. To register, students must submit a form and written plan of study with bibliography, approved by the faculty research adviser and DUS, by the end of the first week of classes. More detailed guidelines and forms can be obtained from http://neuroscience.yale.edu.", "short_title": "Senior Empirical Research", "title": "Senior Empirical Research", "school": "YC", @@ -246947,14 +503463,121 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88776\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88776/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "This course is offered to graduate and M.D.\/Ph.D. students only and cannot be audited.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985095858573914, + 0.9987897276878357, + 0.9987922310829163, + 0.9868571162223816, + 0.9981480836868286, + 0.9987151622772217, + 0.998672604560852 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984656572341919, + 0.9987015724182129, + 0.9994614720344543, + 0.9984923601150513, + 0.9993749260902405, + 0.9988849759101868 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9913061261177063, + 0.9974592328071594, + 0.9981606602668762, + 0.99850994348526, + 0.9977713823318481, + 0.9975597858428955, + 0.9989134073257446 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 0.9, + "final_counts": { + "POSITIVE": 18, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + } + } + }, + { + "season_code": "202303", + "requirements": "This course is offered to graduate and M.D./Ph.D. students only and cannot be audited.", "description": "An integrative overview of the structure and function of the human brain as it pertains to major neurological and psychiatric disorders. Neuroanatomy, neurophysiology, and clinical correlations are interrelated to provide essential background in the neurosciences. Lectures in neurocytology and neuroanatomy survey neuronal organization in the human brain, with emphasis on long fiber tracts related to clinical neurology. Weekly three-hour laboratory sessions in close collaboration with faculty members. Lectures in neurophysiology cover various aspects of neural function at the cellular level, with a strong emphasis on the mammalian nervous system. Clinical correlations consist of five sessions given by one or two faculty members representing both basic and clinical sciences. These sessions relate neurological symptoms to cellular processes in various diseases of the brain. Variable class schedule; contact course instructors.", "short_title": "Structural and Functional Org...", "title": "Structural and Functional Organization of the Human Nervous System", @@ -246994,7 +503617,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -247048,10 +503699,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92224\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92224/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -247110,10 +503789,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92225\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92225/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -247167,10 +503874,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92226\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92226/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -247232,10 +503967,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92227\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92227/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -247286,10 +504049,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92228\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92228/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -247334,10 +504125,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92229\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92229/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -247391,15 +504210,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92230\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92230/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "This course is designed to provide the advanced practice and midwifery student with the fundamental knowledge and skills needed to conduct a comprehensive, focused health history and physical examination and includes core content regarding assessment of all human systems, advanced assessment techniques, concepts, and approaches. Emphasis is on the assessment of physical, psychosocial, spiritual, and cultural dimensions of health, as well as factors that influence behavioral responses to health and illness. Normal\/abnormal variations in physical exam findings and differential diagnoses will be presented. Content includes assessment of individuals of diverse and special populations, including transgender, LGBTQIA, geriatric, pediatric and individuals with disabilities. Through this course, students will also participate in Interprofessional Longitudinal Clinical Experience (ILCE) learning in collaboration with the Yale Schools of Medicine (including the Physician Associate Program) and Public Health in focus areas pertinent to the health history and institutional\/structural barriers to effective health care. This course is required for all students in the first semester of MSN program enrolled in the Adult\/Gero Primary and Acute Care Specialties, Family Nurse Practitioner, Nurse Midwifery, Women\u2019s Health and Psychiatric Mental Health Specialties.", + "description": "This course is designed to provide the advanced practice and midwifery student with the fundamental knowledge and skills needed to conduct a comprehensive, focused health history and physical examination and includes core content regarding assessment of all human systems, advanced assessment techniques, concepts, and approaches. Emphasis is on the assessment of physical, psychosocial, spiritual, and cultural dimensions of health, as well as factors that influence behavioral responses to health and illness. Normal/abnormal variations in physical exam findings and differential diagnoses will be presented. Content includes assessment of individuals of diverse and special populations, including transgender, LGBTQIA, geriatric, pediatric and individuals with disabilities. Through this course, students will also participate in Interprofessional Longitudinal Clinical Experience (ILCE) learning in collaboration with the Yale Schools of Medicine (including the Physician Associate Program) and Public Health in focus areas pertinent to the health history and institutional/structural barriers to effective health care. This course is required for all students in the first semester of MSN program enrolled in the Adult/Gero Primary and Acute Care Specialties, Family Nurse Practitioner, Nurse Midwifery, Women\u2019s Health and Psychiatric Mental Health Specialties.", "short_title": "Advanced Health Assessment", "title": "Advanced Health Assessment", "school": "NR", @@ -247446,15 +504293,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92231\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92231/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "This course is designed to provide the advanced practice and midwifery student with the fundamental knowledge and skills needed to conduct a comprehensive and focused health history and physical examination and includes core content regarding assessment of all human systems, advanced assessment techniques, concepts and approaches.\u00a0 Emphasis is on the assessment of physical, psychosocial, spiritual, and cultural dimensions of health, as well as factors that influence behavioral responses to health and illness.\u00a0 Normal\/abnormal variations in physical exam findings and differential diagnoses will be presented.\u00a0 Through this course, students will also participate in virtual interprofessional educational learning in focus areas pertinent to the health history and institutional\/structural barriers to effective health care. This course is required for all students in the first year of MSN online program. An average of 9.0 hours per week of a combination of synchronous and asynchronous work, 15 weeks.", + "description": "This course is designed to provide the advanced practice and midwifery student with the fundamental knowledge and skills needed to conduct a comprehensive and focused health history and physical examination and includes core content regarding assessment of all human systems, advanced assessment techniques, concepts and approaches.\u00a0 Emphasis is on the assessment of physical, psychosocial, spiritual, and cultural dimensions of health, as well as factors that influence behavioral responses to health and illness.\u00a0 Normal/abnormal variations in physical exam findings and differential diagnoses will be presented.\u00a0 Through this course, students will also participate in virtual interprofessional educational learning in focus areas pertinent to the health history and institutional/structural barriers to effective health care. This course is required for all students in the first year of MSN online program. An average of 9.0 hours per week of a combination of synchronous and asynchronous work, 15 weeks.", "short_title": "Advanced Health Assessment", "title": "Advanced Health Assessment", "school": "NR", @@ -247495,10 +504370,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92321\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92321/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -247550,15 +504453,43 @@ "classnotes": "Course meets in classroom 01101-03-05", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92232\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "", - "description": "This course provides RN students with advanced physiologic and pathophysiologic concepts central to\u00a0understanding commonly occurring disorders and conditions across the life span. This understanding\u00a0provides the framework on which further specialty content knowledge is built. This is a 3 hour\/week,\u00a0didactic, core course for RN students of all specialties", + "syllabus_url": "https://yale.instructure.com/courses/92232/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } + }, + { + "season_code": "202303", + "requirements": "", + "description": "This course provides RN students with advanced physiologic and pathophysiologic concepts central to\u00a0understanding commonly occurring disorders and conditions across the life span. This understanding\u00a0provides the framework on which further specialty content knowledge is built. This is a 3 hour/week,\u00a0didactic, core course for RN students of all specialties", "short_title": "Advanced Pathophysiology", "title": "Advanced Pathophysiology", "school": "NR", @@ -247599,10 +504530,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92345\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92345/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -247642,10 +504601,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92322\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92322/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -247697,10 +504684,38 @@ "classnotes": "Course meets in classroom 01101-03-05", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92233\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/92233/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -247752,10 +504767,38 @@ "classnotes": "Course meets in classroom 01101-03-05", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92234\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/92234/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -247798,15 +504841,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92323\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92323/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "The focus of this course is to provide the foundation for management of commonly occurring mental health problems using the therapeutic relationship and basic models for intervention including stress management, crisis intervention, motivational interviewing, cognitive behavioral techniques, and pharmacotherapy. Diagnostic assessment, monitoring, and referral to specialty care and community resources are emphasized. Roles in management of commonly occurring mental health problems (anxiety, depression, sleep disturbance) and collaboration to manage severe and persistent mental illness (including schizophrenia, bipolar disorder, post-traumatic stress disorder, substance use, and eating disorders) and referral to community and psychiatric resources are examined. Required of all adult gerontology primary care, family, and midwifery\/women\u2019s health nurse practitioner students. Open to others with permission of the instructor. Two hours per week.", + "description": "The focus of this course is to provide the foundation for management of commonly occurring mental health problems using the therapeutic relationship and basic models for intervention including stress management, crisis intervention, motivational interviewing, cognitive behavioral techniques, and pharmacotherapy. Diagnostic assessment, monitoring, and referral to specialty care and community resources are emphasized. Roles in management of commonly occurring mental health problems (anxiety, depression, sleep disturbance) and collaboration to manage severe and persistent mental illness (including schizophrenia, bipolar disorder, post-traumatic stress disorder, substance use, and eating disorders) and referral to community and psychiatric resources are examined. Required of all adult gerontology primary care, family, and midwifery/women\u2019s health nurse practitioner students. Open to others with permission of the instructor. Two hours per week.", "short_title": "Mental Health Management for ...", "title": "Mental Health Management for Advanced Practice Nurses", "school": "NR", @@ -247850,15 +504921,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92235\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92235/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "This elective study is initiated by the student and negotiated with faculty. The purpose is to allow in-depth pursuit of individual areas of interest and\/or practice. A written proposal must be submitted and signed by the student, the faculty member(s), and the appropriate specialty director. Credit varies according to the terms of the contract.", + "description": "This elective study is initiated by the student and negotiated with faculty. The purpose is to allow in-depth pursuit of individual areas of interest and/or practice. A written proposal must be submitted and signed by the student, the faculty member(s), and the appropriate specialty director. Credit varies according to the terms of the contract.", "short_title": "Master\u2019s Independent Study: T...", "title": "Master\u2019s Independent Study: Topics Glbl Medicine & Health", "school": "NR", @@ -247890,7 +504989,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -247939,15 +505066,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92236\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92236/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "The focus of this practicum is comprehensive management of a caseload of patients with diabetes specific to the student\u2019s elected specialty (adult\/gerontology acute care, adult\/gerontology primary care, family, midwifery\/women\u2019s health, and pediatric). The spring term is an extension of the fall and focuses on the management of common problems related to long-term diabetes complications, encouraging clinical decision-making and management of comorbidities. Student\u2019s clinical practicum in diabetes care is in various settings specific to student\u2019s specialty program. Required of all students in the diabetes care concentration in the final year. Four hours per week of practice required both terms. One and one-half hours of clinical conference per week.", + "description": "The focus of this practicum is comprehensive management of a caseload of patients with diabetes specific to the student\u2019s elected specialty (adult/gerontology acute care, adult/gerontology primary care, family, midwifery/women\u2019s health, and pediatric). The spring term is an extension of the fall and focuses on the management of common problems related to long-term diabetes complications, encouraging clinical decision-making and management of comorbidities. Student\u2019s clinical practicum in diabetes care is in various settings specific to student\u2019s specialty program. Required of all students in the diabetes care concentration in the final year. Four hours per week of practice required both terms. One and one-half hours of clinical conference per week.", "short_title": "Clinical Practice in Diabetes...", "title": "Clinical Practice in Diabetes Care and Management", "school": "NR", @@ -247991,10 +505146,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92237\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92237/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -248046,15 +505229,43 @@ "classnotes": "Course meets at Smillow", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92238\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "", - "description": "The goal of this practicum is to prepare students to comprehensively manage a caseload of adults with cancer. Emphasis is on anticipation of high-incidence clinical problems, development of clinical reasoning in assessment, differential diagnosis, and formulation of management strategies. The practice sites provide opportunities to understand cancer care along the trajectory of illness from diagnosis to death\/bereavement, develop clinical leadership skills, and deliver high-quality supportive care to patients and families across the disease trajectory. Required of all students in the oncology concentration in the final year. Four hours per week of clinical experience plus one hour per week of clinical conference.", + "syllabus_url": "https://yale.instructure.com/courses/92238/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } + }, + { + "season_code": "202303", + "requirements": "", + "description": "The goal of this practicum is to prepare students to comprehensively manage a caseload of adults with cancer. Emphasis is on anticipation of high-incidence clinical problems, development of clinical reasoning in assessment, differential diagnosis, and formulation of management strategies. The practice sites provide opportunities to understand cancer care along the trajectory of illness from diagnosis to death/bereavement, develop clinical leadership skills, and deliver high-quality supportive care to patients and families across the disease trajectory. Required of all students in the oncology concentration in the final year. Four hours per week of clinical experience plus one hour per week of clinical conference.", "short_title": "Clinical Practicum for Oncolo...", "title": "Clinical Practicum for Oncology Nurse Practitioners", "school": "NR", @@ -248098,10 +505309,38 @@ "classnotes": "Course meets at Smillow", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92239\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/92239/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -248141,10 +505380,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92240\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92240/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -248193,10 +505460,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92241\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92241/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -248239,7 +505534,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -248283,7 +505606,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -248327,7 +505678,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -248364,7 +505743,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -248416,15 +505823,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92244\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92244/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "This course is a foundational primary care seminar module designed to provide the student with an introduction to primary care clinical practice and patient-centered health education. The role of the nurse practitioner and midwife across primary care settings and as a member of the health care delivery team is emphasized. Required of all adult\/gerontology, family, midwifery\/women\u2019s health, and pediatric nurse practitioner\u2014primary care students in the first year of specialization. Open to others with permission of the instructor. Two hours per week for the first eight weeks of the term.", + "description": "This course is a foundational primary care seminar module designed to provide the student with an introduction to primary care clinical practice and patient-centered health education. The role of the nurse practitioner and midwife across primary care settings and as a member of the health care delivery team is emphasized. Required of all adult/gerontology, family, midwifery/women\u2019s health, and pediatric nurse practitioner\u2014primary care students in the first year of specialization. Open to others with permission of the instructor. Two hours per week for the first eight weeks of the term.", "short_title": "Primary Care I A", "title": "Primary Care I A", "school": "NR", @@ -248468,15 +505903,43 @@ "classnotes": "Course meets in classroom 01101-03-05", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92245\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "", - "description": "Following NURS 7020, this is the first of three didactic courses designed to enable students to develop the necessary knowledge base and problem-solving skills for primary care practice as nurse practitioners. Classes focus on health promotion, disease prevention, differential diagnoses, and evidence-based management of common health conditions in diverse populations of patients from adolescence to senescence. Required of all adult\/gerontology primary care, family, and midwifery\/women\u2019s health nurse practitioner students in the first year of specialization. Two hours per week for seven weeks.", + "syllabus_url": "https://yale.instructure.com/courses/92245/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } + }, + { + "season_code": "202303", + "requirements": "", + "description": "Following NURS 7020, this is the first of three didactic courses designed to enable students to develop the necessary knowledge base and problem-solving skills for primary care practice as nurse practitioners. Classes focus on health promotion, disease prevention, differential diagnoses, and evidence-based management of common health conditions in diverse populations of patients from adolescence to senescence. Required of all adult/gerontology primary care, family, and midwifery/women\u2019s health nurse practitioner students in the first year of specialization. Two hours per week for seven weeks.", "short_title": "Primary Care I B", "title": "Primary Care I B", "school": "NR", @@ -248520,10 +505983,38 @@ "classnotes": "Course meets in classroom 01103-05", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92246\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/92246/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -248566,12 +506057,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "Prerequisites: NURS 7030, NURS 7040, and NURS 7050.", - "description": "This is the third of three didactic courses designed to enable students to develop the necessary knowledge base and problem-solving skills for primary care practice as nurse practitioners. Classes focus on health promotion and maintenance, and assessment, differential diagnoses, and evidence-based management of acute and chronic conditions for patients from adolescence to senescence, highlighting management of patients with complex comorbid conditions. Required of all adult\/gerontology primary care and family nurse practitioner students in the final year. Taken concurrently with NURS 7070.", + "description": "This is the third of three didactic courses designed to enable students to develop the necessary knowledge base and problem-solving skills for primary care practice as nurse practitioners. Classes focus on health promotion and maintenance, and assessment, differential diagnoses, and evidence-based management of acute and chronic conditions for patients from adolescence to senescence, highlighting management of patients with complex comorbid conditions. Required of all adult/gerontology primary care and family nurse practitioner students in the final year. Taken concurrently with NURS 7070.", "short_title": "Primary Care III", "title": "Primary Care III", "school": "NR", @@ -248618,15 +506137,43 @@ "classnotes": "Course meets in classroom 01103-05", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92248\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/92248/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "Prerequisite (or concurrent with): NURS 7050.", - "description": "This clinical course builds upon the experiences gained in NURS 7050 and provides students further opportunity to develop advanced nursing skills, clinical judgment, and evidence-based patient management strategies necessary to manage common acute and chronic health care conditions. Students participate in designated weekly primary care clinical experiences arranged by faculty. In addition, students meet weekly for a ninety-minute clinical conference that is held concurrently with clinical practice. Clinical seminar discussions for family nurse practitioner students focus on family-centered care and providing care for patients across the lifespan. Clinical seminar discussions for all other students focus on providing patient-centered care for patients from adolescence to senescence. Clinical conference serves as a forum for students to present and discuss cases and explore issues encountered in clinical practice. Required of all adult\/gerontology primary care and family nurse practitioner students in the final year. Eight to sixteen hours of clinical practice per week (fifteen weeks), and one and one-half hours of clinical conference per week.", + "description": "This clinical course builds upon the experiences gained in NURS 7050 and provides students further opportunity to develop advanced nursing skills, clinical judgment, and evidence-based patient management strategies necessary to manage common acute and chronic health care conditions. Students participate in designated weekly primary care clinical experiences arranged by faculty. In addition, students meet weekly for a ninety-minute clinical conference that is held concurrently with clinical practice. Clinical seminar discussions for family nurse practitioner students focus on family-centered care and providing care for patients across the lifespan. Clinical seminar discussions for all other students focus on providing patient-centered care for patients from adolescence to senescence. Clinical conference serves as a forum for students to present and discuss cases and explore issues encountered in clinical practice. Required of all adult/gerontology primary care and family nurse practitioner students in the final year. Eight to sixteen hours of clinical practice per week (fifteen weeks), and one and one-half hours of clinical conference per week.", "short_title": "Primary Care III Clinical Pra...", "title": "Primary Care III Clinical Practice", "school": "NR", @@ -248670,15 +506217,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92249\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92249/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "Prerequisite (or concurrent with): NURS 7050.", - "description": "This clinical course builds upon the experiences gained in NURS 7050 and provides students further opportunity to develop advanced nursing skills, clinical judgment, and evidence-based patient management strategies necessary to manage common acute and chronic health care conditions. Students participate in designated weekly primary care clinical experiences arranged by faculty. In addition, students meet weekly for a ninety-minute clinical conference that is held concurrently with clinical practice. Clinical seminar discussions for family nurse practitioner students focus on family-centered care and providing care for patients across the lifespan. Clinical seminar discussions for all other students focus on providing patient-centered care for patients from adolescence to senescence. Clinical conference serves as a forum for students to present and discuss cases and explore issues encountered in clinical practice. Required of all adult\/gerontology primary care and family nurse practitioner students in the final year. Eight to sixteen hours of clinical practice per week (fifteen weeks), and one and one-half hours of clinical conference per week.", + "description": "This clinical course builds upon the experiences gained in NURS 7050 and provides students further opportunity to develop advanced nursing skills, clinical judgment, and evidence-based patient management strategies necessary to manage common acute and chronic health care conditions. Students participate in designated weekly primary care clinical experiences arranged by faculty. In addition, students meet weekly for a ninety-minute clinical conference that is held concurrently with clinical practice. Clinical seminar discussions for family nurse practitioner students focus on family-centered care and providing care for patients across the lifespan. Clinical seminar discussions for all other students focus on providing patient-centered care for patients from adolescence to senescence. Clinical conference serves as a forum for students to present and discuss cases and explore issues encountered in clinical practice. Required of all adult/gerontology primary care and family nurse practitioner students in the final year. Eight to sixteen hours of clinical practice per week (fifteen weeks), and one and one-half hours of clinical conference per week.", "short_title": "Primary Care III Clinical Pra...", "title": "Primary Care III Clinical Practice", "school": "NR", @@ -248722,15 +506297,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92250\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92250/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "Prerequisite (or concurrent with): NURS 7050.", - "description": "This clinical course builds upon the experiences gained in NURS 7050 and provides students further opportunity to develop advanced nursing skills, clinical judgment, and evidence-based patient management strategies necessary to manage common acute and chronic health care conditions. Students participate in designated weekly primary care clinical experiences arranged by faculty. In addition, students meet weekly for a ninety-minute clinical conference that is held concurrently with clinical practice. Clinical seminar discussions for family nurse practitioner students focus on family-centered care and providing care for patients across the lifespan. Clinical seminar discussions for all other students focus on providing patient-centered care for patients from adolescence to senescence. Clinical conference serves as a forum for students to present and discuss cases and explore issues encountered in clinical practice. Required of all adult\/gerontology primary care and family nurse practitioner students in the final year. Eight to sixteen hours of clinical practice per week (fifteen weeks), and one and one-half hours of clinical conference per week.", + "description": "This clinical course builds upon the experiences gained in NURS 7050 and provides students further opportunity to develop advanced nursing skills, clinical judgment, and evidence-based patient management strategies necessary to manage common acute and chronic health care conditions. Students participate in designated weekly primary care clinical experiences arranged by faculty. In addition, students meet weekly for a ninety-minute clinical conference that is held concurrently with clinical practice. Clinical seminar discussions for family nurse practitioner students focus on family-centered care and providing care for patients across the lifespan. Clinical seminar discussions for all other students focus on providing patient-centered care for patients from adolescence to senescence. Clinical conference serves as a forum for students to present and discuss cases and explore issues encountered in clinical practice. Required of all adult/gerontology primary care and family nurse practitioner students in the final year. Eight to sixteen hours of clinical practice per week (fifteen weeks), and one and one-half hours of clinical conference per week.", "short_title": "Primary Care III Clinical Pra...", "title": "Primary Care III Clinical Practice", "school": "NR", @@ -248774,15 +506377,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92251\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92251/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "Prerequisite (or concurrent with): NURS 7050.", - "description": "This clinical course builds upon the experiences gained in NURS 7050 and provides students further opportunity to develop advanced nursing skills, clinical judgment, and evidence-based patient management strategies necessary to manage common acute and chronic health care conditions. Students participate in designated weekly primary care clinical experiences arranged by faculty. In addition, students meet weekly for a ninety-minute clinical conference that is held concurrently with clinical practice. Clinical seminar discussions for family nurse practitioner students focus on family-centered care and providing care for patients across the lifespan. Clinical seminar discussions for all other students focus on providing patient-centered care for patients from adolescence to senescence. Clinical conference serves as a forum for students to present and discuss cases and explore issues encountered in clinical practice. Required of all adult\/gerontology primary care and family nurse practitioner students in the final year. Eight to sixteen hours of clinical practice per week (fifteen weeks), and one and one-half hours of clinical conference per week.", + "description": "This clinical course builds upon the experiences gained in NURS 7050 and provides students further opportunity to develop advanced nursing skills, clinical judgment, and evidence-based patient management strategies necessary to manage common acute and chronic health care conditions. Students participate in designated weekly primary care clinical experiences arranged by faculty. In addition, students meet weekly for a ninety-minute clinical conference that is held concurrently with clinical practice. Clinical seminar discussions for family nurse practitioner students focus on family-centered care and providing care for patients across the lifespan. Clinical seminar discussions for all other students focus on providing patient-centered care for patients from adolescence to senescence. Clinical conference serves as a forum for students to present and discuss cases and explore issues encountered in clinical practice. Required of all adult/gerontology primary care and family nurse practitioner students in the final year. Eight to sixteen hours of clinical practice per week (fifteen weeks), and one and one-half hours of clinical conference per week.", "short_title": "Primary Care III Clinical Pra...", "title": "Primary Care III Clinical Practice", "school": "NR", @@ -248826,15 +506457,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92252\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92252/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "Prerequisite (or concurrent with): NURS 7050.", - "description": "This clinical course builds upon the experiences gained in NURS 7050 and provides students further opportunity to develop advanced nursing skills, clinical judgment, and evidence-based patient management strategies necessary to manage common acute and chronic health care conditions. Students participate in designated weekly primary care clinical experiences arranged by faculty. In addition, students meet weekly for a ninety-minute clinical conference that is held concurrently with clinical practice. Clinical seminar discussions for family nurse practitioner students focus on family-centered care and providing care for patients across the lifespan. Clinical seminar discussions for all other students focus on providing patient-centered care for patients from adolescence to senescence. Clinical conference serves as a forum for students to present and discuss cases and explore issues encountered in clinical practice. Required of all adult\/gerontology primary care and family nurse practitioner students in the final year. Eight to sixteen hours of clinical practice per week (fifteen weeks), and one and one-half hours of clinical conference per week.", + "description": "This clinical course builds upon the experiences gained in NURS 7050 and provides students further opportunity to develop advanced nursing skills, clinical judgment, and evidence-based patient management strategies necessary to manage common acute and chronic health care conditions. Students participate in designated weekly primary care clinical experiences arranged by faculty. In addition, students meet weekly for a ninety-minute clinical conference that is held concurrently with clinical practice. Clinical seminar discussions for family nurse practitioner students focus on family-centered care and providing care for patients across the lifespan. Clinical seminar discussions for all other students focus on providing patient-centered care for patients from adolescence to senescence. Clinical conference serves as a forum for students to present and discuss cases and explore issues encountered in clinical practice. Required of all adult/gerontology primary care and family nurse practitioner students in the final year. Eight to sixteen hours of clinical practice per week (fifteen weeks), and one and one-half hours of clinical conference per week.", "short_title": "Primary Care III Clinical Pra...", "title": "Primary Care III Clinical Practice", "school": "NR", @@ -248878,15 +506537,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92253\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92253/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "Prerequisites: NURS 5040 and NURS 5041, or NURS 6000; and NURS 6040 and NURS 7000.", - "description": "This course introduces students to the major concepts and principles of gerontology and to a variety of biophysiological theories on aging. Health care delivery systems and care of the elderly are explored along with the current social policy initiatives and the state of the science of research as it relates to the older adult. Required of all adult\/gerontology primary care nurse practitioner students in their first specialty year. Two hours weekly class time.", + "description": "This course introduces students to the major concepts and principles of gerontology and to a variety of biophysiological theories on aging. Health care delivery systems and care of the elderly are explored along with the current social policy initiatives and the state of the science of research as it relates to the older adult. Required of all adult/gerontology primary care nurse practitioner students in their first specialty year. Two hours weekly class time.", "short_title": "Concepts and Principles of Aging", "title": "Concepts and Principles of Aging", "school": "NR", @@ -248930,10 +506617,38 @@ "classnotes": "Course meets first half of the term from 2-3:20pm in room 01204.\nCourse meets second half of the term from 1-3:20pm in room 01204.", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92254\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/92254/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -248982,10 +506697,38 @@ "classnotes": "Course meets in classroom 01103-05", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92255\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/92255/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -249034,10 +506777,38 @@ "classnotes": "Course meets in classroom 01103-05", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92256\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/92256/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -249086,10 +506857,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92257\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92257/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -249138,10 +506937,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92258\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92258/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -249190,10 +507017,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92259\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92259/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -249248,7 +507103,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -249294,7 +507177,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -249340,7 +507251,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -249389,10 +507328,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92263\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92263/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -249441,10 +507408,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92264\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92264/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -249493,10 +507488,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92265\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92265/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -249545,15 +507568,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92266\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92266/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "Prerequisite: successful completion of all courses required for the first, second, and third terms of the specialty.", - "description": "This course concentrates on the application of physiologic, developmental, psychosocial, and cultural theories to advanced clinical decision-making, focusing on reproductive and developmental health issues for women from adolescence to senescence. Required of all nurse-midwifery and women\u2019s health nurse practitioner students in the final year of specialization. For nurse-midwifery and nurse-midwifery\/women\u2019s health nurse practitioner students, this course must be taken concurrently with NURS 7320, and students must successfully complete all requirements of both courses in order to graduate.", + "description": "This course concentrates on the application of physiologic, developmental, psychosocial, and cultural theories to advanced clinical decision-making, focusing on reproductive and developmental health issues for women from adolescence to senescence. Required of all nurse-midwifery and women\u2019s health nurse practitioner students in the final year of specialization. For nurse-midwifery and nurse-midwifery/women\u2019s health nurse practitioner students, this course must be taken concurrently with NURS 7320, and students must successfully complete all requirements of both courses in order to graduate.", "short_title": "Integration of Women\u2019s Health...", "title": "Integration of Women\u2019s Health Care", "school": "NR", @@ -249591,7 +507642,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -249634,12 +507713,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "This course is designed to enhance the student\u2019s pediatric health assessment skills and to introduce the student to the primary care of children from infancy through adolescence. Key aspects of assessment, health promotion, and disease prevention in culturally diverse pediatric populations are discussed. Clinical applications of evidence-based practice guidelines in the care of children are reinforced through laboratory and simulation experiences. Through this course, students also participate in Interprofessional Longitudinal Clinical Experience (ILCE) learning in collaboration with the Yale Schools of Medicine (including the Physician Associate Program) and Public Health in focus areas pertinent to the health history and institutional\/structural barriers to effective health care. Required of all pediatric nurse practitioner students in the first year of specialization.", + "description": "This course is designed to enhance the student\u2019s pediatric health assessment skills and to introduce the student to the primary care of children from infancy through adolescence. Key aspects of assessment, health promotion, and disease prevention in culturally diverse pediatric populations are discussed. Clinical applications of evidence-based practice guidelines in the care of children are reinforced through laboratory and simulation experiences. Through this course, students also participate in Interprofessional Longitudinal Clinical Experience (ILCE) learning in collaboration with the Yale Schools of Medicine (including the Physician Associate Program) and Public Health in focus areas pertinent to the health history and institutional/structural barriers to effective health care. Required of all pediatric nurse practitioner students in the first year of specialization.", "short_title": "Advanced Pediatric Health Ass...", "title": "Advanced Pediatric Health Assessment and Clinical Reasoning", "school": "NR", @@ -249686,10 +507793,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92268\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92268/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -249738,10 +507873,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92269\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92269/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -249790,10 +507953,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92270\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92270/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -249842,15 +508033,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92271\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92271/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "This course is designed to provide the student with a conceptual model for assessing normal psychological and physiological adolescent development, an understanding of the clinical relevance of basic deviations from normal development, and an understanding of the diagnosis and clinical care of adolescents in primary care settings. Required of all adult\/gerontology primary care, family, and pediatric nurse practitioner students in the first year of specialization. Open to others with permission of the instructor.", + "description": "This course is designed to provide the student with a conceptual model for assessing normal psychological and physiological adolescent development, an understanding of the clinical relevance of basic deviations from normal development, and an understanding of the diagnosis and clinical care of adolescents in primary care settings. Required of all adult/gerontology primary care, family, and pediatric nurse practitioner students in the first year of specialization. Open to others with permission of the instructor.", "short_title": "Primary Care of Adolescents", "title": "Primary Care of Adolescents", "school": "NR", @@ -249894,10 +508113,38 @@ "classnotes": "Course meets in classroom 01103-05", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92272\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/92272/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -249946,10 +508193,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92273\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92273/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -249998,10 +508273,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92274\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92274/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -250050,10 +508353,38 @@ "classnotes": "Course meets in classroom 02101", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92275\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/92275/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -250102,10 +508433,38 @@ "classnotes": "Course meets in classroom 02101", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92276\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/92276/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -250155,10 +508514,38 @@ "classnotes": "Course meets in classroom 02101", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92277\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/92277/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -250208,15 +508595,43 @@ "classnotes": "Course meets in classroom 02101", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92277\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "", - "description": "This foundational course examines the major psychiatric disorders commonly seen across the lifespan. Students will integrate a broad spectrum of resources based in modern neuroscience, developmental psychology, and public health to gain an understanding of the complex interactions that impact the wellness\/illness continuum and guide the diagnostic process and decision making. Students will enhance their skills of differential diagnosis within the context of an individual's unique biologic, psychosocial, cultural, spiritual and structural determinants of health.", + "syllabus_url": "https://yale.instructure.com/courses/92277/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } + }, + { + "season_code": "202303", + "requirements": "", + "description": "This foundational course examines the major psychiatric disorders commonly seen across the lifespan. Students will integrate a broad spectrum of resources based in modern neuroscience, developmental psychology, and public health to gain an understanding of the complex interactions that impact the wellness/illness continuum and guide the diagnostic process and decision making. Students will enhance their skills of differential diagnosis within the context of an individual's unique biologic, psychosocial, cultural, spiritual and structural determinants of health.", "short_title": "Psychopathology: Diagnosis an...", "title": "Psychopathology: Diagnosis and Clinical Reasoning", "school": "NR", @@ -250260,15 +508675,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92278\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92278/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "This is the first course in a series of three courses which examines the theory and practice of psychotherapeutic interventions across the lifespan. This course weaves together comprehensive mental health assessment and communication strategies across the lifespan while developing and sustaining therapeutic alliance. Students will learn to compare therapeutic interventions from major schools of psychotherapy and apply interventions matched to client preferences, symptoms\/disease, and context. Students will develop awareness of their own self and to practice critical self-reflection in their delivery of therapeutic interventions.", + "description": "This is the first course in a series of three courses which examines the theory and practice of psychotherapeutic interventions across the lifespan. This course weaves together comprehensive mental health assessment and communication strategies across the lifespan while developing and sustaining therapeutic alliance. Students will learn to compare therapeutic interventions from major schools of psychotherapy and apply interventions matched to client preferences, symptoms/disease, and context. Students will develop awareness of their own self and to practice critical self-reflection in their delivery of therapeutic interventions.", "short_title": "Psychotherapeutic Interventio...", "title": "Psychotherapeutic Interventions I: Principles and Theory", "school": "NR", @@ -250312,10 +508755,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92279\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92279/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -250355,10 +508826,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92280\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92280/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -250398,10 +508897,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92280\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92280/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -250444,7 +508971,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -250493,10 +509048,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92283\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92283/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -250545,10 +509128,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92284\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92284/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -250597,10 +509208,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92285\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92285/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -250649,10 +509288,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92286\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92286/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -250701,10 +509368,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92287\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92287/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -250753,10 +509448,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92288\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92288/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -250805,17 +509528,45 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92289\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92289/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "Prerequisites: NURS 5040 and NURS 5041; or NURS 6000.", - "description": "This course concentrates on development of a systematic methodology of identifying acutely and critically ill patients\u2019 needs for health care. Patient history taking, physical examination, diagnostic studies and interpretation, interpretation of advanced hemodynamic and oxygenation monitoring, analysis of medical diagnoses, documentation, and student case presentations form the basis for this clinical\/seminar course. Select clinical problems of patients in acute and critical care adult\/gerontology settings are studied in the context of student case presentations, clinical practicum, and simulations. Required of all adult\/gerontology acute care nurse practitioner students in the first year of specialization.", + "description": "This course concentrates on development of a systematic methodology of identifying acutely and critically ill patients\u2019 needs for health care. Patient history taking, physical examination, diagnostic studies and interpretation, interpretation of advanced hemodynamic and oxygenation monitoring, analysis of medical diagnoses, documentation, and student case presentations form the basis for this clinical/seminar course. Select clinical problems of patients in acute and critical care adult/gerontology settings are studied in the context of student case presentations, clinical practicum, and simulations. Required of all adult/gerontology acute care nurse practitioner students in the first year of specialization.", "short_title": "Advanced Health Assessment in...", - "title": "Advanced Health Assessment in Adult\/Gerontology Acute Care", + "title": "Advanced Health Assessment in Adult/Gerontology Acute Care", "school": "NR", "credits": 0.0, "extra_info": "ACTIVE", @@ -250857,15 +509608,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92290\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92290/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "This course provides comprehensive content necessary in the assessment of the acutely or critically ill patient. Emphasis is on examination of the cardiovascular and respiratory systems, based on complex interpretations from laboratory and technological findings. Required of all adult\/gerontology acute care nurse practitioner students in the first year of specialization. The electrocardiographic (ECG) components of the course may be taken as an elective by students in any specialty who have an interest in ECG interpretation. Three hours per week for fifteen weeks.", + "description": "This course provides comprehensive content necessary in the assessment of the acutely or critically ill patient. Emphasis is on examination of the cardiovascular and respiratory systems, based on complex interpretations from laboratory and technological findings. Required of all adult/gerontology acute care nurse practitioner students in the first year of specialization. The electrocardiographic (ECG) components of the course may be taken as an elective by students in any specialty who have an interest in ECG interpretation. Three hours per week for fifteen weeks.", "short_title": "Advanced Diagnostics in Acute...", "title": "Advanced Diagnostics in Acute Care", "school": "NR", @@ -250909,15 +509688,43 @@ "classnotes": "Course meets in classroom 01103-05", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92291\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "", - "description": "The focus of this practicum is comprehensive management of a caseload of patients with adult\/gerontology acute care chronic and\/or acute complex conditions. Emphasis is on prediction of common patient problems, formulation of management protocols, and generation of research questions. Required of all adult\/gerontology acute care nurse practitioner students in the first year of specialization; students may request to exempt out as determined by faculty review of a clinical portfolio and competency.", + "syllabus_url": "https://yale.instructure.com/courses/92291/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } + }, + { + "season_code": "202303", + "requirements": "", + "description": "The focus of this practicum is comprehensive management of a caseload of patients with adult/gerontology acute care chronic and/or acute complex conditions. Emphasis is on prediction of common patient problems, formulation of management protocols, and generation of research questions. Required of all adult/gerontology acute care nurse practitioner students in the first year of specialization; students may request to exempt out as determined by faculty review of a clinical portfolio and competency.", "short_title": "Critical Care Clinical Immersion", "title": "Critical Care Clinical Immersion", "school": "NR", @@ -250961,17 +509768,45 @@ "classnotes": "Classroom: 01101", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92292\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/92292/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "Prerequisites: NURS 5040 and NURS 5041, or NURS 6000; and NURS 7800, NURS 7810, and NURS 7830.", - "description": "This course provides a basis for predicting the vulnerability for common clinical problems in acute care patients. These include trauma and endocrine, hepatic, gastrointestinal, infection\/sepsis, and end-of-life problems that occur as a result of illness or outcome of treatment. Assessment, management, and evaluation are emphasized. Normal physiology, pathophysiology, and pharmacological management of these systems are included. Required of all adult\/gerontology acute care nurse practitioner students in the final year.", + "description": "This course provides a basis for predicting the vulnerability for common clinical problems in acute care patients. These include trauma and endocrine, hepatic, gastrointestinal, infection/sepsis, and end-of-life problems that occur as a result of illness or outcome of treatment. Assessment, management, and evaluation are emphasized. Normal physiology, pathophysiology, and pharmacological management of these systems are included. Required of all adult/gerontology acute care nurse practitioner students in the final year.", "short_title": "Pathophysiology and Managemen...", - "title": "Pathophysiology and Management of Adult\/Gerontology Acute Care Health Problems II", + "title": "Pathophysiology and Management of Adult/Gerontology Acute Care Health Problems II", "school": "NR", "credits": 0.0, "extra_info": "ACTIVE", @@ -251013,17 +509848,45 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92293\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92293/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "The first term of a yearlong (with NURS 7870) practicum that provides students with clinical experience in data-gathering techniques, diagnostic reasoning, management of acute and chronic health problems, application of technology in patient care, consultation, collaboration, health promotion, and risk factor modification. This course builds upon the foundational objectives successfully met in NURS 7840. The differential diagnosis and treatment of complex health problems commonly seen in acutely ill adult\/gerontology patients are stressed, with special emphasis on conditions presented in NURS 7830 and NURS 7850. The focus is on those acute illnesses with a predictable course and established treatment approaches. Students have the opportunity to manage a caseload of patients from admission through discharge, as well as follow patients on an outpatient basis. A two-hour weekly clinical conference addresses acute care clinical issues and includes simulation activities. Required of all adult\/gerontology acute care nurse practitioner students in the final year. Preceptors are APRNs, PAs, and physicians. Twenty-four hours per week in an acute care setting for fifteen weeks.", - "short_title": "Adult\/Gerontology Acute Care ...", - "title": "Adult\/Gerontology Acute Care Clinical Practice II", + "description": "The first term of a yearlong (with NURS 7870) practicum that provides students with clinical experience in data-gathering techniques, diagnostic reasoning, management of acute and chronic health problems, application of technology in patient care, consultation, collaboration, health promotion, and risk factor modification. This course builds upon the foundational objectives successfully met in NURS 7840. The differential diagnosis and treatment of complex health problems commonly seen in acutely ill adult/gerontology patients are stressed, with special emphasis on conditions presented in NURS 7830 and NURS 7850. The focus is on those acute illnesses with a predictable course and established treatment approaches. Students have the opportunity to manage a caseload of patients from admission through discharge, as well as follow patients on an outpatient basis. A two-hour weekly clinical conference addresses acute care clinical issues and includes simulation activities. Required of all adult/gerontology acute care nurse practitioner students in the final year. Preceptors are APRNs, PAs, and physicians. Twenty-four hours per week in an acute care setting for fifteen weeks.", + "short_title": "Adult/Gerontology Acute Care ...", + "title": "Adult/Gerontology Acute Care Clinical Practice II", "school": "NR", "credits": 0.0, "extra_info": "ACTIVE", @@ -251068,10 +509931,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92294\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92294/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -251123,10 +510014,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92295\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92295/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -251175,15 +510094,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92296\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92296/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "Prerequisite: NURS 7910.", - "description": "This practicum, the first of two clinical courses, provides students with direct learning experiences in the coordination and delivery of advanced care from infancy through adolescence in a pediatric acute care setting. The focus of this course is on learning to assess, diagnose, and manage acute conditions and illnesses encountered in the pediatric acute care population. Under the guidance and supervision of the preceptor, the student develops advanced clinical skills, explores evidence-based research, and creates plans of care within the context of their patient\u2019s culture and environment. Required of all pediatric nurse practitioner\u2014acute care students in the final year. Twelve hours per week in a clinical setting and 1.5 hours per week of simulation\/clinical conference.", + "description": "This practicum, the first of two clinical courses, provides students with direct learning experiences in the coordination and delivery of advanced care from infancy through adolescence in a pediatric acute care setting. The focus of this course is on learning to assess, diagnose, and manage acute conditions and illnesses encountered in the pediatric acute care population. Under the guidance and supervision of the preceptor, the student develops advanced clinical skills, explores evidence-based research, and creates plans of care within the context of their patient\u2019s culture and environment. Required of all pediatric nurse practitioner\u2014acute care students in the final year. Twelve hours per week in a clinical setting and 1.5 hours per week of simulation/clinical conference.", "short_title": "Acute Care of Children I Clin...", "title": "Acute Care of Children I Clinical", "school": "NR", @@ -251227,10 +510174,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92297\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92297/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -251279,10 +510254,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90594\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90594/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -251331,10 +510334,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90595\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90595/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -251383,10 +510414,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90596\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90596/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -251435,10 +510494,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90597\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90597/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -251487,10 +510574,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90598\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90598/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -251539,15 +510654,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90599\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90599/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "This course is the second in a series of three Clinical DNP Practica in which students gain experience in preparing for, developing, implementing, evaluating, and disseminating their DNP projects. In this second practicum, students implement their DNP projects in the healthcare system or agency where they have completed the first Clinical DNP practica. They consult with their outside mentors\/experts to execute their written plan as developed in Clinical DNP Practicum II. The expected outcome is completion of the implementation phase of their project. This course is required for all second year Clinical DNP students after successful completion of the Spring semester Year 2.", + "description": "This course is the second in a series of three Clinical DNP Practica in which students gain experience in preparing for, developing, implementing, evaluating, and disseminating their DNP projects. In this second practicum, students implement their DNP projects in the healthcare system or agency where they have completed the first Clinical DNP practica. They consult with their outside mentors/experts to execute their written plan as developed in Clinical DNP Practicum II. The expected outcome is completion of the implementation phase of their project. This course is required for all second year Clinical DNP students after successful completion of the Spring semester Year 2.", "short_title": "Clinical DNP Practicum II", "title": "Clinical DNP Practicum II", "school": "NR", @@ -251582,10 +510725,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92298\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92298/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -251628,10 +510799,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92299\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92299/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -251671,15 +510870,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92300\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92300/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "The Clinical Inquiry Seminar II accounts for completed activities, and planning next steps in the Clinical Area of Inquiry identified in the initial course, N9600\/N9601 Clinical Inquiry Seminar I. Seminar discussion explores dissemination planning and examines completion of inquiry activities and their application to the DNP essential competencies in understanding and innovating delivery of care in health care systems. Outcomes include integrating focused area of DNP expertise by mapping the clinical focus area competencies to Clinical DNP program projects and experiences. Required of all Clinical DNP students after the successful completion of year one of the Clinical DNP Program.", + "description": "The Clinical Inquiry Seminar II accounts for completed activities, and planning next steps in the Clinical Area of Inquiry identified in the initial course, N9600/N9601 Clinical Inquiry Seminar I. Seminar discussion explores dissemination planning and examines completion of inquiry activities and their application to the DNP essential competencies in understanding and innovating delivery of care in health care systems. Outcomes include integrating focused area of DNP expertise by mapping the clinical focus area competencies to Clinical DNP program projects and experiences. Required of all Clinical DNP students after the successful completion of year one of the Clinical DNP Program.", "short_title": "Clinical Inquiry Seminar II", "title": "Clinical Inquiry Seminar II", "school": "NR", @@ -251714,10 +510941,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92301\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92301/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -251757,10 +511012,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92302\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92302/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -251800,17 +511083,45 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92303\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92303/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", "description": "In this hybrid online and on-campus course, students analyze and apply principles of contemporary leadership and administration. Students develop self-awareness of their leadership abilities and develop a plan to enhance areas for development. Building on previous courses in the D.N.P. program, especially regarding ethics, evidence for practice, and business applications, students analyze case studies in nursing leadership and suggest the best courses of action. The emphasis is on strategic thinking and quality improvement in health care delivery, policy, and regulatory environments. Students are expected to critically examine and integrate selected leadership styles and apply differing approaches to different situations. Required of DNP students in the second year. The course meets essential knowledge of AACN DNP Essential Domains 1, 5, 6, 7, 9 and 10 and includes competencies of nationally recognized professional associations including: ACHE, Healthcare Executive Competencies and AONL Nurse Leader Competencies.", - "short_title": "Organizational\/Systems Leader...", - "title": "Organizational\/Systems Leadership Development", + "short_title": "Organizational/Systems Leader...", + "title": "Organizational/Systems Leadership Development", "school": "NR", "credits": 0.0, "extra_info": "ACTIVE", @@ -251843,17 +511154,45 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92304\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92304/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "This leadership practicum requires students to participate in a mentored leadership initiative in a healthcare setting or related community-based organization, governmental agency, professional or trade association or with local, state, or national policy makers. The expected outcomes are (1) development of a mentor-mentee relationship with an understanding of the respective roles and practices, (2) demonstrated growth in selected leadership competency area(s), (3) delivery of a leadership project\/change initiative for the mentor, and (4) for course faculty and each student him\/herself, a descriptive log of leadership styles encountered in the practicum experience and self-observation of the student's own evidence-based leadership practice. Required for DNP students in their second year, Fall term. Concurrent with NURS 9810.", - "short_title": "Organizational\/Systems Leader...", - "title": "Organizational\/Systems Leadership Development Practicum", + "description": "This leadership practicum requires students to participate in a mentored leadership initiative in a healthcare setting or related community-based organization, governmental agency, professional or trade association or with local, state, or national policy makers. The expected outcomes are (1) development of a mentor-mentee relationship with an understanding of the respective roles and practices, (2) demonstrated growth in selected leadership competency area(s), (3) delivery of a leadership project/change initiative for the mentor, and (4) for course faculty and each student him/herself, a descriptive log of leadership styles encountered in the practicum experience and self-observation of the student's own evidence-based leadership practice. Required for DNP students in their second year, Fall term. Concurrent with NURS 9810.", + "short_title": "Organizational/Systems Leader...", + "title": "Organizational/Systems Leadership Development Practicum", "school": "NR", "credits": 0.0, "extra_info": "ACTIVE", @@ -251886,10 +511225,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92305\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92305/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -251932,10 +511299,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92306\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92306/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -251978,15 +511373,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92307\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92307/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "Prerequisites: successful completion of all required theoretical and D.N.P. project courses as well as an approved D.N.P. project proposal.", - "description": "The Leadership Immersion is a yearlong, mentored experience in which students apply relevant knowledge to an evidence-based experience culminating in a final D.N.P. project in NURS 9990\/NURS 9991. Students employ effective communication and collaboration skills to influence improved health care quality and safety and to negotiate successful changes in care delivery processes within and\/or across health and health care systems and organizations. Students complete the immersion under guidance of the site mentor, who will be a member of the nursing faculty D.N.P. project adviser\/committee under the leadership of the D.N.P. project chair and the D.N.P. director. Required of all D.N.P. students in the final year. 225 practicum hours.", + "description": "The Leadership Immersion is a yearlong, mentored experience in which students apply relevant knowledge to an evidence-based experience culminating in a final D.N.P. project in NURS 9990/NURS 9991. Students employ effective communication and collaboration skills to influence improved health care quality and safety and to negotiate successful changes in care delivery processes within and/or across health and health care systems and organizations. Students complete the immersion under guidance of the site mentor, who will be a member of the nursing faculty D.N.P. project adviser/committee under the leadership of the D.N.P. project chair and the D.N.P. director. Required of all D.N.P. students in the final year. 225 practicum hours.", "short_title": "Leadership Immersion Practicum", "title": "Leadership Immersion Practicum", "school": "NR", @@ -252021,15 +511444,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92308\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92308/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "Students apply relevant knowledge to an evidence-based, yearlong experience culminating in a final D.N.P. project manuscript, which will be submitted for publication. The D.N.P. project includes critical review and integration of relevant literature\/research that provides support of the identified population-based health issue or problem, as well as at least one policy and\/or evidence-based strategy that has the potential to address that health issue or problem. Required of all D.N.P. students in the final year.", + "description": "Students apply relevant knowledge to an evidence-based, yearlong experience culminating in a final D.N.P. project manuscript, which will be submitted for publication. The D.N.P. project includes critical review and integration of relevant literature/research that provides support of the identified population-based health issue or problem, as well as at least one policy and/or evidence-based strategy that has the potential to address that health issue or problem. Required of all D.N.P. students in the final year.", "short_title": "D.N.P. Project: Evidence-Base...", "title": "D.N.P. Project: Evidence-Based Practice Change", "school": "NR", @@ -252064,10 +511515,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92309\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92309/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -252105,7 +511584,7 @@ "16:00", "17:15", "HQ 129 - Humanities Quadrangle 129", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -252113,7 +511592,7 @@ "16:00", "17:15", "HQ 129 - Humanities Quadrangle 129", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -252125,10 +511604,38 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90377\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/90377/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -252166,7 +511673,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -252204,7 +511739,7 @@ "16:00", "17:15", "HQ 129 - Humanities Quadrangle 129", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -252212,7 +511747,7 @@ "16:00", "17:15", "HQ 129 - Humanities Quadrangle 129", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -252224,10 +511759,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90377\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90377/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -252265,7 +511828,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -252302,7 +511893,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -252339,7 +511958,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -252376,14 +512023,42 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", "description": "", - "short_title": "Rotation: Pediatric Hem\/Onco", - "title": "Rotation: Pediatric Hem\/Onco", + "short_title": "Rotation: Pediatric Hem/Onco", + "title": "Rotation: Pediatric Hem/Onco", "school": "PA", "credits": 0.0, "extra_info": "ACTIVE", @@ -252413,7 +512088,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -252450,7 +512153,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -252487,7 +512218,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -252524,7 +512283,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -252561,7 +512348,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -252598,7 +512413,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -252635,7 +512478,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -252672,7 +512543,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -252709,7 +512608,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -252746,7 +512673,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -252783,7 +512738,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -252820,7 +512803,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -252857,7 +512868,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -252894,7 +512933,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -252931,7 +512998,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -252968,7 +513063,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -253005,7 +513128,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -253042,7 +513193,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -253079,7 +513258,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -253116,7 +513323,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -253153,7 +513388,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -253190,7 +513453,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -253227,7 +513518,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -253264,7 +513583,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -253301,7 +513648,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -253341,10 +513716,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91419\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91419/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -253381,7 +513784,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -253418,7 +513849,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -253455,7 +513914,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -253492,7 +513979,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -253529,7 +514044,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -253566,7 +514109,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -253603,7 +514174,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -253640,7 +514239,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -253677,7 +514304,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -253714,7 +514369,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -253751,7 +514434,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -253788,7 +514499,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -253825,7 +514564,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -253862,7 +514629,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -253899,7 +514694,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -253936,7 +514759,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -253973,7 +514824,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -254010,7 +514889,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -254047,7 +514954,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -254084,7 +515019,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -254121,7 +515084,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -254158,7 +515149,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -254195,7 +515214,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -254232,7 +515279,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -254269,7 +515344,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -254306,7 +515409,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -254343,7 +515474,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -254380,7 +515539,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -254417,7 +515604,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -254454,7 +515669,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -254491,7 +515734,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -254528,7 +515799,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -254565,7 +515864,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -254603,7 +515930,7 @@ "9:25", "11:15", "HOPE 216 - Hope 216", - "https:\/\/map.yale.edu\/?id=1910#!m\/560131" + "https://map.yale.edu/?id=1910#!m/560131" ] ] }, @@ -254615,15 +515942,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88573\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88573/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "Readings and discussion on a diverse range of current topics in molecular medicine, pharmacology, and physiology. The class emphasizes analysis of primary research literature and development of presentation and writing skills. Contemporary articles are assigned on a related topic every week, and a student leads discussions with input from faculty who are experts in the topic area. The overall goal is to cover a specific topic of medical relevance (e.g., cancer, neurodegeneration) from the perspective of three primary disciplines (i.e., physiology: normal function; pathology: abnormal function; and pharmacology: intervention). Required of and open only to Ph.D. and M.D.\/Ph.D. students in the Molecular Medicine, Pharmacology, and Physiology track.", + "description": "Readings and discussion on a diverse range of current topics in molecular medicine, pharmacology, and physiology. The class emphasizes analysis of primary research literature and development of presentation and writing skills. Contemporary articles are assigned on a related topic every week, and a student leads discussions with input from faculty who are experts in the topic area. The overall goal is to cover a specific topic of medical relevance (e.g., cancer, neurodegeneration) from the perspective of three primary disciplines (i.e., physiology: normal function; pathology: abnormal function; and pharmacology: intervention). Required of and open only to Ph.D. and M.D./Ph.D. students in the Molecular Medicine, Pharmacology, and Physiology track.", "short_title": "Seminar in Molecular Medicine...", "title": "Seminar in Molecular Medicine, Pharmacology, and Physiology", "school": "GS", @@ -254679,14 +516034,42 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90413\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90413/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", - "requirements": "Prerequisite: PATH 650 or permission of the instructor. Open to all Ph.D., M.D.\/Ph.D., and M.P.H. students and to advanced undergraduates at the discretion of the instructor.", + "requirements": "Prerequisite: PATH 650 or permission of the instructor. Open to all Ph.D., M.D./Ph.D., and M.P.H. students and to advanced undergraduates at the discretion of the instructor.", "description": "This advanced course focuses on readings and discussion on three or four major topics in cancer biology, such as targeted therapy, tumor immunology, tumor metabolism, and genomic evolution of cancer. For each topic, the class starts with an interactive lecture, followed by critical analysis of primary research literature. Recent research articles are assigned, and a student leads discussions with input from faculty who are experts in the topic area.", "short_title": "Advanced Topics in Cancer Bio...", "title": "Advanced Topics in Cancer Biology", @@ -254719,7 +516102,7 @@ "13:30", "15:20", "BML 137 - Brady Memorial Laboratory 137", - "https:\/\/map.yale.edu\/?id=1910#!m\/560069" + "https://map.yale.edu/?id=1910#!m/560069" ] ] }, @@ -254731,15 +516114,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88576\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88576/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "This course covers aspects of the fundamental molecular and cellular mechanisms underlying various human diseases. Many of the disorders discussed represent major forms of infectious, degenerative, vascular, neoplastic, and inflammatory disease. Additionally, certain rarer diseases that illustrate good models for investigation and\/or application of basic biologic principles are covered in the course. The objective is to highlight advances in experimental and molecular medicine as they relate to understanding the pathogenesis of disease and the formulation of therapies.", + "description": "This course covers aspects of the fundamental molecular and cellular mechanisms underlying various human diseases. Many of the disorders discussed represent major forms of infectious, degenerative, vascular, neoplastic, and inflammatory disease. Additionally, certain rarer diseases that illustrate good models for investigation and/or application of basic biologic principles are covered in the course. The objective is to highlight advances in experimental and molecular medicine as they relate to understanding the pathogenesis of disease and the formulation of therapies.", "short_title": "Molecular Mechanisms of Disease", "title": "Molecular Mechanisms of Disease", "school": "GS", @@ -254772,7 +516183,7 @@ "13:00", "14:15", "HOPE 110 - Hope 110", - "https:\/\/map.yale.edu\/?id=1910#!m\/560131" + "https://map.yale.edu/?id=1910#!m/560131" ] ], "Thursday": [ @@ -254780,7 +516191,7 @@ "13:00", "14:15", "HOPE 110 - Hope 110", - "https:\/\/map.yale.edu\/?id=1910#!m\/560131" + "https://map.yale.edu/?id=1910#!m/560131" ] ] }, @@ -254794,10 +516205,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88579\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88579/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -254835,7 +516274,7 @@ "10:30", "11:20", "HQ 309 - Humanities Quadrangle 309", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Tuesday": [ @@ -254843,7 +516282,7 @@ "10:30", "11:20", "HQ 309 - Humanities Quadrangle 309", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -254851,7 +516290,7 @@ "10:30", "11:20", "HQ 309 - Humanities Quadrangle 309", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -254859,7 +516298,7 @@ "10:30", "11:20", "HQ 309 - Humanities Quadrangle 309", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Friday": [ @@ -254867,7 +516306,7 @@ "10:30", "11:20", "HQ 309 - Humanities Quadrangle 309", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -254881,10 +516320,115 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89264\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89264/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989109039306641, + 0.9988425970077515, + 0.9988725781440735, + 0.9987689852714539, + 0.998754620552063, + 0.9988150596618652, + 0.9967218041419983 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9992715716362, + 0.9989262223243713, + 0.9989213943481445, + 0.9988911747932434, + 0.9989026784896851, + 0.9988906979560852, + 0.9988757967948914 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 6 + }, + "sentiment_distribution": { + "NEGATIVE": 0.14285714285714285, + "POSITIVE": 0.8571428571428571 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9930682182312012, + 0.9989145994186401, + 0.9986287355422974, + 0.9988798499107361, + 0.9988217949867249 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 0.9473684210526315, + "final_counts": { + "POSITIVE": 18, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9473684210526315, + "NEGATIVE": 0.05263157894736842 + } + } }, { "season_code": "202303", @@ -254925,7 +516469,7 @@ "13:00", "14:15", "HQ 313 - Humanities Quadrangle 313", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -254933,7 +516477,7 @@ "13:00", "14:15", "HQ 313 - Humanities Quadrangle 313", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -254948,10 +516492,17 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91592\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91592/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -254985,10 +516536,38 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91592\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/91592/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -255027,7 +516606,7 @@ "11:35", "12:50", "HQ 317 - Humanities Quadrangle 317", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -255035,7 +516614,7 @@ "11:35", "12:50", "HQ 317 - Humanities Quadrangle 317", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -255052,7 +516631,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -255090,7 +516697,7 @@ "10:30", "11:20", "HQ 309 - Humanities Quadrangle 309", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Tuesday": [ @@ -255098,7 +516705,7 @@ "10:30", "11:20", "HQ 309 - Humanities Quadrangle 309", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -255106,7 +516713,7 @@ "10:30", "11:20", "HQ 309 - Humanities Quadrangle 309", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -255114,7 +516721,7 @@ "10:30", "11:20", "HQ 309 - Humanities Quadrangle 309", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Friday": [ @@ -255122,7 +516729,7 @@ "10:30", "11:20", "HQ 309 - Humanities Quadrangle 309", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -255134,10 +516741,115 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89264\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89264/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989109039306641, + 0.9988425970077515, + 0.9988725781440735, + 0.9987689852714539, + 0.998754620552063, + 0.9988150596618652, + 0.9967218041419983 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9992715716362, + 0.9989262223243713, + 0.9989213943481445, + 0.9988911747932434, + 0.9989026784896851, + 0.9988906979560852, + 0.9988757967948914 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 6 + }, + "sentiment_distribution": { + "NEGATIVE": 0.14285714285714285, + "POSITIVE": 0.8571428571428571 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9930682182312012, + 0.9989145994186401, + 0.9986287355422974, + 0.9988798499107361, + 0.9988217949867249 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 0.9473684210526315, + "final_counts": { + "POSITIVE": 18, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9473684210526315, + "NEGATIVE": 0.05263157894736842 + } + } }, { "season_code": "202303", @@ -255178,7 +516890,7 @@ "13:00", "14:15", "HQ 313 - Humanities Quadrangle 313", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -255186,7 +516898,7 @@ "13:00", "14:15", "HQ 313 - Humanities Quadrangle 313", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -255198,10 +516910,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91592\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91592/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -255235,14 +516954,42 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91592\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91592/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", - "requirements": "Prerequisite: PERS 503, L4 and\/or instructor permission.", + "requirements": "Prerequisite: PERS 503, L4 and/or instructor permission.", "description": "Students are presented with opportunities to enhance their knowledge of Persian with primary focus on reading skills. The course involves reading, analyzing, and in-class discussion of assigned materials in the target language. Authentic reading excerpts from history, art, philosophy, and literature, as well as art history materials from medieval to modern times are used. This course is taught in Persian.", "short_title": "Reading Persian Texts", "title": "Reading Persian Texts", @@ -255277,7 +517024,7 @@ "11:35", "12:50", "HQ 317 - Humanities Quadrangle 317", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -255285,7 +517032,7 @@ "11:35", "12:50", "HQ 317 - Humanities Quadrangle 317", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -255300,7 +517047,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -255343,12 +517118,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "Readings and discussion on a diverse range of current topics in molecular medicine, pharmacology, and physiology. The class emphasizes analysis of primary research literature and development of presentation and writing skills. Contemporary articles are assigned on a related topic every week, and a student leads discussions with input from faculty who are experts in the topic area. The overall goal is to cover a specific topic of medical relevance (e.g., cancer, neurodegeneration) from the perspective of three primary disciplines (i.e., physiology: normal function; pathology: abnormal function; and pharmacology: intervention). Required of and open only to Ph.D. and M.D.\/Ph.D. students in the Molecular Medicine, Pharmacology, and Physiology track.", + "description": "Readings and discussion on a diverse range of current topics in molecular medicine, pharmacology, and physiology. The class emphasizes analysis of primary research literature and development of presentation and writing skills. Contemporary articles are assigned on a related topic every week, and a student leads discussions with input from faculty who are experts in the topic area. The overall goal is to cover a specific topic of medical relevance (e.g., cancer, neurodegeneration) from the perspective of three primary disciplines (i.e., physiology: normal function; pathology: abnormal function; and pharmacology: intervention). Required of and open only to Ph.D. and M.D./Ph.D. students in the Molecular Medicine, Pharmacology, and Physiology track.", "short_title": "Seminar in Molecular Medicine...", "title": "Seminar in Molecular Medicine, Pharmacology, and Physiology", "school": "GS", @@ -255404,10 +517207,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90413\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90413/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -255445,7 +517276,7 @@ "10:40", "11:55", "SHM B201 - Sterling Hall of Medicine B201", - "https:\/\/map.yale.edu\/?id=1910#!m\/559929" + "https://map.yale.edu/?id=1910#!m/559929" ] ], "Wednesday": [ @@ -255453,7 +517284,7 @@ "10:40", "11:55", "SHM B201 - Sterling Hall of Medicine B201", - "https:\/\/map.yale.edu\/?id=1910#!m\/559929" + "https://map.yale.edu/?id=1910#!m/559929" ] ] }, @@ -255465,10 +517296,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89922\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89922/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -255505,7 +517364,7 @@ "9:15", "10:45", "SHM B201 - Sterling Hall of Medicine B201", - "https:\/\/map.yale.edu\/?id=1910#!m\/559929" + "https://map.yale.edu/?id=1910#!m/559929" ] ], "Thursday": [ @@ -255513,7 +517372,7 @@ "9:15", "10:45", "SHM B201 - Sterling Hall of Medicine B201", - "https:\/\/map.yale.edu\/?id=1910#!m\/559929" + "https://map.yale.edu/?id=1910#!m/559929" ] ] }, @@ -255525,10 +517384,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89923\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89923/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -255565,7 +517452,7 @@ "13:30", "14:45", "SHM B201 - Sterling Hall of Medicine B201", - "https:\/\/map.yale.edu\/?id=1910#!m\/559929" + "https://map.yale.edu/?id=1910#!m/559929" ] ], "Friday": [ @@ -255573,7 +517460,7 @@ "13:30", "14:45", "SHM B201 - Sterling Hall of Medicine B201", - "https:\/\/map.yale.edu\/?id=1910#!m\/559929" + "https://map.yale.edu/?id=1910#!m/559929" ] ] }, @@ -255585,10 +517472,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92359\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92359/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -255634,7 +517549,7 @@ "9:25", "10:15", "DAVIES AUD - Davies Auditorium, Becton Ctr AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ], "Wednesday": [ @@ -255642,7 +517557,7 @@ "9:25", "10:15", "DAVIES AUD - Davies Auditorium, Becton Ctr AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ], "Friday": [ @@ -255650,7 +517565,7 @@ "9:25", "10:15", "DAVIES AUD - Davies Auditorium, Becton Ctr AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ] }, @@ -255664,10 +517579,243 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88304\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88304/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989400506019592, + 0.9987356066703796, + 0.9988401532173157, + 0.9988483190536499, + 0.9987340569496155, + 0.9989243149757385, + 0.9981581568717957, + 0.9988138675689697, + 0.998855710029602, + 0.9988767504692078, + 0.997672975063324, + 0.9985867738723755, + 0.9987708926200867, + 0.9985735416412354, + 0.9977019429206848, + 0.9988190531730652, + 0.9987074136734009, + 0.9989060163497925, + 0.9975103139877319, + 0.9987026453018188, + 0.9986618757247925, + 0.9988909363746643, + 0.9978437423706055, + 0.9983353018760681, + 0.9985999464988708 + ], + "sentiment_counts": { + "POSITIVE": 25, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998848557472229, + 0.9993402361869812, + 0.9987609386444092, + 0.9989367127418518, + 0.9985036849975586, + 0.9989107847213745, + 0.9988788962364197, + 0.9987718462944031, + 0.9979021549224854, + 0.9987320303916931, + 0.998915433883667, + 0.9988909363746643, + 0.9995081424713135, + 0.9951971173286438, + 0.9987885355949402, + 0.9956823587417603, + 0.9983001351356506, + 0.9929627776145935, + 0.996518611907959, + 0.9988659620285034, + 0.9989122152328491, + 0.9994854927062988, + 0.9989089965820312, + 0.9989018440246582, + 0.9994179010391235, + 0.997342050075531, + 0.9988390803337097, + 0.9976304769515991, + 0.9986839890480042, + 0.9988480806350708 + ], + "sentiment_counts": { + "POSITIVE": 23, + "NEGATIVE": 7 + }, + "sentiment_distribution": { + "POSITIVE": 0.7666666666666667, + "NEGATIVE": 0.23333333333333334 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7666666666666667 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9943073391914368, + 0.9994959831237793, + 0.9987064599990845, + 0.9989296793937683, + 0.9986969828605652, + 0.9989004135131836, + 0.9988976716995239, + 0.9984064698219299, + 0.9987874627113342, + 0.9994966983795166, + 0.9988901019096375, + 0.9994984865188599, + 0.9989144802093506, + 0.9987828135490417, + 0.997117280960083, + 0.9971362352371216, + 0.9988127946853638, + 0.9988106489181519, + 0.9988019466400146, + 0.9968705773353577, + 0.9987626075744629, + 0.9989251494407654, + 0.9989131689071655, + 0.998771607875824, + 0.9962942004203796, + 0.9986621141433716, + 0.9647520780563354, + 0.9957173466682434 + ], + "sentiment_counts": { + "NEGATIVE": 7, + "POSITIVE": 21 + }, + "sentiment_distribution": { + "NEGATIVE": 0.25, + "POSITIVE": 0.75 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 69, + "final_proportion": 0.8313253012048193, + "final_counts": { + "POSITIVE": 69, + "NEGATIVE": 14 + }, + "final_distribution": { + "POSITIVE": 0.8313253012048193, + "NEGATIVE": 0.1686746987951807 + } + } }, { "season_code": "202303", @@ -255704,7 +517852,7 @@ "13:00", "14:15", "HQ 129 - Humanities Quadrangle 129", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -255712,7 +517860,7 @@ "13:00", "14:15", "HQ 129 - Humanities Quadrangle 129", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -255726,10 +517874,109 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91396\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91396/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986616373062134, + 0.9988328814506531, + 0.9989162683486938, + 0.9986408352851868, + 0.9987439513206482 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986380934715271, + 0.9989196062088013, + 0.9985309839248657, + 0.9989012479782104, + 0.9986955523490906, + 0.9987865090370178 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987712502479553, + 0.9985700845718384, + 0.9988032579421997, + 0.9984377026557922, + 0.9989354014396667, + 0.99872225522995 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 17 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -255766,7 +518013,7 @@ "13:00", "14:15", "LC 103 - Linsly-Chittenden Hall 103", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -255774,7 +518021,7 @@ "13:00", "14:15", "LC 103 - Linsly-Chittenden Hall 103", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -255792,10 +518039,91 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90444\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90444/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982733726501465, + 0.9988558292388916, + 0.9987847208976746 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983466863632202, + 0.9989066123962402, + 0.9989118576049805 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9879030585289001, + 0.998701810836792 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 8, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 8 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -255832,7 +518160,7 @@ "11:35", "12:50", "LC 101 - Linsly-Chittenden Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -255840,7 +518168,7 @@ "11:35", "12:50", "LC 101 - Linsly-Chittenden Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -255856,10 +518184,251 @@ "classnotes": "", "final_exam": "Sunday, December 17, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88582\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88582/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989147186279297, + 0.962945818901062, + 0.9984405636787415, + 0.997677743434906, + 0.9910981059074402, + 0.9979466795921326, + 0.9959897398948669, + 0.9989367127418518, + 0.9988971948623657, + 0.9984486103057861, + 0.9987851977348328, + 0.9987297654151917, + 0.9986585378646851, + 0.9988881945610046, + 0.9988114833831787, + 0.9986991882324219, + 0.9988025426864624, + 0.9953885078430176, + 0.9987906813621521, + 0.9986708164215088, + 0.9988425970077515, + 0.9984555244445801, + 0.9987726807594299, + 0.9989320635795593, + 0.9988706707954407 + ], + "sentiment_counts": { + "POSITIVE": 25, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983861446380615, + 0.9988812804222107, + 0.9951716065406799, + 0.9985756874084473, + 0.9988566637039185, + 0.998759388923645, + 0.9977849721908569, + 0.9984440207481384, + 0.9989140033721924, + 0.9988705515861511, + 0.9989246726036072, + 0.9994615912437439, + 0.9988858103752136, + 0.9869101643562317, + 0.9988511800765991, + 0.9986667633056641, + 0.9988991022109985, + 0.9989182949066162, + 0.9989093542098999, + 0.9995073080062866, + 0.9988855719566345, + 0.9988357424736023, + 0.9988827109336853, + 0.998932421207428, + 0.9950973391532898, + 0.9988681077957153, + 0.9984377026557922, + 0.9988710284233093, + 0.9988836646080017, + 0.9989299178123474 + ], + "sentiment_counts": { + "POSITIVE": 27, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987711310386658, + 0.9987112283706665, + 0.9989375472068787, + 0.9988598823547363, + 0.9980606436729431, + 0.9988905787467957, + 0.9989038705825806, + 0.9979323148727417, + 0.9988667964935303, + 0.9989099502563477, + 0.9968587160110474, + 0.9989153146743774, + 0.9988025426864624, + 0.9978312849998474, + 0.9987698197364807, + 0.9985814094543457, + 0.9985508322715759, + 0.998837411403656, + 0.9988905787467957, + 0.9988874793052673, + 0.9987301230430603, + 0.9985309839248657, + 0.9953323006629944, + 0.9989124536514282, + 0.9970491528511047, + 0.9973515272140503, + 0.9989330172538757, + 0.9988259673118591, + 0.9987967014312744, + 0.9980168342590332, + 0.9988779425621033, + 0.9989084005355835 + ], + "sentiment_counts": { + "POSITIVE": 30, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.9375, + "NEGATIVE": 0.0625 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9375 + ] + }, + "final_label": "POSITIVE", + "final_count": 82, + "final_proportion": 0.9425287356321839, + "final_counts": { + "POSITIVE": 82, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.9425287356321839, + "NEGATIVE": 0.05747126436781609 + } + } }, { "season_code": "202303", @@ -255890,7 +518459,7 @@ "10:30", "11:20", "LC 103 - Linsly-Chittenden Hall 103", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -255909,7 +518478,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -255940,7 +518537,7 @@ "15:30", "16:20", "PH 207 - Phelps Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -255959,7 +518556,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -255990,7 +518615,7 @@ "13:30", "14:20", "PH 207 - Phelps Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -256009,7 +518634,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -256040,7 +518693,7 @@ "13:30", "14:20", "WLH 113 - William L. Harkness Hall 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -256059,7 +518712,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -256090,7 +518771,7 @@ "15:30", "16:20", "RKZ 04 - Rosenkranz Hall 04", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -256109,7 +518790,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -256140,7 +518849,7 @@ "10:30", "11:20", "PH 407 - Phelps Hall 407", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -256159,7 +518868,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -256190,7 +518927,7 @@ "16:00", "16:50", "LC 205 - Linsly-Chittenden Hall 205", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -256209,7 +518946,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -256240,7 +519005,7 @@ "17:00", "17:50", "LC 205 - Linsly-Chittenden Hall 205", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -256259,7 +519024,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -256298,7 +519091,7 @@ "10:30", "11:20", "LC 101 - Linsly-Chittenden Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -256306,7 +519099,7 @@ "10:30", "11:20", "LC 101 - Linsly-Chittenden Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Friday": [ @@ -256314,7 +519107,7 @@ "10:30", "11:20", "LC 101 - Linsly-Chittenden Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -256328,10 +519121,219 @@ "classnotes": "", "final_exam": "Monday, December 18, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88718\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88718/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988231062889099, + 0.9988858103752136, + 0.9983605742454529, + 0.9988107681274414, + 0.9982770681381226, + 0.9989277720451355, + 0.9987346529960632, + 0.9984032511711121, + 0.9987828135490417, + 0.9988987445831299, + 0.9988676309585571, + 0.9981400966644287, + 0.997219443321228, + 0.9988577365875244, + 0.9989144802093506, + 0.9971745014190674, + 0.9987868666648865, + 0.9988917708396912, + 0.9988013505935669, + 0.9984847903251648, + 0.998635470867157, + 0.9988717436790466, + 0.9988865256309509 + ], + "sentiment_counts": { + "POSITIVE": 23, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988542795181274, + 0.9994519352912903, + 0.9989374279975891, + 0.9988250136375427, + 0.9994720816612244, + 0.9988688826560974, + 0.9989054203033447, + 0.9989150762557983, + 0.9988266825675964, + 0.9989055395126343, + 0.998925507068634, + 0.9974014759063721, + 0.9989299178123474, + 0.9987521171569824, + 0.9987943172454834, + 0.9988967180252075, + 0.9988310933113098, + 0.9987579584121704, + 0.9988678693771362, + 0.9989342093467712, + 0.9989157915115356 + ], + "sentiment_counts": { + "POSITIVE": 19, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.9047619047619048, + "NEGATIVE": 0.09523809523809523 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9047619047619048 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998916745185852, + 0.9988417029380798, + 0.9988968372344971, + 0.998767614364624, + 0.9801360368728638, + 0.9987131357192993, + 0.9961066842079163, + 0.9989051818847656, + 0.9989321827888489, + 0.9989320635795593, + 0.9980402588844299, + 0.9989163875579834, + 0.9989149570465088, + 0.9982553124427795, + 0.9983333945274353, + 0.9981885552406311, + 0.9987700581550598, + 0.9988411068916321, + 0.997117280960083, + 0.9988810420036316, + 0.9994977712631226, + 0.9988988637924194, + 0.9988895058631897, + 0.9983822107315063, + 0.9979808926582336, + 0.9989179372787476, + 0.9989057779312134 + ], + "sentiment_counts": { + "POSITIVE": 25, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.9259259259259259, + "NEGATIVE": 0.07407407407407407 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9259259259259259 + ] + }, + "final_label": "POSITIVE", + "final_count": 67, + "final_proportion": 0.9436619718309859, + "final_counts": { + "POSITIVE": 67, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.9436619718309859, + "NEGATIVE": 0.056338028169014086 + } + } }, { "season_code": "202303", @@ -256364,7 +519366,7 @@ "14:30", "15:20", "HQ C65 - Humanities Quadrangle C65", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -256381,7 +519383,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -256414,7 +519444,7 @@ "16:30", "17:20", "HQ 307 - Humanities Quadrangle 307", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -256431,7 +519461,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -256464,7 +519522,7 @@ "9:25", "10:15", "WTS A38 - Watson Center 60 Sachem Street A38", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -256481,7 +519539,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -256514,7 +519600,7 @@ "10:30", "11:20", "WTS B30 - Watson Center 60 Sachem Street B30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -256531,7 +519617,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -256564,7 +519678,7 @@ "10:30", "11:20", "WTS B74 - Watson Center 60 Sachem Street B74", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -256581,7 +519695,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -256614,7 +519756,7 @@ "11:35", "12:25", "WTS B31 - Watson Center 60 Sachem Street B31", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -256631,7 +519773,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -256663,7 +519833,7 @@ "11:35", "12:25", "WLH 006 - William L. Harkness Hall 006", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -256684,7 +519854,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -256716,7 +519914,7 @@ "14:30", "15:20", "WLH 006 - William L. Harkness Hall 006", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -256737,7 +519935,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -256769,7 +519995,7 @@ "10:30", "11:20", "WLH 014 - William L. Harkness Hall 014", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -256790,7 +520016,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -256822,7 +520076,7 @@ "13:30", "14:20", "WLH 002 - William L. Harkness Hall 002", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -256843,7 +520097,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -256881,7 +520163,7 @@ "11:35", "12:25", "WLH 208 - William L. Harkness Hall 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -256889,7 +520171,7 @@ "11:35", "12:25", "WLH 208 - William L. Harkness Hall 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -256907,10 +520189,187 @@ "classnotes": "", "final_exam": "Friday, December 15, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88584\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88584/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9980494976043701, + 0.9987012147903442, + 0.9988522529602051, + 0.9985790252685547, + 0.9960070252418518, + 0.9982062578201294, + 0.9989091157913208, + 0.9987082481384277, + 0.9987670183181763, + 0.9899200201034546, + 0.9987867474555969, + 0.9987450838088989, + 0.9989029169082642, + 0.9956974983215332, + 0.9987884163856506, + 0.9973292350769043, + 0.9984295964241028, + 0.9988804459571838 + ], + "sentiment_counts": { + "POSITIVE": 18, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988880753517151, + 0.9988308548927307, + 0.9988320469856262, + 0.9962790608406067, + 0.9922195672988892, + 0.9987898468971252, + 0.9897847771644592, + 0.9975225329399109, + 0.9988362193107605, + 0.9985306262969971, + 0.9987747073173523, + 0.9982311129570007, + 0.9972732663154602, + 0.9987911581993103, + 0.9988574981689453, + 0.9475632905960083, + 0.9993939399719238, + 0.9970495700836182, + 0.9983988404273987 + ], + "sentiment_counts": { + "POSITIVE": 14, + "NEGATIVE": 5 + }, + "sentiment_distribution": { + "POSITIVE": 0.7368421052631579, + "NEGATIVE": 0.2631578947368421 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7368421052631579 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9967592358589172, + 0.9988215565681458, + 0.9988724589347839, + 0.9987271428108215, + 0.9898778796195984, + 0.9988118410110474, + 0.9988802075386047, + 0.9988627433776855, + 0.9989271759986877, + 0.9982247948646545, + 0.9989136457443237, + 0.998835027217865, + 0.9988133907318115, + 0.9989035129547119, + 0.9987032413482666, + 0.9988901019096375, + 0.9963483214378357, + 0.9988780617713928 + ], + "sentiment_counts": { + "POSITIVE": 17, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9444444444444444, + "NEGATIVE": 0.05555555555555555 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9444444444444444 + ] + }, + "final_label": "POSITIVE", + "final_count": 49, + "final_proportion": 0.8909090909090909, + "final_counts": { + "POSITIVE": 49, + "NEGATIVE": 6 + }, + "final_distribution": { + "POSITIVE": 0.8909090909090909, + "NEGATIVE": 0.10909090909090909 + } + } }, { "season_code": "202303", @@ -256947,7 +520406,7 @@ "10:30", "11:20", "LC 102 - Linsly-Chittenden Hall 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -256955,7 +520414,7 @@ "10:30", "11:20", "LC 102 - Linsly-Chittenden Hall 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -256971,10 +520430,241 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88586\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88586/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994999170303345, + 0.9986037611961365, + 0.998878538608551, + 0.9971858859062195, + 0.9989014863967896, + 0.9988924860954285, + 0.9988203644752502, + 0.9988462924957275, + 0.9989373087882996, + 0.9987818598747253, + 0.9988999366760254, + 0.9993189573287964, + 0.998893678188324, + 0.9979302883148193, + 0.9988675117492676, + 0.9988510608673096, + 0.9841614961624146, + 0.9988835453987122, + 0.9989356398582458, + 0.9988596439361572, + 0.9988841414451599, + 0.9975737929344177, + 0.9989163875579834, + 0.9987680315971375, + 0.9988616704940796, + 0.9988718628883362 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 23 + }, + "sentiment_distribution": { + "NEGATIVE": 0.11538461538461539, + "POSITIVE": 0.8846153846153846 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8846153846153846 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994274377822876, + 0.9986844658851624, + 0.9987550973892212, + 0.9989184141159058, + 0.9995050430297852, + 0.9977498650550842, + 0.9994970560073853, + 0.9989044666290283, + 0.9986429810523987, + 0.9983110427856445, + 0.9995075464248657, + 0.9862151741981506, + 0.998813271522522, + 0.9994363188743591, + 0.9987953901290894, + 0.9988582134246826, + 0.9986211061477661, + 0.9834800958633423, + 0.99873286485672, + 0.9928503036499023, + 0.9988996982574463, + 0.9988941550254822, + 0.9986264705657959, + 0.9988741278648376, + 0.9989179372787476 + ], + "sentiment_counts": { + "NEGATIVE": 7, + "POSITIVE": 18 + }, + "sentiment_distribution": { + "NEGATIVE": 0.28, + "POSITIVE": 0.72 + }, + "sentiment_overall": [ + "POSITIVE", + 0.72 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994435906410217, + 0.9983772039413452, + 0.9901229739189148, + 0.9988102912902832, + 0.9989075660705566, + 0.9989355206489563, + 0.9994491934776306, + 0.9994919300079346, + 0.9993178844451904, + 0.998166561126709, + 0.9989306330680847, + 0.9970863461494446, + 0.9971596002578735, + 0.9987001419067383, + 0.9988293051719666, + 0.997117280960083, + 0.9989250302314758, + 0.9989053010940552, + 0.9988330006599426, + 0.9989112615585327, + 0.9985595345497131, + 0.9989293217658997, + 0.9994720816612244, + 0.9988700747489929, + 0.9989232420921326, + 0.9989016056060791, + 0.977581262588501, + 0.9935908317565918, + 0.9989287257194519, + 0.9987296462059021, + 0.9989350438117981 + ], + "sentiment_counts": { + "NEGATIVE": 9, + "POSITIVE": 22 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2903225806451613, + "POSITIVE": 0.7096774193548387 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7096774193548387 + ] + }, + "final_label": "POSITIVE", + "final_count": 63, + "final_proportion": 0.7682926829268293, + "final_counts": { + "NEGATIVE": 19, + "POSITIVE": 63 + }, + "final_distribution": { + "NEGATIVE": 0.23170731707317074, + "POSITIVE": 0.7682926829268293 + } + } }, { "season_code": "202303", @@ -257005,7 +520695,7 @@ "19:00", "19:50", "PH 312 - Phelps Hall 312", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -257024,7 +520714,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -257055,7 +520773,7 @@ "10:30", "11:20", "LC 209 - Linsly-Chittenden Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -257074,7 +520792,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -257105,7 +520851,7 @@ "16:00", "16:50", "WLH 009 - William L. Harkness Hall 009", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -257124,7 +520870,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -257155,7 +520929,7 @@ "17:00", "17:50", "WLH 009 - William L. Harkness Hall 009", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -257174,7 +520948,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -257205,7 +521007,7 @@ "13:30", "14:20", "WLH 009 - William L. Harkness Hall 009", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -257224,7 +521026,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -257255,7 +521085,7 @@ "14:30", "15:20", "WLH 009 - William L. Harkness Hall 009", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -257274,7 +521104,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -257305,7 +521163,7 @@ "19:00", "19:50", "PH 312 - Phelps Hall 312", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -257324,7 +521182,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -257355,7 +521241,7 @@ "19:00", "19:50", "WLH 002 - William L. Harkness Hall 002", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -257374,7 +521260,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -257412,7 +521326,7 @@ "9:00", "10:15", "LC 317 - Linsly-Chittenden Hall 317", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -257420,7 +521334,7 @@ "9:00", "10:15", "LC 317 - Linsly-Chittenden Hall 317", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -257437,10 +521351,97 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88588\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88588/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989141225814819, + 0.9982353448867798 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9959217309951782, + 0.9973158240318298, + 0.9995033740997314, + 0.9989996552467346, + 0.9976925849914551 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.4, + "NEGATIVE": 0.6 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.6 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9980652928352356, + 0.999498724937439, + 0.9977651834487915 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 1 + }, + "sentiment_distribution": { + "NEGATIVE": 0.6666666666666666, + "POSITIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.6666666666666666 + ] + }, + "final_label": "neutral", + "final_count": 0.5, + "final_proportion": 0.5, + "final_counts": { + "POSITIVE": 5, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + } + } }, { "season_code": "202303", @@ -257479,7 +521480,7 @@ "13:30", "14:20", "LC 101 - Linsly-Chittenden Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -257487,7 +521488,7 @@ "13:30", "14:20", "LC 101 - Linsly-Chittenden Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -257496,17 +521497,232 @@ "Hu" ], "flags": [ - "YC Phil: Intersctn PSYC\/PHIL" + "YC Phil: Intersctn PSYC/PHIL" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "Wednesday, December 20, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88590\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88590/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986358284950256, + 0.9987791180610657, + 0.9988369345664978, + 0.9988452196121216, + 0.9988974332809448, + 0.9938669800758362, + 0.9987474679946899, + 0.9985643029212952, + 0.998823344707489, + 0.9988481998443604, + 0.9988190531730652, + 0.9988808035850525, + 0.9988852143287659, + 0.9988306164741516, + 0.9988640546798706, + 0.9987175464630127, + 0.9989252686500549, + 0.9988462924957275, + 0.9987984895706177, + 0.9989079236984253, + 0.998790442943573, + 0.9987873435020447, + 0.9987233281135559, + 0.9987824559211731, + 0.9986752867698669 + ], + "sentiment_counts": { + "POSITIVE": 25, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9888291954994202, + 0.9972978234291077, + 0.990993082523346, + 0.9989086389541626, + 0.9994680285453796, + 0.997282862663269, + 0.9990683197975159, + 0.9982293248176575, + 0.998887836933136, + 0.9988549947738647, + 0.9871314764022827, + 0.9975976347923279, + 0.9989094734191895, + 0.9954645037651062, + 0.9989286065101624, + 0.995510458946228, + 0.9986202716827393, + 0.9987000226974487, + 0.9985830783843994, + 0.9987786412239075, + 0.9988272786140442, + 0.9984605312347412, + 0.9917980432510376, + 0.9940423369407654 + ], + "sentiment_counts": { + "NEGATIVE": 5, + "POSITIVE": 19 + }, + "sentiment_distribution": { + "NEGATIVE": 0.20833333333333334, + "POSITIVE": 0.7916666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7916666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9978650212287903, + 0.9885457158088684, + 0.997475802898407, + 0.9987664222717285, + 0.9989126920700073, + 0.9989368319511414, + 0.8352116942405701, + 0.9987885355949402, + 0.9988395571708679, + 0.9983261227607727, + 0.998932421207428, + 0.9986242055892944, + 0.9988976716995239, + 0.9174793362617493, + 0.9994922876358032, + 0.998195230960846, + 0.9988163709640503, + 0.9988767504692078, + 0.9988465309143066, + 0.9988749623298645, + 0.9988386034965515, + 0.998781144618988, + 0.9986384510993958, + 0.9989192485809326, + 0.9965940117835999 + ], + "sentiment_counts": { + "POSITIVE": 21, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.84, + "NEGATIVE": 0.16 + }, + "sentiment_overall": [ + "POSITIVE", + 0.84 + ] + }, + "final_label": "POSITIVE", + "final_count": 65, + "final_proportion": 0.8783783783783784, + "final_counts": { + "POSITIVE": 65, + "NEGATIVE": 9 + }, + "final_distribution": { + "POSITIVE": 0.8783783783783784, + "NEGATIVE": 0.12162162162162163 + } + } }, { "season_code": "202303", @@ -257539,7 +521755,7 @@ "16:00", "16:50", "HQ C07 - Humanities Quadrangle C07", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -257548,7 +521764,7 @@ "Hu" ], "flags": [ - "YC Phil: Intersctn PSYC\/PHIL" + "YC Phil: Intersctn PSYC/PHIL" ], "regnotes": "", "rp_attr": "", @@ -257558,7 +521774,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -257591,7 +521835,7 @@ "17:00", "17:50", "HQ C07 - Humanities Quadrangle C07", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -257600,7 +521844,7 @@ "Hu" ], "flags": [ - "YC Phil: Intersctn PSYC\/PHIL" + "YC Phil: Intersctn PSYC/PHIL" ], "regnotes": "", "rp_attr": "", @@ -257610,7 +521854,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -257643,7 +521915,7 @@ "13:30", "14:20", "HQ C07 - Humanities Quadrangle C07", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -257652,7 +521924,7 @@ "Hu" ], "flags": [ - "YC Phil: Intersctn PSYC\/PHIL" + "YC Phil: Intersctn PSYC/PHIL" ], "regnotes": "", "rp_attr": "", @@ -257662,7 +521934,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -257695,7 +521995,7 @@ "14:30", "15:20", "HQ C07 - Humanities Quadrangle C07", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -257704,7 +522004,7 @@ "Hu" ], "flags": [ - "YC Phil: Intersctn PSYC\/PHIL" + "YC Phil: Intersctn PSYC/PHIL" ], "regnotes": "", "rp_attr": "", @@ -257714,7 +522014,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -257747,7 +522075,7 @@ "9:25", "10:15", "BM 013 - Bingham Hall 013", - "https:\/\/map.yale.edu\/?id=1910#!m\/559569" + "https://map.yale.edu/?id=1910#!m/559569" ] ] }, @@ -257756,7 +522084,7 @@ "Hu" ], "flags": [ - "YC Phil: Intersctn PSYC\/PHIL" + "YC Phil: Intersctn PSYC/PHIL" ], "regnotes": "", "rp_attr": "", @@ -257766,7 +522094,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -257799,7 +522155,7 @@ "9:25", "10:15", "CO493 106 - 493 College Street 106", - "https:\/\/map.yale.edu\/?id=1910#!m\/560001" + "https://map.yale.edu/?id=1910#!m/560001" ] ] }, @@ -257808,7 +522164,7 @@ "Hu" ], "flags": [ - "YC Phil: Intersctn PSYC\/PHIL" + "YC Phil: Intersctn PSYC/PHIL" ], "regnotes": "", "rp_attr": "", @@ -257818,7 +522174,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -257851,7 +522235,7 @@ "14:30", "15:20", "WLH 211 - William L. Harkness Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -257860,7 +522244,7 @@ "Hu" ], "flags": [ - "YC Phil: Intersctn PSYC\/PHIL" + "YC Phil: Intersctn PSYC/PHIL" ], "regnotes": "", "rp_attr": "", @@ -257870,7 +522254,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -257903,7 +522315,7 @@ "15:30", "16:20", "WLH 211 - William L. Harkness Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -257912,7 +522324,7 @@ "Hu" ], "flags": [ - "YC Phil: Intersctn PSYC\/PHIL" + "YC Phil: Intersctn PSYC/PHIL" ], "regnotes": "", "rp_attr": "", @@ -257922,7 +522334,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -257960,7 +522400,7 @@ "13:30", "15:20", "WLH 007 - William L. Harkness Hall 007", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -257974,17 +522414,132 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88723\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88723/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989151954650879, + 0.9989144802093506, + 0.9984563589096069, + 0.9978001713752747, + 0.9988677501678467, + 0.9989249110221863, + 0.9988340735435486 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988834261894226, + 0.9989226460456848, + 0.9988111257553101, + 0.9934996366500854, + 0.9987779259681702, + 0.9989084005355835, + 0.9989318251609802, + 0.998921275138855, + 0.9818521738052368 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989350438117981, + 0.9989101886749268, + 0.9982553124427795, + 0.9994946718215942, + 0.9989069700241089, + 0.9988558292388916, + 0.9989054203033447, + 0.9989269375801086 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "final_label": "POSITIVE", + "final_count": 23, + "final_proportion": 0.9583333333333334, + "final_counts": { + "POSITIVE": 23, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9583333333333334, + "NEGATIVE": 0.041666666666666664 + } + } }, { "season_code": "202303", "requirements": "Prerequisite: PHIL 126 or DRST 004.", "description": "An examination of the metaphysical and epistemological doctrines of Kant's Critique of Pure Reason.", "short_title": "Kant's Critique of Pure R...", - "title": "Kant's Critique of Pure Reason<\/em>", + "title": "Kant's Critique of Pure Reason", "school": "YC", "credits": 1.0, "extra_info": "ACTIVE", @@ -258015,7 +522570,7 @@ "9:00", "10:15", "HQ 133 - Humanities Quadrangle 133", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -258023,7 +522578,7 @@ "9:00", "10:15", "HQ 133 - Humanities Quadrangle 133", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -258039,10 +522594,93 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88592\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88592/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987472295761108, + 0.9988409876823425, + 0.998274564743042 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988511800765991, + 0.9989299178123474, + 0.9988400340080261 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9973347187042236, + 0.9989336133003235, + 0.9988790154457092 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 9 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -258080,7 +522718,7 @@ "11:35", "12:50", "WLH 114 - William L. Harkness Hall 114", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -258088,7 +522726,7 @@ "11:35", "12:50", "WLH 114 - William L. Harkness Hall 114", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -258104,10 +522742,117 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88594\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88594/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9894251823425293, + 0.9936333894729614, + 0.9983068704605103, + 0.9913477301597595, + 0.9982103109359741, + 0.9978026747703552 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9946430921554565, + 0.9989118576049805, + 0.9988901019096375, + 0.9987742304801941, + 0.9989200830459595, + 0.9988454580307007, + 0.9989047050476074 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984079003334045, + 0.9989033937454224, + 0.9989386200904846, + 0.9963195323944092, + 0.9967260360717773, + 0.9989017248153687, + 0.9952787160873413, + 0.9988400340080261 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 21, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 21 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -258144,7 +522889,7 @@ "11:35", "12:50", "PH 407 - Phelps Hall 407", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ], "Thursday": [ @@ -258152,7 +522897,7 @@ "11:35", "12:50", "PH 407 - Phelps Hall 407", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -258168,10 +522913,113 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88597\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88597/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989249110221863, + 0.998898983001709, + 0.9989198446273804, + 0.9989203214645386, + 0.9989073276519775 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989270567893982, + 0.9987679123878479, + 0.9989221096038818, + 0.99891197681427, + 0.9989086389541626, + 0.9989000558853149 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981436729431152, + 0.9988906979560852, + 0.9992501139640808, + 0.9989294409751892, + 0.998928964138031, + 0.9988640546798706, + 0.998927652835846 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 0.8888888888888888, + "final_counts": { + "POSITIVE": 16, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + } + } }, { "season_code": "202303", @@ -258209,7 +523057,7 @@ "11:35", "12:50", "PH 407 - Phelps Hall 407", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ], "Wednesday": [ @@ -258217,7 +523065,7 @@ "11:35", "12:50", "PH 407 - Phelps Hall 407", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -258233,10 +523081,89 @@ "classnotes": "", "final_exam": "Sunday, December 17, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88599\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88599/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987730383872986, + 0.9989075660705566 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988922476768494, + 0.9988874793052673 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.997117280960083, + 0.9988226294517517, + 0.9984338879585266 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 7 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -258274,7 +523201,7 @@ "11:35", "12:50", "LC 317 - Linsly-Chittenden Hall 317", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -258282,7 +523209,7 @@ "11:35", "12:50", "LC 317 - Linsly-Chittenden Hall 317", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -258298,10 +523225,131 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88601\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88601/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988968372344971, + 0.9988853335380554, + 0.9988003969192505, + 0.9988263249397278, + 0.9975695013999939, + 0.9984750151634216, + 0.9983165264129639, + 0.9987867474555969, + 0.9987196922302246 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9968260526657104, + 0.9974603652954102, + 0.9974164962768555, + 0.9989306330680847, + 0.998806357383728, + 0.9988588094711304, + 0.998601496219635, + 0.9989582300186157 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.998925507068634, + 0.9989318251609802, + 0.9986709356307983, + 0.9989390969276428, + 0.9989354014396667, + 0.9989294409751892, + 0.998883068561554, + 0.9989181756973267, + 0.9943373799324036, + 0.9994702935218811 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "final_label": "POSITIVE", + "final_count": 25, + "final_proportion": 0.9259259259259259, + "final_counts": { + "POSITIVE": 25, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9259259259259259, + "NEGATIVE": 0.07407407407407407 + } + } }, { "season_code": "202303", @@ -258347,7 +523395,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -258385,7 +523461,7 @@ "13:30", "14:20", "LC 211 - Linsly-Chittenden Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -258393,7 +523469,7 @@ "13:30", "14:20", "LC 211 - Linsly-Chittenden Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -258409,10 +523485,129 @@ "classnotes": "", "final_exam": "Saturday, December 16, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88605\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88605/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9964334964752197, + 0.9985622763633728, + 0.9988908171653748, + 0.9987660646438599, + 0.9984824061393738, + 0.9988256096839905, + 0.9984500408172607, + 0.9988282322883606 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989262223243713, + 0.9970495700836182, + 0.9980781078338623, + 0.9987951517105103, + 0.9988204836845398, + 0.9980119466781616, + 0.9987198114395142, + 0.9920076131820679, + 0.9989145994186401 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.7777777777777778, + "NEGATIVE": 0.2222222222222222 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7777777777777778 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998731791973114, + 0.9975447058677673, + 0.9989074468612671, + 0.9990684390068054, + 0.9989307522773743, + 0.9987747073173523, + 0.9989283680915833, + 0.9988202452659607, + 0.9989171028137207 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "final_label": "POSITIVE", + "final_count": 23, + "final_proportion": 0.8846153846153846, + "final_counts": { + "POSITIVE": 23, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.8846153846153846, + "NEGATIVE": 0.11538461538461539 + } + } }, { "season_code": "202303", @@ -258444,7 +523639,7 @@ "10:30", "11:20", "HQ 213 - Humanities Quadrangle 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -258463,7 +523658,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -258495,7 +523718,7 @@ "11:35", "12:25", "HQ 213 - Humanities Quadrangle 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -258514,7 +523737,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -258553,7 +523804,7 @@ "11:35", "12:50", "GR109 ROSENFELD - 109 Grove Street ROSENFELD", - "https:\/\/map.yale.edu\/?id=1910#!m\/560109" + "https://map.yale.edu/?id=1910#!m/560109" ] ], "Thursday": [ @@ -258561,7 +523812,7 @@ "11:35", "12:50", "GR109 ROSENFELD - 109 Grove Street ROSENFELD", - "https:\/\/map.yale.edu\/?id=1910#!m\/560109" + "https://map.yale.edu/?id=1910#!m/560109" ] ] }, @@ -258570,17 +523821,156 @@ "So" ], "flags": [ - "YC EVST: Core Human\/Social Sci" + "YC EVST: Core Human/Social Sci" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "Friday, December 15, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88208\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88208/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998857855796814, + 0.9988988637924194, + 0.9987082481384277, + 0.9989140033721924, + 0.9988372921943665, + 0.9987964630126953, + 0.9989049434661865, + 0.9989234805107117, + 0.9987994432449341, + 0.9954805374145508, + 0.9988899827003479, + 0.9989017248153687 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989076852798462, + 0.5613076686859131, + 0.9980595707893372, + 0.9989194869995117, + 0.9989290833473206, + 0.9796344637870789, + 0.9989058971405029, + 0.998837411403656, + 0.9987998008728027, + 0.9958578944206238, + 0.9988915324211121 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9090909090909091 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988518953323364, + 0.9988981485366821, + 0.9987847208976746, + 0.9982442855834961, + 0.9989334940910339, + 0.9988521337509155, + 0.9988179802894592, + 0.9989356398582458, + 0.9988836646080017, + 0.9981389045715332, + 0.9988184571266174, + 0.9988988637924194, + 0.9987447261810303 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 35, + "final_proportion": 0.9722222222222222, + "final_counts": { + "POSITIVE": 35, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9722222222222222, + "NEGATIVE": 0.027777777777777776 + } + } }, { "season_code": "202303", @@ -258612,7 +524002,7 @@ "19:00", "19:50", "WLH 011 - William L. Harkness Hall 011", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -258621,7 +524011,7 @@ "So" ], "flags": [ - "YC EVST: Core Human\/Social Sci" + "YC EVST: Core Human/Social Sci" ], "regnotes": "", "rp_attr": "", @@ -258631,7 +524021,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -258672,7 +524090,7 @@ "So" ], "flags": [ - "YC EVST: Core Human\/Social Sci" + "YC EVST: Core Human/Social Sci" ], "regnotes": "", "rp_attr": "", @@ -258682,7 +524100,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -258714,7 +524160,7 @@ "9:25", "10:15", "LC 104 - Linsly-Chittenden Hall 104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -258723,7 +524169,7 @@ "So" ], "flags": [ - "YC EVST: Core Human\/Social Sci" + "YC EVST: Core Human/Social Sci" ], "regnotes": "", "rp_attr": "", @@ -258733,7 +524179,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -258782,7 +524256,7 @@ "So" ], "flags": [ - "YC EVST: Core Human\/Social Sci" + "YC EVST: Core Human/Social Sci" ], "regnotes": "", "rp_attr": "", @@ -258792,7 +524266,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -258841,7 +524343,7 @@ "So" ], "flags": [ - "YC EVST: Core Human\/Social Sci" + "YC EVST: Core Human/Social Sci" ], "regnotes": "", "rp_attr": "", @@ -258851,7 +524353,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -258900,7 +524430,7 @@ "So" ], "flags": [ - "YC EVST: Core Human\/Social Sci" + "YC EVST: Core Human/Social Sci" ], "regnotes": "", "rp_attr": "", @@ -258910,7 +524440,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -258948,7 +524506,7 @@ "13:30", "15:20", "LC 205 - Linsly-Chittenden Hall 205", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -258964,10 +524522,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89484\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89484/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -259005,7 +524591,7 @@ "9:25", "11:15", "LC 209 - Linsly-Chittenden Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -259019,10 +524605,111 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88608\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88608/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988616704940796, + 0.9988763928413391, + 0.9968067407608032, + 0.9985929131507874, + 0.9989209175109863 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983684420585632, + 0.9987918734550476, + 0.9943706393241882, + 0.9988314509391785, + 0.9988607168197632 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988623857498169, + 0.9988688826560974, + 0.998741090297699, + 0.9980320334434509, + 0.9927409291267395, + 0.9989051818847656, + 0.9981302618980408 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 0.8823529411764706, + "final_counts": { + "POSITIVE": 15, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8823529411764706, + "NEGATIVE": 0.11764705882352941 + } + } }, { "season_code": "202303", @@ -259061,7 +524748,7 @@ "9:00", "10:15", "HQ 132 - Humanities Quadrangle 132", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -259069,7 +524756,7 @@ "9:00", "10:15", "HQ 132 - Humanities Quadrangle 132", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -259083,10 +524770,103 @@ "classnotes": "", "final_exam": "Thursday, December 14, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89550\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89550/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987145662307739, + 0.9989019632339478, + 0.9988653659820557, + 0.9986188411712646, + 0.9988191723823547 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989017248153687, + 0.9988986253738403, + 0.9943259358406067, + 0.9985978007316589 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998857855796814, + 0.9989315867424011, + 0.9995167255401611, + 0.998768150806427 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 0.8461538461538461, + "final_counts": { + "POSITIVE": 11, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8461538461538461, + "NEGATIVE": 0.15384615384615385 + } + } }, { "season_code": "202303", @@ -259128,7 +524908,7 @@ "15:30", "17:20", "WALL81 301 - 81 Wall Street 301", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -259145,10 +524925,97 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90076\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90076/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998767614364624, + 0.9986365437507629, + 0.9987506866455078, + 0.9986162185668945 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988875985145569, + 0.9985893368721008, + 0.998904824256897 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988605976104736, + 0.997117280960083, + 0.9989264607429504, + 0.9977026581764221 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 11 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -259186,7 +525053,7 @@ "15:30", "17:20", "WLH 113 - William L. Harkness Hall 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -259200,10 +525067,85 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90436\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90436/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985596537590027, + 0.9986666440963745 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9980847835540771 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 0 + }, + "sentiment_distribution": { + "NEGATIVE": 1.0, + "POSITIVE": 0.0 + }, + "sentiment_overall": [ + "NEGATIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987994432449341 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 3, + "final_proportion": 0.75, + "final_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + } + } }, { "season_code": "202303", @@ -259251,7 +525193,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -259289,7 +525259,7 @@ "19:00", "20:50", "PH 312 - Phelps Hall 312", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -259305,10 +525275,61 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90213\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90213/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988356232643127 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989111423492432 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 2, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 2 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -259346,7 +525367,7 @@ "15:30", "17:20", "WTS A74 - Watson Center 60 Sachem Street A74", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -259358,10 +525379,151 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89101\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89101/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988307356834412, + 0.9987311959266663, + 0.9988253712654114, + 0.9986963868141174, + 0.9977922439575195, + 0.9989092350006104, + 0.9987074136734009, + 0.9989105463027954, + 0.9989005327224731, + 0.9994232654571533, + 0.998802900314331, + 0.998788058757782, + 0.9988262057304382 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9230769230769231, + "NEGATIVE": 0.07692307692307693 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9230769230769231 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988911747932434, + 0.9972776770591736, + 0.9954450130462646, + 0.9955629110336304, + 0.9982434511184692, + 0.9986133575439453, + 0.9994713664054871, + 0.9976315498352051, + 0.9988677501678467, + 0.9994813799858093, + 0.9988730549812317 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.6363636363636364, + "NEGATIVE": 0.36363636363636365 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6363636363636364 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983689188957214, + 0.994413435459137, + 0.9941366910934448, + 0.9987596273422241, + 0.9988710284233093, + 0.996894359588623, + 0.9990221261978149, + 0.9994589686393738, + 0.9985288381576538, + 0.9995112419128418, + 0.9981564879417419, + 0.9988202452659607, + 0.9988044500350952 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.6923076923076923, + "NEGATIVE": 0.3076923076923077 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6923076923076923 + ] + }, + "final_label": "POSITIVE", + "final_count": 28, + "final_proportion": 0.7567567567567568, + "final_counts": { + "POSITIVE": 28, + "NEGATIVE": 9 + }, + "final_distribution": { + "POSITIVE": 0.7567567567567568, + "NEGATIVE": 0.24324324324324326 + } + } }, { "season_code": "202303", @@ -259399,7 +525561,7 @@ "13:30", "15:20", "WTS A74 - Watson Center 60 Sachem Street A74", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -259411,10 +525573,93 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89102\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89102/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988051652908325, + 0.9989081621170044, + 0.998856782913208 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986880421638489, + 0.998891294002533, + 0.998525083065033, + 0.998711347579956 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9976698756217957, + 0.9988536834716797 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 9 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -259452,7 +525697,7 @@ "13:30", "15:20", "PH 310 - Phelps Hall 310", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -259468,10 +525713,115 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88610\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88610/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987220168113708, + 0.9987881779670715, + 0.997665524482727, + 0.9988505840301514, + 0.9989098310470581, + 0.9977996945381165, + 0.9988725781440735 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985440969467163, + 0.9986535310745239, + 0.9954490065574646, + 0.9988540410995483, + 0.9891635179519653, + 0.9987713694572449 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987780451774597, + 0.9987121820449829, + 0.9980430603027344, + 0.998719334602356, + 0.9988454580307007, + 0.9989032745361328 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 0.9473684210526315, + "final_counts": { + "POSITIVE": 18, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9473684210526315, + "NEGATIVE": 0.05263157894736842 + } + } }, { "season_code": "202303", @@ -259509,7 +525859,7 @@ "15:30", "17:20", "LC 103 - Linsly-Chittenden Hall 103", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -259525,10 +525875,123 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88612\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88612/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987490177154541, + 0.9982795715332031, + 0.9988320469856262, + 0.9987342953681946, + 0.9973968267440796, + 0.9989051818847656, + 0.9989345669746399 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989247918128967, + 0.9979519248008728, + 0.9988192915916443, + 0.9988968372344971, + 0.9947630763053894, + 0.9989155530929565 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989117383956909, + 0.9989116191864014, + 0.9988503456115723, + 0.998497724533081, + 0.998902440071106, + 0.9988755583763123, + 0.9982553124427795, + 0.9987888932228088, + 0.9989331364631653, + 0.9982383251190186, + 0.9988998174667358 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 24, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 24 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -259567,7 +526030,7 @@ "13:30", "15:20", "HQ C03 - Humanities Quadrangle C03", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -259584,10 +526047,99 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88148\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88148/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998923122882843, + 0.9987227320671082, + 0.9988490343093872, + 0.9983882904052734 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987255930900574, + 0.9989225268363953 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9851517081260681, + 0.9988889098167419, + 0.9989320635795593, + 0.9989294409751892, + 0.9973165392875671 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.4, + "POSITIVE": 0.6 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 0.8181818181818182, + "final_counts": { + "POSITIVE": 9, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8181818181818182, + "NEGATIVE": 0.18181818181818182 + } + } }, { "season_code": "202303", @@ -259629,7 +526181,7 @@ "15:30", "17:20", "WLH 112 - William L. Harkness Hall 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -259645,10 +526197,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88614\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88614/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -259690,7 +526270,7 @@ "13:30", "15:20", "LC 319 - Linsly-Chittenden Hall 319", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -259704,10 +526284,91 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88465\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88465/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986985921859741, + 0.9985851049423218, + 0.9989144802093506 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989105463027954, + 0.9987713694572449, + 0.998869001865387 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989247918128967, + 0.9989323019981384 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 8, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 8 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -259763,10 +526424,145 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88616\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88616/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989205598831177, + 0.9987492561340332, + 0.9987543821334839, + 0.9988629817962646, + 0.9989342093467712, + 0.9989203214645386, + 0.9988282322883606, + 0.9989063739776611 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989332556724548, + 0.9989301562309265, + 0.998849630355835, + 0.9989243149757385, + 0.9985931515693665, + 0.9989303946495056, + 0.9981458187103271, + 0.9989251494407654, + 0.9988266825675964, + 0.9988909363746643, + 0.9989258646965027, + 0.9989383816719055, + 0.9984995126724243 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9230769230769231, + "NEGATIVE": 0.07692307692307693 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9230769230769231 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989124536514282, + 0.9989272952079773, + 0.9964099526405334, + 0.9988825917243958, + 0.9988831877708435, + 0.9989252686500549, + 0.9783626794815063, + 0.9988290667533875, + 0.9989207983016968, + 0.9989099502563477, + 0.997117280960083, + 0.9988574981689453, + 0.997117280960083 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 33, + "final_proportion": 0.9705882352941176, + "final_counts": { + "POSITIVE": 33, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9705882352941176, + "NEGATIVE": 0.029411764705882353 + } + } }, { "season_code": "202303", @@ -259809,7 +526605,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -259847,7 +526671,7 @@ "13:30", "15:20", "WTS B51 - Watson Center 60 Sachem Street B51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -259863,10 +526687,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88619\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88619/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -259909,7 +526761,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -259948,7 +526828,7 @@ "13:30", "15:20", "BASSLB L73 - Bass Library L73", - "https:\/\/map.yale.edu\/?id=1910#!m\/564574" + "https://map.yale.edu/?id=1910#!m/564574" ] ] }, @@ -259964,10 +526844,105 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88731\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88731/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9979153275489807, + 0.9910615086555481, + 0.9988904595375061, + 0.9984556436538696, + 0.998033344745636 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9975212216377258, + 0.9995012283325195, + 0.9995098114013672, + 0.8628511428833008 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9849085807800293, + 0.9988566637039185, + 0.9988561868667603, + 0.9938501119613647, + 0.9988143444061279 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.4, + "POSITIVE": 0.6 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 0.7142857142857143, + "final_counts": { + "POSITIVE": 10, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.7142857142857143, + "NEGATIVE": 0.2857142857142857 + } + } }, { "season_code": "202303", @@ -260005,7 +526980,7 @@ "13:30", "15:20", "LC 205 - Linsly-Chittenden Hall 205", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -260017,10 +526992,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89484\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89484/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -260058,7 +527061,7 @@ "9:25", "11:15", "LC 209 - Linsly-Chittenden Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -260070,10 +527073,111 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88608\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88608/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988616704940796, + 0.9988763928413391, + 0.9968067407608032, + 0.9985929131507874, + 0.9989209175109863 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983684420585632, + 0.9987918734550476, + 0.9943706393241882, + 0.9988314509391785, + 0.9988607168197632 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988623857498169, + 0.9988688826560974, + 0.998741090297699, + 0.9980320334434509, + 0.9927409291267395, + 0.9989051818847656, + 0.9981302618980408 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 0.8823529411764706, + "final_counts": { + "POSITIVE": 15, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8823529411764706, + "NEGATIVE": 0.11764705882352941 + } + } }, { "season_code": "202303", @@ -260111,7 +527215,7 @@ "15:30", "17:20", "WLH 113 - William L. Harkness Hall 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -260123,10 +527227,85 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90436\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90436/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985596537590027, + 0.9986666440963745 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9980847835540771 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 0 + }, + "sentiment_distribution": { + "NEGATIVE": 1.0, + "POSITIVE": 0.0 + }, + "sentiment_overall": [ + "NEGATIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987994432449341 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 3, + "final_proportion": 0.75, + "final_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + } + } }, { "season_code": "202303", @@ -260164,7 +527343,7 @@ "11:35", "12:50", "WLH 114 - William L. Harkness Hall 114", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -260172,7 +527351,7 @@ "11:35", "12:50", "WLH 114 - William L. Harkness Hall 114", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -260184,10 +527363,117 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88594\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88594/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9894251823425293, + 0.9936333894729614, + 0.9983068704605103, + 0.9913477301597595, + 0.9982103109359741, + 0.9978026747703552 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9946430921554565, + 0.9989118576049805, + 0.9988901019096375, + 0.9987742304801941, + 0.9989200830459595, + 0.9988454580307007, + 0.9989047050476074 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984079003334045, + 0.9989033937454224, + 0.9989386200904846, + 0.9963195323944092, + 0.9967260360717773, + 0.9989017248153687, + 0.9952787160873413, + 0.9988400340080261 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 21, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 21 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -260225,7 +527511,7 @@ "11:35", "12:50", "PH 407 - Phelps Hall 407", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ], "Wednesday": [ @@ -260233,7 +527519,7 @@ "11:35", "12:50", "PH 407 - Phelps Hall 407", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -260245,10 +527531,89 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88599\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88599/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987730383872986, + 0.9989075660705566 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988922476768494, + 0.9988874793052673 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.997117280960083, + 0.9988226294517517, + 0.9984338879585266 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 7 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -260286,7 +527651,7 @@ "19:00", "20:50", "PH 312 - Phelps Hall 312", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -260298,10 +527663,61 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90213\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90213/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988356232643127 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989111423492432 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 2, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 2 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -260339,7 +527755,7 @@ "13:30", "15:20", "PH 310 - Phelps Hall 310", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -260351,10 +527767,115 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88610\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88610/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987220168113708, + 0.9987881779670715, + 0.997665524482727, + 0.9988505840301514, + 0.9989098310470581, + 0.9977996945381165, + 0.9988725781440735 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985440969467163, + 0.9986535310745239, + 0.9954490065574646, + 0.9988540410995483, + 0.9891635179519653, + 0.9987713694572449 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987780451774597, + 0.9987121820449829, + 0.9980430603027344, + 0.998719334602356, + 0.9988454580307007, + 0.9989032745361328 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 0.9473684210526315, + "final_counts": { + "POSITIVE": 18, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9473684210526315, + "NEGATIVE": 0.05263157894736842 + } + } }, { "season_code": "202303", @@ -260392,7 +527913,7 @@ "15:30", "17:20", "LC 103 - Linsly-Chittenden Hall 103", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -260404,10 +527925,123 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88612\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88612/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987490177154541, + 0.9982795715332031, + 0.9988320469856262, + 0.9987342953681946, + 0.9973968267440796, + 0.9989051818847656, + 0.9989345669746399 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989247918128967, + 0.9979519248008728, + 0.9988192915916443, + 0.9988968372344971, + 0.9947630763053894, + 0.9989155530929565 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989117383956909, + 0.9989116191864014, + 0.9988503456115723, + 0.998497724533081, + 0.998902440071106, + 0.9988755583763123, + 0.9982553124427795, + 0.9987888932228088, + 0.9989331364631653, + 0.9982383251190186, + 0.9988998174667358 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 24, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 24 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -260446,7 +528080,7 @@ "13:30", "15:20", "HQ C03 - Humanities Quadrangle C03", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -260460,10 +528094,99 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88148\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88148/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998923122882843, + 0.9987227320671082, + 0.9988490343093872, + 0.9983882904052734 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987255930900574, + 0.9989225268363953 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9851517081260681, + 0.9988889098167419, + 0.9989320635795593, + 0.9989294409751892, + 0.9973165392875671 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.4, + "POSITIVE": 0.6 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 0.8181818181818182, + "final_counts": { + "POSITIVE": 9, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8181818181818182, + "NEGATIVE": 0.18181818181818182 + } + } }, { "season_code": "202303", @@ -260505,7 +528228,7 @@ "15:30", "17:20", "WLH 112 - William L. Harkness Hall 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -260517,10 +528240,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88614\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88614/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -260571,10 +528322,145 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88616\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88616/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989205598831177, + 0.9987492561340332, + 0.9987543821334839, + 0.9988629817962646, + 0.9989342093467712, + 0.9989203214645386, + 0.9988282322883606, + 0.9989063739776611 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989332556724548, + 0.9989301562309265, + 0.998849630355835, + 0.9989243149757385, + 0.9985931515693665, + 0.9989303946495056, + 0.9981458187103271, + 0.9989251494407654, + 0.9988266825675964, + 0.9988909363746643, + 0.9989258646965027, + 0.9989383816719055, + 0.9984995126724243 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9230769230769231, + "NEGATIVE": 0.07692307692307693 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9230769230769231 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989124536514282, + 0.9989272952079773, + 0.9964099526405334, + 0.9988825917243958, + 0.9988831877708435, + 0.9989252686500549, + 0.9783626794815063, + 0.9988290667533875, + 0.9989207983016968, + 0.9989099502563477, + 0.997117280960083, + 0.9988574981689453, + 0.997117280960083 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 33, + "final_proportion": 0.9705882352941176, + "final_counts": { + "POSITIVE": 33, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9705882352941176, + "NEGATIVE": 0.029411764705882353 + } + } }, { "season_code": "202303", @@ -260612,7 +528498,7 @@ "13:30", "15:20", "WTS B51 - Watson Center 60 Sachem Street B51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -260624,10 +528510,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88619\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88619/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -260667,7 +528581,7 @@ "13:30", "15:20", "CO493 102 - 493 College Street 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/560001" + "https://map.yale.edu/?id=1910#!m/560001" ] ] }, @@ -260679,10 +528593,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88625\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88625/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -260719,7 +528661,7 @@ "13:30", "15:20", "PH 312 - Phelps Hall 312", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -260734,7 +528676,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -260772,7 +528742,7 @@ "13:30", "15:20", "SDQ BROHOLM - Sterling Divinity Quadrangle BROHOLM", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -260784,10 +528754,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91025\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91025/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -260828,7 +528826,7 @@ "15:30", "17:20", "PH 312 - Phelps Hall 312", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -260840,10 +528838,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88629\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88629/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -260883,10 +528909,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88632\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88632/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -260929,7 +528983,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -260970,7 +529052,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -261014,12 +529124,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "The course work and practicum\/micro-credential lead to a significant project to be approved by the DGS or assistant DGS (an exhibition, documentary, research paper, etc.) and to be presented in a public forum on its completion.", + "description": "The course work and practicum/micro-credential lead to a significant project to be approved by the DGS or assistant DGS (an exhibition, documentary, research paper, etc.) and to be presented in a public forum on its completion.", "short_title": "Public Humanities Capstone Pr...", "title": "Public Humanities Capstone Project", "school": "GS", @@ -261058,7 +529196,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -261118,10 +529284,137 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89116\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89116/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9965783953666687, + 0.9988669157028198, + 0.9983030557632446, + 0.9987585544586182, + 0.9988804459571838, + 0.9988947510719299, + 0.9987342953681946, + 0.9988741278648376, + 0.9988868832588196, + 0.9988214373588562 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9898495674133301, + 0.9958102703094482, + 0.9989261031150818, + 0.9989343285560608, + 0.9988701939582825, + 0.998938262462616, + 0.9988775849342346, + 0.9899528622627258, + 0.9989284873008728, + 0.9988859295845032 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 9 + }, + "sentiment_distribution": { + "NEGATIVE": 0.1, + "POSITIVE": 0.9 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.5608998537063599, + 0.9925975799560547, + 0.9987882971763611, + 0.9988866448402405, + 0.9989129304885864, + 0.9989145994186401, + 0.9988239407539368, + 0.9988939166069031, + 0.9989107847213745, + 0.9988740086555481 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "final_label": "POSITIVE", + "final_count": 28, + "final_proportion": 0.9333333333333333, + "final_counts": { + "POSITIVE": 28, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9333333333333333, + "NEGATIVE": 0.06666666666666667 + } + } }, { "season_code": "202303", @@ -261161,7 +529454,7 @@ "9:00", "10:15", "HQ C15 - Humanities Quadrangle C15", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -261169,7 +529462,7 @@ "9:00", "10:15", "HQ C15 - Humanities Quadrangle C15", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -261186,10 +529479,121 @@ "classnotes": "Please email eun-joo.ahn@yale.edu a brief message indicating your background and interest in this course. Preference may be given to those students interested in majoring in AMST, ER&M, CS, or PHYS. ", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92204\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92204/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.990673840045929, + 0.9987888932228088, + 0.9986708164215088, + 0.9989140033721924, + 0.9987428784370422, + 0.9988447427749634, + 0.9985144734382629 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988699555397034, + 0.9988747239112854, + 0.9987194538116455, + 0.9983106851577759, + 0.998822033405304, + 0.9945153594017029, + 0.9989140033721924, + 0.9986201524734497 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986554384231567, + 0.998920202255249, + 0.998874843120575, + 0.997432291507721, + 0.996787428855896, + 0.9988641738891602, + 0.9949188828468323 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 21, + "final_proportion": 0.9545454545454546, + "final_counts": { + "POSITIVE": 21, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9545454545454546, + "NEGATIVE": 0.045454545454545456 + } + } }, { "season_code": "202303", @@ -261228,7 +529632,7 @@ "14:30", "15:45", "AKW 100 - Arthur K. Watson Hall 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560119" + "https://map.yale.edu/?id=1910#!m/560119" ] ], "Wednesday": [ @@ -261236,7 +529640,7 @@ "14:30", "15:45", "AKW 100 - Arthur K. Watson Hall 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560119" + "https://map.yale.edu/?id=1910#!m/560119" ] ] }, @@ -261253,10 +529657,97 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89886\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89886/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986398816108704, + 0.9933298230171204, + 0.9988352656364441 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9980518817901611, + 0.9994916915893555, + 0.9989367127418518 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 1 + }, + "sentiment_distribution": { + "NEGATIVE": 0.6666666666666666, + "POSITIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987200498580933, + 0.9951274394989014, + 0.9995146989822388, + 0.9989118576049805 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 0.7, + "final_counts": { + "POSITIVE": 7, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.7, + "NEGATIVE": 0.3 + } + } }, { "season_code": "202303", @@ -261295,7 +529786,7 @@ "11:35", "12:50", "AKW 100 - Arthur K. Watson Hall 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560119" + "https://map.yale.edu/?id=1910#!m/560119" ] ], "Thursday": [ @@ -261303,7 +529794,7 @@ "11:35", "12:50", "AKW 100 - Arthur K. Watson Hall 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560119" + "https://map.yale.edu/?id=1910#!m/560119" ] ] }, @@ -261320,10 +529811,113 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89887\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89887/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987208247184753, + 0.9986454844474792, + 0.9988088607788086, + 0.9988095760345459, + 0.9982357025146484, + 0.9987908005714417 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987173080444336, + 0.9984772801399231, + 0.9923027753829956, + 0.9988440275192261, + 0.9967209696769714, + 0.9891902208328247 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985961318016052, + 0.9976112842559814, + 0.99883633852005, + 0.997117280960083, + 0.9987201690673828, + 0.9985390901565552 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 0.9444444444444444, + "final_counts": { + "POSITIVE": 17, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9444444444444444, + "NEGATIVE": 0.05555555555555555 + } + } }, { "season_code": "202303", @@ -261386,10 +529980,133 @@ "classnotes": "Meets the first half of the semester.", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90064\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/90064/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988477230072021, + 0.9988722205162048, + 0.9987996816635132, + 0.9983581900596619, + 0.9989103078842163, + 0.9982422590255737, + 0.9962298274040222, + 0.9893654584884644, + 0.9985705614089966 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989131689071655, + 0.9968743324279785, + 0.9989282488822937, + 0.9989216327667236, + 0.998839795589447, + 0.9989263415336609, + 0.9988406300544739, + 0.9988790154457092, + 0.9989156723022461 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989022016525269, + 0.9988371729850769, + 0.9958525896072388, + 0.9988958835601807, + 0.9989234805107117, + 0.9988799691200256, + 0.999194324016571, + 0.997117280960083, + 0.9989032745361328, + 0.9986969828605652 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "final_label": "POSITIVE", + "final_count": 26, + "final_proportion": 0.9285714285714286, + "final_counts": { + "POSITIVE": 26, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9285714285714286, + "NEGATIVE": 0.07142857142857142 + } + } }, { "season_code": "202303", @@ -261452,10 +530169,117 @@ "classnotes": "Meets second half of the semester", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90065\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90065/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9972466230392456, + 0.9949384927749634, + 0.9830280542373657, + 0.9982722997665405, + 0.9989120960235596, + 0.9987200498580933 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988265633583069, + 0.9987083673477173, + 0.9984380602836609, + 0.9989286065101624, + 0.9989261031150818, + 0.9989287257194519, + 0.9989250302314758 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989369511604309, + 0.9942492246627808, + 0.9974592328071594, + 0.9983680844306946, + 0.9989282488822937, + 0.9989184141159058, + 0.997117280960083, + 0.9988899827003479 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 21, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 21 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -261494,7 +530318,7 @@ "11:35", "12:50", "BASS 305 - Bass Center 305", - "https:\/\/map.yale.edu\/?id=1910#!m\/560102" + "https://map.yale.edu/?id=1910#!m/560102" ] ], "Wednesday": [ @@ -261502,7 +530326,7 @@ "11:35", "12:50", "BASS 305 - Bass Center 305", - "https:\/\/map.yale.edu\/?id=1910#!m\/560102" + "https://map.yale.edu/?id=1910#!m/560102" ] ] }, @@ -261518,10 +530342,171 @@ "classnotes": "", "final_exam": "Sunday, December 17, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88771\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88771/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998803973197937, + 0.9987347722053528, + 0.9963492155075073, + 0.9985039234161377, + 0.9985628724098206, + 0.998569130897522, + 0.9986530542373657, + 0.9987058639526367, + 0.9987446069717407, + 0.9935930371284485, + 0.9986722469329834, + 0.9987887740135193, + 0.998757004737854, + 0.9988603591918945 + ], + "sentiment_counts": { + "POSITIVE": 14, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9980083107948303, + 0.9986263513565063, + 0.999474823474884, + 0.9987298846244812, + 0.9967061877250671, + 0.9987862706184387, + 0.998763918876648, + 0.9989194869995117, + 0.9981575608253479, + 0.9980962872505188, + 0.9981945157051086, + 0.9989274144172668, + 0.9962016940116882, + 0.9984846711158752, + 0.9991961121559143, + 0.9988729357719421 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.8125, + "NEGATIVE": 0.1875 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8125 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985347986221313, + 0.9985034465789795, + 0.9986324906349182, + 0.9974417686462402, + 0.9989259839057922, + 0.9982158541679382, + 0.9954541921615601, + 0.9988993406295776, + 0.9965245127677917, + 0.9989294409751892, + 0.9988246560096741, + 0.9988030195236206, + 0.9988880753517151, + 0.9947750568389893, + 0.9976739287376404, + 0.9994606375694275, + 0.9984204769134521 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 14 + }, + "sentiment_distribution": { + "NEGATIVE": 0.17647058823529413, + "POSITIVE": 0.8235294117647058 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8235294117647058 + ] + }, + "final_label": "POSITIVE", + "final_count": 41, + "final_proportion": 0.8723404255319149, + "final_counts": { + "POSITIVE": 41, + "NEGATIVE": 6 + }, + "final_distribution": { + "POSITIVE": 0.8723404255319149, + "NEGATIVE": 0.1276595744680851 + } + } }, { "season_code": "202303", @@ -261580,10 +530565,479 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89117\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89117/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987383484840393, + 0.9911942481994629, + 0.9987799525260925, + 0.9924755692481995, + 0.9994980096817017, + 0.9982483386993408, + 0.9987725615501404, + 0.998444139957428, + 0.9984862804412842, + 0.9987016916275024, + 0.9982333183288574, + 0.9985541701316833, + 0.9852243661880493, + 0.9988415837287903, + 0.9988645315170288, + 0.9987803101539612, + 0.9986782670021057, + 0.9975737929344177, + 0.9976207613945007, + 0.9987834095954895, + 0.9986503720283508, + 0.9986795783042908, + 0.9988191723823547, + 0.9988407492637634, + 0.9975737929344177, + 0.9986571073532104, + 0.9989018440246582, + 0.9988189339637756, + 0.9950613379478455, + 0.9915286302566528, + 0.9965580105781555, + 0.9989043474197388, + 0.9995037317276001, + 0.9988460540771484, + 0.9994408488273621, + 0.9919188618659973, + 0.9983242154121399, + 0.9988507032394409, + 0.998762845993042, + 0.9988723397254944, + 0.9994783997535706, + 0.9934913516044617, + 0.9987731575965881, + 0.9986697435379028, + 0.9979376792907715, + 0.9982576966285706, + 0.9990737438201904, + 0.9979973435401917, + 0.9994975328445435, + 0.9987781643867493, + 0.99873286485672, + 0.998838484287262, + 0.9985515475273132, + 0.9988793730735779, + 0.9985962510108948, + 0.9995056390762329, + 0.9988141059875488, + 0.9994953870773315, + 0.9984788298606873, + 0.9978442192077637 + ], + "sentiment_counts": { + "POSITIVE": 46, + "NEGATIVE": 14 + }, + "sentiment_distribution": { + "POSITIVE": 0.7666666666666667, + "NEGATIVE": 0.23333333333333334 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7666666666666667 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9979801774024963, + 0.9994425177574158, + 0.9995031356811523, + 0.9980863332748413, + 0.9939925074577332, + 0.9989186525344849, + 0.9987420439720154, + 0.9987289309501648, + 0.9988961219787598, + 0.9992722868919373, + 0.9902347326278687, + 0.9983312487602234, + 0.9994930028915405, + 0.9988976716995239, + 0.9985754489898682, + 0.9988905787467957, + 0.9995062351226807, + 0.9988067150115967, + 0.9983528852462769, + 0.9987383484840393, + 0.9975273013114929, + 0.9986966252326965, + 0.9987571239471436, + 0.9986673593521118, + 0.9986644983291626, + 0.9836978316307068, + 0.9981675148010254, + 0.997765064239502, + 0.9906557202339172, + 0.998795747756958, + 0.9989051818847656, + 0.9991901516914368, + 0.998735249042511, + 0.9992578625679016, + 0.9987140893936157, + 0.9983534812927246, + 0.9983628392219543, + 0.9987426400184631, + 0.9988802075386047, + 0.9994823932647705, + 0.9988633394241333, + 0.9991967082023621, + 0.999494194984436, + 0.9994994401931763, + 0.9988372921943665, + 0.9909524917602539, + 0.9275538921356201, + 0.9995080232620239, + 0.9990693926811218, + 0.9987799525260925, + 0.9988055229187012, + 0.9972701668739319, + 0.9985300302505493, + 0.9974327683448792, + 0.9980584979057312, + 0.9975679516792297, + 0.9987550973892212, + 0.9995005130767822, + 0.998439371585846, + 0.8412938117980957, + 0.9980717897415161, + 0.9989326596260071, + 0.9995081424713135, + 0.9988585710525513, + 0.9991727471351624, + 0.9988887906074524, + 0.9982049465179443, + 0.9979537725448608, + 0.9988210797309875, + 0.9994956254959106, + 0.9911996722221375, + 0.9983747005462646, + 0.991982638835907, + 0.9994258880615234 + ], + "sentiment_counts": { + "POSITIVE": 44, + "NEGATIVE": 30 + }, + "sentiment_distribution": { + "POSITIVE": 0.5945945945945946, + "NEGATIVE": 0.40540540540540543 + }, + "sentiment_overall": [ + "POSITIVE", + 0.5945945945945946 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994623064994812, + 0.9978772401809692, + 0.9838798642158508, + 0.9995001554489136, + 0.9988929629325867, + 0.9987718462944031, + 0.9987980127334595, + 0.9975093603134155, + 0.9986134767532349, + 0.9983875751495361, + 0.9994943141937256, + 0.9982561469078064, + 0.9985678195953369, + 0.9986879229545593, + 0.9985882639884949, + 0.9988418221473694, + 0.9980652928352356, + 0.9984033703804016, + 0.9982553124427795, + 0.982056736946106, + 0.9781397581100464, + 0.9986131191253662, + 0.9986762404441833, + 0.9916192293167114, + 0.98663330078125, + 0.9988889098167419, + 0.9558571577072144, + 0.9986497759819031, + 0.9987688660621643, + 0.998683512210846, + 0.9985488057136536, + 0.9840086698532104, + 0.9961510896682739, + 0.9994953870773315, + 0.9995013475418091, + 0.9945995807647705, + 0.9988310933113098, + 0.9995038509368896, + 0.9981972575187683, + 0.9994863271713257, + 0.9987229704856873, + 0.9956157207489014, + 0.9925745725631714, + 0.9950361847877502, + 0.9994151592254639, + 0.9988196492195129, + 0.9940324425697327, + 0.9980016350746155, + 0.9987589120864868, + 0.9995081424713135, + 0.9988665580749512, + 0.9988628625869751, + 0.9979107975959778, + 0.9949660897254944, + 0.9993209838867188, + 0.997117280960083, + 0.998891294002533, + 0.9987664222717285, + 0.9980260133743286, + 0.9921711683273315, + 0.9935075044631958, + 0.9995003938674927, + 0.9964522123336792, + 0.9987768530845642, + 0.997161865234375, + 0.9994949102401733, + 0.9933062195777893 + ], + "sentiment_counts": { + "NEGATIVE": 31, + "POSITIVE": 36 + }, + "sentiment_distribution": { + "NEGATIVE": 0.4626865671641791, + "POSITIVE": 0.5373134328358209 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "final_label": "POSITIVE", + "final_count": 126, + "final_proportion": 0.6268656716417911, + "final_counts": { + "POSITIVE": 126, + "NEGATIVE": 75 + }, + "final_distribution": { + "POSITIVE": 0.6268656716417911, + "NEGATIVE": 0.373134328358209 + } + } }, { "season_code": "202303", @@ -261614,7 +531068,7 @@ "13:30", "16:30", "SPL 39 - Sloane Physics Laboratory 39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ] }, @@ -261633,7 +531087,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -261664,7 +531146,7 @@ "13:30", "16:30", "SPL 42 - Sloane Physics Laboratory 42", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ] }, @@ -261683,7 +531165,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -261714,7 +531224,7 @@ "13:30", "16:30", "SPL 43 - Sloane Physics Laboratory 43", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ] }, @@ -261733,7 +531243,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -261764,7 +531302,7 @@ "13:30", "16:30", "SPL 39 - Sloane Physics Laboratory 39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ] }, @@ -261783,7 +531321,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -261814,7 +531380,7 @@ "13:30", "16:30", "SPL 42 - Sloane Physics Laboratory 42", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ] }, @@ -261833,7 +531399,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -261864,7 +531458,7 @@ "13:30", "16:30", "SPL 39 - Sloane Physics Laboratory 39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ] }, @@ -261883,7 +531477,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -261914,7 +531536,7 @@ "13:30", "16:30", "SPL 42 - Sloane Physics Laboratory 42", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ] }, @@ -261933,7 +531555,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -261964,7 +531614,7 @@ "13:30", "16:30", "SPL 43 - Sloane Physics Laboratory 43", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ] }, @@ -261983,7 +531633,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -262014,7 +531692,7 @@ "11:35", "14:35", "SPL 39 - Sloane Physics Laboratory 39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ] }, @@ -262033,7 +531711,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -262064,7 +531770,7 @@ "11:35", "14:35", "SPL 42 - Sloane Physics Laboratory 42", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ] }, @@ -262083,7 +531789,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -262124,7 +531858,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -262155,7 +531917,7 @@ "15:30", "18:30", "SPL 39 - Sloane Physics Laboratory 39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ] }, @@ -262174,7 +531936,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -262205,7 +531995,7 @@ "15:30", "18:30", "SPL 42 - Sloane Physics Laboratory 42", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ] }, @@ -262224,7 +532014,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -262255,7 +532073,7 @@ "15:30", "18:30", "SPL 43 - Sloane Physics Laboratory 43", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ] }, @@ -262274,7 +532092,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -262305,7 +532151,7 @@ "8:20", "11:20", "SPL 39 - Sloane Physics Laboratory 39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ] }, @@ -262324,7 +532170,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -262355,7 +532229,7 @@ "8:20", "11:20", "SPL 42 - Sloane Physics Laboratory 42", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ] }, @@ -262374,7 +532248,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -262405,7 +532307,7 @@ "8:20", "11:20", "SPL 43 - Sloane Physics Laboratory 43", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ] }, @@ -262424,7 +532326,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -262455,7 +532385,7 @@ "11:35", "14:35", "SPL 39 - Sloane Physics Laboratory 39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ] }, @@ -262474,7 +532404,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -262505,7 +532463,7 @@ "11:35", "14:35", "SPL 42 - Sloane Physics Laboratory 42", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ] }, @@ -262524,7 +532482,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -262555,7 +532541,7 @@ "11:35", "14:35", "SPL 43 - Sloane Physics Laboratory 43", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ] }, @@ -262574,7 +532560,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -262605,7 +532619,7 @@ "13:30", "16:30", "SPL 43 - Sloane Physics Laboratory 43", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ] }, @@ -262624,7 +532638,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -262661,7 +532703,7 @@ "11:35", "12:50", "SCL 110 - Sterling Chemistry Laboratory 110", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ], "Wednesday": [ @@ -262669,7 +532711,7 @@ "11:35", "12:50", "SCL 110 - Sterling Chemistry Laboratory 110", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -262688,10 +532730,471 @@ "classnotes": "", "final_exam": "Monday, December 18, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89118\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89118/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9865200519561768, + 0.9978846907615662, + 0.995781421661377, + 0.9988467693328857, + 0.9969674944877625, + 0.9798683524131775, + 0.9986557960510254, + 0.9985668063163757, + 0.9970932006835938, + 0.9987629652023315, + 0.9988065958023071, + 0.9988561868667603, + 0.9987466335296631, + 0.9988546371459961, + 0.9986395239830017, + 0.9934344291687012, + 0.9986257553100586, + 0.9983460903167725, + 0.9966503977775574, + 0.858258843421936, + 0.9984739422798157, + 0.9986371397972107, + 0.9985917210578918, + 0.9936342239379883, + 0.9989204406738281, + 0.9988189339637756, + 0.9958744645118713, + 0.9987188577651978, + 0.9989124536514282, + 0.9945565462112427, + 0.9914901852607727, + 0.9914997220039368, + 0.9994250535964966, + 0.9986500144004822, + 0.9988310933113098, + 0.9991306662559509, + 0.9985045194625854, + 0.9989277720451355, + 0.9976322650909424, + 0.9914796352386475, + 0.9989084005355835, + 0.997617781162262, + 0.9927809834480286, + 0.9983822107315063, + 0.998723566532135, + 0.998543381690979, + 0.9988377690315247, + 0.9987786412239075, + 0.9988189339637756, + 0.9982845187187195, + 0.9989210367202759, + 0.998636782169342, + 0.9983463287353516, + 0.9988771080970764, + 0.998267412185669, + 0.9987382292747498, + 0.9986677169799805, + 0.998736560344696, + 0.9987685084342957 + ], + "sentiment_counts": { + "POSITIVE": 54, + "NEGATIVE": 5 + }, + "sentiment_distribution": { + "POSITIVE": 0.9152542372881356, + "NEGATIVE": 0.0847457627118644 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9152542372881356 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986109733581543, + 0.9990234375, + 0.9989080429077148, + 0.9940297603607178, + 0.9822454452514648, + 0.9952918291091919, + 0.9988790154457092, + 0.9988052845001221, + 0.9976410865783691, + 0.9988855719566345, + 0.9989155530929565, + 0.9960190653800964, + 0.9986246824264526, + 0.9987874627113342, + 0.9988188147544861, + 0.9986059069633484, + 0.9987101554870605, + 0.9982709884643555, + 0.9988486766815186, + 0.9994745850563049, + 0.9989054203033447, + 0.9919468760490417, + 0.9988540410995483, + 0.9994781613349915, + 0.99891197681427, + 0.9989284873008728, + 0.9984874725341797, + 0.9986252784729004, + 0.9989283680915833, + 0.9988929629325867, + 0.9989253878593445, + 0.9988158941268921, + 0.998594343662262, + 0.9988107681274414, + 0.9988922476768494, + 0.9989301562309265, + 0.9992395639419556, + 0.9986944794654846, + 0.9987138509750366, + 0.9987881779670715, + 0.9988970756530762, + 0.9989087581634521, + 0.9953645467758179, + 0.9935842156410217, + 0.9989249110221863, + 0.998836100101471, + 0.998819887638092, + 0.9986292123794556, + 0.9988982677459717, + 0.9989225268363953, + 0.9989016056060791, + 0.9988425970077515, + 0.9971375465393066, + 0.9988766312599182, + 0.9988621473312378, + 0.9989272952079773, + 0.9974063038825989, + 0.9988420605659485, + 0.9989092350006104, + 0.9987524747848511, + 0.9988765120506287, + 0.9988917708396912, + 0.9970139265060425, + 0.9989308714866638, + 0.9989144802093506, + 0.9989070892333984, + 0.9989104270935059, + 0.9986938834190369, + 0.9988023042678833, + 0.9988460540771484 + ], + "sentiment_counts": { + "POSITIVE": 62, + "NEGATIVE": 8 + }, + "sentiment_distribution": { + "POSITIVE": 0.8857142857142857, + "NEGATIVE": 0.11428571428571428 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8857142857142857 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9957120418548584, + 0.9838798642158508, + 0.9980326294898987, + 0.9954498410224915, + 0.9988284707069397, + 0.9903057813644409, + 0.9989122152328491, + 0.9984776377677917, + 0.998830258846283, + 0.9987096786499023, + 0.9987994432449341, + 0.9989043474197388, + 0.9988476037979126, + 0.997117280960083, + 0.9987039566040039, + 0.9928921461105347, + 0.9988883137702942, + 0.9974404573440552, + 0.9987428784370422, + 0.9950599074363708, + 0.9823889136314392, + 0.9994451403617859, + 0.9985367059707642, + 0.9989105463027954, + 0.998766303062439, + 0.9988000392913818, + 0.9989036321640015, + 0.9987199306488037, + 0.9989004135131836, + 0.9981874823570251, + 0.9989050626754761, + 0.9987014532089233, + 0.9982553124427795, + 0.998935878276825, + 0.9988012313842773, + 0.9994723200798035, + 0.9988977909088135, + 0.9988600015640259, + 0.9989141225814819, + 0.9879436492919922, + 0.9992184638977051, + 0.9987940788269043, + 0.9959853291511536, + 0.9988405108451843, + 0.9978423118591309, + 0.9988219141960144, + 0.9988898634910583, + 0.9952715039253235, + 0.9960119724273682, + 0.9988952279090881, + 0.9987223744392395, + 0.9989010095596313, + 0.9983460903167725, + 0.9989017248153687, + 0.9972342848777771, + 0.99828040599823, + 0.9989056587219238, + 0.9988420605659485, + 0.9983327984809875, + 0.9989193677902222, + 0.9988767504692078, + 0.9970473647117615, + 0.9988635778427124, + 0.9986758828163147, + 0.9969450831413269, + 0.9987951517105103, + 0.9989200830459595, + 0.9989193677902222 + ], + "sentiment_counts": { + "POSITIVE": 59, + "NEGATIVE": 9 + }, + "sentiment_distribution": { + "POSITIVE": 0.8676470588235294, + "NEGATIVE": 0.1323529411764706 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8676470588235294 + ] + }, + "final_label": "POSITIVE", + "final_count": 175, + "final_proportion": 0.8883248730964467, + "final_counts": { + "POSITIVE": 175, + "NEGATIVE": 22 + }, + "final_distribution": { + "POSITIVE": 0.8883248730964467, + "NEGATIVE": 0.1116751269035533 + } + } }, { "season_code": "202303", @@ -262728,7 +533231,7 @@ "11:35", "12:50", "SPL 59 - Sloane Physics Laboratory 59", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ], "Wednesday": [ @@ -262736,7 +533239,7 @@ "11:35", "12:50", "SPL 59 - Sloane Physics Laboratory 59", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ] }, @@ -262755,10 +533258,207 @@ "classnotes": "", "final_exam": "Monday, December 18, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89119\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89119/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986732006072998, + 0.9993305206298828, + 0.9987742304801941, + 0.9988497495651245, + 0.995951771736145, + 0.9988648891448975, + 0.9988241791725159, + 0.9858829379081726, + 0.9987700581550598, + 0.9987648725509644, + 0.9976779818534851, + 0.9986866116523743, + 0.998866081237793, + 0.9963440299034119, + 0.994516909122467, + 0.9813956618309021, + 0.9987848401069641, + 0.9989103078842163, + 0.9916041493415833, + 0.9988517761230469 + ], + "sentiment_counts": { + "POSITIVE": 17, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.85, + "NEGATIVE": 0.15 + }, + "sentiment_overall": [ + "POSITIVE", + 0.85 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9974353909492493, + 0.9994997978210449, + 0.9969022870063782, + 0.9994885921478271, + 0.9988632202148438, + 0.9978519678115845, + 0.9988172650337219, + 0.9987952709197998, + 0.9989047050476074, + 0.9972730278968811, + 0.9988640546798706, + 0.9988914132118225, + 0.9989326596260071, + 0.9988732933998108, + 0.998930037021637, + 0.9989140033721924, + 0.9988634586334229, + 0.9989110231399536, + 0.9988632202148438, + 0.9989058971405029, + 0.9988973140716553, + 0.9987258315086365 + ], + "sentiment_counts": { + "POSITIVE": 18, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.8181818181818182, + "NEGATIVE": 0.18181818181818182 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8181818181818182 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998857855796814, + 0.9994915723800659, + 0.998910665512085, + 0.9970312118530273, + 0.9987307190895081, + 0.9980672001838684, + 0.9989250302314758, + 0.9985384941101074, + 0.9994674324989319, + 0.9951930046081543, + 0.998439610004425, + 0.9989387392997742, + 0.9986706972122192, + 0.9973214268684387, + 0.9988667964935303, + 0.9988454580307007, + 0.9989181756973267, + 0.9986957907676697, + 0.998930037021637, + 0.998897910118103, + 0.9987970590591431, + 0.998908519744873, + 0.9989401698112488 + ], + "sentiment_counts": { + "POSITIVE": 20, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.8695652173913043, + "NEGATIVE": 0.13043478260869565 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8695652173913043 + ] + }, + "final_label": "POSITIVE", + "final_count": 55, + "final_proportion": 0.8461538461538461, + "final_counts": { + "POSITIVE": 55, + "NEGATIVE": 10 + }, + "final_distribution": { + "POSITIVE": 0.8461538461538461, + "NEGATIVE": 0.15384615384615385 + } + } }, { "season_code": "202303", @@ -262795,7 +533495,7 @@ "13:00", "14:15", "SPL 59 - Sloane Physics Laboratory 59", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ], "Wednesday": [ @@ -262803,7 +533503,7 @@ "13:00", "14:15", "SPL 59 - Sloane Physics Laboratory 59", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ] }, @@ -262822,10 +533522,225 @@ "classnotes": "", "final_exam": "Monday, December 18, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89120\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89120/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9959465861320496, + 0.9972521662712097, + 0.9988396763801575, + 0.9989249110221863, + 0.9983856678009033, + 0.9988724589347839, + 0.9988258481025696, + 0.9988164901733398, + 0.9967701435089111, + 0.9987742304801941, + 0.9988883137702942, + 0.996731162071228, + 0.9977834820747375, + 0.9988318085670471, + 0.9982802867889404, + 0.99892657995224, + 0.9989334940910339, + 0.9988574981689453, + 0.99859219789505, + 0.9986889958381653, + 0.9988266825675964, + 0.9982452392578125, + 0.9987924098968506, + 0.9985456466674805 + ], + "sentiment_counts": { + "POSITIVE": 23, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9583333333333334, + "NEGATIVE": 0.041666666666666664 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9583333333333334 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987615346908569, + 0.9971204996109009, + 0.9989093542098999, + 0.9988840222358704, + 0.9988447427749634, + 0.9986411929130554, + 0.998884379863739, + 0.9987818598747253, + 0.9988588094711304, + 0.9989091157913208, + 0.9989053010940552, + 0.9964267611503601, + 0.997734546661377, + 0.9988839030265808, + 0.9838400483131409, + 0.998779833316803, + 0.9989117383956909, + 0.9983187913894653, + 0.9988462924957275, + 0.9987854361534119, + 0.9988658428192139, + 0.998675525188446, + 0.9988964796066284, + 0.9988947510719299, + 0.9989191293716431, + 0.9492040872573853, + 0.986435055732727 + ], + "sentiment_counts": { + "POSITIVE": 26, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9629629629629629, + "NEGATIVE": 0.037037037037037035 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9629629629629629 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987996816635132, + 0.9976125955581665, + 0.9989093542098999, + 0.9986953139305115, + 0.9980533123016357, + 0.9989056587219238, + 0.9987216591835022, + 0.9988572597503662, + 0.9892898201942444, + 0.9892274141311646, + 0.9988948702812195, + 0.9945254325866699, + 0.9988527297973633, + 0.993290901184082, + 0.998903751373291, + 0.9988852143287659, + 0.9989207983016968, + 0.997684121131897, + 0.9992566704750061, + 0.9988516569137573, + 0.9989047050476074, + 0.998928964138031, + 0.9989388585090637 + ], + "sentiment_counts": { + "POSITIVE": 18, + "NEGATIVE": 5 + }, + "sentiment_distribution": { + "POSITIVE": 0.782608695652174, + "NEGATIVE": 0.21739130434782608 + }, + "sentiment_overall": [ + "POSITIVE", + 0.782608695652174 + ] + }, + "final_label": "POSITIVE", + "final_count": 67, + "final_proportion": 0.9054054054054054, + "final_counts": { + "POSITIVE": 67, + "NEGATIVE": 7 + }, + "final_distribution": { + "POSITIVE": 0.9054054054054054, + "NEGATIVE": 0.0945945945945946 + } + } }, { "season_code": "202303", @@ -262862,7 +533777,7 @@ "11:35", "12:50", "SPL 57 - Sloane Physics Laboratory 57", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ], "Wednesday": [ @@ -262870,7 +533785,7 @@ "11:35", "12:50", "SPL 57 - Sloane Physics Laboratory 57", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ] }, @@ -262889,10 +533804,245 @@ "classnotes": "", "final_exam": "Monday, December 18, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89121\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89121/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998781144618988, + 0.9940938353538513, + 0.9979150891304016, + 0.9865666031837463, + 0.8832660913467407, + 0.9848848581314087, + 0.9987105131149292, + 0.9987301230430603, + 0.998855710029602, + 0.9988667964935303, + 0.9989301562309265, + 0.9987925291061401, + 0.9984034895896912, + 0.9988088607788086, + 0.9986870884895325, + 0.9986526966094971, + 0.9988411068916321, + 0.998814582824707, + 0.998817503452301, + 0.9988860487937927, + 0.9987574815750122, + 0.9959413409233093, + 0.997961163520813, + 0.9985530972480774, + 0.9988611936569214, + 0.9987238049507141 + ], + "sentiment_counts": { + "POSITIVE": 25, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9615384615384616, + "NEGATIVE": 0.038461538461538464 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9615384615384616 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988768696784973, + 0.991519033908844, + 0.9984802603721619, + 0.9988429546356201, + 0.9978818297386169, + 0.998862624168396, + 0.9926372766494751, + 0.9987648725509644, + 0.998748779296875, + 0.9989209175109863, + 0.9987370371818542, + 0.9988579750061035, + 0.9989031553268433, + 0.9926649928092957, + 0.9988031387329102, + 0.9969393014907837, + 0.9986598491668701, + 0.9994887113571167, + 0.9989282488822937, + 0.9988914132118225, + 0.9988929629325867, + 0.9988700747489929, + 0.9989118576049805, + 0.9987455606460571, + 0.9982812404632568, + 0.9962514042854309, + 0.9988271594047546, + 0.998668909072876, + 0.9988691210746765 + ], + "sentiment_counts": { + "POSITIVE": 26, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.896551724137931, + "NEGATIVE": 0.10344827586206896 + }, + "sentiment_overall": [ + "POSITIVE", + 0.896551724137931 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989332556724548, + 0.9434695839881897, + 0.9981586337089539, + 0.9988824725151062, + 0.9982553124427795, + 0.9941343665122986, + 0.9988762736320496, + 0.9977535605430603, + 0.9989321827888489, + 0.9989101886749268, + 0.998924195766449, + 0.9988899827003479, + 0.9986328482627869, + 0.9988652467727661, + 0.9988852143287659, + 0.9989051818847656, + 0.9984667897224426, + 0.9985692501068115, + 0.9988617897033691, + 0.9988975524902344, + 0.9989138841629028, + 0.9988987445831299, + 0.9988558292388916, + 0.9987724423408508, + 0.9989835619926453, + 0.9989163875579834, + 0.9989039897918701, + 0.9856168627738953, + 0.9988923668861389 + ], + "sentiment_counts": { + "POSITIVE": 24, + "NEGATIVE": 5 + }, + "sentiment_distribution": { + "POSITIVE": 0.8275862068965517, + "NEGATIVE": 0.1724137931034483 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8275862068965517 + ] + }, + "final_label": "POSITIVE", + "final_count": 75, + "final_proportion": 0.8928571428571429, + "final_counts": { + "POSITIVE": 75, + "NEGATIVE": 9 + }, + "final_distribution": { + "POSITIVE": 0.8928571428571429, + "NEGATIVE": 0.10714285714285714 + } + } }, { "season_code": "202303", @@ -262940,10 +534090,143 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89122\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89122/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9966235160827637, + 0.9977372884750366, + 0.9979808926582336, + 0.9933457374572754, + 0.9987595081329346, + 0.9988717436790466, + 0.998832643032074, + 0.9987848401069641, + 0.9988406300544739, + 0.9988952279090881, + 0.9960535764694214 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8181818181818182, + "NEGATIVE": 0.18181818181818182 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8181818181818182 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9983555674552917, + 0.9989145994186401, + 0.9985722303390503, + 0.9988038539886475, + 0.9988325238227844, + 0.9989207983016968, + 0.9988508224487305, + 0.9988067150115967, + 0.9988014698028564, + 0.9994975328445435 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.998737633228302, + 0.9986512064933777, + 0.9988524913787842, + 0.9893783926963806, + 0.9987390637397766, + 0.9989081621170044, + 0.9955494403839111, + 0.9989204406738281, + 0.5751438736915588, + 0.9989253878593445, + 0.9993560910224915, + 0.9994814991950989 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 5 + }, + "sentiment_distribution": { + "POSITIVE": 0.5833333333333334, + "NEGATIVE": 0.4166666666666667 + }, + "sentiment_overall": [ + "POSITIVE", + 0.5833333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 25, + "final_proportion": 0.7575757575757576, + "final_counts": { + "POSITIVE": 25, + "NEGATIVE": 8 + }, + "final_distribution": { + "POSITIVE": 0.7575757575757576, + "NEGATIVE": 0.24242424242424243 + } + } }, { "season_code": "202303", @@ -262974,7 +534257,7 @@ "13:30", "16:30", "SCL 141 - Sterling Chemistry Laboratory 141", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -262991,7 +534274,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -263022,7 +534333,7 @@ "13:30", "16:30", "SCL 141 - Sterling Chemistry Laboratory 141", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -263039,7 +534350,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -263070,7 +534409,7 @@ "13:30", "16:30", "SCL 141 - Sterling Chemistry Laboratory 141", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -263087,7 +534426,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -263118,7 +534485,7 @@ "12:00", "15:00", "SCL 141 - Sterling Chemistry Laboratory 141", - "https:\/\/map.yale.edu\/?id=1910#!m\/559572" + "https://map.yale.edu/?id=1910#!m/559572" ] ] }, @@ -263135,7 +534502,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -263183,10 +534578,121 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89123\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89123/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988183379173279, + 0.9974969029426575, + 0.9975940585136414, + 0.9959688186645508, + 0.9985880255699158, + 0.9981098175048828 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989218711853027, + 0.9986905455589294, + 0.999492883682251, + 0.9986485838890076, + 0.9988061189651489, + 0.9995099306106567, + 0.9986335635185242, + 0.9966768026351929 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.625, + "NEGATIVE": 0.375 + }, + "sentiment_overall": [ + "POSITIVE", + 0.625 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9956737160682678, + 0.9966596364974976, + 0.9964823722839355, + 0.9988742470741272, + 0.9988985061645508, + 0.9995036125183105, + 0.9988314509391785, + 0.9994834661483765 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 0.7727272727272727, + "final_counts": { + "POSITIVE": 17, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.7727272727272727, + "NEGATIVE": 0.22727272727272727 + } + } }, { "season_code": "202303", @@ -263217,7 +534723,7 @@ "13:30", "16:30", "WALL53 B-04 - 53 Wall Street B-04", - "https:\/\/map.yale.edu\/?id=1910#!m\/559554" + "https://map.yale.edu/?id=1910#!m/559554" ] ] }, @@ -263234,7 +534740,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -263273,7 +534807,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -263304,7 +534866,7 @@ "13:30", "16:30", "WTS B41 - Watson Center 60 Sachem Street B41", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -263321,7 +534883,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -263352,7 +534942,7 @@ "12:00", "15:00", "WTS A72 - Watson Center 60 Sachem Street A72", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -263369,12 +534959,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "Concurrently with MATH 120, ENAS 151, PHYS 151, or PHYS 301, or equivalent.\u00a0Students considering an alternative MATH course should check with the\u00a0DUS in Physics.", - "description": "An introduction to major branches of physics\u2014classical and relativistic mechanics; gravitation; electricity and magnetism; and quantum physics,information, and computation\u2014at a sophisticated level. For students majoring in the physical sciences, mathematics, and philosophy whose high school training included both mechanics and electricity and magnetism at the typical college\/AP level and have excellent training in, and a flair for, mathematical methods and quantitative analysis.", + "description": "An introduction to major branches of physics\u2014classical and relativistic mechanics; gravitation; electricity and magnetism; and quantum physics,information, and computation\u2014at a sophisticated level. For students majoring in the physical sciences, mathematics, and philosophy whose high school training included both mechanics and electricity and magnetism at the typical college/AP level and have excellent training in, and a flair for, mathematical methods and quantitative analysis.", "short_title": "Intensive Introductory Physics", "title": "Intensive Introductory Physics", "school": "YC", @@ -263406,7 +535024,7 @@ "11:35", "12:50", "SPL 63 - Sloane Physics Laboratory 63", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ], "Wednesday": [ @@ -263414,7 +535032,7 @@ "11:35", "12:50", "SPL 63 - Sloane Physics Laboratory 63", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ] }, @@ -263432,10 +535050,153 @@ "classnotes": "", "final_exam": "Monday, December 18, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89124\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89124/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989036321640015, + 0.998561680316925, + 0.9987037181854248, + 0.9988402724266052, + 0.998881995677948, + 0.9988231062889099, + 0.9988400340080261, + 0.9987138509750366, + 0.9966128468513489, + 0.9987480640411377, + 0.9988884329795837 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994009733200073, + 0.9994940757751465, + 0.9986265897750854, + 0.9988320469856262, + 0.9989098310470581, + 0.9988583326339722, + 0.9989017248153687, + 0.9988754391670227, + 0.9986329674720764, + 0.9988275170326233, + 0.9988868832588196 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 9 + }, + "sentiment_distribution": { + "NEGATIVE": 0.18181818181818182, + "POSITIVE": 0.8181818181818182 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8181818181818182 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9979792237281799, + 0.9957903027534485, + 0.9987340569496155, + 0.9969251751899719, + 0.9984616041183472, + 0.998026430606842, + 0.998759388923645, + 0.9989100694656372, + 0.9988178610801697, + 0.9959537982940674, + 0.9983569979667664, + 0.9956499934196472, + 0.9989141225814819, + 0.9989306330680847, + 0.9986339211463928, + 0.9989141225814819 + ], + "sentiment_counts": { + "POSITIVE": 15, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9375, + "NEGATIVE": 0.0625 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9375 + ] + }, + "final_label": "POSITIVE", + "final_count": 35, + "final_proportion": 0.9210526315789473, + "final_counts": { + "POSITIVE": 35, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.9210526315789473, + "NEGATIVE": 0.07894736842105263 + } + } }, { "season_code": "202303", @@ -263473,7 +535234,7 @@ "13:00", "14:15", "BCT 508A - Becton Center 508A", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ], "Thursday": [ @@ -263481,7 +535242,7 @@ "13:00", "14:15", "BCT 508A - Becton Center 508A", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ] }, @@ -263497,10 +535258,85 @@ "classnotes": "", "final_exam": "Saturday, December 16, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89888\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89888/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988345503807068 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989074468612671, + 0.9989067316055298 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989001750946045, + 0.9976016879081726 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 5, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 5 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -263572,10 +535408,111 @@ "classnotes": "", "final_exam": "Monday, December 18, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88856\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88856/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9979901313781738, + 0.9980814456939697, + 0.99880051612854, + 0.9989173412322998, + 0.9979973435401917, + 0.9960357546806335 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989215135574341, + 0.9983375072479248, + 0.9989338517189026, + 0.998884379863739, + 0.9989354014396667 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989012479782104, + 0.9988790154457092, + 0.9988916516304016, + 0.9989216327667236, + 0.9988625049591064, + 0.998866081237793, + 0.9989092350006104 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 18 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -263612,7 +535549,7 @@ "11:35", "12:50", "SPL 63 - Sloane Physics Laboratory 63", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ], "Thursday": [ @@ -263620,7 +535557,7 @@ "11:35", "12:50", "SPL 63 - Sloane Physics Laboratory 63", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ] }, @@ -263634,10 +535571,115 @@ "classnotes": "", "final_exam": "Friday, December 15, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89125\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89125/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987769722938538, + 0.9970492720603943, + 0.9983841180801392, + 0.9969322681427002, + 0.9988219141960144, + 0.9985694885253906, + 0.9982106685638428, + 0.9987156391143799 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9950563907623291, + 0.9934899806976318, + 0.9989193677902222, + 0.9983264803886414, + 0.9994515776634216, + 0.9988824725151062 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986727237701416, + 0.998778760433197, + 0.9974817633628845, + 0.9994764924049377, + 0.9987761378288269 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 0.8947368421052632, + "final_counts": { + "POSITIVE": 17, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8947368421052632, + "NEGATIVE": 0.10526315789473684 + } + } }, { "season_code": "202303", @@ -263702,10 +535744,85 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89126\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89126/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9969325065612793, + 0.9987165927886963 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987574815750122 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998809814453125, + 0.998822033405304 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 5, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 5 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -263744,7 +535861,7 @@ "9:00", "10:15", "SPL 57 - Sloane Physics Laboratory 57", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ], "Thursday": [ @@ -263752,7 +535869,7 @@ "9:00", "10:15", "SPL 57 - Sloane Physics Laboratory 57", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ] }, @@ -263766,10 +535883,137 @@ "classnotes": "", "final_exam": "Saturday, December 16, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88307\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88307/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9980084300041199, + 0.9952059388160706, + 0.9987711310386658, + 0.9985912442207336, + 0.9986758828163147, + 0.9987612962722778, + 0.9986279010772705, + 0.9989132881164551, + 0.998666524887085 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987107515335083, + 0.9994276165962219, + 0.9985081553459167, + 0.998881995677948, + 0.9984063506126404, + 0.9987542629241943, + 0.9988656044006348, + 0.9989213943481445, + 0.9994737505912781, + 0.9981052875518799, + 0.9953397512435913 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.7272727272727273, + "NEGATIVE": 0.2727272727272727 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7272727272727273 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9976894855499268, + 0.9947992563247681, + 0.9987760186195374, + 0.9985904097557068, + 0.9985750913619995, + 0.998856782913208, + 0.9994845390319824, + 0.9989122152328491, + 0.9995036125183105, + 0.9850534796714783 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.7, + "NEGATIVE": 0.3 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7 + ] + }, + "final_label": "POSITIVE", + "final_count": 24, + "final_proportion": 0.8, + "final_counts": { + "POSITIVE": 24, + "NEGATIVE": 6 + }, + "final_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + } + } }, { "season_code": "202303", @@ -263822,10 +536066,145 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89127\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89127/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.994340181350708, + 0.9987228512763977, + 0.994761049747467, + 0.9989345669746399, + 0.9988647699356079, + 0.998855471611023, + 0.9886916875839233, + 0.9973896145820618, + 0.9978300929069519, + 0.9900510907173157, + 0.9987209439277649 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 10 + }, + "sentiment_distribution": { + "NEGATIVE": 0.09090909090909091, + "POSITIVE": 0.9090909090909091 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9090909090909091 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9995020627975464, + 0.9940614104270935, + 0.9994848966598511, + 0.9988816380500793, + 0.9986655712127686, + 0.998752236366272, + 0.9981470108032227, + 0.9989250302314758, + 0.9976050853729248, + 0.9988935589790344 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 8 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2, + "POSITIVE": 0.8 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988168478012085, + 0.9987162351608276, + 0.9933896064758301, + 0.9988815188407898, + 0.9988921284675598, + 0.9987873435020447, + 0.9988847374916077, + 0.9968565702438354, + 0.9987396597862244, + 0.9982553124427795, + 0.9988314509391785, + 0.9872133135795593, + 0.9988711476325989 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 10 + }, + "sentiment_distribution": { + "NEGATIVE": 0.23076923076923078, + "POSITIVE": 0.7692307692307693 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7692307692307693 + ] + }, + "final_label": "POSITIVE", + "final_count": 28, + "final_proportion": 0.8235294117647058, + "final_counts": { + "NEGATIVE": 6, + "POSITIVE": 28 + }, + "final_distribution": { + "NEGATIVE": 0.17647058823529413, + "POSITIVE": 0.8235294117647058 + } + } }, { "season_code": "202303", @@ -263862,7 +536241,7 @@ "11:35", "12:50", "WTS A48 - Watson Center 60 Sachem Street A48", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -263870,7 +536249,7 @@ "11:35", "12:50", "WTS A48 - Watson Center 60 Sachem Street A48", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -263886,10 +536265,97 @@ "classnotes": "", "final_exam": "Sunday, December 17, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89128\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89128/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987527132034302, + 0.9986699819564819, + 0.9984245300292969, + 0.9987618923187256 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989326596260071, + 0.9988183379173279, + 0.998816967010498, + 0.9988646507263184 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989030361175537, + 0.9989019632339478, + 0.9985120892524719 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 11 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -263926,7 +536392,7 @@ "11:35", "12:50", "WTS A51 - Watson Center 60 Sachem Street A51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -263934,7 +536400,7 @@ "11:35", "12:50", "WTS A51 - Watson Center 60 Sachem Street A51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -263950,10 +536416,261 @@ "classnotes": "", "final_exam": "Sunday, December 17, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89129\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89129/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998833954334259, + 0.9988009929656982, + 0.9954778552055359, + 0.995359480381012, + 0.9988324046134949, + 0.9987793564796448, + 0.9986769556999207, + 0.9942165613174438, + 0.9994937181472778, + 0.9743568301200867, + 0.9989073276519775, + 0.998884379863739, + 0.9979695677757263, + 0.9988665580749512, + 0.9988213181495667, + 0.9988455772399902, + 0.9988985061645508, + 0.9987494945526123, + 0.9987240433692932, + 0.9989336133003235, + 0.9987438321113586, + 0.9988586902618408, + 0.9987598657608032, + 0.998881995677948, + 0.9958571791648865, + 0.9994828701019287, + 0.9975969195365906, + 0.9977935552597046, + 0.9987167119979858 + ], + "sentiment_counts": { + "POSITIVE": 27, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.9310344827586207, + "NEGATIVE": 0.06896551724137931 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9310344827586207 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994992017745972, + 0.9983634352684021, + 0.9983243346214294, + 0.9988402724266052, + 0.9988923668861389, + 0.9992982149124146, + 0.9988794922828674, + 0.9987654685974121, + 0.9988842606544495, + 0.9987473487854004, + 0.998353123664856, + 0.9987748265266418, + 0.998865008354187, + 0.9989088773727417, + 0.9988742470741272, + 0.9969158172607422, + 0.9989343285560608, + 0.9986069798469543, + 0.9988992214202881, + 0.9968184232711792, + 0.9988848567008972, + 0.9989045858383179, + 0.9987389445304871, + 0.9988548755645752, + 0.9988540410995483, + 0.9956777691841125, + 0.9979475140571594, + 0.9988186955451965, + 0.9988473653793335, + 0.9985331296920776 + ], + "sentiment_counts": { + "NEGATIVE": 8, + "POSITIVE": 22 + }, + "sentiment_distribution": { + "NEGATIVE": 0.26666666666666666, + "POSITIVE": 0.7333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7333333333333333 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9993141889572144, + 0.9987276196479797, + 0.998819887638092, + 0.9987621307373047, + 0.998898983001709, + 0.9946377873420715, + 0.9989244341850281, + 0.9989114999771118, + 0.9995077848434448, + 0.9995070695877075, + 0.9946088790893555, + 0.9983727335929871, + 0.9989141225814819, + 0.9988725781440735, + 0.9990978240966797, + 0.9989284873008728, + 0.9988816380500793, + 0.998737633228302, + 0.9989336133003235, + 0.9989163875579834, + 0.9989216327667236, + 0.995322048664093, + 0.998765230178833, + 0.9982166886329651, + 0.9988783001899719, + 0.9989131689071655, + 0.9880344271659851, + 0.9994762539863586, + 0.9982861876487732, + 0.9989205598831177, + 0.997117280960083, + 0.9988718628883362, + 0.9850558042526245 + ], + "sentiment_counts": { + "NEGATIVE": 8, + "POSITIVE": 25 + }, + "sentiment_distribution": { + "NEGATIVE": 0.24242424242424243, + "POSITIVE": 0.7575757575757576 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7575757575757576 + ] + }, + "final_label": "POSITIVE", + "final_count": 74, + "final_proportion": 0.8043478260869565, + "final_counts": { + "POSITIVE": 74, + "NEGATIVE": 18 + }, + "final_distribution": { + "POSITIVE": 0.8043478260869565, + "NEGATIVE": 0.1956521739130435 + } + } }, { "season_code": "202303", @@ -263990,7 +536707,7 @@ "13:00", "14:15", "SPL 48 - Sloane Physics Laboratory 48", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ], "Thursday": [ @@ -263998,7 +536715,7 @@ "13:00", "14:15", "SPL 48 - Sloane Physics Laboratory 48", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ] }, @@ -264014,10 +536731,115 @@ "classnotes": "", "final_exam": "Saturday, December 16, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89130\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89130/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9898325204849243, + 0.9988090991973877, + 0.9985326528549194, + 0.8878433704376221, + 0.9988262057304382, + 0.9984488487243652 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989240765571594, + 0.9988752007484436, + 0.9988629817962646, + 0.9988070726394653, + 0.9987288117408752, + 0.9986107349395752 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988930821418762, + 0.9989026784896851, + 0.9903404116630554, + 0.9910033941268921, + 0.9974673986434937, + 0.9964283108711243, + 0.9989257454872131 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.7142857142857143, + "NEGATIVE": 0.2857142857142857 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7142857142857143 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 0.8421052631578947, + "final_counts": { + "POSITIVE": 16, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.8421052631578947, + "NEGATIVE": 0.15789473684210525 + } + } }, { "season_code": "202303", @@ -264055,7 +536877,7 @@ "14:30", "15:45", "SPL 63 - Sloane Physics Laboratory 63", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ], "Wednesday": [ @@ -264063,7 +536885,7 @@ "14:30", "15:45", "SPL 63 - Sloane Physics Laboratory 63", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ] }, @@ -264079,10 +536901,117 @@ "classnotes": "", "final_exam": "Sunday, December 17, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89131\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89131/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994995594024658, + 0.9987731575965881, + 0.9984910488128662, + 0.9986043572425842, + 0.9982694387435913, + 0.9985224604606628 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 5 + }, + "sentiment_distribution": { + "NEGATIVE": 0.16666666666666666, + "POSITIVE": 0.8333333333333334 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9995085000991821, + 0.9985527396202087, + 0.998920202255249, + 0.9995081424713135, + 0.9987547397613525, + 0.9995039701461792, + 0.9984220266342163 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 4 + }, + "sentiment_distribution": { + "NEGATIVE": 0.42857142857142855, + "POSITIVE": 0.5714285714285714 + }, + "sentiment_overall": [ + "POSITIVE", + 0.5714285714285714 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9994852542877197, + 0.9995077848434448, + 0.998895525932312, + 0.9854602217674255, + 0.9988079071044922, + 0.9979616403579712, + 0.7239924669265747 + ], + "sentiment_counts": { + "NEGATIVE": 5, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.7142857142857143, + "POSITIVE": 0.2857142857142857 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.7142857142857143 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 0.55, + "final_counts": { + "NEGATIVE": 9, + "POSITIVE": 11 + }, + "final_distribution": { + "NEGATIVE": 0.45, + "POSITIVE": 0.55 + } + } }, { "season_code": "202303", @@ -264121,7 +537050,7 @@ "13:00", "14:15", "BCT 408A - Becton Center 408A", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ], "Wednesday": [ @@ -264129,7 +537058,7 @@ "13:00", "14:15", "BCT 408A - Becton Center 408A", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ] }, @@ -264145,10 +537074,113 @@ "classnotes": "", "final_exam": "Wednesday, December 20, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89889\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89889/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9978713989257812, + 0.998923122882843, + 0.9994875192642212, + 0.9995083808898926, + 0.9988131523132324 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.6, + "POSITIVE": 0.4 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.6 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9995015859603882, + 0.9995038509368896, + 0.9995118379592896, + 0.9952287673950195, + 0.9987379908561707, + 0.9994863271713257 + ], + "sentiment_counts": { + "NEGATIVE": 5, + "POSITIVE": 1 + }, + "sentiment_distribution": { + "NEGATIVE": 0.8333333333333334, + "POSITIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9985811710357666, + 0.9989120960235596, + 0.9995071887969971, + 0.9994989633560181, + 0.9995086193084717, + 0.9988935589790344, + 0.9961372017860413 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.42857142857142855, + "NEGATIVE": 0.5714285714285714 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.5714285714285714 + ] + }, + "final_label": "NEGATIVE", + "final_count": 12, + "final_proportion": 0.6666666666666666, + "final_counts": { + "NEGATIVE": 12, + "POSITIVE": 6 + }, + "final_distribution": { + "NEGATIVE": 0.6666666666666666, + "POSITIVE": 0.3333333333333333 + } + } }, { "season_code": "202303", @@ -264185,7 +537217,7 @@ "11:35", "12:50", "SPL 56 - Sloane Physics Laboratory 56", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ], "Wednesday": [ @@ -264193,7 +537225,7 @@ "11:35", "12:50", "SPL 56 - Sloane Physics Laboratory 56", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ] }, @@ -264209,10 +537241,137 @@ "classnotes": "", "final_exam": "Sunday, December 17, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89132\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89132/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985772371292114, + 0.9974457025527954, + 0.9767846465110779, + 0.998762845993042, + 0.9988196492195129, + 0.9974074959754944, + 0.9981942772865295, + 0.9986380934715271 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988573789596558, + 0.9995077848434448, + 0.9987061023712158, + 0.998833954334259, + 0.9994694590568542, + 0.9989131689071655, + 0.9989150762557983, + 0.9988871216773987, + 0.9988125562667847, + 0.9994763731956482, + 0.9987584352493286 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.7272727272727273, + "NEGATIVE": 0.2727272727272727 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7272727272727273 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988215565681458, + 0.9994807839393616, + 0.9986170530319214, + 0.9978267550468445, + 0.9640542268753052, + 0.9989011287689209, + 0.9988497495651245, + 0.9989099502563477, + 0.9988272786140442, + 0.999504566192627, + 0.9988812804222107 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8181818181818182, + "NEGATIVE": 0.18181818181818182 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8181818181818182 + ] + }, + "final_label": "POSITIVE", + "final_count": 24, + "final_proportion": 0.8, + "final_counts": { + "POSITIVE": 24, + "NEGATIVE": 6 + }, + "final_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + } + } }, { "season_code": "202303", @@ -264253,7 +537412,7 @@ "13:00", "14:15", "BCT 408A - Becton Center 408A", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ], "Thursday": [ @@ -264261,7 +537420,7 @@ "13:00", "14:15", "BCT 408A - Becton Center 408A", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ] }, @@ -264279,10 +537438,123 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89890\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89890/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987872242927551, + 0.9979719519615173, + 0.9987226128578186, + 0.999255359172821, + 0.9986827969551086, + 0.997454822063446, + 0.9974538683891296 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988425970077515, + 0.9989016056060791, + 0.9986081719398499, + 0.9990240335464478, + 0.9987753033638, + 0.9941311478614807, + 0.9948021173477173, + 0.9960088729858398 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984347224235535, + 0.9988204836845398, + 0.998898983001709, + 0.9988067150115967, + 0.998678982257843, + 0.9987913966178894, + 0.997117280960083, + 0.998788058757782 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 0.8695652173913043, + "final_counts": { + "POSITIVE": 20, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.8695652173913043, + "NEGATIVE": 0.13043478260869565 + } + } }, { "season_code": "202303", @@ -264322,7 +537594,7 @@ "11:35", "12:50", "BCT 508A - Becton Center 508A", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ], "Thursday": [ @@ -264330,7 +537602,7 @@ "11:35", "12:50", "BCT 508A - Becton Center 508A", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ] }, @@ -264346,10 +537618,85 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89891\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89891/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984865188598633, + 0.9988002777099609 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987872242927551 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9772657752037048 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 0 + }, + "sentiment_distribution": { + "NEGATIVE": 1.0, + "POSITIVE": 0.0 + }, + "sentiment_overall": [ + "NEGATIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 3, + "final_proportion": 0.75, + "final_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + } + } }, { "season_code": "202303", @@ -264388,12 +537735,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "Each student works on an independent project under the supervision of a member of the faculty or research staff. Students participate in a series of seminar meetings in which they present a talk on their project or research related to it. A written report is also required. For students with a strong background in physics coursework.\u00a0This course may be taken multiple times for pass\/fail credit. Suggested for first years and sophomores.", + "description": "Each student works on an independent project under the supervision of a member of the faculty or research staff. Students participate in a series of seminar meetings in which they present a talk on their project or research related to it. A written report is also required. For students with a strong background in physics coursework.\u00a0This course may be taken multiple times for pass/fail credit. Suggested for first years and sophomores.", "short_title": "Independent Research in Physics", "title": "Independent Research in Physics", "school": "YC", @@ -264428,10 +537803,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89134\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89134/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -264471,10 +537874,125 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89134\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89134/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988512992858887, + 0.9971765279769897, + 0.9983789920806885, + 0.9988116025924683, + 0.9956997632980347, + 0.9989118576049805 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988611936569214, + 0.9994893074035645, + 0.9981459379196167, + 0.9995039701461792, + 0.9992120265960693, + 0.9986903071403503, + 0.9986469149589539, + 0.9986938834190369, + 0.9983893632888794, + 0.9973481893539429 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.6, + "NEGATIVE": 0.4 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9940019249916077, + 0.9974958300590515, + 0.9891082048416138, + 0.9972097277641296, + 0.9987601041793823, + 0.9977368116378784, + 0.9988669157028198, + 0.9971207976341248 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 0.75, + "final_counts": { + "POSITIVE": 18, + "NEGATIVE": 6 + }, + "final_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + } + } }, { "season_code": "202303", @@ -264511,7 +538029,7 @@ "11:35", "12:50", "SPL 57 - Sloane Physics Laboratory 57", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ], "Thursday": [ @@ -264519,7 +538037,7 @@ "11:35", "12:50", "SPL 57 - Sloane Physics Laboratory 57", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ] }, @@ -264531,10 +538049,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88635\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88635/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -264571,7 +538117,7 @@ "10:00", "11:15", "SPL 57 - Sloane Physics Laboratory 57", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ], "Wednesday": [ @@ -264579,7 +538125,7 @@ "10:00", "11:15", "SPL 57 - Sloane Physics Laboratory 57", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ] }, @@ -264591,10 +538137,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88637\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88637/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -264631,7 +538205,7 @@ "13:00", "14:15", "SPL 57 - Sloane Physics Laboratory 57", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ], "Wednesday": [ @@ -264639,7 +538213,7 @@ "13:00", "14:15", "SPL 57 - Sloane Physics Laboratory 57", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ] }, @@ -264651,10 +538225,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88639\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88639/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -264694,7 +538296,7 @@ "10:00", "11:15", "SPL 56 - Sloane Physics Laboratory 56", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ] }, @@ -264706,10 +538308,38 @@ "classnotes": "This course is for first-year graduate students only.", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88641\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88641/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -264746,7 +538376,7 @@ "13:00", "14:15", "SPL 63 - Sloane Physics Laboratory 63", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ], "Wednesday": [ @@ -264754,7 +538384,7 @@ "13:00", "14:15", "SPL 63 - Sloane Physics Laboratory 63", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ] }, @@ -264766,10 +538396,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88643\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88643/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -264809,7 +538467,7 @@ "13:00", "14:15", "HLH17 115 - 17 Hillhouse Avenue 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Thursday": [ @@ -264817,7 +538475,7 @@ "13:00", "14:15", "HLH17 115 - 17 Hillhouse Avenue 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -264829,10 +538487,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89265\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89265/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -264869,7 +538555,7 @@ "9:00", "10:15", "SPL 63 - Sloane Physics Laboratory 63", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ], "Thursday": [ @@ -264877,7 +538563,7 @@ "9:00", "10:15", "SPL 63 - Sloane Physics Laboratory 63", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ] }, @@ -264889,10 +538575,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89152\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89152/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -264933,7 +538626,7 @@ "13:00", "14:15", "BCT 408A - Becton Center 408A", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ], "Thursday": [ @@ -264941,7 +538634,7 @@ "13:00", "14:15", "BCT 408A - Becton Center 408A", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ] }, @@ -264955,15 +538648,128 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89890\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89890/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "Prerequisites: MATH 115\u00a0or\u00a0116,\u00a0BIOL 101\u2013104, or with permission of instructors. This course also benefits students who have taken more advanced biology courses (e.g.\u00a0MCDB 200,\u00a0MCDB 310,\u00a0MB&B 300\/301).", - "description": "Biological systems make sophisticated decisions at many levels. This course explores the molecular and computational underpinnings of how these decisions are made, with a focus on modeling static and dynamic processes in example biological systems. This course is aimed at biology students and teaches the analytic and computational methods needed to model genetic networks and protein signaling pathways. Students present and discuss original papers in class. They learn to model using MatLab in a series of in-class hackathons that illustrate the biological examples discussed in the lectures. Biological systems and processes that are modeled include: (i) gene expression, including the kinetics of RNA and protein synthesis and degradation; (ii) activators and repressors; (iii) the lysogeny\/lysis switch of lambda phage; (iv) network motifs and how they shape response dynamics; (v) cell signaling, MAP kinase networks and cell fate decisions; and (vi) noise in gene expression.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987872242927551, + 0.9979719519615173, + 0.9987226128578186, + 0.999255359172821, + 0.9986827969551086, + 0.997454822063446, + 0.9974538683891296 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988425970077515, + 0.9989016056060791, + 0.9986081719398499, + 0.9990240335464478, + 0.9987753033638, + 0.9941311478614807, + 0.9948021173477173, + 0.9960088729858398 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984347224235535, + 0.9988204836845398, + 0.998898983001709, + 0.9988067150115967, + 0.998678982257843, + 0.9987913966178894, + 0.997117280960083, + 0.998788058757782 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 0.8695652173913043, + "final_counts": { + "POSITIVE": 20, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.8695652173913043, + "NEGATIVE": 0.13043478260869565 + } + } + }, + { + "season_code": "202303", + "requirements": "Prerequisites: MATH 115\u00a0or\u00a0116,\u00a0BIOL 101\u2013104, or with permission of instructors. This course also benefits students who have taken more advanced biology courses (e.g.\u00a0MCDB 200,\u00a0MCDB 310,\u00a0MB&B 300/301).", + "description": "Biological systems make sophisticated decisions at many levels. This course explores the molecular and computational underpinnings of how these decisions are made, with a focus on modeling static and dynamic processes in example biological systems. This course is aimed at biology students and teaches the analytic and computational methods needed to model genetic networks and protein signaling pathways. Students present and discuss original papers in class. They learn to model using MatLab in a series of in-class hackathons that illustrate the biological examples discussed in the lectures. Biological systems and processes that are modeled include: (i) gene expression, including the kinetics of RNA and protein synthesis and degradation; (ii) activators and repressors; (iii) the lysogeny/lysis switch of lambda phage; (iv) network motifs and how they shape response dynamics; (v) cell signaling, MAP kinase networks and cell fate decisions; and (vi) noise in gene expression.", "short_title": "Modeling Biological Systems I", "title": "Modeling Biological Systems I", "school": "GS", @@ -265004,7 +538810,7 @@ "14:30", "15:45", "BASS 405 - Bass Center 405", - "https:\/\/map.yale.edu\/?id=1910#!m\/560102" + "https://map.yale.edu/?id=1910#!m/560102" ] ], "Thursday": [ @@ -265012,7 +538818,7 @@ "14:30", "15:45", "BASS 405 - Bass Center 405", - "https:\/\/map.yale.edu\/?id=1910#!m\/560102" + "https://map.yale.edu/?id=1910#!m/560102" ] ] }, @@ -265024,10 +538830,119 @@ "classnotes": "Undergraduates only; graduate students need instructor permission. Graduate students with a physics, mathematics, or engineering background are not allowed in the course and should instead take MCDB 562 Modeling Biological Systems II, which is offered in the spring. Biology graduate students with little to no background in physics, mathematics, or engineering must first contact the instructor.", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88784\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88784/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988932013511658, + 0.9985255599021912, + 0.9988605976104736, + 0.998641312122345, + 0.998914361000061, + 0.9989007711410522 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981176853179932, + 0.9986761212348938, + 0.9943771958351135, + 0.9985344409942627, + 0.9989160299301147, + 0.9989138841629028, + 0.9989339709281921, + 0.9988695979118347, + 0.9775633811950684 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 8 + }, + "sentiment_distribution": { + "NEGATIVE": 0.1111111111111111, + "POSITIVE": 0.8888888888888888 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9911907911300659, + 0.9986100196838379, + 0.9853668212890625, + 0.9989172220230103, + 0.9989176988601685, + 0.9988948702812195 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 0.9523809523809523, + "final_counts": { + "POSITIVE": 20, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9523809523809523, + "NEGATIVE": 0.047619047619047616 + } + } }, { "season_code": "202303", @@ -265085,10 +539000,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88922\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88922/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -265125,7 +539068,7 @@ "14:00", "16:30", "SPL 48 - Sloane Physics Laboratory 48", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ] }, @@ -265140,7 +539083,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -265177,7 +539148,7 @@ "11:35", "12:50", "SPL 48 - Sloane Physics Laboratory 48", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ], "Wednesday": [ @@ -265185,7 +539156,7 @@ "11:35", "12:50", "SPL 48 - Sloane Physics Laboratory 48", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ] }, @@ -265197,10 +539168,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88648\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88648/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -265238,7 +539237,7 @@ "14:30", "15:45", "SPL 48 - Sloane Physics Laboratory 48", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ], "Thursday": [ @@ -265246,7 +539245,7 @@ "14:30", "15:45", "SPL 48 - Sloane Physics Laboratory 48", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ] }, @@ -265258,15 +539257,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88650\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88650/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "Introduction to the physics of nanoscale solid state systems, which are large and disordered enough to be described in terms of simple macroscopic parameters like resistance, capacitance, and inductance, but small and cold enough that effects usually associated with microscopic particles, like quantum-mechanical coherence and\/or charge quantization, dominate. Emphasis is placed on transport and noise phenomena in the normal and superconducting regimes.", + "description": "Introduction to the physics of nanoscale solid state systems, which are large and disordered enough to be described in terms of simple macroscopic parameters like resistance, capacitance, and inductance, but small and cold enough that effects usually associated with microscopic particles, like quantum-mechanical coherence and/or charge quantization, dominate. Emphasis is placed on transport and noise phenomena in the normal and superconducting regimes.", "short_title": "Mesoscopic Physics I", "title": "Mesoscopic Physics I", "school": "GS", @@ -265299,7 +539326,7 @@ "9:00", "10:15", "BCT 408A - Becton Center 408A", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ], "Wednesday": [ @@ -265307,7 +539334,7 @@ "9:00", "10:15", "BCT 408A - Becton Center 408A", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ] }, @@ -265319,10 +539346,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89901\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89901/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -265359,7 +539414,7 @@ "13:00", "14:15", "SPL 56 - Sloane Physics Laboratory 56", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ], "Wednesday": [ @@ -265367,7 +539422,7 @@ "13:00", "14:15", "SPL 56 - Sloane Physics Laboratory 56", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ] }, @@ -265379,10 +539434,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91397\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91397/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -265420,7 +539503,7 @@ "15:30", "17:20", "SPL 63 - Sloane Physics Laboratory 63", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ] }, @@ -265432,10 +539515,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89439\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89439/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -265472,7 +539562,7 @@ "16:00", "17:15", "SPL 51 - Sloane Physics Laboratory 51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ], "Thursday": [ @@ -265480,7 +539570,7 @@ "16:00", "17:15", "SPL 51 - Sloane Physics Laboratory 51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559933" + "https://map.yale.edu/?id=1910#!m/559933" ] ] }, @@ -265492,10 +539582,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90769\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90769/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -265535,7 +539632,7 @@ "11:35", "12:50", "BCT 508A - Becton Center 508A", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ], "Thursday": [ @@ -265543,7 +539640,7 @@ "11:35", "12:50", "BCT 508A - Becton Center 508A", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ] }, @@ -265555,10 +539652,85 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89891\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89891/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984865188598633, + 0.9988002777099609 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987872242927551 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9772657752037048 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 0 + }, + "sentiment_distribution": { + "NEGATIVE": 1.0, + "POSITIVE": 0.0 + }, + "sentiment_overall": [ + "NEGATIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 3, + "final_proportion": 0.75, + "final_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + } + } }, { "season_code": "202303", @@ -265596,7 +539768,7 @@ "16:00", "17:15", "BCT 408A - Becton Center 408A", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ], "Wednesday": [ @@ -265604,7 +539776,7 @@ "16:00", "17:15", "BCT 408A - Becton Center 408A", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ] }, @@ -265616,10 +539788,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89902\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89902/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -265657,7 +539857,7 @@ "14:30", "15:45", "BCT 508 - BCT 508", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ], "Thursday": [ @@ -265665,7 +539865,7 @@ "14:30", "15:45", "BCT 508 - BCT 508", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ] }, @@ -265677,10 +539877,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89903\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89903/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -265727,7 +539955,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -265767,10 +540023,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88653\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88653/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -265813,7 +540097,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -265853,7 +540165,7 @@ "14:30", "15:45", "HLH17 03 - 17 Hillhouse Avenue 03", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Wednesday": [ @@ -265861,7 +540173,7 @@ "14:30", "15:45", "HLH17 03 - 17 Hillhouse Avenue 03", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -265873,10 +540185,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88768\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88768/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -265914,7 +540254,7 @@ "9:00", "10:15", "LC 318 - Linsly-Chittenden Hall 318", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -265922,7 +540262,7 @@ "9:00", "10:15", "LC 318 - Linsly-Chittenden Hall 318", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -265933,17 +540273,128 @@ "Hu" ], "flags": [ - "YC English: 18th\/19th Century " + "YC English: 18th/19th Century " ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88505\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88505/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989074468612671, + 0.9988558292388916, + 0.9988798499107361, + 0.9989087581634521, + 0.9988793730735779, + 0.9987648725509644, + 0.9988914132118225, + 0.9989262223243713 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989303946495056, + 0.9988623857498169, + 0.9988237023353577, + 0.9988784193992615, + 0.9988993406295776, + 0.9989063739776611, + 0.9989309906959534 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989225268363953, + 0.9989381432533264, + 0.9989181756973267, + 0.9876093864440918, + 0.9989049434661865, + 0.9989258646965027, + 0.9989282488822937, + 0.9989377856254578 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 23, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 23 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -265980,7 +540431,7 @@ "14:30", "15:45", "RKZ 06 - Rosenkranz Hall 06", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ], "Thursday": [ @@ -265988,7 +540439,7 @@ "14:30", "15:45", "RKZ 06 - Rosenkranz Hall 06", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -266004,10 +540455,117 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88990\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88990/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988917708396912, + 0.9989039897918701, + 0.9989105463027954, + 0.9960083961486816, + 0.9988425374031067, + 0.9988774657249451, + 0.9989243149757385 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988644123077393, + 0.9988960027694702, + 0.998802900314331, + 0.996295154094696, + 0.9988425374031067, + 0.9954674243927002 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989256262779236, + 0.9989062547683716, + 0.998902440071106, + 0.9976925849914551, + 0.9982553124427795, + 0.998872697353363, + 0.9988970756530762 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 0.95, + "final_counts": { + "POSITIVE": 19, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.95, + "NEGATIVE": 0.05 + } + } }, { "season_code": "202303", @@ -266044,7 +540602,7 @@ "10:30", "11:20", "WLH 201 - William L. Harkness Hall 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -266052,7 +540610,7 @@ "10:30", "11:20", "WLH 201 - William L. Harkness Hall 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -266066,10 +540624,381 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89154\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89154/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988572597503662, + 0.9988131523132324, + 0.9985010623931885, + 0.9988415837287903, + 0.9989118576049805, + 0.9987902045249939, + 0.9986191987991333, + 0.9988898634910583, + 0.9982376098632812, + 0.9987884163856506, + 0.9989334940910339, + 0.9988382458686829, + 0.9988203644752502, + 0.9987244009971619, + 0.9987251162528992, + 0.9988620281219482, + 0.9988086223602295, + 0.998895525932312, + 0.9699292778968811, + 0.9813376665115356, + 0.9976897239685059, + 0.9989332556724548, + 0.9984108209609985, + 0.9986888766288757, + 0.9989376664161682, + 0.9980705380439758, + 0.9988080263137817, + 0.9987232089042664, + 0.9989018440246582, + 0.9988365769386292, + 0.9988840222358704, + 0.9988528490066528, + 0.9988968372344971, + 0.9988942742347717, + 0.9988110065460205, + 0.998678982257843, + 0.9988699555397034, + 0.9987680315971375, + 0.9988006353378296, + 0.9987999200820923, + 0.9989262223243713, + 0.9989286065101624, + 0.9987881779670715, + 0.9988559484481812, + 0.9987755417823792, + 0.9987474679946899, + 0.9989206790924072, + 0.9988645315170288, + 0.9988263249397278, + 0.9988093376159668, + 0.9989184141159058, + 0.9980777502059937 + ], + "sentiment_counts": { + "POSITIVE": 52, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9975737929344177, + 0.9983586668968201, + 0.9989087581634521, + 0.999470055103302, + 0.9944854378700256, + 0.9988275170326233, + 0.9987234473228455, + 0.9989207983016968, + 0.9991889595985413, + 0.998498797416687, + 0.9962148070335388, + 0.9989138841629028, + 0.9980012774467468, + 0.9994719624519348, + 0.9941852688789368, + 0.9908909201622009, + 0.9988307356834412, + 0.9961658716201782, + 0.9989169836044312, + 0.9968730807304382, + 0.9988603591918945, + 0.9987490177154541, + 0.9987220168113708, + 0.9995039701461792, + 0.9972684383392334, + 0.998451828956604, + 0.9987812638282776, + 0.9988119602203369, + 0.9967963099479675, + 0.9994550347328186, + 0.9989169836044312, + 0.9988757967948914, + 0.9986346364021301, + 0.9984723925590515, + 0.9988799691200256, + 0.9988141059875488, + 0.9988866448402405, + 0.9988300204277039, + 0.9987655878067017, + 0.998931348323822, + 0.9988991022109985, + 0.9988646507263184, + 0.9989054203033447, + 0.9988644123077393, + 0.9988369345664978 + ], + "sentiment_counts": { + "NEGATIVE": 8, + "POSITIVE": 37 + }, + "sentiment_distribution": { + "NEGATIVE": 0.17777777777777778, + "POSITIVE": 0.8222222222222222 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8222222222222222 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988985061645508, + 0.9987385869026184, + 0.997117280960083, + 0.9988920092582703, + 0.9987282156944275, + 0.9982553124427795, + 0.9986985921859741, + 0.9989151954650879, + 0.9983333945274353, + 0.9989362359046936, + 0.9989117383956909, + 0.998885452747345, + 0.9979900121688843, + 0.9988270401954651, + 0.9981436729431152, + 0.9978635907173157, + 0.9988328814506531, + 0.9989217519760132, + 0.9995104074478149, + 0.9989307522773743, + 0.998855710029602, + 0.987387478351593, + 0.9988954067230225, + 0.9989049434661865, + 0.9987598657608032, + 0.9988573789596558, + 0.998909592628479, + 0.99891197681427, + 0.9916771650314331, + 0.9988632202148438, + 0.998884379863739, + 0.9948593378067017, + 0.9989218711853027, + 0.9989234805107117, + 0.9869753122329712, + 0.9988865256309509, + 0.9989280104637146, + 0.9988954067230225, + 0.9983354210853577, + 0.997117280960083, + 0.9989199638366699, + 0.9988452196121216, + 0.9988825917243958, + 0.9989292025566101, + 0.9988781809806824, + 0.9989179372787476, + 0.9987664222717285, + 0.9988003969192505, + 0.998766303062439, + 0.9989270567893982, + 0.9988188147544861, + 0.998745322227478, + 0.9987646341323853, + 0.9989314675331116, + 0.9984519481658936 + ], + "sentiment_counts": { + "POSITIVE": 53, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.9636363636363636, + "NEGATIVE": 0.03636363636363636 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9636363636363636 + ] + }, + "final_label": "POSITIVE", + "final_count": 142, + "final_proportion": 0.9342105263157895, + "final_counts": { + "POSITIVE": 142, + "NEGATIVE": 10 + }, + "final_distribution": { + "POSITIVE": 0.9342105263157895, + "NEGATIVE": 0.06578947368421052 + } + } }, { "season_code": "202303", @@ -266100,7 +541029,7 @@ "11:35", "12:25", "BASSLB L73 - Bass Library L73", - "https:\/\/map.yale.edu\/?id=1910#!m\/564574" + "https://map.yale.edu/?id=1910#!m/564574" ] ] }, @@ -266117,7 +541046,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -266148,7 +541105,7 @@ "13:30", "14:20", "BASSLB L70 - Bass Library L70", - "https:\/\/map.yale.edu\/?id=1910#!m\/564574" + "https://map.yale.edu/?id=1910#!m/564574" ] ] }, @@ -266165,7 +541122,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -266196,7 +541181,7 @@ "14:30", "15:20", "WLH 006 - William L. Harkness Hall 006", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -266213,7 +541198,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -266244,7 +541257,7 @@ "15:30", "16:20", "WLH 011 - William L. Harkness Hall 011", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -266261,7 +541274,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -266292,7 +541333,7 @@ "13:30", "14:20", "WLH 007 - William L. Harkness Hall 007", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -266309,7 +541350,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -266340,7 +541409,7 @@ "14:30", "15:20", "PH 207 - Phelps Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -266357,7 +541426,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -266388,7 +541485,7 @@ "19:00", "19:50", "WLH 006 - William L. Harkness Hall 006", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -266405,7 +541502,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -266436,7 +541561,7 @@ "20:00", "20:50", "WLH 006 - William L. Harkness Hall 006", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -266453,7 +541578,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -266484,7 +541637,7 @@ "9:00", "9:50", "LC 212 - Linsly-Chittenden Hall 212", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -266504,7 +541657,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -266541,7 +541722,7 @@ "11:35", "12:25", "LC 317 - Linsly-Chittenden Hall 317", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -266549,7 +541730,7 @@ "11:35", "12:25", "LC 317 - Linsly-Chittenden Hall 317", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -266566,10 +541747,171 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89157\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89157/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.984399676322937, + 0.9916926622390747, + 0.9988805651664734, + 0.9986913800239563, + 0.997861921787262, + 0.9987319111824036, + 0.9985584616661072, + 0.9986926913261414, + 0.9984593391418457, + 0.9982779026031494, + 0.997197151184082, + 0.9962453246116638, + 0.9988825917243958, + 0.9988646507263184, + 0.9953718781471252, + 0.9971827268600464, + 0.9988235831260681 + ], + "sentiment_counts": { + "POSITIVE": 16, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9411764705882353, + "NEGATIVE": 0.058823529411764705 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9411764705882353 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986644983291626, + 0.9995067119598389, + 0.9980670809745789, + 0.9988875985145569, + 0.998583197593689, + 0.9946104288101196, + 0.9967658519744873, + 0.9987419247627258, + 0.9986770749092102, + 0.9959480166435242, + 0.9994627833366394, + 0.9995051622390747, + 0.9922053217887878, + 0.9994920492172241, + 0.9989266991615295 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 5 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994992017745972, + 0.9987308382987976, + 0.9945375323295593, + 0.9989116191864014, + 0.997117280960083, + 0.9987315535545349, + 0.9949522018432617, + 0.9989068508148193, + 0.9981922507286072, + 0.998737633228302, + 0.9987753033638, + 0.9993977546691895, + 0.9988478422164917, + 0.9984316229820251, + 0.9988874793052673 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 12 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2, + "POSITIVE": 0.8 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 38, + "final_proportion": 0.8085106382978723, + "final_counts": { + "POSITIVE": 38, + "NEGATIVE": 9 + }, + "final_distribution": { + "POSITIVE": 0.8085106382978723, + "NEGATIVE": 0.19148936170212766 + } + } }, { "season_code": "202303", @@ -266600,7 +541942,7 @@ "13:30", "14:20", "LC 206 - Linsly-Chittenden Hall 206", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -266620,7 +541962,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -266651,7 +542021,7 @@ "14:30", "15:20", "LC 206 - Linsly-Chittenden Hall 206", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -266671,7 +542041,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -266708,7 +542106,7 @@ "10:30", "11:20", "HQ L02 - Humanities Quadrangle L02", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -266716,7 +542114,7 @@ "10:30", "11:20", "HQ L02 - Humanities Quadrangle L02", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -266732,10 +542130,261 @@ "classnotes": "", "final_exam": "Wednesday, December 20, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89155\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89155/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985920786857605, + 0.9883820414543152, + 0.9988744854927063, + 0.9988603591918945, + 0.9987807869911194, + 0.9985961318016052, + 0.9987402558326721, + 0.9988481998443604, + 0.998725950717926, + 0.9944409728050232, + 0.9987938404083252, + 0.9975298047065735, + 0.9989042282104492, + 0.9903746247291565, + 0.9988662004470825, + 0.9986937642097473, + 0.9988930821418762, + 0.9979974627494812, + 0.9987383484840393, + 0.9988977909088135, + 0.9905597567558289, + 0.9969121217727661, + 0.9982544779777527, + 0.9988083839416504, + 0.998889148235321, + 0.9991464614868164, + 0.9988481998443604 + ], + "sentiment_counts": { + "POSITIVE": 25, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.9259259259259259, + "NEGATIVE": 0.07407407407407407 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9259259259259259 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.999489426612854, + 0.9900836944580078, + 0.9961238503456116, + 0.9988983869552612, + 0.9987140893936157, + 0.9989005327224731, + 0.9988413453102112, + 0.9989263415336609, + 0.9983505010604858, + 0.9955263733863831, + 0.998661994934082, + 0.9925017356872559, + 0.9952307343482971, + 0.9794915914535522, + 0.9989145994186401, + 0.9930711388587952, + 0.9995056390762329, + 0.9995031356811523, + 0.9988532066345215, + 0.9989294409751892, + 0.9944761395454407, + 0.9985754489898682, + 0.9994872808456421, + 0.9943222999572754, + 0.9988588094711304, + 0.9989184141159058, + 0.9945477843284607, + 0.9941470623016357, + 0.998838484287262, + 0.9989282488822937, + 0.9993680119514465, + 0.9989318251609802 + ], + "sentiment_counts": { + "NEGATIVE": 11, + "POSITIVE": 21 + }, + "sentiment_distribution": { + "NEGATIVE": 0.34375, + "POSITIVE": 0.65625 + }, + "sentiment_overall": [ + "POSITIVE", + 0.65625 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9991669654846191, + 0.9981873631477356, + 0.9981412887573242, + 0.9988307356834412, + 0.9980031847953796, + 0.9988203644752502, + 0.9989261031150818, + 0.9984983205795288, + 0.9987694621086121, + 0.9985944628715515, + 0.9988443851470947, + 0.9969674944877625, + 0.9989293217658997, + 0.9961028099060059, + 0.9989351630210876, + 0.9961944818496704, + 0.997117280960083, + 0.9995146989822388, + 0.9995120763778687, + 0.9988641738891602, + 0.9988515377044678, + 0.9988190531730652, + 0.9994561076164246, + 0.9925585985183716, + 0.9989370703697205, + 0.9988916516304016, + 0.9989290833473206, + 0.9989917874336243, + 0.9988705515861511, + 0.998723566532135, + 0.9989326596260071, + 0.9953369498252869, + 0.9989330172538757 + ], + "sentiment_counts": { + "NEGATIVE": 9, + "POSITIVE": 24 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2727272727272727, + "POSITIVE": 0.7272727272727273 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7272727272727273 + ] + }, + "final_label": "POSITIVE", + "final_count": 70, + "final_proportion": 0.7608695652173914, + "final_counts": { + "POSITIVE": 70, + "NEGATIVE": 22 + }, + "final_distribution": { + "POSITIVE": 0.7608695652173914, + "NEGATIVE": 0.2391304347826087 + } + } }, { "season_code": "202303", @@ -266766,7 +542415,7 @@ "13:30", "14:20", "HQ 313 - Humanities Quadrangle 313", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -266783,7 +542432,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -266814,7 +542491,7 @@ "14:30", "15:20", "HQ 313 - Humanities Quadrangle 313", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -266831,7 +542508,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -266862,7 +542567,7 @@ "9:25", "10:15", "WLH 210 - William L. Harkness Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -266879,7 +542584,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -266910,7 +542643,7 @@ "10:30", "11:20", "WLH 210 - William L. Harkness Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -266927,7 +542660,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -266958,7 +542719,7 @@ "13:30", "14:20", "WTS A39 - Watson Center 60 Sachem Street A39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -266975,7 +542736,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -267006,7 +542795,7 @@ "14:30", "15:20", "WTS A39 - Watson Center 60 Sachem Street A39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -267023,7 +542812,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -267054,7 +542871,7 @@ "9:25", "10:15", "HQ 209 - Humanities Quadrangle 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -267071,7 +542888,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -267102,7 +542947,7 @@ "10:30", "11:20", "HQ 209 - Humanities Quadrangle 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -267119,7 +542964,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -267157,7 +543030,7 @@ "9:25", "11:15", "RKZ 301 - Rosenkranz Hall 301", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -267174,10 +543047,38 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92352\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/92352/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -267215,7 +543116,7 @@ "13:30", "15:20", "RKZ 04 - Rosenkranz Hall 04", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -267231,10 +543132,111 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92353\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92353/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989271759986877, + 0.9989074468612671, + 0.9988466501235962, + 0.9989029169082642, + 0.9988614320755005, + 0.9987629652023315 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989381432533264, + 0.9987595081329346, + 0.9988889098167419, + 0.9928950667381287, + 0.9928399324417114 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.6, + "NEGATIVE": 0.4 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989176988601685, + 0.9989112615585327, + 0.9989379048347473, + 0.9989088773727417, + 0.9988774657249451, + 0.9974592328071594 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 0.8823529411764706, + "final_counts": { + "POSITIVE": 15, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8823529411764706, + "NEGATIVE": 0.11764705882352941 + } + } }, { "season_code": "202303", @@ -267273,7 +543275,7 @@ "13:30", "15:20", "RKZ 102 - Rosenkranz Hall 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -267287,10 +543289,81 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92678\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92678/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988137483596802 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989209175109863 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981632828712463 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 3, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 3 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -267336,7 +543409,7 @@ "13:00", "14:15", "HQ 132 - Humanities Quadrangle 132", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -267344,7 +543417,7 @@ "13:00", "14:15", "HQ 132 - Humanities Quadrangle 132", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -267360,10 +543433,87 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88370\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88370/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988937973976135, + 0.9988699555397034 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9950098991394043, + 0.9987722039222717 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988951086997986, + 0.9988582134246826 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 6 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -267404,7 +543554,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -267444,7 +543622,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -267484,7 +543690,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -267522,7 +543756,7 @@ "9:00", "10:15", "LC 317 - Linsly-Chittenden Hall 317", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -267530,7 +543764,7 @@ "9:00", "10:15", "LC 317 - Linsly-Chittenden Hall 317", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -267547,10 +543781,97 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88588\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88588/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989141225814819, + 0.9982353448867798 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9959217309951782, + 0.9973158240318298, + 0.9995033740997314, + 0.9989996552467346, + 0.9976925849914551 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.4, + "NEGATIVE": 0.6 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.6 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9980652928352356, + 0.999498724937439, + 0.9977651834487915 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 1 + }, + "sentiment_distribution": { + "NEGATIVE": 0.6666666666666666, + "POSITIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.6666666666666666 + ] + }, + "final_label": "neutral", + "final_count": 0.5, + "final_proportion": 0.5, + "final_counts": { + "POSITIVE": 5, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + } + } }, { "season_code": "202303", @@ -267588,7 +543909,7 @@ "15:30", "17:20", "RKZ 02 - Rosenkranz Hall 02", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -267606,10 +543927,93 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92391\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92391/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988240599632263, + 0.9988266825675964, + 0.9988541603088379 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988994598388672, + 0.998897910118103 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.997117280960083, + 0.9989073276519775, + 0.9987927675247192, + 0.9988981485366821 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 9 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -267647,7 +544051,7 @@ "13:30", "15:20", "PR77 A001 - 77 Prospect Street A001", - "https:\/\/map.yale.edu\/?id=1910#!m\/559939" + "https://map.yale.edu/?id=1910#!m/559939" ] ] }, @@ -267663,10 +544067,91 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88992\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88992/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987382292747498 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989124536514282, + 0.9989053010940552, + 0.9988492727279663 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989155530929565, + 0.9984466433525085, + 0.9988706707954407, + 0.9981794357299805 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 8, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 8 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -267704,7 +544189,7 @@ "10:30", "11:20", "HQ L01 - Humanities Quadrangle L01", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -267712,7 +544197,7 @@ "10:30", "11:20", "HQ L01 - Humanities Quadrangle L01", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -267729,10 +544214,189 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89718\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89718/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989226460456848, + 0.9987402558326721, + 0.9995079040527344, + 0.9988216757774353, + 0.9924526810646057, + 0.9986251592636108, + 0.9989036321640015, + 0.998913049697876, + 0.9985986351966858, + 0.9988297820091248, + 0.9968447685241699, + 0.998902440071106, + 0.9986924529075623, + 0.998740017414093, + 0.9987524747848511, + 0.9989091157913208 + ], + "sentiment_counts": { + "POSITIVE": 15, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9375, + "NEGATIVE": 0.0625 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9375 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9976438879966736, + 0.9958683252334595, + 0.9988584518432617, + 0.9988880753517151, + 0.9906966686248779, + 0.9968430995941162, + 0.9989088773727417, + 0.9989174604415894, + 0.9989070892333984, + 0.9989103078842163, + 0.9980913996696472, + 0.9988962411880493, + 0.9987447261810303, + 0.9989207983016968, + 0.9986220598220825, + 0.99892657995224, + 0.99294513463974, + 0.9989174604415894, + 0.9989270567893982 + ], + "sentiment_counts": { + "POSITIVE": 16, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.8421052631578947, + "NEGATIVE": 0.15789473684210525 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8421052631578947 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989269375801086, + 0.9989192485809326, + 0.9989237189292908, + 0.9984410405158997, + 0.9995038509368896, + 0.9989089965820312, + 0.9989033937454224, + 0.9989198446273804, + 0.9989225268363953, + 0.9989080429077148, + 0.9989197254180908, + 0.9989323019981384, + 0.9988860487937927, + 0.9989162683486938, + 0.9975879192352295, + 0.9989354014396667, + 0.9977418184280396, + 0.9988791346549988, + 0.9973868727684021, + 0.9989398121833801, + 0.9988893866539001 + ], + "sentiment_counts": { + "POSITIVE": 19, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.9047619047619048, + "NEGATIVE": 0.09523809523809523 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9047619047619048 + ] + }, + "final_label": "POSITIVE", + "final_count": 50, + "final_proportion": 0.8928571428571429, + "final_counts": { + "POSITIVE": 50, + "NEGATIVE": 6 + }, + "final_distribution": { + "POSITIVE": 0.8928571428571429, + "NEGATIVE": 0.10714285714285714 + } + } }, { "season_code": "202303", @@ -267764,7 +544428,7 @@ "15:30", "16:20", "WALL53 108 - 53 Wall Street 108", - "https:\/\/map.yale.edu\/?id=1910#!m\/559554" + "https://map.yale.edu/?id=1910#!m/559554" ] ] }, @@ -267784,7 +544448,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -267816,7 +544508,7 @@ "16:30", "17:20", "WALL53 108 - 53 Wall Street 108", - "https:\/\/map.yale.edu\/?id=1910#!m\/559554" + "https://map.yale.edu/?id=1910#!m/559554" ] ] }, @@ -267836,7 +544528,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -267868,7 +544588,7 @@ "9:25", "10:15", "WTS A30 - Watson Center 60 Sachem Street A30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -267888,7 +544608,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -267920,7 +544668,7 @@ "10:30", "11:20", "WTS A74 - Watson Center 60 Sachem Street A74", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -267940,7 +544688,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -267977,7 +544753,7 @@ "10:30", "11:20", "WLH 207 - William L. Harkness Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -267985,7 +544761,7 @@ "10:30", "11:20", "WLH 207 - William L. Harkness Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -268001,10 +544777,131 @@ "classnotes": "", "final_exam": "Monday, December 18, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89159\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89159/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9994834661483765, + 0.9988874793052673, + 0.9987932443618774, + 0.998878538608551, + 0.9987022876739502, + 0.998909592628479, + 0.9988400340080261, + 0.9995107650756836, + 0.9995028972625732 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 6 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9935883283615112, + 0.9984728693962097, + 0.9934188723564148, + 0.9930012226104736, + 0.97788405418396, + 0.9951059818267822, + 0.9988054037094116, + 0.9990184307098389, + 0.9992031455039978 + ], + "sentiment_counts": { + "NEGATIVE": 7, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.7777777777777778, + "POSITIVE": 0.2222222222222222 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.7777777777777778 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9991280436515808, + 0.9994983673095703, + 0.9987687468528748, + 0.9994889497756958, + 0.9761476516723633, + 0.9994877576828003, + 0.9995120763778687, + 0.9994283318519592, + 0.9995046854019165 + ], + "sentiment_counts": { + "NEGATIVE": 7, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.7777777777777778, + "POSITIVE": 0.2222222222222222 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.7777777777777778 + ] + }, + "final_label": "NEGATIVE", + "final_count": 17, + "final_proportion": 0.6296296296296297, + "final_counts": { + "NEGATIVE": 17, + "POSITIVE": 10 + }, + "final_distribution": { + "NEGATIVE": 0.6296296296296297, + "POSITIVE": 0.37037037037037035 + } + } }, { "season_code": "202303", @@ -268035,7 +544932,7 @@ "14:30", "15:20", "RKZ 06 - Rosenkranz Hall 06", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -268054,7 +544951,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -268112,7 +545037,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -268143,7 +545096,7 @@ "15:30", "16:20", "RKZ 04 - Rosenkranz Hall 04", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -268162,7 +545115,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -268193,7 +545174,7 @@ "19:00", "19:50", "BASSLB L70 - Bass Library L70", - "https:\/\/map.yale.edu\/?id=1910#!m\/564574" + "https://map.yale.edu/?id=1910#!m/564574" ] ] }, @@ -268212,7 +545193,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -268251,7 +545260,7 @@ "13:30", "15:20", "RKZ 301 - Rosenkranz Hall 301", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -268270,10 +545279,111 @@ "classnotes": "This course requires instructor permission. Please submit the topics or features of this course you would find particularly interesting.", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89000\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89000/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986429810523987, + 0.9989018440246582, + 0.9988251328468323, + 0.9988858103752136, + 0.9988903403282166 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9958943128585815, + 0.9989244341850281, + 0.9988930821418762, + 0.9973253011703491, + 0.9988769888877869 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988662004470825, + 0.9983739852905273, + 0.9988710284233093, + 0.9989224672317505, + 0.9974098801612854, + 0.998907208442688, + 0.9988337159156799, + 0.9989137649536133 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 18 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -268311,7 +545421,7 @@ "15:30", "17:20", "PR77 A001 - 77 Prospect Street A001", - "https:\/\/map.yale.edu\/?id=1910#!m\/559939" + "https://map.yale.edu/?id=1910#!m/559939" ] ] }, @@ -268327,10 +545437,93 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88993\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88993/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988582134246826, + 0.9987620115280151, + 0.9981456995010376 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988548755645752, + 0.9987963438034058, + 0.998836100101471 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987027645111084, + 0.9954010248184204, + 0.9989375472068787 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 9 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -268369,7 +545562,7 @@ "9:25", "11:15", "WALL81 101 - 81 Wall Street 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -268394,10 +545587,111 @@ "classnotes": "Please check the canvas site on more information about this course before emailing the instructor.\n\nThis course requires instructor permission. Please list your major, class year, GPA, relevant courses or work experience, reason for taking the course or a brief note on how the course fits into your academic plans, whether for senior essay or not. ", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89641\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89641/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988753199577332, + 0.9989223480224609, + 0.9989107847213745, + 0.9988318085670471, + 0.9989290833473206, + 0.9985527396202087 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998619556427002, + 0.9988075494766235, + 0.9988970756530762, + 0.9988648891448975, + 0.9980946183204651 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9951049089431763, + 0.998863935470581, + 0.9988999366760254, + 0.9836829304695129, + 0.9973142743110657, + 0.9988669157028198 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 5 + }, + "sentiment_distribution": { + "NEGATIVE": 0.16666666666666666, + "POSITIVE": 0.8333333333333334 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 0.9411764705882353, + "final_counts": { + "POSITIVE": 16, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9411764705882353, + "NEGATIVE": 0.058823529411764705 + } + } }, { "season_code": "202303", @@ -268434,7 +545728,7 @@ "15:30", "17:20", "RKZ 202 - Rosenkranz Hall 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -268450,10 +545744,105 @@ "classnotes": "This course requires instructor permission. Please submit the following information: class year, major, cumulative GPA, previous courses or non-classroom experience related to the course, and the basis of interest in the course.", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90507\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90507/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986660480499268, + 0.9988541603088379, + 0.9986774325370789, + 0.9988138675689697, + 0.998792290687561 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988279938697815, + 0.9988792538642883, + 0.9989320635795593, + 0.998884379863739, + 0.9988718628883362 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988728165626526, + 0.9989239573478699, + 0.9989340901374817, + 0.9989227652549744, + 0.9989022016525269 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 15 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -268490,7 +545879,7 @@ "14:30", "15:20", "HLH17 115 - 17 Hillhouse Avenue 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Wednesday": [ @@ -268498,7 +545887,7 @@ "14:30", "15:20", "HLH17 115 - 17 Hillhouse Avenue 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -268516,10 +545905,133 @@ "classnotes": "", "final_exam": "Sunday, December 17, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92178\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92178/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987032413482666, + 0.9987310767173767, + 0.9942469596862793, + 0.9975458979606628, + 0.9988535642623901, + 0.9985609650611877, + 0.9988192915916443 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989079236984253, + 0.9988685846328735, + 0.9988731741905212, + 0.998932421207428, + 0.9988588094711304, + 0.9988930821418762, + 0.9988228678703308, + 0.9989224672317505, + 0.9984368681907654 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9979405999183655, + 0.9989185333251953, + 0.9988719820976257, + 0.9989268183708191, + 0.9965987801551819, + 0.9989359974861145, + 0.9989219903945923, + 0.9988981485366821, + 0.9989175796508789, + 0.9639021158218384, + 0.9988430738449097, + 0.9918198585510254 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 26, + "final_proportion": 0.9285714285714286, + "final_counts": { + "POSITIVE": 26, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9285714285714286, + "NEGATIVE": 0.07142857142857142 + } + } }, { "season_code": "202303", @@ -268550,7 +546062,7 @@ "9:25", "10:15", "HLH17 115 - 17 Hillhouse Avenue 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -268570,7 +546082,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -268601,7 +546141,7 @@ "10:30", "11:20", "HLH17 115 - 17 Hillhouse Avenue 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -268621,7 +546161,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -268660,7 +546228,7 @@ "13:30", "15:20", "RKZ 301 - Rosenkranz Hall 301", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -268681,10 +546249,119 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89001\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89001/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987577199935913, + 0.9983678460121155, + 0.9979947805404663, + 0.9988402724266052, + 0.9987201690673828, + 0.9989223480224609, + 0.9986342787742615 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988634586334229, + 0.998666524887085, + 0.998935878276825, + 0.9994970560073853, + 0.9989303946495056, + 0.9989047050476074, + 0.998907208442688, + 0.998487114906311 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9912651181221008, + 0.9987105131149292, + 0.9988313317298889, + 0.9989270567893982, + 0.9989234805107117, + 0.9994995594024658 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 4 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 0.8095238095238095, + "final_counts": { + "POSITIVE": 17, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.8095238095238095, + "NEGATIVE": 0.19047619047619047 + } + } }, { "season_code": "202303", @@ -268722,7 +546399,7 @@ "18:30", "20:20", "HLH31 108 - 31 Hillhouse Avenue 108", - "https:\/\/map.yale.edu\/?id=1910#!m\/559990" + "https://map.yale.edu/?id=1910#!m/559990" ] ] }, @@ -268738,10 +546415,113 @@ "classnotes": "Preregistration for this course is for EPE and PLSC majors only and the application form can be found on epe.yale.edu. In one paragraph, please explain your interest and make sure to include your class year and major.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88926\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88926/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981264472007751, + 0.998854398727417, + 0.9987370371818542, + 0.9988790154457092, + 0.9966586828231812, + 0.9986957907676697, + 0.9988609552383423 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988405108451843, + 0.998913049697876, + 0.9985961318016052, + 0.9986857771873474, + 0.998938262462616 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989097118377686, + 0.9988582134246826, + 0.9989184141159058, + 0.9989275336265564, + 0.9919705390930176, + 0.9989226460456848, + 0.9989050626754761 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 19 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -268779,7 +546559,7 @@ "13:30", "15:20", "WTS A42 - Watson Center 60 Sachem Street A42", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -268795,10 +546575,121 @@ "classnotes": "Lecturer Eleanor Schiff will be the instructor for this course, and Mira Debs is coordinating spring registration. Priority is given to students in the Education Studies program (Scholar and Certificate, PoliSci majors and then by course year. Please indicate your interest in the course as well as major, EDST program and whether you've taken EDST 110 when you request permission. ", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89315\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89315/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989320635795593, + 0.9986764788627625, + 0.9988188147544861, + 0.9988217949867249, + 0.9989272952079773, + 0.9987146854400635, + 0.998809814453125 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989213943481445, + 0.9988897442817688, + 0.9989352822303772, + 0.9989336133003235, + 0.998915433883667, + 0.9988200068473816, + 0.9989243149757385, + 0.9989070892333984 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989249110221863, + 0.9988890290260315, + 0.9989172220230103, + 0.9985882639884949, + 0.9989054203033447, + 0.9986616373062134, + 0.9987831711769104, + 0.9988707900047302 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 23, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 23 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -268836,7 +546727,7 @@ "13:30", "15:20", "WLH 112 - William L. Harkness Hall 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -268856,10 +546747,151 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90504\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90504/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989103078842163, + 0.9989066123962402, + 0.9989203214645386, + 0.9987109899520874, + 0.9987649917602539, + 0.9987152814865112, + 0.998884379863739, + 0.9988817572593689, + 0.9981233477592468, + 0.9988403916358948, + 0.9988676309585571, + 0.9989094734191895 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989264607429504, + 0.9989283680915833, + 0.9986377358436584, + 0.9989169836044312, + 0.9988800883293152, + 0.9900264739990234, + 0.9988886713981628, + 0.9989290833473206, + 0.9989180564880371, + 0.9989356398582458, + 0.9988918900489807, + 0.9989092350006104 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982553124427795, + 0.9989264607429504, + 0.9989138841629028, + 0.9988846182823181, + 0.9989277720451355, + 0.9989349246025085, + 0.9988644123077393, + 0.9989233613014221, + 0.9989345669746399, + 0.9994413256645203, + 0.9989206790924072, + 0.9988952279090881, + 0.9989073276519775 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9230769230769231, + "NEGATIVE": 0.07692307692307693 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9230769230769231 + ] + }, + "final_label": "POSITIVE", + "final_count": 36, + "final_proportion": 0.972972972972973, + "final_counts": { + "POSITIVE": 36, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.972972972972973, + "NEGATIVE": 0.02702702702702703 + } + } }, { "season_code": "202303", @@ -268897,7 +546929,7 @@ "13:30", "15:20", "RKZ 05 - Rosenkranz Hall 05", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -268913,10 +546945,119 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88994\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88994/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998710036277771, + 0.998879611492157, + 0.9985159039497375, + 0.998892605304718, + 0.9984787106513977, + 0.9986811280250549, + 0.9988356232643127 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989367127418518, + 0.9989293217658997, + 0.9950376152992249, + 0.9989080429077148, + 0.998881995677948, + 0.998900294303894 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986936450004578, + 0.9971778392791748, + 0.9988695979118347, + 0.9987679123878479, + 0.9989317059516907, + 0.9966506361961365, + 0.9985800981521606, + 0.9988189339637756, + 0.9989081621170044 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 22, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 22 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -268955,7 +547096,7 @@ "15:30", "17:20", "RKZ 02 - Rosenkranz Hall 02", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -268964,21 +547105,132 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", - "YC English: 20th\/21st Century", + "YC English: 20th/21st Century", "YC English: Junior Seminar", "YC PLSC: American Govt" ], "regnotes": "", "rp_attr": "", - "classnotes": "This course requires instructor permission. It is available only to upper-class students. Journalism experience is not required. However excellent writing skills are essential. Applicants must submit the following: Class\/Major\/GPA\/Previous related courses or experience\/paragraph stating the basis of your interest in this course.", + "classnotes": "This course requires instructor permission. It is available only to upper-class students. Journalism experience is not required. However excellent writing skills are essential. Applicants must submit the following: Class/Major/GPA/Previous related courses or experience/paragraph stating the basis of your interest in this course.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89038\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89038/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988344311714172, + 0.9988247752189636, + 0.998836100101471, + 0.9989027976989746, + 0.9989182949066162, + 0.9988915324211121, + 0.998763918876648 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983536005020142, + 0.9989163875579834, + 0.9988166093826294, + 0.9988476037979126, + 0.9983481168746948, + 0.9989200830459595, + 0.9989365935325623, + 0.9989151954650879 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986491799354553, + 0.9989094734191895, + 0.9989135265350342, + 0.9988943934440613, + 0.9951733946800232, + 0.9989062547683716, + 0.998928964138031, + 0.9943826198577881 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 23, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 23 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -269015,7 +547267,7 @@ "13:30", "15:20", "WLH 204 - William L. Harkness Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -269031,10 +547283,121 @@ "classnotes": "This course requires instructor permission. Please submit the following information: 1. What do you hope to gain from this course? 2. Tell me about you experiences in New Haven outside of Yale. 3. Tell me something about your hometown. ", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89029\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89029/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9964976906776428, + 0.9987640380859375, + 0.9988237023353577, + 0.9978930354118347, + 0.9989186525344849, + 0.9989268183708191, + 0.998924195766449 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9883649349212646, + 0.9977245926856995, + 0.9989162683486938, + 0.9979321956634521, + 0.9989303946495056, + 0.998914361000061, + 0.9989198446273804 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988141059875488, + 0.9990949630737305, + 0.9988870024681091, + 0.9988952875137329, + 0.9989190101623535, + 0.9989301562309265, + 0.9989187717437744, + 0.9989356398582458 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 0.9090909090909091, + "final_counts": { + "POSITIVE": 20, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + } + } }, { "season_code": "202303", @@ -269075,7 +547438,7 @@ "9:25", "11:15", "HQ C07 - Humanities Quadrangle C07", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -269097,10 +547460,93 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89002\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89002/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998885452747345, + 0.9988933205604553 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985866546630859, + 0.9988686442375183 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 1 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9983514547348022, + 0.9988250136375427, + 0.9973405003547668, + 0.999376118183136 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "final_label": "POSITIVE", + "final_count": 5, + "final_proportion": 0.625, + "final_counts": { + "POSITIVE": 5, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.625, + "NEGATIVE": 0.375 + } + } }, { "season_code": "202303", @@ -269138,7 +547584,7 @@ "13:30", "14:20", "WLH 116 - William L. Harkness Hall 116", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -269146,7 +547592,7 @@ "13:30", "14:20", "WLH 116 - William L. Harkness Hall 116", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -269162,10 +547608,113 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88909\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88909/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982479810714722, + 0.9978498220443726, + 0.9988831877708435, + 0.9989066123962402, + 0.9989014863967896 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9976699948310852, + 0.9994854927062988, + 0.9897997379302979, + 0.998711347579956, + 0.9984570741653442, + 0.9973670840263367, + 0.9989123344421387 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.5714285714285714, + "NEGATIVE": 0.42857142857142855 + }, + "sentiment_overall": [ + "POSITIVE", + 0.5714285714285714 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988833069801331, + 0.9980897307395935, + 0.9988112449645996, + 0.9989319443702698, + 0.9985963702201843, + 0.9985373020172119 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 0.6111111111111112, + "final_counts": { + "POSITIVE": 11, + "NEGATIVE": 7 + }, + "final_distribution": { + "POSITIVE": 0.6111111111111112, + "NEGATIVE": 0.3888888888888889 + } + } }, { "season_code": "202303", @@ -269197,7 +547746,7 @@ "10:30", "11:20", "BM 013 - Bingham Hall 013", - "https:\/\/map.yale.edu\/?id=1910#!m\/559569" + "https://map.yale.edu/?id=1910#!m/559569" ] ] }, @@ -269216,7 +547765,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -269248,7 +547825,7 @@ "10:30", "11:20", "LC 213 - Linsly-Chittenden Hall 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -269267,7 +547844,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -269299,7 +547904,7 @@ "14:30", "15:20", "WLH 007 - William L. Harkness Hall 007", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -269318,7 +547923,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -269350,7 +547983,7 @@ "14:30", "15:20", "BASSLB L70 - Bass Library L70", - "https:\/\/map.yale.edu\/?id=1910#!m\/564574" + "https://map.yale.edu/?id=1910#!m/564574" ] ] }, @@ -269369,7 +548002,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -269401,7 +548062,7 @@ "16:30", "17:20", "WLH 009 - William L. Harkness Hall 009", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -269420,7 +548081,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -269452,7 +548141,7 @@ "16:30", "17:20", "WLH 001 - William L. Harkness Hall 001", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -269471,7 +548160,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -269513,7 +548230,7 @@ "15:30", "17:20", "WLH 112 - William L. Harkness Hall 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -269529,15 +548246,43 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88614\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88614/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "Welcome to\u00a0Gender, Justice, Power & Institutions, a mouthful of abstractions that we work together to\u00a0comprehend and critique throughout the semester. An aspiration of this course, as political as it is pedagogic, is that students approach their world-building projects with an enriched understanding of the ways gender, justice, and power shape and are shaped by institutions, inequality, and theory.\u00a0Part I opens up some preliminary considerations of our course terms by investigating the case of abortion, abortion rights, and reproductive justice.\u00a0 The topic is politically loaded, philosophically complex, and emotionally challenging; the point is not to convince you of the permissibility or impermissibility of abortion, but to explore how the contested case configures, imbricates, and puts pressure on our course terms.\u00a0In Part II,\u00a0we examine the historical and conceptual coordinates of the courses first three titular terms: is\u00a0gender\u00a0a subjective identification, social ascription, or axis of inequality? Is\u00a0justice\u00a0a matter of redistribution, recognition, resources, capabilities, or something more hedonic? Where is\u00a0power\u00a0located, or where does it circulate? Who are what leverages power?\u00a0In Part III, we consider ways gender, justice, and power travel within and across several institutions: heterosexuality, the university, the trafficking\/anti-trafficking\u00a0industrial\u00a0complex, the prison, and the bathroom.\u00a0Part IV closes out the course by focusing on the reconfiguration of democratic institutions in late modernity; or, can institutions \"love us back\" under the the political economy we shorthand as \"neoliberalism\"?", + "description": "Welcome to\u00a0Gender, Justice, Power & Institutions, a mouthful of abstractions that we work together to\u00a0comprehend and critique throughout the semester. An aspiration of this course, as political as it is pedagogic, is that students approach their world-building projects with an enriched understanding of the ways gender, justice, and power shape and are shaped by institutions, inequality, and theory.\u00a0Part I opens up some preliminary considerations of our course terms by investigating the case of abortion, abortion rights, and reproductive justice.\u00a0 The topic is politically loaded, philosophically complex, and emotionally challenging; the point is not to convince you of the permissibility or impermissibility of abortion, but to explore how the contested case configures, imbricates, and puts pressure on our course terms.\u00a0In Part II,\u00a0we examine the historical and conceptual coordinates of the courses first three titular terms: is\u00a0gender\u00a0a subjective identification, social ascription, or axis of inequality? Is\u00a0justice\u00a0a matter of redistribution, recognition, resources, capabilities, or something more hedonic? Where is\u00a0power\u00a0located, or where does it circulate? Who are what leverages power?\u00a0In Part III, we consider ways gender, justice, and power travel within and across several institutions: heterosexuality, the university, the trafficking/anti-trafficking\u00a0industrial\u00a0complex, the prison, and the bathroom.\u00a0Part IV closes out the course by focusing on the reconfiguration of democratic institutions in late modernity; or, can institutions \"love us back\" under the the political economy we shorthand as \"neoliberalism\"?", "short_title": "Gender, Justice, Power, Insti...", "title": "Gender, Justice, Power, Institutions", "school": "YC", @@ -269570,7 +548315,7 @@ "10:30", "11:20", "LUCE 101 - Luce Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ], "Thursday": [ @@ -269578,7 +548323,7 @@ "10:30", "11:20", "LUCE 101 - Luce Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ] }, @@ -269595,15 +548340,198 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88553\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88553/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "", - "description": "Welcome to\u00a0Gender, Justice, Power & Institutions, a mouthful of abstractions that we work together to\u00a0comprehend and critique throughout the semester. An aspiration of this course, as political as it is pedagogic, is that students approach their world-building projects with an enriched understanding of the ways gender, justice, and power shape and are shaped by institutions, inequality, and theory.\u00a0Part I opens up some preliminary considerations of our course terms by investigating the case of abortion, abortion rights, and reproductive justice.\u00a0 The topic is politically loaded, philosophically complex, and emotionally challenging; the point is not to convince you of the permissibility or impermissibility of abortion, but to explore how the contested case configures, imbricates, and puts pressure on our course terms.\u00a0In Part II,\u00a0we examine the historical and conceptual coordinates of the courses first three titular terms: is\u00a0gender\u00a0a subjective identification, social ascription, or axis of inequality? Is\u00a0justice\u00a0a matter of redistribution, recognition, resources, capabilities, or something more hedonic? Where is\u00a0power\u00a0located, or where does it circulate? Who are what leverages power?\u00a0In Part III, we consider ways gender, justice, and power travel within and across several institutions: heterosexuality, the university, the trafficking\/anti-trafficking\u00a0industrial\u00a0complex, the prison, and the bathroom.\u00a0Part IV closes out the course by focusing on the reconfiguration of democratic institutions in late modernity; or, can institutions \"love us back\" under the the political economy we shorthand as \"neoliberalism\"?", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988067150115967, + 0.9988301396369934, + 0.9932726621627808, + 0.9988971948623657, + 0.9995019435882568, + 0.9989131689071655, + 0.9995061159133911, + 0.9989249110221863, + 0.9988406300544739, + 0.9987732768058777, + 0.998728334903717, + 0.9988875985145569, + 0.9987615346908569, + 0.9989246726036072, + 0.9988441467285156, + 0.9986891150474548, + 0.9988756775856018, + 0.9989092350006104, + 0.998691976070404 + ], + "sentiment_counts": { + "POSITIVE": 16, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.8421052631578947, + "NEGATIVE": 0.15789473684210525 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8421052631578947 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987912774085999, + 0.9988617897033691, + 0.9994957447052002, + 0.9989109039306641, + 0.9987733960151672, + 0.8841562867164612, + 0.9977545142173767, + 0.998450517654419, + 0.9987388253211975, + 0.998902440071106, + 0.9989011287689209, + 0.9976153373718262, + 0.9988916516304016, + 0.9985124468803406, + 0.9929475784301758, + 0.9985986351966858, + 0.9989114999771118, + 0.9989117383956909 + ], + "sentiment_counts": { + "POSITIVE": 16, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989014863967896, + 0.9989308714866638, + 0.9986067414283752, + 0.9988228678703308, + 0.9988584518432617, + 0.9986961483955383, + 0.9995061159133911, + 0.9988693594932556, + 0.9945303797721863, + 0.9988400340080261, + 0.9988208413124084, + 0.9989256262779236, + 0.998881995677948, + 0.9989209175109863, + 0.9988400340080261, + 0.9989179372787476, + 0.9988082647323608, + 0.9989058971405029, + 0.9988512992858887, + 0.9980536699295044, + 0.9988530874252319 + ], + "sentiment_counts": { + "POSITIVE": 20, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9523809523809523, + "NEGATIVE": 0.047619047619047616 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9523809523809523 + ] + }, + "final_label": "POSITIVE", + "final_count": 52, + "final_proportion": 0.896551724137931, + "final_counts": { + "POSITIVE": 52, + "NEGATIVE": 6 + }, + "final_distribution": { + "POSITIVE": 0.896551724137931, + "NEGATIVE": 0.10344827586206896 + } + } + }, + { + "season_code": "202303", + "requirements": "", + "description": "Welcome to\u00a0Gender, Justice, Power & Institutions, a mouthful of abstractions that we work together to\u00a0comprehend and critique throughout the semester. An aspiration of this course, as political as it is pedagogic, is that students approach their world-building projects with an enriched understanding of the ways gender, justice, and power shape and are shaped by institutions, inequality, and theory.\u00a0Part I opens up some preliminary considerations of our course terms by investigating the case of abortion, abortion rights, and reproductive justice.\u00a0 The topic is politically loaded, philosophically complex, and emotionally challenging; the point is not to convince you of the permissibility or impermissibility of abortion, but to explore how the contested case configures, imbricates, and puts pressure on our course terms.\u00a0In Part II,\u00a0we examine the historical and conceptual coordinates of the courses first three titular terms: is\u00a0gender\u00a0a subjective identification, social ascription, or axis of inequality? Is\u00a0justice\u00a0a matter of redistribution, recognition, resources, capabilities, or something more hedonic? Where is\u00a0power\u00a0located, or where does it circulate? Who are what leverages power?\u00a0In Part III, we consider ways gender, justice, and power travel within and across several institutions: heterosexuality, the university, the trafficking/anti-trafficking\u00a0industrial\u00a0complex, the prison, and the bathroom.\u00a0Part IV closes out the course by focusing on the reconfiguration of democratic institutions in late modernity; or, can institutions \"love us back\" under the the political economy we shorthand as \"neoliberalism\"?", "short_title": "Gender, Justice, Power, Insti...", "title": "Gender, Justice, Power, Institutions", "school": "YC", @@ -269630,7 +548558,7 @@ "9:25", "10:15", "HQ C65 - Humanities Quadrangle C65", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -269650,12 +548578,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "Welcome to\u00a0Gender, Justice, Power & Institutions, a mouthful of abstractions that we work together to\u00a0comprehend and critique throughout the semester. An aspiration of this course, as political as it is pedagogic, is that students approach their world-building projects with an enriched understanding of the ways gender, justice, and power shape and are shaped by institutions, inequality, and theory.\u00a0Part I opens up some preliminary considerations of our course terms by investigating the case of abortion, abortion rights, and reproductive justice.\u00a0 The topic is politically loaded, philosophically complex, and emotionally challenging; the point is not to convince you of the permissibility or impermissibility of abortion, but to explore how the contested case configures, imbricates, and puts pressure on our course terms.\u00a0In Part II,\u00a0we examine the historical and conceptual coordinates of the courses first three titular terms: is\u00a0gender\u00a0a subjective identification, social ascription, or axis of inequality? Is\u00a0justice\u00a0a matter of redistribution, recognition, resources, capabilities, or something more hedonic? Where is\u00a0power\u00a0located, or where does it circulate? Who are what leverages power?\u00a0In Part III, we consider ways gender, justice, and power travel within and across several institutions: heterosexuality, the university, the trafficking\/anti-trafficking\u00a0industrial\u00a0complex, the prison, and the bathroom.\u00a0Part IV closes out the course by focusing on the reconfiguration of democratic institutions in late modernity; or, can institutions \"love us back\" under the the political economy we shorthand as \"neoliberalism\"?", + "description": "Welcome to\u00a0Gender, Justice, Power & Institutions, a mouthful of abstractions that we work together to\u00a0comprehend and critique throughout the semester. An aspiration of this course, as political as it is pedagogic, is that students approach their world-building projects with an enriched understanding of the ways gender, justice, and power shape and are shaped by institutions, inequality, and theory.\u00a0Part I opens up some preliminary considerations of our course terms by investigating the case of abortion, abortion rights, and reproductive justice.\u00a0 The topic is politically loaded, philosophically complex, and emotionally challenging; the point is not to convince you of the permissibility or impermissibility of abortion, but to explore how the contested case configures, imbricates, and puts pressure on our course terms.\u00a0In Part II,\u00a0we examine the historical and conceptual coordinates of the courses first three titular terms: is\u00a0gender\u00a0a subjective identification, social ascription, or axis of inequality? Is\u00a0justice\u00a0a matter of redistribution, recognition, resources, capabilities, or something more hedonic? Where is\u00a0power\u00a0located, or where does it circulate? Who are what leverages power?\u00a0In Part III, we consider ways gender, justice, and power travel within and across several institutions: heterosexuality, the university, the trafficking/anti-trafficking\u00a0industrial\u00a0complex, the prison, and the bathroom.\u00a0Part IV closes out the course by focusing on the reconfiguration of democratic institutions in late modernity; or, can institutions \"love us back\" under the the political economy we shorthand as \"neoliberalism\"?", "short_title": "Gender, Justice, Power, Insti...", "title": "Gender, Justice, Power, Institutions", "school": "YC", @@ -269682,7 +548638,7 @@ "19:00", "19:50", "BASSLB L70 - Bass Library L70", - "https:\/\/map.yale.edu\/?id=1910#!m\/564574" + "https://map.yale.edu/?id=1910#!m/564574" ] ] }, @@ -269702,12 +548658,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "Welcome to\u00a0Gender, Justice, Power & Institutions, a mouthful of abstractions that we work together to\u00a0comprehend and critique throughout the semester. An aspiration of this course, as political as it is pedagogic, is that students approach their world-building projects with an enriched understanding of the ways gender, justice, and power shape and are shaped by institutions, inequality, and theory.\u00a0Part I opens up some preliminary considerations of our course terms by investigating the case of abortion, abortion rights, and reproductive justice.\u00a0 The topic is politically loaded, philosophically complex, and emotionally challenging; the point is not to convince you of the permissibility or impermissibility of abortion, but to explore how the contested case configures, imbricates, and puts pressure on our course terms.\u00a0In Part II,\u00a0we examine the historical and conceptual coordinates of the courses first three titular terms: is\u00a0gender\u00a0a subjective identification, social ascription, or axis of inequality? Is\u00a0justice\u00a0a matter of redistribution, recognition, resources, capabilities, or something more hedonic? Where is\u00a0power\u00a0located, or where does it circulate? Who are what leverages power?\u00a0In Part III, we consider ways gender, justice, and power travel within and across several institutions: heterosexuality, the university, the trafficking\/anti-trafficking\u00a0industrial\u00a0complex, the prison, and the bathroom.\u00a0Part IV closes out the course by focusing on the reconfiguration of democratic institutions in late modernity; or, can institutions \"love us back\" under the the political economy we shorthand as \"neoliberalism\"?", + "description": "Welcome to\u00a0Gender, Justice, Power & Institutions, a mouthful of abstractions that we work together to\u00a0comprehend and critique throughout the semester. An aspiration of this course, as political as it is pedagogic, is that students approach their world-building projects with an enriched understanding of the ways gender, justice, and power shape and are shaped by institutions, inequality, and theory.\u00a0Part I opens up some preliminary considerations of our course terms by investigating the case of abortion, abortion rights, and reproductive justice.\u00a0 The topic is politically loaded, philosophically complex, and emotionally challenging; the point is not to convince you of the permissibility or impermissibility of abortion, but to explore how the contested case configures, imbricates, and puts pressure on our course terms.\u00a0In Part II,\u00a0we examine the historical and conceptual coordinates of the courses first three titular terms: is\u00a0gender\u00a0a subjective identification, social ascription, or axis of inequality? Is\u00a0justice\u00a0a matter of redistribution, recognition, resources, capabilities, or something more hedonic? Where is\u00a0power\u00a0located, or where does it circulate? Who are what leverages power?\u00a0In Part III, we consider ways gender, justice, and power travel within and across several institutions: heterosexuality, the university, the trafficking/anti-trafficking\u00a0industrial\u00a0complex, the prison, and the bathroom.\u00a0Part IV closes out the course by focusing on the reconfiguration of democratic institutions in late modernity; or, can institutions \"love us back\" under the the political economy we shorthand as \"neoliberalism\"?", "short_title": "Gender, Justice, Power, Insti...", "title": "Gender, Justice, Power, Institutions", "school": "YC", @@ -269734,7 +548718,7 @@ "17:00", "17:50", "HQ C01 - Humanities Quadrangle C01", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -269754,12 +548738,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "Welcome to\u00a0Gender, Justice, Power & Institutions, a mouthful of abstractions that we work together to\u00a0comprehend and critique throughout the semester. An aspiration of this course, as political as it is pedagogic, is that students approach their world-building projects with an enriched understanding of the ways gender, justice, and power shape and are shaped by institutions, inequality, and theory.\u00a0Part I opens up some preliminary considerations of our course terms by investigating the case of abortion, abortion rights, and reproductive justice.\u00a0 The topic is politically loaded, philosophically complex, and emotionally challenging; the point is not to convince you of the permissibility or impermissibility of abortion, but to explore how the contested case configures, imbricates, and puts pressure on our course terms.\u00a0In Part II,\u00a0we examine the historical and conceptual coordinates of the courses first three titular terms: is\u00a0gender\u00a0a subjective identification, social ascription, or axis of inequality? Is\u00a0justice\u00a0a matter of redistribution, recognition, resources, capabilities, or something more hedonic? Where is\u00a0power\u00a0located, or where does it circulate? Who are what leverages power?\u00a0In Part III, we consider ways gender, justice, and power travel within and across several institutions: heterosexuality, the university, the trafficking\/anti-trafficking\u00a0industrial\u00a0complex, the prison, and the bathroom.\u00a0Part IV closes out the course by focusing on the reconfiguration of democratic institutions in late modernity; or, can institutions \"love us back\" under the the political economy we shorthand as \"neoliberalism\"?", + "description": "Welcome to\u00a0Gender, Justice, Power & Institutions, a mouthful of abstractions that we work together to\u00a0comprehend and critique throughout the semester. An aspiration of this course, as political as it is pedagogic, is that students approach their world-building projects with an enriched understanding of the ways gender, justice, and power shape and are shaped by institutions, inequality, and theory.\u00a0Part I opens up some preliminary considerations of our course terms by investigating the case of abortion, abortion rights, and reproductive justice.\u00a0 The topic is politically loaded, philosophically complex, and emotionally challenging; the point is not to convince you of the permissibility or impermissibility of abortion, but to explore how the contested case configures, imbricates, and puts pressure on our course terms.\u00a0In Part II,\u00a0we examine the historical and conceptual coordinates of the courses first three titular terms: is\u00a0gender\u00a0a subjective identification, social ascription, or axis of inequality? Is\u00a0justice\u00a0a matter of redistribution, recognition, resources, capabilities, or something more hedonic? Where is\u00a0power\u00a0located, or where does it circulate? Who are what leverages power?\u00a0In Part III, we consider ways gender, justice, and power travel within and across several institutions: heterosexuality, the university, the trafficking/anti-trafficking\u00a0industrial\u00a0complex, the prison, and the bathroom.\u00a0Part IV closes out the course by focusing on the reconfiguration of democratic institutions in late modernity; or, can institutions \"love us back\" under the the political economy we shorthand as \"neoliberalism\"?", "short_title": "Gender, Justice, Power, Insti...", "title": "Gender, Justice, Power, Institutions", "school": "YC", @@ -269786,7 +548798,7 @@ "17:00", "17:50", "HQ 229 - Humanities Quadrangle 229", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -269806,12 +548818,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "Welcome to\u00a0Gender, Justice, Power & Institutions, a mouthful of abstractions that we work together to\u00a0comprehend and critique throughout the semester. An aspiration of this course, as political as it is pedagogic, is that students approach their world-building projects with an enriched understanding of the ways gender, justice, and power shape and are shaped by institutions, inequality, and theory.\u00a0Part I opens up some preliminary considerations of our course terms by investigating the case of abortion, abortion rights, and reproductive justice.\u00a0 The topic is politically loaded, philosophically complex, and emotionally challenging; the point is not to convince you of the permissibility or impermissibility of abortion, but to explore how the contested case configures, imbricates, and puts pressure on our course terms.\u00a0In Part II,\u00a0we examine the historical and conceptual coordinates of the courses first three titular terms: is\u00a0gender\u00a0a subjective identification, social ascription, or axis of inequality? Is\u00a0justice\u00a0a matter of redistribution, recognition, resources, capabilities, or something more hedonic? Where is\u00a0power\u00a0located, or where does it circulate? Who are what leverages power?\u00a0In Part III, we consider ways gender, justice, and power travel within and across several institutions: heterosexuality, the university, the trafficking\/anti-trafficking\u00a0industrial\u00a0complex, the prison, and the bathroom.\u00a0Part IV closes out the course by focusing on the reconfiguration of democratic institutions in late modernity; or, can institutions \"love us back\" under the the political economy we shorthand as \"neoliberalism\"?", + "description": "Welcome to\u00a0Gender, Justice, Power & Institutions, a mouthful of abstractions that we work together to\u00a0comprehend and critique throughout the semester. An aspiration of this course, as political as it is pedagogic, is that students approach their world-building projects with an enriched understanding of the ways gender, justice, and power shape and are shaped by institutions, inequality, and theory.\u00a0Part I opens up some preliminary considerations of our course terms by investigating the case of abortion, abortion rights, and reproductive justice.\u00a0 The topic is politically loaded, philosophically complex, and emotionally challenging; the point is not to convince you of the permissibility or impermissibility of abortion, but to explore how the contested case configures, imbricates, and puts pressure on our course terms.\u00a0In Part II,\u00a0we examine the historical and conceptual coordinates of the courses first three titular terms: is\u00a0gender\u00a0a subjective identification, social ascription, or axis of inequality? Is\u00a0justice\u00a0a matter of redistribution, recognition, resources, capabilities, or something more hedonic? Where is\u00a0power\u00a0located, or where does it circulate? Who are what leverages power?\u00a0In Part III, we consider ways gender, justice, and power travel within and across several institutions: heterosexuality, the university, the trafficking/anti-trafficking\u00a0industrial\u00a0complex, the prison, and the bathroom.\u00a0Part IV closes out the course by focusing on the reconfiguration of democratic institutions in late modernity; or, can institutions \"love us back\" under the the political economy we shorthand as \"neoliberalism\"?", "short_title": "Gender, Justice, Power, Insti...", "title": "Gender, Justice, Power, Institutions", "school": "YC", @@ -269838,7 +548878,7 @@ "17:00", "17:50", "HQ 225 - Humanities Quadrangle 225", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -269858,12 +548898,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "Welcome to\u00a0Gender, Justice, Power & Institutions, a mouthful of abstractions that we work together to\u00a0comprehend and critique throughout the semester. An aspiration of this course, as political as it is pedagogic, is that students approach their world-building projects with an enriched understanding of the ways gender, justice, and power shape and are shaped by institutions, inequality, and theory.\u00a0Part I opens up some preliminary considerations of our course terms by investigating the case of abortion, abortion rights, and reproductive justice.\u00a0 The topic is politically loaded, philosophically complex, and emotionally challenging; the point is not to convince you of the permissibility or impermissibility of abortion, but to explore how the contested case configures, imbricates, and puts pressure on our course terms.\u00a0In Part II,\u00a0we examine the historical and conceptual coordinates of the courses first three titular terms: is\u00a0gender\u00a0a subjective identification, social ascription, or axis of inequality? Is\u00a0justice\u00a0a matter of redistribution, recognition, resources, capabilities, or something more hedonic? Where is\u00a0power\u00a0located, or where does it circulate? Who are what leverages power?\u00a0In Part III, we consider ways gender, justice, and power travel within and across several institutions: heterosexuality, the university, the trafficking\/anti-trafficking\u00a0industrial\u00a0complex, the prison, and the bathroom.\u00a0Part IV closes out the course by focusing on the reconfiguration of democratic institutions in late modernity; or, can institutions \"love us back\" under the the political economy we shorthand as \"neoliberalism\"?", + "description": "Welcome to\u00a0Gender, Justice, Power & Institutions, a mouthful of abstractions that we work together to\u00a0comprehend and critique throughout the semester. An aspiration of this course, as political as it is pedagogic, is that students approach their world-building projects with an enriched understanding of the ways gender, justice, and power shape and are shaped by institutions, inequality, and theory.\u00a0Part I opens up some preliminary considerations of our course terms by investigating the case of abortion, abortion rights, and reproductive justice.\u00a0 The topic is politically loaded, philosophically complex, and emotionally challenging; the point is not to convince you of the permissibility or impermissibility of abortion, but to explore how the contested case configures, imbricates, and puts pressure on our course terms.\u00a0In Part II,\u00a0we examine the historical and conceptual coordinates of the courses first three titular terms: is\u00a0gender\u00a0a subjective identification, social ascription, or axis of inequality? Is\u00a0justice\u00a0a matter of redistribution, recognition, resources, capabilities, or something more hedonic? Where is\u00a0power\u00a0located, or where does it circulate? Who are what leverages power?\u00a0In Part III, we consider ways gender, justice, and power travel within and across several institutions: heterosexuality, the university, the trafficking/anti-trafficking\u00a0industrial\u00a0complex, the prison, and the bathroom.\u00a0Part IV closes out the course by focusing on the reconfiguration of democratic institutions in late modernity; or, can institutions \"love us back\" under the the political economy we shorthand as \"neoliberalism\"?", "short_title": "Gender, Justice, Power, Insti...", "title": "Gender, Justice, Power, Institutions", "school": "YC", @@ -269890,7 +548958,7 @@ "9:25", "10:15", "WTS A38 - Watson Center 60 Sachem Street A38", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -269910,7 +548978,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -269948,7 +549044,7 @@ "13:30", "15:20", "WLH 014 - William L. Harkness Hall 014", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -269964,10 +549060,111 @@ "classnotes": "This course requires instructor permission. Please state your motivation to take this course and relevant previous coursework. ", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90313\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90313/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989261031150818, + 0.9988741278648376, + 0.9989381432533264, + 0.9988007545471191, + 0.9989350438117981, + 0.9956515431404114 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998932421207428, + 0.9988850951194763, + 0.9989193677902222, + 0.9988700747489929, + 0.9988310933113098, + 0.9980677962303162 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989180564880371, + 0.9985949397087097, + 0.9989128112792969, + 0.9989137649536133, + 0.9989184141159058, + 0.9981386661529541 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 18 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -270006,7 +549203,7 @@ "15:30", "17:20", "WLH 007 - William L. Harkness Hall 007", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -270020,10 +549217,131 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90510\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90510/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988572597503662, + 0.9988958835601807, + 0.9988824725151062, + 0.9988672733306885, + 0.9988343119621277, + 0.9989312291145325, + 0.9988188147544861, + 0.9988503456115723, + 0.9988911747932434 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998895525932312, + 0.9988721013069153, + 0.9988676309585571, + 0.9988422989845276, + 0.9988681077957153, + 0.9988824725151062, + 0.9989058971405029, + 0.9981061220169067 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989357590675354, + 0.998867392539978, + 0.9976968169212341, + 0.9988635778427124, + 0.9988962411880493, + 0.9988586902618408, + 0.9989223480224609, + 0.9989124536514282, + 0.9988627433776855, + 0.9988425970077515, + 0.9989343285560608 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 28, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 28 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -270060,7 +549378,7 @@ "9:25", "11:15", "RKZ 05 - Rosenkranz Hall 05", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -270076,10 +549394,123 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88995\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88995/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9971299767494202, + 0.9987645149230957, + 0.9989181756973267, + 0.998917818069458, + 0.9988797307014465, + 0.9986567497253418, + 0.9988590478897095, + 0.9988895058631897 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9952308535575867, + 0.998895525932312, + 0.9987687468528748, + 0.9989179372787476, + 0.9989389777183533, + 0.9989359974861145, + 0.9989145994186401 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9927364587783813, + 0.9988798499107361, + 0.9988868832588196, + 0.9987666606903076, + 0.9989252686500549, + 0.9989000558853149, + 0.9988455772399902, + 0.9989345669746399 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 7 + }, + "sentiment_distribution": { + "NEGATIVE": 0.125, + "POSITIVE": 0.875 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "final_label": "POSITIVE", + "final_count": 22, + "final_proportion": 0.9565217391304348, + "final_counts": { + "POSITIVE": 22, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9565217391304348, + "NEGATIVE": 0.043478260869565216 + } + } }, { "season_code": "202303", @@ -270117,7 +549548,7 @@ "13:30", "15:20", "WTS B74 - Watson Center 60 Sachem Street B74", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -270134,10 +549565,109 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88929\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88929/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9976391792297363, + 0.998244047164917, + 0.996590256690979, + 0.9986129999160767, + 0.9981880784034729, + 0.9988797307014465 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9938583970069885, + 0.998746395111084, + 0.9994761347770691, + 0.9988565444946289, + 0.9995131492614746 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.6, + "NEGATIVE": 0.4 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988027811050415, + 0.9982247948646545, + 0.9995050430297852, + 0.9988790154457092, + 0.9994983673095703 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.6, + "NEGATIVE": 0.4 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 0.625, + "final_counts": { + "POSITIVE": 10, + "NEGATIVE": 6 + }, + "final_distribution": { + "POSITIVE": 0.625, + "NEGATIVE": 0.375 + } + } }, { "season_code": "202303", @@ -270173,10 +549703,38 @@ "classnotes": "", "final_exam": "Monday, December 18, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89628\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89628/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -270214,7 +549772,7 @@ "13:30", "15:20", "RKZ 02 - Rosenkranz Hall 02", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -270230,10 +549788,101 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88996\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88996/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988752007484436, + 0.9989216327667236, + 0.9988607168197632, + 0.9988160133361816 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989018440246582, + 0.9988604784011841, + 0.9989191293716431 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983909130096436, + 0.9989079236984253, + 0.9989101886749268, + 0.9989249110221863, + 0.9985248446464539, + 0.9988856911659241 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 13 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -270271,7 +549920,7 @@ "13:30", "15:20", "RKZ 08 - Rosenkranz Hall 08", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -270285,10 +549934,93 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92675\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92675/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988768696784973, + 0.998807430267334, + 0.9988810420036316 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998778760433197, + 0.9989184141159058 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988952875137329, + 0.997117280960083, + 0.9988490343093872, + 0.9981922507286072 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 9 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -270329,7 +550061,7 @@ "13:30", "15:20", "GR109 ROSENFELD - 109 Grove Street ROSENFELD", - "https:\/\/map.yale.edu\/?id=1910#!m\/560109" + "https://map.yale.edu/?id=1910#!m/560109" ] ] }, @@ -270348,15 +550080,224 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88615\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "", - "description": "This course focuses on a specific aspect of the research design process: the operationalization of abstract concepts into concrete measures that can be used for analysis and inference. The task of measurement is common to qualitative, quantitative and mixed-method research, and this course draws on lessons from varied approaches. Course readings span: 1. \"classic\" theoretical texts dealing with broad concepts of interest to political scientists; 2. empirical work that develops\/applies novel strategies to measure foundational concepts; 3. work that combines conceptualization (developing new concepts and\/or reimagining old ones) and measurement. This course is intended for advanced undergraduate students with an interest in social science research and graduate students in the process of designing original research.", + "syllabus_url": "https://yale.instructure.com/courses/88615/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982588887214661, + 0.9980531930923462, + 0.9963216781616211, + 0.9968819618225098, + 0.9987257122993469, + 0.9882138967514038, + 0.9988465309143066, + 0.996353030204773, + 0.99783855676651, + 0.9987314343452454, + 0.9986346364021301, + 0.9984899759292603, + 0.9978922009468079, + 0.9987033605575562, + 0.9930590391159058, + 0.9988428354263306, + 0.9987905621528625, + 0.9976913928985596, + 0.998887836933136, + 0.9987137317657471, + 0.9967828989028931, + 0.998808741569519, + 0.9988449811935425, + 0.9975696206092834 + ], + "sentiment_counts": { + "POSITIVE": 23, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9583333333333334, + "NEGATIVE": 0.041666666666666664 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9583333333333334 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982611536979675, + 0.998829185962677, + 0.9988687634468079, + 0.9974701404571533, + 0.9989342093467712, + 0.9954180717468262, + 0.9919736385345459, + 0.9970499277114868, + 0.9988986253738403, + 0.9988359808921814, + 0.998904824256897, + 0.9994970560073853, + 0.9984412789344788, + 0.9932231903076172, + 0.998506486415863, + 0.9987389445304871, + 0.9982746839523315, + 0.9994663596153259, + 0.9988964796066284, + 0.9935163259506226, + 0.9987803101539612 + ], + "sentiment_counts": { + "POSITIVE": 14, + "NEGATIVE": 7 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9906851649284363, + 0.9983372688293457, + 0.9988584518432617, + 0.9989295601844788, + 0.998769223690033, + 0.9989234805107117, + 0.9988842606544495, + 0.9989142417907715, + 0.9962432384490967, + 0.9984258413314819, + 0.9988288283348083, + 0.998917818069458, + 0.9988903403282166, + 0.9987150430679321, + 0.9988003969192505, + 0.9951748251914978, + 0.9975628852844238, + 0.998890221118927, + 0.9986867308616638, + 0.9980649352073669, + 0.9988775849342346, + 0.9832240343093872, + 0.9987377524375916, + 0.9984399676322937, + 0.9977144002914429, + 0.9988495111465454 + ], + "sentiment_counts": { + "POSITIVE": 22, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.8461538461538461, + "NEGATIVE": 0.15384615384615385 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8461538461538461 + ] + }, + "final_label": "POSITIVE", + "final_count": 59, + "final_proportion": 0.8309859154929577, + "final_counts": { + "POSITIVE": 59, + "NEGATIVE": 12 + }, + "final_distribution": { + "POSITIVE": 0.8309859154929577, + "NEGATIVE": 0.16901408450704225 + } + } + }, + { + "season_code": "202303", + "requirements": "", + "description": "This course focuses on a specific aspect of the research design process: the operationalization of abstract concepts into concrete measures that can be used for analysis and inference. The task of measurement is common to qualitative, quantitative and mixed-method research, and this course draws on lessons from varied approaches. Course readings span: 1. \"classic\" theoretical texts dealing with broad concepts of interest to political scientists; 2. empirical work that develops/applies novel strategies to measure foundational concepts; 3. work that combines conceptualization (developing new concepts and/or reimagining old ones) and measurement. This course is intended for advanced undergraduate students with an interest in social science research and graduate students in the process of designing original research.", "short_title": "From Concept to Measure: Empi...", "title": "From Concept to Measure: Empirical Inquiry in Social Science", "school": "YC", @@ -270389,7 +550330,7 @@ "13:30", "15:20", "RKZ 202 - Rosenkranz Hall 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -270405,10 +550346,111 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89642\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89642/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998910665512085, + 0.9986442923545837, + 0.9989118576049805, + 0.9979835748672485, + 0.9989253878593445 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988621473312378, + 0.9989356398582458, + 0.9988369345664978, + 0.9988381266593933, + 0.9988744854927063, + 0.9988765120506287 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987205862998962, + 0.9988538026809692, + 0.9989346861839294, + 0.9989144802093506, + 0.9988282322883606, + 0.9989390969276428, + 0.9988992214202881 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 18 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -270447,7 +550489,7 @@ "15:30", "17:20", "RKZ 102 - Rosenkranz Hall 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -270466,10 +550508,63 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89032\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89032/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9972186088562012 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9995085000991821 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 0 + }, + "sentiment_distribution": { + "NEGATIVE": 1.0, + "POSITIVE": 0.0 + }, + "sentiment_overall": [ + "NEGATIVE", + 1.0 + ] + }, + "final_label": "neutral", + "final_count": 0.5, + "final_proportion": 0.5, + "final_counts": { + "POSITIVE": 1, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + } + } }, { "season_code": "202303", @@ -270507,7 +550602,7 @@ "13:30", "15:20", "WTS A72 - Watson Center 60 Sachem Street A72", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -270523,10 +550618,17 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88997\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88997/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -270568,7 +550670,7 @@ "13:30", "15:20", "WLH 002 - William L. Harkness Hall 002", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -270583,10 +550685,99 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89162\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89162/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9964343309402466, + 0.9989063739776611, + 0.9963538646697998, + 0.9989225268363953 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989332556724548, + 0.9989054203033447, + 0.998885452747345 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989257454872131, + 0.9989217519760132, + 0.9989079236984253, + 0.997117280960083, + 0.9989387392997742 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 12 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -270624,7 +550815,7 @@ "13:30", "15:20", "RKZ 301 - Rosenkranz Hall 301", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -270642,10 +550833,89 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89003\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89003/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988798499107361, + 0.9986416697502136 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989107847213745, + 0.9977339506149292 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988418221473694, + 0.9898300766944885 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "final_label": "POSITIVE", + "final_count": 5, + "final_proportion": 0.8333333333333334, + "final_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + } + } }, { "season_code": "202303", @@ -270686,7 +550956,7 @@ "13:30", "15:20", "RKZ 04 - Rosenkranz Hall 04", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -270704,10 +550974,87 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88477\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88477/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988580942153931, + 0.9987786412239075 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989128112792969, + 0.9987824559211731 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989303946495056, + 0.9989103078842163 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 6 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -270747,7 +551094,7 @@ "16:30", "17:20", "WTS A51 - Watson Center 60 Sachem Street A51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -270755,7 +551102,7 @@ "16:30", "17:20", "WTS A51 - Watson Center 60 Sachem Street A51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -270774,10 +551121,137 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89163\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89163/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987770915031433, + 0.9989281296730042, + 0.9988021850585938, + 0.9989131689071655, + 0.9978353381156921, + 0.9988918900489807, + 0.9988707900047302, + 0.9988301396369934, + 0.9988916516304016 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994995594024658, + 0.9984616041183472, + 0.9895910620689392, + 0.9988960027694702, + 0.998921275138855, + 0.9982247948646545, + 0.99699866771698, + 0.9988629817962646, + 0.9988136291503906, + 0.9984989166259766, + 0.9988767504692078 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 9 + }, + "sentiment_distribution": { + "NEGATIVE": 0.18181818181818182, + "POSITIVE": 0.8181818181818182 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8181818181818182 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988865256309509, + 0.9988271594047546, + 0.9989141225814819, + 0.9985136389732361, + 0.9925960898399353, + 0.9988418221473694, + 0.9988685846328735, + 0.9987994432449341, + 0.9984018206596375, + 0.9968264102935791 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "final_label": "POSITIVE", + "final_count": 27, + "final_proportion": 0.9, + "final_counts": { + "POSITIVE": 27, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + } + } }, { "season_code": "202303", @@ -270811,7 +551285,7 @@ "14:30", "15:20", "WTS A32 - Watson Center 60 Sachem Street A32", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -270832,7 +551306,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -270866,7 +551368,7 @@ "15:30", "16:20", "WTS A32 - Watson Center 60 Sachem Street A32", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -270887,7 +551389,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -270921,7 +551451,7 @@ "14:30", "15:20", "WTS B51 - Watson Center 60 Sachem Street B51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -270942,7 +551472,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -270976,7 +551534,7 @@ "17:00", "17:50", "WLH 004 - William L. Harkness Hall 004", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -270997,7 +551555,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -271035,7 +551621,7 @@ "14:30", "15:20", "WLH 113 - William L. Harkness Hall 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -271043,7 +551629,7 @@ "14:30", "15:20", "WLH 113 - William L. Harkness Hall 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -271059,10 +551645,123 @@ "classnotes": "", "final_exam": "Monday, December 18, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89164\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89164/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989079236984253, + 0.9989097118377686, + 0.9988766312599182, + 0.9988687634468079, + 0.9989359974861145 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989141225814819, + 0.998794674873352, + 0.998839795589447, + 0.9989356398582458, + 0.9995057582855225, + 0.9989168643951416, + 0.9989114999771118, + 0.9985226988792419, + 0.9988418221473694 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988144636154175, + 0.9988247752189636, + 0.9989305138587952, + 0.9988815188407898, + 0.9986985921859741, + 0.9995052814483643, + 0.9989349246025085, + 0.9989147186279297, + 0.9989363551139832 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "final_label": "POSITIVE", + "final_count": 21, + "final_proportion": 0.9130434782608695, + "final_counts": { + "POSITIVE": 21, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9130434782608695, + "NEGATIVE": 0.08695652173913043 + } + } }, { "season_code": "202303", @@ -271094,7 +551793,7 @@ "10:30", "11:20", "HQ 213 - Humanities Quadrangle 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -271113,7 +551812,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -271145,7 +551872,7 @@ "11:35", "12:25", "HQ 213 - Humanities Quadrangle 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -271164,7 +551891,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -271208,7 +551963,7 @@ "13:30", "15:20", "RKZ 05 - Rosenkranz Hall 05", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -271226,10 +551981,113 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90079\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90079/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988908171653748, + 0.9989186525344849, + 0.9988468885421753, + 0.9989148378372192, + 0.9988295435905457, + 0.9988223910331726 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986775517463684, + 0.9965946078300476, + 0.9989385008811951, + 0.9988704323768616, + 0.9988952875137329, + 0.9988698363304138 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988988637924194, + 0.9989064931869507, + 0.9989142417907715, + 0.998910665512085, + 0.9988652467727661, + 0.998817503452301, + 0.9988685846328735 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 19 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -271268,7 +552126,7 @@ "9:25", "10:15", "WLH 116 - William L. Harkness Hall 116", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -271276,7 +552134,7 @@ "9:25", "10:15", "WLH 116 - William L. Harkness Hall 116", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -271292,10 +552150,169 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89160\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89160/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998872697353363, + 0.9989027976989746, + 0.998921275138855, + 0.9988388419151306, + 0.9988127946853638, + 0.9989186525344849, + 0.9988162517547607, + 0.9988452196121216, + 0.998474657535553, + 0.9988211989402771, + 0.9986806511878967, + 0.9989113807678223 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988062381744385, + 0.9898069500923157, + 0.9916468858718872, + 0.9987032413482666, + 0.9994997978210449, + 0.9888178110122681, + 0.9987931251525879, + 0.9994587302207947, + 0.9980472326278687, + 0.9916132688522339, + 0.9985653758049011, + 0.9972033500671387, + 0.9988980293273926, + 0.9987993240356445, + 0.9988569021224976, + 0.9986026883125305, + 0.9985076785087585 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.7647058823529411, + "NEGATIVE": 0.23529411764705882 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7647058823529411 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9812979698181152, + 0.9938327074050903, + 0.9988866448402405, + 0.9951303005218506, + 0.9988611936569214, + 0.9969155788421631, + 0.9994547963142395, + 0.99869304895401, + 0.9988889098167419, + 0.9988405108451843, + 0.9987828135490417, + 0.9988977909088135, + 0.9988899827003479, + 0.9989281296730042, + 0.9989211559295654, + 0.9987519979476929, + 0.998908281326294 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 14 + }, + "sentiment_distribution": { + "NEGATIVE": 0.17647058823529413, + "POSITIVE": 0.8235294117647058 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8235294117647058 + ] + }, + "final_label": "POSITIVE", + "final_count": 39, + "final_proportion": 0.8478260869565217, + "final_counts": { + "POSITIVE": 39, + "NEGATIVE": 7 + }, + "final_distribution": { + "POSITIVE": 0.8478260869565217, + "NEGATIVE": 0.15217391304347827 + } + } }, { "season_code": "202303", @@ -271328,7 +552345,7 @@ "9:25", "10:15", "LC 105 - Linsly-Chittenden Hall 105", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -271347,7 +552364,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -271380,7 +552425,7 @@ "10:30", "11:20", "LC 105 - Linsly-Chittenden Hall 105", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -271399,7 +552444,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -271432,7 +552505,7 @@ "16:00", "16:50", "WLH 210 - William L. Harkness Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -271451,7 +552524,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -271484,7 +552585,7 @@ "17:00", "17:50", "WLH 210 - William L. Harkness Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -271503,7 +552604,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -271536,7 +552665,7 @@ "19:00", "19:50", "LC 213 - Linsly-Chittenden Hall 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -271555,7 +552684,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -271595,7 +552752,7 @@ "9:25", "11:15", "WALL81 101 - 81 Wall Street 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -271611,10 +552768,141 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89944\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89944/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987554550170898, + 0.9988293051719666, + 0.9988370537757874, + 0.9989385008811951, + 0.9987523555755615, + 0.998900294303894, + 0.9987072944641113, + 0.9989145994186401, + 0.9968559741973877, + 0.9989027976989746 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988798499107361, + 0.998917818069458, + 0.9989091157913208, + 0.9916926622390747, + 0.992793083190918, + 0.9989392161369324, + 0.9988964796066284, + 0.9989269375801086, + 0.999345600605011, + 0.9989100694656372 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988415837287903, + 0.9988221526145935, + 0.9986894726753235, + 0.9988991022109985, + 0.9963783621788025, + 0.9981772899627686, + 0.9988945126533508, + 0.9956337809562683, + 0.9989182949066162, + 0.9995014667510986, + 0.9988411068916321, + 0.9988294243812561 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "final_label": "POSITIVE", + "final_count": 28, + "final_proportion": 0.875, + "final_counts": { + "POSITIVE": 28, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + } + } }, { "season_code": "202303", @@ -271652,7 +552940,7 @@ "9:25", "11:15", "WLH 002 - William L. Harkness Hall 002", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -271666,10 +552954,115 @@ "classnotes": "", "final_exam": "Saturday, December 16, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90341\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90341/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.918820321559906, + 0.9973419308662415, + 0.9959558844566345, + 0.9987595081329346, + 0.9983423948287964, + 0.9987577199935913 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984791874885559, + 0.998927891254425, + 0.998967170715332, + 0.9990732669830322, + 0.998832643032074, + 0.9987239241600037 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9976477026939392, + 0.9989308714866638, + 0.9963585734367371, + 0.9989134073257446, + 0.9995065927505493, + 0.9989004135131836, + 0.998582124710083 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 0.8421052631578947, + "final_counts": { + "POSITIVE": 16, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.8421052631578947, + "NEGATIVE": 0.15789473684210525 + } + } }, { "season_code": "202303", @@ -271707,7 +553100,7 @@ "13:30", "15:20", "RKZ 102 - Rosenkranz Hall 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -271723,10 +553116,103 @@ "classnotes": "This course requires instructor permission. Please submit the following information with your registration request: Why do you want to take this course? Are you looking to write the semester-long senior essay in this course or a year-long senior essay on a topic related to protests? What class year are you in? What is your GPA?", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89039\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89039/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989004135131836, + 0.9988825917243958, + 0.998785674571991, + 0.9989020824432373 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998927891254425, + 0.998927891254425, + 0.9988503456115723, + 0.9988549947738647 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989387392997742, + 0.9988547563552856, + 0.9988551139831543, + 0.9989218711853027, + 0.9989191293716431, + 0.9988964796066284 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 14 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -271764,7 +553250,7 @@ "15:30", "17:20", "RKZ 102 - Rosenkranz Hall 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -271780,10 +553266,91 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88998\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88998/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988430738449097, + 0.9983242154121399 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9903952479362488, + 0.9989161491394043 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9889330863952637, + 0.9974592328071594, + 0.9961982369422913 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 0.8571428571428571, + "final_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + } + } }, { "season_code": "202303", @@ -271827,7 +553394,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -271868,7 +553463,7 @@ "13:30", "15:20", "WTS B74 - Watson Center 60 Sachem Street B74", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -271891,10 +553486,107 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88917\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88917/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9968783855438232, + 0.9988638162612915, + 0.9987142086029053, + 0.9988240599632263, + 0.998775064945221, + 0.9967511892318726 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989232420921326, + 0.9977788329124451, + 0.9989073276519775, + 0.9987710118293762 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989205598831177, + 0.9989074468612671, + 0.9987315535545349, + 0.9988357424736023, + 0.99880051612854, + 0.9989172220230103 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 16 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -271935,10 +553627,38 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89004\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89004/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -271978,7 +553698,7 @@ "10:30", "11:20", "WLH 116 - William L. Harkness Hall 116", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -271986,7 +553706,7 @@ "10:30", "11:20", "WLH 116 - William L. Harkness Hall 116", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -272000,10 +553720,101 @@ "classnotes": "", "final_exam": "Wednesday, December 20, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88906\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88906/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9974307417869568, + 0.9988592863082886, + 0.9989388585090637 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988848567008972, + 0.9984784722328186, + 0.9989389777183533, + 0.9976162910461426 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989210367202759, + 0.9988842606544495, + 0.9988515377044678, + 0.9988043308258057, + 0.9985300302505493 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 0.9166666666666666, + "final_counts": { + "POSITIVE": 11, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + } + } }, { "season_code": "202303", @@ -272036,7 +553847,7 @@ "9:25", "10:15", "HQ C01 - Humanities Quadrangle C01", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -272053,7 +553864,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -272086,7 +553925,7 @@ "16:00", "16:50", "LC 104 - Linsly-Chittenden Hall 104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -272103,7 +553942,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -272136,7 +554003,7 @@ "17:00", "17:50", "LC 103 - Linsly-Chittenden Hall 103", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -272153,7 +554020,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -272186,7 +554081,7 @@ "10:30", "11:20", "WALL53 208 - 53 Wall Street 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/559554" + "https://map.yale.edu/?id=1910#!m/559554" ] ] }, @@ -272203,7 +554098,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -272241,7 +554164,7 @@ "16:00", "17:15", "WTS A60 - Watson Center 60 Sachem Street A60", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -272249,7 +554172,7 @@ "16:00", "17:15", "WTS A60 - Watson Center 60 Sachem Street A60", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -272268,11 +554191,190 @@ "rp_attr": "", "classnotes": "\n", "final_exam": "HTBA", - "course_home_url": "https:\/\/yale.instructure.com\/courses\/89156", - "syllabus_url": "", - "fysem": false, - "sysem": false, - "colsem": false + "course_home_url": "https://yale.instructure.com/courses/89156", + "syllabus_url": "", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984495639801025, + 0.9955975413322449, + 0.9988724589347839, + 0.9967249035835266, + 0.9985703229904175, + 0.9987855553627014, + 0.9985295534133911, + 0.9984558820724487, + 0.9988006353378296, + 0.9984086155891418, + 0.9986904263496399, + 0.9987008571624756, + 0.9988790154457092, + 0.9987993240356445, + 0.9985405206680298, + 0.9987945556640625, + 0.9989092350006104, + 0.9987738728523254 + ], + "sentiment_counts": { + "POSITIVE": 18, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988095760345459, + 0.9935957789421082, + 0.9988303780555725, + 0.9989135265350342, + 0.9987744688987732, + 0.9988896250724792, + 0.9989036321640015, + 0.9985925555229187, + 0.9983797073364258, + 0.9985836744308472, + 0.9989357590675354, + 0.9989217519760132, + 0.9915355443954468, + 0.9952699542045593, + 0.998842716217041, + 0.9988923668861389, + 0.9989312291145325, + 0.9988728165626526 + ], + "sentiment_counts": { + "POSITIVE": 18, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9980517625808716, + 0.9988946318626404, + 0.9986839890480042, + 0.9974592328071594, + 0.9989256262779236, + 0.998643696308136, + 0.9944038391113281, + 0.9964806437492371, + 0.9986261129379272, + 0.9968504309654236, + 0.9989199638366699, + 0.9988793730735779, + 0.9989401698112488, + 0.9799712896347046, + 0.9981922507286072, + 0.984207808971405, + 0.9988021850585938, + 0.9994803071022034, + 0.9988345503807068, + 0.998880922794342 + ], + "sentiment_counts": { + "POSITIVE": 18, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "final_label": "POSITIVE", + "final_count": 54, + "final_proportion": 0.9642857142857143, + "final_counts": { + "POSITIVE": 54, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9642857142857143, + "NEGATIVE": 0.03571428571428571 + } + } }, { "season_code": "202303", @@ -272310,7 +554412,7 @@ "13:30", "15:20", "RKZ 02 - Rosenkranz Hall 02", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -272327,10 +554429,89 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89005\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89005/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998920202255249, + 0.998863935470581 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989099502563477, + 0.9989175796508789 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989364743232727, + 0.998940646648407, + 0.9989328980445862 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 7 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -272391,10 +554572,219 @@ "classnotes": "This course may not be taken after S&DS 100.", "final_exam": "Saturday, December 16, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88609\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88609/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982038736343384, + 0.9988753199577332, + 0.9989326596260071, + 0.9983347058296204, + 0.9989217519760132, + 0.9973428845405579, + 0.9987945556640625, + 0.9986422657966614, + 0.9903171062469482, + 0.9991814494132996, + 0.7013508677482605, + 0.9988300204277039, + 0.9984657764434814, + 0.9984048008918762, + 0.9971566200256348, + 0.9985288381576538, + 0.9969819188117981, + 0.9935830235481262, + 0.9989243149757385, + 0.9987601041793823, + 0.998823344707489 + ], + "sentiment_counts": { + "POSITIVE": 18, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989258646965027, + 0.9982361793518066, + 0.9987685084342957, + 0.9982534050941467, + 0.9988555908203125, + 0.9986259937286377, + 0.9976046085357666, + 0.9979829788208008, + 0.9988152980804443, + 0.9987717270851135, + 0.9995063543319702, + 0.9799211621284485, + 0.9988906979560852, + 0.9988887906074524, + 0.9988380074501038, + 0.998790442943573, + 0.9973036050796509, + 0.9985931515693665, + 0.9990187883377075, + 0.9984488487243652, + 0.9965356588363647, + 0.9988540410995483, + 0.9988490343093872, + 0.9948628544807434, + 0.9988962411880493, + 0.9988514184951782 + ], + "sentiment_counts": { + "POSITIVE": 22, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.8461538461538461, + "NEGATIVE": 0.15384615384615385 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8461538461538461 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.997117280960083, + 0.9987653493881226, + 0.9988307356834412, + 0.9784395098686218, + 0.9985215067863464, + 0.9989135265350342, + 0.998364269733429, + 0.9980669617652893, + 0.9987767338752747, + 0.9988942742347717, + 0.9994964599609375, + 0.9818282723426819, + 0.9988394379615784, + 0.9987963438034058, + 0.9988642930984497, + 0.9995094537734985, + 0.9935688972473145, + 0.9942686557769775, + 0.998747706413269, + 0.9983811378479004, + 0.9988715052604675, + 0.99611496925354, + 0.9989038705825806, + 0.9989184141159058 + ], + "sentiment_counts": { + "POSITIVE": 21, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "final_label": "POSITIVE", + "final_count": 61, + "final_proportion": 0.8591549295774648, + "final_counts": { + "POSITIVE": 61, + "NEGATIVE": 10 + }, + "final_distribution": { + "POSITIVE": 0.8591549295774648, + "NEGATIVE": 0.14084507042253522 + } + } }, { "season_code": "202303", @@ -272455,10 +554845,259 @@ "classnotes": "This course may not be taken after S&DS 100.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88609\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88609/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9965184926986694, + 0.9988641738891602, + 0.998626708984375, + 0.9974405765533447, + 0.9983785152435303, + 0.9982033967971802, + 0.9893950819969177, + 0.9987242817878723, + 0.9988920092582703, + 0.9977020621299744, + 0.9987887740135193, + 0.9988126754760742, + 0.9789929986000061, + 0.9984145164489746, + 0.9965564012527466, + 0.9265551567077637, + 0.9982753992080688, + 0.9988068342208862, + 0.9986118078231812, + 0.9988699555397034, + 0.9894165396690369, + 0.9983934760093689, + 0.998757004737854, + 0.998852014541626, + 0.9239913821220398, + 0.9903402924537659, + 0.997925877571106, + 0.9983736276626587 + ], + "sentiment_counts": { + "POSITIVE": 25, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.8928571428571429, + "NEGATIVE": 0.10714285714285714 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8928571428571429 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988316893577576, + 0.9988756775856018, + 0.9988600015640259, + 0.9989344477653503, + 0.9988577365875244, + 0.6327666640281677, + 0.9988191723823547, + 0.9988806843757629, + 0.9988899827003479, + 0.9995132684707642, + 0.9986501336097717, + 0.9994854927062988, + 0.9988833069801331, + 0.9976212382316589, + 0.9987550973892212, + 0.9962582588195801, + 0.9986135959625244, + 0.998928964138031, + 0.9902860522270203, + 0.9986754059791565, + 0.998808741569519, + 0.9988585710525513, + 0.9977453351020813, + 0.9988499879837036, + 0.9989486336708069, + 0.9988155364990234, + 0.996519923210144, + 0.9988166093826294, + 0.9986876845359802, + 0.9988042116165161 + ], + "sentiment_counts": { + "POSITIVE": 25, + "NEGATIVE": 5 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994854927062988, + 0.9988893866539001, + 0.9989362359046936, + 0.9988920092582703, + 0.9962278604507446, + 0.9978834986686707, + 0.9993851184844971, + 0.9981734752655029, + 0.9976136684417725, + 0.9987518787384033, + 0.9987366795539856, + 0.9989364743232727, + 0.9968872666358948, + 0.9988961219787598, + 0.9916382431983948, + 0.997117280960083, + 0.9965593218803406, + 0.9988529682159424, + 0.9988656044006348, + 0.9980908036231995, + 0.9986631870269775, + 0.9981922507286072, + 0.9983371496200562, + 0.9989218711853027, + 0.9988999366760254, + 0.996141254901886, + 0.9948018789291382, + 0.998810887336731, + 0.9986447691917419, + 0.9988296627998352, + 0.9986739158630371, + 0.9982592463493347, + 0.9987794756889343 + ], + "sentiment_counts": { + "NEGATIVE": 4, + "POSITIVE": 29 + }, + "sentiment_distribution": { + "NEGATIVE": 0.12121212121212122, + "POSITIVE": 0.8787878787878788 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8787878787878788 + ] + }, + "final_label": "POSITIVE", + "final_count": 79, + "final_proportion": 0.8681318681318682, + "final_counts": { + "POSITIVE": 79, + "NEGATIVE": 12 + }, + "final_distribution": { + "POSITIVE": 0.8681318681318682, + "NEGATIVE": 0.13186813186813187 + } + } }, { "season_code": "202303", @@ -272498,7 +555137,7 @@ "13:30", "15:20", "PH 207 - Phelps Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -272522,15 +555161,106 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88726\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88726/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "", - "description": "Special reading courses may be established with individual members of the department. They must satisfy the following conditions: (1) a prospectus describing the nature of the program and the readings to be covered must be approved by both the instructor and the director of undergraduate studies; (2) the student must meet regularly with the instructor for an average of at least two hours per week; (3) the course must include a term essay, several short essays, or a final examination; (4) the topic and\/or content must not be substantially encompassed by an existing undergraduate or graduate course. All coursework must be submitted no later than the last day of reading period.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994853734970093, + 0.9989376664161682, + 0.9986500144004822, + 0.9986982345581055 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.25, + "POSITIVE": 0.75 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9966853260993958, + 0.9989364743232727, + 0.9987745881080627, + 0.997749388217926 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.25, + "POSITIVE": 0.75 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986067414283752, + 0.9989312291145325, + 0.9988231062889099, + 0.9969677329063416 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 0.8333333333333334, + "final_counts": { + "NEGATIVE": 2, + "POSITIVE": 10 + }, + "final_distribution": { + "NEGATIVE": 0.16666666666666666, + "POSITIVE": 0.8333333333333334 + } + } + }, + { + "season_code": "202303", + "requirements": "", + "description": "Special reading courses may be established with individual members of the department. They must satisfy the following conditions: (1) a prospectus describing the nature of the program and the readings to be covered must be approved by both the instructor and the director of undergraduate studies; (2) the student must meet regularly with the instructor for an average of at least two hours per week; (3) the course must include a term essay, several short essays, or a final examination; (4) the topic and/or content must not be substantially encompassed by an existing undergraduate or graduate course. All coursework must be submitted no later than the last day of reading period.", "short_title": "Individual Reading for Majors", "title": "Individual Reading for Majors", "school": "YC", @@ -272568,7 +555298,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -272611,7 +555369,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -272654,7 +555440,86 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9901416897773743, + 0.9988079071044922 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9971765279769897, + 0.997435986995697, + 0.9976392984390259 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.997117280960083 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 5, + "final_proportion": 0.8333333333333334, + "final_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + } + } }, { "season_code": "202303", @@ -272691,7 +555556,7 @@ "9:25", "11:15", "RKZ 102 - Rosenkranz Hall 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -272700,13 +555565,104 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "Students interested in writing a year-long senior essay must submit an application to the DUS Office. Applications are due by April 7 for admission to PLSC 490 for the Fall 2024 semester. The application must include (1) the Year-long Senior Essay Prospectus form signed by the faculty adviser who has agreed to supervise the student's essay, (2) an up-to-date, unofficial transcript, and (3) a 1-2 page prospectus that describes the topic, issue, or analytic or theoretical problem the student wishes to examine. The prospectus should also discuss the relevance of the topic, issue, or problem. A good prospectus should include the questions being asked, as well as the type of research that would be employed to address those questions. Finally, the prospectus should describe previous coursework relevant to the project. Students should discuss their plans with their senior essay adviser and ask him\/her to review the prospectus before signing the form. Copy and paste the following link to access the form: https:\/\/politicalscience.yale.edu\/sites\/default\/files\/2023-03-24-yearlong_senior_essay_prospectus_plsc-490-491.pdf\n \n", + "classnotes": "Students interested in writing a year-long senior essay must submit an application to the DUS Office. Applications are due by April 7 for admission to PLSC 490 for the Fall 2024 semester. The application must include (1) the Year-long Senior Essay Prospectus form signed by the faculty adviser who has agreed to supervise the student's essay, (2) an up-to-date, unofficial transcript, and (3) a 1-2 page prospectus that describes the topic, issue, or analytic or theoretical problem the student wishes to examine. The prospectus should also discuss the relevance of the topic, issue, or problem. A good prospectus should include the questions being asked, as well as the type of research that would be employed to address those questions. Finally, the prospectus should describe previous coursework relevant to the project. Students should discuss their plans with their senior essay adviser and ask him/her to review the prospectus before signing the form. Copy and paste the following link to access the form: https://politicalscience.yale.edu/sites/default/files/2023-03-24-yearlong_senior_essay_prospectus_plsc-490-491.pdf\n \n", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89040\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89040/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989226460456848, + 0.9988627433776855, + 0.9988928437232971 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989118576049805, + 0.9988922476768494, + 0.9988875985145569, + 0.9988037347793579, + 0.9993517994880676 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989163875579834, + 0.9988988637924194, + 0.9983104467391968, + 0.9995089769363403 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 0.8333333333333334, + "final_counts": { + "POSITIVE": 10, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + } + } }, { "season_code": "202303", @@ -272749,7 +555705,38 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE" + ], + "sentiment_scores": [ + 0.999497652053833 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 0 + }, + "sentiment_distribution": { + "NEGATIVE": 1.0, + "POSITIVE": 0.0 + }, + "sentiment_overall": [ + "NEGATIVE", + 1.0 + ] + }, + "final_label": "NEGATIVE", + "final_count": 1, + "final_proportion": 1.0, + "final_counts": { + "NEGATIVE": 1 + }, + "final_distribution": { + "NEGATIVE": 1.0 + } + } }, { "season_code": "202303", @@ -272792,7 +555779,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -272829,7 +555844,7 @@ "10:30", "11:20", "RKZ 05 - Rosenkranz Hall 05", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ], "Thursday": [ @@ -272837,7 +555852,7 @@ "10:30", "11:20", "RKZ 05 - Rosenkranz Hall 05", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -272849,15 +555864,22 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88872\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88872/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "Training equivalent to PLSC 503, S&DS 542, or ECON 551 will be expected.", - "description": "This intensive research seminar exposes students to statistical theory and practice applicable to the social and health sciences. Readings and discussions focus on selected methodological topics, such as experimental design, partial identification, design-based inference, network analysis, semiparametric efficiency theory, and qualitative\/mixed-methods research. Topics vary from year to year.", + "description": "This intensive research seminar exposes students to statistical theory and practice applicable to the social and health sciences. Readings and discussions focus on selected methodological topics, such as experimental design, partial identification, design-based inference, network analysis, semiparametric efficiency theory, and qualitative/mixed-methods research. Topics vary from year to year.", "short_title": "Causal Inference and Research...", "title": "Causal Inference and Research Design", "school": "GS", @@ -272889,7 +555911,7 @@ "16:00", "17:50", "RKZ 202 - Rosenkranz Hall 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -272901,10 +555923,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88873\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88873/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -272941,7 +555991,7 @@ "13:30", "15:20", "RKZ 202 - Rosenkranz Hall 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -272953,10 +556003,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88769\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88769/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -272993,7 +556071,7 @@ "15:30", "17:20", "RKZ 301 - Rosenkranz Hall 301", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -273005,10 +556083,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89089\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89089/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -273049,7 +556155,7 @@ "13:30", "15:20", "GR109 ROSENFELD - 109 Grove Street ROSENFELD", - "https:\/\/map.yale.edu\/?id=1910#!m\/560109" + "https://map.yale.edu/?id=1910#!m/560109" ] ] }, @@ -273061,15 +556167,224 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88615\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88615/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "", - "description": "This course focuses on a specific aspect of the research design process: the operationalization of abstract into concrete measures that can be used for analysis and inference. The task of operationalization is common to qualitative, quantitative, and mixed-method research, and this course draws on lessons from varied approaches. Readings are divided equally between (1) foundational theoretical texts dealing with broad concepts of interest to social scientists with an interest in politics (including but not limited to identity, norms, preferences, responsiveness, and accountability) and (2) recent approaches to measuring these concepts in the fields of political science, psychology, sociology, and economics. Key assignments include a paper critiquing the measurement strategy and developing an alternative measure in response to an existing study, and an original research proposal. There is flexibility to devote time to concepts and measurement strategies that are of particular relevance to enrolled students\u2019 dissertations\/thesis projects, if not already included on the syllabus.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982588887214661, + 0.9980531930923462, + 0.9963216781616211, + 0.9968819618225098, + 0.9987257122993469, + 0.9882138967514038, + 0.9988465309143066, + 0.996353030204773, + 0.99783855676651, + 0.9987314343452454, + 0.9986346364021301, + 0.9984899759292603, + 0.9978922009468079, + 0.9987033605575562, + 0.9930590391159058, + 0.9988428354263306, + 0.9987905621528625, + 0.9976913928985596, + 0.998887836933136, + 0.9987137317657471, + 0.9967828989028931, + 0.998808741569519, + 0.9988449811935425, + 0.9975696206092834 + ], + "sentiment_counts": { + "POSITIVE": 23, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9583333333333334, + "NEGATIVE": 0.041666666666666664 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9583333333333334 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982611536979675, + 0.998829185962677, + 0.9988687634468079, + 0.9974701404571533, + 0.9989342093467712, + 0.9954180717468262, + 0.9919736385345459, + 0.9970499277114868, + 0.9988986253738403, + 0.9988359808921814, + 0.998904824256897, + 0.9994970560073853, + 0.9984412789344788, + 0.9932231903076172, + 0.998506486415863, + 0.9987389445304871, + 0.9982746839523315, + 0.9994663596153259, + 0.9988964796066284, + 0.9935163259506226, + 0.9987803101539612 + ], + "sentiment_counts": { + "POSITIVE": 14, + "NEGATIVE": 7 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9906851649284363, + 0.9983372688293457, + 0.9988584518432617, + 0.9989295601844788, + 0.998769223690033, + 0.9989234805107117, + 0.9988842606544495, + 0.9989142417907715, + 0.9962432384490967, + 0.9984258413314819, + 0.9988288283348083, + 0.998917818069458, + 0.9988903403282166, + 0.9987150430679321, + 0.9988003969192505, + 0.9951748251914978, + 0.9975628852844238, + 0.998890221118927, + 0.9986867308616638, + 0.9980649352073669, + 0.9988775849342346, + 0.9832240343093872, + 0.9987377524375916, + 0.9984399676322937, + 0.9977144002914429, + 0.9988495111465454 + ], + "sentiment_counts": { + "POSITIVE": 22, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.8461538461538461, + "NEGATIVE": 0.15384615384615385 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8461538461538461 + ] + }, + "final_label": "POSITIVE", + "final_count": 59, + "final_proportion": 0.8309859154929577, + "final_counts": { + "POSITIVE": 59, + "NEGATIVE": 12 + }, + "final_distribution": { + "POSITIVE": 0.8309859154929577, + "NEGATIVE": 0.16901408450704225 + } + } + }, + { + "season_code": "202303", + "requirements": "", + "description": "This course focuses on a specific aspect of the research design process: the operationalization of abstract into concrete measures that can be used for analysis and inference. The task of operationalization is common to qualitative, quantitative, and mixed-method research, and this course draws on lessons from varied approaches. Readings are divided equally between (1) foundational theoretical texts dealing with broad concepts of interest to social scientists with an interest in politics (including but not limited to identity, norms, preferences, responsiveness, and accountability) and (2) recent approaches to measuring these concepts in the fields of political science, psychology, sociology, and economics. Key assignments include a paper critiquing the measurement strategy and developing an alternative measure in response to an existing study, and an original research proposal. There is flexibility to devote time to concepts and measurement strategies that are of particular relevance to enrolled students\u2019 dissertations/thesis projects, if not already included on the syllabus.", "short_title": "From Concept to Measure: Empi...", "title": "From Concept to Measure: Empirical Inquiry in Social Science", "school": "GS", @@ -273102,7 +556417,7 @@ "13:30", "15:20", "RKZ 202 - Rosenkranz Hall 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -273114,10 +556429,111 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89642\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89642/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998910665512085, + 0.9986442923545837, + 0.9989118576049805, + 0.9979835748672485, + 0.9989253878593445 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988621473312378, + 0.9989356398582458, + 0.9988369345664978, + 0.9988381266593933, + 0.9988744854927063, + 0.9988765120506287 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987205862998962, + 0.9988538026809692, + 0.9989346861839294, + 0.9989144802093506, + 0.9988282322883606, + 0.9989390969276428, + 0.9988992214202881 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 18 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -273157,7 +556573,7 @@ "9:00", "10:15", "ML 211 - Mason Laboratory 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ], "Thursday": [ @@ -273165,7 +556581,7 @@ "9:00", "10:15", "ML 211 - Mason Laboratory 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ] }, @@ -273180,10 +556596,257 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88618\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88618/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985331296920776, + 0.9907186627388, + 0.9820322394371033, + 0.9986231327056885, + 0.9945555925369263, + 0.9985878467559814, + 0.9977357387542725, + 0.9986733198165894, + 0.996283233165741, + 0.9985755681991577, + 0.9987128973007202, + 0.9986612796783447, + 0.998884379863739, + 0.9981232285499573, + 0.996711254119873, + 0.9988638162612915, + 0.9989281296730042, + 0.9950729012489319, + 0.9981645941734314, + 0.9983649849891663, + 0.9837383031845093, + 0.9952929615974426, + 0.9987383484840393, + 0.9981551766395569, + 0.998204231262207, + 0.9933744072914124, + 0.9988514184951782, + 0.9986935257911682, + 0.9985578656196594, + 0.9771918654441833 + ], + "sentiment_counts": { + "POSITIVE": 27, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988608360290527, + 0.9989062547683716, + 0.9979388117790222, + 0.9951927661895752, + 0.98073810338974, + 0.9987216591835022, + 0.9988089799880981, + 0.9985629916191101, + 0.9551969170570374, + 0.9786998629570007, + 0.9988786578178406, + 0.9989173412322998, + 0.9988753199577332, + 0.9989075660705566, + 0.9989362359046936, + 0.9988616704940796, + 0.9924127459526062, + 0.998771607875824, + 0.9988873600959778, + 0.9988627433776855, + 0.9988710284233093, + 0.9934489130973816, + 0.9988357424736023, + 0.9988977909088135, + 0.9994996786117554, + 0.9988933205604553, + 0.9989327788352966, + 0.9988547563552856, + 0.9985142350196838, + 0.9987738728523254, + 0.9988271594047546 + ], + "sentiment_counts": { + "POSITIVE": 28, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.9032258064516129, + "NEGATIVE": 0.0967741935483871 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9032258064516129 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987911581993103, + 0.997922956943512, + 0.9921607375144958, + 0.9989379048347473, + 0.9988821148872375, + 0.9986459612846375, + 0.9953246116638184, + 0.9988641738891602, + 0.9988960027694702, + 0.9989080429077148, + 0.9974521994590759, + 0.9988909363746643, + 0.998637855052948, + 0.9988850951194763, + 0.9979872703552246, + 0.9981922507286072, + 0.9987844824790955, + 0.9976784586906433, + 0.9988729357719421, + 0.9988334774971008, + 0.9953234791755676, + 0.9988834261894226, + 0.9981405735015869, + 0.9919413328170776, + 0.9988806843757629, + 0.9979788661003113, + 0.9988940358161926, + 0.9988906979560852, + 0.9988608360290527 + ], + "sentiment_counts": { + "POSITIVE": 27, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.9310344827586207, + "NEGATIVE": 0.06896551724137931 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9310344827586207 + ] + }, + "final_label": "POSITIVE", + "final_count": 82, + "final_proportion": 0.9111111111111111, + "final_counts": { + "POSITIVE": 82, + "NEGATIVE": 8 + }, + "final_distribution": { + "POSITIVE": 0.9111111111111111, + "NEGATIVE": 0.08888888888888889 + } + } }, { "season_code": "202303", @@ -273221,7 +556884,7 @@ "16:00", "17:15", "WTS A60 - Watson Center 60 Sachem Street A60", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -273229,7 +556892,7 @@ "16:00", "17:15", "WTS A60 - Watson Center 60 Sachem Street A60", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -273240,11 +556903,190 @@ "rp_attr": "", "classnotes": "\n", "final_exam": "", - "course_home_url": "https:\/\/yale.instructure.com\/courses\/89156", - "syllabus_url": "", - "fysem": false, - "sysem": false, - "colsem": false + "course_home_url": "https://yale.instructure.com/courses/89156", + "syllabus_url": "", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984495639801025, + 0.9955975413322449, + 0.9988724589347839, + 0.9967249035835266, + 0.9985703229904175, + 0.9987855553627014, + 0.9985295534133911, + 0.9984558820724487, + 0.9988006353378296, + 0.9984086155891418, + 0.9986904263496399, + 0.9987008571624756, + 0.9988790154457092, + 0.9987993240356445, + 0.9985405206680298, + 0.9987945556640625, + 0.9989092350006104, + 0.9987738728523254 + ], + "sentiment_counts": { + "POSITIVE": 18, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988095760345459, + 0.9935957789421082, + 0.9988303780555725, + 0.9989135265350342, + 0.9987744688987732, + 0.9988896250724792, + 0.9989036321640015, + 0.9985925555229187, + 0.9983797073364258, + 0.9985836744308472, + 0.9989357590675354, + 0.9989217519760132, + 0.9915355443954468, + 0.9952699542045593, + 0.998842716217041, + 0.9988923668861389, + 0.9989312291145325, + 0.9988728165626526 + ], + "sentiment_counts": { + "POSITIVE": 18, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9980517625808716, + 0.9988946318626404, + 0.9986839890480042, + 0.9974592328071594, + 0.9989256262779236, + 0.998643696308136, + 0.9944038391113281, + 0.9964806437492371, + 0.9986261129379272, + 0.9968504309654236, + 0.9989199638366699, + 0.9988793730735779, + 0.9989401698112488, + 0.9799712896347046, + 0.9981922507286072, + 0.984207808971405, + 0.9988021850585938, + 0.9994803071022034, + 0.9988345503807068, + 0.998880922794342 + ], + "sentiment_counts": { + "POSITIVE": 18, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "final_label": "POSITIVE", + "final_count": 54, + "final_proportion": 0.9642857142857143, + "final_counts": { + "POSITIVE": 54, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9642857142857143, + "NEGATIVE": 0.03571428571428571 + } + } }, { "season_code": "202303", @@ -273284,7 +557126,7 @@ "13:30", "15:20", "RKZ 202 - Rosenkranz Hall 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -273296,10 +557138,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89031\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89031/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -273343,7 +557213,7 @@ "13:30", "15:20", "RKZ 05 - Rosenkranz Hall 05", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -273355,10 +557225,113 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90079\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90079/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988908171653748, + 0.9989186525344849, + 0.9988468885421753, + 0.9989148378372192, + 0.9988295435905457, + 0.9988223910331726 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986775517463684, + 0.9965946078300476, + 0.9989385008811951, + 0.9988704323768616, + 0.9988952875137329, + 0.9988698363304138 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988988637924194, + 0.9989064931869507, + 0.9989142417907715, + 0.998910665512085, + 0.9988652467727661, + 0.998817503452301, + 0.9988685846328735 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 19 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -273399,7 +557372,7 @@ "9:25", "11:15", "HQ C07 - Humanities Quadrangle C07", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -273411,10 +557384,93 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89002\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89002/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998885452747345, + 0.9988933205604553 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985866546630859, + 0.9988686442375183 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 1 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9983514547348022, + 0.9988250136375427, + 0.9973405003547668, + 0.999376118183136 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "final_label": "POSITIVE", + "final_count": 5, + "final_proportion": 0.625, + "final_counts": { + "POSITIVE": 5, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.625, + "NEGATIVE": 0.375 + } + } }, { "season_code": "202303", @@ -273451,7 +557507,7 @@ "12:00", "13:30", "RKZ 301 - Rosenkranz Hall 301", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -273463,10 +557519,38 @@ "classnotes": "This course requires instructor permission. Please state your motivation to take this course and relevant previous coursework. ", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89885\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89885/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -273506,7 +557590,7 @@ "15:30", "18:30", "WLH 015 - William L. Harkness Hall 015", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -273518,10 +557602,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90230\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90230/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -273560,7 +557672,7 @@ "13:30", "15:20", "RKZ 102 - Rosenkranz Hall 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -273572,10 +557684,81 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92678\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92678/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988137483596802 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989209175109863 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981632828712463 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 3, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 3 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -273613,7 +557796,7 @@ "13:30", "15:20", "RKZ 04 - Rosenkranz Hall 04", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -273625,10 +557808,111 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92353\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92353/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989271759986877, + 0.9989074468612671, + 0.9988466501235962, + 0.9989029169082642, + 0.9988614320755005, + 0.9987629652023315 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989381432533264, + 0.9987595081329346, + 0.9988889098167419, + 0.9928950667381287, + 0.9928399324417114 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.6, + "NEGATIVE": 0.4 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989176988601685, + 0.9989112615585327, + 0.9989379048347473, + 0.9989088773727417, + 0.9988774657249451, + 0.9974592328071594 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 0.8823529411764706, + "final_counts": { + "POSITIVE": 15, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8823529411764706, + "NEGATIVE": 0.11764705882352941 + } + } }, { "season_code": "202303", @@ -273666,7 +557950,7 @@ "9:25", "11:15", "RKZ 301 - Rosenkranz Hall 301", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -273680,15 +557964,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92352\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92352/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "This weekly workshop is dedicated to group discussion of work-in-progress by visiting scholars, Yale graduate students, and in-house faculty from Sociology and affiliated disciplines. Papers are distributed a week ahead of time and also posted on the website of the Center for Comparative Research (http:\/\/ccr.yale.edu). Students who are enrolled for credit are expected to present a paper-in-progress.", + "description": "This weekly workshop is dedicated to group discussion of work-in-progress by visiting scholars, Yale graduate students, and in-house faculty from Sociology and affiliated disciplines. Papers are distributed a week ahead of time and also posted on the website of the Center for Comparative Research (http://ccr.yale.edu). Students who are enrolled for credit are expected to present a paper-in-progress.", "short_title": "Comparative Research Workshop", "title": "Comparative Research Workshop", "school": "GS", @@ -273721,7 +558033,7 @@ "11:50", "13:20", "WLH 203 - William L. Harkness Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -273736,7 +558048,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -273775,7 +558115,7 @@ "15:30", "17:20", "RKZ 102 - Rosenkranz Hall 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -273787,10 +558127,63 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89032\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89032/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9972186088562012 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9995085000991821 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 0 + }, + "sentiment_distribution": { + "NEGATIVE": 1.0, + "POSITIVE": 0.0 + }, + "sentiment_overall": [ + "NEGATIVE", + 1.0 + ] + }, + "final_label": "neutral", + "final_count": 0.5, + "final_proportion": 0.5, + "final_counts": { + "POSITIVE": 1, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + } + } }, { "season_code": "202303", @@ -273827,7 +558220,7 @@ "9:25", "11:15", "RKZ 102 - Rosenkranz Hall 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -273839,10 +558232,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88874\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88874/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -273886,7 +558307,7 @@ "13:30", "15:20", "SA10 105 - 10 Sachem Street 105", - "https:\/\/map.yale.edu\/?id=1910#!m\/559538" + "https://map.yale.edu/?id=1910#!m/559538" ] ] }, @@ -273898,10 +558319,38 @@ "classnotes": "There is a mandatory section immediately following the course. This makes the course run from 1:30-5:20 when factoring in the mandatory section. ", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88944\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88944/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -273939,7 +558388,7 @@ "15:30", "17:20", "RKZ 102 - Rosenkranz Hall 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -273951,10 +558400,91 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88998\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88998/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988430738449097, + 0.9983242154121399 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9903952479362488, + 0.9989161491394043 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9889330863952637, + 0.9974592328071594, + 0.9961982369422913 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 0.8571428571428571, + "final_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + } + } }, { "season_code": "202303", @@ -273992,7 +558522,7 @@ "13:30", "15:20", "WTS A72 - Watson Center 60 Sachem Street A72", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -274004,10 +558534,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88997\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88997/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -274049,7 +558586,7 @@ "13:30", "15:20", "WLH 002 - William L. Harkness Hall 002", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -274061,10 +558598,99 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89162\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89162/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9964343309402466, + 0.9989063739776611, + 0.9963538646697998, + 0.9989225268363953 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989332556724548, + 0.9989054203033447, + 0.998885452747345 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989257454872131, + 0.9989217519760132, + 0.9989079236984253, + 0.997117280960083, + 0.9989387392997742 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 12 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -274101,7 +558727,7 @@ "9:25", "11:15", "RKZ 05 - Rosenkranz Hall 05", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -274113,10 +558739,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88875\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88875/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -274154,7 +558808,7 @@ "15:30", "17:20", "PR77 A001 - 77 Prospect Street A001", - "https:\/\/map.yale.edu\/?id=1910#!m\/559939" + "https://map.yale.edu/?id=1910#!m/559939" ] ] }, @@ -274166,10 +558820,93 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88993\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88993/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988582134246826, + 0.9987620115280151, + 0.9981456995010376 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988548755645752, + 0.9987963438034058, + 0.998836100101471 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987027645111084, + 0.9954010248184204, + 0.9989375472068787 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 9 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -274208,7 +558945,7 @@ "13:30", "15:20", "RKZ 301 - Rosenkranz Hall 301", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -274220,10 +558957,111 @@ "classnotes": "This course requires instructor permission. Please submit the topics or features of this course you would find particularly interesting.", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89000\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89000/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986429810523987, + 0.9989018440246582, + 0.9988251328468323, + 0.9988858103752136, + 0.9988903403282166 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9958943128585815, + 0.9989244341850281, + 0.9988930821418762, + 0.9973253011703491, + 0.9988769888877869 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988662004470825, + 0.9983739852905273, + 0.9988710284233093, + 0.9989224672317505, + 0.9974098801612854, + 0.998907208442688, + 0.9988337159156799, + 0.9989137649536133 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 18 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -274260,7 +559098,7 @@ "16:10", "18:00", "SLB 111 - Sterling Law Buildings 111", - "https:\/\/map.yale.edu\/?id=1910#!m\/531532" + "https://map.yale.edu/?id=1910#!m/531532" ] ], "Tuesday": [ @@ -274268,7 +559106,7 @@ "16:10", "18:00", "SLB 111 - Sterling Law Buildings 111", - "https:\/\/map.yale.edu\/?id=1910#!m\/531532" + "https://map.yale.edu/?id=1910#!m/531532" ] ] }, @@ -274280,15 +559118,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90357\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90357/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "The course meets throughout the year in conjunction with the ISPS American Politics Workshop. It serves as a forum for graduate students in American politics to discuss current research in the field as presented by outside speakers and current graduate students. Open only to graduate students in the Political Science department. Can be taken as Satisfactory\/Unsatisfactory only.", + "description": "The course meets throughout the year in conjunction with the ISPS American Politics Workshop. It serves as a forum for graduate students in American politics to discuss current research in the field as presented by outside speakers and current graduate students. Open only to graduate students in the Political Science department. Can be taken as Satisfactory/Unsatisfactory only.", "short_title": "American Politics Workshop", "title": "American Politics Workshop", "school": "GS", @@ -274326,7 +559192,7 @@ "12:00", "13:15", "PR77 A002 - 77 Prospect Street A002", - "https:\/\/map.yale.edu\/?id=1910#!m\/559939" + "https://map.yale.edu/?id=1910#!m/559939" ] ] }, @@ -274341,12 +559207,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "A forum for the presentation of ongoing research by Yale graduate students, Yale faculty, and invited external speakers in a rigorous and critical environment. The workshop\u2019s methodological and substantive range is broad, covering the entire range of comparative politics. There are no formal presentations. Papers are read in advance by participants; a graduate student critically discusses the week\u2019s paper, the presenter responds, and discussion ensues. Detailed information can be found at https:\/\/campuspress.yale.edu\/cpworkshop. Open only to graduate students in the Political Science department. Can be taken as Satisfactory\/Unsatisfactory only.", + "description": "A forum for the presentation of ongoing research by Yale graduate students, Yale faculty, and invited external speakers in a rigorous and critical environment. The workshop\u2019s methodological and substantive range is broad, covering the entire range of comparative politics. There are no formal presentations. Papers are read in advance by participants; a graduate student critically discusses the week\u2019s paper, the presenter responds, and discussion ensues. Detailed information can be found at https://campuspress.yale.edu/cpworkshop. Open only to graduate students in the Political Science department. Can be taken as Satisfactory/Unsatisfactory only.", "short_title": "Comparative Politics Workshop", "title": "Comparative Politics Workshop", "school": "GS", @@ -274384,7 +559278,7 @@ "11:45", "13:20", "LUCE 202 - Luce Hall 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ] }, @@ -274396,15 +559290,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89277\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89277/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "An interdisciplinary forum that focuses on theoretical and philosophical approaches to the study of politics. The workshop seeks to engage with (and expose students to) a broad range of current scholarship in political theory and political philosophy, including work in the history of political thought; theoretical investigations of contemporary political phenomena; philosophical analyses of key political concepts; conceptual issues in ethics, law, and public policy; and contributions to normative political theory. The workshop features ongoing research by Yale faculty members, visiting scholars, invited guests, and advanced graduate students. Papers are distributed and read in advance, and discussions are opened by a graduate student commentator. Detailed information can be found at http:\/\/politicaltheory.yale.edu. Open only to graduate students in the Political Science department. Can be taken as Satisfactory\/Unsatisfactory only.", + "description": "An interdisciplinary forum that focuses on theoretical and philosophical approaches to the study of politics. The workshop seeks to engage with (and expose students to) a broad range of current scholarship in political theory and political philosophy, including work in the history of political thought; theoretical investigations of contemporary political phenomena; philosophical analyses of key political concepts; conceptual issues in ethics, law, and public policy; and contributions to normative political theory. The workshop features ongoing research by Yale faculty members, visiting scholars, invited guests, and advanced graduate students. Papers are distributed and read in advance, and discussions are opened by a graduate student commentator. Detailed information can be found at http://politicaltheory.yale.edu. Open only to graduate students in the Political Science department. Can be taken as Satisfactory/Unsatisfactory only.", "short_title": "Political Theory Workshop", "title": "Political Theory Workshop", "school": "GS", @@ -274436,7 +559358,7 @@ "16:15", "18:00", "RKZ 202 - Rosenkranz Hall 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -274451,12 +559373,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "This seminar series engages research on the interaction between economics and politics as well as research that employs the methods of political economists to study a wide range of social phenomena. The workshop serves as a forum for graduate students and faculty to present their own work and to discuss current research in the field as presented by outside speakers, faculty, and students. Detailed information can be found at http:\/\/leitner.yale.edu\/seminars. Open only to graduate students in the Political Science department. Can be taken as Satisfactory\/Unsatisfactory only.", + "description": "This seminar series engages research on the interaction between economics and politics as well as research that employs the methods of political economists to study a wide range of social phenomena. The workshop serves as a forum for graduate students and faculty to present their own work and to discuss current research in the field as presented by outside speakers, faculty, and students. Detailed information can be found at http://leitner.yale.edu/seminars. Open only to graduate students in the Political Science department. Can be taken as Satisfactory/Unsatisfactory only.", "short_title": "Leitner Political Economy Sem...", "title": "Leitner Political Economy Seminar Series", "school": "GS", @@ -274488,7 +559438,7 @@ "11:45", "13:20", "LUCE 202 - Luce Hall 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ] }, @@ -274503,12 +559453,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "This workshop engages work in the fields of international security, international political economy, and international institutions. The forum attracts outside speakers, Yale faculty, and graduate students. It provides a venue to develop ideas, polish work in progress, or showcase completed projects. Typically, the speaker would prepare a 35- to 40-minute presentation, followed by a question-and-answer session. More information can be found at http:\/\/irworkshop.yale.edu. Open only to graduate students in the Political Science department. Can be taken as Satisfactory\/Unsatisfactory only.", + "description": "This workshop engages work in the fields of international security, international political economy, and international institutions. The forum attracts outside speakers, Yale faculty, and graduate students. It provides a venue to develop ideas, polish work in progress, or showcase completed projects. Typically, the speaker would prepare a 35- to 40-minute presentation, followed by a question-and-answer session. More information can be found at http://irworkshop.yale.edu. Open only to graduate students in the Political Science department. Can be taken as Satisfactory/Unsatisfactory only.", "short_title": "International Relations Workshop", "title": "International Relations Workshop", "school": "GS", @@ -274543,7 +559521,7 @@ "12:00", "13:20", "RKZ 05 - Rosenkranz Hall 05", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -274555,10 +559533,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89280\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89280/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -274610,7 +559616,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -274647,7 +559681,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -274684,7 +559746,7 @@ "9:25", "10:15", "CO493 208 - 493 College Street 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560001" + "https://map.yale.edu/?id=1910#!m/560001" ] ], "Tuesday": [ @@ -274692,7 +559754,7 @@ "9:25", "10:15", "CO493 208 - 493 College Street 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560001" + "https://map.yale.edu/?id=1910#!m/560001" ] ], "Wednesday": [ @@ -274700,7 +559762,7 @@ "9:25", "10:15", "CO493 208 - 493 College Street 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560001" + "https://map.yale.edu/?id=1910#!m/560001" ] ], "Thursday": [ @@ -274708,7 +559770,7 @@ "9:25", "10:15", "CO493 208 - 493 College Street 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560001" + "https://map.yale.edu/?id=1910#!m/560001" ] ], "Friday": [ @@ -274716,7 +559778,7 @@ "9:25", "10:15", "CO493 208 - 493 College Street 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560001" + "https://map.yale.edu/?id=1910#!m/560001" ] ] }, @@ -274730,10 +559792,97 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88654\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88654/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981847405433655, + 0.9952893257141113, + 0.9958123564720154, + 0.9989155530929565 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989025592803955, + 0.9989105463027954, + 0.9988734126091003, + 0.998871386051178 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988564252853394, + 0.9988890290260315, + 0.9987781643867493 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 11 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -274770,7 +559919,7 @@ "10:30", "11:20", "CO493 208 - 493 College Street 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560001" + "https://map.yale.edu/?id=1910#!m/560001" ] ], "Tuesday": [ @@ -274778,7 +559927,7 @@ "10:30", "11:20", "CO493 208 - 493 College Street 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560001" + "https://map.yale.edu/?id=1910#!m/560001" ] ], "Wednesday": [ @@ -274786,7 +559935,7 @@ "10:30", "11:20", "CO493 208 - 493 College Street 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560001" + "https://map.yale.edu/?id=1910#!m/560001" ] ], "Thursday": [ @@ -274794,7 +559943,7 @@ "10:30", "11:20", "CO493 208 - 493 College Street 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560001" + "https://map.yale.edu/?id=1910#!m/560001" ] ], "Friday": [ @@ -274802,7 +559951,7 @@ "10:30", "11:20", "CO493 208 - 493 College Street 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560001" + "https://map.yale.edu/?id=1910#!m/560001" ] ] }, @@ -274816,10 +559965,83 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88657\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88657/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982535243034363 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989287257194519 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981794357299805, + 0.9987078905105591 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 4, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 4 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -274856,7 +560078,7 @@ "13:00", "14:15", "HQ C01 - Humanities Quadrangle C01", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -274864,7 +560086,7 @@ "13:00", "14:15", "HQ C01 - Humanities Quadrangle C01", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -274878,10 +560100,89 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88659\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88659/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9976237416267395, + 0.9985950589179993 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988868832588196, + 0.9989078044891357 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.7355377674102783, + 0.9989330172538757 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 1 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "final_label": "POSITIVE", + "final_count": 5, + "final_proportion": 0.8333333333333334, + "final_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + } + } }, { "season_code": "202303", @@ -274937,7 +560238,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -274993,7 +560322,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -275030,7 +560387,7 @@ "9:25", "10:15", "LOM 214 - Leet Oliver Memorial Hall 214", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ], "Tuesday": [ @@ -275038,7 +560395,7 @@ "9:25", "10:15", "LOM 214 - Leet Oliver Memorial Hall 214", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ], "Wednesday": [ @@ -275046,7 +560403,7 @@ "9:25", "10:15", "LOM 214 - Leet Oliver Memorial Hall 214", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ], "Thursday": [ @@ -275054,7 +560411,7 @@ "9:25", "10:15", "LOM 214 - Leet Oliver Memorial Hall 214", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ], "Friday": [ @@ -275062,7 +560419,7 @@ "9:25", "10:15", "LOM 214 - Leet Oliver Memorial Hall 214", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ] }, @@ -275076,10 +560433,81 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88661\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88661/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987481832504272 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988364577293396 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986439347267151 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 3, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 3 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -275116,7 +560544,7 @@ "10:30", "11:20", "LOM 214 - Leet Oliver Memorial Hall 214", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ], "Tuesday": [ @@ -275124,7 +560552,7 @@ "10:30", "11:20", "LOM 214 - Leet Oliver Memorial Hall 214", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ], "Wednesday": [ @@ -275132,7 +560560,7 @@ "10:30", "11:20", "LOM 214 - Leet Oliver Memorial Hall 214", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ], "Thursday": [ @@ -275140,7 +560568,7 @@ "10:30", "11:20", "LOM 214 - Leet Oliver Memorial Hall 214", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ], "Friday": [ @@ -275148,7 +560576,7 @@ "10:30", "11:20", "LOM 214 - Leet Oliver Memorial Hall 214", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ] }, @@ -275162,10 +560590,107 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89761\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89761/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9973908066749573, + 0.9987659454345703, + 0.9902883768081665, + 0.9936386942863464, + 0.9988300204277039 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 4 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2, + "POSITIVE": 0.8 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989376664161682, + 0.9984291195869446, + 0.9973303079605103, + 0.9985107779502869, + 0.9984520673751831 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987697005271912, + 0.9989252686500549, + 0.9984408020973206, + 0.9987144470214844, + 0.9986833930015564 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 0.8666666666666667, + "final_counts": { + "NEGATIVE": 2, + "POSITIVE": 13 + }, + "final_distribution": { + "NEGATIVE": 0.13333333333333333, + "POSITIVE": 0.8666666666666667 + } + } }, { "season_code": "202303", @@ -275205,7 +560730,7 @@ "11:35", "12:25", "LOM 215 - Leet Oliver Memorial Hall 215", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ], "Tuesday": [ @@ -275213,7 +560738,7 @@ "11:35", "12:25", "LOM 215 - Leet Oliver Memorial Hall 215", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ], "Wednesday": [ @@ -275221,7 +560746,7 @@ "11:35", "12:25", "LOM 215 - Leet Oliver Memorial Hall 215", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ], "Thursday": [ @@ -275229,7 +560754,7 @@ "11:35", "12:25", "LOM 215 - Leet Oliver Memorial Hall 215", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ], "Friday": [ @@ -275237,7 +560762,7 @@ "11:35", "12:25", "LOM 215 - Leet Oliver Memorial Hall 215", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ] }, @@ -275251,10 +560776,109 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89762\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89762/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9963094592094421, + 0.9989179372787476, + 0.9987149238586426, + 0.9958423972129822, + 0.9988879561424255 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989332556724548, + 0.9988804459571838, + 0.9989092350006104, + 0.9981605410575867, + 0.9989185333251953 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988849759101868, + 0.9989280104637146, + 0.9989292025566101, + 0.9983208775520325, + 0.9986644983291626, + 0.9988114833831787 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 0.9375, + "final_counts": { + "POSITIVE": 15, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9375, + "NEGATIVE": 0.0625 + } + } }, { "season_code": "202303", @@ -275291,7 +560915,7 @@ "9:25", "10:15", "HQ 401 - Humanities Quadrangle 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Friday": [ @@ -275299,7 +560923,7 @@ "9:25", "10:15", "HQ 401 - Humanities Quadrangle 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Tuesday": [ @@ -275307,7 +560931,7 @@ "9:25", "10:15", "HQ 132 - Humanities Quadrangle 132", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -275315,7 +560939,7 @@ "9:25", "10:15", "HQ 132 - Humanities Quadrangle 132", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -275323,7 +560947,7 @@ "9:25", "10:15", "", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -275337,10 +560961,87 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88663\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88663/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988641738891602, + 0.9989245533943176 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987099170684814, + 0.9988049268722534 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9977415800094604, + 0.9988646507263184 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 6 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -275377,7 +561078,7 @@ "10:30", "11:20", "HQ 401 - Humanities Quadrangle 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Tuesday": [ @@ -275385,7 +561086,7 @@ "10:30", "11:20", "HQ 401 - Humanities Quadrangle 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -275393,7 +561094,7 @@ "10:30", "11:20", "HQ 401 - Humanities Quadrangle 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -275401,7 +561102,7 @@ "10:30", "11:20", "HQ 401 - Humanities Quadrangle 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Friday": [ @@ -275409,7 +561110,7 @@ "10:30", "11:20", "HQ 401 - Humanities Quadrangle 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -275423,10 +561124,97 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89763\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89763/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982340335845947, + 0.9988808035850525, + 0.9988400340080261 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.990813672542572, + 0.9988644123077393, + 0.9924631118774414 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994946718215942, + 0.9989261031150818, + 0.998889148235321, + 0.9988009929656982 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.25, + "POSITIVE": 0.75 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 0.9, + "final_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + } + } }, { "season_code": "202303", @@ -275463,7 +561251,7 @@ "11:35", "12:25", "LOM 214 - Leet Oliver Memorial Hall 214", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ], "Tuesday": [ @@ -275471,7 +561259,7 @@ "11:35", "12:25", "LOM 214 - Leet Oliver Memorial Hall 214", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ], "Wednesday": [ @@ -275479,7 +561267,7 @@ "11:35", "12:25", "LOM 214 - Leet Oliver Memorial Hall 214", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ], "Thursday": [ @@ -275487,7 +561275,7 @@ "11:35", "12:25", "LOM 214 - Leet Oliver Memorial Hall 214", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ], "Friday": [ @@ -275495,7 +561283,7 @@ "11:35", "12:25", "LOM 214 - Leet Oliver Memorial Hall 214", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ] }, @@ -275509,10 +561297,81 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89945\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89945/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986249208450317 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987828135490417 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988572597503662 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 3, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 3 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -275549,7 +561408,7 @@ "11:35", "12:50", "HQ 401 - Humanities Quadrangle 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -275557,7 +561416,7 @@ "11:35", "12:50", "HQ 401 - Humanities Quadrangle 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -275573,10 +561432,93 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89665\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89665/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988064765930176, + 0.9988619089126587, + 0.9987092018127441 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989166259765625, + 0.9988706707954407, + 0.998832643032074 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986733198165894, + 0.998865008354187, + 0.9988143444061279 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 9 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -275615,7 +561557,7 @@ "15:30", "17:20", "HQ 209 - Humanities Quadrangle 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -275631,10 +561573,87 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88665\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88665/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988693594932556, + 0.9987756609916687 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985318183898926, + 0.9989325404167175 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.5296843647956848, + 0.9988837838172913 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 6 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -275674,7 +561693,7 @@ "15:30", "17:20", "HQ C11 - Humanities Quadrangle C11", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -275692,10 +561711,87 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88667\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88667/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988834261894226, + 0.9986335635185242 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9978232383728027, + 0.998855471611023 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998842179775238, + 0.9988335967063904 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 6 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -275738,7 +561834,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -275781,7 +561905,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -275821,7 +561973,7 @@ "15:30", "17:20", "HQ C11 - Humanities Quadrangle C11", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -275833,10 +561985,87 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88667\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88667/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988834261894226, + 0.9986335635185242 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9978232383728027, + 0.998855471611023 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998842179775238, + 0.9988335967063904 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 6 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -275875,7 +562104,7 @@ "15:30", "17:20", "HQ 209 - Humanities Quadrangle 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -275887,10 +562116,87 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88665\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88665/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988693594932556, + 0.9987756609916687 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985318183898926, + 0.9989325404167175 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.5296843647956848, + 0.9988837838172913 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 6 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -275930,10 +562236,135 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90353\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90353/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9636741280555725, + 0.9987585544586182, + 0.9985516667366028, + 0.9666237235069275, + 0.985565721988678, + 0.9988569021224976, + 0.9978342652320862, + 0.9988324046134949, + 0.9985306262969971, + 0.9980777502059937, + 0.9989013671875 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9090909090909091 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9977760910987854, + 0.9987553358078003, + 0.9666237235069275, + 0.9987952709197998, + 0.9986604452133179, + 0.9985306262969971, + 0.9988667964935303 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.989427387714386, + 0.997117280960083, + 0.9977735877037048, + 0.9666237235069275, + 0.9985688924789429, + 0.9993957281112671, + 0.9978958368301392, + 0.996543824672699, + 0.994242250919342, + 0.9985306262969971, + 0.9988705515861511 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.7272727272727273, + "NEGATIVE": 0.2727272727272727 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7272727272727273 + ] + }, + "final_label": "POSITIVE", + "final_count": 24, + "final_proportion": 0.8275862068965517, + "final_counts": { + "POSITIVE": 24, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.8275862068965517, + "NEGATIVE": 0.1724137931034483 + } + } }, { "season_code": "202303", @@ -275970,7 +562401,7 @@ "13:30", "15:20", "WALL81 101 - 81 Wall Street 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -275982,10 +562413,91 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89331\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89331/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987081289291382, + 0.9987397789955139, + 0.9988442659378052, + 0.9987338185310364 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985857009887695, + 0.9978331923484802 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987217783927917, + 0.9987397789955139 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 8, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 8 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -276022,7 +562534,7 @@ "13:30", "15:20", "WALL81 101 - 81 Wall Street 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -276034,10 +562546,83 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89332\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89332/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987102746963501 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989205598831177, + 0.9988681077957153 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.997117280960083 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 4, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 4 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -276074,7 +562659,7 @@ "13:00", "14:15", "SSS 114 - Sheffield-Sterling-Strathcona 114", - "https:\/\/map.yale.edu\/?id=1910#!m\/563689" + "https://map.yale.edu/?id=1910#!m/563689" ] ], "Thursday": [ @@ -276082,7 +562667,7 @@ "13:00", "14:15", "SSS 114 - Sheffield-Sterling-Strathcona 114", - "https:\/\/map.yale.edu\/?id=1910#!m\/563689" + "https://map.yale.edu/?id=1910#!m/563689" ] ] }, @@ -276098,15 +562683,372 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88674\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88674/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989017248153687, + 0.991449773311615, + 0.9989168643951416, + 0.9988677501678467, + 0.9989320635795593, + 0.998895525932312, + 0.9988729357719421, + 0.9974604845046997, + 0.9988559484481812, + 0.998507559299469, + 0.9965144991874695, + 0.9989005327224731, + 0.9988266825675964, + 0.9943880438804626, + 0.9986414313316345, + 0.9988620281219482, + 0.9927197694778442, + 0.998687207698822, + 0.9977721571922302, + 0.9988765120506287, + 0.9988362193107605, + 0.9988763928413391, + 0.9988622665405273, + 0.9949376583099365, + 0.9988420605659485, + 0.9988056421279907, + 0.9985468983650208, + 0.9988498687744141, + 0.9985018968582153, + 0.9988478422164917, + 0.9987730383872986, + 0.9987169504165649, + 0.9969696402549744, + 0.9989343285560608, + 0.9987425208091736, + 0.9988095760345459, + 0.9987128973007202, + 0.9987983703613281, + 0.9927311539649963, + 0.998304009437561, + 0.9989367127418518, + 0.9987829327583313, + 0.998836100101471, + 0.9985465407371521, + 0.9984146356582642 + ], + "sentiment_counts": { + "POSITIVE": 44, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9777777777777777, + "NEGATIVE": 0.022222222222222223 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9777777777777777 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9969795942306519, + 0.9989232420921326, + 0.9988834261894226, + 0.9988766312599182, + 0.9987861514091492, + 0.9988683462142944, + 0.998917818069458, + 0.9987666606903076, + 0.9960407018661499, + 0.9987786412239075, + 0.9988850951194763, + 0.9989362359046936, + 0.9988946318626404, + 0.9989128112792969, + 0.9961161613464355, + 0.9988833069801331, + 0.9988399147987366, + 0.9989016056060791, + 0.9989203214645386, + 0.9989150762557983, + 0.9988960027694702, + 0.9988304972648621, + 0.9988728165626526, + 0.9988492727279663, + 0.9801303148269653, + 0.9988635778427124, + 0.9932898879051208, + 0.9946000576019287, + 0.9987353682518005, + 0.9985697269439697, + 0.9956402778625488, + 0.9986724853515625, + 0.9988904595375061, + 0.9947476983070374, + 0.9989079236984253, + 0.9988064765930176, + 0.9988144636154175, + 0.9978219270706177, + 0.9986061453819275, + 0.9988215565681458, + 0.998897910118103, + 0.9984679818153381, + 0.9987282156944275, + 0.9988981485366821, + 0.9989311099052429, + 0.9980522394180298 + ], + "sentiment_counts": { + "POSITIVE": 43, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.9347826086956522, + "NEGATIVE": 0.06521739130434782 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9347826086956522 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989026784896851, + 0.9989221096038818, + 0.9988221526145935, + 0.9984967708587646, + 0.9989226460456848, + 0.9975192546844482, + 0.9988319277763367, + 0.9988611936569214, + 0.9988734126091003, + 0.9984562397003174, + 0.9988670349121094, + 0.9988887906074524, + 0.9989345669746399, + 0.9989181756973267, + 0.9987584352493286, + 0.9983811378479004, + 0.9988491535186768, + 0.9989117383956909, + 0.9988417029380798, + 0.998916506767273, + 0.9989151954650879, + 0.9989257454872131, + 0.9988861680030823, + 0.9988768696784973, + 0.9988747239112854, + 0.9994957447052002, + 0.9987732768058777, + 0.9987422823905945, + 0.9988099336624146, + 0.9985244870185852, + 0.9989047050476074, + 0.9985009431838989, + 0.9923615455627441, + 0.9989056587219238, + 0.9988747239112854, + 0.9986624717712402, + 0.9989137649536133, + 0.9989124536514282, + 0.998340368270874, + 0.9982567429542542, + 0.9987515211105347, + 0.9988577365875244, + 0.9926814436912537, + 0.998584508895874, + 0.9989338517189026, + 0.9984716773033142, + 0.9985949397087097, + 0.9988656044006348, + 0.9985058307647705, + 0.9988635778427124, + 0.9988106489181519, + 0.9988505840301514, + 0.9988307356834412, + 0.9989332556724548 + ], + "sentiment_counts": { + "POSITIVE": 51, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.9444444444444444, + "NEGATIVE": 0.05555555555555555 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9444444444444444 + ] + }, + "final_label": "POSITIVE", + "final_count": 138, + "final_proportion": 0.9517241379310345, + "final_counts": { + "POSITIVE": 138, + "NEGATIVE": 7 + }, + "final_distribution": { + "POSITIVE": 0.9517241379310345, + "NEGATIVE": 0.04827586206896552 + } + } }, { "season_code": "202303", "requirements": "Priority given to juniors, seniors, Ed Study students.", - "description": "This course is first in a sequence including Theory and Practice of Early Childhood Education (CHLD127\/PSYCH 127\/EDST 127) and Language Literacy and Play (CHLD 128\/PSYCH 128\/EDST 128). This course provides students a theoretical base in child development and behavior and tools to sensitively and carefully observer infants and young children. The seminar will consider aspects of cognitive, social, and emotional development. An assumption of this course is that it is not possible to understand children \u2013 their behavior and development\u2014without understanding their families and culture and the relationships between children and parents. The course will give an overview of the major theories in the field, focusing on the complex interaction between the developing self and the environment, exploring current research and theory as well as practice. Students will have the opportunity to see how programs for young children use psychodynamic and interactional theories to inform the development of their philosophy and curriculum. Weekly Observations:-Total Time Commitment 3 hours per week. Students will do two separate weekly observations over the course of the semester. They will observe in a group setting for 2 hours each each week at a Yale affiliated child care center.\u00a0 Students will also arrange to do a weekly 1 hour observation (either in person or virtually) of a child under the age of 6. Students must make their own arrangements for these individual observations. If it is not possible to arrange a child to observe, please do not apply to take this course. For a portion of class meetings, the class will divide into small supervisory discussion groups.", + "description": "This course is first in a sequence including Theory and Practice of Early Childhood Education (CHLD127/PSYCH 127/EDST 127) and Language Literacy and Play (CHLD 128/PSYCH 128/EDST 128). This course provides students a theoretical base in child development and behavior and tools to sensitively and carefully observer infants and young children. The seminar will consider aspects of cognitive, social, and emotional development. An assumption of this course is that it is not possible to understand children \u2013 their behavior and development\u2014without understanding their families and culture and the relationships between children and parents. The course will give an overview of the major theories in the field, focusing on the complex interaction between the developing self and the environment, exploring current research and theory as well as practice. Students will have the opportunity to see how programs for young children use psychodynamic and interactional theories to inform the development of their philosophy and curriculum. Weekly Observations:-Total Time Commitment 3 hours per week. Students will do two separate weekly observations over the course of the semester. They will observe in a group setting for 2 hours each each week at a Yale affiliated child care center.\u00a0 Students will also arrange to do a weekly 1 hour observation (either in person or virtually) of a child under the age of 6. Students must make their own arrangements for these individual observations. If it is not possible to arrange a child to observe, please do not apply to take this course. For a portion of class meetings, the class will divide into small supervisory discussion groups.", "short_title": "Child Development", "title": "Child Development", "school": "YC", @@ -276153,10 +563095,107 @@ "classnotes": "Permission of the instructors is REQUIRED for this seminar. Students should apply on the Yale Course Selection site between April 18 and April 21. Instructors will select students and construct a waiting list. Instructors will select students by April 25. Students should include on their application on Yale Course Site: Name, Class, Preferred Pronouns, Major, and if in Ed Studies; Briefly describe previous experience working with children; Why do you want to take this class?; Will you be able to identify a child to observe?; Is there anything else you think it would be helpful for us to know about you?\nPriority given to juniors, seniors, Ed Study students.", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88863\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88863/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989299178123474, + 0.9988211989402771, + 0.9982457160949707, + 0.9988716244697571, + 0.9988870024681091 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987554550170898, + 0.9989006519317627, + 0.9989153146743774, + 0.9977917671203613, + 0.9989138841629028 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985539317131042, + 0.9986905455589294, + 0.9989352822303772, + 0.9984605312347412, + 0.9989373087882996, + 0.998846173286438 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 16 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -276194,7 +563233,7 @@ "14:30", "15:45", "SSS 114 - Sheffield-Sterling-Strathcona 114", - "https:\/\/map.yale.edu\/?id=1910#!m\/563689" + "https://map.yale.edu/?id=1910#!m/563689" ] ], "Thursday": [ @@ -276202,7 +563241,7 @@ "14:30", "15:45", "SSS 114 - Sheffield-Sterling-Strathcona 114", - "https:\/\/map.yale.edu\/?id=1910#!m\/563689" + "https://map.yale.edu/?id=1910#!m/563689" ] ] }, @@ -276219,10 +563258,431 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89100\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89100/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987362027168274, + 0.9987249970436096, + 0.9988899827003479, + 0.9988569021224976, + 0.9988665580749512, + 0.9988256096839905, + 0.9988522529602051, + 0.9967748522758484, + 0.9985125660896301, + 0.9988225102424622, + 0.9988974332809448, + 0.9972418546676636, + 0.9988442659378052, + 0.998627781867981, + 0.9987404942512512, + 0.9989352822303772, + 0.998380184173584, + 0.9987539052963257, + 0.9989011287689209, + 0.9988071918487549, + 0.9987221360206604, + 0.998880922794342, + 0.9988253712654114, + 0.9986246824264526, + 0.9989203214645386, + 0.9988021850585938, + 0.998830258846283, + 0.998894989490509, + 0.9989179372787476, + 0.9988571405410767, + 0.9989240765571594, + 0.9989008903503418, + 0.998782217502594, + 0.9988818764686584, + 0.9988760352134705, + 0.9988422989845276, + 0.9989222288131714, + 0.9987177848815918, + 0.9986843466758728, + 0.9988701939582825, + 0.9989163875579834, + 0.9989145994186401, + 0.9986349940299988, + 0.9988489151000977, + 0.9987255930900574, + 0.998879611492157, + 0.995410144329071, + 0.998832643032074, + 0.9987867474555969, + 0.9985839128494263, + 0.9988892674446106, + 0.9978731870651245, + 0.9922453761100769, + 0.9989199638366699 + ], + "sentiment_counts": { + "POSITIVE": 53, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9814814814814815, + "NEGATIVE": 0.018518518518518517 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9814814814814815 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989328980445862, + 0.9989238381385803, + 0.9994969367980957, + 0.9924607872962952, + 0.9987586736679077, + 0.9985997080802917, + 0.9989203214645386, + 0.9989031553268433, + 0.9987383484840393, + 0.9989336133003235, + 0.9985526204109192, + 0.9967473745346069, + 0.9989497065544128, + 0.9988871216773987, + 0.9989011287689209, + 0.9927384257316589, + 0.9964538812637329, + 0.9979287385940552, + 0.997919499874115, + 0.9995007514953613, + 0.9988491535186768, + 0.9985539317131042, + 0.9988968372344971, + 0.9967196583747864, + 0.998883068561554, + 0.9989138841629028, + 0.9988059997558594, + 0.9988870024681091, + 0.9995002746582031, + 0.998890221118927, + 0.9989120960235596, + 0.9989104270935059, + 0.9988123178482056, + 0.9989097118377686, + 0.9987439513206482, + 0.9989240765571594, + 0.9988480806350708, + 0.998918890953064, + 0.9986661672592163, + 0.9977335929870605, + 0.9989058971405029, + 0.998579740524292, + 0.9974706172943115, + 0.9988749623298645, + 0.9976376295089722, + 0.9988539218902588, + 0.9988202452659607, + 0.9989225268363953, + 0.9995074272155762, + 0.9988095760345459, + 0.9988682270050049, + 0.998903751373291, + 0.9989200830459595, + 0.9881595373153687, + 0.9984867572784424, + 0.9989011287689209, + 0.9994820952415466, + 0.9890523552894592, + 0.9988498687744141 + ], + "sentiment_counts": { + "POSITIVE": 47, + "NEGATIVE": 12 + }, + "sentiment_distribution": { + "POSITIVE": 0.7966101694915254, + "NEGATIVE": 0.2033898305084746 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7966101694915254 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987868666648865, + 0.9978833794593811, + 0.997117280960083, + 0.9988341927528381, + 0.998779833316803, + 0.9988818764686584, + 0.99886155128479, + 0.998894989490509, + 0.924232542514801, + 0.9988656044006348, + 0.9988056421279907, + 0.9988901019096375, + 0.9994837045669556, + 0.998897910118103, + 0.9989264607429504, + 0.9988189339637756, + 0.9988622665405273, + 0.9989266991615295, + 0.9986995458602905, + 0.9984710812568665, + 0.9528436660766602, + 0.9957839846611023, + 0.9962823987007141, + 0.9988583326339722, + 0.9981922507286072, + 0.9989114999771118, + 0.9988096952438354, + 0.998920202255249, + 0.996063768863678, + 0.9925089478492737, + 0.9989320635795593, + 0.9963036775588989, + 0.998822033405304, + 0.9989185333251953, + 0.9989123344421387, + 0.99937504529953, + 0.9988904595375061, + 0.9985396862030029, + 0.9988813996315002, + 0.994251012802124, + 0.9989272952079773, + 0.9988756775856018, + 0.9989311099052429, + 0.9980652928352356, + 0.9960973858833313, + 0.9988445043563843, + 0.9988512992858887, + 0.9989070892333984, + 0.9989314675331116, + 0.9948062300682068, + 0.9988787770271301, + 0.9988704323768616, + 0.9989319443702698, + 0.9986538887023926, + 0.9989066123962402, + 0.9967201352119446, + 0.9987261891365051, + 0.9988289475440979, + 0.9546428322792053, + 0.9963685274124146, + 0.9980840682983398, + 0.9988893866539001, + 0.9811272025108337, + 0.9988503456115723 + ], + "sentiment_counts": { + "POSITIVE": 53, + "NEGATIVE": 11 + }, + "sentiment_distribution": { + "POSITIVE": 0.828125, + "NEGATIVE": 0.171875 + }, + "sentiment_overall": [ + "POSITIVE", + 0.828125 + ] + }, + "final_label": "POSITIVE", + "final_count": 153, + "final_proportion": 0.864406779661017, + "final_counts": { + "POSITIVE": 153, + "NEGATIVE": 24 + }, + "final_distribution": { + "POSITIVE": 0.864406779661017, + "NEGATIVE": 0.13559322033898305 + } + } }, { "season_code": "202303", @@ -276284,15 +563744,146 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88676\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88676/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "", - "description": "Theories, methodology, and applications of social psychology. Core topics include the self, social cognition\/social perception, attitudes and persuasion, group processes, conformity, human conflict and aggression, prejudice, prosocial behavior, and emotion.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986456036567688, + 0.9988774657249451, + 0.9989327788352966, + 0.9989345669746399, + 0.9989149570465088, + 0.9983288645744324, + 0.9987980127334595, + 0.9987825751304626, + 0.9985785484313965, + 0.9989069700241089, + 0.9989129304885864 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9090909090909091 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998831570148468, + 0.9986496567726135, + 0.9994625449180603, + 0.9988228678703308, + 0.9987140893936157, + 0.9970806241035461, + 0.9989080429077148, + 0.9986929297447205, + 0.9988840222358704 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.980938196182251, + 0.9984240531921387, + 0.9989258646965027, + 0.998872697353363, + 0.998907208442688, + 0.9946005344390869, + 0.9987576007843018, + 0.9987230896949768, + 0.9988779425621033, + 0.9945294260978699, + 0.998879611492157, + 0.9988798499107361 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 30, + "final_proportion": 0.9375, + "final_counts": { + "POSITIVE": 30, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9375, + "NEGATIVE": 0.0625 + } + } + }, + { + "season_code": "202303", + "requirements": "", + "description": "Theories, methodology, and applications of social psychology. Core topics include the self, social cognition/social perception, attitudes and persuasion, group processes, conformity, human conflict and aggression, prejudice, prosocial behavior, and emotion.", "short_title": "Social Psychology", "title": "Social Psychology", "school": "YC", @@ -276325,7 +563916,7 @@ "11:35", "12:50", "LORIA 250 - Loria Center 250", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ], "Thursday": [ @@ -276333,7 +563924,7 @@ "11:35", "12:50", "LORIA 250 - Loria Center 250", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -276351,10 +563942,287 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88679\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88679/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9933809041976929, + 0.9986317753791809, + 0.998664140701294, + 0.9987547397613525, + 0.9988232254981995, + 0.9988546371459961, + 0.9988433122634888, + 0.9967018961906433, + 0.9987812638282776, + 0.9987125396728516, + 0.9989268183708191, + 0.9988014698028564, + 0.9903088212013245, + 0.9979281425476074, + 0.9965671300888062, + 0.9986481070518494, + 0.9986938834190369, + 0.998433530330658, + 0.9989067316055298, + 0.9988921284675598, + 0.9978538155555725, + 0.998849630355835, + 0.9950997233390808, + 0.9988511800765991, + 0.9987849593162537, + 0.9987984895706177, + 0.9975492358207703, + 0.998508632183075, + 0.9987192153930664, + 0.9988345503807068, + 0.9989280104637146 + ], + "sentiment_counts": { + "POSITIVE": 31, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989767074584961, + 0.9973606467247009, + 0.9972483515739441, + 0.9988238215446472, + 0.9987732768058777, + 0.9988532066345215, + 0.9988682270050049, + 0.9985091090202332, + 0.9995059967041016, + 0.9953736662864685, + 0.9993438124656677, + 0.9943601489067078, + 0.9979274272918701, + 0.9980637431144714, + 0.9977554678916931, + 0.9989328980445862, + 0.9978444576263428, + 0.9979766011238098, + 0.9995001554489136, + 0.9988656044006348, + 0.998599112033844, + 0.9942446351051331, + 0.9983793497085571, + 0.9994813799858093, + 0.9988930821418762, + 0.992860734462738, + 0.9869468212127686, + 0.9983342289924622, + 0.9987730383872986, + 0.9989198446273804, + 0.9987573623657227, + 0.9986849427223206, + 0.9994219541549683, + 0.9987467527389526, + 0.9988996982574463 + ], + "sentiment_counts": { + "NEGATIVE": 11, + "POSITIVE": 24 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3142857142857143, + "POSITIVE": 0.6857142857142857 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6857142857142857 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994997978210449, + 0.9994944334030151, + 0.9986371397972107, + 0.9988129138946533, + 0.9987959861755371, + 0.9989148378372192, + 0.9987637996673584, + 0.9988922476768494, + 0.9986199140548706, + 0.9989269375801086, + 0.9995120763778687, + 0.9994949102401733, + 0.9989093542098999, + 0.998833954334259, + 0.9957626461982727, + 0.9988190531730652, + 0.9802748560905457, + 0.9989226460456848, + 0.9974592328071594, + 0.9636439085006714, + 0.9917340278625488, + 0.9987448453903198, + 0.9963002800941467, + 0.9974410533905029, + 0.9987788796424866, + 0.9995001554489136, + 0.9880059361457825, + 0.9987543821334839, + 0.9995026588439941, + 0.9988916516304016, + 0.9984466433525085, + 0.998646080493927, + 0.9988241791725159, + 0.9988924860954285, + 0.9987784028053284, + 0.9988920092582703, + 0.997117280960083, + 0.9989112615585327, + 0.9989294409751892 + ], + "sentiment_counts": { + "NEGATIVE": 9, + "POSITIVE": 30 + }, + "sentiment_distribution": { + "NEGATIVE": 0.23076923076923078, + "POSITIVE": 0.7692307692307693 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7692307692307693 + ] + }, + "final_label": "POSITIVE", + "final_count": 85, + "final_proportion": 0.8095238095238095, + "final_counts": { + "POSITIVE": 85, + "NEGATIVE": 20 + }, + "final_distribution": { + "POSITIVE": 0.8095238095238095, + "NEGATIVE": 0.19047619047619047 + } + } }, { "season_code": "202303", @@ -276392,7 +564260,7 @@ "11:35", "12:50", "SSS 114 - Sheffield-Sterling-Strathcona 114", - "https:\/\/map.yale.edu\/?id=1910#!m\/563689" + "https://map.yale.edu/?id=1910#!m/563689" ] ], "Thursday": [ @@ -276400,7 +564268,7 @@ "11:35", "12:50", "SSS 114 - Sheffield-Sterling-Strathcona 114", - "https:\/\/map.yale.edu\/?id=1910#!m\/563689" + "https://map.yale.edu/?id=1910#!m/563689" ] ] }, @@ -276416,10 +564284,317 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88681\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88681/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989011287689209, + 0.9974243640899658, + 0.9989148378372192, + 0.9979779124259949, + 0.9987351298332214, + 0.9972881078720093, + 0.9988112449645996, + 0.9987128973007202, + 0.9987805485725403, + 0.9989234805107117, + 0.9987581968307495, + 0.9989097118377686, + 0.9986302852630615, + 0.9988333582878113, + 0.9993042945861816, + 0.998742401599884, + 0.9910605549812317, + 0.9979063272476196, + 0.9988829493522644, + 0.9977458119392395, + 0.998762845993042, + 0.9988215565681458, + 0.9981974959373474, + 0.9986722469329834, + 0.9980606436729431, + 0.99797123670578, + 0.9982799291610718, + 0.9989030361175537, + 0.9987512826919556, + 0.9988596439361572, + 0.9988070726394653 + ], + "sentiment_counts": { + "POSITIVE": 30, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.967741935483871, + "NEGATIVE": 0.03225806451612903 + }, + "sentiment_overall": [ + "POSITIVE", + 0.967741935483871 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988922476768494, + 0.9995067119598389, + 0.8784416913986206, + 0.9987435936927795, + 0.9924157857894897, + 0.9993305206298828, + 0.9950172305107117, + 0.9989137649536133, + 0.9986515641212463, + 0.724414587020874, + 0.9983383417129517, + 0.9989032745361328, + 0.9332682490348816, + 0.9987983703613281, + 0.9987780451774597, + 0.9995050430297852, + 0.998085618019104, + 0.9856709837913513, + 0.9891325831413269, + 0.99824059009552, + 0.9932042360305786, + 0.9985108971595764, + 0.9984570741653442, + 0.9979990124702454, + 0.9985492825508118, + 0.9984501600265503, + 0.9978197813034058, + 0.9989117383956909, + 0.998855710029602, + 0.9876476526260376, + 0.9926613569259644, + 0.9986238479614258, + 0.998629093170166, + 0.9995059967041016, + 0.9954375624656677, + 0.9969785213470459, + 0.9985257983207703, + 0.9958081245422363, + 0.9926315546035767, + 0.9986768364906311, + 0.9967679977416992, + 0.9971733093261719, + 0.999504566192627 + ], + "sentiment_counts": { + "POSITIVE": 23, + "NEGATIVE": 20 + }, + "sentiment_distribution": { + "POSITIVE": 0.5348837209302325, + "NEGATIVE": 0.46511627906976744 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.997517466545105, + 0.999506950378418, + 0.9990909099578857, + 0.9987516403198242, + 0.9970864653587341, + 0.9991094470024109, + 0.9995032548904419, + 0.9988136291503906, + 0.9986936450004578, + 0.998505711555481, + 0.9974592328071594, + 0.9680763483047485, + 0.9889293313026428, + 0.9987816214561462, + 0.9987653493881226, + 0.9982553124427795, + 0.9995063543319702, + 0.998615026473999, + 0.9981787204742432, + 0.9989126920700073, + 0.9955947995185852, + 0.9982031583786011, + 0.9910996556282043, + 0.9993583559989929, + 0.9989060163497925, + 0.9988712668418884, + 0.9979787468910217, + 0.9994829893112183, + 0.9988466501235962, + 0.9988338351249695, + 0.9967275857925415, + 0.9995068311691284, + 0.9987804293632507, + 0.9992393255233765, + 0.998924195766449, + 0.9918598532676697, + 0.9954480528831482, + 0.997117280960083, + 0.9968993663787842, + 0.9975898265838623, + 0.9988802075386047, + 0.9961423277854919, + 0.9987809062004089, + 0.9887917041778564, + 0.9935518503189087, + 0.9939263463020325 + ], + "sentiment_counts": { + "POSITIVE": 26, + "NEGATIVE": 20 + }, + "sentiment_distribution": { + "POSITIVE": 0.5652173913043478, + "NEGATIVE": 0.43478260869565216 + }, + "sentiment_overall": [ + "POSITIVE", + 0.5652173913043478 + ] + }, + "final_label": "POSITIVE", + "final_count": 79, + "final_proportion": 0.6583333333333333, + "final_counts": { + "POSITIVE": 79, + "NEGATIVE": 41 + }, + "final_distribution": { + "POSITIVE": 0.6583333333333333, + "NEGATIVE": 0.3416666666666667 + } + } }, { "season_code": "202303", @@ -276456,7 +564631,7 @@ "14:30", "15:45", "LORIA 351 - Loria Center 351", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ], "Thursday": [ @@ -276464,7 +564639,7 @@ "14:30", "15:45", "LORIA 351 - Loria Center 351", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -276480,10 +564655,201 @@ "classnotes": "Please Note: This course is for first and second year students only.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88683\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88683/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989344477653503, + 0.9945460557937622, + 0.9985038042068481, + 0.9988994598388672, + 0.99872225522995, + 0.9987339377403259, + 0.985126793384552, + 0.9987919926643372, + 0.9988024234771729, + 0.998714804649353, + 0.9985554814338684, + 0.9985381364822388, + 0.995468020439148, + 0.9986924529075623, + 0.9988210797309875, + 0.998590886592865, + 0.9987003803253174, + 0.9988287091255188, + 0.99870765209198, + 0.9988148212432861 + ], + "sentiment_counts": { + "POSITIVE": 19, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.95, + "NEGATIVE": 0.05 + }, + "sentiment_overall": [ + "POSITIVE", + 0.95 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985663294792175, + 0.9897599816322327, + 0.9989111423492432, + 0.9958469271659851, + 0.9989171028137207, + 0.9974942207336426, + 0.9900822043418884, + 0.998691737651825, + 0.998915433883667, + 0.9988905787467957, + 0.9988943934440613, + 0.9982588887214661, + 0.9980401396751404, + 0.9779443144798279, + 0.9903880953788757, + 0.9988964796066284, + 0.9989160299301147, + 0.9989344477653503, + 0.9978796243667603, + 0.9985998272895813, + 0.9985289573669434 + ], + "sentiment_counts": { + "NEGATIVE": 4, + "POSITIVE": 17 + }, + "sentiment_distribution": { + "NEGATIVE": 0.19047619047619047, + "POSITIVE": 0.8095238095238095 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8095238095238095 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.998450517654419, + 0.9988958835601807, + 0.9987358450889587, + 0.9988296627998352, + 0.9987913966178894, + 0.9946759939193726, + 0.9995095729827881, + 0.9986960291862488, + 0.9989392161369324, + 0.998860239982605, + 0.9989286065101624, + 0.9987340569496155, + 0.9980467557907104, + 0.999506950378418, + 0.998771607875824, + 0.9989268183708191, + 0.9988195300102234, + 0.9988476037979126, + 0.9988535642623901, + 0.9989204406738281, + 0.8651461005210876 + ], + "sentiment_counts": { + "POSITIVE": 18, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "final_label": "POSITIVE", + "final_count": 54, + "final_proportion": 0.8709677419354839, + "final_counts": { + "POSITIVE": 54, + "NEGATIVE": 8 + }, + "final_distribution": { + "POSITIVE": 0.8709677419354839, + "NEGATIVE": 0.12903225806451613 + } + } }, { "season_code": "202303", @@ -276521,7 +564887,7 @@ "11:35", "12:50", "WALL53 AUD - 53 Wall Street AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/559554" + "https://map.yale.edu/?id=1910#!m/559554" ] ], "Wednesday": [ @@ -276529,7 +564895,7 @@ "11:35", "12:50", "WALL53 AUD - 53 Wall Street AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/559554" + "https://map.yale.edu/?id=1910#!m/559554" ] ] }, @@ -276546,10 +564912,357 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88685\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88685/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998197615146637, + 0.9987610578536987, + 0.9989292025566101, + 0.9988775849342346, + 0.9949585795402527, + 0.9986969828605652, + 0.9988065958023071, + 0.994756817817688, + 0.997622549533844, + 0.9987484216690063, + 0.9986918568611145, + 0.9986512064933777, + 0.9988096952438354, + 0.9989041090011597, + 0.9988215565681458, + 0.989736795425415, + 0.9985741376876831, + 0.9989306330680847, + 0.9984279870986938, + 0.9981676340103149, + 0.9981426000595093, + 0.9985300302505493, + 0.9952045679092407, + 0.9984226226806641, + 0.9987359642982483, + 0.9987486600875854, + 0.9984861016273499, + 0.9989129304885864, + 0.9942574501037598, + 0.9987589120864868, + 0.9987732768058777, + 0.9988375306129456, + 0.9986857771873474, + 0.9980003237724304, + 0.9988273978233337, + 0.9989169836044312, + 0.998776376247406, + 0.9988539218902588, + 0.9989140033721924, + 0.9989079236984253, + 0.9988309741020203, + 0.9984214305877686, + 0.9985519051551819, + 0.9986956715583801 + ], + "sentiment_counts": { + "POSITIVE": 44, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989078044891357, + 0.9988887906074524, + 0.9989331364631653, + 0.9987271428108215, + 0.9983048439025879, + 0.9971081614494324, + 0.999508261680603, + 0.9983891248703003, + 0.9988677501678467, + 0.998870313167572, + 0.9988020658493042, + 0.9993889331817627, + 0.9988803267478943, + 0.9986767172813416, + 0.9989001750946045, + 0.9995012283325195, + 0.9969968795776367, + 0.9986805319786072, + 0.9989257454872131, + 0.9990687966346741, + 0.9988425970077515, + 0.9985288381576538, + 0.9986006617546082, + 0.9975761771202087, + 0.9988862872123718, + 0.9986656904220581, + 0.9987732768058777, + 0.9986510872840881, + 0.9989004135131836, + 0.9982979893684387, + 0.9957631826400757, + 0.9988943934440613, + 0.9988917708396912, + 0.998530387878418, + 0.9978373646736145, + 0.9982385635375977, + 0.9989243149757385, + 0.9987059831619263, + 0.9989216327667236, + 0.9986579418182373, + 0.9989351630210876, + 0.998930037021637, + 0.9971528053283691, + 0.9945957064628601, + 0.9955506324768066, + 0.9994106292724609, + 0.9947861433029175 + ], + "sentiment_counts": { + "POSITIVE": 42, + "NEGATIVE": 5 + }, + "sentiment_distribution": { + "POSITIVE": 0.8936170212765957, + "NEGATIVE": 0.10638297872340426 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8936170212765957 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986977577209473, + 0.9988512992858887, + 0.9989211559295654, + 0.9989271759986877, + 0.9987316727638245, + 0.9995052814483643, + 0.9989030361175537, + 0.9988370537757874, + 0.999488115310669, + 0.998701810836792, + 0.9989282488822937, + 0.9989086389541626, + 0.998849630355835, + 0.9989280104637146, + 0.9989125728607178, + 0.9984808564186096, + 0.998450756072998, + 0.9995002746582031, + 0.9989247918128967, + 0.9988945126533508, + 0.9985295534133911, + 0.9988886713981628, + 0.9978489875793457, + 0.998059093952179, + 0.9989136457443237, + 0.9989151954650879, + 0.9988616704940796, + 0.9982989430427551, + 0.9987630844116211, + 0.9983460903167725, + 0.9988043308258057, + 0.9986734390258789, + 0.997422456741333, + 0.9988561868667603, + 0.9989295601844788, + 0.9988584518432617, + 0.9984458088874817, + 0.9987905621528625, + 0.9993946552276611, + 0.9989073276519775, + 0.9988856911659241, + 0.998643696308136, + 0.9989120960235596, + 0.9989008903503418, + 0.9974722266197205, + 0.9988330006599426, + 0.9842790961265564, + 0.9986854195594788, + 0.9982534050941467 + ], + "sentiment_counts": { + "POSITIVE": 44, + "NEGATIVE": 5 + }, + "sentiment_distribution": { + "POSITIVE": 0.8979591836734694, + "NEGATIVE": 0.10204081632653061 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8979591836734694 + ] + }, + "final_label": "POSITIVE", + "final_count": 130, + "final_proportion": 0.9285714285714286, + "final_counts": { + "POSITIVE": 130, + "NEGATIVE": 10 + }, + "final_distribution": { + "POSITIVE": 0.9285714285714286, + "NEGATIVE": 0.07142857142857142 + } + } }, { "season_code": "202303", @@ -276588,7 +565301,7 @@ "13:30", "14:20", "LC 101 - Linsly-Chittenden Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -276596,7 +565309,7 @@ "13:30", "14:20", "LC 101 - Linsly-Chittenden Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -276605,17 +565318,232 @@ "Hu" ], "flags": [ - "YC Phil: Intersctn PSYC\/PHIL" + "YC Phil: Intersctn PSYC/PHIL" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "Wednesday, December 20, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88590\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88590/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986358284950256, + 0.9987791180610657, + 0.9988369345664978, + 0.9988452196121216, + 0.9988974332809448, + 0.9938669800758362, + 0.9987474679946899, + 0.9985643029212952, + 0.998823344707489, + 0.9988481998443604, + 0.9988190531730652, + 0.9988808035850525, + 0.9988852143287659, + 0.9988306164741516, + 0.9988640546798706, + 0.9987175464630127, + 0.9989252686500549, + 0.9988462924957275, + 0.9987984895706177, + 0.9989079236984253, + 0.998790442943573, + 0.9987873435020447, + 0.9987233281135559, + 0.9987824559211731, + 0.9986752867698669 + ], + "sentiment_counts": { + "POSITIVE": 25, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9888291954994202, + 0.9972978234291077, + 0.990993082523346, + 0.9989086389541626, + 0.9994680285453796, + 0.997282862663269, + 0.9990683197975159, + 0.9982293248176575, + 0.998887836933136, + 0.9988549947738647, + 0.9871314764022827, + 0.9975976347923279, + 0.9989094734191895, + 0.9954645037651062, + 0.9989286065101624, + 0.995510458946228, + 0.9986202716827393, + 0.9987000226974487, + 0.9985830783843994, + 0.9987786412239075, + 0.9988272786140442, + 0.9984605312347412, + 0.9917980432510376, + 0.9940423369407654 + ], + "sentiment_counts": { + "NEGATIVE": 5, + "POSITIVE": 19 + }, + "sentiment_distribution": { + "NEGATIVE": 0.20833333333333334, + "POSITIVE": 0.7916666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7916666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9978650212287903, + 0.9885457158088684, + 0.997475802898407, + 0.9987664222717285, + 0.9989126920700073, + 0.9989368319511414, + 0.8352116942405701, + 0.9987885355949402, + 0.9988395571708679, + 0.9983261227607727, + 0.998932421207428, + 0.9986242055892944, + 0.9988976716995239, + 0.9174793362617493, + 0.9994922876358032, + 0.998195230960846, + 0.9988163709640503, + 0.9988767504692078, + 0.9988465309143066, + 0.9988749623298645, + 0.9988386034965515, + 0.998781144618988, + 0.9986384510993958, + 0.9989192485809326, + 0.9965940117835999 + ], + "sentiment_counts": { + "POSITIVE": 21, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.84, + "NEGATIVE": 0.16 + }, + "sentiment_overall": [ + "POSITIVE", + 0.84 + ] + }, + "final_label": "POSITIVE", + "final_count": 65, + "final_proportion": 0.8783783783783784, + "final_counts": { + "POSITIVE": 65, + "NEGATIVE": 9 + }, + "final_distribution": { + "POSITIVE": 0.8783783783783784, + "NEGATIVE": 0.12162162162162163 + } + } }, { "season_code": "202303", @@ -276648,7 +565576,7 @@ "16:00", "16:50", "HQ C07 - Humanities Quadrangle C07", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -276657,7 +565585,7 @@ "Hu" ], "flags": [ - "YC Phil: Intersctn PSYC\/PHIL" + "YC Phil: Intersctn PSYC/PHIL" ], "regnotes": "", "rp_attr": "", @@ -276667,7 +565595,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -276700,7 +565656,7 @@ "17:00", "17:50", "HQ C07 - Humanities Quadrangle C07", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -276709,7 +565665,7 @@ "Hu" ], "flags": [ - "YC Phil: Intersctn PSYC\/PHIL" + "YC Phil: Intersctn PSYC/PHIL" ], "regnotes": "", "rp_attr": "", @@ -276719,7 +565675,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -276752,7 +565736,7 @@ "13:30", "14:20", "HQ C07 - Humanities Quadrangle C07", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -276761,7 +565745,7 @@ "Hu" ], "flags": [ - "YC Phil: Intersctn PSYC\/PHIL" + "YC Phil: Intersctn PSYC/PHIL" ], "regnotes": "", "rp_attr": "", @@ -276771,7 +565755,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -276804,7 +565816,7 @@ "14:30", "15:20", "HQ C07 - Humanities Quadrangle C07", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -276813,7 +565825,7 @@ "Hu" ], "flags": [ - "YC Phil: Intersctn PSYC\/PHIL" + "YC Phil: Intersctn PSYC/PHIL" ], "regnotes": "", "rp_attr": "", @@ -276823,7 +565835,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -276856,7 +565896,7 @@ "9:25", "10:15", "BM 013 - Bingham Hall 013", - "https:\/\/map.yale.edu\/?id=1910#!m\/559569" + "https://map.yale.edu/?id=1910#!m/559569" ] ] }, @@ -276865,7 +565905,7 @@ "Hu" ], "flags": [ - "YC Phil: Intersctn PSYC\/PHIL" + "YC Phil: Intersctn PSYC/PHIL" ], "regnotes": "", "rp_attr": "", @@ -276875,7 +565915,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -276908,7 +565976,7 @@ "9:25", "10:15", "CO493 106 - 493 College Street 106", - "https:\/\/map.yale.edu\/?id=1910#!m\/560001" + "https://map.yale.edu/?id=1910#!m/560001" ] ] }, @@ -276917,7 +565985,7 @@ "Hu" ], "flags": [ - "YC Phil: Intersctn PSYC\/PHIL" + "YC Phil: Intersctn PSYC/PHIL" ], "regnotes": "", "rp_attr": "", @@ -276927,7 +565995,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -276960,7 +566056,7 @@ "14:30", "15:20", "WLH 211 - William L. Harkness Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -276969,7 +566065,7 @@ "Hu" ], "flags": [ - "YC Phil: Intersctn PSYC\/PHIL" + "YC Phil: Intersctn PSYC/PHIL" ], "regnotes": "", "rp_attr": "", @@ -276979,7 +566075,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -277012,7 +566136,7 @@ "15:30", "16:20", "WLH 211 - William L. Harkness Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -277021,7 +566145,7 @@ "Hu" ], "flags": [ - "YC Phil: Intersctn PSYC\/PHIL" + "YC Phil: Intersctn PSYC/PHIL" ], "regnotes": "", "rp_attr": "", @@ -277031,7 +566155,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -277068,7 +566220,7 @@ "10:30", "11:20", "DL 220 - Dunham Laboratory 220", - "https:\/\/map.yale.edu\/?id=1910#!m\/560005" + "https://map.yale.edu/?id=1910#!m/560005" ] ], "Wednesday": [ @@ -277076,7 +566228,7 @@ "10:30", "11:20", "DL 220 - Dunham Laboratory 220", - "https:\/\/map.yale.edu\/?id=1910#!m\/560005" + "https://map.yale.edu/?id=1910#!m/560005" ] ] }, @@ -277092,10 +566244,333 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88687\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88687/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989098310470581, + 0.9988635778427124, + 0.995025098323822, + 0.9984378218650818, + 0.9924886226654053, + 0.9982994198799133, + 0.9954195022583008, + 0.9987441301345825, + 0.9986928105354309, + 0.998406708240509, + 0.9988089799880981, + 0.9970141649246216, + 0.9889764189720154, + 0.9705370664596558, + 0.9988192915916443, + 0.9962329268455505, + 0.9976406097412109, + 0.998722493648529, + 0.9986975193023682, + 0.9989194869995117, + 0.9988487958908081, + 0.9985527396202087, + 0.9989067316055298, + 0.99874347448349, + 0.9983986020088196, + 0.9986448884010315, + 0.9979367256164551, + 0.9989193677902222, + 0.9988183379173279, + 0.9988119602203369, + 0.9988999366760254, + 0.998885452747345, + 0.9985488057136536, + 0.9986672401428223, + 0.9988835453987122, + 0.9969353675842285, + 0.9987316727638245, + 0.9987314343452454, + 0.9886921644210815, + 0.9986875653266907, + 0.9907928109169006 + ], + "sentiment_counts": { + "POSITIVE": 40, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.975609756097561, + "NEGATIVE": 0.024390243902439025 + }, + "sentiment_overall": [ + "POSITIVE", + 0.975609756097561 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988194108009338, + 0.9988942742347717, + 0.9989087581634521, + 0.9989131689071655, + 0.9957719445228577, + 0.9988228678703308, + 0.9986386895179749, + 0.9989369511604309, + 0.9961240887641907, + 0.99875807762146, + 0.9989292025566101, + 0.998908281326294, + 0.9989129304885864, + 0.998839795589447, + 0.9987077713012695, + 0.9989159107208252, + 0.9989221096038818, + 0.9988946318626404, + 0.9987694621086121, + 0.9988527297973633, + 0.9988648891448975, + 0.9981878399848938, + 0.9988719820976257, + 0.9989286065101624, + 0.9583665132522583, + 0.9989375472068787, + 0.9989010095596313, + 0.9989066123962402, + 0.9988235831260681, + 0.998925507068634, + 0.9988864064216614, + 0.998909592628479, + 0.9931716918945312, + 0.9988622665405273, + 0.9970287680625916, + 0.9987064599990845, + 0.9989131689071655, + 0.9989243149757385, + 0.9988480806350708, + 0.9992725253105164, + 0.9992848038673401 + ], + "sentiment_counts": { + "POSITIVE": 37, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.9024390243902439, + "NEGATIVE": 0.0975609756097561 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9024390243902439 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988139867782593, + 0.9988724589347839, + 0.9987943172454834, + 0.9989369511604309, + 0.9989122152328491, + 0.9954193830490112, + 0.9987980127334595, + 0.9977304339408875, + 0.9980497360229492, + 0.9988131523132324, + 0.9989246726036072, + 0.9987539052963257, + 0.9988899827003479, + 0.9989318251609802, + 0.9988370537757874, + 0.9831296801567078, + 0.9986931681632996, + 0.9987112283706665, + 0.9988755583763123, + 0.9988258481025696, + 0.9989252686500549, + 0.9989190101623535, + 0.9988670349121094, + 0.9988100528717041, + 0.9985097050666809, + 0.9988614320755005, + 0.9985587000846863, + 0.9987723231315613, + 0.9966748952865601, + 0.998935878276825, + 0.9967455863952637, + 0.9989175796508789, + 0.9985263347625732, + 0.9989117383956909, + 0.9989239573478699, + 0.9982099533081055, + 0.9988717436790466, + 0.9982553124427795, + 0.9989320635795593, + 0.9988049268722534, + 0.997943103313446, + 0.9989020824432373, + 0.9987209439277649, + 0.9988301396369934, + 0.9980006814002991, + 0.998944103717804 + ], + "sentiment_counts": { + "POSITIVE": 44, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.9565217391304348, + "NEGATIVE": 0.043478260869565216 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9565217391304348 + ] + }, + "final_label": "POSITIVE", + "final_count": 121, + "final_proportion": 0.9453125, + "final_counts": { + "POSITIVE": 121, + "NEGATIVE": 7 + }, + "final_distribution": { + "POSITIVE": 0.9453125, + "NEGATIVE": 0.0546875 + } + } }, { "season_code": "202303", @@ -277126,7 +566601,7 @@ "9:25", "10:15", "DL 120 - Dunham Laboratory 120", - "https:\/\/map.yale.edu\/?id=1910#!m\/560005" + "https://map.yale.edu/?id=1910#!m/560005" ] ] }, @@ -277143,7 +566618,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -277174,7 +566677,7 @@ "10:30", "11:20", "DL 120 - Dunham Laboratory 120", - "https:\/\/map.yale.edu\/?id=1910#!m\/560005" + "https://map.yale.edu/?id=1910#!m/560005" ] ] }, @@ -277191,7 +566694,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -277247,7 +566778,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -277278,7 +566837,7 @@ "14:30", "15:20", "DL 120 - Dunham Laboratory 120", - "https:\/\/map.yale.edu\/?id=1910#!m\/560005" + "https://map.yale.edu/?id=1910#!m/560005" ] ] }, @@ -277295,7 +566854,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -277326,7 +566913,7 @@ "15:30", "16:20", "DL 120 - Dunham Laboratory 120", - "https:\/\/map.yale.edu\/?id=1910#!m\/560005" + "https://map.yale.edu/?id=1910#!m/560005" ] ] }, @@ -277343,7 +566930,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -277374,7 +566989,7 @@ "16:30", "17:20", "DL 120 - Dunham Laboratory 120", - "https:\/\/map.yale.edu\/?id=1910#!m\/560005" + "https://map.yale.edu/?id=1910#!m/560005" ] ] }, @@ -277391,7 +567006,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -277422,7 +567065,7 @@ "13:30", "14:20", "DL 120 - Dunham Laboratory 120", - "https:\/\/map.yale.edu\/?id=1910#!m\/560005" + "https://map.yale.edu/?id=1910#!m/560005" ] ] }, @@ -277439,7 +567082,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -277470,7 +567141,7 @@ "14:30", "15:20", "DL 120 - Dunham Laboratory 120", - "https:\/\/map.yale.edu\/?id=1910#!m\/560005" + "https://map.yale.edu/?id=1910#!m/560005" ] ] }, @@ -277487,7 +567158,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -277518,7 +567217,7 @@ "16:00", "16:50", "DL 120 - Dunham Laboratory 120", - "https:\/\/map.yale.edu\/?id=1910#!m\/560005" + "https://map.yale.edu/?id=1910#!m/560005" ] ] }, @@ -277535,7 +567234,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -277566,7 +567293,7 @@ "17:00", "17:50", "DL 120 - Dunham Laboratory 120", - "https:\/\/map.yale.edu\/?id=1910#!m\/560005" + "https://map.yale.edu/?id=1910#!m/560005" ] ] }, @@ -277583,7 +567310,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -277614,7 +567369,7 @@ "8:20", "9:10", "DL 120 - Dunham Laboratory 120", - "https:\/\/map.yale.edu\/?id=1910#!m\/560005" + "https://map.yale.edu/?id=1910#!m/560005" ] ] }, @@ -277631,7 +567386,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -277662,7 +567445,7 @@ "9:25", "10:15", "DL 120 - Dunham Laboratory 120", - "https:\/\/map.yale.edu\/?id=1910#!m\/560005" + "https://map.yale.edu/?id=1910#!m/560005" ] ] }, @@ -277679,11 +567462,39 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", - "requirements": "Prerequisites: PSYC 160\/NSCI 160 and a course in statistics, or permission of instructor.", + "requirements": "Prerequisites: PSYC 160/NSCI 160 and a course in statistics, or permission of instructor.", "description": "Primary focus on structural, functional, and diffusion magnetic resonance imaging, with a secondary emphasis upon brain stimulation, electroencephalography, and evoked potentials. Students learn the fundamentals of each method and the experimental designs for which they are most applicable.", "short_title": "Research Methods in Human Neu...", "title": "Research Methods in Human Neuroscience", @@ -277741,10 +567552,125 @@ "classnotes": "", "final_exam": "Wednesday, December 20, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89394\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89394/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984342455863953, + 0.9964510202407837, + 0.9989194869995117, + 0.9986502528190613, + 0.9988454580307007, + 0.9988203644752502, + 0.9986831545829773, + 0.9986605644226074, + 0.9905793070793152 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989175796508789, + 0.9988553524017334, + 0.9989149570465088, + 0.9989103078842163, + 0.998869001865387, + 0.9988829493522644, + 0.9988918900489807, + 0.9975404739379883 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998840868473053, + 0.9989259839057922, + 0.9944868683815002, + 0.9985396862030029, + 0.9977290034294128, + 0.9987682700157166, + 0.9722131490707397, + 0.9986506104469299 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 25, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 25 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -277781,7 +567707,7 @@ "11:35", "12:50", "CO493 106 - 493 College Street 106", - "https:\/\/map.yale.edu\/?id=1910#!m\/560001" + "https://map.yale.edu/?id=1910#!m/560001" ] ], "Thursday": [ @@ -277789,7 +567715,7 @@ "11:35", "12:50", "CO493 106 - 493 College Street 106", - "https:\/\/map.yale.edu\/?id=1910#!m\/560001" + "https://map.yale.edu/?id=1910#!m/560001" ] ] }, @@ -277807,10 +567733,113 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88689\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88689/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9939826130867004, + 0.9985681772232056, + 0.998868465423584, + 0.9985016584396362, + 0.998691976070404, + 0.9983794689178467 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988638162612915, + 0.9989344477653503, + 0.9989070892333984, + 0.9989113807678223, + 0.9988885521888733 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982553124427795, + 0.9989080429077148, + 0.9988999366760254, + 0.998340368270874, + 0.9922465085983276, + 0.9988862872123718, + 0.9987099170684814, + 0.9986775517463684 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 19 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -277865,10 +567894,119 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89395\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89395/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998613715171814, + 0.9987055063247681, + 0.9988308548927307, + 0.9988676309585571, + 0.9985671043395996, + 0.9986202716827393, + 0.9987101554870605 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988778233528137, + 0.9989039897918701, + 0.9989064931869507, + 0.9988856911659241, + 0.99893718957901, + 0.9987679123878479, + 0.9988340735435486 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987770915031433, + 0.9985847473144531, + 0.9989131689071655, + 0.9988710284233093, + 0.9988935589790344, + 0.9989192485809326, + 0.998729407787323, + 0.9986860156059265 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 22, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 22 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -277936,10 +568074,143 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90417\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/90417/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985688924789429, + 0.9986608028411865, + 0.9977846741676331, + 0.9986634254455566, + 0.9971073269844055, + 0.9988840222358704, + 0.9987875819206238, + 0.9940311312675476, + 0.9988539218902588, + 0.9986334443092346, + 0.998752236366272 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989266991615295, + 0.9906706809997559, + 0.9953182339668274, + 0.9987013339996338, + 0.998748779296875, + 0.9988732933998108, + 0.998763918876648, + 0.9987480640411377, + 0.9890273809432983, + 0.9987873435020447, + 0.9978893399238586 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.7272727272727273, + "NEGATIVE": 0.2727272727272727 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7272727272727273 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989051818847656, + 0.9984334111213684, + 0.9957656860351562, + 0.9988319277763367, + 0.9926602840423584, + 0.9989186525344849, + 0.9988943934440613, + 0.9994348883628845, + 0.9983170032501221, + 0.9987579584121704, + 0.9987553358078003 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.7272727272727273, + "NEGATIVE": 0.2727272727272727 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7272727272727273 + ] + }, + "final_label": "POSITIVE", + "final_count": 27, + "final_proportion": 0.8181818181818182, + "final_counts": { + "POSITIVE": 27, + "NEGATIVE": 6 + }, + "final_distribution": { + "POSITIVE": 0.8181818181818182, + "NEGATIVE": 0.18181818181818182 + } + } }, { "season_code": "202303", @@ -277977,7 +568248,7 @@ "14:30", "15:45", "LC 101 - Linsly-Chittenden Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -277985,7 +568256,7 @@ "14:30", "15:45", "LC 101 - Linsly-Chittenden Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -277994,7 +568265,7 @@ "Sc" ], "flags": [ - "YC NSCI: Systems\/Circuit\/Behav", + "YC NSCI: Systems/Circuit/Behav", "YC PSYC: Natural Science" ], "regnotes": "", @@ -278002,10 +568273,215 @@ "classnotes": "This course has two prerequisites: PSYC110 (Intro Psych) OR CGSI110 (Intro Cog Sci) OR AP Psych (Score of 5) and PSYC160 (Human Brain) \n\nJunior and Senior Psychology and Neuroscience majors will be given priority. This class is upper level neuroscience, proceeds at a fast pace, and students unfamiliar with neuroanatomy and neuroscience methods will find the content to be challenging. ", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89335\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89335/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.997355580329895, + 0.9988742470741272, + 0.9989174604415894, + 0.9987435936927795, + 0.9988214373588562, + 0.9988765120506287, + 0.998836100101471, + 0.9979779124259949, + 0.9969165325164795, + 0.9984605312347412, + 0.9987618923187256, + 0.9988667964935303, + 0.9984954595565796, + 0.9985998272895813, + 0.9988206028938293, + 0.998276948928833, + 0.9987579584121704, + 0.998817503452301, + 0.99874347448349 + ], + "sentiment_counts": { + "POSITIVE": 19, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983850717544556, + 0.9988722205162048, + 0.9989334940910339, + 0.9983199238777161, + 0.998798131942749, + 0.9987308382987976, + 0.9989044666290283, + 0.9989162683486938, + 0.9989113807678223, + 0.998651921749115, + 0.9887974858283997, + 0.998927891254425, + 0.9989250302314758, + 0.9988868832588196, + 0.9884689450263977, + 0.9988186955451965, + 0.9988522529602051, + 0.9985842704772949, + 0.9989343285560608, + 0.9988073110580444, + 0.9988351464271545, + 0.9987908005714417, + 0.9989117383956909, + 0.998847246170044 + ], + "sentiment_counts": { + "POSITIVE": 23, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9583333333333334, + "NEGATIVE": 0.041666666666666664 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9583333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985527396202087, + 0.9988672733306885, + 0.9988654851913452, + 0.996932864189148, + 0.9986220598220825, + 0.9988409876823425, + 0.9989049434661865, + 0.9982553124427795, + 0.9988800883293152, + 0.9986633062362671, + 0.9989053010940552, + 0.9989012479782104, + 0.9989308714866638, + 0.9941042065620422, + 0.9988923668861389, + 0.9873692393302917, + 0.9988265633583069, + 0.9988211989402771, + 0.9986417889595032, + 0.9989173412322998, + 0.9989320635795593, + 0.9988088607788086, + 0.9988324046134949, + 0.999040424823761, + 0.9988511800765991, + 0.9989035129547119 + ], + "sentiment_counts": { + "POSITIVE": 23, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.8846153846153846, + "NEGATIVE": 0.11538461538461539 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8846153846153846 + ] + }, + "final_label": "POSITIVE", + "final_count": 65, + "final_proportion": 0.9420289855072463, + "final_counts": { + "POSITIVE": 65, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.9420289855072463, + "NEGATIVE": 0.057971014492753624 + } + } }, { "season_code": "202303", @@ -278044,7 +568520,7 @@ "13:30", "15:20", "HQ 109 - Humanities Quadrangle 109", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -278056,10 +568532,105 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90149\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90149/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988986253738403, + 0.9979442954063416, + 0.9988321661949158, + 0.9989218711853027, + 0.9988545179367065, + 0.9989042282104492 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989126920700073, + 0.998927891254425, + 0.9989326596260071 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998923122882843, + 0.9989029169082642, + 0.9988130331039429, + 0.9989113807678223, + 0.9989263415336609, + 0.9988991022109985 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 15 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -278100,7 +568671,7 @@ "9:25", "11:15", "WALL81 101 - 81 Wall Street 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -278116,10 +568687,111 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88868\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88868/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988523721694946, + 0.9987126588821411, + 0.9987289309501648, + 0.9989216327667236, + 0.9986876845359802, + 0.9989308714866638 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989068508148193, + 0.9984404444694519, + 0.9986283779144287, + 0.9989292025566101, + 0.998898983001709, + 0.9989338517189026 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989171028137207, + 0.99856036901474, + 0.998859167098999, + 0.9988909363746643, + 0.9988497495651245, + 0.9988960027694702 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 18 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -278157,7 +568829,7 @@ "11:35", "12:50", "SSS 114 - Sheffield-Sterling-Strathcona 114", - "https:\/\/map.yale.edu\/?id=1910#!m\/563689" + "https://map.yale.edu/?id=1910#!m/563689" ] ], "Wednesday": [ @@ -278165,7 +568837,7 @@ "11:35", "12:50", "SSS 114 - Sheffield-Sterling-Strathcona 114", - "https:\/\/map.yale.edu\/?id=1910#!m\/563689" + "https://map.yale.edu/?id=1910#!m/563689" ] ] }, @@ -278181,10 +568853,193 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88691\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88691/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985180497169495, + 0.9986221790313721, + 0.9981514811515808, + 0.9987039566040039, + 0.9987006187438965, + 0.998772919178009, + 0.9987151622772217, + 0.9987358450889587, + 0.9986166954040527, + 0.9987543821334839, + 0.99887615442276, + 0.9983853101730347, + 0.9984806180000305, + 0.9989081621170044, + 0.9987680315971375, + 0.9974400997161865, + 0.998768150806427, + 0.9985238909721375 + ], + "sentiment_counts": { + "POSITIVE": 16, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9995021820068359, + 0.9982739686965942, + 0.9983628392219543, + 0.9988929629325867, + 0.9994997978210449, + 0.996357262134552, + 0.9969931840896606, + 0.9987665414810181, + 0.9995115995407104, + 0.9986411929130554, + 0.9988096952438354, + 0.9993659853935242, + 0.9946048855781555, + 0.9982156753540039, + 0.9979374408721924, + 0.9988652467727661, + 0.9985225796699524, + 0.9975814819335938, + 0.9994601607322693 + ], + "sentiment_counts": { + "NEGATIVE": 9, + "POSITIVE": 10 + }, + "sentiment_distribution": { + "NEGATIVE": 0.47368421052631576, + "POSITIVE": 0.5263157894736842 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989026784896851, + 0.9993826150894165, + 0.998893678188324, + 0.998921275138855, + 0.9980168342590332, + 0.9980733394622803, + 0.9973565340042114, + 0.9987782835960388, + 0.9987390637397766, + 0.9986851811408997, + 0.9984095692634583, + 0.997119665145874, + 0.9644033312797546, + 0.9987249970436096, + 0.996903121471405, + 0.9985016584396362, + 0.9979877471923828, + 0.998903751373291, + 0.9995028972625732, + 0.9995114803314209, + 0.9988502264022827 + ], + "sentiment_counts": { + "POSITIVE": 14, + "NEGATIVE": 7 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 40, + "final_proportion": 0.6896551724137931, + "final_counts": { + "POSITIVE": 40, + "NEGATIVE": 18 + }, + "final_distribution": { + "POSITIVE": 0.6896551724137931, + "NEGATIVE": 0.3103448275862069 + } + } }, { "season_code": "202303", @@ -278224,7 +569079,7 @@ "14:30", "15:45", "DOW 112 - Dow Hall 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ], "Thursday": [ @@ -278232,7 +569087,7 @@ "14:30", "15:45", "DOW 112 - Dow Hall 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ] }, @@ -278244,7 +569099,7 @@ "YC EDST: Indv Society", "YC LING: Intermediate Courses", "YC LING: Breadth", - "YC LING Brdth: Lang&Mind\/Brain", + "YC LING Brdth: Lang&Mind/Brain", "YC LING: Elective" ], "regnotes": "", @@ -278252,10 +569107,107 @@ "classnotes": "", "final_exam": "Monday, December 18, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88196\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88196/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988497495651245, + 0.9988068342208862, + 0.995704710483551, + 0.9986888766288757, + 0.9985502362251282 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9994514584541321, + 0.9949553608894348, + 0.9987591505050659, + 0.9979653358459473, + 0.9988920092582703, + 0.9970979690551758 + ], + "sentiment_counts": { + "NEGATIVE": 4, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.6666666666666666, + "POSITIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9980016350746155, + 0.998740017414093, + 0.9933339953422546, + 0.9985765218734741 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 1 + }, + "sentiment_distribution": { + "NEGATIVE": 0.75, + "POSITIVE": 0.25 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.75 + ] + }, + "final_label": "neutral", + "final_count": 8, + "final_proportion": 0.5, + "final_counts": { + "POSITIVE": 8, + "NEGATIVE": 7 + }, + "final_distribution": { + "POSITIVE": 0.5333333333333333, + "NEGATIVE": 0.4666666666666667 + } + } }, { "season_code": "202303", @@ -278294,7 +569246,7 @@ "13:00", "14:15", "DOW 112 - Dow Hall 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ], "Wednesday": [ @@ -278302,7 +569254,7 @@ "13:00", "14:15", "DOW 112 - Dow Hall 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/560019" + "https://map.yale.edu/?id=1910#!m/560019" ] ] }, @@ -278321,10 +569273,85 @@ "classnotes": "", "final_exam": "Wednesday, December 20, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88201\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88201/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989010095596313 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989218711853027, + 0.9989344477653503 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988962411880493, + 0.9989055395126343 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 5, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 5 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -278362,7 +569389,7 @@ "11:35", "12:50", "GR109 ROSENFELD - 109 Grove Street ROSENFELD", - "https:\/\/map.yale.edu\/?id=1910#!m\/560109" + "https://map.yale.edu/?id=1910#!m/560109" ] ], "Wednesday": [ @@ -278370,7 +569397,7 @@ "11:35", "12:50", "GR109 ROSENFELD - 109 Grove Street ROSENFELD", - "https:\/\/map.yale.edu\/?id=1910#!m\/560109" + "https://map.yale.edu/?id=1910#!m/560109" ] ] }, @@ -278386,10 +569413,153 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88694\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88694/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984546899795532, + 0.9988559484481812, + 0.9984664916992188, + 0.9986365437507629, + 0.9989056587219238, + 0.9995039701461792, + 0.9989011287689209, + 0.9989194869995117, + 0.9990578293800354, + 0.9988853335380554, + 0.9989250302314758 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8181818181818182, + "NEGATIVE": 0.18181818181818182 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8181818181818182 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989168643951416, + 0.998878538608551, + 0.998907208442688, + 0.999508261680603, + 0.9989256262779236, + 0.9995015859603882, + 0.997890055179596, + 0.9989232420921326, + 0.9987986087799072, + 0.9986044764518738, + 0.9989200830459595, + 0.9989307522773743 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989331364631653, + 0.9989238381385803, + 0.998796820640564, + 0.9989233613014221, + 0.9981513619422913, + 0.9987627267837524, + 0.9985490441322327, + 0.9995026588439941, + 0.9989068508148193, + 0.9989093542098999, + 0.9995049238204956, + 0.9986125230789185, + 0.9989325404167175, + 0.9988505840301514, + 0.9974592328071594 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 30, + "final_proportion": 0.7894736842105263, + "final_counts": { + "POSITIVE": 30, + "NEGATIVE": 8 + }, + "final_distribution": { + "POSITIVE": 0.7894736842105263, + "NEGATIVE": 0.21052631578947367 + } + } }, { "season_code": "202303", @@ -278440,10 +569610,103 @@ "classnotes": "Please Note: This course is for senior students only.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89290\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89290/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9973111152648926, + 0.9986398816108704, + 0.9928780198097229, + 0.9988781809806824, + 0.9987666606903076 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.4, + "POSITIVE": 0.6 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986599683761597, + 0.9994909763336182, + 0.9989000558853149, + 0.9963629841804504 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9978419542312622, + 0.9995126724243164, + 0.998749852180481, + 0.9988036155700684 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 0.6923076923076923, + "final_counts": { + "NEGATIVE": 4, + "POSITIVE": 9 + }, + "final_distribution": { + "NEGATIVE": 0.3076923076923077, + "POSITIVE": 0.6923076923076923 + } + } }, { "season_code": "202303", @@ -278492,10 +569755,95 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89723\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89723/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987591505050659, + 0.9982483386993408, + 0.9988783001899719 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989168643951416, + 0.9988722205162048, + 0.9989269375801086 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9980168342590332, + 0.997117280960083, + 0.9989275336265564, + 0.9988536834716797 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 10 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -278549,10 +569897,143 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88398\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88398/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988611936569214, + 0.9987620115280151, + 0.9988798499107361, + 0.9988970756530762, + 0.9989185333251953, + 0.9987565279006958, + 0.9982126951217651, + 0.9989251494407654, + 0.998863697052002, + 0.9987106323242188, + 0.9988821148872375 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989008903503418, + 0.9989385008811951, + 0.9988484382629395, + 0.9989181756973267, + 0.9989345669746399, + 0.9989308714866638, + 0.9988947510719299, + 0.9988442659378052, + 0.9989317059516907, + 0.9989373087882996, + 0.9989246726036072 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986888766288757, + 0.9989376664161682, + 0.9989281296730042, + 0.9989004135131836, + 0.9989299178123474, + 0.998927652835846, + 0.9989303946495056, + 0.9989246726036072, + 0.9988621473312378, + 0.9989288449287415, + 0.9988898634910583, + 0.998908519744873 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 34, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 34 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -278599,7 +570080,7 @@ "Sc" ], "flags": [ - "YC NSCI: Systems\/Circuit\/Behav", + "YC NSCI: Systems/Circuit/Behav", "YC PSYC: NSCI Track Adv Scie" ], "regnotes": "", @@ -278607,15 +570088,122 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88699\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88699/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986769556999207, + 0.9988508224487305, + 0.9986993074417114, + 0.9986478686332703, + 0.9916695356369019, + 0.9988976716995239 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9889636039733887, + 0.9995020627975464, + 0.9929706454277039, + 0.9987550973892212, + 0.998588502407074, + 0.9994667172431946 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988232254981995, + 0.9862104058265686, + 0.9989150762557983, + 0.9986995458602905, + 0.9987391829490662, + 0.997117280960083, + 0.9989138841629028, + 0.9981281161308289 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 0.85, + "final_counts": { + "POSITIVE": 17, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.85, + "NEGATIVE": 0.15 + } + } }, { "season_code": "202303", "requirements": "Prerequisites: PSYC 110, PSYC 200 (or equivalent), and at least two other upper-level courses in PSYC.", - "description": "Examination of best practices in the communication of psychology. The course explores strategies for communicating psychological findings\u00a0to varying audiences (e.g., policy makers, popular media) and in varying formats (op-eds, long-form articles, podcasts, short videos) with the goal of gaining the skill and confidence necessary to give psychological science its broadest possible reach. Students choose specific psychological topics based to cover in their communication projects and explore current challenges within psychology communication (e.g., the ethics of psychology communication, exploring the issue of replication in the field of psychological science). Readings include examples of different forms of psychology communication along with the published empirical papers associated with those readings. Seminar discussions include a workshop component where students provide feedback on other students' creative writing\/communication projects. Graded assignments include both group-based creative projects (short videos and podcast clips) and individual written work, including weekly directed writing exercises.", + "description": "Examination of best practices in the communication of psychology. The course explores strategies for communicating psychological findings\u00a0to varying audiences (e.g., policy makers, popular media) and in varying formats (op-eds, long-form articles, podcasts, short videos) with the goal of gaining the skill and confidence necessary to give psychological science its broadest possible reach. Students choose specific psychological topics based to cover in their communication projects and explore current challenges within psychology communication (e.g., the ethics of psychology communication, exploring the issue of replication in the field of psychological science). Readings include examples of different forms of psychology communication along with the published empirical papers associated with those readings. Seminar discussions include a workshop component where students provide feedback on other students' creative writing/communication projects. Graded assignments include both group-based creative projects (short videos and podcast clips) and individual written work, including weekly directed writing exercises.", "short_title": "Communicating Psychological S...", "title": "Communicating Psychological Science", "school": "YC", @@ -278647,7 +570235,7 @@ "9:25", "11:15", "WLH 011 - William L. Harkness Hall 011", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -278661,15 +570249,110 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89287\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89287/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988263249397278, + 0.9988574981689453, + 0.9985565543174744, + 0.998747706413269 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987013339996338, + 0.9989142417907715, + 0.9989103078842163, + 0.998927891254425, + 0.998815655708313 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988580942153931, + 0.9988967180252075, + 0.9988987445831299, + 0.9985847473144531, + 0.9989239573478699, + 0.9988644123077393 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 15 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", "requirements": "May not be used for the Psychology senior essay requirement.", - "description": "Empirical research projects or literature review. A student must be sponsored by a faculty member, who sets the requirements and supervises the student's progress. To register, the student must\u00a0download a tutorial form from http:\/\/psychology.yale.edu\/undergraduate\/undergraduate-major-forms, complete it with the adviser, and submit it to the director of undergraduate studies by the deadline listed on the form. The normal minimum requirement is a written report of the completed research or literature review, but individual faculty members may set alternative equivalent requirements. May be elected for one or two terms.", + "description": "Empirical research projects or literature review. A student must be sponsored by a faculty member, who sets the requirements and supervises the student's progress. To register, the student must\u00a0download a tutorial form from http://psychology.yale.edu/undergraduate/undergraduate-major-forms, complete it with the adviser, and submit it to the director of undergraduate studies by the deadline listed on the form. The normal minimum requirement is a written report of the completed research or literature review, but individual faculty members may set alternative equivalent requirements. May be elected for one or two terms.", "short_title": "Directed Research", "title": "Directed Research", "school": "YC", @@ -278707,12 +570390,103 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9944538474082947, + 0.969890832901001, + 0.9967179894447327, + 0.9986086487770081, + 0.9987775683403015 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9934868812561035, + 0.998528003692627, + 0.9989314675331116 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9915881752967834, + 0.9966886639595032, + 0.9966850876808167, + 0.9987932443618774 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.25, + "POSITIVE": 0.75 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 0.9166666666666666, + "final_counts": { + "POSITIVE": 11, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + } + } }, { "season_code": "202303", "requirements": "May not be used for the Psychology senior essay requirement.", - "description": "Empirical research project or literature review. A student must be sponsored by a faculty member, who sets the requirements and supervises the student's progress. To register, the student\u00a0must\u00a0download\u00a0a\u00a0tutorial form from http:\/\/psychology.yale.edu\/undergraduate\/undergraduate-major-forms, complete it with\u00a0the adviser, and submit it\u00a0to the director of undergraduate\u00a0studies by the date indicated on the form.\u00a0The normal minimum requirement is a written report of the completed research or literature review, but individual faculty members may set alternative equivalent requirements. May be elected for one or two terms.", + "description": "Empirical research project or literature review. A student must be sponsored by a faculty member, who sets the requirements and supervises the student's progress. To register, the student\u00a0must\u00a0download\u00a0a\u00a0tutorial form from http://psychology.yale.edu/undergraduate/undergraduate-major-forms, complete it with\u00a0the adviser, and submit it\u00a0to the director of undergraduate\u00a0studies by the date indicated on the form.\u00a0The normal minimum requirement is a written report of the completed research or literature review, but individual faculty members may set alternative equivalent requirements. May be elected for one or two terms.", "short_title": "Research Topics", "title": "Research Topics", "school": "YC", @@ -278750,12 +570524,85 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "", - "description": "Independent senior research project (either empirical research or literature review), conducted under the guidance of a faculty adviser who sets the requirements and supervises the research.\u00a0To register, the student\u00a0must\u00a0download\u00a0a\u00a0tutorial form from http:\/\/psychology.yale.edu\/undergraduate\/undergraduate-major-forms, complete it with\u00a0the adviser, and submit it\u00a0by the deadline indicated on the form.\u00a0The normal minimum requirement is a written report of the completed research or literature review, but individual faculty members may set alternative equivalent requirements.\u00a0A paper of 5,000 words or more meets the writing needed for the senior requirement. To be considered for Distinction in the Major, the paper should be submitted at least one week before the last day of classes and will be graded by the adviser and a second reader assigned by the DUS.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9975581169128418 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988202452659607, + 0.9974145889282227 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9980022311210632 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 4, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 4 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } + }, + { + "season_code": "202303", + "requirements": "", + "description": "Independent senior research project (either empirical research or literature review), conducted under the guidance of a faculty adviser who sets the requirements and supervises the research.\u00a0To register, the student\u00a0must\u00a0download\u00a0a\u00a0tutorial form from http://psychology.yale.edu/undergraduate/undergraduate-major-forms, complete it with\u00a0the adviser, and submit it\u00a0by the deadline indicated on the form.\u00a0The normal minimum requirement is a written report of the completed research or literature review, but individual faculty members may set alternative equivalent requirements.\u00a0A paper of 5,000 words or more meets the writing needed for the senior requirement. To be considered for Distinction in the Major, the paper should be submitted at least one week before the last day of classes and will be graded by the adviser and a second reader assigned by the DUS.", "short_title": "Senior Essay", "title": "Senior Essay", "school": "YC", @@ -278790,10 +570637,81 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89989\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89989/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9970642924308777 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.99471515417099 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.987068772315979 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 3, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 3 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -278842,10 +570760,38 @@ "classnotes": "Please Note: The course is for first year graduate psychology students.", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88701\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88701/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -278886,7 +570832,7 @@ "16:10", "19:10", "EVANS 1556 - Edward P Evans Hall 1556", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -278898,10 +570844,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90731\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90731/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -278961,10 +570935,143 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90417\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90417/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985688924789429, + 0.9986608028411865, + 0.9977846741676331, + 0.9986634254455566, + 0.9971073269844055, + 0.9988840222358704, + 0.9987875819206238, + 0.9940311312675476, + 0.9988539218902588, + 0.9986334443092346, + 0.998752236366272 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989266991615295, + 0.9906706809997559, + 0.9953182339668274, + 0.9987013339996338, + 0.998748779296875, + 0.9988732933998108, + 0.998763918876648, + 0.9987480640411377, + 0.9890273809432983, + 0.9987873435020447, + 0.9978893399238586 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.7272727272727273, + "NEGATIVE": 0.2727272727272727 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7272727272727273 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989051818847656, + 0.9984334111213684, + 0.9957656860351562, + 0.9988319277763367, + 0.9926602840423584, + 0.9989186525344849, + 0.9988943934440613, + 0.9994348883628845, + 0.9983170032501221, + 0.9987579584121704, + 0.9987553358078003 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.7272727272727273, + "NEGATIVE": 0.2727272727272727 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7272727272727273 + ] + }, + "final_label": "POSITIVE", + "final_count": 27, + "final_proportion": 0.8181818181818182, + "final_counts": { + "POSITIVE": 27, + "NEGATIVE": 6 + }, + "final_distribution": { + "POSITIVE": 0.8181818181818182, + "NEGATIVE": 0.18181818181818182 + } + } }, { "season_code": "202303", @@ -279001,7 +571108,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -279053,12 +571188,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "This class is an introduction to topics in law and psychology. Topics include eyewitness identification; confessions; interrogation; jury decision-making; racism\/sexism; media violence; and issues of culpability and mental illness. Enrollment limited to twenty. Self-scheduled examination or paper option. Note: This course follows the Law School calendar.", + "description": "This class is an introduction to topics in law and psychology. Topics include eyewitness identification; confessions; interrogation; jury decision-making; racism/sexism; media violence; and issues of culpability and mental illness. Enrollment limited to twenty. Self-scheduled examination or paper option. Note: This course follows the Law School calendar.", "short_title": "Topics in Law and Psychology", "title": "Topics in Law and Psychology", "school": "GS", @@ -279093,7 +571256,7 @@ "10:10", "12:00", "BAKER 122 - Baker Hall 122", - "https:\/\/map.yale.edu\/?id=1910#!m\/563680" + "https://map.yale.edu/?id=1910#!m/563680" ] ] }, @@ -279105,10 +571268,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91830\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91830/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -279146,7 +571337,7 @@ "17:00", "18:50", "CO47 106A - 47 College Street (CLP) 106A", - "https:\/\/map.yale.edu\/?id=1910#!m\/559997" + "https://map.yale.edu/?id=1910#!m/559997" ] ] }, @@ -279158,10 +571349,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91082\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91082/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -279213,7 +571432,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -279265,12 +571512,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "This course examines the history of psychology with a focus on racism and colonial power embedded in psychology and the psychological sciences more broadly. Students will grapple with primary and secondary sources which prompt them to think critically about the past and present of psychology and the ways in which systems of race, gender, and class inequality interact with major institutions, systems, and their own research practices. Students will study the historical relationship between the \"mind sciences\" and the intertwined systems\/institutions of white supremacy\/racial hierarchy, cisheteropatriarchy, capitalism, empire, and colonialism from the 17th century to the present. Students will also examine the role some psychologists and related scientists and scholars have played in challenging and resisting those same intertwined systems and institutions. This course is interdisciplinary in that, in addition to studying works by psychologists, students will study, analyze, and critique works in other fields \u2013 such as history, anthropology, ethnic studies, and postcolonial studies \u2013 which are relevant to understanding the historical development of the psychological sciences.", + "description": "This course examines the history of psychology with a focus on racism and colonial power embedded in psychology and the psychological sciences more broadly. Students will grapple with primary and secondary sources which prompt them to think critically about the past and present of psychology and the ways in which systems of race, gender, and class inequality interact with major institutions, systems, and their own research practices. Students will study the historical relationship between the \"mind sciences\" and the intertwined systems/institutions of white supremacy/racial hierarchy, cisheteropatriarchy, capitalism, empire, and colonialism from the 17th century to the present. Students will also examine the role some psychologists and related scientists and scholars have played in challenging and resisting those same intertwined systems and institutions. This course is interdisciplinary in that, in addition to studying works by psychologists, students will study, analyze, and critique works in other fields \u2013 such as history, anthropology, ethnic studies, and postcolonial studies \u2013 which are relevant to understanding the historical development of the psychological sciences.", "short_title": "History of Psychology: Racism...", "title": "History of Psychology: Racism and Colonial Power", "school": "GS", @@ -279314,10 +571589,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88711\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88711/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -279354,7 +571657,7 @@ "9:25", "11:15", "LORIA 360 - Loria Center 360", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -279366,10 +571669,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92742\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92742/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -279418,10 +571749,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89491\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89491/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -279470,10 +571829,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89492\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89492/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -279522,15 +571909,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89493\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89493/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "Faculty and students in personality\/social psychology meet during lunchtime to hear about and discuss the work of a local or visiting speaker.", + "description": "Faculty and students in personality/social psychology meet during lunchtime to hear about and discuss the work of a local or visiting speaker.", "short_title": "Current Work in Social Psycho...", "title": "Current Work in Social Psychology and Personality", "school": "GS", @@ -279577,7 +571992,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -279637,7 +572080,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -279680,7 +572151,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -279723,7 +572222,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -279766,7 +572293,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -279804,7 +572359,7 @@ "14:00", "15:30", "WLH 203 - William L. Harkness Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -279816,10 +572371,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88879\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88879/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -279862,7 +572445,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -279905,7 +572516,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -279945,10 +572584,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88882\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88882/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -280000,7 +572667,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -280052,7 +572747,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -280095,7 +572818,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -280138,7 +572889,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -280181,7 +572960,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -280224,7 +573031,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -280264,10 +573099,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88889\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88889/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -280316,10 +573179,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88890\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88890/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -280362,12 +573253,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "Students in this laboratory course are introduced to and participate in social-psychological research examining interactions and broader relations between members of socioculturally advantaged and disadvantaged groups. For instance, we examine the phenomena and processes associated with one\u2019s beliefs about members of social groups (stereotypes), attitudes and evaluative responses toward group members (prejudice), and behaviors toward members of a social group based on their group membership (discrimination). We also study how these issues shape the experiences of social group members, especially when they are members of low-status and\/or minority groups. We primarily focus on large societal groups that differ on cultural dimensions of identity, with a focus on race, ethnicity, and gender. Notably, we apply the theoretical and empirical work to current events and relevant policy issues.", + "description": "Students in this laboratory course are introduced to and participate in social-psychological research examining interactions and broader relations between members of socioculturally advantaged and disadvantaged groups. For instance, we examine the phenomena and processes associated with one\u2019s beliefs about members of social groups (stereotypes), attitudes and evaluative responses toward group members (prejudice), and behaviors toward members of a social group based on their group membership (discrimination). We also study how these issues shape the experiences of social group members, especially when they are members of low-status and/or minority groups. We primarily focus on large societal groups that differ on cultural dimensions of identity, with a focus on race, ethnicity, and gender. Notably, we apply the theoretical and empirical work to current events and relevant policy issues.", "short_title": "Research Topics in Intergroup...", "title": "Research Topics in Intergroup Relations", "school": "GS", @@ -280405,7 +573324,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -280448,7 +573395,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -280491,7 +573466,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -280534,7 +573537,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -280577,7 +573608,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -280617,10 +573676,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88897\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88897/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -280663,7 +573750,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -280715,7 +573830,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -280775,7 +573918,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -280818,7 +573989,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -280858,10 +574057,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88902\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88902/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -280913,12 +574140,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "Lab meeting is held once a week throughout the year and is attended by undergraduate and graduate students, research staff, postdoctoral fellows, and other researchers interested in the weekly topics. In a rotating fashion, both internal and external speakers present data and ideas from various research projects, and\/or research and methods papers in related areas, including the use of functional magnetic resonance imaging to answer questions in clinical and affective psychology.", + "description": "Lab meeting is held once a week throughout the year and is attended by undergraduate and graduate students, research staff, postdoctoral fellows, and other researchers interested in the weekly topics. In a rotating fashion, both internal and external speakers present data and ideas from various research projects, and/or research and methods papers in related areas, including the use of functional magnetic resonance imaging to answer questions in clinical and affective psychology.", "short_title": "Research Topics in Clinical a...", "title": "Research Topics in Clinical and Affective Neuropsychology", "school": "GS", @@ -280956,7 +574211,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -280999,7 +574282,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -281042,7 +574353,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -281082,10 +574421,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92760\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92760/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -281128,7 +574495,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -281171,7 +574566,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -281214,7 +574637,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -281266,7 +574717,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -281309,7 +574788,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -281346,7 +574853,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -281389,7 +574924,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -281427,7 +574990,7 @@ "10:40", "11:55", "SHM B201 - Sterling Hall of Medicine B201", - "https:\/\/map.yale.edu\/?id=1910#!m\/559929" + "https://map.yale.edu/?id=1910#!m/559929" ] ], "Wednesday": [ @@ -281435,7 +574998,7 @@ "10:40", "11:55", "SHM B201 - Sterling Hall of Medicine B201", - "https:\/\/map.yale.edu\/?id=1910#!m\/559929" + "https://map.yale.edu/?id=1910#!m/559929" ] ] }, @@ -281447,10 +575010,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89922\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89922/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -281496,7 +575087,7 @@ "9:25", "10:15", "DAVIES AUD - Davies Auditorium, Becton Ctr AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ], "Wednesday": [ @@ -281504,7 +575095,7 @@ "9:25", "10:15", "DAVIES AUD - Davies Auditorium, Becton Ctr AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ], "Friday": [ @@ -281512,7 +575103,7 @@ "9:25", "10:15", "DAVIES AUD - Davies Auditorium, Becton Ctr AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ] }, @@ -281526,15 +575117,248 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88304\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "", - "description": "The purpose of the Mentored Clinical Experience (MCE), an MRSP-specific course, is to permit students to gain a deep understanding of and appreciation for the interface between basic biomedical research and its application to clinical practice. The MCE is intended to integrate basic and translational research with direct exposure to clinical medicine and patients afflicted with the diseases or conditions under discussion. The course provides a foundation and a critically important forum for class discussion because each module stimulates students to explore a disease process in depth over four ninety-minute sessions led by expert clinician-scientists. The structure incorporates four perspectives to introduce the students to a particular disease or condition and then encourages them to probe areas that are not understood or fully resolved so they can appreciate the value and challenge inherent in using basic science to enhance clinical medicine. Students are provided biomedical resource material for background to the sessions as well as articles or other publicly available information that offers insight to the perspective from the non-scientific world. During this course students meet with patients who have experienced the disease and\/or visit and explore facilities associated with diagnosis and treatment of the disease process. Students are expected to prepare for sessions, to participate actively, and to be scrupulously respectful of patients and patient facilities. Prior to one of the sessions students receive guidance as to what they will observe and how to approach the experience; and at the end of the session, the students discuss their thoughts and impressions. All students receive HIPAA training and appropriate training in infection control and decorum relating to patient contact prior to the course.", + "syllabus_url": "https://yale.instructure.com/courses/88304/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989400506019592, + 0.9987356066703796, + 0.9988401532173157, + 0.9988483190536499, + 0.9987340569496155, + 0.9989243149757385, + 0.9981581568717957, + 0.9988138675689697, + 0.998855710029602, + 0.9988767504692078, + 0.997672975063324, + 0.9985867738723755, + 0.9987708926200867, + 0.9985735416412354, + 0.9977019429206848, + 0.9988190531730652, + 0.9987074136734009, + 0.9989060163497925, + 0.9975103139877319, + 0.9987026453018188, + 0.9986618757247925, + 0.9988909363746643, + 0.9978437423706055, + 0.9983353018760681, + 0.9985999464988708 + ], + "sentiment_counts": { + "POSITIVE": 25, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998848557472229, + 0.9993402361869812, + 0.9987609386444092, + 0.9989367127418518, + 0.9985036849975586, + 0.9989107847213745, + 0.9988788962364197, + 0.9987718462944031, + 0.9979021549224854, + 0.9987320303916931, + 0.998915433883667, + 0.9988909363746643, + 0.9995081424713135, + 0.9951971173286438, + 0.9987885355949402, + 0.9956823587417603, + 0.9983001351356506, + 0.9929627776145935, + 0.996518611907959, + 0.9988659620285034, + 0.9989122152328491, + 0.9994854927062988, + 0.9989089965820312, + 0.9989018440246582, + 0.9994179010391235, + 0.997342050075531, + 0.9988390803337097, + 0.9976304769515991, + 0.9986839890480042, + 0.9988480806350708 + ], + "sentiment_counts": { + "POSITIVE": 23, + "NEGATIVE": 7 + }, + "sentiment_distribution": { + "POSITIVE": 0.7666666666666667, + "NEGATIVE": 0.23333333333333334 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7666666666666667 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9943073391914368, + 0.9994959831237793, + 0.9987064599990845, + 0.9989296793937683, + 0.9986969828605652, + 0.9989004135131836, + 0.9988976716995239, + 0.9984064698219299, + 0.9987874627113342, + 0.9994966983795166, + 0.9988901019096375, + 0.9994984865188599, + 0.9989144802093506, + 0.9987828135490417, + 0.997117280960083, + 0.9971362352371216, + 0.9988127946853638, + 0.9988106489181519, + 0.9988019466400146, + 0.9968705773353577, + 0.9987626075744629, + 0.9989251494407654, + 0.9989131689071655, + 0.998771607875824, + 0.9962942004203796, + 0.9986621141433716, + 0.9647520780563354, + 0.9957173466682434 + ], + "sentiment_counts": { + "NEGATIVE": 7, + "POSITIVE": 21 + }, + "sentiment_distribution": { + "NEGATIVE": 0.25, + "POSITIVE": 0.75 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 69, + "final_proportion": 0.8313253012048193, + "final_counts": { + "POSITIVE": 69, + "NEGATIVE": 14 + }, + "final_distribution": { + "POSITIVE": 0.8313253012048193, + "NEGATIVE": 0.1686746987951807 + } + } + }, + { + "season_code": "202303", + "requirements": "", + "description": "The purpose of the Mentored Clinical Experience (MCE), an MRSP-specific course, is to permit students to gain a deep understanding of and appreciation for the interface between basic biomedical research and its application to clinical practice. The MCE is intended to integrate basic and translational research with direct exposure to clinical medicine and patients afflicted with the diseases or conditions under discussion. The course provides a foundation and a critically important forum for class discussion because each module stimulates students to explore a disease process in depth over four ninety-minute sessions led by expert clinician-scientists. The structure incorporates four perspectives to introduce the students to a particular disease or condition and then encourages them to probe areas that are not understood or fully resolved so they can appreciate the value and challenge inherent in using basic science to enhance clinical medicine. Students are provided biomedical resource material for background to the sessions as well as articles or other publicly available information that offers insight to the perspective from the non-scientific world. During this course students meet with patients who have experienced the disease and/or visit and explore facilities associated with diagnosis and treatment of the disease process. Students are expected to prepare for sessions, to participate actively, and to be scrupulously respectful of patients and patient facilities. Prior to one of the sessions students receive guidance as to what they will observe and how to approach the experience; and at the end of the session, the students discuss their thoughts and impressions. All students receive HIPAA training and appropriate training in infection control and decorum relating to patient contact prior to the course.", "short_title": "Medical Research Scholars Pro...", "title": "Medical Research Scholars Program: Mentored Clinical Experience", "school": "GS", @@ -281576,15 +575400,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89563\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89563/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "Readings and discussion on a diverse range of current topics in molecular medicine, pharmacology, and physiology. The class emphasizes analysis of primary research literature and development of presentation and writing skills. Contemporary articles are assigned on a related topic every week, and a student leads discussions with input from faculty who are experts in the topic area. The overall goal is to cover a specific topic of medical relevance (e.g., cancer, neurodegeneration) from the perspective of three primary disciplines (i.e., physiology: normal function; pathology: abnormal function; and pharmacology: intervention). Required of and open only to Ph.D. and M.D.\/Ph.D. students in the Molecular Medicine, Pharmacology, and Physiology track.", + "description": "Readings and discussion on a diverse range of current topics in molecular medicine, pharmacology, and physiology. The class emphasizes analysis of primary research literature and development of presentation and writing skills. Contemporary articles are assigned on a related topic every week, and a student leads discussions with input from faculty who are experts in the topic area. The overall goal is to cover a specific topic of medical relevance (e.g., cancer, neurodegeneration) from the perspective of three primary disciplines (i.e., physiology: normal function; pathology: abnormal function; and pharmacology: intervention). Required of and open only to Ph.D. and M.D./Ph.D. students in the Molecular Medicine, Pharmacology, and Physiology track.", "short_title": "Seminar in Molecular Medicine...", "title": "Seminar in Molecular Medicine, Pharmacology, and Physiology", "school": "GS", @@ -281640,15 +575492,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90413\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90413/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "This course covers aspects of the fundamental molecular and cellular mechanisms underlying various human diseases. Many of the disorders discussed represent major forms of infectious, degenerative, vascular, neoplastic, and inflammatory disease. Additionally, certain rarer diseases that illustrate good models for investigation and\/or application of basic biologic principles are covered in the course. The objective is to highlight advances in experimental and molecular medicine as they relate to understanding the pathogenesis of disease and the formulation of therapies.", + "description": "This course covers aspects of the fundamental molecular and cellular mechanisms underlying various human diseases. Many of the disorders discussed represent major forms of infectious, degenerative, vascular, neoplastic, and inflammatory disease. Additionally, certain rarer diseases that illustrate good models for investigation and/or application of basic biologic principles are covered in the course. The objective is to highlight advances in experimental and molecular medicine as they relate to understanding the pathogenesis of disease and the formulation of therapies.", "short_title": "Molecular Mechanisms of Disease", "title": "Molecular Mechanisms of Disease", "school": "GS", @@ -281681,7 +575561,7 @@ "13:00", "14:15", "HOPE 110 - Hope 110", - "https:\/\/map.yale.edu\/?id=1910#!m\/560131" + "https://map.yale.edu/?id=1910#!m/560131" ] ], "Thursday": [ @@ -281689,7 +575569,7 @@ "13:00", "14:15", "HOPE 110 - Hope 110", - "https:\/\/map.yale.edu\/?id=1910#!m\/560131" + "https://map.yale.edu/?id=1910#!m/560131" ] ] }, @@ -281703,10 +575583,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88579\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88579/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -281743,7 +575651,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -281780,7 +575716,7 @@ "8:30", "9:20", "SDQ BUSH-S100 - Sterling Divinity Quadrangle BUSH-S100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ], "Wednesday": [ @@ -281788,7 +575724,7 @@ "8:30", "9:20", "SDQ BUSH-S100 - Sterling Divinity Quadrangle BUSH-S100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ], "Friday": [ @@ -281796,7 +575732,7 @@ "8:30", "9:20", "SDQ BUSH-S100 - Sterling Divinity Quadrangle BUSH-S100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -281808,10 +575744,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90792\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90792/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -281848,7 +575812,7 @@ "8:30", "9:20", "SDQ SG54 - Sterling Divinity Quadrangle SG54", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ], "Wednesday": [ @@ -281856,7 +575820,7 @@ "8:30", "9:20", "SDQ SG54 - Sterling Divinity Quadrangle SG54", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ], "Friday": [ @@ -281864,7 +575828,7 @@ "8:30", "9:20", "SDQ SG54 - Sterling Divinity Quadrangle SG54", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -281876,10 +575840,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90796\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90796/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -281916,7 +575908,7 @@ "15:30", "17:20", "SDQ LATOURETTE - Sterling Divinity Quadrangle LATOURETTE", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -281928,10 +575920,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91576\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91576/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -281980,10 +576000,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91558\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91558/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -282026,7 +576074,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -282063,22 +576139,50 @@ "13:30", "14:50", "SDQ WOOD - Sterling Divinity Quadrangle WOOD", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, "skills": [], "areas": [], "flags": [], - "regnotes": "This course meets on the following dates: 9\/11, 10\/2, 10\/23, 11\/6, 11\/27, 12\/4. Travel to Hawaii will take place from January 4-13. 2024. Registration by permission, with petitions submitted to sarah.drummond@yale.edu. Students must be enrolled in Andover Newton's diploma program and in their second year of study, or with at least three semesters remaining after January travel.", + "regnotes": "This course meets on the following dates: 9/11, 10/2, 10/23, 11/6, 11/27, 12/4. Travel to Hawaii will take place from January 4-13. 2024. Registration by permission, with petitions submitted to sarah.drummond@yale.edu. Students must be enrolled in Andover Newton's diploma program and in their second year of study, or with at least three semesters remaining after January travel.", "rp_attr": "", "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90800\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90800/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -282115,14 +576219,42 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", "description": "The overall purpose of the Colloquium series in the Anglican Studies curriculum is to supplement the curriculum with topics of importance in preparing for service to God in and through the Episcopal Church and Anglican Communion. The Colloquium offers Episcopal and Anglican students an opportunity to engage in reflection and discernment on their experience of formation for religious leadership, lay and ordained, providing an opportunity to integrate varied theological disciplines. While leadership skills and capabilities can in some measure be taught abstractly, they are most effectively integrated into one\u2019s formation through exposure to seasoned leaders in various institutional contexts. Students explore a wide variety of leadership skills and styles in the presentations at the Colloquium and the assigned readings. Students practice leadership skills through role-playing, improvisation, and case studies. The intention is to set a leadership context in which students can practice leadership lessons that can be adapted to a ministry environment. Each term of the Colloquium focuses on different leadership skills. Over the course of their participation in Colloquium, Berkeley students are exposed to, and given an opportunity to practice, valuable leadership skills for ministry. These colloquia are required of all Berkeley Divinity School students wishing to qualify for the Diploma in Anglican Studies.", "short_title": "Colloquium on Ministry Format...", - "title": "Colloquium on Ministry Formation\/Anglican", + "title": "Colloquium on Ministry Formation/Anglican", "school": "DI", "credits": 0.0, "extra_info": "ACTIVE", @@ -282152,7 +576284,7 @@ "16:00", "17:20", "SDQ BUSH-S100 - Sterling Divinity Quadrangle BUSH-S100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -282164,17 +576296,45 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92358\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92358/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", "description": "The overall purpose of the Colloquium series in Anglican Studies is to supplement the curriculum with topics of importance in preparing for ministry and leadership in and through the Episcopal Church and Anglican Communion. The Colloquium offers Episcopal and other Anglican students an opportunity to engage in reflection and discernment on their experience of formation for religious leadership, lay and ordained, providing an opportunity to integrate varied theological disciplines. Over the course of their participation in Colloquium, Berkeley students are exposed to, and given an opportunity to practice, valuable leadership skills for ministry. In the senior (or final) year particular emphasis is placed on liturgical leadership. These colloquia are required of all Berkeley Divinity School students wishing to qualify for the Diploma in Anglican Studies.", "short_title": "Colloquium on Ministry Format...", - "title": "Colloquium on Ministry Formation\/Anglican", + "title": "Colloquium on Ministry Formation/Anglican", "school": "DI", "credits": 0.0, "extra_info": "ACTIVE", @@ -282216,17 +576376,45 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90803\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90803/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", "description": "The Lutheran Colloquium is offered each fall and spring term. The fall colloquium focuses on Lutheran worship; the spring colloquium focuses on Lutheran spiritual practices and self-care. The primary focus is on students considering ordination in the Evangelical Lutheran Church in America, but it is open to all.", "short_title": "Colloquium on Ministry Format...", - "title": "Colloquium on Ministry Formation\/Lutheran", + "title": "Colloquium on Ministry Formation/Lutheran", "school": "DI", "credits": 0.0, "extra_info": "ACTIVE", @@ -282259,10 +576447,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90806\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90806/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -282302,7 +576518,7 @@ "17:30", "18:30", "SDQ LATOURETTE - Sterling Divinity Quadrangle LATOURETTE", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -282314,10 +576530,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90810\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90810/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -282354,7 +576598,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -282391,7 +576663,7 @@ "18:00", "20:00", "SDQ WOOD - Sterling Divinity Quadrangle WOOD", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -282406,7 +576678,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -282443,12 +576743,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "This two-day (Friday afternoon\/evening and all day Saturday), one-credit course offers intense engagement with significant leaders in church and society and includes analysis, reflection, and leadership training models for those who anticipate leadership roles in churches and other institutions. In addition to reading about 300 pages in preparation for the weekend class, a ten-page response paper is due two weeks following conclusion of the course.", + "description": "This two-day (Friday afternoon/evening and all day Saturday), one-credit course offers intense engagement with significant leaders in church and society and includes analysis, reflection, and leadership training models for those who anticipate leadership roles in churches and other institutions. In addition to reading about 300 pages in preparation for the weekend class, a ten-page response paper is due two weeks following conclusion of the course.", "short_title": "Transformational Leadership: ...", "title": "Transformational Leadership: Transfrmtnl Leadrship-Nov10-11", "school": "DI", @@ -282478,15 +576806,43 @@ "skills": [], "areas": [], "flags": [], - "regnotes": "REL 3900-01, Exploring the Interior Landscape of the Soulful Leader, will meet Jan 2627. Participants will discover the inner guidance and courage necessary to live a life of authenticity, congruence, and integrity while facing the challenges of leadership in the complex work of activism.\nREL 3900-02, Restorative Justice, will meet Feb 910. This intensive will include discussion of some of the theological\/spiritual traditions that shape Restorative Justice work, and embody practical application and hands on experience with Restorative Justice practice in using these skills in leadership work now.", + "regnotes": "REL 3900-01, Exploring the Interior Landscape of the Soulful Leader, will meet Jan 2627. Participants will discover the inner guidance and courage necessary to live a life of authenticity, congruence, and integrity while facing the challenges of leadership in the complex work of activism.\nREL 3900-02, Restorative Justice, will meet Feb 910. This intensive will include discussion of some of the theological/spiritual traditions that shape Restorative Justice work, and embody practical application and hands on experience with Restorative Justice practice in using these skills in leadership work now.", "rp_attr": "", "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90817\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90817/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -282523,7 +576879,7 @@ "17:30", "18:30", "SDQ BUSH-S101 - Sterling Divinity Quadrangle BUSH-S101", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -282538,7 +576894,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -282578,7 +576962,7 @@ "15:30", "17:00", "SDQ - SDQ", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -282590,10 +576974,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90799\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90799/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -282630,7 +577042,7 @@ "9:00", "10:20", "SDQ BUSH-S101 - Sterling Divinity Quadrangle BUSH-S101", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -282642,15 +577054,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90827\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90827/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "Prerequisite: REL 3990 must be taken by the beginning of the term.", - "description": "Within the Divinity School curriculum, the internship experience is uniquely situated at the intersection of academic study and the practices of ministry and justice work, preparing degree candidates for leadership in the world by engaging them in student-centered experiential learning and theological reflection on the nature, practice, and context of work and service. The internship program requires students to work at the site of their own choosing, commit to weekly meetings with their assigned on-site supervisor, engage in regular theological reflection with a trained mentor, and participate each week with their practicum group. The Part-time Internship with Practicum is taken for two consecutive terms starting in September\u2014Practicum I in the fall term and Practicum II in the spring term. Ministry-related internship sites may include churches, schools, college campuses, or other institutions. Non-profit \/justice focused internships may include a wide range of sites, from youth services to reentry programs, homeless shelters to immigration programs, journalism to retreat centers, and many others.\u00a0The Part-time Internship with Practicum carries 3 credits each term, and students are offered a stipend. Students are required to complete 400 hours during the year, 370 on site and 30 with the practicum group.\u00a0This course is open to M.A.R. and M.Div. candidates in their second or third year. Both terms must be completed to meet the M.Div. degree Internship requirement.", + "description": "Within the Divinity School curriculum, the internship experience is uniquely situated at the intersection of academic study and the practices of ministry and justice work, preparing degree candidates for leadership in the world by engaging them in student-centered experiential learning and theological reflection on the nature, practice, and context of work and service. The internship program requires students to work at the site of their own choosing, commit to weekly meetings with their assigned on-site supervisor, engage in regular theological reflection with a trained mentor, and participate each week with their practicum group. The Part-time Internship with Practicum is taken for two consecutive terms starting in September\u2014Practicum I in the fall term and Practicum II in the spring term. Ministry-related internship sites may include churches, schools, college campuses, or other institutions. Non-profit /justice focused internships may include a wide range of sites, from youth services to reentry programs, homeless shelters to immigration programs, journalism to retreat centers, and many others.\u00a0The Part-time Internship with Practicum carries 3 credits each term, and students are offered a stipend. Students are required to complete 400 hours during the year, 370 on site and 30 with the practicum group.\u00a0This course is open to M.A.R. and M.Div. candidates in their second or third year. Both terms must be completed to meet the M.Div. degree Internship requirement.", "short_title": "Part-timeInternshpPrac I: Prt...", "title": "Part-timeInternshpPrac I: Prt Internshp Prac I- Ministry", "school": "DI", @@ -282685,7 +577125,7 @@ "16:00", "17:20", "SDQ WOOD - Sterling Divinity Quadrangle WOOD", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -282697,15 +577137,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92555\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92555/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "Prerequisite: REL 3990 must be taken by the beginning of the term.", - "description": "Within the Divinity School curriculum, the internship experience is uniquely situated at the intersection of academic study and the practices of ministry and justice work, preparing degree candidates for leadership in the world by engaging them in student-centered experiential learning and theological reflection on the nature, practice, and context of work and service. The internship program requires students to work at the site of their own choosing, commit to weekly meetings with their assigned on-site supervisor, engage in regular theological reflection with a trained mentor, and participate each week with their practicum group. The Part-time Internship with Practicum is taken for two consecutive terms starting in September\u2014Practicum I in the fall term and Practicum II in the spring term. Ministry-related internship sites may include churches, schools, college campuses, or other institutions. Non-profit \/justice focused internships may include a wide range of sites, from youth services to reentry programs, homeless shelters to immigration programs, journalism to retreat centers, and many others.\u00a0The Part-time Internship with Practicum carries 3 credits each term, and students are offered a stipend. Students are required to complete 400 hours during the year, 370 on site and 30 with the practicum group.\u00a0This course is open to M.A.R. and M.Div. candidates in their second or third year. Both terms must be completed to meet the M.Div. degree Internship requirement.", + "description": "Within the Divinity School curriculum, the internship experience is uniquely situated at the intersection of academic study and the practices of ministry and justice work, preparing degree candidates for leadership in the world by engaging them in student-centered experiential learning and theological reflection on the nature, practice, and context of work and service. The internship program requires students to work at the site of their own choosing, commit to weekly meetings with their assigned on-site supervisor, engage in regular theological reflection with a trained mentor, and participate each week with their practicum group. The Part-time Internship with Practicum is taken for two consecutive terms starting in September\u2014Practicum I in the fall term and Practicum II in the spring term. Ministry-related internship sites may include churches, schools, college campuses, or other institutions. Non-profit /justice focused internships may include a wide range of sites, from youth services to reentry programs, homeless shelters to immigration programs, journalism to retreat centers, and many others.\u00a0The Part-time Internship with Practicum carries 3 credits each term, and students are offered a stipend. Students are required to complete 400 hours during the year, 370 on site and 30 with the practicum group.\u00a0This course is open to M.A.R. and M.Div. candidates in their second or third year. Both terms must be completed to meet the M.Div. degree Internship requirement.", "short_title": "Part-timeInternshpPrac I: Pt ...", "title": "Part-timeInternshpPrac I: Pt InternshipPrac I-Non-profit", "school": "DI", @@ -282740,7 +577208,7 @@ "16:00", "17:30", "SDQ BROHOLM - Sterling Divinity Quadrangle BROHOLM", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -282752,10 +577220,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90835\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90835/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -282795,10 +577291,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90836\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90836/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -282838,7 +577362,7 @@ "8:30", "9:30", "SDQ S212 - Sterling Divinity Quadrangle S212", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -282850,10 +577374,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90840\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90840/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -282893,7 +577445,7 @@ "8:30", "9:30", "SDQ BUSH-S100 - Sterling Divinity Quadrangle BUSH-S100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -282905,10 +577457,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92356\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92356/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -282945,7 +577525,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -282982,7 +577590,7 @@ "10:30", "11:20", "SDQ NIEBUHR - Sterling Divinity Quadrangle NIEBUHR", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ], "Wednesday": [ @@ -282990,7 +577598,7 @@ "10:30", "11:20", "SDQ NIEBUHR - Sterling Divinity Quadrangle NIEBUHR", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ], "Friday": [ @@ -282998,7 +577606,7 @@ "10:30", "11:20", "SDQ NIEBUHR - Sterling Divinity Quadrangle NIEBUHR", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -283013,10 +577621,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90844\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90844/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -283053,7 +577689,7 @@ "10:30", "11:20", "SDQ GREAT - Sterling Divinity Quadrangle GREAT", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ], "Wednesday": [ @@ -283061,7 +577697,7 @@ "10:30", "11:20", "SDQ GREAT - Sterling Divinity Quadrangle GREAT", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ], "Friday": [ @@ -283069,7 +577705,7 @@ "10:30", "11:20", "SDQ GREAT - Sterling Divinity Quadrangle GREAT", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -283084,10 +577720,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90848\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90848/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -283124,7 +577788,7 @@ "13:30", "15:20", "SDQ LIBR-104 - Sterling Divinity Quadrangle LIBR-104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -283141,7 +577805,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -283177,10 +577869,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90855\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90855/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -283217,7 +577937,7 @@ "9:30", "11:20", "SDQ LIBR-104 - Sterling Divinity Quadrangle LIBR-104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -283231,10 +577951,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92488\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92488/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -283271,10 +578019,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92923\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92923/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -283311,7 +578087,7 @@ "13:30", "15:20", "SDQ BUSH-S100 - Sterling Divinity Quadrangle BUSH-S100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -283325,10 +578101,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90859\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90859/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -283365,7 +578169,7 @@ "13:30", "15:20", "SDQ BUSH-S104 - Sterling Divinity Quadrangle BUSH-S104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -283379,10 +578183,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90863\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90863/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -283419,7 +578251,7 @@ "13:30", "15:20", "SDQ BUSH-S200 - Sterling Divinity Quadrangle BUSH-S200", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -283433,10 +578265,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90867\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90867/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -283473,7 +578333,7 @@ "13:30", "15:20", "SDQ S212 - Sterling Divinity Quadrangle S212", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -283488,10 +578348,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90872\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90872/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -283528,7 +578416,7 @@ "13:30", "15:20", "SDQ BUSH-S100 - Sterling Divinity Quadrangle BUSH-S100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -283542,10 +578430,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90875\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90875/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -283582,7 +578498,7 @@ "9:00", "10:20", "SDQ JE-DINING - Sterling Divinity Quadrangle JE-DINING", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ], "Thursday": [ @@ -283590,7 +578506,7 @@ "9:00", "10:20", "SDQ JE-DINING - Sterling Divinity Quadrangle JE-DINING", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -283604,15 +578520,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90878\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90878/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "The aim of this course is to introduce students to Christian theology, or better, Christian theologies. Through short readings and varied writing assignments, students develop the theological literacy needed to take part in cultural contestations over religion, to engage in church debates, and\/or to inform their own decisions about faith and practice. The course makes use of historical and contemporary theological texts, art, and other resources to think about questions of doctrine, meaning, suffering, history, race, materiality, and transcendence. No particular faith commitment or background is assumed. Area II.", + "description": "The aim of this course is to introduce students to Christian theology, or better, Christian theologies. Through short readings and varied writing assignments, students develop the theological literacy needed to take part in cultural contestations over religion, to engage in church debates, and/or to inform their own decisions about faith and practice. The course makes use of historical and contemporary theological texts, art, and other resources to think about questions of doctrine, meaning, suffering, history, race, materiality, and transcendence. No particular faith commitment or background is assumed. Area II.", "short_title": "Introduction to Theology", "title": "Introduction to Theology", "school": "DI", @@ -283644,7 +578588,7 @@ "10:30", "11:20", "SDQ GREAT - Sterling Divinity Quadrangle GREAT", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ], "Thursday": [ @@ -283652,7 +578596,7 @@ "10:30", "11:20", "SDQ GREAT - Sterling Divinity Quadrangle GREAT", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -283668,10 +578612,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90882\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90882/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -283708,7 +578680,7 @@ "13:30", "15:20", "SDQ S212 - Sterling Divinity Quadrangle S212", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -283723,10 +578695,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90886\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90886/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -283763,7 +578763,7 @@ "9:30", "11:20", "SDQ SG54 - Sterling Divinity Quadrangle SG54", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -283778,10 +578778,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90890\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90890/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -283818,7 +578846,7 @@ "13:30", "15:20", "SDQ BUSH-S104 - Sterling Divinity Quadrangle BUSH-S104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -283834,10 +578862,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90894\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90894/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -283874,7 +578930,7 @@ "13:30", "15:20", "SDQ LATOURETTE - Sterling Divinity Quadrangle LATOURETTE", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -283889,10 +578945,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90897\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90897/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -283929,7 +579013,7 @@ "13:30", "15:20", "SDQ SG54 - Sterling Divinity Quadrangle SG54", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -283944,10 +579028,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90901\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90901/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -283984,7 +579096,7 @@ "15:30", "17:20", "SDQ BUSH-S104 - Sterling Divinity Quadrangle BUSH-S104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -283999,10 +579111,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90905\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90905/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -284039,7 +579179,7 @@ "13:30", "15:20", "SDQ BUSH-S100 - Sterling Divinity Quadrangle BUSH-S100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -284055,10 +579195,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90909\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90909/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -284098,7 +579266,7 @@ "13:30", "15:20", "SDQ BUSH-S200 - Sterling Divinity Quadrangle BUSH-S200", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -284112,14 +579280,42 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90913\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90913/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", - "requirements": "Prerequisite: REL 615. Students with a demonstrated background in theological and\/or philosophical disciplines may be admitted with instructor approval.", + "requirements": "Prerequisite: REL 615. Students with a demonstrated background in theological and/or philosophical disciplines may be admitted with instructor approval.", "description": "This course examines a number of contemporary approaches to problems in Christian moral thought and modern religious thought more generally. Course topics include political theology; religious ethics and culture; human flourishing and social responsibility; virtue, vice, and vocation; and relations of love, power, and justice. Methodological approaches to these topics comprise theological, philosophical, historical, politico-economic, and ethnographic perspectives. Area II and Area V.", "short_title": "Christian Ethics Seminar", "title": "Christian Ethics Seminar", @@ -284152,7 +579348,7 @@ "13:30", "15:20", "SDQ LATOURETTE - Sterling Divinity Quadrangle LATOURETTE", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -284168,10 +579364,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90915\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90915/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -284209,7 +579433,7 @@ "13:30", "15:20", "PR406 203 - 406 Prospect St., Miller Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/559978" + "https://map.yale.edu/?id=1910#!m/559978" ] ] }, @@ -284224,10 +579448,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90919\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90919/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -284264,7 +579516,7 @@ "13:30", "15:20", "SDQ WOOD - Sterling Divinity Quadrangle WOOD", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -284278,10 +579530,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90923\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90923/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -284318,7 +579598,7 @@ "9:30", "11:20", "SDQ LIBR-104 - Sterling Divinity Quadrangle LIBR-104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -284332,10 +579612,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91559\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91559/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -284373,7 +579681,7 @@ "13:30", "15:20", "SDQ JE-DINING - Sterling Divinity Quadrangle JE-DINING", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -284388,10 +579696,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90927\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90927/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -284431,7 +579767,7 @@ "9:30", "11:20", "SDQ LATOURETTE - Sterling Divinity Quadrangle LATOURETTE", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -284446,10 +579782,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90931\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90931/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -284487,7 +579851,7 @@ "10:00", "11:20", "SDQ WOOD - Sterling Divinity Quadrangle WOOD", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ], "Thursday": [ @@ -284495,7 +579859,7 @@ "10:00", "11:20", "SDQ WOOD - Sterling Divinity Quadrangle WOOD", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -284509,10 +579873,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90358\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90358/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -284549,7 +579941,7 @@ "8:30", "9:50", "SDQ BUSH-S200 - Sterling Divinity Quadrangle BUSH-S200", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ], "Thursday": [ @@ -284557,7 +579949,7 @@ "8:30", "9:50", "SDQ BUSH-S200 - Sterling Divinity Quadrangle BUSH-S200", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -284571,10 +579963,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90934\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90934/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -284611,7 +580031,7 @@ "13:30", "15:00", "SDQ N54 - Sterling Divinity Quadrangle N54", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ], "Wednesday": [ @@ -284619,7 +580039,7 @@ "13:30", "15:00", "SDQ N54 - Sterling Divinity Quadrangle N54", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -284634,10 +580054,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90938\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90938/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -284674,7 +580122,7 @@ "15:30", "17:20", "SDQ JE-DINING - Sterling Divinity Quadrangle JE-DINING", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -284688,10 +580136,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90946\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90946/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -284728,7 +580204,7 @@ "15:30", "17:20", "SDQ S212 - Sterling Divinity Quadrangle S212", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -284742,10 +580218,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91560\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91560/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -284783,7 +580287,7 @@ "13:30", "15:20", "SDQ LIBR-104 - Sterling Divinity Quadrangle LIBR-104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -284797,10 +580301,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89230\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89230/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -284838,7 +580370,7 @@ "9:30", "10:20", "SDQ GREAT - Sterling Divinity Quadrangle GREAT", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ], "Wednesday": [ @@ -284846,7 +580378,7 @@ "9:30", "10:20", "SDQ GREAT - Sterling Divinity Quadrangle GREAT", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ], "Friday": [ @@ -284854,7 +580386,7 @@ "9:30", "10:20", "SDQ GREAT - Sterling Divinity Quadrangle GREAT", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -284868,10 +580400,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90374\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90374/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -284908,7 +580468,7 @@ "9:30", "10:20", "SDQ NIEBUHR - Sterling Divinity Quadrangle NIEBUHR", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ], "Wednesday": [ @@ -284916,7 +580476,7 @@ "9:30", "10:20", "SDQ NIEBUHR - Sterling Divinity Quadrangle NIEBUHR", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -284930,10 +580490,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90949\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90949/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -284970,7 +580558,7 @@ "13:30", "15:20", "SDQ LIBR-104 - Sterling Divinity Quadrangle LIBR-104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -284986,10 +580574,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90953\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90953/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -285027,7 +580643,7 @@ "9:30", "11:20", "SDQ BUSH-S104 - Sterling Divinity Quadrangle BUSH-S104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -285039,7 +580655,7 @@ "DI: BRAD", "DI: Diversity" ], - "regnotes": "To optimize the range of experiences around the seminar table, the course will employ a guided selection process. The process will require students to send to the course professor, prior to the first day of class, a paragraph that addresses the following questions: Why would you like to take the course? What background in related subjects do you bring to the course? In what ways do you feel the course furthers your personal learning and\/or vocational goals? ", + "regnotes": "To optimize the range of experiences around the seminar table, the course will employ a guided selection process. The process will require students to send to the course professor, prior to the first day of class, a paragraph that addresses the following questions: Why would you like to take the course? What background in related subjects do you bring to the course? In what ways do you feel the course furthers your personal learning and/or vocational goals? ", "rp_attr": "", "classnotes": "", "final_exam": "", @@ -285047,7 +580663,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -285103,10 +580747,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88174\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88174/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -285143,7 +580794,7 @@ "13:30", "15:20", "SDQ SG58 - Sterling Divinity Quadrangle SG58", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -285160,10 +580811,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90959\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90959/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -285201,7 +580880,7 @@ "13:30", "15:20", "SDQ S151 - Sterling Divinity Quadrangle S151", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -285216,10 +580895,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90375\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90375/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -285256,7 +580963,7 @@ "9:30", "11:20", "SDQ BUSH-S104 - Sterling Divinity Quadrangle BUSH-S104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -285271,10 +580978,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90963\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90963/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -285312,7 +581047,7 @@ "15:30", "17:20", "SDQ JE-DINING - Sterling Divinity Quadrangle JE-DINING", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -285330,7 +581065,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -285367,7 +581130,7 @@ "18:30", "20:00", "SDQ MARQ - Sterling Divinity Quadrangle MARQ", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -285384,7 +581147,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -285421,7 +581212,7 @@ "18:00", "21:00", "SDQ MARQ - Sterling Divinity Quadrangle MARQ", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -285438,12 +581229,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "As an introduction to pastoral theology and care, this course explores the\u00a0history, theory, and methods of the care of souls tradition, concentrating on the narrative, communal-contextual model. The course\u00a0invites learners\u00a0into the practice of particular\u00a0pastoral care skills such as listening and responding in pastoral conversations; supporting families through life transitions; \"reading\" and engaging cultural contexts and systems of injustice in which care takes place; and the\u00a0intentional\u00a0uses of the self in spiritual care. The course introduces at a basic level key theoretical\u00a0frameworks\u00a0including narrative, intercultural\/interreligious care; family systems; and grief and trauma theory.\u00a0Teaching and learning methods include lecture, discussion, case studies, role plays, theological reflection, genograms, and visits to local ministry sites. Area IV.", + "description": "As an introduction to pastoral theology and care, this course explores the\u00a0history, theory, and methods of the care of souls tradition, concentrating on the narrative, communal-contextual model. The course\u00a0invites learners\u00a0into the practice of particular\u00a0pastoral care skills such as listening and responding in pastoral conversations; supporting families through life transitions; \"reading\" and engaging cultural contexts and systems of injustice in which care takes place; and the\u00a0intentional\u00a0uses of the self in spiritual care. The course introduces at a basic level key theoretical\u00a0frameworks\u00a0including narrative, intercultural/interreligious care; family systems; and grief and trauma theory.\u00a0Teaching and learning methods include lecture, discussion, case studies, role plays, theological reflection, genograms, and visits to local ministry sites. Area IV.", "short_title": "Introduction to Pastoral Theo...", "title": "Introduction to Pastoral Theology and Care", "school": "DI", @@ -285475,7 +581294,7 @@ "13:30", "16:00", "SDQ LATOURETTE - Sterling Divinity Quadrangle LATOURETTE", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -285489,10 +581308,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90973\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90973/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -285529,7 +581376,7 @@ "13:30", "15:20", "SDQ BUSH-S200 - Sterling Divinity Quadrangle BUSH-S200", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -285545,10 +581392,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90977\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90977/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -285588,7 +581463,7 @@ "13:30", "15:20", "SDQ LATOURETTE - Sterling Divinity Quadrangle LATOURETTE", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -285603,10 +581478,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90981\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90981/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -285643,7 +581546,7 @@ "10:00", "11:20", "SDQ NIEBUHR - Sterling Divinity Quadrangle NIEBUHR", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ], "Thursday": [ @@ -285651,7 +581554,7 @@ "10:00", "11:20", "SDQ NIEBUHR - Sterling Divinity Quadrangle NIEBUHR", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -285667,10 +581570,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90985\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90985/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -285707,7 +581638,7 @@ "13:30", "15:20", "SDQ S212 - Sterling Divinity Quadrangle S212", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -285721,10 +581652,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90989\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90989/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -285761,7 +581720,7 @@ "13:30", "15:20", "SDQ BUSH-S100 - Sterling Divinity Quadrangle BUSH-S100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -285775,15 +581734,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90993\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90993/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "There is a serious and vigorous public debate about the influence of religious values upon society. What ought to be our social responsibilities, particularly to those who are most vulnerable and in need of support, is a contested issue. The COVID-19 pandemic intensively and sharply reveals the public health crisis before us as well as some of the social and systemic inequities that structure our society and how those inequities impact the lives of people. This course has as its focus the effort to theologically reflect on, and discern from, an interdisciplinary approach to defining \"the disinherited.\" Students explore aspects of the Christian dimensions of social and political reform movements; the contours of faith-based social services; the influence of religious values on individual behavior; and ideas about the role of the church and government in meeting human needs. Through the interests and research of students, the course addresses topics such as poverty; health care disparities; sexual orientation; ethnic, gender, and racial discrimination; hunger; immigration; homelessness; public education; and the welfare of children. Students are expected to develop an interdisciplinary approach from perspectives found in biblical scriptures, sacred texts, theological\/religious beliefs and values, social work, sociology of religion, law, psychology of religion, political science, and social welfare theories. In that setting, students contextualize a theological understanding of the disinherited and what might constitute a ministry that addresses the needs of these groups. The learning journey of the course intentionally engages students on three overlapping themes or levels: theological frameworks, personal identity\/sense of vocation, and practical tools one uses in living out one\u2019s ministry and\/or sense of self in the world.\u00a0Area IV and Area II.", + "description": "There is a serious and vigorous public debate about the influence of religious values upon society. What ought to be our social responsibilities, particularly to those who are most vulnerable and in need of support, is a contested issue. The COVID-19 pandemic intensively and sharply reveals the public health crisis before us as well as some of the social and systemic inequities that structure our society and how those inequities impact the lives of people. This course has as its focus the effort to theologically reflect on, and discern from, an interdisciplinary approach to defining \"the disinherited.\" Students explore aspects of the Christian dimensions of social and political reform movements; the contours of faith-based social services; the influence of religious values on individual behavior; and ideas about the role of the church and government in meeting human needs. Through the interests and research of students, the course addresses topics such as poverty; health care disparities; sexual orientation; ethnic, gender, and racial discrimination; hunger; immigration; homelessness; public education; and the welfare of children. Students are expected to develop an interdisciplinary approach from perspectives found in biblical scriptures, sacred texts, theological/religious beliefs and values, social work, sociology of religion, law, psychology of religion, political science, and social welfare theories. In that setting, students contextualize a theological understanding of the disinherited and what might constitute a ministry that addresses the needs of these groups. The learning journey of the course intentionally engages students on three overlapping themes or levels: theological frameworks, personal identity/sense of vocation, and practical tools one uses in living out one\u2019s ministry and/or sense of self in the world.\u00a0Area IV and Area II.", "short_title": "Ministry and the Disinherited", "title": "Ministry and the Disinherited", "school": "DI", @@ -285815,7 +581802,7 @@ "15:30", "17:20", "SDQ LATOURETTE - Sterling Divinity Quadrangle LATOURETTE", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -285832,10 +581819,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92350\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92350/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -285871,10 +581886,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90995\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90995/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -285911,7 +581954,7 @@ "9:30", "11:20", "SDQ SG54 - Sterling Divinity Quadrangle SG54", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -285927,10 +581970,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90999\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90999/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -285967,7 +582038,7 @@ "9:00", "11:20", "SDQ BUSH-S100 - Sterling Divinity Quadrangle BUSH-S100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -285981,10 +582052,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91003\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91003/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -286021,7 +582120,7 @@ "17:30", "19:20", "SDQ JE-DINING - Sterling Divinity Quadrangle JE-DINING", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -286036,15 +582135,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91007\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91007/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "This course prepares students of all denominations for the ministry of working with adolescents and young adults, primarily in schools and colleges, but also in church settings. It begins with an analysis of where young people are today, their existential\/spiritual concerns, and the current state of their religious practices. The course then considers the similarities and differences between ministry in church settings and in school settings, both secular schools and schools with some sort of religious affiliation. Our principal text is \"What Schools Teach Us About Religious Life.\" In our study of schools, students consider the issues of school mission, culture, and leadership, including the relationship between church-based schools and the host church\/denomination. Issues of race, class, gender, and sexuality are considered throughout the course. Through required field trips, the course considers the particular problems and opportunities in inner-city schools and parish day schools. Area IV and Area V.", + "description": "This course prepares students of all denominations for the ministry of working with adolescents and young adults, primarily in schools and colleges, but also in church settings. It begins with an analysis of where young people are today, their existential/spiritual concerns, and the current state of their religious practices. The course then considers the similarities and differences between ministry in church settings and in school settings, both secular schools and schools with some sort of religious affiliation. Our principal text is \"What Schools Teach Us About Religious Life.\" In our study of schools, students consider the issues of school mission, culture, and leadership, including the relationship between church-based schools and the host church/denomination. Issues of race, class, gender, and sexuality are considered throughout the course. Through required field trips, the course considers the particular problems and opportunities in inner-city schools and parish day schools. Area IV and Area V.", "short_title": "Educational Ministry in Schoo...", "title": "Educational Ministry in Schools and Colleges", "school": "DI", @@ -286076,7 +582203,7 @@ "9:00", "10:20", "SDQ LIBR-104 - Sterling Divinity Quadrangle LIBR-104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ], "Thursday": [ @@ -286084,7 +582211,7 @@ "9:00", "10:20", "SDQ LIBR-104 - Sterling Divinity Quadrangle LIBR-104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -286099,10 +582226,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91011\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91011/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -286139,7 +582294,7 @@ "9:30", "11:20", "PR406 203 - 406 Prospect St., Miller Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/559978" + "https://map.yale.edu/?id=1910#!m/559978" ] ] }, @@ -286154,15 +582309,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91017\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91017/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "This course focuses on the theological implications of short fiction written between 1937 and 2023. The literature of the twentieth century (and the first quarter of the twenty-first century) is typically thought of as anti-religious. This course examines whether that assumption is true by analyzing the work of prominent writers of that time. We also consider exactly what kinds of theological\/religious thinking and feeling fiction enables. This course has no specific prerequisites, but some familiarity with the study of literature would be helpful. Area V.", + "description": "This course focuses on the theological implications of short fiction written between 1937 and 2023. The literature of the twentieth century (and the first quarter of the twenty-first century) is typically thought of as anti-religious. This course examines whether that assumption is true by analyzing the work of prominent writers of that time. We also consider exactly what kinds of theological/religious thinking and feeling fiction enables. This course has no specific prerequisites, but some familiarity with the study of literature would be helpful. Area V.", "short_title": "Modern Short Fiction", "title": "Modern Short Fiction", "school": "DI", @@ -286194,7 +582377,7 @@ "13:30", "15:20", "PR406 203 - 406 Prospect St., Miller Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/559978" + "https://map.yale.edu/?id=1910#!m/559978" ] ] }, @@ -286208,10 +582391,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91021\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91021/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -286249,7 +582460,7 @@ "13:30", "15:20", "SDQ BROHOLM - Sterling Divinity Quadrangle BROHOLM", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -286263,10 +582474,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91025\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91025/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -286303,7 +582542,7 @@ "15:30", "17:20", "SDQ BUSH-S100 - Sterling Divinity Quadrangle BUSH-S100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -286319,15 +582558,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91029\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91029/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "This course examines W.E.B. Du Bois\u2019s contributions to the study of religious, ethical, and political thought, especially on matters related to the enduring significance of chattel slavery and its afterlives, racialized capitalism and political economy, and black internationalist criticisms of American empire. The course also considers insurgent black activists and intellectuals whose contributions developed alongside and\/or in response to Du Bois\u2019s legacy. Among those thinkers are C.L.R. James, Claudia Jones, Martin Luther King, Jr., Cedric Robinson, Robin D.G. Kelley, and Imani Perry. The hope is to gain a richer appreciation of the expansiveness of black radical traditions in a way that deepens, expands, and resituates increasingly popular criticisms of race, patriarchy, economic inequality, and empire. Area V.", + "description": "This course examines W.E.B. Du Bois\u2019s contributions to the study of religious, ethical, and political thought, especially on matters related to the enduring significance of chattel slavery and its afterlives, racialized capitalism and political economy, and black internationalist criticisms of American empire. The course also considers insurgent black activists and intellectuals whose contributions developed alongside and/or in response to Du Bois\u2019s legacy. Among those thinkers are C.L.R. James, Claudia Jones, Martin Luther King, Jr., Cedric Robinson, Robin D.G. Kelley, and Imani Perry. The hope is to gain a richer appreciation of the expansiveness of black radical traditions in a way that deepens, expands, and resituates increasingly popular criticisms of race, patriarchy, economic inequality, and empire. Area V.", "short_title": "W.E.B. Du Bois and Black Radi...", "title": "W.E.B. Du Bois and Black Radical Traditions", "school": "DI", @@ -286359,7 +582626,7 @@ "18:00", "20:00", "SDQ BUSH-S100 - Sterling Divinity Quadrangle BUSH-S100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -286375,15 +582642,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91033\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91033/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "What is religious language, and what makes certain ways of using language \"religious\"? What functions does religious language have for different communities of speakers and writers in different contexts and situations? How is religious language appropriated, exploited, and manipulated for political, commercial, and ideological reasons? How can we use frameworks from linguistics and language study to understand and further appreciate the nature, functions, and power of religious language in our own lives and in society in general? These are some of the questions that we explore in this course. Focusing on Christian traditions and the English language, we look at aspects of word choice, metaphor, and other language strategies of religious language, and we use online tools, text collections, and search software to see what makes religious language tick. We draw on genre analysis to see how prayers and sermons as well as eulogies and other genres are put together linguistically (both now and historically) and discuss how knowledge of \"genre language\" can inform our understanding of the parameters of certain genres as well as their creative flexibility. As we look at the details of language and language strategies, we also consider what role religious language plays in creating and maintaining communities (drawing especially on the concept of \"communities of practice\") and how the community function of religious language is exploited by individuals as well as groups for commercial and political reasons. The smaller assignments in the class allow students to explore aspects of religious language that are important to them, and the final project, which can take a number of different shapes, can be adapted to students' particular commitments, whether religious\/congregational, non-profit, educational, creative, linguistic, or other. No prior coursework or knowledge of language studies is required or necessary. Area V.", + "description": "What is religious language, and what makes certain ways of using language \"religious\"? What functions does religious language have for different communities of speakers and writers in different contexts and situations? How is religious language appropriated, exploited, and manipulated for political, commercial, and ideological reasons? How can we use frameworks from linguistics and language study to understand and further appreciate the nature, functions, and power of religious language in our own lives and in society in general? These are some of the questions that we explore in this course. Focusing on Christian traditions and the English language, we look at aspects of word choice, metaphor, and other language strategies of religious language, and we use online tools, text collections, and search software to see what makes religious language tick. We draw on genre analysis to see how prayers and sermons as well as eulogies and other genres are put together linguistically (both now and historically) and discuss how knowledge of \"genre language\" can inform our understanding of the parameters of certain genres as well as their creative flexibility. As we look at the details of language and language strategies, we also consider what role religious language plays in creating and maintaining communities (drawing especially on the concept of \"communities of practice\") and how the community function of religious language is exploited by individuals as well as groups for commercial and political reasons. The smaller assignments in the class allow students to explore aspects of religious language that are important to them, and the final project, which can take a number of different shapes, can be adapted to students' particular commitments, whether religious/congregational, non-profit, educational, creative, linguistic, or other. No prior coursework or knowledge of language studies is required or necessary. Area V.", "short_title": "Religious Language", "title": "Religious Language", "school": "DI", @@ -286415,7 +582710,7 @@ "13:30", "15:20", "SDQ JE-DINING - Sterling Divinity Quadrangle JE-DINING", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -286429,10 +582724,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91037\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91037/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -286469,7 +582792,7 @@ "9:30", "11:20", "SDQ BUSH-S100 - Sterling Divinity Quadrangle BUSH-S100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -286483,15 +582806,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91041\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91041/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "Religion, race, and ethnicity mediate contested social memberships. Religious imaginaries often possess power through their association with eternal and transcendent truths. Racial and ethnic identities have existed as powerful social taxonomies because they are believed to be fixed, innate, and biologically determined. Thus, religious and racial phenomena are popularly imagined as somehow existing beyond the realm of the social. When set in the context of the United States\u2014a society that is self-referentially multicultural but that is informed by hegemonic white Anglo-Saxon Protestant cultural norms\u2014the critical, deconstructive study of religion and race emerges as a complex and significant intellectual project. This class examines how religion and race intersect in the United States from the eighteenth century until the present. Through our analysis of religious studies texts that straddle a number of disciplines, we explore how religion and race mutually inform shared understandings of socio-political belonging, hierarchy and boundaries, recuperative institutional projects, and structural and personal identities. In this rendition of the course we examine the intersections of religion, race, and settler colonialism; the operation of minoritized religious movements in contexts of detention and government surveillance; and scenes of interracial religious solidarities and conflicts. In this course students acquire working conceptual definitions of religion and race\/ethnicity, develop an understanding of how religion and race mediate interlocking modes of structural oppression and collective identities through comparative analysis, and apply theories of religion and race\/ethnicity to case studies to demonstrate comprehension and distill independent thinking. Area V and Area III.", + "description": "Religion, race, and ethnicity mediate contested social memberships. Religious imaginaries often possess power through their association with eternal and transcendent truths. Racial and ethnic identities have existed as powerful social taxonomies because they are believed to be fixed, innate, and biologically determined. Thus, religious and racial phenomena are popularly imagined as somehow existing beyond the realm of the social. When set in the context of the United States\u2014a society that is self-referentially multicultural but that is informed by hegemonic white Anglo-Saxon Protestant cultural norms\u2014the critical, deconstructive study of religion and race emerges as a complex and significant intellectual project. This class examines how religion and race intersect in the United States from the eighteenth century until the present. Through our analysis of religious studies texts that straddle a number of disciplines, we explore how religion and race mutually inform shared understandings of socio-political belonging, hierarchy and boundaries, recuperative institutional projects, and structural and personal identities. In this rendition of the course we examine the intersections of religion, race, and settler colonialism; the operation of minoritized religious movements in contexts of detention and government surveillance; and scenes of interracial religious solidarities and conflicts. In this course students acquire working conceptual definitions of religion and race/ethnicity, develop an understanding of how religion and race mediate interlocking modes of structural oppression and collective identities through comparative analysis, and apply theories of religion and race/ethnicity to case studies to demonstrate comprehension and distill independent thinking. Area V and Area III.", "short_title": "Religion and Race in the Unit...", "title": "Religion and Race in the United States", "school": "DI", @@ -286523,7 +582874,7 @@ "15:30", "17:20", "SDQ LATOURETTE - Sterling Divinity Quadrangle LATOURETTE", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -286541,10 +582892,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91045\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91045/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -286584,12 +582963,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "Students in this course collaborate with currently and\/or formerly incarcerated musicians and other justice-impacted individuals to create performances inspired by their collective reading of Dante\u2019s Divine Comedy, Michelle Alexander\u2019s The New Jim Crow, and a variety of texts documenting the impact of the carceral state on communities of color. Students learn how to apply the arts to community service and activism as they investigate the American criminal justice system and its relevance to Dante\u2019s poem from a social justice perspective. Area V.", + "description": "Students in this course collaborate with currently and/or formerly incarcerated musicians and other justice-impacted individuals to create performances inspired by their collective reading of Dante\u2019s Divine Comedy, Michelle Alexander\u2019s The New Jim Crow, and a variety of texts documenting the impact of the carceral state on communities of color. Students learn how to apply the arts to community service and activism as they investigate the American criminal justice system and its relevance to Dante\u2019s poem from a social justice perspective. Area V.", "short_title": "Gospel, Rap, and Social Justi...", "title": "Gospel, Rap, and Social Justice: Prison and the Arts", "school": "DI", @@ -286621,7 +583028,7 @@ "18:00", "21:00", "PR406 107 - 406 Prospect St., Miller Hall 107", - "https:\/\/map.yale.edu\/?id=1910#!m\/559978" + "https://map.yale.edu/?id=1910#!m/559978" ] ] }, @@ -286635,10 +583042,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91577\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91577/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -286675,7 +583110,7 @@ "18:00", "20:00", "SDQ BUSH-S104 - Sterling Divinity Quadrangle BUSH-S104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -286689,10 +583124,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91051\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91051/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -286734,7 +583197,7 @@ "13:30", "15:20", "SDQ SG54 - Sterling Divinity Quadrangle SG54", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -286749,10 +583212,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91054\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91054/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -286789,7 +583280,7 @@ "13:30", "15:20", "SDQ BUSH-S104 - Sterling Divinity Quadrangle BUSH-S104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -286805,10 +583296,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91057\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91057/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -286848,7 +583367,7 @@ "13:30", "15:20", "SDQ S151 - Sterling Divinity Quadrangle S151", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -286862,10 +583381,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91061\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91061/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -286903,7 +583450,7 @@ "11:35", "12:50", "LC 203 - Linsly-Chittenden Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -286911,7 +583458,7 @@ "11:35", "12:50", "LC 203 - Linsly-Chittenden Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -286922,17 +583469,94 @@ "Hu" ], "flags": [ - "YC English: 20th\/21st Century" + "YC English: 20th/21st Century" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88716\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88716/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988920092582703, + 0.998714804649353 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987939596176147, + 0.998677670955658 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989349246025085, + 0.9988848567008972 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 6 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -286971,7 +583595,7 @@ "10:30", "11:20", "LC 101 - Linsly-Chittenden Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -286979,7 +583603,7 @@ "10:30", "11:20", "LC 101 - Linsly-Chittenden Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Friday": [ @@ -286987,7 +583611,7 @@ "10:30", "11:20", "LC 101 - Linsly-Chittenden Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -287001,10 +583625,219 @@ "classnotes": "", "final_exam": "Monday, December 18, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88718\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88718/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988231062889099, + 0.9988858103752136, + 0.9983605742454529, + 0.9988107681274414, + 0.9982770681381226, + 0.9989277720451355, + 0.9987346529960632, + 0.9984032511711121, + 0.9987828135490417, + 0.9988987445831299, + 0.9988676309585571, + 0.9981400966644287, + 0.997219443321228, + 0.9988577365875244, + 0.9989144802093506, + 0.9971745014190674, + 0.9987868666648865, + 0.9988917708396912, + 0.9988013505935669, + 0.9984847903251648, + 0.998635470867157, + 0.9988717436790466, + 0.9988865256309509 + ], + "sentiment_counts": { + "POSITIVE": 23, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988542795181274, + 0.9994519352912903, + 0.9989374279975891, + 0.9988250136375427, + 0.9994720816612244, + 0.9988688826560974, + 0.9989054203033447, + 0.9989150762557983, + 0.9988266825675964, + 0.9989055395126343, + 0.998925507068634, + 0.9974014759063721, + 0.9989299178123474, + 0.9987521171569824, + 0.9987943172454834, + 0.9988967180252075, + 0.9988310933113098, + 0.9987579584121704, + 0.9988678693771362, + 0.9989342093467712, + 0.9989157915115356 + ], + "sentiment_counts": { + "POSITIVE": 19, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.9047619047619048, + "NEGATIVE": 0.09523809523809523 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9047619047619048 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998916745185852, + 0.9988417029380798, + 0.9988968372344971, + 0.998767614364624, + 0.9801360368728638, + 0.9987131357192993, + 0.9961066842079163, + 0.9989051818847656, + 0.9989321827888489, + 0.9989320635795593, + 0.9980402588844299, + 0.9989163875579834, + 0.9989149570465088, + 0.9982553124427795, + 0.9983333945274353, + 0.9981885552406311, + 0.9987700581550598, + 0.9988411068916321, + 0.997117280960083, + 0.9988810420036316, + 0.9994977712631226, + 0.9988988637924194, + 0.9988895058631897, + 0.9983822107315063, + 0.9979808926582336, + 0.9989179372787476, + 0.9989057779312134 + ], + "sentiment_counts": { + "POSITIVE": 25, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.9259259259259259, + "NEGATIVE": 0.07407407407407407 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9259259259259259 + ] + }, + "final_label": "POSITIVE", + "final_count": 67, + "final_proportion": 0.9436619718309859, + "final_counts": { + "POSITIVE": 67, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.9436619718309859, + "NEGATIVE": 0.056338028169014086 + } + } }, { "season_code": "202303", @@ -287037,7 +583870,7 @@ "14:30", "15:20", "HQ C65 - Humanities Quadrangle C65", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -287054,7 +583887,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -287087,7 +583948,7 @@ "16:30", "17:20", "HQ 307 - Humanities Quadrangle 307", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -287104,7 +583965,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -287137,7 +584026,7 @@ "9:25", "10:15", "WTS A38 - Watson Center 60 Sachem Street A38", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -287154,7 +584043,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -287187,7 +584104,7 @@ "10:30", "11:20", "WTS B30 - Watson Center 60 Sachem Street B30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -287204,7 +584121,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -287237,7 +584182,7 @@ "10:30", "11:20", "WTS B74 - Watson Center 60 Sachem Street B74", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -287254,7 +584199,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -287287,7 +584260,7 @@ "11:35", "12:25", "WTS B31 - Watson Center 60 Sachem Street B31", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -287304,7 +584277,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -287349,7 +584350,7 @@ "11:35", "12:50", "HQ 307 - Humanities Quadrangle 307", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -287357,7 +584358,7 @@ "11:35", "12:50", "HQ 307 - Humanities Quadrangle 307", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -287382,10 +584383,109 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88080\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88080/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9975146055221558, + 0.9974174499511719, + 0.9988190531730652, + 0.9983605742454529, + 0.998916506767273 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994046688079834, + 0.9984863996505737, + 0.9987554550170898, + 0.9995070695877075, + 0.9988973140716553, + 0.9988811612129211 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 4 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984442591667175, + 0.9970195889472961, + 0.9945054650306702, + 0.999510645866394, + 0.9989393353462219 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 0.8125, + "final_counts": { + "POSITIVE": 13, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.8125, + "NEGATIVE": 0.1875 + } + } }, { "season_code": "202303", @@ -287424,7 +584524,7 @@ "14:30", "15:20", "WLH 116 - William L. Harkness Hall 116", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -287432,7 +584532,7 @@ "14:30", "15:20", "WLH 116 - William L. Harkness Hall 116", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -287452,10 +584552,181 @@ "classnotes": "", "final_exam": "Monday, December 18, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88130\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88130/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987202882766724, + 0.9987051486968994, + 0.9988952875137329, + 0.9988301396369934, + 0.994616687297821, + 0.9988757967948914, + 0.9989155530929565, + 0.9988829493522644, + 0.9988141059875488, + 0.9987867474555969, + 0.9988582134246826, + 0.9987875819206238, + 0.9980543851852417, + 0.9987416863441467, + 0.9987664222717285, + 0.9988697171211243, + 0.99853515625 + ], + "sentiment_counts": { + "POSITIVE": 17, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988013505935669, + 0.9784038662910461, + 0.8716951012611389, + 0.9962931275367737, + 0.9987888932228088, + 0.9989182949066162, + 0.9994246959686279, + 0.9988508224487305, + 0.9989198446273804, + 0.9948171973228455, + 0.9924448132514954, + 0.997286319732666, + 0.9989118576049805, + 0.9988754391670227, + 0.9989197254180908, + 0.9988769888877869, + 0.9988527297973633 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.7647058823529411, + "NEGATIVE": 0.23529411764705882 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7647058823529411 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987240433692932, + 0.9986931681632996, + 0.9989138841629028, + 0.9989334940910339, + 0.998892605304718, + 0.99888676404953, + 0.9989388585090637, + 0.9988824725151062, + 0.9988534450531006, + 0.9989224672317505, + 0.998918890953064, + 0.9989345669746399, + 0.9987761378288269, + 0.9967390894889832, + 0.9989230036735535, + 0.9988725781440735, + 0.9988471269607544, + 0.9987552165985107 + ], + "sentiment_counts": { + "POSITIVE": 18, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 48, + "final_proportion": 0.9230769230769231, + "final_counts": { + "POSITIVE": 48, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.9230769230769231, + "NEGATIVE": 0.07692307692307693 + } + } }, { "season_code": "202303", @@ -287488,7 +584759,7 @@ "15:30", "16:20", "LC 103 - Linsly-Chittenden Hall 103", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -287511,7 +584782,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -287544,7 +584843,7 @@ "10:30", "11:20", "WLH 207 - William L. Harkness Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -287567,7 +584866,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -287600,7 +584927,7 @@ "15:30", "16:20", "HQ 307 - Humanities Quadrangle 307", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -287623,7 +584950,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -287656,7 +585011,7 @@ "16:30", "17:20", "HQ 307 - Humanities Quadrangle 307", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -287679,7 +585034,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -287718,7 +585101,7 @@ "9:25", "11:15", "HQ 113 - Humanities Quadrangle 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -287732,10 +585115,93 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90387\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90387/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989182949066162, + 0.998304009437561 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9875518679618835, + 0.9994242191314697 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 0 + }, + "sentiment_distribution": { + "NEGATIVE": 1.0, + "POSITIVE": 0.0 + }, + "sentiment_overall": [ + "NEGATIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989215135574341, + 0.9981397390365601, + 0.9982553124427795, + 0.9989250302314758 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 0.75, + "final_counts": { + "POSITIVE": 6, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + } + } }, { "season_code": "202303", @@ -287801,10 +585267,85 @@ "classnotes": "", "final_exam": "Friday, December 15, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89643\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89643/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986761212348938 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998141884803772, + 0.9985087513923645 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9990181922912598 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 0 + }, + "sentiment_distribution": { + "NEGATIVE": 1.0, + "POSITIVE": 0.0 + }, + "sentiment_overall": [ + "NEGATIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 3, + "final_proportion": 0.75, + "final_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + } + } }, { "season_code": "202303", @@ -287839,7 +585380,7 @@ "11:35", "12:25", "HQ 401 - Humanities Quadrangle 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -287856,7 +585397,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -287891,7 +585460,7 @@ "10:30", "11:20", "LC 317 - Linsly-Chittenden Hall 317", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -287908,7 +585477,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -287946,7 +585543,7 @@ "13:30", "15:20", "GR109 ROSENFELD - 109 Grove Street ROSENFELD", - "https:\/\/map.yale.edu\/?id=1910#!m\/560109" + "https://map.yale.edu/?id=1910#!m/560109" ] ] }, @@ -287960,10 +585557,187 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88721\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88721/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989282488822937, + 0.9988420605659485, + 0.998795747756958, + 0.9986586570739746, + 0.9988910555839539, + 0.9988759160041809, + 0.9986237287521362, + 0.9987894892692566, + 0.998795747756958, + 0.9988580942153931, + 0.997780978679657, + 0.998282790184021, + 0.9989159107208252, + 0.9988656044006348, + 0.9989101886749268, + 0.9880385994911194 + ], + "sentiment_counts": { + "POSITIVE": 16, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989274144172668, + 0.9988216757774353, + 0.9690937399864197, + 0.9987443685531616, + 0.9985485672950745, + 0.9988455772399902, + 0.9988844990730286, + 0.9989063739776611, + 0.9974096417427063, + 0.998668909072876, + 0.9989253878593445, + 0.9988467693328857, + 0.8169734477996826, + 0.998734176158905, + 0.993306577205658, + 0.9989151954650879, + 0.998880922794342, + 0.998865008354187, + 0.998916745185852, + 0.9989239573478699, + 0.9988648891448975 + ], + "sentiment_counts": { + "POSITIVE": 20, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9523809523809523, + "NEGATIVE": 0.047619047619047616 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9523809523809523 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989144802093506, + 0.9989351630210876, + 0.9986086487770081, + 0.9955018162727356, + 0.9989026784896851, + 0.9989323019981384, + 0.9988631010055542, + 0.9989016056060791, + 0.9988828301429749, + 0.9988234639167786, + 0.9988476037979126, + 0.9989367127418518, + 0.9988658428192139, + 0.9985047578811646, + 0.9989325404167175, + 0.9987475872039795, + 0.9989210367202759, + 0.9988256096839905 + ], + "sentiment_counts": { + "POSITIVE": 18, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 54, + "final_proportion": 0.9818181818181818, + "final_counts": { + "POSITIVE": 54, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9818181818181818, + "NEGATIVE": 0.01818181818181818 + } + } }, { "season_code": "202303", @@ -288001,7 +585775,7 @@ "9:25", "11:15", "WTS A51 - Watson Center 60 Sachem Street A51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -288015,10 +585789,143 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89136\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89136/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987955093383789, + 0.9969600439071655, + 0.9988204836845398, + 0.9984005093574524, + 0.998279333114624, + 0.9983684420585632, + 0.9984514713287354, + 0.9989140033721924, + 0.9988633394241333, + 0.9985148310661316 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989134073257446, + 0.9944518208503723, + 0.99882572889328, + 0.9981443881988525, + 0.9984273910522461, + 0.9977352619171143, + 0.9984788298606873, + 0.9989392161369324, + 0.9987186193466187, + 0.9988528490066528, + 0.9937753677368164 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989332556724548, + 0.9989063739776611, + 0.9975773692131042, + 0.9986584186553955, + 0.9980825185775757, + 0.9986458420753479, + 0.9957613348960876, + 0.9989250302314758, + 0.9989309906959534, + 0.9988278746604919, + 0.9989277720451355, + 0.998668909072876 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9166666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 31, + "final_proportion": 0.9393939393939394, + "final_counts": { + "POSITIVE": 31, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9393939393939394, + "NEGATIVE": 0.06060606060606061 + } + } }, { "season_code": "202303", @@ -288059,7 +585966,7 @@ "13:30", "15:20", "HQ 317 - Humanities Quadrangle 317", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -288086,10 +585993,87 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88105\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88105/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987886548042297, + 0.9987472295761108 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989280104637146, + 0.9989338517189026 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998802900314331, + 0.9989396929740906 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 6 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -288126,10 +586110,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89023\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89023/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -288167,7 +586179,7 @@ "15:30", "17:20", "PH 207 - Phelps Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -288188,10 +586200,135 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88905\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88905/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988852143287659, + 0.9988301396369934, + 0.9985828399658203, + 0.9989311099052429, + 0.9986963868141174, + 0.9987757802009583, + 0.9982841610908508, + 0.9987624883651733, + 0.9988202452659607 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994661211967468, + 0.9989215135574341, + 0.9949597120285034, + 0.9987524747848511, + 0.9989297986030579, + 0.998507559299469, + 0.9987976551055908, + 0.9989269375801086, + 0.9989230036735535 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 8 + }, + "sentiment_distribution": { + "NEGATIVE": 0.1111111111111111, + "POSITIVE": 0.8888888888888888 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9980574250221252, + 0.9989261031150818, + 0.9977449178695679, + 0.9989325404167175, + 0.9988141059875488, + 0.9987321496009827, + 0.9989057779312134, + 0.9779589176177979, + 0.9974833130836487, + 0.9989377856254578, + 0.9988288283348083 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 28, + "final_proportion": 0.9655172413793104, + "final_counts": { + "POSITIVE": 28, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9655172413793104, + "NEGATIVE": 0.034482758620689655 + } + } }, { "season_code": "202303", @@ -288228,7 +586365,7 @@ "13:30", "15:20", "WLH 205 - William L. Harkness Hall 205", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -288242,10 +586379,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89506\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89506/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -288291,7 +586456,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -288328,7 +586521,7 @@ "13:00", "14:15", "WLH 012 - William L. Harkness Hall 012", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -288336,7 +586529,7 @@ "13:00", "14:15", "WLH 012 - William L. Harkness Hall 012", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -288351,10 +586544,38 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90449\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/90449/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -288392,7 +586613,7 @@ "13:30", "15:20", "WLH 007 - William L. Harkness Hall 007", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -288406,10 +586627,125 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88723\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88723/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989151954650879, + 0.9989144802093506, + 0.9984563589096069, + 0.9978001713752747, + 0.9988677501678467, + 0.9989249110221863, + 0.9988340735435486 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988834261894226, + 0.9989226460456848, + 0.9988111257553101, + 0.9934996366500854, + 0.9987779259681702, + 0.9989084005355835, + 0.9989318251609802, + 0.998921275138855, + 0.9818521738052368 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989350438117981, + 0.9989101886749268, + 0.9982553124427795, + 0.9994946718215942, + 0.9989069700241089, + 0.9988558292388916, + 0.9989054203033447, + 0.9989269375801086 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "final_label": "POSITIVE", + "final_count": 23, + "final_proportion": 0.9583333333333334, + "final_counts": { + "POSITIVE": 23, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9583333333333334, + "NEGATIVE": 0.041666666666666664 + } + } }, { "season_code": "202303", @@ -288448,7 +586784,7 @@ "13:30", "15:20", "HQ 317 - Humanities Quadrangle 317", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -288462,10 +586798,87 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89353\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89353/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988947510719299, + 0.9988930821418762 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987646341323853, + 0.9988976716995239 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988653659820557, + 0.9989171028137207 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 6 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -288505,7 +586918,7 @@ "10:30", "11:20", "WLH 116 - William L. Harkness Hall 116", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -288513,7 +586926,7 @@ "10:30", "11:20", "WLH 116 - William L. Harkness Hall 116", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -288527,10 +586940,101 @@ "classnotes": "", "final_exam": "Wednesday, December 20, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88906\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88906/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9974307417869568, + 0.9988592863082886, + 0.9989388585090637 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988848567008972, + 0.9984784722328186, + 0.9989389777183533, + 0.9976162910461426 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989210367202759, + 0.9988842606544495, + 0.9988515377044678, + 0.9988043308258057, + 0.9985300302505493 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 0.9166666666666666, + "final_counts": { + "POSITIVE": 11, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + } + } }, { "season_code": "202303", @@ -288563,7 +587067,7 @@ "9:25", "10:15", "HQ C01 - Humanities Quadrangle C01", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -288580,7 +587084,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -288613,7 +587145,7 @@ "16:00", "16:50", "LC 104 - Linsly-Chittenden Hall 104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -288630,7 +587162,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -288663,7 +587223,7 @@ "17:00", "17:50", "LC 103 - Linsly-Chittenden Hall 103", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -288680,7 +587240,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -288713,7 +587301,7 @@ "10:30", "11:20", "WALL53 208 - 53 Wall Street 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/559554" + "https://map.yale.edu/?id=1910#!m/559554" ] ] }, @@ -288730,7 +587318,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -288770,7 +587386,7 @@ "13:30", "15:20", "PH 207 - Phelps Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -288794,15 +587410,106 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88726\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88726/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "", - "description": "This interdisciplinary course surveys the history of homosexuality from a cross-cultural, comparative \u00a0perspective. Students study contexts where homosexuality and sodomy were categorized, regulated, and persecuted and examine ancient and medieval constructions of same-sex desire in light of post-modern developments, challenging ideas around what is considered normal and\/or natural. Ultimately, we ask: what has changed, and what has remained the same, in the history of homosexuality? What do gays and lesbians today have in common with pre-modern sodomites? Can this history help us ground or rethink our sexual selves and identities? Primary and secondary historical sources, some legal and religious sources, and texts in intellectual history are studied. Among the case studies for the course are ancient attitudes among Jews, early Christians, and Greeks; Christian theologians of the Middle Ages; Renaissance Florence; the Inquisition in Iberia; colonial Latin America; and the Enlightenment\u2019s condemnation of sodomy by Montesquieu and Voltaire, and its defense by Bentham.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994853734970093, + 0.9989376664161682, + 0.9986500144004822, + 0.9986982345581055 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.25, + "POSITIVE": 0.75 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9966853260993958, + 0.9989364743232727, + 0.9987745881080627, + 0.997749388217926 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.25, + "POSITIVE": 0.75 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986067414283752, + 0.9989312291145325, + 0.9988231062889099, + 0.9969677329063416 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 0.8333333333333334, + "final_counts": { + "NEGATIVE": 2, + "POSITIVE": 10 + }, + "final_distribution": { + "NEGATIVE": 0.16666666666666666, + "POSITIVE": 0.8333333333333334 + } + } + }, + { + "season_code": "202303", + "requirements": "", + "description": "This interdisciplinary course surveys the history of homosexuality from a cross-cultural, comparative \u00a0perspective. Students study contexts where homosexuality and sodomy were categorized, regulated, and persecuted and examine ancient and medieval constructions of same-sex desire in light of post-modern developments, challenging ideas around what is considered normal and/or natural. Ultimately, we ask: what has changed, and what has remained the same, in the history of homosexuality? What do gays and lesbians today have in common with pre-modern sodomites? Can this history help us ground or rethink our sexual selves and identities? Primary and secondary historical sources, some legal and religious sources, and texts in intellectual history are studied. Among the case studies for the course are ancient attitudes among Jews, early Christians, and Greeks; Christian theologians of the Middle Ages; Renaissance Florence; the Inquisition in Iberia; colonial Latin America; and the Enlightenment\u2019s condemnation of sodomy by Montesquieu and Voltaire, and its defense by Bentham.", "short_title": "Sexual Minorities from Plato ...", "title": "Sexual Minorities from Plato to the Enlightenment", "school": "YC", @@ -288837,7 +587544,7 @@ "13:00", "14:15", "WLH 211 - William L. Harkness Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -288845,7 +587552,7 @@ "13:00", "14:15", "WLH 211 - William L. Harkness Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -288864,15 +587571,90 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88563\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88563/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "", - "description": "This interdisciplinary course surveys the history of homosexuality from a cross-cultural, comparative \u00a0perspective. Students study contexts where homosexuality and sodomy were categorized, regulated, and persecuted and examine ancient and medieval constructions of same-sex desire in light of post-modern developments, challenging ideas around what is considered normal and\/or natural. Ultimately, we ask: what has changed, and what has remained the same, in the history of homosexuality? What do gays and lesbians today have in common with pre-modern sodomites? Can this history help us ground or rethink our sexual selves and identities? Primary and secondary historical sources, some legal and religious sources, and texts in intellectual history are studied. Among the case studies for the course are ancient attitudes among Jews, early Christians, and Greeks; Christian theologians of the Middle Ages; Renaissance Florence; the Inquisition in Iberia; colonial Latin America; and the Enlightenment\u2019s condemnation of sodomy by Montesquieu and Voltaire, and its defense by Bentham.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.998930037021637 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988467693328857 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988486766815186, + 0.9988548755645752, + 0.9983124732971191 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 5, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 5 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } + }, + { + "season_code": "202303", + "requirements": "", + "description": "This interdisciplinary course surveys the history of homosexuality from a cross-cultural, comparative \u00a0perspective. Students study contexts where homosexuality and sodomy were categorized, regulated, and persecuted and examine ancient and medieval constructions of same-sex desire in light of post-modern developments, challenging ideas around what is considered normal and/or natural. Ultimately, we ask: what has changed, and what has remained the same, in the history of homosexuality? What do gays and lesbians today have in common with pre-modern sodomites? Can this history help us ground or rethink our sexual selves and identities? Primary and secondary historical sources, some legal and religious sources, and texts in intellectual history are studied. Among the case studies for the course are ancient attitudes among Jews, early Christians, and Greeks; Christian theologians of the Middle Ages; Renaissance Florence; the Inquisition in Iberia; colonial Latin America; and the Enlightenment\u2019s condemnation of sodomy by Montesquieu and Voltaire, and its defense by Bentham.", "short_title": "Sexual Minorities from Plato ...", "title": "Sexual Minorities from Plato to the Enlightenment", "school": "YC", @@ -288901,7 +587683,7 @@ "14:30", "15:20", "WLH 209 - William L. Harkness Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -288923,12 +587705,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "This interdisciplinary course surveys the history of homosexuality from a cross-cultural, comparative \u00a0perspective. Students study contexts where homosexuality and sodomy were categorized, regulated, and persecuted and examine ancient and medieval constructions of same-sex desire in light of post-modern developments, challenging ideas around what is considered normal and\/or natural. Ultimately, we ask: what has changed, and what has remained the same, in the history of homosexuality? What do gays and lesbians today have in common with pre-modern sodomites? Can this history help us ground or rethink our sexual selves and identities? Primary and secondary historical sources, some legal and religious sources, and texts in intellectual history are studied. Among the case studies for the course are ancient attitudes among Jews, early Christians, and Greeks; Christian theologians of the Middle Ages; Renaissance Florence; the Inquisition in Iberia; colonial Latin America; and the Enlightenment\u2019s condemnation of sodomy by Montesquieu and Voltaire, and its defense by Bentham.", + "description": "This interdisciplinary course surveys the history of homosexuality from a cross-cultural, comparative \u00a0perspective. Students study contexts where homosexuality and sodomy were categorized, regulated, and persecuted and examine ancient and medieval constructions of same-sex desire in light of post-modern developments, challenging ideas around what is considered normal and/or natural. Ultimately, we ask: what has changed, and what has remained the same, in the history of homosexuality? What do gays and lesbians today have in common with pre-modern sodomites? Can this history help us ground or rethink our sexual selves and identities? Primary and secondary historical sources, some legal and religious sources, and texts in intellectual history are studied. Among the case studies for the course are ancient attitudes among Jews, early Christians, and Greeks; Christian theologians of the Middle Ages; Renaissance Florence; the Inquisition in Iberia; colonial Latin America; and the Enlightenment\u2019s condemnation of sodomy by Montesquieu and Voltaire, and its defense by Bentham.", "short_title": "Sexual Minorities from Plato ...", "title": "Sexual Minorities from Plato to the Enlightenment", "school": "YC", @@ -288957,7 +587767,7 @@ "11:35", "12:25", "WLH 210 - William L. Harkness Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -288979,7 +587789,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -289018,7 +587856,7 @@ "13:30", "15:20", "BASSLB L73 - Bass Library L73", - "https:\/\/map.yale.edu\/?id=1910#!m\/564574" + "https://map.yale.edu/?id=1910#!m/564574" ] ] }, @@ -289034,10 +587872,105 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88731\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88731/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9979153275489807, + 0.9910615086555481, + 0.9988904595375061, + 0.9984556436538696, + 0.998033344745636 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9975212216377258, + 0.9995012283325195, + 0.9995098114013672, + 0.8628511428833008 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9849085807800293, + 0.9988566637039185, + 0.9988561868667603, + 0.9938501119613647, + 0.9988143444061279 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.4, + "POSITIVE": 0.6 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 0.7142857142857143, + "final_counts": { + "POSITIVE": 10, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.7142857142857143, + "NEGATIVE": 0.2857142857142857 + } + } }, { "season_code": "202303", @@ -289080,7 +588013,7 @@ "13:30", "15:20", "WLH 202 - William L. Harkness Hall 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -289098,10 +588031,99 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88938\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88938/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998917818069458, + 0.9989336133003235, + 0.9989350438117981 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9948537945747375, + 0.9993378520011902, + 0.9989354014396667, + 0.9986166954040527 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988767504692078, + 0.998809814453125, + 0.9989318251609802, + 0.9995081424713135 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 0.8181818181818182, + "final_counts": { + "POSITIVE": 9, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8181818181818182, + "NEGATIVE": 0.18181818181818182 + } + } }, { "season_code": "202303", @@ -289144,7 +588166,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -289181,7 +588231,7 @@ "9:25", "11:15", "WTS A72 - Watson Center 60 Sachem Street A72", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -289196,7 +588246,80 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9969434142112732 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9992227554321289 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 0 + }, + "sentiment_distribution": { + "NEGATIVE": 1.0, + "POSITIVE": 0.0 + }, + "sentiment_overall": [ + "NEGATIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986737966537476 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 2, + "final_proportion": 0.6666666666666666, + "final_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + } + } }, { "season_code": "202303", @@ -289234,7 +588357,7 @@ "13:30", "16:30", "SML 218 - Sterling Memorial Library 218", - "https:\/\/map.yale.edu\/?id=1910#!m\/563698" + "https://map.yale.edu/?id=1910#!m/563698" ] ] }, @@ -289246,10 +588369,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88907\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88907/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -289288,7 +588439,7 @@ "13:30", "15:20", "HQ 317 - Humanities Quadrangle 317", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -289300,10 +588451,87 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89353\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89353/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988947510719299, + 0.9988930821418762 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987646341323853, + 0.9988976716995239 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988653659820557, + 0.9989171028137207 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 6 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -289341,7 +588569,7 @@ "13:30", "15:20", "WLH 014 - William L. Harkness Hall 014", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -289353,10 +588581,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88737\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88737/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -289420,10 +588676,85 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89643\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89643/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986761212348938 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998141884803772, + 0.9985087513923645 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9990181922912598 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 0 + }, + "sentiment_distribution": { + "NEGATIVE": 1.0, + "POSITIVE": 0.0 + }, + "sentiment_overall": [ + "NEGATIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 3, + "final_proportion": 0.75, + "final_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + } + } }, { "season_code": "202303", @@ -289460,7 +588791,7 @@ "13:30", "15:20", "WLH 205 - William L. Harkness Hall 205", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -289472,10 +588803,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88740\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88740/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -289513,7 +588872,7 @@ "13:30", "15:20", "HQ C03 - Humanities Quadrangle C03", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -289527,10 +588886,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89748\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89748/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -289570,7 +588957,7 @@ "10:30", "11:20", "WLH 116 - William L. Harkness Hall 116", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -289578,7 +588965,7 @@ "10:30", "11:20", "WLH 116 - William L. Harkness Hall 116", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -289590,10 +588977,101 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88906\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88906/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9974307417869568, + 0.9988592863082886, + 0.9989388585090637 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988848567008972, + 0.9984784722328186, + 0.9989389777183533, + 0.9976162910461426 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989210367202759, + 0.9988842606544495, + 0.9988515377044678, + 0.9988043308258057, + 0.9985300302505493 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 0.9166666666666666, + "final_counts": { + "POSITIVE": 11, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + } + } }, { "season_code": "202303", @@ -289630,7 +589108,7 @@ "9:25", "11:15", "HQ 313 - Humanities Quadrangle 313", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -289642,10 +589120,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88742\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88742/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -289690,7 +589196,7 @@ "11:35", "12:50", "HQ 307 - Humanities Quadrangle 307", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -289698,7 +589204,7 @@ "11:35", "12:50", "HQ 307 - Humanities Quadrangle 307", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -289710,10 +589216,109 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88080\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88080/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9975146055221558, + 0.9974174499511719, + 0.9988190531730652, + 0.9983605742454529, + 0.998916506767273 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994046688079834, + 0.9984863996505737, + 0.9987554550170898, + 0.9995070695877075, + 0.9988973140716553, + 0.9988811612129211 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 4 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984442591667175, + 0.9970195889472961, + 0.9945054650306702, + 0.999510645866394, + 0.9989393353462219 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 0.8125, + "final_counts": { + "POSITIVE": 13, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.8125, + "NEGATIVE": 0.1875 + } + } }, { "season_code": "202303", @@ -289752,7 +589357,7 @@ "13:30", "15:20", "PR406 203 - 406 Prospect St., Miller Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/559978" + "https://map.yale.edu/?id=1910#!m/559978" ] ] }, @@ -289764,10 +589369,38 @@ "classnotes": "Permission of the instructor required", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88158\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88158/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -289817,14 +589450,42 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88744\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88744/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", - "requirements": "Prerequisite: RLST 839\/SMTC 514 or knowledge of Syriac.", + "requirements": "Prerequisite: RLST 839/SMTC 514 or knowledge of Syriac.", "description": "This two-term course is designed to enhance students\u2019 knowledge of the Syriac language by reading a selection of texts, sampling the major genres of classical Syriac literature. By the end of the year, students are familiar with non-vocalized texts and are capable of confronting specific grammatical or lexical problems.", "short_title": "Intermediate Syriac I", "title": "Intermediate Syriac I", @@ -289870,10 +589531,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88747\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88747/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -289923,10 +589612,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88749\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88749/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -289966,7 +589683,7 @@ "15:30", "17:20", "HQ 209 - Humanities Quadrangle 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -289978,15 +589695,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88751\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88751/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "Combining seminar and workshop formats, this course explores the themes from Christian theology and especially doctrines of creation in relation to race, decoloniality, and critical geography. Our goal through this exploration is to facilitate an ongoing communal practice of collegial and constructive reading and conversation. Sat\/Unsat or Audit only. This is the required seminar for the doctoral program in theology, but doctoral students and faculty in other areas of the religious studies department or in the wider university community may also request permission to attend.", + "description": "Combining seminar and workshop formats, this course explores the themes from Christian theology and especially doctrines of creation in relation to race, decoloniality, and critical geography. Our goal through this exploration is to facilitate an ongoing communal practice of collegial and constructive reading and conversation. Sat/Unsat or Audit only. This is the required seminar for the doctoral program in theology, but doctoral students and faculty in other areas of the religious studies department or in the wider university community may also request permission to attend.", "short_title": "Theology Doctoral Seminar", "title": "Theology Doctoral Seminar", "school": "GS", @@ -290018,7 +589763,7 @@ "18:00", "20:00", "HQ 109 - Humanities Quadrangle 109", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -290030,10 +589775,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90683\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90683/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -290070,7 +589843,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -290107,7 +589908,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -290144,7 +589973,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -290181,7 +590038,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -290218,7 +590103,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -290255,14 +590168,42 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", "description": "", "short_title": "Directed Readings: Old Testam...", - "title": "Directed Readings: Old Testament\/Hebrew Bible", + "title": "Directed Readings: Old Testament/Hebrew Bible", "school": "GS", "credits": 1.0, "extra_info": "ACTIVE", @@ -290292,7 +590233,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -290329,7 +590298,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -290366,7 +590363,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -290403,7 +590428,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -290441,7 +590494,7 @@ "11:35", "12:25", "HQ 132 - Humanities Quadrangle 132", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -290449,7 +590502,7 @@ "11:35", "12:25", "HQ 132 - Humanities Quadrangle 132", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -290472,10 +590525,107 @@ "classnotes": "", "final_exam": "Sunday, December 17, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88135\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88135/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998747706413269, + 0.9988430738449097, + 0.9986705780029297, + 0.9988844990730286, + 0.9988827109336853 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988502264022827, + 0.9988347887992859, + 0.9988093376159668, + 0.9989100694656372, + 0.9989957213401794 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987242817878723, + 0.9989240765571594, + 0.9988610744476318, + 0.9988215565681458, + 0.9987093210220337 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 0.9333333333333333, + "final_counts": { + "POSITIVE": 14, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9333333333333333, + "NEGATIVE": 0.06666666666666667 + } + } }, { "season_code": "202303", @@ -290507,7 +590657,7 @@ "13:30", "14:20", "BASSLB L70 - Bass Library L70", - "https:\/\/map.yale.edu\/?id=1910#!m\/564574" + "https://map.yale.edu/?id=1910#!m/564574" ] ] }, @@ -290533,7 +590683,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -290565,7 +590743,7 @@ "19:00", "19:50", "HQ 209 - Humanities Quadrangle 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -290591,7 +590769,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -290633,7 +590839,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -290673,7 +590907,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -290711,10 +590973,38 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88939\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88939/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -290757,7 +591047,7 @@ "13:00", "14:15", "HQ C11 - Humanities Quadrangle C11", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -290765,7 +591055,7 @@ "13:00", "14:15", "HQ C11 - Humanities Quadrangle C11", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -290779,10 +591069,123 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89006\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89006/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988124370574951, + 0.9988865256309509, + 0.9989105463027954, + 0.9988695979118347, + 0.9984996318817139, + 0.9989117383956909, + 0.9988561868667603 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989283680915833, + 0.9989339709281921, + 0.9989217519760132, + 0.9989386200904846, + 0.9989239573478699, + 0.9989343285560608, + 0.9989400506019592 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988386034965515, + 0.998931348323822, + 0.9989206790924072, + 0.99875807762146, + 0.9989272952079773, + 0.9989187717437744, + 0.9989375472068787, + 0.9989213943481445, + 0.9988805651664734, + 0.9989261031150818 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 24, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 24 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -290823,7 +591226,7 @@ "15:30", "17:20", "HQ 113 - Humanities Quadrangle 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -290839,10 +591242,93 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89137\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89137/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989191293716431, + 0.9986900687217712, + 0.9948129653930664 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988294243812561, + 0.9984099864959717, + 0.9988916516304016 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987150430679321, + 0.9987962245941162, + 0.9988998174667358 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 9 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -290881,7 +591367,7 @@ "11:35", "12:25", "LC 102 - Linsly-Chittenden Hall 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -290889,7 +591375,7 @@ "11:35", "12:25", "LC 102 - Linsly-Chittenden Hall 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -290910,10 +591396,347 @@ "classnotes": "", "final_exam": "Sunday, December 17, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88122\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88122/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987336993217468, + 0.9988294243812561, + 0.9988992214202881, + 0.997711181640625, + 0.998875081539154, + 0.9988821148872375, + 0.9989181756973267, + 0.9988784193992615, + 0.9983707070350647, + 0.9987987279891968, + 0.9987614154815674, + 0.9988840222358704, + 0.9988892674446106, + 0.998894989490509, + 0.9988988637924194, + 0.9989058971405029, + 0.9988641738891602, + 0.998920202255249, + 0.998924195766449, + 0.9989107847213745, + 0.99891197681427, + 0.9989122152328491, + 0.9964891672134399, + 0.9989381432533264, + 0.9989281296730042, + 0.998292863368988, + 0.9989233613014221, + 0.9986610412597656, + 0.9988368153572083, + 0.9989339709281921, + 0.9988908171653748, + 0.9988044500350952, + 0.9989073276519775, + 0.9988841414451599, + 0.9904956817626953, + 0.9986951947212219, + 0.9986358284950256, + 0.9988773465156555, + 0.9989238381385803, + 0.9989262223243713, + 0.9886372685432434, + 0.9988590478897095 + ], + "sentiment_counts": { + "POSITIVE": 41, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9761904761904762, + "NEGATIVE": 0.023809523809523808 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9761904761904762 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9867270588874817, + 0.9986535310745239, + 0.9988663196563721, + 0.9989116191864014, + 0.9988403916358948, + 0.997931957244873, + 0.9988431930541992, + 0.9988688826560974, + 0.9976928234100342, + 0.9987874627113342, + 0.9988565444946289, + 0.998822033405304, + 0.9986225366592407, + 0.998573899269104, + 0.9989251494407654, + 0.99814772605896, + 0.998877227306366, + 0.9985949397087097, + 0.9988124370574951, + 0.9989299178123474, + 0.9989124536514282, + 0.9983547329902649, + 0.9987427592277527, + 0.9989377856254578, + 0.9989261031150818, + 0.9989060163497925, + 0.9983075857162476, + 0.9988855719566345, + 0.998660683631897, + 0.9988848567008972, + 0.9989207983016968, + 0.9955605268478394, + 0.9989387392997742, + 0.995101809501648, + 0.9989135265350342, + 0.9989338517189026, + 0.9988781809806824, + 0.998703122138977, + 0.9944803714752197, + 0.9986145496368408, + 0.9929161071777344 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 38 + }, + "sentiment_distribution": { + "NEGATIVE": 0.07317073170731707, + "POSITIVE": 0.926829268292683 + }, + "sentiment_overall": [ + "POSITIVE", + 0.926829268292683 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998340368270874, + 0.9988769888877869, + 0.9989193677902222, + 0.9989342093467712, + 0.9989159107208252, + 0.9863590598106384, + 0.9989112615585327, + 0.9989171028137207, + 0.9987984895706177, + 0.9989234805107117, + 0.9989328980445862, + 0.9984555244445801, + 0.998916745185852, + 0.9927777647972107, + 0.9986757636070251, + 0.9989181756973267, + 0.9989314675331116, + 0.9989306330680847, + 0.9987879395484924, + 0.9989381432533264, + 0.9989344477653503, + 0.9988827109336853, + 0.9989132881164551, + 0.998869001865387, + 0.9988380074501038, + 0.998893678188324, + 0.9963608384132385, + 0.9988961219787598, + 0.9989044666290283, + 0.9979197382926941, + 0.998938262462616, + 0.998927652835846, + 0.9979901313781738, + 0.9980168342590332, + 0.998867392539978, + 0.9989216327667236, + 0.9989210367202759, + 0.9986213445663452, + 0.998927891254425, + 0.9988067150115967, + 0.9947983026504517, + 0.9988901019096375, + 0.9987568855285645, + 0.9988664388656616, + 0.9989355206489563, + 0.9989367127418518, + 0.9989306330680847, + 0.9995005130767822, + 0.9989087581634521, + 0.9915728569030762, + 0.9981217980384827, + 0.998865008354187 + ], + "sentiment_counts": { + "POSITIVE": 48, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.9230769230769231, + "NEGATIVE": 0.07692307692307693 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9230769230769231 + ] + }, + "final_label": "POSITIVE", + "final_count": 127, + "final_proportion": 0.9407407407407408, + "final_counts": { + "POSITIVE": 127, + "NEGATIVE": 8 + }, + "final_distribution": { + "POSITIVE": 0.9407407407407408, + "NEGATIVE": 0.05925925925925926 + } + } }, { "season_code": "202303", @@ -290946,7 +591769,7 @@ "13:30", "14:20", "WLH 211 - William L. Harkness Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -290969,7 +591792,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -291002,7 +591853,7 @@ "14:30", "15:20", "WLH 211 - William L. Harkness Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -291025,7 +591876,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -291058,7 +591937,7 @@ "15:30", "16:20", "WLH 205 - William L. Harkness Hall 205", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -291081,7 +591960,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -291114,7 +592021,7 @@ "16:30", "17:20", "WLH 203 - William L. Harkness Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -291137,7 +592044,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -291170,7 +592105,7 @@ "19:00", "19:50", "HQ 213 - Humanities Quadrangle 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -291193,7 +592128,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -291226,7 +592189,7 @@ "20:00", "20:50", "HQ 213 - Humanities Quadrangle 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -291249,7 +592212,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -291282,7 +592273,7 @@ "19:00", "19:50", "HQ 313 - Humanities Quadrangle 313", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -291305,7 +592296,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -291338,7 +592357,7 @@ "20:00", "20:50", "HQ 313 - Humanities Quadrangle 313", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -291361,7 +592380,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -291394,7 +592441,7 @@ "13:30", "14:20", "WLH 203 - William L. Harkness Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -291417,7 +592464,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -291450,7 +592525,7 @@ "14:30", "15:20", "WLH 114 - William L. Harkness Hall 114", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -291473,7 +592548,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -291506,7 +592609,7 @@ "13:30", "14:20", "LC 206 - Linsly-Chittenden Hall 206", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -291529,7 +592632,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -291562,7 +592693,7 @@ "14:30", "15:20", "LC 211 - Linsly-Chittenden Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -291585,7 +592716,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -291631,7 +592790,7 @@ "15:30", "17:20", "HQ 209 - Humanities Quadrangle 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -291645,10 +592804,97 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88908\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88908/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988865256309509, + 0.9988441467285156, + 0.9987584352493286, + 0.9989197254180908 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989302754402161, + 0.998914361000061, + 0.9977319240570068 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988856911659241, + 0.9989079236984253, + 0.9989084005355835, + 0.9989058971405029 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 11 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -291694,7 +592940,7 @@ "15:30", "17:20", "HQ C03 - Humanities Quadrangle C03", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -291710,10 +592956,101 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89026\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89026/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988987445831299, + 0.9986571073532104, + 0.9933185577392578, + 0.9986230134963989 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989332556724548, + 0.9987208247184753, + 0.998921275138855 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9963036775588989, + 0.9982940554618835, + 0.9988642930984497, + 0.9975757002830505, + 0.9988969564437866, + 0.9988803267478943 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 13 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -291753,7 +593090,7 @@ "13:30", "15:20", "HQ 209 - Humanities Quadrangle 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -291774,10 +593111,133 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88580\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88580/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988952279090881, + 0.9987819790840149, + 0.9988018274307251, + 0.9988783001899719, + 0.9989162683486938, + 0.9987999200820923, + 0.9984064698219299, + 0.9988013505935669, + 0.9988089799880981 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9771090149879456, + 0.9987500905990601, + 0.9989207983016968, + 0.9953112006187439, + 0.9988996982574463, + 0.9975487589836121, + 0.9988985061645508, + 0.9981507658958435, + 0.998925507068634 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 7 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2222222222222222, + "POSITIVE": 0.7777777777777778 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7777777777777778 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998904824256897, + 0.9989363551139832, + 0.9988411068916321, + 0.9988229870796204, + 0.996119499206543, + 0.9988498687744141, + 0.9989210367202759, + 0.9989336133003235, + 0.9987632036209106, + 0.9989049434661865 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 26, + "final_proportion": 0.9285714285714286, + "final_counts": { + "POSITIVE": 26, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9285714285714286, + "NEGATIVE": 0.07142857142857142 + } + } }, { "season_code": "202303", @@ -291817,7 +593277,7 @@ "13:30", "15:20", "HQ 309 - Humanities Quadrangle 309", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -291831,10 +593291,101 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88598\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88598/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989068508148193, + 0.9984636306762695 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988297820091248, + 0.9989150762557983, + 0.9982605576515198, + 0.9974096417427063 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987319111824036, + 0.9988688826560974, + 0.9986447691917419, + 0.9989240765571594, + 0.9966188669204712, + 0.9989379048347473 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 0.9166666666666666, + "final_counts": { + "POSITIVE": 11, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + } + } }, { "season_code": "202303", @@ -291871,7 +593422,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -291914,7 +593493,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -291960,7 +593567,7 @@ "15:30", "17:20", "HQ C03 - Humanities Quadrangle C03", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -291972,10 +593579,101 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89026\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89026/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988987445831299, + 0.9986571073532104, + 0.9933185577392578, + 0.9986230134963989 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989332556724548, + 0.9987208247184753, + 0.998921275138855 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9963036775588989, + 0.9982940554618835, + 0.9988642930984497, + 0.9975757002830505, + 0.9988969564437866, + 0.9988803267478943 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 13 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -292021,7 +593719,7 @@ "15:30", "17:20", "HQ 209 - Humanities Quadrangle 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -292033,10 +593731,97 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88908\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88908/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988865256309509, + 0.9988441467285156, + 0.9987584352493286, + 0.9989197254180908 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989302754402161, + 0.998914361000061, + 0.9977319240570068 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988856911659241, + 0.9989079236984253, + 0.9989084005355835, + 0.9989058971405029 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 11 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -292073,7 +593858,7 @@ "9:25", "10:15", "HQ 307 - Humanities Quadrangle 307", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Tuesday": [ @@ -292081,7 +593866,7 @@ "9:25", "10:15", "HQ 307 - Humanities Quadrangle 307", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -292089,7 +593874,7 @@ "9:25", "10:15", "HQ 307 - Humanities Quadrangle 307", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -292097,7 +593882,7 @@ "9:25", "10:15", "HQ 307 - Humanities Quadrangle 307", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Friday": [ @@ -292105,7 +593890,7 @@ "9:25", "10:15", "HQ 307 - Humanities Quadrangle 307", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -292119,10 +593904,83 @@ "classnotes": "", "final_exam": "Friday, December 15, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88583\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88583/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9922354817390442 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 0 + }, + "sentiment_distribution": { + "NEGATIVE": 1.0, + "POSITIVE": 0.0 + }, + "sentiment_overall": [ + "NEGATIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989074468612671 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989237189292908 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 2, + "final_proportion": 0.6666666666666666, + "final_counts": { + "NEGATIVE": 1, + "POSITIVE": 2 + }, + "final_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + } + } }, { "season_code": "202303", @@ -292159,7 +594017,7 @@ "10:30", "11:20", "HQ 307 - Humanities Quadrangle 307", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Tuesday": [ @@ -292167,7 +594025,7 @@ "10:30", "11:20", "HQ 307 - Humanities Quadrangle 307", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -292175,7 +594033,7 @@ "10:30", "11:20", "HQ 307 - Humanities Quadrangle 307", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -292183,7 +594041,7 @@ "10:30", "11:20", "HQ 307 - Humanities Quadrangle 307", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Friday": [ @@ -292191,7 +594049,7 @@ "10:30", "11:20", "HQ 307 - Humanities Quadrangle 307", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -292205,10 +594063,87 @@ "classnotes": "", "final_exam": "Friday, December 15, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88585\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88585/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9977092742919922, + 0.9982890486717224 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989027976989746, + 0.9976041913032532 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988079071044922, + 0.9987340569496155 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 6 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -292247,7 +594182,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -292286,7 +594249,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -292323,7 +594314,7 @@ "9:25", "11:20", "HQ 317 - Humanities Quadrangle 317", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -292331,7 +594322,7 @@ "9:25", "11:20", "HQ 317 - Humanities Quadrangle 317", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Friday": [ @@ -292339,7 +594330,7 @@ "9:25", "11:20", "HQ 317 - Humanities Quadrangle 317", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Tuesday": [ @@ -292347,7 +594338,7 @@ "10:30", "11:20", "HQ 317 - Humanities Quadrangle 317", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -292355,7 +594346,7 @@ "10:30", "11:20", "HQ 317 - Humanities Quadrangle 317", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -292370,10 +594361,38 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88591\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88591/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -292412,7 +594431,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -292449,7 +594496,7 @@ "10:30", "11:20", "HQ 129 - Humanities Quadrangle 129", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Tuesday": [ @@ -292457,7 +594504,7 @@ "10:30", "11:20", "HQ 129 - Humanities Quadrangle 129", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -292465,7 +594512,7 @@ "10:30", "11:20", "HQ 129 - Humanities Quadrangle 129", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -292473,7 +594520,7 @@ "10:30", "11:20", "HQ 129 - Humanities Quadrangle 129", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Friday": [ @@ -292481,7 +594528,7 @@ "10:30", "11:20", "HQ 129 - Humanities Quadrangle 129", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -292495,10 +594542,97 @@ "classnotes": "", "final_exam": "Friday, December 15, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89345\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89345/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983356595039368, + 0.998801589012146, + 0.9988657236099243, + 0.9987745881080627 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989290833473206, + 0.9989207983016968 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998939573764801, + 0.9989357590675354, + 0.9982940554618835, + 0.9989290833473206, + 0.998932421207428 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 11 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -292535,7 +594669,7 @@ "11:35", "12:50", "HQ 309 - Humanities Quadrangle 309", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -292543,7 +594677,7 @@ "11:35", "12:50", "HQ 309 - Humanities Quadrangle 309", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Friday": [ @@ -292551,7 +594685,7 @@ "11:35", "12:50", "HQ 309 - Humanities Quadrangle 309", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -292565,10 +594699,87 @@ "classnotes": "", "final_exam": "Sunday, December 17, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88595\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88595/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998727023601532, + 0.9988755583763123 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998923122882843, + 0.9988928437232971 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988106489181519, + 0.9988154172897339 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 6 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -292604,10 +594815,38 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89632\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89632/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -292644,7 +594883,7 @@ "11:35", "12:25", "BASSLB L71 - Bass Library L71", - "https:\/\/map.yale.edu\/?id=1910#!m\/564574" + "https://map.yale.edu/?id=1910#!m/564574" ] ], "Wednesday": [ @@ -292652,7 +594891,7 @@ "11:35", "12:25", "BASSLB L71 - Bass Library L71", - "https:\/\/map.yale.edu\/?id=1910#!m\/564574" + "https://map.yale.edu/?id=1910#!m/564574" ] ], "Friday": [ @@ -292660,7 +594899,7 @@ "11:35", "12:25", "BASSLB L71 - Bass Library L71", - "https:\/\/map.yale.edu\/?id=1910#!m\/564574" + "https://map.yale.edu/?id=1910#!m/564574" ] ] }, @@ -292674,10 +594913,38 @@ "classnotes": "", "final_exam": "Friday, December 15, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88596\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88596/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -292714,7 +594981,7 @@ "14:30", "15:45", "WLH 001 - William L. Harkness Hall 001", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -292722,7 +594989,7 @@ "14:30", "15:45", "WLH 001 - William L. Harkness Hall 001", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -292738,10 +595005,101 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89633\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89633/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988431930541992, + 0.9989290833473206, + 0.9987167119979858, + 0.9988406300544739 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989066123962402, + 0.9989172220230103, + 0.9989032745361328, + 0.9904990792274475 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988372921943665, + 0.9981436729431152, + 0.998930037021637, + 0.9984222650527954, + 0.9988977909088135 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 13 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -292780,7 +595138,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -292820,7 +595206,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -292863,7 +595277,7 @@ "13:00", "14:15", "HQ C11 - Humanities Quadrangle C11", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -292871,7 +595285,7 @@ "13:00", "14:15", "HQ C11 - Humanities Quadrangle C11", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -292885,10 +595299,123 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89006\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89006/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988124370574951, + 0.9988865256309509, + 0.9989105463027954, + 0.9988695979118347, + 0.9984996318817139, + 0.9989117383956909, + 0.9988561868667603 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989283680915833, + 0.9989339709281921, + 0.9989217519760132, + 0.9989386200904846, + 0.9989239573478699, + 0.9989343285560608, + 0.9989400506019592 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988386034965515, + 0.998931348323822, + 0.9989206790924072, + 0.99875807762146, + 0.9989272952079773, + 0.9989187717437744, + 0.9989375472068787, + 0.9989213943481445, + 0.9988805651664734, + 0.9989261031150818 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 24, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 24 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -292926,10 +595453,38 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88939\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88939/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -292970,7 +595525,7 @@ "15:30", "17:20", "HQ 113 - Humanities Quadrangle 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -292986,10 +595541,93 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89137\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89137/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989191293716431, + 0.9986900687217712, + 0.9948129653930664 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988294243812561, + 0.9984099864959717, + 0.9988916516304016 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987150430679321, + 0.9987962245941162, + 0.9988998174667358 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 9 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -293035,7 +595673,7 @@ "15:30", "17:20", "HQ 209 - Humanities Quadrangle 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -293049,10 +595687,97 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88908\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88908/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988865256309509, + 0.9988441467285156, + 0.9987584352493286, + 0.9989197254180908 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989302754402161, + 0.998914361000061, + 0.9977319240570068 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988856911659241, + 0.9989079236984253, + 0.9989084005355835, + 0.9989058971405029 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 11 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -293098,7 +595823,7 @@ "15:30", "17:20", "HQ C03 - Humanities Quadrangle C03", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -293114,10 +595839,101 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89026\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89026/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988987445831299, + 0.9986571073532104, + 0.9933185577392578, + 0.9986230134963989 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989332556724548, + 0.9987208247184753, + 0.998921275138855 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9963036775588989, + 0.9982940554618835, + 0.9988642930984497, + 0.9975757002830505, + 0.9988969564437866, + 0.9988803267478943 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 13 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -293157,7 +595973,7 @@ "13:30", "15:20", "HQ 209 - Humanities Quadrangle 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -293178,10 +595994,133 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88580\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88580/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988952279090881, + 0.9987819790840149, + 0.9988018274307251, + 0.9988783001899719, + 0.9989162683486938, + 0.9987999200820923, + 0.9984064698219299, + 0.9988013505935669, + 0.9988089799880981 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9771090149879456, + 0.9987500905990601, + 0.9989207983016968, + 0.9953112006187439, + 0.9988996982574463, + 0.9975487589836121, + 0.9988985061645508, + 0.9981507658958435, + 0.998925507068634 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 7 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2222222222222222, + "POSITIVE": 0.7777777777777778 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7777777777777778 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998904824256897, + 0.9989363551139832, + 0.9988411068916321, + 0.9988229870796204, + 0.996119499206543, + 0.9988498687744141, + 0.9989210367202759, + 0.9989336133003235, + 0.9987632036209106, + 0.9989049434661865 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 26, + "final_proportion": 0.9285714285714286, + "final_counts": { + "POSITIVE": 26, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9285714285714286, + "NEGATIVE": 0.07142857142857142 + } + } }, { "season_code": "202303", @@ -293221,7 +596160,7 @@ "13:30", "15:20", "HQ 309 - Humanities Quadrangle 309", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -293235,10 +596174,101 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88598\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88598/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989068508148193, + 0.9984636306762695 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988297820091248, + 0.9989150762557983, + 0.9982605576515198, + 0.9974096417427063 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987319111824036, + 0.9988688826560974, + 0.9986447691917419, + 0.9989240765571594, + 0.9966188669204712, + 0.9989379048347473 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 0.9166666666666666, + "final_counts": { + "POSITIVE": 11, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + } + } }, { "season_code": "202303", @@ -293281,7 +596311,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -293318,7 +596376,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -293358,10 +596444,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90574\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90574/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -293398,7 +596512,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -293433,10 +596575,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88600\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88600/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -293473,7 +596643,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -293510,7 +596708,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -293556,7 +596782,7 @@ "15:30", "17:20", "HQ C03 - Humanities Quadrangle C03", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -293568,10 +596794,101 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89026\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89026/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988987445831299, + 0.9986571073532104, + 0.9933185577392578, + 0.9986230134963989 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989332556724548, + 0.9987208247184753, + 0.998921275138855 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9963036775588989, + 0.9982940554618835, + 0.9988642930984497, + 0.9975757002830505, + 0.9988969564437866, + 0.9988803267478943 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 13 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -293612,7 +596929,7 @@ "15:30", "17:20", "HQ 113 - Humanities Quadrangle 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -293628,10 +596945,93 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89137\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89137/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989191293716431, + 0.9986900687217712, + 0.9948129653930664 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988294243812561, + 0.9984099864959717, + 0.9988916516304016 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987150430679321, + 0.9987962245941162, + 0.9988998174667358 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 9 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -293668,7 +597068,7 @@ "13:00", "14:15", "HQ 309 - Humanities Quadrangle 309", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -293676,7 +597076,7 @@ "13:00", "14:15", "HQ 309 - Humanities Quadrangle 309", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -293688,10 +597088,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90757\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90757/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -293737,7 +597165,7 @@ "15:30", "17:20", "HQ 209 - Humanities Quadrangle 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -293749,10 +597177,97 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88908\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88908/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988865256309509, + 0.9988441467285156, + 0.9987584352493286, + 0.9989197254180908 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989302754402161, + 0.998914361000061, + 0.9977319240570068 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988856911659241, + 0.9989079236984253, + 0.9989084005355835, + 0.9989058971405029 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 11 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -293795,7 +597310,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -293833,7 +597376,7 @@ "13:30", "15:20", "HQ 213 - Humanities Quadrangle 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -293845,10 +597388,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88604\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88604/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -293886,7 +597457,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -293926,7 +597525,7 @@ "13:00", "14:15", "YSB MARSH - Yale Science Building MARSH", - "https:\/\/map.yale.edu\/?id=1910#!m\/563700" + "https://map.yale.edu/?id=1910#!m/563700" ] ], "Thursday": [ @@ -293934,7 +597533,7 @@ "13:00", "14:15", "YSB MARSH - Yale Science Building MARSH", - "https:\/\/map.yale.edu\/?id=1910#!m\/563700" + "https://map.yale.edu/?id=1910#!m/563700" ] ] }, @@ -293950,10 +597549,167 @@ "classnotes": "This course may not be taken after S&DS 100.", "final_exam": "Saturday, December 16, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88609\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88609/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986288547515869, + 0.9988621473312378, + 0.9988273978233337, + 0.9988383650779724, + 0.9988778233528137, + 0.9988755583763123, + 0.9976568222045898, + 0.9970819354057312, + 0.9884689450263977, + 0.9986579418182373, + 0.9984567165374756 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989280104637146, + 0.9988529682159424, + 0.9988390803337097, + 0.9994823932647705, + 0.9989215135574341, + 0.9995023012161255, + 0.9987731575965881, + 0.9988569021224976, + 0.9988815188407898, + 0.9971064925193787, + 0.9995018243789673, + 0.9994927644729614, + 0.998767614364624, + 0.9987525939941406, + 0.9995124340057373, + 0.9986024498939514, + 0.9879831075668335 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 6 + }, + "sentiment_distribution": { + "POSITIVE": 0.6470588235294118, + "NEGATIVE": 0.35294117647058826 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6470588235294118 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989308714866638, + 0.9988073110580444, + 0.9985104203224182, + 0.9987102746963501, + 0.9995104074478149, + 0.998910665512085, + 0.996212363243103, + 0.9987634420394897, + 0.9988951086997986, + 0.9988705515861511, + 0.9988967180252075, + 0.9982576966285706, + 0.9988644123077393, + 0.9870138764381409, + 0.9989023208618164, + 0.9995055198669434, + 0.9988780617713928 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 5 + }, + "sentiment_distribution": { + "POSITIVE": 0.7058823529411765, + "NEGATIVE": 0.29411764705882354 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7058823529411765 + ] + }, + "final_label": "POSITIVE", + "final_count": 34, + "final_proportion": 0.7555555555555555, + "final_counts": { + "POSITIVE": 34, + "NEGATIVE": 11 + }, + "final_distribution": { + "POSITIVE": 0.7555555555555555, + "NEGATIVE": 0.24444444444444444 + } + } }, { "season_code": "202303", @@ -294016,10 +597772,219 @@ "classnotes": "This course may not be taken after S&DS 100.", "final_exam": "Saturday, December 16, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88609\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88609/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982038736343384, + 0.9988753199577332, + 0.9989326596260071, + 0.9983347058296204, + 0.9989217519760132, + 0.9973428845405579, + 0.9987945556640625, + 0.9986422657966614, + 0.9903171062469482, + 0.9991814494132996, + 0.7013508677482605, + 0.9988300204277039, + 0.9984657764434814, + 0.9984048008918762, + 0.9971566200256348, + 0.9985288381576538, + 0.9969819188117981, + 0.9935830235481262, + 0.9989243149757385, + 0.9987601041793823, + 0.998823344707489 + ], + "sentiment_counts": { + "POSITIVE": 18, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989258646965027, + 0.9982361793518066, + 0.9987685084342957, + 0.9982534050941467, + 0.9988555908203125, + 0.9986259937286377, + 0.9976046085357666, + 0.9979829788208008, + 0.9988152980804443, + 0.9987717270851135, + 0.9995063543319702, + 0.9799211621284485, + 0.9988906979560852, + 0.9988887906074524, + 0.9988380074501038, + 0.998790442943573, + 0.9973036050796509, + 0.9985931515693665, + 0.9990187883377075, + 0.9984488487243652, + 0.9965356588363647, + 0.9988540410995483, + 0.9988490343093872, + 0.9948628544807434, + 0.9988962411880493, + 0.9988514184951782 + ], + "sentiment_counts": { + "POSITIVE": 22, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.8461538461538461, + "NEGATIVE": 0.15384615384615385 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8461538461538461 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.997117280960083, + 0.9987653493881226, + 0.9988307356834412, + 0.9784395098686218, + 0.9985215067863464, + 0.9989135265350342, + 0.998364269733429, + 0.9980669617652893, + 0.9987767338752747, + 0.9988942742347717, + 0.9994964599609375, + 0.9818282723426819, + 0.9988394379615784, + 0.9987963438034058, + 0.9988642930984497, + 0.9995094537734985, + 0.9935688972473145, + 0.9942686557769775, + 0.998747706413269, + 0.9983811378479004, + 0.9988715052604675, + 0.99611496925354, + 0.9989038705825806, + 0.9989184141159058 + ], + "sentiment_counts": { + "POSITIVE": 21, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "final_label": "POSITIVE", + "final_count": 61, + "final_proportion": 0.8591549295774648, + "final_counts": { + "POSITIVE": 61, + "NEGATIVE": 10 + }, + "final_distribution": { + "POSITIVE": 0.8591549295774648, + "NEGATIVE": 0.14084507042253522 + } + } }, { "season_code": "202303", @@ -294083,10 +598048,259 @@ "classnotes": "This course may not be taken after S&DS 100.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88609\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88609/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9965184926986694, + 0.9988641738891602, + 0.998626708984375, + 0.9974405765533447, + 0.9983785152435303, + 0.9982033967971802, + 0.9893950819969177, + 0.9987242817878723, + 0.9988920092582703, + 0.9977020621299744, + 0.9987887740135193, + 0.9988126754760742, + 0.9789929986000061, + 0.9984145164489746, + 0.9965564012527466, + 0.9265551567077637, + 0.9982753992080688, + 0.9988068342208862, + 0.9986118078231812, + 0.9988699555397034, + 0.9894165396690369, + 0.9983934760093689, + 0.998757004737854, + 0.998852014541626, + 0.9239913821220398, + 0.9903402924537659, + 0.997925877571106, + 0.9983736276626587 + ], + "sentiment_counts": { + "POSITIVE": 25, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.8928571428571429, + "NEGATIVE": 0.10714285714285714 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8928571428571429 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988316893577576, + 0.9988756775856018, + 0.9988600015640259, + 0.9989344477653503, + 0.9988577365875244, + 0.6327666640281677, + 0.9988191723823547, + 0.9988806843757629, + 0.9988899827003479, + 0.9995132684707642, + 0.9986501336097717, + 0.9994854927062988, + 0.9988833069801331, + 0.9976212382316589, + 0.9987550973892212, + 0.9962582588195801, + 0.9986135959625244, + 0.998928964138031, + 0.9902860522270203, + 0.9986754059791565, + 0.998808741569519, + 0.9988585710525513, + 0.9977453351020813, + 0.9988499879837036, + 0.9989486336708069, + 0.9988155364990234, + 0.996519923210144, + 0.9988166093826294, + 0.9986876845359802, + 0.9988042116165161 + ], + "sentiment_counts": { + "POSITIVE": 25, + "NEGATIVE": 5 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994854927062988, + 0.9988893866539001, + 0.9989362359046936, + 0.9988920092582703, + 0.9962278604507446, + 0.9978834986686707, + 0.9993851184844971, + 0.9981734752655029, + 0.9976136684417725, + 0.9987518787384033, + 0.9987366795539856, + 0.9989364743232727, + 0.9968872666358948, + 0.9988961219787598, + 0.9916382431983948, + 0.997117280960083, + 0.9965593218803406, + 0.9988529682159424, + 0.9988656044006348, + 0.9980908036231995, + 0.9986631870269775, + 0.9981922507286072, + 0.9983371496200562, + 0.9989218711853027, + 0.9988999366760254, + 0.996141254901886, + 0.9948018789291382, + 0.998810887336731, + 0.9986447691917419, + 0.9988296627998352, + 0.9986739158630371, + 0.9982592463493347, + 0.9987794756889343 + ], + "sentiment_counts": { + "NEGATIVE": 4, + "POSITIVE": 29 + }, + "sentiment_distribution": { + "NEGATIVE": 0.12121212121212122, + "POSITIVE": 0.8787878787878788 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8787878787878788 + ] + }, + "final_label": "POSITIVE", + "final_count": 79, + "final_proportion": 0.8681318681318682, + "final_counts": { + "POSITIVE": 79, + "NEGATIVE": 12 + }, + "final_distribution": { + "POSITIVE": 0.8681318681318682, + "NEGATIVE": 0.13186813186813187 + } + } }, { "season_code": "202303", @@ -294152,10 +598366,103 @@ "classnotes": "This course may not be taken after S&DS 100.", "final_exam": "Saturday, December 16, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88611\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88611/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987828135490417, + 0.9989155530929565, + 0.9987574815750122 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988850951194763, + 0.9988818764686584, + 0.9989135265350342, + 0.9986482262611389 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9995099306106567, + 0.999498724937439, + 0.9989104270935059, + 0.9989261031150818, + 0.9986746311187744, + 0.9976525902748108 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 4 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 0.8461538461538461, + "final_counts": { + "POSITIVE": 11, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8461538461538461, + "NEGATIVE": 0.15384615384615385 + } + } }, { "season_code": "202303", @@ -294220,10 +598527,149 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88613\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88613/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986132383346558, + 0.998885452747345, + 0.9987114667892456, + 0.9987592697143555, + 0.9962511658668518, + 0.9987412095069885, + 0.9971856474876404, + 0.9924337863922119, + 0.9944804906845093, + 0.9967458248138428, + 0.9965477585792542 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9979617595672607, + 0.9989315867424011, + 0.9989073276519775, + 0.9988241791725159, + 0.9989117383956909, + 0.9988969564437866, + 0.9982141256332397, + 0.9978468418121338, + 0.9974396228790283, + 0.9965639710426331, + 0.9988495111465454, + 0.9891001582145691 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987006187438965, + 0.9989013671875, + 0.9989294409751892, + 0.9987911581993103, + 0.998829185962677, + 0.9982187151908875, + 0.998754620552063, + 0.9994924068450928, + 0.9988082647323608, + 0.9985594153404236, + 0.9984001517295837, + 0.9988800883293152, + 0.9986940026283264 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9230769230769231, + "NEGATIVE": 0.07692307692307693 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9230769230769231 + ] + }, + "final_label": "POSITIVE", + "final_count": 33, + "final_proportion": 0.9166666666666666, + "final_counts": { + "POSITIVE": 33, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + } + } }, { "season_code": "202303", @@ -294280,10 +598726,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88609\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88609/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -294340,10 +598814,97 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89028\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89028/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9895228743553162, + 0.9949281215667725, + 0.9983980059623718, + 0.9988943934440613 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.25, + "POSITIVE": 0.75 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981743097305298, + 0.998913049697876, + 0.9988369345664978 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.992767333984375, + 0.9989381432533264, + 0.9988239407539368 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 8, + "final_proportion": 0.8, + "final_counts": { + "NEGATIVE": 2, + "POSITIVE": 8 + }, + "final_distribution": { + "NEGATIVE": 0.2, + "POSITIVE": 0.8 + } + } }, { "season_code": "202303", @@ -294383,7 +598944,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -294424,7 +599013,7 @@ "13:30", "15:20", "GR109 ROSENFELD - 109 Grove Street ROSENFELD", - "https:\/\/map.yale.edu\/?id=1910#!m\/560109" + "https://map.yale.edu/?id=1910#!m/560109" ] ] }, @@ -294443,10 +599032,219 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88615\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88615/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982588887214661, + 0.9980531930923462, + 0.9963216781616211, + 0.9968819618225098, + 0.9987257122993469, + 0.9882138967514038, + 0.9988465309143066, + 0.996353030204773, + 0.99783855676651, + 0.9987314343452454, + 0.9986346364021301, + 0.9984899759292603, + 0.9978922009468079, + 0.9987033605575562, + 0.9930590391159058, + 0.9988428354263306, + 0.9987905621528625, + 0.9976913928985596, + 0.998887836933136, + 0.9987137317657471, + 0.9967828989028931, + 0.998808741569519, + 0.9988449811935425, + 0.9975696206092834 + ], + "sentiment_counts": { + "POSITIVE": 23, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9583333333333334, + "NEGATIVE": 0.041666666666666664 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9583333333333334 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982611536979675, + 0.998829185962677, + 0.9988687634468079, + 0.9974701404571533, + 0.9989342093467712, + 0.9954180717468262, + 0.9919736385345459, + 0.9970499277114868, + 0.9988986253738403, + 0.9988359808921814, + 0.998904824256897, + 0.9994970560073853, + 0.9984412789344788, + 0.9932231903076172, + 0.998506486415863, + 0.9987389445304871, + 0.9982746839523315, + 0.9994663596153259, + 0.9988964796066284, + 0.9935163259506226, + 0.9987803101539612 + ], + "sentiment_counts": { + "POSITIVE": 14, + "NEGATIVE": 7 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9906851649284363, + 0.9983372688293457, + 0.9988584518432617, + 0.9989295601844788, + 0.998769223690033, + 0.9989234805107117, + 0.9988842606544495, + 0.9989142417907715, + 0.9962432384490967, + 0.9984258413314819, + 0.9988288283348083, + 0.998917818069458, + 0.9988903403282166, + 0.9987150430679321, + 0.9988003969192505, + 0.9951748251914978, + 0.9975628852844238, + 0.998890221118927, + 0.9986867308616638, + 0.9980649352073669, + 0.9988775849342346, + 0.9832240343093872, + 0.9987377524375916, + 0.9984399676322937, + 0.9977144002914429, + 0.9988495111465454 + ], + "sentiment_counts": { + "POSITIVE": 22, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.8461538461538461, + "NEGATIVE": 0.15384615384615385 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8461538461538461 + ] + }, + "final_label": "POSITIVE", + "final_count": 59, + "final_proportion": 0.8309859154929577, + "final_counts": { + "POSITIVE": 59, + "NEGATIVE": 12 + }, + "final_distribution": { + "POSITIVE": 0.8309859154929577, + "NEGATIVE": 0.16901408450704225 + } + } }, { "season_code": "202303", @@ -294484,7 +599282,7 @@ "13:30", "15:20", "WTS A32 - Watson Center 60 Sachem Street A32", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -294500,10 +599298,87 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90438\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90438/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.997794508934021, + 0.9988640546798706 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988667964935303, + 0.9989245533943176 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988082647323608, + 0.9988229870796204 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 6 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -294543,7 +599418,7 @@ "9:00", "10:15", "ML 211 - Mason Laboratory 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ], "Thursday": [ @@ -294551,7 +599426,7 @@ "9:00", "10:15", "ML 211 - Mason Laboratory 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ] }, @@ -294570,10 +599445,257 @@ "classnotes": "", "final_exam": "Saturday, December 16, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88618\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88618/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985331296920776, + 0.9907186627388, + 0.9820322394371033, + 0.9986231327056885, + 0.9945555925369263, + 0.9985878467559814, + 0.9977357387542725, + 0.9986733198165894, + 0.996283233165741, + 0.9985755681991577, + 0.9987128973007202, + 0.9986612796783447, + 0.998884379863739, + 0.9981232285499573, + 0.996711254119873, + 0.9988638162612915, + 0.9989281296730042, + 0.9950729012489319, + 0.9981645941734314, + 0.9983649849891663, + 0.9837383031845093, + 0.9952929615974426, + 0.9987383484840393, + 0.9981551766395569, + 0.998204231262207, + 0.9933744072914124, + 0.9988514184951782, + 0.9986935257911682, + 0.9985578656196594, + 0.9771918654441833 + ], + "sentiment_counts": { + "POSITIVE": 27, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988608360290527, + 0.9989062547683716, + 0.9979388117790222, + 0.9951927661895752, + 0.98073810338974, + 0.9987216591835022, + 0.9988089799880981, + 0.9985629916191101, + 0.9551969170570374, + 0.9786998629570007, + 0.9988786578178406, + 0.9989173412322998, + 0.9988753199577332, + 0.9989075660705566, + 0.9989362359046936, + 0.9988616704940796, + 0.9924127459526062, + 0.998771607875824, + 0.9988873600959778, + 0.9988627433776855, + 0.9988710284233093, + 0.9934489130973816, + 0.9988357424736023, + 0.9988977909088135, + 0.9994996786117554, + 0.9988933205604553, + 0.9989327788352966, + 0.9988547563552856, + 0.9985142350196838, + 0.9987738728523254, + 0.9988271594047546 + ], + "sentiment_counts": { + "POSITIVE": 28, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.9032258064516129, + "NEGATIVE": 0.0967741935483871 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9032258064516129 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987911581993103, + 0.997922956943512, + 0.9921607375144958, + 0.9989379048347473, + 0.9988821148872375, + 0.9986459612846375, + 0.9953246116638184, + 0.9988641738891602, + 0.9988960027694702, + 0.9989080429077148, + 0.9974521994590759, + 0.9988909363746643, + 0.998637855052948, + 0.9988850951194763, + 0.9979872703552246, + 0.9981922507286072, + 0.9987844824790955, + 0.9976784586906433, + 0.9988729357719421, + 0.9988334774971008, + 0.9953234791755676, + 0.9988834261894226, + 0.9981405735015869, + 0.9919413328170776, + 0.9988806843757629, + 0.9979788661003113, + 0.9988940358161926, + 0.9988906979560852, + 0.9988608360290527 + ], + "sentiment_counts": { + "POSITIVE": 27, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.9310344827586207, + "NEGATIVE": 0.06896551724137931 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9310344827586207 + ] + }, + "final_label": "POSITIVE", + "final_count": 82, + "final_proportion": 0.9111111111111111, + "final_counts": { + "POSITIVE": 82, + "NEGATIVE": 8 + }, + "final_distribution": { + "POSITIVE": 0.9111111111111111, + "NEGATIVE": 0.08888888888888889 + } + } }, { "season_code": "202303", @@ -294611,7 +599733,7 @@ "13:00", "14:15", "DL 220 - Dunham Laboratory 220", - "https:\/\/map.yale.edu\/?id=1910#!m\/560005" + "https://map.yale.edu/?id=1910#!m/560005" ] ], "Thursday": [ @@ -294619,7 +599741,7 @@ "13:00", "14:15", "DL 220 - Dunham Laboratory 220", - "https:\/\/map.yale.edu\/?id=1910#!m\/560005" + "https://map.yale.edu/?id=1910#!m/560005" ] ] }, @@ -294638,10 +599760,349 @@ "classnotes": "", "final_exam": "Saturday, December 16, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88620\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88620/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.994253933429718, + 0.9935042262077332, + 0.9988669157028198, + 0.9982434511184692, + 0.9984822869300842, + 0.9973230957984924, + 0.9987408518791199, + 0.995707631111145, + 0.9985138773918152, + 0.9986228942871094, + 0.9984612464904785, + 0.9979000091552734, + 0.99760901927948, + 0.9843049645423889, + 0.9971551895141602, + 0.9989345669746399, + 0.9946566820144653, + 0.9989393353462219, + 0.9987781643867493, + 0.9987443685531616, + 0.9969135522842407, + 0.8329328298568726, + 0.9987103939056396, + 0.9975093603134155, + 0.9843973517417908, + 0.9985105395317078, + 0.9988189339637756, + 0.9962149262428284, + 0.9914959669113159, + 0.9989233613014221, + 0.9878613948822021, + 0.9942552447319031, + 0.9976440072059631, + 0.9958831071853638, + 0.989538848400116, + 0.9984252452850342, + 0.9988880753517151, + 0.9939390420913696, + 0.9987101554870605, + 0.9948529601097107, + 0.9984887838363647, + 0.9978673458099365, + 0.9961323738098145, + 0.9962149262428284, + 0.9960975050926208 + ], + "sentiment_counts": { + "POSITIVE": 40, + "NEGATIVE": 5 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988744854927063, + 0.9953314661979675, + 0.9986635446548462, + 0.9943062663078308, + 0.9987419247627258, + 0.9970589876174927, + 0.9989182949066162, + 0.9987220168113708, + 0.9989398121833801, + 0.998783528804779, + 0.9989142417907715, + 0.9989109039306641, + 0.9988729357719421, + 0.9988791346549988, + 0.9988498687744141, + 0.998893678188324, + 0.998859167098999, + 0.998884379863739, + 0.9989043474197388, + 0.9933512806892395, + 0.9962418079376221, + 0.9988892674446106, + 0.9988445043563843, + 0.9989243149757385, + 0.9878765344619751, + 0.9985647797584534, + 0.9994397759437561, + 0.9988924860954285, + 0.9987667798995972, + 0.9988265633583069, + 0.9976440072059631, + 0.9987874627113342, + 0.9974529147148132, + 0.9794034361839294, + 0.9965140223503113, + 0.9988810420036316, + 0.9985308647155762, + 0.9989161491394043, + 0.9989097118377686, + 0.9963781237602234, + 0.9958989024162292, + 0.9988297820091248, + 0.9979494214057922, + 0.99869304895401 + ], + "sentiment_counts": { + "POSITIVE": 40, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9090909090909091 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988752007484436, + 0.9960620999336243, + 0.9967104196548462, + 0.998914361000061, + 0.994976282119751, + 0.9982163310050964, + 0.9987047910690308, + 0.9986866116523743, + 0.999451220035553, + 0.9989012479782104, + 0.9912023544311523, + 0.9989185333251953, + 0.998835027217865, + 0.9988939166069031, + 0.9989150762557983, + 0.9988836646080017, + 0.9988362193107605, + 0.9988903403282166, + 0.9984904527664185, + 0.998939573764801, + 0.9989299178123474, + 0.9988917708396912, + 0.9988719820976257, + 0.9963487386703491, + 0.9974592328071594, + 0.9982719421386719, + 0.9982951283454895, + 0.9987791180610657, + 0.9985480904579163, + 0.9927943348884583, + 0.9994926452636719, + 0.9986269474029541, + 0.9988105297088623, + 0.9987528324127197, + 0.9976440072059631, + 0.999498724937439, + 0.9995070695877075, + 0.9783713817596436, + 0.998907208442688, + 0.9987472295761108, + 0.9988149404525757, + 0.9994897842407227, + 0.9986976385116577, + 0.9995071887969971, + 0.998829185962677, + 0.9988131523132324, + 0.9976363182067871 + ], + "sentiment_counts": { + "POSITIVE": 37, + "NEGATIVE": 10 + }, + "sentiment_distribution": { + "POSITIVE": 0.7872340425531915, + "NEGATIVE": 0.2127659574468085 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7872340425531915 + ] + }, + "final_label": "POSITIVE", + "final_count": 117, + "final_proportion": 0.8602941176470589, + "final_counts": { + "POSITIVE": 117, + "NEGATIVE": 19 + }, + "final_distribution": { + "POSITIVE": 0.8602941176470589, + "NEGATIVE": 0.13970588235294118 + } + } }, { "season_code": "202303", @@ -294679,7 +600140,7 @@ "14:30", "15:45", "DL 220 - Dunham Laboratory 220", - "https:\/\/map.yale.edu\/?id=1910#!m\/560005" + "https://map.yale.edu/?id=1910#!m/560005" ] ], "Wednesday": [ @@ -294687,7 +600148,7 @@ "14:30", "15:45", "DL 220 - Dunham Laboratory 220", - "https:\/\/map.yale.edu\/?id=1910#!m\/560005" + "https://map.yale.edu/?id=1910#!m/560005" ] ] }, @@ -294701,10 +600162,181 @@ "classnotes": "", "final_exam": "Sunday, December 17, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88621\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88621/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9945480227470398, + 0.9987022876739502, + 0.9971545934677124, + 0.997988224029541, + 0.9988027811050415, + 0.9984366297721863, + 0.9793598651885986, + 0.9987831711769104, + 0.9987379908561707, + 0.9971515536308289, + 0.9989359974861145, + 0.9626820087432861, + 0.9989087581634521, + 0.9986016154289246, + 0.9984103441238403, + 0.9987899661064148 + ], + "sentiment_counts": { + "POSITIVE": 14, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988370537757874, + 0.992641270160675, + 0.994768500328064, + 0.9988322854042053, + 0.9985905289649963, + 0.998927652835846, + 0.9988600015640259, + 0.9987965822219849, + 0.9988634586334229, + 0.998762845993042, + 0.9988716244697571, + 0.99896240234375, + 0.9988480806350708, + 0.9988573789596558, + 0.9971672892570496, + 0.990942656993866, + 0.9988786578178406 + ], + "sentiment_counts": { + "POSITIVE": 15, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8823529411764706, + "NEGATIVE": 0.11764705882352941 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8823529411764706 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988755583763123, + 0.9988285899162292, + 0.9879356622695923, + 0.9989025592803955, + 0.9965667724609375, + 0.998822033405304, + 0.9989030361175537, + 0.9976992011070251, + 0.9989359974861145, + 0.993850588798523, + 0.9989129304885864, + 0.9983252882957458, + 0.9987877011299133, + 0.9982553124427795, + 0.9985563158988953, + 0.9940500855445862, + 0.994245707988739, + 0.9988056421279907, + 0.9988067150115967 + ], + "sentiment_counts": { + "POSITIVE": 18, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9473684210526315, + "NEGATIVE": 0.05263157894736842 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9473684210526315 + ] + }, + "final_label": "POSITIVE", + "final_count": 47, + "final_proportion": 0.9038461538461539, + "final_counts": { + "POSITIVE": 47, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.9038461538461539, + "NEGATIVE": 0.09615384615384616 + } + } }, { "season_code": "202303", @@ -294743,7 +600375,7 @@ "9:00", "10:15", "YSB MARSH - Yale Science Building MARSH", - "https:\/\/map.yale.edu\/?id=1910#!m\/563700" + "https://map.yale.edu/?id=1910#!m/563700" ] ], "Wednesday": [ @@ -294751,7 +600383,7 @@ "9:00", "10:15", "YSB MARSH - Yale Science Building MARSH", - "https:\/\/map.yale.edu\/?id=1910#!m\/563700" + "https://map.yale.edu/?id=1910#!m/563700" ] ] }, @@ -294760,17 +600392,530 @@ ], "areas": [], "flags": [ - "YC Math: Stat\/Applied Math" + "YC Math: Stat/Applied Math" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "Thursday, December 14, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88785\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88785/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9922088384628296, + 0.9988448619842529, + 0.9987841248512268, + 0.9980996251106262, + 0.9980090260505676, + 0.9862581491470337, + 0.9932124614715576, + 0.9975044131278992, + 0.9986936450004578, + 0.9972137808799744, + 0.9988860487937927, + 0.9607011675834656, + 0.9951561689376831, + 0.9977083206176758, + 0.9986571073532104, + 0.9985337257385254, + 0.9987702965736389, + 0.998678982257843, + 0.9914599657058716, + 0.9887861013412476, + 0.9988879561424255, + 0.9988693594932556, + 0.9989025592803955, + 0.9983875751495361, + 0.9763613939285278, + 0.9987866282463074, + 0.9867428541183472, + 0.998925507068634, + 0.9967980980873108, + 0.9710434079170227, + 0.9920361638069153, + 0.9987838864326477, + 0.998725950717926, + 0.9986494183540344, + 0.9987427592277527, + 0.9862191081047058, + 0.9985862970352173, + 0.9935139417648315, + 0.987275242805481, + 0.9879562258720398, + 0.9914578795433044, + 0.9981551766395569, + 0.9946544170379639, + 0.9981948733329773, + 0.9931229948997498, + 0.9988886713981628, + 0.9449286460876465, + 0.9950195550918579, + 0.9987497329711914, + 0.9265551567077637, + 0.9981997013092041, + 0.9984840750694275, + 0.9909586906433105, + 0.9607011675834656, + 0.9905112385749817, + 0.9710434079170227, + 0.9607011675834656, + 0.9966055154800415, + 0.9988293051719666, + 0.9980244636535645, + 0.9985841512680054, + 0.9986422657966614, + 0.9987488985061646, + 0.9985709190368652, + 0.9988871216773987, + 0.9988468885421753, + 0.9988774657249451, + 0.9985264539718628, + 0.9986937642097473, + 0.9986024498939514, + 0.9967966675758362, + 0.9958661794662476, + 0.9852821826934814, + 0.9988529682159424 + ], + "sentiment_counts": { + "POSITIVE": 61, + "NEGATIVE": 13 + }, + "sentiment_distribution": { + "POSITIVE": 0.8243243243243243, + "NEGATIVE": 0.17567567567567569 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8243243243243243 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984436631202698, + 0.998590886592865, + 0.9988439083099365, + 0.9985301494598389, + 0.9994983673095703, + 0.9965038299560547, + 0.9993413090705872, + 0.998417854309082, + 0.997890293598175, + 0.9957457184791565, + 0.998856782913208, + 0.9995087385177612, + 0.9987764954566956, + 0.9979186654090881, + 0.9987837672233582, + 0.9994136095046997, + 0.9898231625556946, + 0.9988947510719299, + 0.9994986057281494, + 0.9989155530929565, + 0.9987443685531616, + 0.9989176988601685, + 0.9986748695373535, + 0.997704803943634, + 0.9989057779312134, + 0.9994675517082214, + 0.9928760528564453, + 0.9980384707450867, + 0.9963361024856567, + 0.9994969367980957, + 0.9987447261810303, + 0.9980171918869019, + 0.9915614724159241, + 0.9979273080825806, + 0.9985038042068481, + 0.9983540773391724, + 0.9977091550827026, + 0.9984152317047119, + 0.9988763928413391, + 0.9971765279769897, + 0.9956926703453064, + 0.998913049697876, + 0.9982097148895264, + 0.9845065474510193, + 0.9994513392448425, + 0.9962577819824219, + 0.9985924363136292, + 0.9988585710525513, + 0.9988277554512024, + 0.9993222951889038, + 0.9988855719566345, + 0.9981684684753418, + 0.9988149404525757, + 0.9988549947738647, + 0.998898983001709, + 0.9986258745193481, + 0.9984549283981323, + 0.9979239702224731, + 0.9988574981689453, + 0.9987952709197998, + 0.9975115060806274, + 0.9816967844963074, + 0.9994984865188599, + 0.9978863596916199, + 0.9989087581634521, + 0.9989068508148193, + 0.9988377690315247, + 0.9983034133911133, + 0.9985352754592896, + 0.9989275336265564, + 0.9994840621948242, + 0.9988749623298645, + 0.9989074468612671 + ], + "sentiment_counts": { + "POSITIVE": 54, + "NEGATIVE": 19 + }, + "sentiment_distribution": { + "POSITIVE": 0.7397260273972602, + "NEGATIVE": 0.2602739726027397 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7397260273972602 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989011287689209, + 0.9987314343452454, + 0.9819492697715759, + 0.9988594055175781, + 0.998671293258667, + 0.9985107779502869, + 0.9920382499694824, + 0.9989142417907715, + 0.9988102912902832, + 0.994491696357727, + 0.9987694621086121, + 0.9995049238204956, + 0.9986810088157654, + 0.9986795783042908, + 0.9985092282295227, + 0.9988483190536499, + 0.9935640692710876, + 0.9975690245628357, + 0.9989199638366699, + 0.9967365860939026, + 0.9987497329711914, + 0.9979348182678223, + 0.9985588192939758, + 0.9988377690315247, + 0.9988184571266174, + 0.9987712502479553, + 0.9988905787467957, + 0.9976322650909424, + 0.9981504082679749, + 0.994041383266449, + 0.9988378882408142, + 0.9977939128875732, + 0.9908273816108704, + 0.9987969398498535, + 0.9986781477928162, + 0.9994988441467285, + 0.9987773299217224, + 0.9978945851325989, + 0.9987804293632507, + 0.9989076852798462, + 0.9984985589981079, + 0.998862624168396, + 0.9465747475624084, + 0.9963223934173584, + 0.9982625842094421, + 0.9988148212432861, + 0.9985452890396118, + 0.9981560111045837, + 0.9994097948074341, + 0.9994888305664062, + 0.9985515475273132, + 0.998698353767395, + 0.9987881779670715, + 0.9985462427139282, + 0.9981922507286072, + 0.9988242983818054, + 0.9993966817855835, + 0.9988186955451965, + 0.9959861636161804, + 0.9989281296730042, + 0.9994947910308838, + 0.9994603991508484, + 0.9652548432350159, + 0.998933732509613, + 0.9988805651664734, + 0.9988366961479187, + 0.9969596862792969, + 0.9987900853157043, + 0.9959138035774231, + 0.9976015686988831, + 0.9983513355255127, + 0.9937657117843628, + 0.9988779425621033, + 0.9981922507286072, + 0.9988390803337097, + 0.9988701939582825 + ], + "sentiment_counts": { + "POSITIVE": 61, + "NEGATIVE": 15 + }, + "sentiment_distribution": { + "POSITIVE": 0.8026315789473685, + "NEGATIVE": 0.19736842105263158 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8026315789473685 + ] + }, + "final_label": "POSITIVE", + "final_count": 176, + "final_proportion": 0.7892376681614349, + "final_counts": { + "POSITIVE": 176, + "NEGATIVE": 47 + }, + "final_distribution": { + "POSITIVE": 0.7892376681614349, + "NEGATIVE": 0.21076233183856502 + } + } }, { "season_code": "202303", @@ -294808,7 +600953,7 @@ "11:35", "12:50", "DAVIES AUD - Davies Auditorium, Becton Ctr AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ], "Thursday": [ @@ -294816,7 +600961,7 @@ "11:35", "12:50", "DAVIES AUD - Davies Auditorium, Becton Ctr AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ] }, @@ -294830,15 +600975,43 @@ "classnotes": "", "final_exam": "Friday, December 15, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88623\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88623/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "Prerequisite: S&DS 230.\u00a0Background in neuroscience is recommended but not required (e.g., it would be useful to have taken at the level of\u00a0NSCI 160).", - "description": "We discuss data analysis methods that are used in the neuroscience community. Methods include classical descriptive and inferential statistics, point process models, mutual information measures, machine learning (neural decoding) analyses, dimensionality reduction methods, and representational similarity analyses. Each week we read a research paper that uses one of these methods, and we replicate these analyses using the R or Python programming language. Emphasis is on analyzing neural spiking data, although we also discuss other imaging modalities such as magneto\/electro-encephalography (EEG\/MEG), two-photon imaging, and possibility functional magnetic resonance imaging data (fMRI). Data we analyze includes smaller datasets, such as single neuron recordings from songbird vocal motor system, as well as larger data sets, such as the Allen Brain observatory\u2019s simultaneous recordings from the mouse visual system.", + "description": "We discuss data analysis methods that are used in the neuroscience community. Methods include classical descriptive and inferential statistics, point process models, mutual information measures, machine learning (neural decoding) analyses, dimensionality reduction methods, and representational similarity analyses. Each week we read a research paper that uses one of these methods, and we replicate these analyses using the R or Python programming language. Emphasis is on analyzing neural spiking data, although we also discuss other imaging modalities such as magneto/electro-encephalography (EEG/MEG), two-photon imaging, and possibility functional magnetic resonance imaging data (fMRI). Data we analyze includes smaller datasets, such as single neuron recordings from songbird vocal motor system, as well as larger data sets, such as the Allen Brain observatory\u2019s simultaneous recordings from the mouse visual system.", "short_title": "Neural Data Analysis", "title": "Neural Data Analysis", "school": "YC", @@ -294896,10 +601069,129 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90506\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90506/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9944384098052979, + 0.9984148740768433, + 0.998818576335907, + 0.9984889030456543, + 0.994565486907959, + 0.9985947012901306, + 0.9987661838531494, + 0.9987624883651733, + 0.9958695769309998 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.99892657995224, + 0.9987216591835022, + 0.9989148378372192, + 0.9962735176086426, + 0.9988909363746643, + 0.9990758895874023, + 0.998863935470581, + 0.9989016056060791 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981732368469238, + 0.9980847835540771, + 0.9987239241600037, + 0.9987959861755371, + 0.99822598695755, + 0.9987899661064148, + 0.9989299178123474, + 0.998769223690033, + 0.9981922507286072 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 25, + "final_proportion": 0.9615384615384616, + "final_counts": { + "POSITIVE": 25, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9615384615384616, + "NEGATIVE": 0.038461538461538464 + } + } }, { "season_code": "202303", @@ -294937,7 +601229,7 @@ "11:35", "12:50", "KGL 123 - Kline Geology Laboratory 123", - "https:\/\/map.yale.edu\/?id=1910#!m\/559996" + "https://map.yale.edu/?id=1910#!m/559996" ] ], "Wednesday": [ @@ -294945,7 +601237,7 @@ "11:35", "12:50", "KGL 123 - Kline Geology Laboratory 123", - "https:\/\/map.yale.edu\/?id=1910#!m\/559996" + "https://map.yale.edu/?id=1910#!m/559996" ] ] }, @@ -294959,10 +601251,179 @@ "classnotes": "", "final_exam": "Sunday, December 17, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88626\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88626/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9616516828536987, + 0.9991488456726074, + 0.9987151622772217, + 0.9985394477844238, + 0.997833788394928, + 0.9944553971290588, + 0.9984799027442932, + 0.9988189339637756, + 0.9987075328826904, + 0.9986205101013184, + 0.9985404014587402, + 0.9857189059257507, + 0.9965841770172119, + 0.9981497526168823, + 0.9863883852958679, + 0.9976390600204468, + 0.9987404942512512, + 0.998824417591095 + ], + "sentiment_counts": { + "POSITIVE": 14, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.7777777777777778, + "NEGATIVE": 0.2222222222222222 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7777777777777778 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988048076629639, + 0.9962473511695862, + 0.9763972759246826, + 0.9987497329711914, + 0.9987862706184387, + 0.9987986087799072, + 0.9989312291145325, + 0.9983497858047485, + 0.9989297986030579, + 0.9984152317047119, + 0.9933351278305054, + 0.9987958669662476, + 0.9872199296951294 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9230769230769231, + "NEGATIVE": 0.07692307692307693 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9230769230769231 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9980417490005493, + 0.9986867308616638, + 0.9955644607543945, + 0.9989124536514282, + 0.8754094839096069, + 0.9989270567893982, + 0.9983639121055603, + 0.9988704323768616, + 0.9989215135574341, + 0.9989198446273804, + 0.9989339709281921, + 0.9989355206489563, + 0.9988957643508911, + 0.9988433122634888, + 0.9986721277236938, + 0.997117280960083, + 0.9989383816719055, + 0.9963498115539551, + 0.99828040599823, + 0.9988318085670471 + ], + "sentiment_counts": { + "POSITIVE": 18, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "final_label": "POSITIVE", + "final_count": 44, + "final_proportion": 0.8627450980392157, + "final_counts": { + "POSITIVE": 44, + "NEGATIVE": 7 + }, + "final_distribution": { + "POSITIVE": 0.8627450980392157, + "NEGATIVE": 0.13725490196078433 + } + } }, { "season_code": "202303", @@ -295000,7 +601461,7 @@ "13:00", "14:15", "LUCE 101 - Luce Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ], "Wednesday": [ @@ -295008,7 +601469,7 @@ "13:00", "14:15", "LUCE 101 - Luce Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ] }, @@ -295022,10 +601483,305 @@ "classnotes": "", "final_exam": "Wednesday, December 20, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88628\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88628/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984930753707886, + 0.9971328973770142, + 0.9913679957389832, + 0.9964497089385986, + 0.9988545179367065, + 0.9978033900260925, + 0.9977109432220459, + 0.9983906745910645, + 0.9982014894485474, + 0.9987969398498535, + 0.9984523057937622, + 0.9983550906181335, + 0.9988105297088623, + 0.9988717436790466, + 0.9936972260475159, + 0.990358293056488, + 0.9970536231994629, + 0.9988143444061279, + 0.9886018633842468, + 0.9984140396118164, + 0.998813271522522, + 0.9984064698219299, + 0.5007714629173279, + 0.713501513004303, + 0.9984442591667175, + 0.9994812607765198, + 0.9967502355575562, + 0.9958806037902832, + 0.9980225563049316, + 0.9854627847671509, + 0.9987164735794067, + 0.9984471201896667, + 0.9949249029159546, + 0.9933316111564636, + 0.948601484298706, + 0.9873563051223755, + 0.9986774325370789, + 0.9974128603935242, + 0.9952736496925354 + ], + "sentiment_counts": { + "POSITIVE": 36, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.9230769230769231, + "NEGATIVE": 0.07692307692307693 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9230769230769231 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988769888877869, + 0.9989079236984253, + 0.9987608194351196, + 0.9988621473312378, + 0.9988833069801331, + 0.9988067150115967, + 0.9989239573478699, + 0.9988184571266174, + 0.9986715316772461, + 0.9989055395126343, + 0.9965481162071228, + 0.989241898059845, + 0.9987882971763611, + 0.9989022016525269, + 0.998772919178009, + 0.9963880777359009, + 0.9987810254096985, + 0.9922577738761902, + 0.9982507824897766, + 0.998790442943573, + 0.9987995624542236, + 0.9978054165840149, + 0.9986760020256042, + 0.9919901490211487, + 0.9989097118377686, + 0.998448371887207, + 0.9984071850776672, + 0.9937353730201721, + 0.9988321661949158, + 0.9989159107208252, + 0.9988968372344971, + 0.9987792372703552 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 29 + }, + "sentiment_distribution": { + "NEGATIVE": 0.09375, + "POSITIVE": 0.90625 + }, + "sentiment_overall": [ + "POSITIVE", + 0.90625 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994398951530457, + 0.9987473487854004, + 0.9987169504165649, + 0.9988712668418884, + 0.9988048076629639, + 0.9989204406738281, + 0.9974592328071594, + 0.9895263910293579, + 0.9988998174667358, + 0.998870313167572, + 0.9988641738891602, + 0.9974302649497986, + 0.9932519793510437, + 0.9995096921920776, + 0.9987813830375671, + 0.9987897276878357, + 0.999488115310669, + 0.9985675811767578, + 0.9988899827003479, + 0.9988951086997986, + 0.9980813264846802, + 0.9994547963142395, + 0.9989116191864014, + 0.9986686706542969, + 0.9994686245918274, + 0.9963410496711731, + 0.9974592328071594, + 0.9986442923545837, + 0.9988836646080017, + 0.9979110360145569, + 0.998683750629425, + 0.9985698461532593, + 0.9948307871818542, + 0.9982553124427795, + 0.9978979825973511, + 0.9986503720283508, + 0.9974119067192078, + 0.998097836971283, + 0.997117280960083, + 0.9986039996147156, + 0.9989074468612671, + 0.9988400340080261, + 0.9972360730171204 + ], + "sentiment_counts": { + "NEGATIVE": 6, + "POSITIVE": 37 + }, + "sentiment_distribution": { + "NEGATIVE": 0.13953488372093023, + "POSITIVE": 0.8604651162790697 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8604651162790697 + ] + }, + "final_label": "POSITIVE", + "final_count": 102, + "final_proportion": 0.8947368421052632, + "final_counts": { + "POSITIVE": 102, + "NEGATIVE": 12 + }, + "final_distribution": { + "POSITIVE": 0.8947368421052632, + "NEGATIVE": 0.10526315789473684 + } + } }, { "season_code": "202303", @@ -295081,17 +601837,146 @@ ], "areas": [], "flags": [ - "YC Math: Stat\/Applied Math" + "YC Math: Stat/Applied Math" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88630\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88630/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981789588928223, + 0.9710434079170227, + 0.9981359243392944, + 0.9385605454444885, + 0.9989168643951416, + 0.9839439392089844, + 0.9988215565681458, + 0.9982486963272095, + 0.9987636804580688, + 0.9989122152328491 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9991459846496582, + 0.9989067316055298, + 0.9994729161262512, + 0.9987096786499023, + 0.9988675117492676, + 0.998776376247406, + 0.998906135559082, + 0.9988901019096375, + 0.998683750629425, + 0.9986937642097473 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 8 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2, + "POSITIVE": 0.8 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9094185829162598, + 0.9994508624076843, + 0.9981964230537415, + 0.9962233304977417, + 0.99524986743927, + 0.9988453388214111, + 0.9988884329795837, + 0.9977830052375793, + 0.9986488223075867, + 0.998782217502594, + 0.998781144618988 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8181818181818182, + "NEGATIVE": 0.18181818181818182 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8181818181818182 + ] + }, + "final_label": "POSITIVE", + "final_count": 27, + "final_proportion": 0.8709677419354839, + "final_counts": { + "POSITIVE": 27, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.8709677419354839, + "NEGATIVE": 0.12903225806451613 + } + } }, { "season_code": "202303", @@ -295129,7 +602014,7 @@ "11:35", "12:50", "HLH17 115 - 17 Hillhouse Avenue 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Thursday": [ @@ -295137,7 +602022,7 @@ "11:35", "12:50", "HLH17 115 - 17 Hillhouse Avenue 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -295149,14 +602034,137 @@ "classnotes": "", "final_exam": "Friday, December 15, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88631\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "Prerequisites: S&DS 361, and prior course work in probability, statistics, and data analysis (e.g. 363, 365, 220, 230, etc., equivalent courses, or equivalent research\/internship experience).\u00a0 Enrollment limited; requires permission of the instructor.\u00a0", + "syllabus_url": "https://yale.instructure.com/courses/88631/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9884228110313416, + 0.9971850514411926, + 0.9336901307106018, + 0.994360625743866, + 0.9974325299263, + 0.9987539052963257, + 0.9987234473228455, + 0.9983023405075073, + 0.9985390901565552 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987758994102478, + 0.9943051934242249, + 0.9987001419067383, + 0.9987443685531616, + 0.9995019435882568, + 0.9989223480224609, + 0.9986701011657715, + 0.9988948702812195, + 0.9988930821418762, + 0.9987727999687195 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987735152244568, + 0.993436872959137, + 0.9986617565155029, + 0.9987180233001709, + 0.9988523721694946, + 0.994866132736206, + 0.9810803532600403, + 0.9989117383956909, + 0.9986458420753479 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 25, + "final_proportion": 0.8928571428571429, + "final_counts": { + "POSITIVE": 25, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.8928571428571429, + "NEGATIVE": 0.10714285714285714 + } + } + }, + { + "season_code": "202303", + "requirements": "Prerequisites: S&DS 361, and prior course work in probability, statistics, and data analysis (e.g. 363, 365, 220, 230, etc., equivalent courses, or equivalent research/internship experience).\u00a0 Enrollment limited; requires permission of the instructor.\u00a0", "description": "Statistical analysis of a variety of statistical problems using real data. Emphasis on methods of choosing data, acquiring data, assessing data quality, and the issues posed by extremely large data sets. Extensive computations using R statistical software.", "short_title": "Statistical Case Studies", "title": "Statistical Case Studies", @@ -295213,10 +602221,113 @@ "classnotes": "Enrollment limited; requires permission of the instructor.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88634\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88634/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998892605304718, + 0.9987689852714539, + 0.9989004135131836, + 0.996994137763977, + 0.9986012578010559 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988077878952026, + 0.9989401698112488, + 0.9989234805107117, + 0.9984353184700012, + 0.9989308714866638, + 0.9981243014335632 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998815655708313, + 0.998921275138855, + 0.9989005327224731, + 0.9987642765045166, + 0.998897910118103, + 0.9984858632087708, + 0.9988563060760498 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 0.9444444444444444, + "final_counts": { + "POSITIVE": 17, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9444444444444444, + "NEGATIVE": 0.05555555555555555 + } + } }, { "season_code": "202303", @@ -295257,7 +602368,7 @@ "13:00", "14:15", "WTS A53 - Watson Center 60 Sachem Street A53", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -295265,7 +602376,7 @@ "13:00", "14:15", "WTS A53 - Watson Center 60 Sachem Street A53", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -295277,10 +602388,139 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88636\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88636/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.959989070892334, + 0.9527761340141296, + 0.9988590478897095, + 0.9956971406936646, + 0.9916312098503113, + 0.9925770163536072, + 0.9988011121749878, + 0.9887248873710632, + 0.9985653758049011, + 0.994544506072998 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 9 + }, + "sentiment_distribution": { + "NEGATIVE": 0.1, + "POSITIVE": 0.9 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9892269372940063, + 0.9988239407539368, + 0.9988969564437866, + 0.9983755350112915, + 0.9992402791976929, + 0.9986226558685303, + 0.9988595247268677, + 0.9988923668861389, + 0.9962666630744934, + 0.9983270764350891, + 0.9988239407539368 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9090909090909091 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9967639446258545, + 0.9989181756973267, + 0.9988960027694702, + 0.9984618425369263, + 0.9987673759460449, + 0.9987307190895081, + 0.9984799027442932, + 0.9994161128997803, + 0.9987605810165405, + 0.9988779425621033 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 8 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2, + "POSITIVE": 0.8 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 27, + "final_proportion": 0.8709677419354839, + "final_counts": { + "NEGATIVE": 4, + "POSITIVE": 27 + }, + "final_distribution": { + "NEGATIVE": 0.12903225806451613, + "POSITIVE": 0.8709677419354839 + } + } }, { "season_code": "202303", @@ -295323,7 +602563,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -295363,10 +602631,93 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88640\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88640/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9938202500343323, + 0.9988068342208862, + 0.9989184141159058 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982062578201294, + 0.9988425970077515 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 1 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982306361198425, + 0.9960331320762634, + 0.9986773133277893 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 0.875, + "final_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + } + } }, { "season_code": "202303", @@ -295406,7 +602757,7 @@ "13:00", "14:15", "YSB MARSH - Yale Science Building MARSH", - "https:\/\/map.yale.edu\/?id=1910#!m\/563700" + "https://map.yale.edu/?id=1910#!m/563700" ] ], "Thursday": [ @@ -295414,7 +602765,7 @@ "13:00", "14:15", "YSB MARSH - Yale Science Building MARSH", - "https:\/\/map.yale.edu\/?id=1910#!m\/563700" + "https://map.yale.edu/?id=1910#!m/563700" ] ] }, @@ -295426,10 +602777,167 @@ "classnotes": "This course may not be taken after S&DS 100.", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88609\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88609/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986288547515869, + 0.9988621473312378, + 0.9988273978233337, + 0.9988383650779724, + 0.9988778233528137, + 0.9988755583763123, + 0.9976568222045898, + 0.9970819354057312, + 0.9884689450263977, + 0.9986579418182373, + 0.9984567165374756 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989280104637146, + 0.9988529682159424, + 0.9988390803337097, + 0.9994823932647705, + 0.9989215135574341, + 0.9995023012161255, + 0.9987731575965881, + 0.9988569021224976, + 0.9988815188407898, + 0.9971064925193787, + 0.9995018243789673, + 0.9994927644729614, + 0.998767614364624, + 0.9987525939941406, + 0.9995124340057373, + 0.9986024498939514, + 0.9879831075668335 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 6 + }, + "sentiment_distribution": { + "POSITIVE": 0.6470588235294118, + "NEGATIVE": 0.35294117647058826 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6470588235294118 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989308714866638, + 0.9988073110580444, + 0.9985104203224182, + 0.9987102746963501, + 0.9995104074478149, + 0.998910665512085, + 0.996212363243103, + 0.9987634420394897, + 0.9988951086997986, + 0.9988705515861511, + 0.9988967180252075, + 0.9982576966285706, + 0.9988644123077393, + 0.9870138764381409, + 0.9989023208618164, + 0.9995055198669434, + 0.9988780617713928 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 5 + }, + "sentiment_distribution": { + "POSITIVE": 0.7058823529411765, + "NEGATIVE": 0.29411764705882354 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7058823529411765 + ] + }, + "final_label": "POSITIVE", + "final_count": 34, + "final_proportion": 0.7555555555555555, + "final_counts": { + "POSITIVE": 34, + "NEGATIVE": 11 + }, + "final_distribution": { + "POSITIVE": 0.7555555555555555, + "NEGATIVE": 0.24444444444444444 + } + } }, { "season_code": "202303", @@ -295488,10 +602996,219 @@ "classnotes": "This course may not be taken after S&DS 100.", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88609\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88609/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982038736343384, + 0.9988753199577332, + 0.9989326596260071, + 0.9983347058296204, + 0.9989217519760132, + 0.9973428845405579, + 0.9987945556640625, + 0.9986422657966614, + 0.9903171062469482, + 0.9991814494132996, + 0.7013508677482605, + 0.9988300204277039, + 0.9984657764434814, + 0.9984048008918762, + 0.9971566200256348, + 0.9985288381576538, + 0.9969819188117981, + 0.9935830235481262, + 0.9989243149757385, + 0.9987601041793823, + 0.998823344707489 + ], + "sentiment_counts": { + "POSITIVE": 18, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989258646965027, + 0.9982361793518066, + 0.9987685084342957, + 0.9982534050941467, + 0.9988555908203125, + 0.9986259937286377, + 0.9976046085357666, + 0.9979829788208008, + 0.9988152980804443, + 0.9987717270851135, + 0.9995063543319702, + 0.9799211621284485, + 0.9988906979560852, + 0.9988887906074524, + 0.9988380074501038, + 0.998790442943573, + 0.9973036050796509, + 0.9985931515693665, + 0.9990187883377075, + 0.9984488487243652, + 0.9965356588363647, + 0.9988540410995483, + 0.9988490343093872, + 0.9948628544807434, + 0.9988962411880493, + 0.9988514184951782 + ], + "sentiment_counts": { + "POSITIVE": 22, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.8461538461538461, + "NEGATIVE": 0.15384615384615385 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8461538461538461 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.997117280960083, + 0.9987653493881226, + 0.9988307356834412, + 0.9784395098686218, + 0.9985215067863464, + 0.9989135265350342, + 0.998364269733429, + 0.9980669617652893, + 0.9987767338752747, + 0.9988942742347717, + 0.9994964599609375, + 0.9818282723426819, + 0.9988394379615784, + 0.9987963438034058, + 0.9988642930984497, + 0.9995094537734985, + 0.9935688972473145, + 0.9942686557769775, + 0.998747706413269, + 0.9983811378479004, + 0.9988715052604675, + 0.99611496925354, + 0.9989038705825806, + 0.9989184141159058 + ], + "sentiment_counts": { + "POSITIVE": 21, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "final_label": "POSITIVE", + "final_count": 61, + "final_proportion": 0.8591549295774648, + "final_counts": { + "POSITIVE": 61, + "NEGATIVE": 10 + }, + "final_distribution": { + "POSITIVE": 0.8591549295774648, + "NEGATIVE": 0.14084507042253522 + } + } }, { "season_code": "202303", @@ -295550,10 +603267,259 @@ "classnotes": "This course may not be taken after S&DS 100.", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88609\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88609/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9965184926986694, + 0.9988641738891602, + 0.998626708984375, + 0.9974405765533447, + 0.9983785152435303, + 0.9982033967971802, + 0.9893950819969177, + 0.9987242817878723, + 0.9988920092582703, + 0.9977020621299744, + 0.9987887740135193, + 0.9988126754760742, + 0.9789929986000061, + 0.9984145164489746, + 0.9965564012527466, + 0.9265551567077637, + 0.9982753992080688, + 0.9988068342208862, + 0.9986118078231812, + 0.9988699555397034, + 0.9894165396690369, + 0.9983934760093689, + 0.998757004737854, + 0.998852014541626, + 0.9239913821220398, + 0.9903402924537659, + 0.997925877571106, + 0.9983736276626587 + ], + "sentiment_counts": { + "POSITIVE": 25, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.8928571428571429, + "NEGATIVE": 0.10714285714285714 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8928571428571429 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988316893577576, + 0.9988756775856018, + 0.9988600015640259, + 0.9989344477653503, + 0.9988577365875244, + 0.6327666640281677, + 0.9988191723823547, + 0.9988806843757629, + 0.9988899827003479, + 0.9995132684707642, + 0.9986501336097717, + 0.9994854927062988, + 0.9988833069801331, + 0.9976212382316589, + 0.9987550973892212, + 0.9962582588195801, + 0.9986135959625244, + 0.998928964138031, + 0.9902860522270203, + 0.9986754059791565, + 0.998808741569519, + 0.9988585710525513, + 0.9977453351020813, + 0.9988499879837036, + 0.9989486336708069, + 0.9988155364990234, + 0.996519923210144, + 0.9988166093826294, + 0.9986876845359802, + 0.9988042116165161 + ], + "sentiment_counts": { + "POSITIVE": 25, + "NEGATIVE": 5 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994854927062988, + 0.9988893866539001, + 0.9989362359046936, + 0.9988920092582703, + 0.9962278604507446, + 0.9978834986686707, + 0.9993851184844971, + 0.9981734752655029, + 0.9976136684417725, + 0.9987518787384033, + 0.9987366795539856, + 0.9989364743232727, + 0.9968872666358948, + 0.9988961219787598, + 0.9916382431983948, + 0.997117280960083, + 0.9965593218803406, + 0.9988529682159424, + 0.9988656044006348, + 0.9980908036231995, + 0.9986631870269775, + 0.9981922507286072, + 0.9983371496200562, + 0.9989218711853027, + 0.9988999366760254, + 0.996141254901886, + 0.9948018789291382, + 0.998810887336731, + 0.9986447691917419, + 0.9988296627998352, + 0.9986739158630371, + 0.9982592463493347, + 0.9987794756889343 + ], + "sentiment_counts": { + "NEGATIVE": 4, + "POSITIVE": 29 + }, + "sentiment_distribution": { + "NEGATIVE": 0.12121212121212122, + "POSITIVE": 0.8787878787878788 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8787878787878788 + ] + }, + "final_label": "POSITIVE", + "final_count": 79, + "final_proportion": 0.8681318681318682, + "final_counts": { + "POSITIVE": 79, + "NEGATIVE": 12 + }, + "final_distribution": { + "POSITIVE": 0.8681318681318682, + "NEGATIVE": 0.13186813186813187 + } + } }, { "season_code": "202303", @@ -295614,10 +603580,103 @@ "classnotes": "This course may not be taken after S&DS 100.", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88611\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88611/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987828135490417, + 0.9989155530929565, + 0.9987574815750122 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988850951194763, + 0.9988818764686584, + 0.9989135265350342, + 0.9986482262611389 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9995099306106567, + 0.999498724937439, + 0.9989104270935059, + 0.9989261031150818, + 0.9986746311187744, + 0.9976525902748108 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 4 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 0.8461538461538461, + "final_counts": { + "POSITIVE": 11, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8461538461538461, + "NEGATIVE": 0.15384615384615385 + } + } }, { "season_code": "202303", @@ -295678,10 +603737,149 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88613\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88613/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986132383346558, + 0.998885452747345, + 0.9987114667892456, + 0.9987592697143555, + 0.9962511658668518, + 0.9987412095069885, + 0.9971856474876404, + 0.9924337863922119, + 0.9944804906845093, + 0.9967458248138428, + 0.9965477585792542 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9979617595672607, + 0.9989315867424011, + 0.9989073276519775, + 0.9988241791725159, + 0.9989117383956909, + 0.9988969564437866, + 0.9982141256332397, + 0.9978468418121338, + 0.9974396228790283, + 0.9965639710426331, + 0.9988495111465454, + 0.9891001582145691 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987006187438965, + 0.9989013671875, + 0.9989294409751892, + 0.9987911581993103, + 0.998829185962677, + 0.9982187151908875, + 0.998754620552063, + 0.9994924068450928, + 0.9988082647323608, + 0.9985594153404236, + 0.9984001517295837, + 0.9988800883293152, + 0.9986940026283264 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9230769230769231, + "NEGATIVE": 0.07692307692307693 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9230769230769231 + ] + }, + "final_label": "POSITIVE", + "final_count": 33, + "final_proportion": 0.9166666666666666, + "final_counts": { + "POSITIVE": 33, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + } + } }, { "season_code": "202303", @@ -295719,7 +603917,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -295759,7 +603985,7 @@ "9:00", "10:15", "ML 211 - Mason Laboratory 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ], "Thursday": [ @@ -295767,7 +603993,7 @@ "9:00", "10:15", "ML 211 - Mason Laboratory 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ] }, @@ -295782,10 +604008,257 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88618\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88618/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985331296920776, + 0.9907186627388, + 0.9820322394371033, + 0.9986231327056885, + 0.9945555925369263, + 0.9985878467559814, + 0.9977357387542725, + 0.9986733198165894, + 0.996283233165741, + 0.9985755681991577, + 0.9987128973007202, + 0.9986612796783447, + 0.998884379863739, + 0.9981232285499573, + 0.996711254119873, + 0.9988638162612915, + 0.9989281296730042, + 0.9950729012489319, + 0.9981645941734314, + 0.9983649849891663, + 0.9837383031845093, + 0.9952929615974426, + 0.9987383484840393, + 0.9981551766395569, + 0.998204231262207, + 0.9933744072914124, + 0.9988514184951782, + 0.9986935257911682, + 0.9985578656196594, + 0.9771918654441833 + ], + "sentiment_counts": { + "POSITIVE": 27, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988608360290527, + 0.9989062547683716, + 0.9979388117790222, + 0.9951927661895752, + 0.98073810338974, + 0.9987216591835022, + 0.9988089799880981, + 0.9985629916191101, + 0.9551969170570374, + 0.9786998629570007, + 0.9988786578178406, + 0.9989173412322998, + 0.9988753199577332, + 0.9989075660705566, + 0.9989362359046936, + 0.9988616704940796, + 0.9924127459526062, + 0.998771607875824, + 0.9988873600959778, + 0.9988627433776855, + 0.9988710284233093, + 0.9934489130973816, + 0.9988357424736023, + 0.9988977909088135, + 0.9994996786117554, + 0.9988933205604553, + 0.9989327788352966, + 0.9988547563552856, + 0.9985142350196838, + 0.9987738728523254, + 0.9988271594047546 + ], + "sentiment_counts": { + "POSITIVE": 28, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.9032258064516129, + "NEGATIVE": 0.0967741935483871 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9032258064516129 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987911581993103, + 0.997922956943512, + 0.9921607375144958, + 0.9989379048347473, + 0.9988821148872375, + 0.9986459612846375, + 0.9953246116638184, + 0.9988641738891602, + 0.9988960027694702, + 0.9989080429077148, + 0.9974521994590759, + 0.9988909363746643, + 0.998637855052948, + 0.9988850951194763, + 0.9979872703552246, + 0.9981922507286072, + 0.9987844824790955, + 0.9976784586906433, + 0.9988729357719421, + 0.9988334774971008, + 0.9953234791755676, + 0.9988834261894226, + 0.9981405735015869, + 0.9919413328170776, + 0.9988806843757629, + 0.9979788661003113, + 0.9988940358161926, + 0.9988906979560852, + 0.9988608360290527 + ], + "sentiment_counts": { + "POSITIVE": 27, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.9310344827586207, + "NEGATIVE": 0.06896551724137931 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9310344827586207 + ] + }, + "final_label": "POSITIVE", + "final_count": 82, + "final_proportion": 0.9111111111111111, + "final_counts": { + "POSITIVE": 82, + "NEGATIVE": 8 + }, + "final_distribution": { + "POSITIVE": 0.9111111111111111, + "NEGATIVE": 0.08888888888888889 + } + } }, { "season_code": "202303", @@ -295823,7 +604296,7 @@ "13:00", "14:15", "DL 220 - Dunham Laboratory 220", - "https:\/\/map.yale.edu\/?id=1910#!m\/560005" + "https://map.yale.edu/?id=1910#!m/560005" ] ], "Thursday": [ @@ -295831,7 +604304,7 @@ "13:00", "14:15", "DL 220 - Dunham Laboratory 220", - "https:\/\/map.yale.edu\/?id=1910#!m\/560005" + "https://map.yale.edu/?id=1910#!m/560005" ] ] }, @@ -295846,10 +604319,349 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88620\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88620/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.994253933429718, + 0.9935042262077332, + 0.9988669157028198, + 0.9982434511184692, + 0.9984822869300842, + 0.9973230957984924, + 0.9987408518791199, + 0.995707631111145, + 0.9985138773918152, + 0.9986228942871094, + 0.9984612464904785, + 0.9979000091552734, + 0.99760901927948, + 0.9843049645423889, + 0.9971551895141602, + 0.9989345669746399, + 0.9946566820144653, + 0.9989393353462219, + 0.9987781643867493, + 0.9987443685531616, + 0.9969135522842407, + 0.8329328298568726, + 0.9987103939056396, + 0.9975093603134155, + 0.9843973517417908, + 0.9985105395317078, + 0.9988189339637756, + 0.9962149262428284, + 0.9914959669113159, + 0.9989233613014221, + 0.9878613948822021, + 0.9942552447319031, + 0.9976440072059631, + 0.9958831071853638, + 0.989538848400116, + 0.9984252452850342, + 0.9988880753517151, + 0.9939390420913696, + 0.9987101554870605, + 0.9948529601097107, + 0.9984887838363647, + 0.9978673458099365, + 0.9961323738098145, + 0.9962149262428284, + 0.9960975050926208 + ], + "sentiment_counts": { + "POSITIVE": 40, + "NEGATIVE": 5 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988744854927063, + 0.9953314661979675, + 0.9986635446548462, + 0.9943062663078308, + 0.9987419247627258, + 0.9970589876174927, + 0.9989182949066162, + 0.9987220168113708, + 0.9989398121833801, + 0.998783528804779, + 0.9989142417907715, + 0.9989109039306641, + 0.9988729357719421, + 0.9988791346549988, + 0.9988498687744141, + 0.998893678188324, + 0.998859167098999, + 0.998884379863739, + 0.9989043474197388, + 0.9933512806892395, + 0.9962418079376221, + 0.9988892674446106, + 0.9988445043563843, + 0.9989243149757385, + 0.9878765344619751, + 0.9985647797584534, + 0.9994397759437561, + 0.9988924860954285, + 0.9987667798995972, + 0.9988265633583069, + 0.9976440072059631, + 0.9987874627113342, + 0.9974529147148132, + 0.9794034361839294, + 0.9965140223503113, + 0.9988810420036316, + 0.9985308647155762, + 0.9989161491394043, + 0.9989097118377686, + 0.9963781237602234, + 0.9958989024162292, + 0.9988297820091248, + 0.9979494214057922, + 0.99869304895401 + ], + "sentiment_counts": { + "POSITIVE": 40, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9090909090909091 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988752007484436, + 0.9960620999336243, + 0.9967104196548462, + 0.998914361000061, + 0.994976282119751, + 0.9982163310050964, + 0.9987047910690308, + 0.9986866116523743, + 0.999451220035553, + 0.9989012479782104, + 0.9912023544311523, + 0.9989185333251953, + 0.998835027217865, + 0.9988939166069031, + 0.9989150762557983, + 0.9988836646080017, + 0.9988362193107605, + 0.9988903403282166, + 0.9984904527664185, + 0.998939573764801, + 0.9989299178123474, + 0.9988917708396912, + 0.9988719820976257, + 0.9963487386703491, + 0.9974592328071594, + 0.9982719421386719, + 0.9982951283454895, + 0.9987791180610657, + 0.9985480904579163, + 0.9927943348884583, + 0.9994926452636719, + 0.9986269474029541, + 0.9988105297088623, + 0.9987528324127197, + 0.9976440072059631, + 0.999498724937439, + 0.9995070695877075, + 0.9783713817596436, + 0.998907208442688, + 0.9987472295761108, + 0.9988149404525757, + 0.9994897842407227, + 0.9986976385116577, + 0.9995071887969971, + 0.998829185962677, + 0.9988131523132324, + 0.9976363182067871 + ], + "sentiment_counts": { + "POSITIVE": 37, + "NEGATIVE": 10 + }, + "sentiment_distribution": { + "POSITIVE": 0.7872340425531915, + "NEGATIVE": 0.2127659574468085 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7872340425531915 + ] + }, + "final_label": "POSITIVE", + "final_count": 117, + "final_proportion": 0.8602941176470589, + "final_counts": { + "POSITIVE": 117, + "NEGATIVE": 19 + }, + "final_distribution": { + "POSITIVE": 0.8602941176470589, + "NEGATIVE": 0.13970588235294118 + } + } }, { "season_code": "202303", @@ -295887,7 +604699,7 @@ "14:30", "15:45", "DL 220 - Dunham Laboratory 220", - "https:\/\/map.yale.edu\/?id=1910#!m\/560005" + "https://map.yale.edu/?id=1910#!m/560005" ] ], "Wednesday": [ @@ -295895,7 +604707,7 @@ "14:30", "15:45", "DL 220 - Dunham Laboratory 220", - "https:\/\/map.yale.edu\/?id=1910#!m\/560005" + "https://map.yale.edu/?id=1910#!m/560005" ] ] }, @@ -295907,10 +604719,181 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88621\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88621/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9945480227470398, + 0.9987022876739502, + 0.9971545934677124, + 0.997988224029541, + 0.9988027811050415, + 0.9984366297721863, + 0.9793598651885986, + 0.9987831711769104, + 0.9987379908561707, + 0.9971515536308289, + 0.9989359974861145, + 0.9626820087432861, + 0.9989087581634521, + 0.9986016154289246, + 0.9984103441238403, + 0.9987899661064148 + ], + "sentiment_counts": { + "POSITIVE": 14, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988370537757874, + 0.992641270160675, + 0.994768500328064, + 0.9988322854042053, + 0.9985905289649963, + 0.998927652835846, + 0.9988600015640259, + 0.9987965822219849, + 0.9988634586334229, + 0.998762845993042, + 0.9988716244697571, + 0.99896240234375, + 0.9988480806350708, + 0.9988573789596558, + 0.9971672892570496, + 0.990942656993866, + 0.9988786578178406 + ], + "sentiment_counts": { + "POSITIVE": 15, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8823529411764706, + "NEGATIVE": 0.11764705882352941 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8823529411764706 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988755583763123, + 0.9988285899162292, + 0.9879356622695923, + 0.9989025592803955, + 0.9965667724609375, + 0.998822033405304, + 0.9989030361175537, + 0.9976992011070251, + 0.9989359974861145, + 0.993850588798523, + 0.9989129304885864, + 0.9983252882957458, + 0.9987877011299133, + 0.9982553124427795, + 0.9985563158988953, + 0.9940500855445862, + 0.994245707988739, + 0.9988056421279907, + 0.9988067150115967 + ], + "sentiment_counts": { + "POSITIVE": 18, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9473684210526315, + "NEGATIVE": 0.05263157894736842 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9473684210526315 + ] + }, + "final_label": "POSITIVE", + "final_count": 47, + "final_proportion": 0.9038461538461539, + "final_counts": { + "POSITIVE": 47, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.9038461538461539, + "NEGATIVE": 0.09615384615384616 + } + } }, { "season_code": "202303", @@ -295949,7 +604932,7 @@ "9:00", "10:15", "YSB MARSH - Yale Science Building MARSH", - "https:\/\/map.yale.edu\/?id=1910#!m\/563700" + "https://map.yale.edu/?id=1910#!m/563700" ] ], "Wednesday": [ @@ -295957,24 +604940,537 @@ "9:00", "10:15", "YSB MARSH - Yale Science Building MARSH", - "https:\/\/map.yale.edu\/?id=1910#!m\/563700" - ] - ] - }, - "skills": [], - "areas": [], - "flags": [ - "YC Math: Stat\/Applied Math" - ], - "regnotes": "", - "rp_attr": "", - "classnotes": "", - "final_exam": "", - "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88785\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "https://map.yale.edu/?id=1910#!m/563700" + ] + ] + }, + "skills": [], + "areas": [], + "flags": [ + "YC Math: Stat/Applied Math" + ], + "regnotes": "", + "rp_attr": "", + "classnotes": "", + "final_exam": "", + "course_home_url": "", + "syllabus_url": "https://yale.instructure.com/courses/88785/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9922088384628296, + 0.9988448619842529, + 0.9987841248512268, + 0.9980996251106262, + 0.9980090260505676, + 0.9862581491470337, + 0.9932124614715576, + 0.9975044131278992, + 0.9986936450004578, + 0.9972137808799744, + 0.9988860487937927, + 0.9607011675834656, + 0.9951561689376831, + 0.9977083206176758, + 0.9986571073532104, + 0.9985337257385254, + 0.9987702965736389, + 0.998678982257843, + 0.9914599657058716, + 0.9887861013412476, + 0.9988879561424255, + 0.9988693594932556, + 0.9989025592803955, + 0.9983875751495361, + 0.9763613939285278, + 0.9987866282463074, + 0.9867428541183472, + 0.998925507068634, + 0.9967980980873108, + 0.9710434079170227, + 0.9920361638069153, + 0.9987838864326477, + 0.998725950717926, + 0.9986494183540344, + 0.9987427592277527, + 0.9862191081047058, + 0.9985862970352173, + 0.9935139417648315, + 0.987275242805481, + 0.9879562258720398, + 0.9914578795433044, + 0.9981551766395569, + 0.9946544170379639, + 0.9981948733329773, + 0.9931229948997498, + 0.9988886713981628, + 0.9449286460876465, + 0.9950195550918579, + 0.9987497329711914, + 0.9265551567077637, + 0.9981997013092041, + 0.9984840750694275, + 0.9909586906433105, + 0.9607011675834656, + 0.9905112385749817, + 0.9710434079170227, + 0.9607011675834656, + 0.9966055154800415, + 0.9988293051719666, + 0.9980244636535645, + 0.9985841512680054, + 0.9986422657966614, + 0.9987488985061646, + 0.9985709190368652, + 0.9988871216773987, + 0.9988468885421753, + 0.9988774657249451, + 0.9985264539718628, + 0.9986937642097473, + 0.9986024498939514, + 0.9967966675758362, + 0.9958661794662476, + 0.9852821826934814, + 0.9988529682159424 + ], + "sentiment_counts": { + "POSITIVE": 61, + "NEGATIVE": 13 + }, + "sentiment_distribution": { + "POSITIVE": 0.8243243243243243, + "NEGATIVE": 0.17567567567567569 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8243243243243243 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984436631202698, + 0.998590886592865, + 0.9988439083099365, + 0.9985301494598389, + 0.9994983673095703, + 0.9965038299560547, + 0.9993413090705872, + 0.998417854309082, + 0.997890293598175, + 0.9957457184791565, + 0.998856782913208, + 0.9995087385177612, + 0.9987764954566956, + 0.9979186654090881, + 0.9987837672233582, + 0.9994136095046997, + 0.9898231625556946, + 0.9988947510719299, + 0.9994986057281494, + 0.9989155530929565, + 0.9987443685531616, + 0.9989176988601685, + 0.9986748695373535, + 0.997704803943634, + 0.9989057779312134, + 0.9994675517082214, + 0.9928760528564453, + 0.9980384707450867, + 0.9963361024856567, + 0.9994969367980957, + 0.9987447261810303, + 0.9980171918869019, + 0.9915614724159241, + 0.9979273080825806, + 0.9985038042068481, + 0.9983540773391724, + 0.9977091550827026, + 0.9984152317047119, + 0.9988763928413391, + 0.9971765279769897, + 0.9956926703453064, + 0.998913049697876, + 0.9982097148895264, + 0.9845065474510193, + 0.9994513392448425, + 0.9962577819824219, + 0.9985924363136292, + 0.9988585710525513, + 0.9988277554512024, + 0.9993222951889038, + 0.9988855719566345, + 0.9981684684753418, + 0.9988149404525757, + 0.9988549947738647, + 0.998898983001709, + 0.9986258745193481, + 0.9984549283981323, + 0.9979239702224731, + 0.9988574981689453, + 0.9987952709197998, + 0.9975115060806274, + 0.9816967844963074, + 0.9994984865188599, + 0.9978863596916199, + 0.9989087581634521, + 0.9989068508148193, + 0.9988377690315247, + 0.9983034133911133, + 0.9985352754592896, + 0.9989275336265564, + 0.9994840621948242, + 0.9988749623298645, + 0.9989074468612671 + ], + "sentiment_counts": { + "POSITIVE": 54, + "NEGATIVE": 19 + }, + "sentiment_distribution": { + "POSITIVE": 0.7397260273972602, + "NEGATIVE": 0.2602739726027397 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7397260273972602 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989011287689209, + 0.9987314343452454, + 0.9819492697715759, + 0.9988594055175781, + 0.998671293258667, + 0.9985107779502869, + 0.9920382499694824, + 0.9989142417907715, + 0.9988102912902832, + 0.994491696357727, + 0.9987694621086121, + 0.9995049238204956, + 0.9986810088157654, + 0.9986795783042908, + 0.9985092282295227, + 0.9988483190536499, + 0.9935640692710876, + 0.9975690245628357, + 0.9989199638366699, + 0.9967365860939026, + 0.9987497329711914, + 0.9979348182678223, + 0.9985588192939758, + 0.9988377690315247, + 0.9988184571266174, + 0.9987712502479553, + 0.9988905787467957, + 0.9976322650909424, + 0.9981504082679749, + 0.994041383266449, + 0.9988378882408142, + 0.9977939128875732, + 0.9908273816108704, + 0.9987969398498535, + 0.9986781477928162, + 0.9994988441467285, + 0.9987773299217224, + 0.9978945851325989, + 0.9987804293632507, + 0.9989076852798462, + 0.9984985589981079, + 0.998862624168396, + 0.9465747475624084, + 0.9963223934173584, + 0.9982625842094421, + 0.9988148212432861, + 0.9985452890396118, + 0.9981560111045837, + 0.9994097948074341, + 0.9994888305664062, + 0.9985515475273132, + 0.998698353767395, + 0.9987881779670715, + 0.9985462427139282, + 0.9981922507286072, + 0.9988242983818054, + 0.9993966817855835, + 0.9988186955451965, + 0.9959861636161804, + 0.9989281296730042, + 0.9994947910308838, + 0.9994603991508484, + 0.9652548432350159, + 0.998933732509613, + 0.9988805651664734, + 0.9988366961479187, + 0.9969596862792969, + 0.9987900853157043, + 0.9959138035774231, + 0.9976015686988831, + 0.9983513355255127, + 0.9937657117843628, + 0.9988779425621033, + 0.9981922507286072, + 0.9988390803337097, + 0.9988701939582825 + ], + "sentiment_counts": { + "POSITIVE": 61, + "NEGATIVE": 15 + }, + "sentiment_distribution": { + "POSITIVE": 0.8026315789473685, + "NEGATIVE": 0.19736842105263158 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8026315789473685 + ] + }, + "final_label": "POSITIVE", + "final_count": 176, + "final_proportion": 0.7892376681614349, + "final_counts": { + "POSITIVE": 176, + "NEGATIVE": 47 + }, + "final_distribution": { + "POSITIVE": 0.7892376681614349, + "NEGATIVE": 0.21076233183856502 + } + } }, { "season_code": "202303", @@ -296011,7 +605507,7 @@ "9:00", "10:15", "HLH17 03 - 17 Hillhouse Avenue 03", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Thursday": [ @@ -296019,7 +605515,7 @@ "9:00", "10:15", "HLH17 03 - 17 Hillhouse Avenue 03", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -296027,17 +605523,45 @@ "areas": [], "flags": [ "GB: Elective", - "YC Math: Stat\/Applied Math" + "YC Math: Stat/Applied Math" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90768\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90768/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -296075,7 +605599,7 @@ "11:35", "12:50", "DAVIES AUD - Davies Auditorium, Becton Ctr AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ], "Thursday": [ @@ -296083,7 +605607,7 @@ "11:35", "12:50", "DAVIES AUD - Davies Auditorium, Becton Ctr AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ] }, @@ -296097,14 +605621,42 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88623\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88623/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", - "requirements": "The prerequisites include at least one semester of linear algebra (a hybrid of MATH 222 and MATH 225 would be ideal) and working knowledge of one high-level computer language (C, Java, Matlab, Python, Julia, etc.). Students also need a working knowledge of basic probability (e.g., S&DS 241A\/MATH 241A) for the randomized algorithms.", + "requirements": "The prerequisites include at least one semester of linear algebra (a hybrid of MATH 222 and MATH 225 would be ideal) and working knowledge of one high-level computer language (C, Java, Matlab, Python, Julia, etc.). Students also need a working knowledge of basic probability (e.g., S&DS 241A/MATH 241A) for the randomized algorithms.", "description": "This course is an advanced introduction to numerical linear algebra, which is at the foundation of much of scientific computing, data science, machine learning, digital signal and image processing, network analysis, etc. It is geared towards graduate students who need a sophisticated foundation in the subject and for those students interested in advanced methods.", "short_title": "Numerical Linear Algebra: Det...", "title": "Numerical Linear Algebra: Deterministic and Randomized Algorithms", @@ -296137,7 +605689,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -296178,7 +605758,7 @@ "13:30", "15:20", "GR109 ROSENFELD - 109 Grove Street ROSENFELD", - "https:\/\/map.yale.edu\/?id=1910#!m\/560109" + "https://map.yale.edu/?id=1910#!m/560109" ] ] }, @@ -296190,15 +605770,224 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88615\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88615/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "", - "description": "We discuss data analysis methods that are used in the neuroscience community. Methods include classical descriptive and inferential statistics, point process models, mutual information measures, machine learning (neural decoding) analyses, dimensionality reduction methods, and representational similarity analyses. Each week we read a research paper that uses one of these methods, and we replicate these analyses using the R or Python programming language. Emphasis is on analyzing neural spiking data, although we also discuss other imaging modalities such as magneto\/electro-encephalography (EEG\/MEG), two-photon imaging, and possibility functional magnetic resonance imaging data (fMRI). Data we analyze includes smaller datasets, such as single neuron recordings from songbird vocal motor system, as well as larger data sets, such as the Allen Brain observatory\u2019s simultaneous recordings from the mouse visual system.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982588887214661, + 0.9980531930923462, + 0.9963216781616211, + 0.9968819618225098, + 0.9987257122993469, + 0.9882138967514038, + 0.9988465309143066, + 0.996353030204773, + 0.99783855676651, + 0.9987314343452454, + 0.9986346364021301, + 0.9984899759292603, + 0.9978922009468079, + 0.9987033605575562, + 0.9930590391159058, + 0.9988428354263306, + 0.9987905621528625, + 0.9976913928985596, + 0.998887836933136, + 0.9987137317657471, + 0.9967828989028931, + 0.998808741569519, + 0.9988449811935425, + 0.9975696206092834 + ], + "sentiment_counts": { + "POSITIVE": 23, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9583333333333334, + "NEGATIVE": 0.041666666666666664 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9583333333333334 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982611536979675, + 0.998829185962677, + 0.9988687634468079, + 0.9974701404571533, + 0.9989342093467712, + 0.9954180717468262, + 0.9919736385345459, + 0.9970499277114868, + 0.9988986253738403, + 0.9988359808921814, + 0.998904824256897, + 0.9994970560073853, + 0.9984412789344788, + 0.9932231903076172, + 0.998506486415863, + 0.9987389445304871, + 0.9982746839523315, + 0.9994663596153259, + 0.9988964796066284, + 0.9935163259506226, + 0.9987803101539612 + ], + "sentiment_counts": { + "POSITIVE": 14, + "NEGATIVE": 7 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9906851649284363, + 0.9983372688293457, + 0.9988584518432617, + 0.9989295601844788, + 0.998769223690033, + 0.9989234805107117, + 0.9988842606544495, + 0.9989142417907715, + 0.9962432384490967, + 0.9984258413314819, + 0.9988288283348083, + 0.998917818069458, + 0.9988903403282166, + 0.9987150430679321, + 0.9988003969192505, + 0.9951748251914978, + 0.9975628852844238, + 0.998890221118927, + 0.9986867308616638, + 0.9980649352073669, + 0.9988775849342346, + 0.9832240343093872, + 0.9987377524375916, + 0.9984399676322937, + 0.9977144002914429, + 0.9988495111465454 + ], + "sentiment_counts": { + "POSITIVE": 22, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.8461538461538461, + "NEGATIVE": 0.15384615384615385 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8461538461538461 + ] + }, + "final_label": "POSITIVE", + "final_count": 59, + "final_proportion": 0.8309859154929577, + "final_counts": { + "POSITIVE": 59, + "NEGATIVE": 12 + }, + "final_distribution": { + "POSITIVE": 0.8309859154929577, + "NEGATIVE": 0.16901408450704225 + } + } + }, + { + "season_code": "202303", + "requirements": "", + "description": "We discuss data analysis methods that are used in the neuroscience community. Methods include classical descriptive and inferential statistics, point process models, mutual information measures, machine learning (neural decoding) analyses, dimensionality reduction methods, and representational similarity analyses. Each week we read a research paper that uses one of these methods, and we replicate these analyses using the R or Python programming language. Emphasis is on analyzing neural spiking data, although we also discuss other imaging modalities such as magneto/electro-encephalography (EEG/MEG), two-photon imaging, and possibility functional magnetic resonance imaging data (fMRI). Data we analyze includes smaller datasets, such as single neuron recordings from songbird vocal motor system, as well as larger data sets, such as the Allen Brain observatory\u2019s simultaneous recordings from the mouse visual system.", "short_title": "Neural Data Analysis", "title": "Neural Data Analysis", "school": "GS", @@ -296252,10 +606041,129 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90506\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90506/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9944384098052979, + 0.9984148740768433, + 0.998818576335907, + 0.9984889030456543, + 0.994565486907959, + 0.9985947012901306, + 0.9987661838531494, + 0.9987624883651733, + 0.9958695769309998 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.99892657995224, + 0.9987216591835022, + 0.9989148378372192, + 0.9962735176086426, + 0.9988909363746643, + 0.9990758895874023, + 0.998863935470581, + 0.9989016056060791 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981732368469238, + 0.9980847835540771, + 0.9987239241600037, + 0.9987959861755371, + 0.99822598695755, + 0.9987899661064148, + 0.9989299178123474, + 0.998769223690033, + 0.9981922507286072 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 25, + "final_proportion": 0.9615384615384616, + "final_counts": { + "POSITIVE": 25, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9615384615384616, + "NEGATIVE": 0.038461538461538464 + } + } }, { "season_code": "202303", @@ -296314,10 +606222,139 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88630\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88630/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981789588928223, + 0.9710434079170227, + 0.9981359243392944, + 0.9385605454444885, + 0.9989168643951416, + 0.9839439392089844, + 0.9988215565681458, + 0.9982486963272095, + 0.9987636804580688, + 0.9989122152328491 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9991459846496582, + 0.9989067316055298, + 0.9994729161262512, + 0.9987096786499023, + 0.9988675117492676, + 0.998776376247406, + 0.998906135559082, + 0.9988901019096375, + 0.998683750629425, + 0.9986937642097473 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 8 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2, + "POSITIVE": 0.8 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9094185829162598, + 0.9994508624076843, + 0.9981964230537415, + 0.9962233304977417, + 0.99524986743927, + 0.9988453388214111, + 0.9988884329795837, + 0.9977830052375793, + 0.9986488223075867, + 0.998782217502594, + 0.998781144618988 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8181818181818182, + "NEGATIVE": 0.18181818181818182 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8181818181818182 + ] + }, + "final_label": "POSITIVE", + "final_count": 27, + "final_proportion": 0.8709677419354839, + "final_counts": { + "POSITIVE": 27, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.8709677419354839, + "NEGATIVE": 0.12903225806451613 + } + } }, { "season_code": "202303", @@ -296355,7 +606392,7 @@ "11:35", "12:50", "HLH17 115 - 17 Hillhouse Avenue 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ], "Thursday": [ @@ -296363,7 +606400,7 @@ "11:35", "12:50", "HLH17 115 - 17 Hillhouse Avenue 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/559973" + "https://map.yale.edu/?id=1910#!m/559973" ] ] }, @@ -296375,10 +606412,133 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88631\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88631/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9884228110313416, + 0.9971850514411926, + 0.9336901307106018, + 0.994360625743866, + 0.9974325299263, + 0.9987539052963257, + 0.9987234473228455, + 0.9983023405075073, + 0.9985390901565552 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987758994102478, + 0.9943051934242249, + 0.9987001419067383, + 0.9987443685531616, + 0.9995019435882568, + 0.9989223480224609, + 0.9986701011657715, + 0.9988948702812195, + 0.9988930821418762, + 0.9987727999687195 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987735152244568, + 0.993436872959137, + 0.9986617565155029, + 0.9987180233001709, + 0.9988523721694946, + 0.994866132736206, + 0.9810803532600403, + 0.9989117383956909, + 0.9986458420753479 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 25, + "final_proportion": 0.8928571428571429, + "final_counts": { + "POSITIVE": 25, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.8928571428571429, + "NEGATIVE": 0.10714285714285714 + } + } }, { "season_code": "202303", @@ -296416,7 +606576,7 @@ "11:35", "12:50", "KGL 123 - Kline Geology Laboratory 123", - "https:\/\/map.yale.edu\/?id=1910#!m\/559996" + "https://map.yale.edu/?id=1910#!m/559996" ] ], "Wednesday": [ @@ -296424,7 +606584,7 @@ "11:35", "12:50", "KGL 123 - Kline Geology Laboratory 123", - "https:\/\/map.yale.edu\/?id=1910#!m\/559996" + "https://map.yale.edu/?id=1910#!m/559996" ] ] }, @@ -296436,10 +606596,179 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88626\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88626/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9616516828536987, + 0.9991488456726074, + 0.9987151622772217, + 0.9985394477844238, + 0.997833788394928, + 0.9944553971290588, + 0.9984799027442932, + 0.9988189339637756, + 0.9987075328826904, + 0.9986205101013184, + 0.9985404014587402, + 0.9857189059257507, + 0.9965841770172119, + 0.9981497526168823, + 0.9863883852958679, + 0.9976390600204468, + 0.9987404942512512, + 0.998824417591095 + ], + "sentiment_counts": { + "POSITIVE": 14, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.7777777777777778, + "NEGATIVE": 0.2222222222222222 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7777777777777778 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988048076629639, + 0.9962473511695862, + 0.9763972759246826, + 0.9987497329711914, + 0.9987862706184387, + 0.9987986087799072, + 0.9989312291145325, + 0.9983497858047485, + 0.9989297986030579, + 0.9984152317047119, + 0.9933351278305054, + 0.9987958669662476, + 0.9872199296951294 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9230769230769231, + "NEGATIVE": 0.07692307692307693 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9230769230769231 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9980417490005493, + 0.9986867308616638, + 0.9955644607543945, + 0.9989124536514282, + 0.8754094839096069, + 0.9989270567893982, + 0.9983639121055603, + 0.9988704323768616, + 0.9989215135574341, + 0.9989198446273804, + 0.9989339709281921, + 0.9989355206489563, + 0.9988957643508911, + 0.9988433122634888, + 0.9986721277236938, + 0.997117280960083, + 0.9989383816719055, + 0.9963498115539551, + 0.99828040599823, + 0.9988318085670471 + ], + "sentiment_counts": { + "POSITIVE": 18, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "final_label": "POSITIVE", + "final_count": 44, + "final_proportion": 0.8627450980392157, + "final_counts": { + "POSITIVE": 44, + "NEGATIVE": 7 + }, + "final_distribution": { + "POSITIVE": 0.8627450980392157, + "NEGATIVE": 0.13725490196078433 + } + } }, { "season_code": "202303", @@ -296496,10 +606825,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88644\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88644/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -296548,10 +606905,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88647\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88647/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -296592,7 +606977,7 @@ "13:00", "14:15", "WTS A53 - Watson Center 60 Sachem Street A53", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -296600,7 +606985,7 @@ "13:00", "14:15", "WTS A53 - Watson Center 60 Sachem Street A53", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -296612,10 +606997,139 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88636\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88636/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.959989070892334, + 0.9527761340141296, + 0.9988590478897095, + 0.9956971406936646, + 0.9916312098503113, + 0.9925770163536072, + 0.9988011121749878, + 0.9887248873710632, + 0.9985653758049011, + 0.994544506072998 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 9 + }, + "sentiment_distribution": { + "NEGATIVE": 0.1, + "POSITIVE": 0.9 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9892269372940063, + 0.9988239407539368, + 0.9988969564437866, + 0.9983755350112915, + 0.9992402791976929, + 0.9986226558685303, + 0.9988595247268677, + 0.9988923668861389, + 0.9962666630744934, + 0.9983270764350891, + 0.9988239407539368 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9090909090909091 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9967639446258545, + 0.9989181756973267, + 0.9988960027694702, + 0.9984618425369263, + 0.9987673759460449, + 0.9987307190895081, + 0.9984799027442932, + 0.9994161128997803, + 0.9987605810165405, + 0.9988779425621033 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 8 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2, + "POSITIVE": 0.8 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 27, + "final_proportion": 0.8709677419354839, + "final_counts": { + "NEGATIVE": 4, + "POSITIVE": 27 + }, + "final_distribution": { + "NEGATIVE": 0.12903225806451613, + "POSITIVE": 0.8709677419354839 + } + } }, { "season_code": "202303", @@ -296653,7 +607167,7 @@ "13:00", "14:15", "LUCE 101 - Luce Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ], "Wednesday": [ @@ -296661,26 +607175,321 @@ "13:00", "14:15", "LUCE 101 - Luce Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" - ] - ] - }, - "skills": [], - "areas": [], - "flags": [], - "regnotes": "", - "rp_attr": "", - "classnotes": "", - "final_exam": "", - "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88628\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "Prerequisites: maturity with probability theory (equivalent of 241\/541) and linear algebra and a familiarity with basic algorithms and mathematical statistics.", + "https://map.yale.edu/?id=1910#!m/559960" + ] + ] + }, + "skills": [], + "areas": [], + "flags": [], + "regnotes": "", + "rp_attr": "", + "classnotes": "", + "final_exam": "", + "course_home_url": "", + "syllabus_url": "https://yale.instructure.com/courses/88628/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984930753707886, + 0.9971328973770142, + 0.9913679957389832, + 0.9964497089385986, + 0.9988545179367065, + 0.9978033900260925, + 0.9977109432220459, + 0.9983906745910645, + 0.9982014894485474, + 0.9987969398498535, + 0.9984523057937622, + 0.9983550906181335, + 0.9988105297088623, + 0.9988717436790466, + 0.9936972260475159, + 0.990358293056488, + 0.9970536231994629, + 0.9988143444061279, + 0.9886018633842468, + 0.9984140396118164, + 0.998813271522522, + 0.9984064698219299, + 0.5007714629173279, + 0.713501513004303, + 0.9984442591667175, + 0.9994812607765198, + 0.9967502355575562, + 0.9958806037902832, + 0.9980225563049316, + 0.9854627847671509, + 0.9987164735794067, + 0.9984471201896667, + 0.9949249029159546, + 0.9933316111564636, + 0.948601484298706, + 0.9873563051223755, + 0.9986774325370789, + 0.9974128603935242, + 0.9952736496925354 + ], + "sentiment_counts": { + "POSITIVE": 36, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.9230769230769231, + "NEGATIVE": 0.07692307692307693 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9230769230769231 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988769888877869, + 0.9989079236984253, + 0.9987608194351196, + 0.9988621473312378, + 0.9988833069801331, + 0.9988067150115967, + 0.9989239573478699, + 0.9988184571266174, + 0.9986715316772461, + 0.9989055395126343, + 0.9965481162071228, + 0.989241898059845, + 0.9987882971763611, + 0.9989022016525269, + 0.998772919178009, + 0.9963880777359009, + 0.9987810254096985, + 0.9922577738761902, + 0.9982507824897766, + 0.998790442943573, + 0.9987995624542236, + 0.9978054165840149, + 0.9986760020256042, + 0.9919901490211487, + 0.9989097118377686, + 0.998448371887207, + 0.9984071850776672, + 0.9937353730201721, + 0.9988321661949158, + 0.9989159107208252, + 0.9988968372344971, + 0.9987792372703552 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 29 + }, + "sentiment_distribution": { + "NEGATIVE": 0.09375, + "POSITIVE": 0.90625 + }, + "sentiment_overall": [ + "POSITIVE", + 0.90625 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994398951530457, + 0.9987473487854004, + 0.9987169504165649, + 0.9988712668418884, + 0.9988048076629639, + 0.9989204406738281, + 0.9974592328071594, + 0.9895263910293579, + 0.9988998174667358, + 0.998870313167572, + 0.9988641738891602, + 0.9974302649497986, + 0.9932519793510437, + 0.9995096921920776, + 0.9987813830375671, + 0.9987897276878357, + 0.999488115310669, + 0.9985675811767578, + 0.9988899827003479, + 0.9988951086997986, + 0.9980813264846802, + 0.9994547963142395, + 0.9989116191864014, + 0.9986686706542969, + 0.9994686245918274, + 0.9963410496711731, + 0.9974592328071594, + 0.9986442923545837, + 0.9988836646080017, + 0.9979110360145569, + 0.998683750629425, + 0.9985698461532593, + 0.9948307871818542, + 0.9982553124427795, + 0.9978979825973511, + 0.9986503720283508, + 0.9974119067192078, + 0.998097836971283, + 0.997117280960083, + 0.9986039996147156, + 0.9989074468612671, + 0.9988400340080261, + 0.9972360730171204 + ], + "sentiment_counts": { + "NEGATIVE": 6, + "POSITIVE": 37 + }, + "sentiment_distribution": { + "NEGATIVE": 0.13953488372093023, + "POSITIVE": 0.8604651162790697 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8604651162790697 + ] + }, + "final_label": "POSITIVE", + "final_count": 102, + "final_proportion": 0.8947368421052632, + "final_counts": { + "POSITIVE": 102, + "NEGATIVE": 12 + }, + "final_distribution": { + "POSITIVE": 0.8947368421052632, + "NEGATIVE": 0.10526315789473684 + } + } + }, + { + "season_code": "202303", + "requirements": "Prerequisites: maturity with probability theory (equivalent of 241/541) and linear algebra and a familiarity with basic algorithms and mathematical statistics.", "description": "Modern statistical tasks require the use of both computationally efficient and statistically accurate methods. But, can we always find a computationally efficient method that achieves the information-theoretic optimal statistical guarantees? If not, is this an artifact of our techniques, or a potentially fundamental source of computational hardness? This course surveys a new and growing research area studying such questions on the intersection of high dimensional statistics and theoretical computer science. We discuss various tools to explain the presence of such \"computational-to-statistical gaps\" for several high dimensional inference models. These tools include the \"low-degree polynomials\" method, statistical query lower bounds, and more. We also discuss connections with other fields such as statistical physics and cryptography.", "short_title": "Computational and Statistical...", "title": "Computational and Statistical Trade-offs in High Dimensional Statistics", @@ -296725,15 +607534,43 @@ "classnotes": "Enrollment limited; requires permission of the instructor", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91453\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "", - "description": "There are two main branches of technical computing: scientific computing and machine learning.\u00a0Recently, there has been a convergence of the two disciplines in the emerging scientific machine learning (SciML) field. The main objective of this course is to teach theory, algorithms, and implementation of SciML techniques to graduate students. This course entails various methods to solve a broad range of computational problems frequently encountered in solid mechanics, fluid mechanics,\u00a0nondestructive evaluation of materials, systems biology, chemistry, and non-linear dynamics. The\u00a0topics in this course cover multi-fidelity learning, physics-informed neural networks, deep neural\u00a0operators, uncertainty quantification, and parallel computing. Certain materials are discussed\u00a0through student presentations of selected publications in the area.\u00a0Students should have prior coursework in advanced calculus, linear algebra, and probability.\u00a0Having a background in scientific computing, Python, and\/or machine learning is helpful but not\u00a0mandatory.", + "syllabus_url": "https://yale.instructure.com/courses/91453/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } + }, + { + "season_code": "202303", + "requirements": "", + "description": "There are two main branches of technical computing: scientific computing and machine learning.\u00a0Recently, there has been a convergence of the two disciplines in the emerging scientific machine learning (SciML) field. The main objective of this course is to teach theory, algorithms, and implementation of SciML techniques to graduate students. This course entails various methods to solve a broad range of computational problems frequently encountered in solid mechanics, fluid mechanics,\u00a0nondestructive evaluation of materials, systems biology, chemistry, and non-linear dynamics. The\u00a0topics in this course cover multi-fidelity learning, physics-informed neural networks, deep neural\u00a0operators, uncertainty quantification, and parallel computing. Certain materials are discussed\u00a0through student presentations of selected publications in the area.\u00a0Students should have prior coursework in advanced calculus, linear algebra, and probability.\u00a0Having a background in scientific computing, Python, and/or machine learning is helpful but not\u00a0mandatory.", "short_title": "Scientific Machine Learning", "title": "Scientific Machine Learning", "school": "GS", @@ -296785,10 +607622,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92517\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92517/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -296828,10 +607693,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88649\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88649/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -296868,7 +607761,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -296907,7 +607828,7 @@ "10:30", "11:20", "LC 101 - Linsly-Chittenden Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -296915,7 +607836,7 @@ "10:30", "11:20", "LC 101 - Linsly-Chittenden Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Friday": [ @@ -296923,7 +607844,7 @@ "10:30", "11:20", "LC 101 - Linsly-Chittenden Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -296937,10 +607858,219 @@ "classnotes": "", "final_exam": "Monday, December 18, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88718\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88718/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988231062889099, + 0.9988858103752136, + 0.9983605742454529, + 0.9988107681274414, + 0.9982770681381226, + 0.9989277720451355, + 0.9987346529960632, + 0.9984032511711121, + 0.9987828135490417, + 0.9988987445831299, + 0.9988676309585571, + 0.9981400966644287, + 0.997219443321228, + 0.9988577365875244, + 0.9989144802093506, + 0.9971745014190674, + 0.9987868666648865, + 0.9988917708396912, + 0.9988013505935669, + 0.9984847903251648, + 0.998635470867157, + 0.9988717436790466, + 0.9988865256309509 + ], + "sentiment_counts": { + "POSITIVE": 23, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988542795181274, + 0.9994519352912903, + 0.9989374279975891, + 0.9988250136375427, + 0.9994720816612244, + 0.9988688826560974, + 0.9989054203033447, + 0.9989150762557983, + 0.9988266825675964, + 0.9989055395126343, + 0.998925507068634, + 0.9974014759063721, + 0.9989299178123474, + 0.9987521171569824, + 0.9987943172454834, + 0.9988967180252075, + 0.9988310933113098, + 0.9987579584121704, + 0.9988678693771362, + 0.9989342093467712, + 0.9989157915115356 + ], + "sentiment_counts": { + "POSITIVE": 19, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.9047619047619048, + "NEGATIVE": 0.09523809523809523 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9047619047619048 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998916745185852, + 0.9988417029380798, + 0.9988968372344971, + 0.998767614364624, + 0.9801360368728638, + 0.9987131357192993, + 0.9961066842079163, + 0.9989051818847656, + 0.9989321827888489, + 0.9989320635795593, + 0.9980402588844299, + 0.9989163875579834, + 0.9989149570465088, + 0.9982553124427795, + 0.9983333945274353, + 0.9981885552406311, + 0.9987700581550598, + 0.9988411068916321, + 0.997117280960083, + 0.9988810420036316, + 0.9994977712631226, + 0.9988988637924194, + 0.9988895058631897, + 0.9983822107315063, + 0.9979808926582336, + 0.9989179372787476, + 0.9989057779312134 + ], + "sentiment_counts": { + "POSITIVE": 25, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.9259259259259259, + "NEGATIVE": 0.07407407407407407 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9259259259259259 + ] + }, + "final_label": "POSITIVE", + "final_count": 67, + "final_proportion": 0.9436619718309859, + "final_counts": { + "POSITIVE": 67, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.9436619718309859, + "NEGATIVE": 0.056338028169014086 + } + } }, { "season_code": "202303", @@ -296973,7 +608103,7 @@ "14:30", "15:20", "HQ C65 - Humanities Quadrangle C65", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -296990,7 +608120,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -297023,7 +608181,7 @@ "16:30", "17:20", "HQ 307 - Humanities Quadrangle 307", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -297040,7 +608198,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -297073,7 +608259,7 @@ "9:25", "10:15", "WTS A38 - Watson Center 60 Sachem Street A38", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -297090,7 +608276,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -297123,7 +608337,7 @@ "10:30", "11:20", "WTS B30 - Watson Center 60 Sachem Street B30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -297140,7 +608354,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -297173,7 +608415,7 @@ "10:30", "11:20", "WTS B74 - Watson Center 60 Sachem Street B74", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -297190,7 +608432,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -297223,7 +608493,7 @@ "11:35", "12:25", "WTS B31 - Watson Center 60 Sachem Street B31", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -297240,7 +608510,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -297283,10 +608581,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89099\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89099/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -297326,7 +608652,7 @@ "10:30", "11:20", "LORIA 351 - Loria Center 351", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ], "Wednesday": [ @@ -297334,7 +608660,7 @@ "10:30", "11:20", "LORIA 351 - Loria Center 351", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -297348,7 +608674,7 @@ "YC HistofArt: 1500-1800", "YC HistofArt: Transchron", "YC HistofArt: Transregional", - "YC HistofArt: Asia\/Near East", + "YC HistofArt: Asia/Near East", "YC MDVL: Nr East & N Africa" ], "regnotes": "", @@ -297356,10 +608682,165 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88363\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88363/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9968078136444092, + 0.9988483190536499, + 0.8139111399650574, + 0.9988471269607544, + 0.9988279938697815, + 0.9989147186279297, + 0.9962338805198669, + 0.9989122152328491, + 0.998839795589447, + 0.998469889163971, + 0.9970951080322266, + 0.9986948370933533, + 0.9988358616828918 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9230769230769231, + "NEGATIVE": 0.07692307692307693 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9230769230769231 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988831877708435, + 0.9985210299491882, + 0.9953655004501343, + 0.919914960861206, + 0.9978929162025452, + 0.9989249110221863, + 0.9988729357719421, + 0.9989274144172668, + 0.9989389777183533, + 0.9987909197807312, + 0.9986699819564819, + 0.9984334111213684, + 0.9893514513969421, + 0.9987282156944275, + 0.9985567927360535 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.7333333333333333, + "NEGATIVE": 0.26666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7333333333333333 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988988637924194, + 0.9989264607429504, + 0.9985346794128418, + 0.9824399948120117, + 0.9946346282958984, + 0.9986942410469055, + 0.9983599781990051, + 0.9989287257194519, + 0.9989047050476074, + 0.9989331364631653, + 0.998633086681366, + 0.9890312552452087, + 0.997117280960083, + 0.9877563714981079, + 0.9994623064994812, + 0.9989323019981384 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.8125, + "NEGATIVE": 0.1875 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8125 + ] + }, + "final_label": "POSITIVE", + "final_count": 36, + "final_proportion": 0.8181818181818182, + "final_counts": { + "POSITIVE": 36, + "NEGATIVE": 8 + }, + "final_distribution": { + "POSITIVE": 0.8181818181818182, + "NEGATIVE": 0.18181818181818182 + } + } }, { "season_code": "202303", @@ -297393,7 +608874,7 @@ "10:30", "11:20", "LC 213 - Linsly-Chittenden Hall 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -297410,7 +608891,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -297444,7 +608953,7 @@ "17:00", "17:50", "HQ C15 - Humanities Quadrangle C15", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -297461,7 +608970,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -297520,7 +609057,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -297554,7 +609119,7 @@ "19:00", "19:50", "HQ 313 - Humanities Quadrangle 313", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -297571,7 +609136,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -297622,7 +609215,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -297656,7 +609277,7 @@ "17:00", "17:50", "HQ C15 - Humanities Quadrangle C15", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -297673,7 +609294,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -297732,7 +609381,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -297791,7 +609468,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -297825,7 +609530,7 @@ "17:00", "17:50", "HQ 313 - Humanities Quadrangle 313", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -297842,7 +609547,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -297876,7 +609609,7 @@ "10:30", "11:20", "WLH 014 - William L. Harkness Hall 014", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -297893,7 +609626,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -297930,7 +609691,7 @@ "11:35", "12:50", "WTS B60 - Watson Center 60 Sachem Street B60", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -297938,7 +609699,7 @@ "11:35", "12:50", "WTS B60 - Watson Center 60 Sachem Street B60", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -297952,10 +609713,38 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92711\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/92711/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -297993,7 +609782,7 @@ "15:30", "17:20", "RKZ 02 - Rosenkranz Hall 02", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -298010,10 +609799,93 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92391\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92391/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988240599632263, + 0.9988266825675964, + 0.9988541603088379 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988994598388672, + 0.998897910118103 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.997117280960083, + 0.9989073276519775, + 0.9987927675247192, + 0.9988981485366821 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 9 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -298050,10 +609922,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89023\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89023/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -298091,7 +609991,7 @@ "9:25", "11:15", "WTS A51 - Watson Center 60 Sachem Street A51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -298105,15 +610005,148 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89136\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89136/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "", - "description": "South Asian Americans have appeared on U.S. stages since the late nineteenth century, yet only in the last quarter century have plays and performances by South Asian Americans begun to dismantle dominant cultural representations of South Asian and South Asian American communities and to imagine new ways of belonging. This seminar introduces you to contemporary works of performance (plays, stand-up sets, multimedia events) written and created by U.S.-based artists of South Asian descent as well as artists of the South Asian diaspora whose works have had an impact on U.S. audiences. With awareness that the South Asian American diaspora comprises multiple, contested, and contingent identities, we investigate how artists have worked to manifest complex representations of South Asian Americans onstage, challenge institutional and professional norms, and navigate the perils and pleasures of becoming visible. No prior experience with or study of theater\/performance required. Students in all years and majors welcome.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987955093383789, + 0.9969600439071655, + 0.9988204836845398, + 0.9984005093574524, + 0.998279333114624, + 0.9983684420585632, + 0.9984514713287354, + 0.9989140033721924, + 0.9988633394241333, + 0.9985148310661316 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989134073257446, + 0.9944518208503723, + 0.99882572889328, + 0.9981443881988525, + 0.9984273910522461, + 0.9977352619171143, + 0.9984788298606873, + 0.9989392161369324, + 0.9987186193466187, + 0.9988528490066528, + 0.9937753677368164 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989332556724548, + 0.9989063739776611, + 0.9975773692131042, + 0.9986584186553955, + 0.9980825185775757, + 0.9986458420753479, + 0.9957613348960876, + 0.9989250302314758, + 0.9989309906959534, + 0.9988278746604919, + 0.9989277720451355, + 0.998668909072876 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9166666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 31, + "final_proportion": 0.9393939393939394, + "final_counts": { + "POSITIVE": 31, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9393939393939394, + "NEGATIVE": 0.06060606060606061 + } + } + }, + { + "season_code": "202303", + "requirements": "", + "description": "South Asian Americans have appeared on U.S. stages since the late nineteenth century, yet only in the last quarter century have plays and performances by South Asian Americans begun to dismantle dominant cultural representations of South Asian and South Asian American communities and to imagine new ways of belonging. This seminar introduces you to contemporary works of performance (plays, stand-up sets, multimedia events) written and created by U.S.-based artists of South Asian descent as well as artists of the South Asian diaspora whose works have had an impact on U.S. audiences. With awareness that the South Asian American diaspora comprises multiple, contested, and contingent identities, we investigate how artists have worked to manifest complex representations of South Asian Americans onstage, challenge institutional and professional norms, and navigate the perils and pleasures of becoming visible. No prior experience with or study of theater/performance required. Students in all years and majors welcome.", "short_title": "Drama in Diaspora: South Asia...", "title": "Drama in Diaspora: South Asian American Theater and Performance", "school": "YC", @@ -298148,7 +610181,7 @@ "15:30", "17:20", "LC 204 - Linsly-Chittenden Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -298165,10 +610198,99 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89007\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89007/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988683462142944, + 0.9988677501678467, + 0.9980084300041199 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9943370223045349, + 0.997211754322052, + 0.998895525932312, + 0.9989205598831177 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998256504535675, + 0.9876799583435059, + 0.9898523688316345, + 0.9987894892692566 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 0.9090909090909091, + "final_counts": { + "POSITIVE": 10, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + } + } }, { "season_code": "202303", @@ -298205,7 +610327,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -298248,7 +610398,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -298312,12 +610490,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "SBCR 120, or equivalent. \u00a0Course taught through distance learning using videoconferencing technology from Columbia University. Enrollment limited; interested students should e-mail minjin.hashbat@yale.edu for more information.", - "description": "This intermediate course is a continuation of the elementary course and is intended to enhance overall communicative competence in the language. This course moves forward from the study of the fundamental systems and vocabulary of the Bosnian\/Croatian\/Serbian to rich exposure to the spoken and written language with the wide range of speakers and situations.", + "description": "This intermediate course is a continuation of the elementary course and is intended to enhance overall communicative competence in the language. This course moves forward from the study of the fundamental systems and vocabulary of the Bosnian/Croatian/Serbian to rich exposure to the spoken and written language with the wide range of speakers and situations.", "short_title": "Intermediate Bosnian Croatian...", "title": "Intermediate Bosnian Croatian Serbian I", "school": "YC", @@ -298376,7 +610582,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -298419,11 +610653,39 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", - "requirements": "Prerequisite: MGT 631\/HPM 631; MGT 421; or one of the following electives: MGT 865, MGT 621, or MGT 874. Students who have not taken one of these courses must demonstrate experience with innovation and entrepreneurship either through professional experience or participation in extra-curricular programming through Innovate Health Yale (IHY at SPH), Center for Business and the Environment (CBEY at YSE), Program on Social Enterprise (PSE at SOM), Yale Center for Collaborative Arts and Media (CCAM), Dwight Hall, or Center for Innovative Thinking at Yale (CITY).", + "requirements": "Prerequisite: MGT 631/HPM 631; MGT 421; or one of the following electives: MGT 865, MGT 621, or MGT 874. Students who have not taken one of these courses must demonstrate experience with innovation and entrepreneurship either through professional experience or participation in extra-curricular programming through Innovate Health Yale (IHY at SPH), Center for Business and the Environment (CBEY at YSE), Program on Social Enterprise (PSE at SOM), Yale Center for Collaborative Arts and Media (CCAM), Dwight Hall, or Center for Innovative Thinking at Yale (CITY).", "description": "Social Entrepreneurship Lab is a practice-based course in which students from across campus form interdisciplinary teams to work on a social challenge of their choice. Teams include students from SOM, SPH, YDS, School of the Environment, Jackson, and other schools and programs. Students start by identifying a topic area of focus, then form teams based on shared interests and complementary skills. Over the course of thirteen weeks, student teams delve into understanding the challenge through root cause analysis, research on existing solutions and populations affected, then apply human-centered design thinking and systems thinking to design, prototype, test, and iterate solutions.\u00a0Using tools such as the theory of change, logframe, business canvas, and social marketing strategy, teams build and test their impact models, operational models, and revenue models. Readings and assignments from the textbook Introduction to Social Entrepreneurship are used to guide this journey. These include technical templates, case studies, and interviews with social entrepreneurs and thought leaders in different sectors and geographies around the world.", "short_title": "Social Entrepreneurship Lab", "title": "Social Entrepreneurship Lab", @@ -298459,7 +610721,7 @@ "16:10", "19:10", "EVANS 4400 - Edward P Evans Hall 4400", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -298471,10 +610733,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91260\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91260/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -298511,7 +610801,7 @@ "12:00", "12:50", "LEPH WINSL - Laboratory of EPH WINSL", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ] }, @@ -298523,10 +610813,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91075\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91075/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -298575,10 +610893,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91078\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91078/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -298616,24 +610962,52 @@ "17:00", "18:50", "CO47 106A - 47 College Street (CLP) 106A", - "https:\/\/map.yale.edu\/?id=1910#!m\/559997" + "https://map.yale.edu/?id=1910#!m/559997" ] ] }, "skills": [], "areas": [], "flags": [ - "PH: Global Health, Psychosocial\/Social and behavioral\/Anthropology" + "PH: Global Health, Psychosocial/Social and behavioral/Anthropology" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91082\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91082/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -298673,7 +611047,7 @@ "9:00", "11:00", "WTS B52 - Watson Center 60 Sachem Street B52", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -298685,10 +611059,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89996\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89996/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -298725,24 +611127,52 @@ "15:00", "16:50", "LEPH 101 - Laboratory of EPH 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ] }, "skills": [], "areas": [], "flags": [ - "PH: Global Health, Psychosocial\/Social and behavioral\/Anthropology" + "PH: Global Health, Psychosocial/Social and behavioral/Anthropology" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91085\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91085/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -298779,29 +611209,57 @@ "13:00", "14:50", "LEPH WINSL - Laboratory of EPH WINSL", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ] }, "skills": [], "areas": [], "flags": [ - "PH: Global Health, Psychosocial\/Social and behavioral\/Anthropology" + "PH: Global Health, Psychosocial/Social and behavioral/Anthropology" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91089\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91089/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "This course engages students in conceptualizing stigma as a fundamental cause of adverse health. After reviewing conceptual models of stigma, students examine the multiple mechanisms\u2014both structural and individual\u2014through which stigma compromises the health of a large proportion of U.S. and global populations. Given the relevance of identity and stress to the study of stigma and health, the empirical platform of the course is complemented by considering the relevance of conceptual models of identity, intersectionality, and minority stress. The course reviews social\/behavioral and epidemiological methods for studying stigma. Students compare individual- and structural-level interventions to reduce both stigma at its source and its downstream impact on individual health. Class content is organized around themes that cut across all stigmatized conditions and identities. However, students devote course assignments to individual stigmas of their choice. Therefore, students can expect to explain stigma as a predicament that affects nearly all individuals at some point in the life course while developing expertise in one or two stigmas that are particularly relevant to their interests.", + "description": "This course engages students in conceptualizing stigma as a fundamental cause of adverse health. After reviewing conceptual models of stigma, students examine the multiple mechanisms\u2014both structural and individual\u2014through which stigma compromises the health of a large proportion of U.S. and global populations. Given the relevance of identity and stress to the study of stigma and health, the empirical platform of the course is complemented by considering the relevance of conceptual models of identity, intersectionality, and minority stress. The course reviews social/behavioral and epidemiological methods for studying stigma. Students compare individual- and structural-level interventions to reduce both stigma at its source and its downstream impact on individual health. Class content is organized around themes that cut across all stigmatized conditions and identities. However, students devote course assignments to individual stigmas of their choice. Therefore, students can expect to explain stigma as a predicament that affects nearly all individuals at some point in the life course while developing expertise in one or two stigmas that are particularly relevant to their interests.", "short_title": "Stigma and Health", "title": "Stigma and Health", "school": "PH", @@ -298833,24 +611291,52 @@ "13:00", "14:50", "LEPH 115 - Laboratory of EPH 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ] }, "skills": [], "areas": [], "flags": [ - "PH: Global Health, Psychosocial\/Social and behavioral\/Anthropology" + "PH: Global Health, Psychosocial/Social and behavioral/Anthropology" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91097\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91097/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -298888,28 +611374,56 @@ "9:25", "11:15", "BAKER 124 - Baker Hall 124", - "https:\/\/map.yale.edu\/?id=1910#!m\/563680" + "https://map.yale.edu/?id=1910#!m/563680" ] ] }, "skills": [], "areas": [], "flags": [ - "PH: Global Health, Psychosocial\/Social and behavioral\/Anthropology" + "PH: Global Health, Psychosocial/Social and behavioral/Anthropology" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91819\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91819/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", - "requirements": "Permission of the instructors required. The class is designed for students who are also taking, or have taken, EMD 596\/SBS 596. In addition to listing this course among experiential course selections, non-Law students should submit a CV and a statement of interest by 4:30 pm on August 12. This course meets according to the Law School calendar and may establish special sessions and makeup sessions to accommodate any difference between schedules on the main campus and in the Law School.", + "requirements": "Permission of the instructors required. The class is designed for students who are also taking, or have taken, EMD 596/SBS 596. In addition to listing this course among experiential course selections, non-Law students should submit a CV and a statement of interest by 4:30 pm on August 12. This course meets according to the Law School calendar and may establish special sessions and makeup sessions to accommodate any difference between schedules on the main campus and in the Law School.", "description": "This is an experiential learning course focused on domestic and transnational health justice work. Health justice work focuses on health equity and is committed to addressing the fundamental social causes of disease. It also emphases power-building and political economy, instead of viewing health as a technocratic field where issues are resolved through application of expertise alone. Students work on projects supervised by faculty and in collaboration with outside partners. Projects change according to the needs of our partners and are generally determined at the beginning of each term. Credits vary according to the time commitment required by the projects. The course is designed for public health and law students, but other students may enroll where appropriate given project needs.", "short_title": "Health Justice Practicum", "title": "Health Justice Practicum", @@ -298955,10 +611469,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91868\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91868/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -298995,24 +611537,52 @@ "10:00", "11:50", "LEPH 101 - Laboratory of EPH 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/560065" + "https://map.yale.edu/?id=1910#!m/560065" ] ] }, "skills": [], "areas": [], "flags": [ - "PH: Global Health, Psychosocial\/Social and behavioral\/Anthropology" + "PH: Global Health, Psychosocial/Social and behavioral/Anthropology" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/91103\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/91103/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -299055,7 +611625,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -299092,7 +611690,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -299135,7 +611761,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -299172,7 +611826,7 @@ "13:30", "15:30", "WLH 204 - William L. Harkness Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -299191,10 +611845,103 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89314\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89314/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987689852714539, + 0.9989023208618164, + 0.9988424181938171, + 0.9984397292137146, + 0.9980140924453735 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989247918128967, + 0.998736560344696, + 0.9969748258590698, + 0.9987748265266418, + 0.9982990622520447 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9972794651985168, + 0.9989386200904846, + 0.9988201260566711, + 0.9975976347923279 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 14 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -299247,10 +611994,97 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89333\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89333/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986521601676941, + 0.9986444115638733, + 0.9988685846328735, + 0.9983313679695129 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988582134246826, + 0.9988908171653748 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988886713981628, + 0.9989088773727417, + 0.9985883831977844, + 0.9989132881164551, + 0.998880922794342 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 11 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -299287,7 +612121,7 @@ "13:30", "15:00", "WLH 112 - William L. Harkness Hall 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -299301,10 +612135,95 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89334\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89334/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9995087385177612, + 0.9988089799880981, + 0.9988983869552612 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994933605194092, + 0.9989253878593445, + 0.9972078204154968 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994891881942749, + 0.9989385008811951, + 0.9989233613014221 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 0.6666666666666666, + "final_counts": { + "NEGATIVE": 3, + "POSITIVE": 6 + }, + "final_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + } + } }, { "season_code": "202303", @@ -299344,7 +612263,7 @@ "11:35", "12:25", "WTS B35 - Watson Center 60 Sachem Street B35", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Tuesday": [ @@ -299352,7 +612271,7 @@ "11:35", "12:25", "WTS B35 - Watson Center 60 Sachem Street B35", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -299360,7 +612279,7 @@ "11:35", "12:25", "WTS B35 - Watson Center 60 Sachem Street B35", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -299368,7 +612287,7 @@ "11:35", "12:25", "WTS B35 - Watson Center 60 Sachem Street B35", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Friday": [ @@ -299376,7 +612295,7 @@ "11:35", "12:25", "WTS B35 - Watson Center 60 Sachem Street B35", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -299390,10 +612309,38 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88656\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88656/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -299433,7 +612380,7 @@ "10:30", "11:20", "WTS B35 - Watson Center 60 Sachem Street B35", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -299441,7 +612388,7 @@ "10:30", "11:20", "WTS B35 - Watson Center 60 Sachem Street B35", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Friday": [ @@ -299449,7 +612396,7 @@ "10:30", "11:20", "WTS B35 - Watson Center 60 Sachem Street B35", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -299463,10 +612410,81 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88658\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88658/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.998731791973114 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989050626754761 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988837838172913 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 3, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 3 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -299504,7 +612522,7 @@ "16:00", "17:15", "LUCE 302 - Luce Hall 302", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ], "Wednesday": [ @@ -299512,7 +612530,7 @@ "16:00", "17:15", "LUCE 302 - Luce Hall 302", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ] }, @@ -299526,15 +612544,86 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88968\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88968/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "", - "description": "An introduction to Sanskrit language and grammar. Focus on learning to read and translate basic Sanskrit sentences in the Indian Devanagari script. No prior background in Sanskrit assumed. Credit only on completion of SKRT 520\/LING 525.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988308548927307 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988378882408142 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988062381744385 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 3, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 3 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } + }, + { + "season_code": "202303", + "requirements": "", + "description": "An introduction to Sanskrit language and grammar. Focus on learning to read and translate basic Sanskrit sentences in the Indian Devanagari script. No prior background in Sanskrit assumed. Credit only on completion of SKRT 520/LING 525.", "short_title": "Introductory Sanskrit I", "title": "Introductory Sanskrit I", "school": "GS", @@ -299569,7 +612658,7 @@ "11:35", "12:25", "WTS B35 - Watson Center 60 Sachem Street B35", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Tuesday": [ @@ -299577,7 +612666,7 @@ "11:35", "12:25", "WTS B35 - Watson Center 60 Sachem Street B35", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -299585,7 +612674,7 @@ "11:35", "12:25", "WTS B35 - Watson Center 60 Sachem Street B35", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -299593,7 +612682,7 @@ "11:35", "12:25", "WTS B35 - Watson Center 60 Sachem Street B35", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Friday": [ @@ -299601,7 +612690,7 @@ "11:35", "12:25", "WTS B35 - Watson Center 60 Sachem Street B35", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -299613,14 +612702,42 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88656\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88656/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", - "requirements": "Prerequisite: SKRT 520\/LING 525 or equivalent.", + "requirements": "Prerequisite: SKRT 520/LING 525 or equivalent.", "description": "The first half of a two-term sequence aimed at helping students develop the skills necessary to read texts written in Sanskrit. Readings include selections from the Hitopadesa, Kathasaritsagara, Mahabharata, and Bhagavadgita.", "short_title": "Intermediate Sanskrit I", "title": "Intermediate Sanskrit I", @@ -299656,7 +612773,7 @@ "10:30", "11:20", "WTS B35 - Watson Center 60 Sachem Street B35", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -299664,7 +612781,7 @@ "10:30", "11:20", "WTS B35 - Watson Center 60 Sachem Street B35", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Friday": [ @@ -299672,7 +612789,7 @@ "10:30", "11:20", "WTS B35 - Watson Center 60 Sachem Street B35", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -299684,10 +612801,81 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88658\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88658/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.998731791973114 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989050626754761 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988837838172913 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 3, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 3 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -299725,7 +612913,7 @@ "16:00", "17:15", "LUCE 302 - Luce Hall 302", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ], "Wednesday": [ @@ -299733,7 +612921,7 @@ "16:00", "17:15", "LUCE 302 - Luce Hall 302", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ] }, @@ -299745,10 +612933,81 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88968\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88968/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988308548927307 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988378882408142 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988062381744385 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 3, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 3 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -299786,10 +613045,38 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88939\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88939/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -299835,7 +613122,7 @@ "15:30", "17:20", "HQ 209 - Humanities Quadrangle 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -299849,10 +613136,97 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88908\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88908/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988865256309509, + 0.9988441467285156, + 0.9987584352493286, + 0.9989197254180908 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989302754402161, + 0.998914361000061, + 0.9977319240570068 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988856911659241, + 0.9989079236984253, + 0.9989084005355835, + 0.9989058971405029 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 11 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -299898,7 +613272,7 @@ "15:30", "17:20", "HQ 209 - Humanities Quadrangle 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -299910,10 +613284,97 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88908\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88908/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988865256309509, + 0.9988441467285156, + 0.9987584352493286, + 0.9989197254180908 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989302754402161, + 0.998914361000061, + 0.9977319240570068 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988856911659241, + 0.9989079236984253, + 0.9989084005355835, + 0.9989058971405029 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 11 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -299950,7 +613411,7 @@ "13:30", "15:20", "HQ 127 - Humanities Quadrangle 127", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -299962,10 +613423,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92672\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92672/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -300002,11 +613491,39 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", - "requirements": "Prerequisite: RLST 839\/SMTC 514 or knowledge of Syriac.", + "requirements": "Prerequisite: RLST 839/SMTC 514 or knowledge of Syriac.", "description": "This two-term course is designed to enhance students\u2019 knowledge of the Syriac language by reading a selection of texts, sampling the major genres of classical Syriac literature. By the end of the year, students are familiar with non-vocalized texts and are capable of confronting specific grammatical or lexical problems.", "short_title": "Intermediate Syriac I", "title": "Intermediate Syriac I", @@ -300052,10 +613569,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88747\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88747/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -300105,10 +613650,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88744\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88744/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -300158,10 +613731,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88749\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88749/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -300233,7 +613834,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -300297,7 +613926,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -300336,7 +613993,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -300375,7 +614060,7 @@ "16:00", "17:15", "CO493 208 - 493 College Street 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560001" + "https://map.yale.edu/?id=1910#!m/560001" ] ], "Wednesday": [ @@ -300383,7 +614068,7 @@ "16:00", "17:15", "CO493 208 - 493 College Street 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560001" + "https://map.yale.edu/?id=1910#!m/560001" ] ] }, @@ -300396,11 +614081,114 @@ "rp_attr": "", "classnotes": "", "final_exam": "HTBA", - "course_home_url": "https:\/\/yale.instructure.com\/courses\/88666", + "course_home_url": "https://yale.instructure.com/courses/88666", "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998832643032074, + 0.9988504648208618, + 0.9988884329795837, + 0.9987514019012451 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9944832921028137, + 0.9988648891448975, + 0.9986087679862976, + 0.9994294047355652, + 0.9946029782295227, + 0.998907208442688, + 0.9982296824455261 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9881994724273682, + 0.9989149570465088, + 0.9786842465400696, + 0.9977310299873352, + 0.9989294409751892, + 0.9989251494407654, + 0.9987794756889343 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 0.8888888888888888, + "final_counts": { + "POSITIVE": 16, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + } + } }, { "season_code": "202303", @@ -300437,7 +614225,7 @@ "14:30", "15:45", "WLH 116 - William L. Harkness Hall 116", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -300445,7 +614233,7 @@ "14:30", "15:45", "WLH 116 - William L. Harkness Hall 116", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -300459,10 +614247,171 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88668\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88668/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9980840682983398, + 0.9969667792320251, + 0.9988530874252319, + 0.9995094537734985, + 0.9987761378288269, + 0.9986532926559448, + 0.9846206903457642, + 0.9987660646438599, + 0.9987571239471436, + 0.9987428784370422, + 0.9988980293273926, + 0.9989204406738281, + 0.9988967180252075, + 0.9989168643951416, + 0.998884379863739, + 0.9989017248153687 + ], + "sentiment_counts": { + "POSITIVE": 15, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9375, + "NEGATIVE": 0.0625 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9375 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998933732509613, + 0.9989055395126343, + 0.9988946318626404, + 0.9978063702583313, + 0.9995081424713135, + 0.9988754391670227, + 0.9946914315223694, + 0.9989125728607178, + 0.998216450214386, + 0.9987661838531494, + 0.9995032548904419, + 0.9989020824432373, + 0.9989113807678223, + 0.9987925291061401, + 0.9988958835601807 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.7333333333333333, + "NEGATIVE": 0.26666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7333333333333333 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988847374916077, + 0.9989266991615295, + 0.996527373790741, + 0.9995112419128418, + 0.997117280960083, + 0.9989317059516907, + 0.9951607584953308, + 0.9994288086891174, + 0.9988380074501038, + 0.9995099306106567, + 0.9974592328071594, + 0.9983720183372498, + 0.9988172054290771, + 0.9985513091087341, + 0.9989097118377686, + 0.9989144802093506 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 38, + "final_proportion": 0.8085106382978723, + "final_counts": { + "POSITIVE": 38, + "NEGATIVE": 9 + }, + "final_distribution": { + "POSITIVE": 0.8085106382978723, + "NEGATIVE": 0.19148936170212766 + } + } }, { "season_code": "202303", @@ -300501,7 +614450,7 @@ "10:30", "11:20", "DAVIES AUD - Davies Auditorium, Becton Ctr AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ], "Thursday": [ @@ -300509,7 +614458,7 @@ "10:30", "11:20", "DAVIES AUD - Davies Auditorium, Becton Ctr AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/563685" + "https://map.yale.edu/?id=1910#!m/563685" ] ] }, @@ -300518,7 +614467,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -300526,10 +614475,371 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88356\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88356/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988580942153931, + 0.9988933205604553, + 0.9935644268989563, + 0.9988135099411011, + 0.9988798499107361, + 0.9989247918128967, + 0.998908281326294, + 0.9989100694656372, + 0.9988325238227844, + 0.998337984085083, + 0.9869850277900696, + 0.9988309741020203, + 0.9847789406776428, + 0.9987959861755371, + 0.9987338185310364, + 0.9977317452430725, + 0.9988170862197876, + 0.9988971948623657, + 0.9988811612129211, + 0.9988672733306885, + 0.9987605810165405, + 0.9987659454345703, + 0.9986144304275513, + 0.9989199638366699, + 0.9988048076629639, + 0.9988235831260681, + 0.9986653327941895, + 0.9972550272941589, + 0.9988871216773987, + 0.9989134073257446, + 0.9988449811935425, + 0.9985390901565552, + 0.9988528490066528, + 0.9989044666290283, + 0.9988409876823425, + 0.9987278580665588, + 0.99891197681427, + 0.998818576335907, + 0.9988429546356201, + 0.9987229704856873, + 0.9987930059432983, + 0.9981689453125, + 0.9988182187080383, + 0.9995068311691284, + 0.9989205598831177, + 0.9989033937454224, + 0.9988229870796204 + ], + "sentiment_counts": { + "POSITIVE": 45, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.9574468085106383, + "NEGATIVE": 0.0425531914893617 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9574468085106383 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9973184466362, + 0.9989109039306641, + 0.994390070438385, + 0.9991052746772766, + 0.9988088607788086, + 0.99883633852005, + 0.9989284873008728, + 0.9988529682159424, + 0.998898983001709, + 0.9988847374916077, + 0.999250590801239, + 0.9986774325370789, + 0.9913535714149475, + 0.9956082701683044, + 0.9989192485809326, + 0.9986966252326965, + 0.998903751373291, + 0.9988358616828918, + 0.9978052973747253, + 0.9988744854927063, + 0.9989050626754761, + 0.9988178610801697, + 0.9946604371070862, + 0.968665361404419, + 0.9989261031150818, + 0.9986652135848999, + 0.9986633062362671, + 0.9981853365898132, + 0.9988303780555725, + 0.9968847632408142, + 0.9984055161476135, + 0.9989076852798462, + 0.9989191293716431, + 0.9967622756958008, + 0.9984508752822876, + 0.9987938404083252, + 0.9989098310470581, + 0.9989001750946045, + 0.9988588094711304, + 0.9991763234138489, + 0.9961057305335999, + 0.998770534992218, + 0.9932490587234497, + 0.9989251494407654, + 0.9982069730758667, + 0.9995063543319702, + 0.9988446235656738, + 0.9989081621170044, + 0.9988573789596558 + ], + "sentiment_counts": { + "POSITIVE": 42, + "NEGATIVE": 7 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988216757774353, + 0.9989269375801086, + 0.9967269897460938, + 0.997117280960083, + 0.998863935470581, + 0.9988920092582703, + 0.9988962411880493, + 0.9988969564437866, + 0.9989368319511414, + 0.9960112571716309, + 0.9988152980804443, + 0.998790442943573, + 0.9964878559112549, + 0.9989336133003235, + 0.9981259703636169, + 0.9989203214645386, + 0.9989221096038818, + 0.9989261031150818, + 0.998881995677948, + 0.9989110231399536, + 0.9989194869995117, + 0.9982553124427795, + 0.9989194869995117, + 0.999506950378418, + 0.9988441467285156, + 0.9987201690673828, + 0.998923122882843, + 0.9988987445831299, + 0.9988100528717041, + 0.9988017082214355, + 0.9989295601844788, + 0.998857855796814, + 0.9974476099014282, + 0.9994902610778809, + 0.9989234805107117, + 0.9989171028137207, + 0.9988625049591064, + 0.9988831877708435, + 0.9988987445831299, + 0.9988879561424255, + 0.9988844990730286, + 0.9988759160041809, + 0.9989005327224731, + 0.998907208442688, + 0.9989086389541626, + 0.9981536269187927, + 0.9988756775856018, + 0.9995146989822388, + 0.9988445043563843, + 0.9989041090011597, + 0.9984390139579773 + ], + "sentiment_counts": { + "POSITIVE": 45, + "NEGATIVE": 6 + }, + "sentiment_distribution": { + "POSITIVE": 0.8823529411764706, + "NEGATIVE": 0.11764705882352941 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8823529411764706 + ] + }, + "final_label": "POSITIVE", + "final_count": 132, + "final_proportion": 0.8979591836734694, + "final_counts": { + "POSITIVE": 132, + "NEGATIVE": 15 + }, + "final_distribution": { + "POSITIVE": 0.8979591836734694, + "NEGATIVE": 0.10204081632653061 + } + } }, { "season_code": "202303", @@ -300562,7 +614872,7 @@ "19:00", "19:50", "HQ C03 - Humanities Quadrangle C03", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -300571,7 +614881,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -300582,7 +614892,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -300615,7 +614953,7 @@ "20:00", "20:50", "HQ C03 - Humanities Quadrangle C03", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -300624,7 +614962,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -300635,7 +614973,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -300668,7 +615034,7 @@ "19:00", "19:50", "HQ 213 - Humanities Quadrangle 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -300677,7 +615043,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -300688,7 +615054,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -300721,7 +615115,7 @@ "20:00", "20:50", "HQ 213 - Humanities Quadrangle 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -300730,7 +615124,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -300741,7 +615135,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -300774,7 +615196,7 @@ "10:30", "11:20", "HQ 313 - Humanities Quadrangle 313", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -300783,7 +615205,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -300794,7 +615216,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -300827,7 +615277,7 @@ "9:25", "10:15", "HQ 313 - Humanities Quadrangle 313", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -300836,7 +615286,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -300847,7 +615297,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -300880,7 +615358,7 @@ "11:35", "12:25", "HQ C07 - Humanities Quadrangle C07", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -300889,7 +615367,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -300900,7 +615378,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -300933,7 +615439,7 @@ "9:25", "10:15", "WALL81 101 - 81 Wall Street 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -300942,7 +615448,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -300953,7 +615459,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -300986,7 +615520,7 @@ "10:30", "11:20", "HQ C07 - Humanities Quadrangle C07", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -300995,7 +615529,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -301006,7 +615540,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -301049,7 +615611,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -301089,7 +615679,7 @@ "10:30", "11:20", "ML 211 - Mason Laboratory 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ], "Thursday": [ @@ -301097,7 +615687,7 @@ "10:30", "11:20", "ML 211 - Mason Laboratory 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ] }, @@ -301115,10 +615705,285 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88670\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88670/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9961251616477966, + 0.9988117218017578, + 0.9994720816612244, + 0.6994298696517944, + 0.9988449811935425, + 0.9988824725151062, + 0.9986394047737122, + 0.998656153678894, + 0.9986690282821655, + 0.9981566071510315, + 0.9986910223960876, + 0.9987651109695435, + 0.9988124370574951, + 0.9988157749176025, + 0.9988334774971008, + 0.9988893866539001, + 0.9970648884773254, + 0.9987800717353821, + 0.9987006187438965, + 0.9989007711410522, + 0.9983934760093689, + 0.9985760450363159, + 0.9987367987632751, + 0.9987850785255432, + 0.9988439083099365, + 0.998896598815918, + 0.9978004097938538, + 0.9987949132919312, + 0.998754620552063, + 0.9986506104469299, + 0.997936487197876, + 0.9988357424736023, + 0.9986048340797424 + ], + "sentiment_counts": { + "POSITIVE": 31, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.9393939393939394, + "NEGATIVE": 0.06060606060606061 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9393939393939394 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994801878929138, + 0.9994934797286987, + 0.9906005859375, + 0.998907208442688, + 0.9989045858383179, + 0.9982424974441528, + 0.9988836646080017, + 0.9864469766616821, + 0.9995065927505493, + 0.9979323148727417, + 0.9984051585197449, + 0.998874843120575, + 0.9989272952079773, + 0.9987265467643738, + 0.9984101057052612, + 0.9984490871429443, + 0.9995095729827881, + 0.997310996055603, + 0.9956592321395874, + 0.9989131689071655, + 0.9985128045082092, + 0.998837411403656, + 0.9955137372016907, + 0.9687845706939697, + 0.998815655708313, + 0.9989320635795593, + 0.9988332390785217, + 0.9955431818962097, + 0.9987468719482422, + 0.9987927675247192, + 0.9986599683761597, + 0.9989326596260071 + ], + "sentiment_counts": { + "NEGATIVE": 10, + "POSITIVE": 22 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3125, + "POSITIVE": 0.6875 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6875 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982942938804626, + 0.9965415596961975, + 0.999509334564209, + 0.9988760352134705, + 0.998279333114624, + 0.9974592328071594, + 0.9989151954650879, + 0.9988489151000977, + 0.9987271428108215, + 0.9950690269470215, + 0.9988675117492676, + 0.9987953901290894, + 0.9989244341850281, + 0.996852695941925, + 0.9988895058631897, + 0.9989113807678223, + 0.9994865655899048, + 0.9980652928352356, + 0.9989283680915833, + 0.9970291256904602, + 0.981640636920929, + 0.9977506995201111, + 0.9987664222717285, + 0.9986642599105835, + 0.9987595081329346, + 0.9986959099769592, + 0.9995043277740479, + 0.9986897110939026, + 0.9987826943397522, + 0.9989325404167175, + 0.9994943141937256, + 0.9989240765571594, + 0.9982833862304688, + 0.998880922794342, + 0.9980016350746155, + 0.9987248778343201, + 0.9987040758132935, + 0.9977750182151794, + 0.9989079236984253 + ], + "sentiment_counts": { + "POSITIVE": 32, + "NEGATIVE": 7 + }, + "sentiment_distribution": { + "POSITIVE": 0.8205128205128205, + "NEGATIVE": 0.1794871794871795 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8205128205128205 + ] + }, + "final_label": "POSITIVE", + "final_count": 85, + "final_proportion": 0.8173076923076923, + "final_counts": { + "POSITIVE": 85, + "NEGATIVE": 19 + }, + "final_distribution": { + "POSITIVE": 0.8173076923076923, + "NEGATIVE": 0.18269230769230768 + } + } }, { "season_code": "202303", @@ -301152,7 +616017,7 @@ "9:25", "10:15", "HQ 207 - Humanities Quadrangle 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -301173,7 +616038,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -301207,7 +616100,7 @@ "9:25", "10:15", "ML 104 - Mason Laboratory 104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ] }, @@ -301228,7 +616121,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -301262,7 +616183,7 @@ "15:30", "16:20", "BASSLB L73 - Bass Library L73", - "https:\/\/map.yale.edu\/?id=1910#!m\/564574" + "https://map.yale.edu/?id=1910#!m/564574" ] ] }, @@ -301283,7 +616204,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -301317,7 +616266,7 @@ "15:30", "16:20", "BASSLB L70 - Bass Library L70", - "https:\/\/map.yale.edu\/?id=1910#!m\/564574" + "https://map.yale.edu/?id=1910#!m/564574" ] ] }, @@ -301338,7 +616287,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -301372,7 +616349,7 @@ "19:00", "19:50", "WLH 009 - William L. Harkness Hall 009", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -301393,7 +616370,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -301427,7 +616432,7 @@ "19:00", "19:50", "WLH 210 - William L. Harkness Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -301448,7 +616453,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -301485,7 +616518,7 @@ "13:00", "14:15", "WTS B60 - Watson Center 60 Sachem Street B60", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -301493,7 +616526,7 @@ "13:00", "14:15", "WTS B60 - Watson Center 60 Sachem Street B60", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -301507,10 +616540,87 @@ "classnotes": "", "final_exam": "Saturday, December 16, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88671\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88671/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987975358963013 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988992214202881, + 0.9986466765403748 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988273978233337, + 0.9989012479782104 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 4, + "final_proportion": 0.8, + "final_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + } + } }, { "season_code": "202303", @@ -301547,7 +616657,7 @@ "11:35", "12:50", "WLH 116 - William L. Harkness Hall 116", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -301555,7 +616665,7 @@ "11:35", "12:50", "WLH 116 - William L. Harkness Hall 116", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -301569,10 +616679,101 @@ "classnotes": "", "final_exam": "Friday, December 15, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90543\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90543/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987531900405884, + 0.9887204766273499, + 0.9988719820976257, + 0.9988961219787598 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988518953323364, + 0.9987329840660095, + 0.9988428354263306, + 0.9989117383956909 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989099502563477, + 0.9987143278121948, + 0.9982553124427795, + 0.998925507068634, + 0.995751142501831 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 13 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -301628,7 +616829,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -301684,7 +616913,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -301732,7 +616989,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -301763,7 +617048,7 @@ "16:00", "16:50", "WLH 210 - William L. Harkness Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -301780,7 +617065,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -301828,7 +617141,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -301884,7 +617225,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -301924,7 +617293,7 @@ "10:30", "11:20", "WLH 208 - William L. Harkness Hall 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -301932,7 +617301,7 @@ "10:30", "11:20", "WLH 208 - William L. Harkness Hall 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -301949,10 +617318,169 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88673\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88673/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988219141960144, + 0.9989156723022461, + 0.9985854625701904, + 0.9985727071762085, + 0.9984737038612366, + 0.9987195730209351, + 0.9988293051719666, + 0.9984329342842102, + 0.9986252784729004, + 0.9876981377601624, + 0.9883335828781128, + 0.9987358450889587, + 0.9988998174667358, + 0.998866081237793 + ], + "sentiment_counts": { + "POSITIVE": 14, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989155530929565, + 0.9994785189628601, + 0.998521625995636, + 0.9988945126533508, + 0.9963717460632324, + 0.9867180585861206, + 0.9957274198532104, + 0.9987088441848755, + 0.9987577199935913, + 0.9988762736320496, + 0.9989169836044312, + 0.9988933205604553, + 0.9886779189109802, + 0.9972584247589111, + 0.9955506324768066, + 0.9986445307731628, + 0.9989122152328491 + ], + "sentiment_counts": { + "POSITIVE": 14, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.8235294117647058, + "NEGATIVE": 0.17647058823529413 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8235294117647058 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998892605304718, + 0.998927891254425, + 0.9987348914146423, + 0.9988842606544495, + 0.9985935091972351, + 0.9985440969467163, + 0.9974377155303955, + 0.9987136125564575, + 0.9982936978340149, + 0.9989369511604309, + 0.999471127986908, + 0.9958460927009583, + 0.9989161491394043, + 0.9953038692474365, + 0.9976192116737366 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8666666666666667, + "NEGATIVE": 0.13333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8666666666666667 + ] + }, + "final_label": "POSITIVE", + "final_count": 41, + "final_proportion": 0.8913043478260869, + "final_counts": { + "POSITIVE": 41, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.8913043478260869, + "NEGATIVE": 0.10869565217391304 + } + } }, { "season_code": "202303", @@ -301986,7 +617514,7 @@ "14:30", "15:20", "WTS B51 - Watson Center 60 Sachem Street B51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -302005,7 +617533,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -302066,7 +617622,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -302100,7 +617684,7 @@ "9:25", "10:15", "WLH 007 - William L. Harkness Hall 007", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -302119,7 +617703,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -302153,7 +617765,7 @@ "14:30", "15:20", "WTS A35 - Watson Center 60 Sachem Street A35", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -302172,7 +617784,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -302206,7 +617846,7 @@ "19:00", "19:50", "WTS A39 - Watson Center 60 Sachem Street A39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -302225,7 +617865,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -302263,7 +617931,7 @@ "13:30", "14:20", "WLH 116 - William L. Harkness Hall 116", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -302271,7 +617939,7 @@ "13:30", "14:20", "WLH 116 - William L. Harkness Hall 116", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -302287,10 +617955,113 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88909\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88909/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982479810714722, + 0.9978498220443726, + 0.9988831877708435, + 0.9989066123962402, + 0.9989014863967896 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9976699948310852, + 0.9994854927062988, + 0.9897997379302979, + 0.998711347579956, + 0.9984570741653442, + 0.9973670840263367, + 0.9989123344421387 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.5714285714285714, + "NEGATIVE": 0.42857142857142855 + }, + "sentiment_overall": [ + "POSITIVE", + 0.5714285714285714 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988833069801331, + 0.9980897307395935, + 0.9988112449645996, + 0.9989319443702698, + 0.9985963702201843, + 0.9985373020172119 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 0.6111111111111112, + "final_counts": { + "POSITIVE": 11, + "NEGATIVE": 7 + }, + "final_distribution": { + "POSITIVE": 0.6111111111111112, + "NEGATIVE": 0.3888888888888889 + } + } }, { "season_code": "202303", @@ -302322,7 +618093,7 @@ "10:30", "11:20", "BM 013 - Bingham Hall 013", - "https:\/\/map.yale.edu\/?id=1910#!m\/559569" + "https://map.yale.edu/?id=1910#!m/559569" ] ] }, @@ -302341,7 +618112,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -302373,7 +618172,7 @@ "10:30", "11:20", "LC 213 - Linsly-Chittenden Hall 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -302392,7 +618191,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -302424,7 +618251,7 @@ "14:30", "15:20", "WLH 007 - William L. Harkness Hall 007", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -302443,7 +618270,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -302475,7 +618330,7 @@ "14:30", "15:20", "BASSLB L70 - Bass Library L70", - "https:\/\/map.yale.edu\/?id=1910#!m\/564574" + "https://map.yale.edu/?id=1910#!m/564574" ] ] }, @@ -302494,7 +618349,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -302526,7 +618409,7 @@ "16:30", "17:20", "WLH 009 - William L. Harkness Hall 009", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -302545,7 +618428,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -302577,7 +618488,7 @@ "16:30", "17:20", "WLH 001 - William L. Harkness Hall 001", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -302596,7 +618507,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -302635,7 +618574,7 @@ "14:30", "15:45", "AKW 100 - Arthur K. Watson Hall 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560119" + "https://map.yale.edu/?id=1910#!m/560119" ] ], "Thursday": [ @@ -302643,7 +618582,7 @@ "14:30", "15:45", "AKW 100 - Arthur K. Watson Hall 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560119" + "https://map.yale.edu/?id=1910#!m/560119" ] ] }, @@ -302662,10 +618601,89 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88910\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88910/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9941049814224243, + 0.9988222718238831 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986542463302612, + 0.9989334940910339, + 0.9973682761192322 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988647699356079, + 0.9987481832504272 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 7 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -302702,7 +618720,7 @@ "15:30", "17:20", "WLH 202 - William L. Harkness Hall 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -302718,10 +618736,149 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90544\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/90544/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.993966817855835, + 0.998816967010498, + 0.9989224672317505, + 0.9994446635246277, + 0.9951953291893005, + 0.998875081539154, + 0.9988886713981628, + 0.998777449131012, + 0.9988534450531006, + 0.9989088773727417, + 0.9988260865211487 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9090909090909091 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988604784011841, + 0.9988352656364441, + 0.9989249110221863, + 0.9975144863128662, + 0.9989311099052429, + 0.9870548248291016, + 0.9988598823547363, + 0.9988213181495667, + 0.9989098310470581, + 0.9988031387329102, + 0.9989066123962402 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9090909090909091 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989237189292908, + 0.9988539218902588, + 0.9988947510719299, + 0.9982553124427795, + 0.9987786412239075, + 0.9985191226005554, + 0.9713971614837646, + 0.9989359974861145, + 0.9989295601844788, + 0.998562753200531, + 0.9988672733306885, + 0.9987778067588806, + 0.9988885521888733, + 0.9987921118736267 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "final_label": "POSITIVE", + "final_count": 32, + "final_proportion": 0.8888888888888888, + "final_counts": { + "POSITIVE": 32, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + } + } }, { "season_code": "202303", @@ -302758,7 +618915,7 @@ "13:30", "15:20", "WLH 112 - William L. Harkness Hall 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -302774,10 +618931,105 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88941\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88941/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.99888676404953, + 0.9989000558853149, + 0.9988614320755005, + 0.9986634254455566, + 0.9988806843757629 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989258646965027, + 0.998920202255249, + 0.9989295601844788, + 0.998866081237793, + 0.998910665512085 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988939166069031, + 0.9989197254180908, + 0.9989299178123474, + 0.9989396929740906, + 0.9988866448402405 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 15 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -302817,7 +619069,7 @@ "16:30", "17:20", "WTS A51 - Watson Center 60 Sachem Street A51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -302825,7 +619077,7 @@ "16:30", "17:20", "WTS A51 - Watson Center 60 Sachem Street A51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -302844,10 +619096,137 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89163\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89163/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987770915031433, + 0.9989281296730042, + 0.9988021850585938, + 0.9989131689071655, + 0.9978353381156921, + 0.9988918900489807, + 0.9988707900047302, + 0.9988301396369934, + 0.9988916516304016 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994995594024658, + 0.9984616041183472, + 0.9895910620689392, + 0.9988960027694702, + 0.998921275138855, + 0.9982247948646545, + 0.99699866771698, + 0.9988629817962646, + 0.9988136291503906, + 0.9984989166259766, + 0.9988767504692078 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 9 + }, + "sentiment_distribution": { + "NEGATIVE": 0.18181818181818182, + "POSITIVE": 0.8181818181818182 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8181818181818182 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988865256309509, + 0.9988271594047546, + 0.9989141225814819, + 0.9985136389732361, + 0.9925960898399353, + 0.9988418221473694, + 0.9988685846328735, + 0.9987994432449341, + 0.9984018206596375, + 0.9968264102935791 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9 + ] + }, + "final_label": "POSITIVE", + "final_count": 27, + "final_proportion": 0.9, + "final_counts": { + "POSITIVE": 27, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + } + } }, { "season_code": "202303", @@ -302881,7 +619260,7 @@ "14:30", "15:20", "WTS A32 - Watson Center 60 Sachem Street A32", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -302902,7 +619281,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -302936,7 +619343,7 @@ "15:30", "16:20", "WTS A32 - Watson Center 60 Sachem Street A32", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -302957,7 +619364,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -302991,7 +619426,7 @@ "14:30", "15:20", "WTS B51 - Watson Center 60 Sachem Street B51", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -303012,7 +619447,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -303046,7 +619509,7 @@ "17:00", "17:50", "WLH 004 - William L. Harkness Hall 004", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -303067,7 +619530,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -303111,7 +619602,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -303149,7 +619668,7 @@ "9:25", "11:15", "WLH 002 - William L. Harkness Hall 002", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -303163,10 +619682,115 @@ "classnotes": "", "final_exam": "Saturday, December 16, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90341\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90341/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.918820321559906, + 0.9973419308662415, + 0.9959558844566345, + 0.9987595081329346, + 0.9983423948287964, + 0.9987577199935913 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984791874885559, + 0.998927891254425, + 0.998967170715332, + 0.9990732669830322, + 0.998832643032074, + 0.9987239241600037 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9976477026939392, + 0.9989308714866638, + 0.9963585734367371, + 0.9989134073257446, + 0.9995065927505493, + 0.9989004135131836, + 0.998582124710083 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 0.8421052631578947, + "final_counts": { + "POSITIVE": 16, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.8421052631578947, + "NEGATIVE": 0.15789473684210525 + } + } }, { "season_code": "202303", @@ -303204,7 +619828,7 @@ "13:00", "14:15", "WLH 113 - William L. Harkness Hall 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -303212,7 +619836,7 @@ "13:00", "14:15", "WLH 113 - William L. Harkness Hall 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -303226,10 +619850,105 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88675\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88675/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988038539886475, + 0.9984960556030273, + 0.9988609552383423, + 0.998868465423584, + 0.9989094734191895 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987925291061401, + 0.998830258846283, + 0.9987649917602539, + 0.9988798499107361, + 0.9989199638366699 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987612962722778, + 0.9986358284950256, + 0.9988372921943665, + 0.998934805393219, + 0.9989275336265564 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 15 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -303268,7 +619987,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -303310,7 +620057,7 @@ "13:30", "15:20", "CO493 106 - 493 College Street 106", - "https:\/\/map.yale.edu\/?id=1910#!m\/560001" + "https://map.yale.edu/?id=1910#!m/560001" ] ] }, @@ -303322,10 +620069,103 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90311\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90311/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987693428993225, + 0.998711109161377, + 0.9988964796066284 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9962917566299438, + 0.9994947910308838, + 0.9955711960792542, + 0.9989386200904846 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9995086193084717, + 0.9989193677902222, + 0.996487021446228, + 0.999502420425415, + 0.9978026747703552, + 0.9989320635795593 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 4 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 0.7692307692307693, + "final_counts": { + "POSITIVE": 10, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.7692307692307693, + "NEGATIVE": 0.23076923076923078 + } + } }, { "season_code": "202303", @@ -303362,7 +620202,7 @@ "15:30", "17:20", "WLH 204 - William L. Harkness Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -303376,10 +620216,83 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90098\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90098/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988321661949158 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9965553283691406, + 0.9989138841629028 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988605976104736 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 4, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 4 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -303418,7 +620331,7 @@ "9:25", "10:15", "WLH 116 - William L. Harkness Hall 116", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -303426,7 +620339,7 @@ "9:25", "10:15", "WLH 116 - William L. Harkness Hall 116", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -303442,10 +620355,169 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89160\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89160/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998872697353363, + 0.9989027976989746, + 0.998921275138855, + 0.9988388419151306, + 0.9988127946853638, + 0.9989186525344849, + 0.9988162517547607, + 0.9988452196121216, + 0.998474657535553, + 0.9988211989402771, + 0.9986806511878967, + 0.9989113807678223 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988062381744385, + 0.9898069500923157, + 0.9916468858718872, + 0.9987032413482666, + 0.9994997978210449, + 0.9888178110122681, + 0.9987931251525879, + 0.9994587302207947, + 0.9980472326278687, + 0.9916132688522339, + 0.9985653758049011, + 0.9972033500671387, + 0.9988980293273926, + 0.9987993240356445, + 0.9988569021224976, + 0.9986026883125305, + 0.9985076785087585 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.7647058823529411, + "NEGATIVE": 0.23529411764705882 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7647058823529411 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9812979698181152, + 0.9938327074050903, + 0.9988866448402405, + 0.9951303005218506, + 0.9988611936569214, + 0.9969155788421631, + 0.9994547963142395, + 0.99869304895401, + 0.9988889098167419, + 0.9988405108451843, + 0.9987828135490417, + 0.9988977909088135, + 0.9988899827003479, + 0.9989281296730042, + 0.9989211559295654, + 0.9987519979476929, + 0.998908281326294 + ], + "sentiment_counts": { + "NEGATIVE": 3, + "POSITIVE": 14 + }, + "sentiment_distribution": { + "NEGATIVE": 0.17647058823529413, + "POSITIVE": 0.8235294117647058 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8235294117647058 + ] + }, + "final_label": "POSITIVE", + "final_count": 39, + "final_proportion": 0.8478260869565217, + "final_counts": { + "POSITIVE": 39, + "NEGATIVE": 7 + }, + "final_distribution": { + "POSITIVE": 0.8478260869565217, + "NEGATIVE": 0.15217391304347827 + } + } }, { "season_code": "202303", @@ -303478,7 +620550,7 @@ "9:25", "10:15", "LC 105 - Linsly-Chittenden Hall 105", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -303497,7 +620569,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -303530,7 +620630,7 @@ "10:30", "11:20", "LC 105 - Linsly-Chittenden Hall 105", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -303549,7 +620649,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -303582,7 +620710,7 @@ "16:00", "16:50", "WLH 210 - William L. Harkness Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -303601,7 +620729,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -303634,7 +620790,7 @@ "17:00", "17:50", "WLH 210 - William L. Harkness Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -303653,7 +620809,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -303686,7 +620870,7 @@ "19:00", "19:50", "LC 213 - Linsly-Chittenden Hall 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -303705,7 +620889,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -303742,7 +620954,7 @@ "13:30", "15:20", "CO493 208 - 493 College Street 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560001" + "https://map.yale.edu/?id=1910#!m/560001" ] ] }, @@ -303758,10 +620970,87 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90126\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90126/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989257454872131, + 0.9985926747322083 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989079236984253 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988177418708801, + 0.9987813830375671, + 0.9988018274307251 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 6 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -303800,7 +621089,7 @@ "11:35", "12:50", "HQ C11 - Humanities Quadrangle C11", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -303808,7 +621097,7 @@ "11:35", "12:50", "HQ C11 - Humanities Quadrangle C11", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -303822,10 +621111,109 @@ "classnotes": "", "final_exam": "Sunday, December 17, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90175\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90175/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989116191864014, + 0.9987921118736267, + 0.9988742470741272, + 0.9989226460456848, + 0.998815655708313, + 0.9988058805465698 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989327788352966, + 0.9989396929740906, + 0.9987360835075378, + 0.9989016056060791, + 0.9987634420394897 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989309906959534, + 0.9989262223243713, + 0.998887836933136, + 0.99893718957901, + 0.9988725781440735, + 0.9989104270935059 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 17 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -303865,7 +621253,7 @@ "13:30", "15:20", "RKZ 05 - Rosenkranz Hall 05", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -303884,15 +621272,126 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88792\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88792/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "", - "description": "This interdisciplinary course surveys the history of homosexuality from a cross-cultural, comparative \u00a0perspective. Students study contexts where homosexuality and sodomy were categorized, regulated, and persecuted and examine ancient and medieval constructions of same-sex desire in light of post-modern developments, challenging ideas around what is considered normal and\/or natural. Ultimately, we ask: what has changed, and what has remained the same, in the history of homosexuality? What do gays and lesbians today have in common with pre-modern sodomites? Can this history help us ground or rethink our sexual selves and identities? Primary and secondary historical sources, some legal and religious sources, and texts in intellectual history are studied. Among the case studies for the course are ancient attitudes among Jews, early Christians, and Greeks; Christian theologians of the Middle Ages; Renaissance Florence; the Inquisition in Iberia; colonial Latin America; and the Enlightenment\u2019s condemnation of sodomy by Montesquieu and Voltaire, and its defense by Bentham.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989345669746399, + 0.9988642930984497, + 0.9987000226974487, + 0.9989055395126343, + 0.9989038705825806, + 0.998897910118103 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998870313167572, + 0.9988762736320496, + 0.9985916018486023, + 0.9988872408866882, + 0.9988853335380554, + 0.998897910118103, + 0.9988659620285034 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988710284233093, + 0.9989325404167175, + 0.9898777604103088, + 0.998649537563324, + 0.9989272952079773, + 0.9988763928413391, + 0.9989022016525269, + 0.9989399313926697, + 0.999453604221344 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.7777777777777778, + "NEGATIVE": 0.2222222222222222 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7777777777777778 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 0.9090909090909091, + "final_counts": { + "POSITIVE": 20, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + } + } + }, + { + "season_code": "202303", + "requirements": "", + "description": "This interdisciplinary course surveys the history of homosexuality from a cross-cultural, comparative \u00a0perspective. Students study contexts where homosexuality and sodomy were categorized, regulated, and persecuted and examine ancient and medieval constructions of same-sex desire in light of post-modern developments, challenging ideas around what is considered normal and/or natural. Ultimately, we ask: what has changed, and what has remained the same, in the history of homosexuality? What do gays and lesbians today have in common with pre-modern sodomites? Can this history help us ground or rethink our sexual selves and identities? Primary and secondary historical sources, some legal and religious sources, and texts in intellectual history are studied. Among the case studies for the course are ancient attitudes among Jews, early Christians, and Greeks; Christian theologians of the Middle Ages; Renaissance Florence; the Inquisition in Iberia; colonial Latin America; and the Enlightenment\u2019s condemnation of sodomy by Montesquieu and Voltaire, and its defense by Bentham.", "short_title": "Sexual Minorities from Plato ...", "title": "Sexual Minorities from Plato to the Enlightenment", "school": "YC", @@ -303927,7 +621426,7 @@ "13:00", "14:15", "WLH 211 - William L. Harkness Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -303935,7 +621434,7 @@ "13:00", "14:15", "WLH 211 - William L. Harkness Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -303954,15 +621453,90 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88563\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88563/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "", - "description": "This interdisciplinary course surveys the history of homosexuality from a cross-cultural, comparative \u00a0perspective. Students study contexts where homosexuality and sodomy were categorized, regulated, and persecuted and examine ancient and medieval constructions of same-sex desire in light of post-modern developments, challenging ideas around what is considered normal and\/or natural. Ultimately, we ask: what has changed, and what has remained the same, in the history of homosexuality? What do gays and lesbians today have in common with pre-modern sodomites? Can this history help us ground or rethink our sexual selves and identities? Primary and secondary historical sources, some legal and religious sources, and texts in intellectual history are studied. Among the case studies for the course are ancient attitudes among Jews, early Christians, and Greeks; Christian theologians of the Middle Ages; Renaissance Florence; the Inquisition in Iberia; colonial Latin America; and the Enlightenment\u2019s condemnation of sodomy by Montesquieu and Voltaire, and its defense by Bentham.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.998930037021637 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988467693328857 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988486766815186, + 0.9988548755645752, + 0.9983124732971191 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 5, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 5 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } + }, + { + "season_code": "202303", + "requirements": "", + "description": "This interdisciplinary course surveys the history of homosexuality from a cross-cultural, comparative \u00a0perspective. Students study contexts where homosexuality and sodomy were categorized, regulated, and persecuted and examine ancient and medieval constructions of same-sex desire in light of post-modern developments, challenging ideas around what is considered normal and/or natural. Ultimately, we ask: what has changed, and what has remained the same, in the history of homosexuality? What do gays and lesbians today have in common with pre-modern sodomites? Can this history help us ground or rethink our sexual selves and identities? Primary and secondary historical sources, some legal and religious sources, and texts in intellectual history are studied. Among the case studies for the course are ancient attitudes among Jews, early Christians, and Greeks; Christian theologians of the Middle Ages; Renaissance Florence; the Inquisition in Iberia; colonial Latin America; and the Enlightenment\u2019s condemnation of sodomy by Montesquieu and Voltaire, and its defense by Bentham.", "short_title": "Sexual Minorities from Plato ...", "title": "Sexual Minorities from Plato to the Enlightenment", "school": "YC", @@ -303991,7 +621565,7 @@ "14:30", "15:20", "WLH 209 - William L. Harkness Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -304013,12 +621587,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "This interdisciplinary course surveys the history of homosexuality from a cross-cultural, comparative \u00a0perspective. Students study contexts where homosexuality and sodomy were categorized, regulated, and persecuted and examine ancient and medieval constructions of same-sex desire in light of post-modern developments, challenging ideas around what is considered normal and\/or natural. Ultimately, we ask: what has changed, and what has remained the same, in the history of homosexuality? What do gays and lesbians today have in common with pre-modern sodomites? Can this history help us ground or rethink our sexual selves and identities? Primary and secondary historical sources, some legal and religious sources, and texts in intellectual history are studied. Among the case studies for the course are ancient attitudes among Jews, early Christians, and Greeks; Christian theologians of the Middle Ages; Renaissance Florence; the Inquisition in Iberia; colonial Latin America; and the Enlightenment\u2019s condemnation of sodomy by Montesquieu and Voltaire, and its defense by Bentham.", + "description": "This interdisciplinary course surveys the history of homosexuality from a cross-cultural, comparative \u00a0perspective. Students study contexts where homosexuality and sodomy were categorized, regulated, and persecuted and examine ancient and medieval constructions of same-sex desire in light of post-modern developments, challenging ideas around what is considered normal and/or natural. Ultimately, we ask: what has changed, and what has remained the same, in the history of homosexuality? What do gays and lesbians today have in common with pre-modern sodomites? Can this history help us ground or rethink our sexual selves and identities? Primary and secondary historical sources, some legal and religious sources, and texts in intellectual history are studied. Among the case studies for the course are ancient attitudes among Jews, early Christians, and Greeks; Christian theologians of the Middle Ages; Renaissance Florence; the Inquisition in Iberia; colonial Latin America; and the Enlightenment\u2019s condemnation of sodomy by Montesquieu and Voltaire, and its defense by Bentham.", "short_title": "Sexual Minorities from Plato ...", "title": "Sexual Minorities from Plato to the Enlightenment", "school": "YC", @@ -304047,7 +621649,7 @@ "11:35", "12:25", "WLH 210 - William L. Harkness Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -304069,7 +621671,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -304110,7 +621740,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -304149,7 +621807,7 @@ "13:30", "15:20", "WALL81 201 - 81 Wall Street 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -304163,10 +621821,105 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88680\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88680/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988742470741272, + 0.9994971752166748, + 0.9987667798995972, + 0.9983748197555542, + 0.998863935470581 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988732933998108, + 0.999506950378418, + 0.9985287189483643, + 0.9940371513366699 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989176988601685, + 0.9993459582328796, + 0.9988566637039185, + 0.9995092153549194, + 0.9987562894821167 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.6, + "NEGATIVE": 0.4 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 0.6428571428571429, + "final_counts": { + "POSITIVE": 9, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.6428571428571429, + "NEGATIVE": 0.35714285714285715 + } + } }, { "season_code": "202303", @@ -304205,7 +621958,7 @@ "13:30", "15:20", "LC 103 - Linsly-Chittenden Hall 103", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -304221,10 +621974,113 @@ "classnotes": "", "final_exam": "Saturday, December 16, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88934\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88934/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988527297973633, + 0.9989093542098999, + 0.9988923668861389, + 0.9987670183181763, + 0.9987779259681702, + 0.998928964138031 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987972974777222, + 0.9989270567893982, + 0.9988834261894226, + 0.9987425208091736, + 0.9988981485366821 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9995130300521851, + 0.9984610080718994, + 0.9989116191864014, + 0.9989191293716431, + 0.9987101554870605, + 0.9989287257194519, + 0.9989103078842163 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 6 + }, + "sentiment_distribution": { + "NEGATIVE": 0.14285714285714285, + "POSITIVE": 0.8571428571428571 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 0.9444444444444444, + "final_counts": { + "POSITIVE": 17, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9444444444444444, + "NEGATIVE": 0.05555555555555555 + } + } }, { "season_code": "202303", @@ -304262,7 +622118,7 @@ "13:30", "15:20", "WTS A42 - Watson Center 60 Sachem Street A42", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -304282,10 +622138,101 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88682\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88682/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998784601688385, + 0.9988693594932556, + 0.9989160299301147, + 0.998857855796814 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989129304885864, + 0.9988547563552856, + 0.9989107847213745, + 0.998842716217041 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989275336265564, + 0.9989339709281921, + 0.998927891254425, + 0.9989370703697205, + 0.9989204406738281 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 13 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -304324,7 +622271,7 @@ "16:00", "17:50", "WLH 002 - William L. Harkness Hall 002", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -304341,10 +622288,101 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88911\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88911/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988440275192261, + 0.9987886548042297, + 0.9986199140548706, + 0.9989138841629028 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982112646102905, + 0.9980571866035461, + 0.9985040426254272, + 0.9987245202064514 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989025592803955, + 0.9995042085647583, + 0.9982553124427795, + 0.9982150793075562 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 0.9166666666666666, + "final_counts": { + "POSITIVE": 11, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + } + } }, { "season_code": "202303", @@ -304382,7 +622420,7 @@ "13:30", "15:20", "WTS A32 - Watson Center 60 Sachem Street A32", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -304398,10 +622436,87 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90438\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90438/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.997794508934021, + 0.9988640546798706 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988667964935303, + 0.9989245533943176 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988082647323608, + 0.9988229870796204 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 6 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -304439,7 +622554,7 @@ "13:30", "15:20", "YK220 004 - 220 York Street 004", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ] }, @@ -304453,10 +622568,101 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88935\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88935/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989092350006104, + 0.9986007809638977, + 0.9988579750061035, + 0.9989150762557983 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989172220230103, + 0.9989185333251953, + 0.9987524747848511, + 0.9988345503807068 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988759160041809, + 0.9988529682159424, + 0.9988875985145569, + 0.9989268183708191, + 0.9989293217658997 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 13 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -304497,7 +622703,7 @@ "13:30", "15:20", "RKZ 04 - Rosenkranz Hall 04", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -304515,10 +622721,87 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88477\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88477/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988580942153931, + 0.9987786412239075 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989128112792969, + 0.9987824559211731 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989303946495056, + 0.9989103078842163 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 6 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -304556,7 +622839,7 @@ "13:30", "15:20", "RKZ 102 - Rosenkranz Hall 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -304572,10 +622855,103 @@ "classnotes": "This course requires instructor permission. Please submit the following information with your registration request: Why do you want to take this course? Are you looking to write the semester-long senior essay in this course or a year-long senior essay on a topic related to protests? What class year are you in? What is your GPA?", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89039\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89039/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989004135131836, + 0.9988825917243958, + 0.998785674571991, + 0.9989020824432373 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998927891254425, + 0.998927891254425, + 0.9988503456115723, + 0.9988549947738647 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989387392997742, + 0.9988547563552856, + 0.9988551139831543, + 0.9989218711853027, + 0.9989191293716431, + 0.9988964796066284 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 14 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -304618,7 +622994,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -304655,7 +623059,7 @@ "13:30", "15:20", "WTS B41 - Watson Center 60 Sachem Street B41", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -304667,10 +623071,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88686\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88686/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -304707,7 +623139,7 @@ "13:30", "15:20", "CO493 208 - 493 College Street 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560001" + "https://map.yale.edu/?id=1910#!m/560001" ] ] }, @@ -304719,10 +623151,85 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88688\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88688/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986317753791809 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9957112073898315, + 0.9989346861839294 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989171028137207, + 0.9983237385749817 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 5, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 5 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -304760,7 +623267,7 @@ "8:30", "11:30", "EVANS 1556 - Edward P Evans Hall 1556", - "https:\/\/map.yale.edu\/?id=1910#!m\/560094" + "https://map.yale.edu/?id=1910#!m/560094" ] ] }, @@ -304772,10 +623279,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90729\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90729/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -304821,7 +623356,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -304858,7 +623421,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -304896,7 +623487,7 @@ "13:00", "14:15", "WLH 113 - William L. Harkness Hall 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -304904,7 +623495,7 @@ "13:00", "14:15", "WLH 113 - William L. Harkness Hall 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -304916,10 +623507,105 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88675\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88675/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988038539886475, + 0.9984960556030273, + 0.9988609552383423, + 0.998868465423584, + 0.9989094734191895 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987925291061401, + 0.998830258846283, + 0.9987649917602539, + 0.9988798499107361, + 0.9989199638366699 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987612962722778, + 0.9986358284950256, + 0.9988372921943665, + 0.998934805393219, + 0.9989275336265564 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 15 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -304956,7 +623642,7 @@ "13:30", "15:20", "CO493 103 - 493 College Street 103", - "https:\/\/map.yale.edu\/?id=1910#!m\/560001" + "https://map.yale.edu/?id=1910#!m/560001" ] ] }, @@ -304968,10 +623654,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90070\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90070/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -305009,7 +623723,7 @@ "13:30", "15:20", "WTS A42 - Watson Center 60 Sachem Street A42", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -305021,15 +623735,106 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88682\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88682/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "", - "description": "This weekly workshop is dedicated to group discussion of work-in-progress by visiting scholars, Yale graduate students, and in-house faculty from Sociology and affiliated disciplines. Papers are distributed a week ahead of time and also posted on the website of the Center for Comparative Research (http:\/\/ccr.yale.edu). Students who are enrolled for credit are expected to present a paper-in-progress.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998784601688385, + 0.9988693594932556, + 0.9989160299301147, + 0.998857855796814 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989129304885864, + 0.9988547563552856, + 0.9989107847213745, + 0.998842716217041 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989275336265564, + 0.9989339709281921, + 0.998927891254425, + 0.9989370703697205, + 0.9989204406738281 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 13 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } + }, + { + "season_code": "202303", + "requirements": "", + "description": "This weekly workshop is dedicated to group discussion of work-in-progress by visiting scholars, Yale graduate students, and in-house faculty from Sociology and affiliated disciplines. Papers are distributed a week ahead of time and also posted on the website of the Center for Comparative Research (http://ccr.yale.edu). Students who are enrolled for credit are expected to present a paper-in-progress.", "short_title": "Comparative Research Workshop", "title": "Comparative Research Workshop", "school": "GS", @@ -305062,7 +623867,7 @@ "11:50", "13:20", "WLH 203 - William L. Harkness Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -305077,7 +623882,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -305114,7 +623947,7 @@ "15:30", "17:20", "CO493 102 - 493 College Street 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/560001" + "https://map.yale.edu/?id=1910#!m/560001" ] ] }, @@ -305126,10 +623959,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88690\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88690/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -305168,7 +624029,7 @@ "14:30", "15:45", "AKW 100 - Arthur K. Watson Hall 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560119" + "https://map.yale.edu/?id=1910#!m/560119" ] ], "Thursday": [ @@ -305176,7 +624037,7 @@ "14:30", "15:45", "AKW 100 - Arthur K. Watson Hall 100", - "https:\/\/map.yale.edu\/?id=1910#!m\/560119" + "https://map.yale.edu/?id=1910#!m/560119" ] ] }, @@ -305188,10 +624049,89 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88910\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88910/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9941049814224243, + 0.9988222718238831 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986542463302612, + 0.9989334940910339, + 0.9973682761192322 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988647699356079, + 0.9987481832504272 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 7 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -305231,7 +624171,7 @@ "12:00", "13:20", "PR210 203 - 210 Prospect Street 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/559971" + "https://map.yale.edu/?id=1910#!m/559971" ] ] }, @@ -305243,10 +624183,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88692\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88692/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -305283,7 +624251,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -305327,7 +624323,7 @@ "13:30", "15:20", "SA10 105 - 10 Sachem Street 105", - "https:\/\/map.yale.edu\/?id=1910#!m\/559538" + "https://map.yale.edu/?id=1910#!m/559538" ] ] }, @@ -305339,10 +624335,38 @@ "classnotes": "There is a mandatory section immediately following the course. This makes the course run from 1:30-5:20 when factoring in the mandatory section. ", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88944\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88944/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -305381,7 +624405,7 @@ "13:30", "15:20", "WALL81 201 - 81 Wall Street 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -305393,10 +624417,105 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88680\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88680/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988742470741272, + 0.9994971752166748, + 0.9987667798995972, + 0.9983748197555542, + 0.998863935470581 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988732933998108, + 0.999506950378418, + 0.9985287189483643, + 0.9940371513366699 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989176988601685, + 0.9993459582328796, + 0.9988566637039185, + 0.9995092153549194, + 0.9987562894821167 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.6, + "NEGATIVE": 0.4 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 0.6428571428571429, + "final_counts": { + "POSITIVE": 9, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.6428571428571429, + "NEGATIVE": 0.35714285714285715 + } + } }, { "season_code": "202303", @@ -305435,7 +624554,7 @@ "16:00", "17:50", "WLH 002 - William L. Harkness Hall 002", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -305447,15 +624566,106 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88911\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88911/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "", - "description": "Emphasizing analytically integrated viewpoints, the course develops a variety of major contemporary approaches to the study of social structure and social organization. Building in part on research viewpoints articulated by Kenneth J. Arrow in The Limits of Organization (1974), by J\u00e1nos Kornai in an address at the Hungarian Academy of Sciences published in 1984, and by Harrison C. White in Identity and Control (2nd ed., 2008), four major species of social organization are identified as focal: (1) social networks, (2) competitive markets, (3) hierarchies\/bureaucracy, and (4) collective choice\/legislation. This lecture course uses mathematical and computational models\u2014and comparisons of their scientific styles and contributions\u2014as analytical vehicles in coordinated development of the four species.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988440275192261, + 0.9987886548042297, + 0.9986199140548706, + 0.9989138841629028 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982112646102905, + 0.9980571866035461, + 0.9985040426254272, + 0.9987245202064514 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989025592803955, + 0.9995042085647583, + 0.9982553124427795, + 0.9982150793075562 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 0.9166666666666666, + "final_counts": { + "POSITIVE": 11, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + } + } + }, + { + "season_code": "202303", + "requirements": "", + "description": "Emphasizing analytically integrated viewpoints, the course develops a variety of major contemporary approaches to the study of social structure and social organization. Building in part on research viewpoints articulated by Kenneth J. Arrow in The Limits of Organization (1974), by J\u00e1nos Kornai in an address at the Hungarian Academy of Sciences published in 1984, and by Harrison C. White in Identity and Control (2nd ed., 2008), four major species of social organization are identified as focal: (1) social networks, (2) competitive markets, (3) hierarchies/bureaucracy, and (4) collective choice/legislation. This lecture course uses mathematical and computational models\u2014and comparisons of their scientific styles and contributions\u2014as analytical vehicles in coordinated development of the four species.", "short_title": "Analysis of Social Structure", "title": "Analysis of Social Structure", "school": "GS", @@ -305487,7 +624697,7 @@ "9:25", "11:15", "WTS A72 - Watson Center 60 Sachem Street A72", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -305501,10 +624711,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88693\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88693/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -305541,7 +624779,7 @@ "11:00", "13:00", "CO493 106 - 493 College Street 106", - "https:\/\/map.yale.edu\/?id=1910#!m\/560001" + "https://map.yale.edu/?id=1910#!m/560001" ] ] }, @@ -305556,7 +624794,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -305594,7 +624860,7 @@ "11:30", "13:20", "WALL81 201 - 81 Wall Street 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -305608,10 +624874,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88695\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88695/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -305648,7 +624942,7 @@ "15:30", "17:20", "CO493 208 - 493 College Street 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/560001" + "https://map.yale.edu/?id=1910#!m/560001" ] ] }, @@ -305660,10 +624954,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88942\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88942/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -305700,7 +625022,7 @@ "9:15", "10:45", "WLH 112 - William L. Harkness Hall 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -305712,10 +625034,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88914\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88914/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -305755,7 +625105,7 @@ "15:30", "18:30", "WLH 015 - William L. Harkness Hall 015", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -305767,10 +625117,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90230\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90230/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -305807,7 +625185,7 @@ "9:25", "10:15", "WTS A35 - Watson Center 60 Sachem Street A35", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Tuesday": [ @@ -305815,7 +625193,7 @@ "9:25", "10:15", "WTS A35 - Watson Center 60 Sachem Street A35", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -305823,7 +625201,7 @@ "9:25", "10:15", "WTS A35 - Watson Center 60 Sachem Street A35", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -305831,7 +625209,7 @@ "9:25", "10:15", "WTS A35 - Watson Center 60 Sachem Street A35", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Friday": [ @@ -305839,7 +625217,7 @@ "9:25", "10:15", "WTS A35 - Watson Center 60 Sachem Street A35", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -305853,10 +625231,87 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88697\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88697/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9978138208389282, + 0.9986407160758972 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 1 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9587064981460571, + 0.9959956407546997 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988787770271301 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 4, + "final_proportion": 0.8, + "final_counts": { + "NEGATIVE": 1, + "POSITIVE": 4 + }, + "final_distribution": { + "NEGATIVE": 0.2, + "POSITIVE": 0.8 + } + } }, { "season_code": "202303", @@ -305893,7 +625348,7 @@ "9:25", "10:15", "WLH 011 - William L. Harkness Hall 011", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Tuesday": [ @@ -305901,7 +625356,7 @@ "9:25", "10:15", "WLH 011 - William L. Harkness Hall 011", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -305909,7 +625364,7 @@ "9:25", "10:15", "WLH 011 - William L. Harkness Hall 011", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Friday": [ @@ -305917,7 +625372,7 @@ "9:25", "10:15", "WLH 011 - William L. Harkness Hall 011", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -305925,7 +625380,7 @@ "9:25", "10:15", "", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -305939,10 +625394,101 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89574\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89574/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988300204277039, + 0.9977567791938782, + 0.9989123344421387, + 0.9988068342208862, + 0.9989228844642639 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9918891787528992, + 0.7279745936393738, + 0.998871386051178, + 0.9989070892333984 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987539052963257, + 0.9982553124427795, + 0.9989346861839294, + 0.9988522529602051 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 13 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -305979,7 +625525,7 @@ "9:25", "10:15", "WLH 013 - William L. Harkness Hall 013", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Tuesday": [ @@ -305987,7 +625533,7 @@ "9:25", "10:15", "WLH 013 - William L. Harkness Hall 013", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -305995,7 +625541,7 @@ "9:25", "10:15", "WLH 013 - William L. Harkness Hall 013", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -306003,7 +625549,7 @@ "9:25", "10:15", "WLH 013 - William L. Harkness Hall 013", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Friday": [ @@ -306011,7 +625557,7 @@ "9:25", "10:15", "WLH 013 - William L. Harkness Hall 013", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -306025,10 +625571,115 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89575\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89575/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986164569854736, + 0.9988824725151062, + 0.9985583424568176, + 0.9989078044891357, + 0.9989026784896851, + 0.9988885521888733 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988517761230469, + 0.9874424338340759, + 0.9964696168899536, + 0.9987143278121948, + 0.9988893866539001, + 0.9975288510322571 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9960256814956665, + 0.9983510971069336, + 0.9994992017745972, + 0.9988196492195129, + 0.9989169836044312, + 0.9988627433776855, + 0.998796820640564 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 5 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2857142857142857, + "POSITIVE": 0.7142857142857143 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7142857142857143 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 0.7894736842105263, + "final_counts": { + "POSITIVE": 15, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.7894736842105263, + "NEGATIVE": 0.21052631578947367 + } + } }, { "season_code": "202303", @@ -306065,7 +625716,7 @@ "10:30", "11:20", "WTS A35 - Watson Center 60 Sachem Street A35", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Tuesday": [ @@ -306073,7 +625724,7 @@ "10:30", "11:20", "WTS A35 - Watson Center 60 Sachem Street A35", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -306081,7 +625732,7 @@ "10:30", "11:20", "WTS A35 - Watson Center 60 Sachem Street A35", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -306089,7 +625740,7 @@ "10:30", "11:20", "WTS A35 - Watson Center 60 Sachem Street A35", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Friday": [ @@ -306097,7 +625748,7 @@ "10:30", "11:20", "WTS A35 - Watson Center 60 Sachem Street A35", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -306111,10 +625762,93 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89576\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89576/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988921284675598, + 0.997475802898407, + 0.9986479878425598 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987296462059021, + 0.9977996945381165, + 0.9962323307991028 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989114999771118, + 0.9988992214202881, + 0.9974592328071594 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 9 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -306151,7 +625885,7 @@ "10:30", "11:20", "WLH 013 - William L. Harkness Hall 013", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Tuesday": [ @@ -306159,7 +625893,7 @@ "10:30", "11:20", "WLH 013 - William L. Harkness Hall 013", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -306167,7 +625901,7 @@ "10:30", "11:20", "WLH 013 - William L. Harkness Hall 013", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -306175,7 +625909,7 @@ "10:30", "11:20", "WLH 013 - William L. Harkness Hall 013", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Friday": [ @@ -306183,7 +625917,7 @@ "10:30", "11:20", "WLH 013 - William L. Harkness Hall 013", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -306197,10 +625931,91 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89577\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89577/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9867454171180725, + 0.9987945556640625, + 0.9987908005714417, + 0.9889188408851624 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988980293273926, + 0.9987884163856506 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9976974129676819, + 0.9983974099159241 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 8, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 8 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -306237,7 +626052,7 @@ "10:30", "11:20", "LC 210 - Linsly-Chittenden Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Tuesday": [ @@ -306245,7 +626060,7 @@ "10:30", "11:20", "LC 210 - Linsly-Chittenden Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -306253,7 +626068,7 @@ "10:30", "11:20", "LC 210 - Linsly-Chittenden Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -306261,7 +626076,7 @@ "10:30", "11:20", "LC 210 - Linsly-Chittenden Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Friday": [ @@ -306269,7 +626084,7 @@ "10:30", "11:20", "LC 210 - Linsly-Chittenden Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -306283,10 +626098,101 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89579\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89579/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994557499885559, + 0.998625636100769, + 0.9985530972480774, + 0.9988659620285034 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.25, + "POSITIVE": 0.75 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9995125532150269, + 0.998722493648529, + 0.9962041974067688, + 0.9988839030265808 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.999510645866394, + 0.9987925291061401, + 0.9988086223602295, + 0.9989033937454224 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.25, + "POSITIVE": 0.75 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 8, + "final_proportion": 0.6666666666666666, + "final_counts": { + "NEGATIVE": 4, + "POSITIVE": 8 + }, + "final_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + } + } }, { "season_code": "202303", @@ -306323,7 +626229,7 @@ "10:30", "11:20", "WLH 011 - William L. Harkness Hall 011", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Tuesday": [ @@ -306331,7 +626237,7 @@ "10:30", "11:20", "WLH 011 - William L. Harkness Hall 011", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -306339,7 +626245,7 @@ "10:30", "11:20", "WLH 011 - William L. Harkness Hall 011", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Friday": [ @@ -306347,7 +626253,7 @@ "10:30", "11:20", "WLH 011 - William L. Harkness Hall 011", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -306355,7 +626261,7 @@ "10:30", "11:20", "", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -306369,10 +626275,105 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89574\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89574/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9949967861175537, + 0.9988901019096375, + 0.9988489151000977, + 0.9988597631454468 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.25, + "POSITIVE": 0.75 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989175796508789, + 0.9979856014251709, + 0.9988570213317871, + 0.9989025592803955, + 0.998892605304718 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988875985145569, + 0.9880672693252563, + 0.9988768696784973, + 0.9989001750946045, + 0.9972338080406189 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 0.8571428571428571, + "final_counts": { + "NEGATIVE": 2, + "POSITIVE": 12 + }, + "final_distribution": { + "NEGATIVE": 0.14285714285714285, + "POSITIVE": 0.8571428571428571 + } + } }, { "season_code": "202303", @@ -306409,7 +626410,7 @@ "11:35", "12:25", "WLH 011 - William L. Harkness Hall 011", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Tuesday": [ @@ -306417,7 +626418,7 @@ "11:35", "12:25", "WLH 011 - William L. Harkness Hall 011", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -306425,7 +626426,7 @@ "11:35", "12:25", "WLH 011 - William L. Harkness Hall 011", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -306433,7 +626434,7 @@ "11:35", "12:25", "WLH 011 - William L. Harkness Hall 011", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Friday": [ @@ -306441,7 +626442,7 @@ "11:35", "12:25", "WLH 011 - William L. Harkness Hall 011", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -306455,10 +626456,107 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89574\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89574/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987974166870117, + 0.9989135265350342, + 0.9986380934715271, + 0.9973926544189453, + 0.9989025592803955, + 0.9986588954925537, + 0.9985377788543701 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988998174667358, + 0.9989166259765625, + 0.9971018433570862, + 0.9970947504043579, + 0.9988425374031067 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989198446273804, + 0.9988962411880493, + 0.9988394379615784, + 0.9983627200126648 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 16 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -306495,7 +626593,7 @@ "11:35", "12:25", "WLH 013 - William L. Harkness Hall 013", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Tuesday": [ @@ -306503,7 +626601,7 @@ "11:35", "12:25", "WLH 013 - William L. Harkness Hall 013", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -306511,7 +626609,7 @@ "11:35", "12:25", "WLH 013 - William L. Harkness Hall 013", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -306519,7 +626617,7 @@ "11:35", "12:25", "WLH 013 - William L. Harkness Hall 013", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Friday": [ @@ -306527,7 +626625,7 @@ "11:35", "12:25", "WLH 013 - William L. Harkness Hall 013", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -306541,10 +626639,97 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89582\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89582/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986737966537476, + 0.9988206028938293, + 0.9989051818847656, + 0.9988377690315247 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9957998394966125, + 0.9988501071929932, + 0.9988678693771362 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987438321113586, + 0.9988943934440613, + 0.9988889098167419 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 0.9, + "final_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + } + } }, { "season_code": "202303", @@ -306581,7 +626766,7 @@ "9:25", "10:15", "LORIA B50 - Loria Center B50", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ], "Tuesday": [ @@ -306589,7 +626774,7 @@ "9:25", "10:15", "LORIA B50 - Loria Center B50", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ], "Wednesday": [ @@ -306597,7 +626782,7 @@ "9:25", "10:15", "LORIA B50 - Loria Center B50", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ], "Thursday": [ @@ -306605,7 +626790,7 @@ "9:25", "10:15", "LORIA B50 - Loria Center B50", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ], "Friday": [ @@ -306613,7 +626798,7 @@ "9:25", "10:15", "LORIA B50 - Loria Center B50", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -306629,10 +626814,95 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88698\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88698/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988572597503662, + 0.9987972974777222, + 0.9985465407371521 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989012479782104, + 0.9887989163398743, + 0.9974017143249512 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.3333333333333333, + "NEGATIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982954859733582, + 0.9988691210746765, + 0.9988542795181274 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 0.7777777777777778, + "final_counts": { + "POSITIVE": 7, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.7777777777777778, + "NEGATIVE": 0.2222222222222222 + } + } }, { "season_code": "202303", @@ -306669,7 +626939,7 @@ "9:25", "10:15", "WTS B39 - Watson Center 60 Sachem Street B39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Tuesday": [ @@ -306677,7 +626947,7 @@ "9:25", "10:15", "WTS B39 - Watson Center 60 Sachem Street B39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -306685,7 +626955,7 @@ "9:25", "10:15", "WTS B39 - Watson Center 60 Sachem Street B39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -306693,7 +626963,7 @@ "9:25", "10:15", "WTS B39 - Watson Center 60 Sachem Street B39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Friday": [ @@ -306701,7 +626971,7 @@ "9:25", "10:15", "WTS B39 - Watson Center 60 Sachem Street B39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -306717,10 +626987,107 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89583\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89583/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9965708255767822, + 0.9988270401954651, + 0.9988265633583069, + 0.9988859295845032, + 0.9989014863967896 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994720816612244, + 0.9985848665237427, + 0.9986081719398499, + 0.9961838126182556, + 0.9986226558685303 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.4, + "POSITIVE": 0.6 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9995002746582031, + 0.9979959726333618, + 0.9988969564437866, + 0.9986472725868225, + 0.9988730549812317 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 4 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2, + "POSITIVE": 0.8 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 0.8, + "final_counts": { + "POSITIVE": 12, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + } + } }, { "season_code": "202303", @@ -306757,7 +627124,7 @@ "10:30", "11:20", "HQ C03 - Humanities Quadrangle C03", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Tuesday": [ @@ -306765,7 +627132,7 @@ "10:30", "11:20", "HQ C03 - Humanities Quadrangle C03", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -306773,7 +627140,7 @@ "10:30", "11:20", "HQ C03 - Humanities Quadrangle C03", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -306781,7 +627148,7 @@ "10:30", "11:20", "HQ C03 - Humanities Quadrangle C03", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Friday": [ @@ -306789,7 +627156,7 @@ "10:30", "11:20", "HQ C03 - Humanities Quadrangle C03", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -306805,10 +627172,91 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89584\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89584/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988563060760498, + 0.9986487030982971, + 0.998591959476471 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983296990394592, + 0.9988911747932434, + 0.9984068274497986 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.997944176197052, + 0.9988940358161926 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 8, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 8 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -306845,7 +627293,7 @@ "10:30", "11:20", "WTS B39 - Watson Center 60 Sachem Street B39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Tuesday": [ @@ -306853,7 +627301,7 @@ "10:30", "11:20", "WTS B39 - Watson Center 60 Sachem Street B39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -306861,7 +627309,7 @@ "10:30", "11:20", "WTS B39 - Watson Center 60 Sachem Street B39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -306869,7 +627317,7 @@ "10:30", "11:20", "WTS B39 - Watson Center 60 Sachem Street B39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Friday": [ @@ -306877,7 +627325,7 @@ "10:30", "11:20", "WTS B39 - Watson Center 60 Sachem Street B39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -306893,10 +627341,89 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89583\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89583/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9971573352813721 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.998881995677948, + 0.9982879757881165 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988906979560852, + 0.9989319443702698, + 0.9761876463890076 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 4, + "final_proportion": 0.6666666666666666, + "final_counts": { + "POSITIVE": 4, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + } + } }, { "season_code": "202303", @@ -306933,7 +627460,7 @@ "10:30", "11:20", "LC 205 - Linsly-Chittenden Hall 205", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Tuesday": [ @@ -306941,7 +627468,7 @@ "10:30", "11:20", "LC 205 - Linsly-Chittenden Hall 205", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -306949,7 +627476,7 @@ "10:30", "11:20", "LC 205 - Linsly-Chittenden Hall 205", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -306957,7 +627484,7 @@ "10:30", "11:20", "LC 205 - Linsly-Chittenden Hall 205", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Friday": [ @@ -306965,7 +627492,7 @@ "10:30", "11:20", "LC 205 - Linsly-Chittenden Hall 205", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -306981,10 +627508,101 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89586\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89586/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986129999160767, + 0.998913049697876, + 0.9988821148872375, + 0.9988740086555481 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988911747932434, + 0.9989128112792969, + 0.9981251358985901, + 0.9989250302314758 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988927245140076, + 0.9989277720451355, + 0.9989056587219238, + 0.998928964138031, + 0.9981213212013245 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 13 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -307021,7 +627639,7 @@ "11:35", "12:25", "WTS A46 - Watson Center 60 Sachem Street A46", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Tuesday": [ @@ -307029,7 +627647,7 @@ "11:35", "12:25", "WTS A46 - Watson Center 60 Sachem Street A46", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -307037,7 +627655,7 @@ "11:35", "12:25", "WTS A46 - Watson Center 60 Sachem Street A46", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -307045,7 +627663,7 @@ "11:35", "12:25", "WTS A46 - Watson Center 60 Sachem Street A46", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Friday": [ @@ -307053,7 +627671,7 @@ "11:35", "12:25", "WTS A46 - Watson Center 60 Sachem Street A46", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -307069,10 +627687,107 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89587\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89587/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.99870765209198, + 0.9988653659820557, + 0.998836100101471, + 0.9986985921859741, + 0.9988372921943665 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998920202255249, + 0.9989020824432373, + 0.9989047050476074, + 0.998589813709259, + 0.9987462759017944 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989489912986755, + 0.9989001750946045, + 0.9988552331924438, + 0.9987720847129822, + 0.9988539218902588 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 4 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2, + "POSITIVE": 0.8 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 0.9333333333333333, + "final_counts": { + "POSITIVE": 14, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9333333333333333, + "NEGATIVE": 0.06666666666666667 + } + } }, { "season_code": "202303", @@ -307109,7 +627824,7 @@ "11:35", "12:25", "HQ C03 - Humanities Quadrangle C03", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Tuesday": [ @@ -307117,7 +627832,7 @@ "11:35", "12:25", "HQ C03 - Humanities Quadrangle C03", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -307125,7 +627840,7 @@ "11:35", "12:25", "HQ C03 - Humanities Quadrangle C03", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -307133,7 +627848,7 @@ "11:35", "12:25", "HQ C03 - Humanities Quadrangle C03", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Friday": [ @@ -307141,7 +627856,7 @@ "11:35", "12:25", "HQ C03 - Humanities Quadrangle C03", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -307157,10 +627872,17 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89588\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89588/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -307239,10 +627961,38 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92698\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/92698/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -307279,7 +628029,7 @@ "9:25", "11:15", "WTS A46 - Watson Center 60 Sachem Street A46", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Tuesday": [ @@ -307287,7 +628037,7 @@ "9:25", "11:15", "WTS A46 - Watson Center 60 Sachem Street A46", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -307295,7 +628045,7 @@ "9:25", "11:15", "WTS A46 - Watson Center 60 Sachem Street A46", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -307303,7 +628053,7 @@ "9:25", "11:15", "WTS A46 - Watson Center 60 Sachem Street A46", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Friday": [ @@ -307311,7 +628061,7 @@ "9:25", "11:15", "WTS A46 - Watson Center 60 Sachem Street A46", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -307326,10 +628076,101 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89589\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89589/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988860487937927, + 0.998889148235321, + 0.9988816380500793 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988963603973389, + 0.9960422515869141, + 0.9991045594215393, + 0.9987618923187256, + 0.9988580942153931 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.997117280960083, + 0.9954102635383606, + 0.9988756775856018, + 0.9959511756896973 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 0.8333333333333334, + "final_counts": { + "POSITIVE": 10, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + } + } }, { "season_code": "202303", @@ -307366,7 +628207,7 @@ "9:25", "10:15", "WLH 114 - William L. Harkness Hall 114", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Tuesday": [ @@ -307374,7 +628215,7 @@ "9:25", "10:15", "WLH 114 - William L. Harkness Hall 114", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -307382,7 +628223,7 @@ "9:25", "10:15", "WLH 114 - William L. Harkness Hall 114", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -307390,7 +628231,7 @@ "9:25", "10:15", "WLH 114 - William L. Harkness Hall 114", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Friday": [ @@ -307398,7 +628239,7 @@ "9:25", "10:15", "WLH 114 - William L. Harkness Hall 114", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -307412,10 +628253,127 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88700\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88700/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988719820976257, + 0.9987994432449341, + 0.9989098310470581, + 0.9989321827888489, + 0.998753547668457, + 0.9986660480499268, + 0.9989239573478699, + 0.9988490343093872, + 0.9987130165100098 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9976904392242432, + 0.9989193677902222, + 0.9987290501594543, + 0.9988775849342346, + 0.9987871050834656, + 0.9958035349845886, + 0.9937484264373779, + 0.9985734224319458 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 6 + }, + "sentiment_distribution": { + "NEGATIVE": 0.25, + "POSITIVE": 0.75 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989032745361328, + 0.9989206790924072, + 0.9985499978065491, + 0.9989109039306641, + 0.9988214373588562, + 0.9981880784034729, + 0.9989274144172668, + 0.9989027976989746 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "final_label": "POSITIVE", + "final_count": 22, + "final_proportion": 0.88, + "final_counts": { + "POSITIVE": 22, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.88, + "NEGATIVE": 0.12 + } + } }, { "season_code": "202303", @@ -307452,7 +628410,7 @@ "9:25", "10:15", "WLH 203 - William L. Harkness Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Tuesday": [ @@ -307460,7 +628418,7 @@ "9:25", "10:15", "WLH 203 - William L. Harkness Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -307468,7 +628426,7 @@ "9:25", "10:15", "WLH 203 - William L. Harkness Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -307476,7 +628434,7 @@ "9:25", "10:15", "WLH 203 - William L. Harkness Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Friday": [ @@ -307484,7 +628442,7 @@ "9:25", "10:15", "WLH 203 - William L. Harkness Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -307498,10 +628456,115 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89594\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89594/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987207055091858, + 0.9989004135131836, + 0.9988679885864258, + 0.9988512992858887, + 0.9986224174499512, + 0.9989250302314758 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988917708396912, + 0.9989309906959534, + 0.9979473948478699, + 0.9988621473312378, + 0.9988455772399902, + 0.9983518123626709, + 0.9988871216773987 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984045624732971, + 0.9989364743232727, + 0.9987930059432983, + 0.9989219903945923, + 0.9988131523132324, + 0.9982762336730957, + 0.9989328980445862 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 20 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -307538,7 +628601,7 @@ "9:25", "10:15", "WALL53 108 - 53 Wall Street 108", - "https:\/\/map.yale.edu\/?id=1910#!m\/559554" + "https://map.yale.edu/?id=1910#!m/559554" ] ], "Tuesday": [ @@ -307546,7 +628609,7 @@ "9:25", "10:15", "WALL53 108 - 53 Wall Street 108", - "https:\/\/map.yale.edu\/?id=1910#!m\/559554" + "https://map.yale.edu/?id=1910#!m/559554" ] ], "Wednesday": [ @@ -307554,7 +628617,7 @@ "9:25", "10:15", "WALL53 108 - 53 Wall Street 108", - "https:\/\/map.yale.edu\/?id=1910#!m\/559554" + "https://map.yale.edu/?id=1910#!m/559554" ] ], "Thursday": [ @@ -307562,7 +628625,7 @@ "9:25", "10:15", "WALL53 108 - 53 Wall Street 108", - "https:\/\/map.yale.edu\/?id=1910#!m\/559554" + "https://map.yale.edu/?id=1910#!m/559554" ] ], "Friday": [ @@ -307570,7 +628633,7 @@ "9:25", "10:15", "WALL53 108 - 53 Wall Street 108", - "https:\/\/map.yale.edu\/?id=1910#!m\/559554" + "https://map.yale.edu/?id=1910#!m/559554" ] ] }, @@ -307584,10 +628647,97 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89591\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89591/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987903237342834, + 0.9988904595375061, + 0.9987924098968506 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9981338381767273, + 0.9988644123077393, + 0.9955429434776306, + 0.9885624647140503 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986909031867981, + 0.9988827109336853, + 0.998583197593689 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 0.9, + "final_counts": { + "POSITIVE": 9, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + } + } }, { "season_code": "202303", @@ -307624,7 +628774,7 @@ "9:25", "10:15", "WALL81 301 - 81 Wall Street 301", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ], "Tuesday": [ @@ -307632,7 +628782,7 @@ "9:25", "10:15", "WALL81 301 - 81 Wall Street 301", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ], "Wednesday": [ @@ -307640,7 +628790,7 @@ "9:25", "10:15", "WALL81 301 - 81 Wall Street 301", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ], "Thursday": [ @@ -307648,7 +628798,7 @@ "9:25", "10:15", "WALL81 301 - 81 Wall Street 301", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ], "Friday": [ @@ -307656,7 +628806,7 @@ "9:25", "10:15", "WALL81 301 - 81 Wall Street 301", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -307670,10 +628820,105 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89592\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89592/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989187717437744, + 0.9989268183708191, + 0.9984149932861328, + 0.9988951086997986, + 0.9986856579780579 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988208413124084, + 0.9986510872840881, + 0.9988393187522888, + 0.9988662004470825, + 0.9988101720809937 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989392161369324, + 0.9989312291145325, + 0.998916506767273, + 0.9987509250640869, + 0.9987921118736267 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 15 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -307710,7 +628955,7 @@ "10:30", "11:20", "WLH 114 - William L. Harkness Hall 114", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Tuesday": [ @@ -307718,7 +628963,7 @@ "10:30", "11:20", "WLH 114 - William L. Harkness Hall 114", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -307726,7 +628971,7 @@ "10:30", "11:20", "WLH 114 - William L. Harkness Hall 114", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -307734,7 +628979,7 @@ "10:30", "11:20", "WLH 114 - William L. Harkness Hall 114", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Friday": [ @@ -307742,7 +628987,7 @@ "10:30", "11:20", "WLH 114 - William L. Harkness Hall 114", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -307756,10 +629001,117 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88700\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88700/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988043308258057, + 0.9989234805107117, + 0.9986057877540588, + 0.9984556436538696, + 0.9988672733306885, + 0.9933528900146484, + 0.9988957643508911 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9985268115997314, + 0.9988822340965271, + 0.9989317059516907, + 0.9987977743148804, + 0.9988441467285156, + 0.9991291165351868 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9974592328071594, + 0.9989245533943176, + 0.9987425208091736, + 0.9989047050476074, + 0.9985466599464417, + 0.9974592328071594, + 0.9994680285453796 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 0.9, + "final_counts": { + "POSITIVE": 18, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9, + "NEGATIVE": 0.1 + } + } }, { "season_code": "202303", @@ -307796,7 +629148,7 @@ "10:30", "11:20", "WLH 203 - William L. Harkness Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Tuesday": [ @@ -307804,7 +629156,7 @@ "10:30", "11:20", "WLH 203 - William L. Harkness Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -307812,7 +629164,7 @@ "10:30", "11:20", "WLH 203 - William L. Harkness Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -307820,7 +629172,7 @@ "10:30", "11:20", "WLH 203 - William L. Harkness Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Friday": [ @@ -307828,7 +629180,7 @@ "10:30", "11:20", "WLH 203 - William L. Harkness Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -307842,10 +629194,119 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89594\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89594/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986522793769836, + 0.9987873435020447, + 0.9981884360313416, + 0.9986627101898193, + 0.9988610744476318, + 0.997641921043396, + 0.9986504912376404 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988479614257812, + 0.9940322041511536, + 0.9989136457443237, + 0.9988916516304016, + 0.9987564086914062, + 0.9986683130264282, + 0.9989294409751892 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989362359046936, + 0.998860239982605, + 0.9988865256309509, + 0.9981167316436768, + 0.9981533885002136, + 0.9988014698028564, + 0.9988870024681091 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 0.9523809523809523, + "final_counts": { + "POSITIVE": 20, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9523809523809523, + "NEGATIVE": 0.047619047619047616 + } + } }, { "season_code": "202303", @@ -307882,7 +629343,7 @@ "10:30", "11:20", "WALL53 108 - 53 Wall Street 108", - "https:\/\/map.yale.edu\/?id=1910#!m\/559554" + "https://map.yale.edu/?id=1910#!m/559554" ] ], "Tuesday": [ @@ -307890,7 +629351,7 @@ "10:30", "11:20", "WALL53 108 - 53 Wall Street 108", - "https:\/\/map.yale.edu\/?id=1910#!m\/559554" + "https://map.yale.edu/?id=1910#!m/559554" ] ], "Wednesday": [ @@ -307898,7 +629359,7 @@ "10:30", "11:20", "WALL53 108 - 53 Wall Street 108", - "https:\/\/map.yale.edu\/?id=1910#!m\/559554" + "https://map.yale.edu/?id=1910#!m/559554" ] ], "Thursday": [ @@ -307906,7 +629367,7 @@ "10:30", "11:20", "WALL53 108 - 53 Wall Street 108", - "https:\/\/map.yale.edu\/?id=1910#!m\/559554" + "https://map.yale.edu/?id=1910#!m/559554" ] ], "Friday": [ @@ -307914,7 +629375,7 @@ "10:30", "11:20", "WALL53 108 - 53 Wall Street 108", - "https:\/\/map.yale.edu\/?id=1910#!m\/559554" + "https://map.yale.edu/?id=1910#!m/559554" ] ] }, @@ -307928,10 +629389,101 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89591\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89591/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988106489181519, + 0.9985958933830261, + 0.9986470341682434, + 0.9989190101623535 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985902905464172, + 0.9988766312599182, + 0.9988428354263306, + 0.9984939098358154 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9992231130599976, + 0.9982553124427795, + 0.999485969543457, + 0.9989274144172668 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 0.8333333333333334, + "final_counts": { + "POSITIVE": 10, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + } + } }, { "season_code": "202303", @@ -308008,10 +629560,38 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89596\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89596/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -308048,7 +629628,7 @@ "10:30", "11:20", "WALL81 301 - 81 Wall Street 301", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ], "Tuesday": [ @@ -308056,7 +629636,7 @@ "10:30", "11:20", "WALL81 301 - 81 Wall Street 301", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ], "Wednesday": [ @@ -308064,7 +629644,7 @@ "10:30", "11:20", "WALL81 301 - 81 Wall Street 301", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ], "Thursday": [ @@ -308072,7 +629652,7 @@ "10:30", "11:20", "WALL81 301 - 81 Wall Street 301", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ], "Friday": [ @@ -308080,7 +629660,7 @@ "10:30", "11:20", "WALL81 301 - 81 Wall Street 301", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -308094,10 +629674,101 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89597\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89597/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998891294002533, + 0.9978043437004089, + 0.9952669143676758, + 0.9988164901733398 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998799204826355, + 0.9977407455444336, + 0.9994885921478271, + 0.9989264607429504 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998927891254425, + 0.989620566368103, + 0.9988924860954285, + 0.9988847374916077 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 0.75, + "final_counts": { + "POSITIVE": 9, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + } + } }, { "season_code": "202303", @@ -308134,7 +629805,7 @@ "11:35", "12:25", "WALL53 108 - 53 Wall Street 108", - "https:\/\/map.yale.edu\/?id=1910#!m\/559554" + "https://map.yale.edu/?id=1910#!m/559554" ] ], "Tuesday": [ @@ -308142,7 +629813,7 @@ "11:35", "12:25", "WALL53 108 - 53 Wall Street 108", - "https:\/\/map.yale.edu\/?id=1910#!m\/559554" + "https://map.yale.edu/?id=1910#!m/559554" ] ], "Wednesday": [ @@ -308150,7 +629821,7 @@ "11:35", "12:25", "WALL53 108 - 53 Wall Street 108", - "https:\/\/map.yale.edu\/?id=1910#!m\/559554" + "https://map.yale.edu/?id=1910#!m/559554" ] ], "Thursday": [ @@ -308158,7 +629829,7 @@ "11:35", "12:25", "WALL53 108 - 53 Wall Street 108", - "https:\/\/map.yale.edu\/?id=1910#!m\/559554" + "https://map.yale.edu/?id=1910#!m/559554" ] ], "Friday": [ @@ -308166,7 +629837,7 @@ "11:35", "12:25", "WALL53 108 - 53 Wall Street 108", - "https:\/\/map.yale.edu\/?id=1910#!m\/559554" + "https://map.yale.edu/?id=1910#!m/559554" ] ] }, @@ -308180,10 +629851,107 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89591\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89591/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987525939941406, + 0.9989159107208252, + 0.9994878768920898, + 0.9988973140716553, + 0.9988627433776855 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986386895179749, + 0.9934229254722595, + 0.9994809031486511, + 0.998914361000061, + 0.9988399147987366 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.6, + "NEGATIVE": 0.4 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989156723022461, + 0.9989058971405029, + 0.9713426232337952, + 0.9989004135131836, + 0.9987334609031677 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 0.7333333333333333, + "final_counts": { + "POSITIVE": 11, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.7333333333333333, + "NEGATIVE": 0.26666666666666666 + } + } }, { "season_code": "202303", @@ -308220,7 +629988,7 @@ "10:30", "11:20", "LORIA B50 - Loria Center B50", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ], "Tuesday": [ @@ -308228,7 +629996,7 @@ "10:30", "11:20", "LORIA B50 - Loria Center B50", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ], "Wednesday": [ @@ -308236,7 +630004,7 @@ "10:30", "11:20", "LORIA B50 - Loria Center B50", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ], "Thursday": [ @@ -308244,7 +630012,7 @@ "10:30", "11:20", "LORIA B50 - Loria Center B50", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ], "Friday": [ @@ -308252,7 +630020,7 @@ "10:30", "11:20", "LORIA B50 - Loria Center B50", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -308266,10 +630034,111 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89599\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89599/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989109039306641, + 0.998748779296875, + 0.9982454776763916, + 0.9988716244697571, + 0.9954801797866821, + 0.9985769987106323 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988999366760254, + 0.9988916516304016, + 0.9983595013618469, + 0.9988957643508911, + 0.998672366142273, + 0.9987659454345703 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988853335380554, + 0.998920202255249, + 0.9989319443702698, + 0.9974017143249512, + 0.9982553124427795, + 0.9987994432449341 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 18 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -308306,7 +630175,7 @@ "11:35", "12:25", "LORIA B50 - Loria Center B50", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ], "Tuesday": [ @@ -308314,7 +630183,7 @@ "11:35", "12:25", "LORIA B50 - Loria Center B50", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ], "Wednesday": [ @@ -308322,7 +630191,7 @@ "11:35", "12:25", "LORIA B50 - Loria Center B50", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ], "Thursday": [ @@ -308330,7 +630199,7 @@ "11:35", "12:25", "LORIA B50 - Loria Center B50", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ], "Friday": [ @@ -308338,7 +630207,7 @@ "11:35", "12:25", "LORIA B50 - Loria Center B50", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -308352,10 +630221,95 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89599\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89599/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9976820945739746, + 0.9986346364021301, + 0.9988040924072266 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998920202255249, + 0.998757004737854, + 0.9989398121833801 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988700747489929, + 0.9988071918487549, + 0.9989023208618164, + 0.9988951086997986 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 10 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -308392,7 +630346,7 @@ "11:35", "12:25", "WLH 007 - William L. Harkness Hall 007", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -308400,7 +630354,7 @@ "11:35", "12:25", "WLH 007 - William L. Harkness Hall 007", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Friday": [ @@ -308408,7 +630362,7 @@ "11:35", "12:25", "WLH 007 - William L. Harkness Hall 007", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -308422,10 +630376,111 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89601\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89601/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988260865211487, + 0.9986559152603149, + 0.9978933930397034, + 0.9981337189674377, + 0.9986854195594788, + 0.9988981485366821 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988107681274414, + 0.9989333748817444, + 0.9989326596260071, + 0.9989282488822937, + 0.9987506866455078, + 0.9988935589790344 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988662004470825, + 0.9989346861839294, + 0.997117280960083, + 0.9989187717437744, + 0.9976831674575806, + 0.9989080429077148 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 18 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -308464,7 +630519,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -308501,7 +630584,7 @@ "9:25", "10:15", "LC 205 - Linsly-Chittenden Hall 205", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Tuesday": [ @@ -308509,7 +630592,7 @@ "9:25", "10:15", "LC 205 - Linsly-Chittenden Hall 205", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -308517,7 +630600,7 @@ "9:25", "10:15", "LC 205 - Linsly-Chittenden Hall 205", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -308525,7 +630608,7 @@ "9:25", "10:15", "LC 205 - Linsly-Chittenden Hall 205", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Friday": [ @@ -308533,7 +630616,7 @@ "9:25", "10:15", "LC 205 - Linsly-Chittenden Hall 205", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -308547,10 +630630,137 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89602\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89602/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988413453102112, + 0.998802900314331, + 0.9985412359237671, + 0.9988299012184143, + 0.9989142417907715, + 0.9978710412979126, + 0.99880051612854, + 0.9988460540771484, + 0.998492956161499, + 0.9989079236984253 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989112615585327, + 0.9988973140716553, + 0.9989203214645386, + 0.9989053010940552, + 0.9988032579421997, + 0.9988480806350708, + 0.9981826543807983, + 0.9989111423492432, + 0.998893678188324, + 0.9988548755645752 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988829493522644, + 0.9988952279090881, + 0.9986635446548462, + 0.9988967180252075, + 0.9985199570655823, + 0.9989006519317627, + 0.9988971948623657, + 0.998917818069458, + 0.9989039897918701, + 0.9989068508148193, + 0.9988652467727661 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 31, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 31 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -308587,7 +630797,7 @@ "9:25", "10:15", "WLH 120 - William L. Harkness Hall 120", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Tuesday": [ @@ -308595,7 +630805,7 @@ "9:25", "10:15", "WLH 120 - William L. Harkness Hall 120", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -308603,7 +630813,7 @@ "9:25", "10:15", "WLH 120 - William L. Harkness Hall 120", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -308611,7 +630821,7 @@ "9:25", "10:15", "WLH 120 - William L. Harkness Hall 120", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Friday": [ @@ -308619,7 +630829,7 @@ "9:25", "10:15", "WLH 120 - William L. Harkness Hall 120", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -308633,10 +630843,93 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89603\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89603/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998725950717926, + 0.9976623058319092, + 0.9989338517189026 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998877227306366, + 0.9971067309379578, + 0.9989288449287415 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.997117280960083, + 0.997912585735321, + 0.9989098310470581 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 9, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 9 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -308673,7 +630966,7 @@ "10:30", "11:20", "LOM 215 - Leet Oliver Memorial Hall 215", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ], "Tuesday": [ @@ -308681,7 +630974,7 @@ "10:30", "11:20", "LOM 215 - Leet Oliver Memorial Hall 215", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ], "Wednesday": [ @@ -308689,7 +630982,7 @@ "10:30", "11:20", "LOM 215 - Leet Oliver Memorial Hall 215", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ], "Thursday": [ @@ -308697,7 +630990,7 @@ "10:30", "11:20", "LOM 215 - Leet Oliver Memorial Hall 215", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ], "Friday": [ @@ -308705,7 +630998,7 @@ "10:30", "11:20", "LOM 215 - Leet Oliver Memorial Hall 215", - "https:\/\/map.yale.edu\/?id=1910#!m\/559558" + "https://map.yale.edu/?id=1910#!m/559558" ] ] }, @@ -308719,10 +631012,113 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89604\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89604/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989262223243713, + 0.9988647699356079, + 0.9984482526779175, + 0.9988552331924438, + 0.9827834367752075, + 0.9989007711410522 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988964796066284, + 0.998936116695404, + 0.9988515377044678, + 0.9988995790481567, + 0.9988415837287903, + 0.9989192485809326, + 0.9989138841629028 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998903751373291, + 0.9985809326171875, + 0.9989076852798462, + 0.9989258646965027, + 0.9974592328071594, + 0.998885452747345 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 19 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -308759,7 +631155,7 @@ "10:30", "11:20", "BASSLB L70 - Bass Library L70", - "https:\/\/map.yale.edu\/?id=1910#!m\/564574" + "https://map.yale.edu/?id=1910#!m/564574" ] ], "Tuesday": [ @@ -308767,7 +631163,7 @@ "10:30", "11:20", "BASSLB L70 - Bass Library L70", - "https:\/\/map.yale.edu\/?id=1910#!m\/564574" + "https://map.yale.edu/?id=1910#!m/564574" ] ], "Wednesday": [ @@ -308775,7 +631171,7 @@ "10:30", "11:20", "BASSLB L70 - Bass Library L70", - "https:\/\/map.yale.edu\/?id=1910#!m\/564574" + "https://map.yale.edu/?id=1910#!m/564574" ] ], "Thursday": [ @@ -308783,7 +631179,7 @@ "10:30", "11:20", "BASSLB L70 - Bass Library L70", - "https:\/\/map.yale.edu\/?id=1910#!m\/564574" + "https://map.yale.edu/?id=1910#!m/564574" ] ], "Friday": [ @@ -308791,7 +631187,7 @@ "10:30", "11:20", "BASSLB L70 - Bass Library L70", - "https:\/\/map.yale.edu\/?id=1910#!m\/564574" + "https://map.yale.edu/?id=1910#!m/564574" ] ] }, @@ -308805,10 +631201,125 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89605\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89605/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988180994987488, + 0.9988691210746765, + 0.9989169836044312, + 0.9986609220504761, + 0.998826801776886, + 0.9420201182365417, + 0.9988338351249695, + 0.9988049268722534 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989159107208252, + 0.9989376664161682, + 0.9985830783843994, + 0.9995080232620239, + 0.9988766312599182, + 0.997588038444519, + 0.9980620741844177 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988877177238464, + 0.9985184073448181, + 0.9988844990730286, + 0.9987664222717285, + 0.9988137483596802, + 0.9983373880386353, + 0.9989137649536133, + 0.9981436729431152, + 0.9988658428192139 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.7777777777777778, + "NEGATIVE": 0.2222222222222222 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7777777777777778 + ] + }, + "final_label": "POSITIVE", + "final_count": 21, + "final_proportion": 0.875, + "final_counts": { + "POSITIVE": 21, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + } + } }, { "season_code": "202303", @@ -308845,7 +631356,7 @@ "10:30", "11:20", "WLH 120 - William L. Harkness Hall 120", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Tuesday": [ @@ -308853,7 +631364,7 @@ "10:30", "11:20", "WLH 120 - William L. Harkness Hall 120", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -308861,7 +631372,7 @@ "10:30", "11:20", "WLH 120 - William L. Harkness Hall 120", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -308869,7 +631380,7 @@ "10:30", "11:20", "WLH 120 - William L. Harkness Hall 120", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Friday": [ @@ -308877,7 +631388,7 @@ "10:30", "11:20", "WLH 120 - William L. Harkness Hall 120", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -308891,10 +631402,99 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89609\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89609/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988322854042053, + 0.9988729357719421, + 0.9989239573478699, + 0.9988321661949158 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998923122882843, + 0.99872225522995, + 0.9988805651664734, + 0.9986119270324707 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988992214202881, + 0.9989142417907715, + 0.9989339709281921, + 0.9989370703697205 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 12 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -308930,10 +631530,38 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89610\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89610/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -308970,7 +631598,7 @@ "11:35", "12:25", "BASSLB L70 - Bass Library L70", - "https:\/\/map.yale.edu\/?id=1910#!m\/564574" + "https://map.yale.edu/?id=1910#!m/564574" ] ], "Tuesday": [ @@ -308978,7 +631606,7 @@ "11:35", "12:25", "BASSLB L70 - Bass Library L70", - "https:\/\/map.yale.edu\/?id=1910#!m\/564574" + "https://map.yale.edu/?id=1910#!m/564574" ] ], "Wednesday": [ @@ -308986,7 +631614,7 @@ "11:35", "12:25", "BASSLB L70 - Bass Library L70", - "https:\/\/map.yale.edu\/?id=1910#!m\/564574" + "https://map.yale.edu/?id=1910#!m/564574" ] ], "Thursday": [ @@ -308994,7 +631622,7 @@ "11:35", "12:25", "BASSLB L70 - Bass Library L70", - "https:\/\/map.yale.edu\/?id=1910#!m\/564574" + "https://map.yale.edu/?id=1910#!m/564574" ] ], "Friday": [ @@ -309002,7 +631630,7 @@ "11:35", "12:25", "BASSLB L70 - Bass Library L70", - "https:\/\/map.yale.edu\/?id=1910#!m\/564574" + "https://map.yale.edu/?id=1910#!m/564574" ] ] }, @@ -309016,10 +631644,113 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89611\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89611/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9962582588195801, + 0.9987795948982239, + 0.9987727999687195, + 0.998665452003479, + 0.9982205033302307, + 0.9988644123077393 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 5 + }, + "sentiment_distribution": { + "NEGATIVE": 0.16666666666666666, + "POSITIVE": 0.8333333333333334 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9962963461875916, + 0.9984872341156006, + 0.9935338497161865, + 0.9989134073257446, + 0.9983205199241638, + 0.9989233613014221 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981873631477356, + 0.9988729357719421, + 0.9987597465515137, + 0.9989268183708191, + 0.9988839030265808, + 0.9989390969276428 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 0.8888888888888888, + "final_counts": { + "NEGATIVE": 2, + "POSITIVE": 16 + }, + "final_distribution": { + "NEGATIVE": 0.1111111111111111, + "POSITIVE": 0.8888888888888888 + } + } }, { "season_code": "202303", @@ -309056,7 +631787,7 @@ "11:35", "12:25", "WALL81 301 - 81 Wall Street 301", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ], "Tuesday": [ @@ -309064,7 +631795,7 @@ "11:35", "12:25", "WALL81 301 - 81 Wall Street 301", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ], "Wednesday": [ @@ -309072,7 +631803,7 @@ "11:35", "12:25", "WALL81 301 - 81 Wall Street 301", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ], "Thursday": [ @@ -309080,7 +631811,7 @@ "11:35", "12:25", "WALL81 301 - 81 Wall Street 301", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ], "Friday": [ @@ -309088,7 +631819,7 @@ "11:35", "12:25", "WALL81 301 - 81 Wall Street 301", - "https:\/\/map.yale.edu\/?id=1910#!m\/559926" + "https://map.yale.edu/?id=1910#!m/559926" ] ] }, @@ -309102,10 +631833,105 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89612\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89612/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986563920974731, + 0.9991149306297302, + 0.9989014863967896, + 0.9989318251609802 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9707268476486206, + 0.9991245865821838, + 0.99847811460495, + 0.9985307455062866, + 0.9988143444061279 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.4, + "POSITIVE": 0.6 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988617897033691, + 0.9921934008598328, + 0.999457061290741, + 0.9988993406295776, + 0.9988792538642883 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 0.7142857142857143, + "final_counts": { + "POSITIVE": 10, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.7142857142857143, + "NEGATIVE": 0.2857142857142857 + } + } }, { "season_code": "202303", @@ -309141,10 +631967,38 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89613\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89613/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -309181,7 +632035,7 @@ "11:35", "12:25", "WLH 203 - William L. Harkness Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -309189,7 +632043,7 @@ "11:35", "12:25", "WLH 203 - William L. Harkness Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Friday": [ @@ -309197,7 +632051,7 @@ "11:35", "12:25", "WLH 203 - William L. Harkness Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -309211,14 +632065,109 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89614\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89614/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "Prerequisite: AP with score of 5\/ IB score of 7, Placement in L5 through Spanish Department placement exam or by having completed L4.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988804459571838, + 0.9988402724266052, + 0.9988648891448975, + 0.998893678188324, + 0.9987673759460449 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989194869995117, + 0.9988150596618652, + 0.9989153146743774, + 0.9988911747932434, + 0.9988822340965271 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989326596260071, + 0.998845100402832, + 0.9988434314727783, + 0.9988541603088379, + 0.9988629817962646 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 15 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } + }, + { + "season_code": "202303", + "requirements": "Prerequisite: AP with score of 5/ IB score of 7, Placement in L5 through Spanish Department placement exam or by having completed L4.", "description": "An advanced course designed to increase student\u2019s fluency in oral and written skills. Through the exploration of five art themes relevant to Spanish speaking countries, students review advanced points of Spanish grammar, focus on vocabulary enrichment, and learn the basic principles of academic composition. The course approach for learning is a project-based model which introduces a wide variety of texts: readings, visual art, podcast, music, videos. Students are required to register for a recitacion practice that consists of a weekly 40-minute conversation with students from Pontificia Universidad Cat\u00f3lica del Per\u00fa.", "short_title": "Spanish Language and Culture ...", "title": "Spanish Language and Culture through Art", @@ -309251,7 +632200,7 @@ "11:35", "12:50", "WTS B39 - Watson Center 60 Sachem Street B39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -309259,7 +632208,7 @@ "11:35", "12:50", "WTS B39 - Watson Center 60 Sachem Street B39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -309275,10 +632224,143 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89625\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89625/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989153146743774, + 0.9988642930984497, + 0.9988538026809692, + 0.9988006353378296, + 0.9988862872123718, + 0.9988452196121216, + 0.9987919926643372, + 0.998875081539154, + 0.9988781809806824, + 0.9983453750610352, + 0.9985740184783936 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989354014396667, + 0.9988322854042053, + 0.9989234805107117, + 0.9989067316055298, + 0.9989000558853149, + 0.9988823533058167, + 0.9988778233528137, + 0.9988943934440613, + 0.9989190101623535, + 0.9987107515335083, + 0.9987490177154541 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989187717437744, + 0.9989266991615295, + 0.9987831711769104, + 0.9989142417907715, + 0.9984954595565796, + 0.9989182949066162, + 0.9989111423492432, + 0.9989180564880371, + 0.9989092350006104, + 0.9989218711853027, + 0.9988740086555481, + 0.9988971948623657 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 34, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 34 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -309316,7 +632398,7 @@ "9:00", "10:15", "HQ 133 - Humanities Quadrangle 133", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -309324,7 +632406,7 @@ "9:00", "10:15", "HQ 133 - Humanities Quadrangle 133", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -309338,10 +632420,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89620\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89620/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -309379,7 +632489,7 @@ "11:35", "12:50", "WLH 113 - William L. Harkness Hall 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -309387,7 +632497,7 @@ "11:35", "12:50", "WLH 113 - William L. Harkness Hall 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -309401,10 +632511,123 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89621\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89621/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988799691200256, + 0.998908519744873, + 0.9987664222717285, + 0.9988318085670471, + 0.9971306920051575, + 0.9987516403198242, + 0.9958904981613159, + 0.9902257323265076 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989307522773743, + 0.9987292885780334, + 0.998848557472229, + 0.9989290833473206, + 0.9976480603218079, + 0.9987146854400635, + 0.9931655526161194 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988943934440613, + 0.9988433122634888, + 0.9989012479782104, + 0.9989210367202759, + 0.9988541603088379, + 0.9989045858383179, + 0.9985470175743103, + 0.9986529350280762 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "final_label": "POSITIVE", + "final_count": 22, + "final_proportion": 0.9565217391304348, + "final_counts": { + "POSITIVE": 22, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9565217391304348, + "NEGATIVE": 0.043478260869565216 + } + } }, { "season_code": "202303", @@ -309442,7 +632665,7 @@ "11:35", "12:50", "WLH 210 - William L. Harkness Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -309450,7 +632673,7 @@ "11:35", "12:50", "WLH 210 - William L. Harkness Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -309464,10 +632687,113 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89622\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89622/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987082481384277, + 0.9989263415336609, + 0.9988492727279663, + 0.998853325843811, + 0.9982299208641052, + 0.9989122152328491, + 0.9986253976821899 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988968372344971, + 0.99888676404953, + 0.9987539052963257, + 0.9989128112792969, + 0.9987121820449829 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988623857498169, + 0.9989019632339478, + 0.9987572431564331, + 0.9989138841629028, + 0.9989049434661865, + 0.99769526720047, + 0.9988648891448975 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 19 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -309505,7 +632831,7 @@ "13:00", "14:15", "WLH 114 - William L. Harkness Hall 114", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -309513,7 +632839,7 @@ "13:00", "14:15", "WLH 114 - William L. Harkness Hall 114", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -309527,10 +632853,109 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88820\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88820/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988129138946533, + 0.99892657995224, + 0.9989114999771118, + 0.998664140701294, + 0.9986434578895569 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987229704856873, + 0.9968668818473816, + 0.9987925291061401, + 0.9989250302314758, + 0.9987142086029053 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 4 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2, + "POSITIVE": 0.8 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9964457154273987, + 0.9989122152328491, + 0.9986421465873718, + 0.9989128112792969, + 0.9989078044891357, + 0.9995118379592896 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 4 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 0.8125, + "final_counts": { + "POSITIVE": 13, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.8125, + "NEGATIVE": 0.1875 + } + } }, { "season_code": "202303", @@ -309568,7 +632993,7 @@ "13:00", "14:15", "HQ C07 - Humanities Quadrangle C07", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -309576,7 +633001,7 @@ "13:00", "14:15", "HQ C07 - Humanities Quadrangle C07", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -309590,10 +633015,99 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88821\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88821/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989117383956909, + 0.9988166093826294, + 0.9986082911491394, + 0.9988388419151306 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989245533943176, + 0.9987865090370178, + 0.9988905787467957, + 0.9989114999771118 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986417889595032, + 0.9988778233528137, + 0.9989051818847656, + 0.9988735318183899 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 12 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -309632,7 +633146,7 @@ "11:35", "12:50", "HQ 207 - Humanities Quadrangle 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -309640,7 +633154,7 @@ "11:35", "12:50", "HQ 207 - Humanities Quadrangle 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -309654,15 +633168,92 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89726\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89726/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989153146743774, + 0.9989243149757385 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988337159156799, + 0.9989074468612671 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989240765571594, + 0.9974592328071594 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 6 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", "requirements": "Prerequisite: SPAN 140 or 145, or in accordance with placement results.\u00a0", - "description": "Extreme weather, proliferation of species extinctions, climate migration, and the outbreak of pandemics can all be understood as instances of koyaanisqatsi, the Hopi word for life out of balance. They may also be viewed as indications that we are living in the age of the Anthropocene, a term in the natural and social sciences that acknowledges that human activities have had a radical geological impact on the planet since the onset of the Industrial revolution.\u00a0In this course we study relations between humans and other-than-humans to understand how we arrived at a life out of balance. We inquire into how binary distinctions between nature and culture are made, sustained, or questioned through a diversity of meaning-making practices in Spanish, Latin American, and indigenous literature, visual culture, and material culture. The indigenous artifacts studied include Popol Vuh, poetry, petroglyphs, and documentaries by indigenous people of the Amazon, which provide opportunities for asking pressing questions: To what extent does the nature and culture binary foreclose alternative possibilities for imagining ourselves and our relation to the world? Are there ways of perceiving our world and ourselves that bypass such binaries and if so, what are they? In the final weeks of the course, we draw from our insights to investigate where the nature\/culture binary figures in present discussions of environmental catastrophes and rights of nature movements in Latin America. Taught in Spanish.", + "description": "Extreme weather, proliferation of species extinctions, climate migration, and the outbreak of pandemics can all be understood as instances of koyaanisqatsi, the Hopi word for life out of balance. They may also be viewed as indications that we are living in the age of the Anthropocene, a term in the natural and social sciences that acknowledges that human activities have had a radical geological impact on the planet since the onset of the Industrial revolution.\u00a0In this course we study relations between humans and other-than-humans to understand how we arrived at a life out of balance. We inquire into how binary distinctions between nature and culture are made, sustained, or questioned through a diversity of meaning-making practices in Spanish, Latin American, and indigenous literature, visual culture, and material culture. The indigenous artifacts studied include Popol Vuh, poetry, petroglyphs, and documentaries by indigenous people of the Amazon, which provide opportunities for asking pressing questions: To what extent does the nature and culture binary foreclose alternative possibilities for imagining ourselves and our relation to the world? Are there ways of perceiving our world and ourselves that bypass such binaries and if so, what are they? In the final weeks of the course, we draw from our insights to investigate where the nature/culture binary figures in present discussions of environmental catastrophes and rights of nature movements in Latin America. Taught in Spanish.", "short_title": "Reading Environments: Nature,...", "title": "Reading Environments: Nature, Culture, and Agency", "school": "YC", @@ -309697,7 +633288,7 @@ "11:35", "12:50", "HQ 313 - Humanities Quadrangle 313", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -309705,7 +633296,7 @@ "11:35", "12:50", "HQ 313 - Humanities Quadrangle 313", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -309719,10 +633310,109 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89727\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89727/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998887836933136, + 0.9988370537757874, + 0.9987188577651978, + 0.9989056587219238 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998939573764801, + 0.9986592531204224, + 0.9989306330680847, + 0.9943006038665771, + 0.998871386051178, + 0.9988806843757629 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989240765571594, + 0.9988006353378296, + 0.9989392161369324, + 0.9940915703773499, + 0.9989081621170044, + 0.9988939166069031 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 0.9375, + "final_counts": { + "POSITIVE": 15, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9375, + "NEGATIVE": 0.0625 + } + } }, { "season_code": "202303", @@ -309760,7 +633450,7 @@ "9:25", "10:15", "HQ C03 - Humanities Quadrangle C03", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -309768,7 +633458,7 @@ "9:25", "10:15", "HQ C03 - Humanities Quadrangle C03", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Friday": [ @@ -309776,7 +633466,7 @@ "9:25", "10:15", "HQ C03 - Humanities Quadrangle C03", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -309790,10 +633480,101 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89623\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89623/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988324046134949, + 0.9984859824180603, + 0.9987244009971619, + 0.9989181756973267 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.99712735414505, + 0.998293936252594, + 0.998636782169342, + 0.9984418749809265 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9965477585792542, + 0.999506950378418, + 0.9989299178123474, + 0.9988359808921814 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 0.8333333333333334, + "final_counts": { + "POSITIVE": 10, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + } + } }, { "season_code": "202303", @@ -309830,7 +633611,7 @@ "11:35", "12:50", "HQ 227 - Humanities Quadrangle 227", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -309838,7 +633619,7 @@ "11:35", "12:50", "HQ 227 - Humanities Quadrangle 227", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -309854,10 +633635,141 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90342\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/90342/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987519979476929, + 0.9988705515861511, + 0.9988235831260681, + 0.9984277486801147, + 0.9986664056777954, + 0.9988813996315002, + 0.9989066123962402, + 0.998908519744873, + 0.9988840222358704 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9980758428573608, + 0.9988095760345459, + 0.9995086193084717, + 0.9988186955451965, + 0.998786985874176, + 0.9985761642456055, + 0.9988629817962646, + 0.9989246726036072, + 0.9989162683486938, + 0.9989345669746399 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988654851913452, + 0.9988561868667603, + 0.9963100552558899, + 0.9988445043563843, + 0.998816728591919, + 0.9966555833816528, + 0.9989256262779236, + 0.9988687634468079, + 0.9988688826560974, + 0.9987416863441467, + 0.9987664222717285, + 0.9989156723022461, + 0.9988610744476318 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 30, + "final_proportion": 0.9375, + "final_counts": { + "POSITIVE": 30, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9375, + "NEGATIVE": 0.0625 + } + } }, { "season_code": "202303", @@ -309895,7 +633807,7 @@ "14:30", "15:45", "HQ 207 - Humanities Quadrangle 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -309903,7 +633815,7 @@ "14:30", "15:45", "HQ 207 - Humanities Quadrangle 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -309921,10 +633833,105 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90706\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90706/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998889148235321, + 0.9988922476768494, + 0.9989053010940552, + 0.9988775849342346, + 0.9987649917602539 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9972993731498718, + 0.9988824725151062, + 0.9977165460586548, + 0.9966172575950623, + 0.9988940358161926 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989221096038818, + 0.9987751841545105, + 0.9989293217658997, + 0.9989383816719055, + 0.9989030361175537 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 15 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -309962,7 +633969,7 @@ "14:30", "15:45", "WLH 003 - William L. Harkness Hall 003", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -309970,7 +633977,7 @@ "14:30", "15:45", "WLH 003 - William L. Harkness Hall 003", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -309986,10 +633993,115 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88703\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88703/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988247752189636, + 0.9986410737037659, + 0.9988918900489807, + 0.9987267851829529, + 0.9986794590950012, + 0.998918890953064 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9964235424995422, + 0.9989153146743774, + 0.9989290833473206, + 0.9989148378372192, + 0.9989076852798462, + 0.9989342093467712, + 0.9988239407539368 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998915433883667, + 0.9989326596260071, + 0.9985975623130798, + 0.9985563158988953, + 0.9989209175109863, + 0.9987584352493286, + 0.9988491535186768 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 20 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -310030,7 +634142,7 @@ "13:30", "15:20", "HQ 317 - Humanities Quadrangle 317", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -310044,10 +634156,107 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90234\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90234/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984467625617981, + 0.9988627433776855, + 0.9987572431564331, + 0.9988536834716797, + 0.998889148235321, + 0.9987830519676208 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989288449287415, + 0.9893749952316284, + 0.9988841414451599, + 0.9984605312347412, + 0.9988671541213989 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988357424736023, + 0.9982391595840454, + 0.9988481998443604, + 0.9988767504692078, + 0.9964302182197571 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 16 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -310085,7 +634294,7 @@ "9:00", "10:15", "WLH 204 - William L. Harkness Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -310093,7 +634302,7 @@ "9:00", "10:15", "WLH 204 - William L. Harkness Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -310109,17 +634318,136 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88705\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88705/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988388419151306, + 0.9973123073577881, + 0.9986945986747742, + 0.9988456964492798, + 0.9989334940910339, + 0.998684823513031, + 0.9988887906074524, + 0.9988607168197632 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988918900489807, + 0.9108808636665344, + 0.9987818598747253, + 0.9994503855705261, + 0.9989215135574341, + 0.9989087581634521, + 0.9880746006965637, + 0.9989060163497925 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.625, + "NEGATIVE": 0.375 + }, + "sentiment_overall": [ + "POSITIVE", + 0.625 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986889958381653, + 0.9988596439361572, + 0.9988551139831543, + 0.9970284104347229, + 0.9989240765571594, + 0.998852014541626, + 0.997117280960083, + 0.998736560344696, + 0.9903036952018738, + 0.9989027976989746 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 22, + "final_proportion": 0.8461538461538461, + "final_counts": { + "POSITIVE": 22, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.8461538461538461, + "NEGATIVE": 0.15384615384615385 + } + } }, { "season_code": "202303", "requirements": "", "description": "Individual study under faculty supervision. The student must submit a bibliography and a written plan of study approved by the faculty adviser to the director of undergraduate studies. No reading or research course credit is granted without prior approval from the director of undergraduate studies. The student must meet with the instructor at least one hour a week. A final examination or essay is required.", - "short_title": "Directed Readings and\/or Indi...", - "title": "Directed Readings and\/or Individual Research", + "short_title": "Directed Readings and/or Indi...", + "title": "Directed Readings and/or Individual Research", "school": "YC", "credits": 1.0, "extra_info": "ACTIVE", @@ -310155,7 +634483,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -310198,12 +634554,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "This course is a practical studio, introducing students to the historical debates and the range of historical sources for the study of medieval Iberia, including Latin, Arabic, Judeo-Arabic, and Spanish material. Reading knowledge of Latin and\/or Arabic is required. Reading knowledge of Spanish is preferred.", + "description": "This course is a practical studio, introducing students to the historical debates and the range of historical sources for the study of medieval Iberia, including Latin, Arabic, Judeo-Arabic, and Spanish material. Reading knowledge of Latin and/or Arabic is required. Reading knowledge of Spanish is preferred.", "short_title": "Medieval Iberia", "title": "Medieval Iberia", "school": "GS", @@ -310237,7 +634621,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -310275,7 +634687,7 @@ "13:30", "15:20", "CO493 103 - 493 College Street 103", - "https:\/\/map.yale.edu\/?id=1910#!m\/560001" + "https://map.yale.edu/?id=1910#!m/560001" ] ] }, @@ -310287,10 +634699,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88778\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88778/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -310331,7 +634771,7 @@ "13:30", "15:20", "HQ 317 - Humanities Quadrangle 317", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -310343,10 +634783,107 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90234\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90234/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984467625617981, + 0.9988627433776855, + 0.9987572431564331, + 0.9988536834716797, + 0.998889148235321, + 0.9987830519676208 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989288449287415, + 0.9893749952316284, + 0.9988841414451599, + 0.9984605312347412, + 0.9988671541213989 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988357424736023, + 0.9982391595840454, + 0.9988481998443604, + 0.9988767504692078, + 0.9964302182197571 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 16 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -310387,7 +634924,7 @@ "13:30", "15:20", "HQ 213 - Humanities Quadrangle 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -310399,15 +634936,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88710\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88710/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "This is the first section of a year-long seminar (second section: CPLT 914) designed to introduce the discipline of psychoanalysis through primary sources, mainly from the Freudian and Lacanian corpuses but including late twentieth-century commentators and contemporary interdisciplinary conversations. We rigorously examine key psychoanalytic concepts that students have heard about but never had the chance to study. Students gain proficiency in what has been called \"the language of psychoanalysis,\" as well as tools for critical practice in disciplines such as literary criticism, political theory, film studies, gender studies, theory of ideology, psychology medical humanities, etc. We study concepts such as the unconscious, identification, the drive, repetition, the imaginary, fantasy, the symbolic, the real, and jouissance. A central goal of the seminar is to disambiguate Freud's corpus from Lacan's reinvention of it. We do not come to the \"rescue\" of Freud. We revisit essays that are relevant for contemporary conversations within the international psychoanalytic community. We include only a handful of materials from the Anglophone schools of psychoanalysis developed in England and the US. This section pays special attention to Freud's \"three\" (the ego, superego, and id) in comparison to Lacan's \"three\" (the imaginary, the symbolic, and the real). CPLT 914 devotes, depending on the interests expressed by the group, the last six weeks to special psychoanalytic topics such as sexuation, perversion, psychosis, anti-asylum movements, conversations between psychoanalysis and neurosciences and artificial intelligence, the current pharmacological model of mental health, and\/or to specific uses of psychoanalysis in disciplines such as film theory, political philosophy, and the critique of ideology. Apart from Freud and Lacan, we will read work by Georges Canguilhem, Roman Jakobson, Victor Tausk, \u00c9mile Benveniste, Valentin Volosinov, Guy Le Gaufey, Jean Laplanche, \u00c9tienne Balibar, Roberto Esposito, Wilfred Bion, F\u00e9lix Guattari, Markos Zafiropoulos, Franco Bifo Berardi, Barbara Cassin, Renata Salecl, Maurice Godelier, Alenka Zupan\u010di\u010d, Juliet Mitchell, Jacqueline Rose, Norbert Wiener, Alan Turing, Eric Kandel, and Lera Boroditsky among others.\u00a0No previous knowledge of psychoanalysis is needed. Starting out from basic questions, we study how psychoanalysis, arguably, changed the way we think of human subjectivity. Graduate students from all departments and schools on campus are welcome. The final assignment is due by the end of the spring term and need not necessarily take the form of a twenty-page paper. Taught in English. Materials can be provided to cover the linguistic range of the group.", + "description": "This is the first section of a year-long seminar (second section: CPLT 914) designed to introduce the discipline of psychoanalysis through primary sources, mainly from the Freudian and Lacanian corpuses but including late twentieth-century commentators and contemporary interdisciplinary conversations. We rigorously examine key psychoanalytic concepts that students have heard about but never had the chance to study. Students gain proficiency in what has been called \"the language of psychoanalysis,\" as well as tools for critical practice in disciplines such as literary criticism, political theory, film studies, gender studies, theory of ideology, psychology medical humanities, etc. We study concepts such as the unconscious, identification, the drive, repetition, the imaginary, fantasy, the symbolic, the real, and jouissance. A central goal of the seminar is to disambiguate Freud's corpus from Lacan's reinvention of it. We do not come to the \"rescue\" of Freud. We revisit essays that are relevant for contemporary conversations within the international psychoanalytic community. We include only a handful of materials from the Anglophone schools of psychoanalysis developed in England and the US. This section pays special attention to Freud's \"three\" (the ego, superego, and id) in comparison to Lacan's \"three\" (the imaginary, the symbolic, and the real). CPLT 914 devotes, depending on the interests expressed by the group, the last six weeks to special psychoanalytic topics such as sexuation, perversion, psychosis, anti-asylum movements, conversations between psychoanalysis and neurosciences and artificial intelligence, the current pharmacological model of mental health, and/or to specific uses of psychoanalysis in disciplines such as film theory, political philosophy, and the critique of ideology. Apart from Freud and Lacan, we will read work by Georges Canguilhem, Roman Jakobson, Victor Tausk, \u00c9mile Benveniste, Valentin Volosinov, Guy Le Gaufey, Jean Laplanche, \u00c9tienne Balibar, Roberto Esposito, Wilfred Bion, F\u00e9lix Guattari, Markos Zafiropoulos, Franco Bifo Berardi, Barbara Cassin, Renata Salecl, Maurice Godelier, Alenka Zupan\u010di\u010d, Juliet Mitchell, Jacqueline Rose, Norbert Wiener, Alan Turing, Eric Kandel, and Lera Boroditsky among others.\u00a0No previous knowledge of psychoanalysis is needed. Starting out from basic questions, we study how psychoanalysis, arguably, changed the way we think of human subjectivity. Graduate students from all departments and schools on campus are welcome. The final assignment is due by the end of the spring term and need not necessarily take the form of a twenty-page paper. Taught in English. Materials can be provided to cover the linguistic range of the group.", "short_title": "Psychoanalysis: Key Conceptua...", "title": "Psychoanalysis: Key Conceptual Differences between Freud and Lacan I", "school": "GS", @@ -310443,7 +635008,7 @@ "19:00", "20:50", "PH 207 - Phelps Hall 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/559570" + "https://map.yale.edu/?id=1910#!m/559570" ] ] }, @@ -310455,10 +635020,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89105\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89105/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -310495,7 +635088,7 @@ "15:30", "17:20", "HQ 113 - Humanities Quadrangle 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -310507,15 +635100,43 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88712\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88712/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "A yearlong workshop designed for professional development. The subject matter varies from term to term, and from year to year. Students must attend at least three complete Modules throughout the year. Graded Satisfactory\/Unsatisfactory only; open to all students. Details and schedule are available at https:\/\/span-port.yale.edu\/dpw-schedule.", + "description": "A yearlong workshop designed for professional development. The subject matter varies from term to term, and from year to year. Students must attend at least three complete Modules throughout the year. Graded Satisfactory/Unsatisfactory only; open to all students. Details and schedule are available at https://span-port.yale.edu/dpw-schedule.", "short_title": "The Doctoral and Professional...", "title": "The Doctoral and Professional Workshop", "school": "GS", @@ -310553,7 +635174,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -310596,12 +635245,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "This series is inspired by the spirit of Sheherazade, Dhuoda, Christine de Pizan, Teresa de Cartagena, the peque\u00f1as mujeres rojas, and so many others for whom the practice of literature\u2014in many of its facets\u2014was the matter of survival. They existed in circumstances of physical and sexual violence, of civil war, of racial discrimination, of isolation; they also lived in circumstances that cannot be properly expressed outside their own experiments with literature.\u00a0Our guests write from many directions, for many audiences, for many souls: novels, reviews, the lives of afrodescendent people, dance, race, sexual violences, asylum briefs, and so many other forms of polyhedric writing that explore the limits of literature\u2014and those of survival. They are in conversation about their work, about their thought, and, certainly, about the joys and frustrations of the literary worlds they inhabit.\u00a0The thirteen nights in the series will be held from September through November. The full schedule of Iberian Nights will be posted on Canvas.\u00a0Students who would like to receive credit for attending all thirteen sessions of the Iberian Nights series should enroll in this workshop.\u00a0Graded SAT\/UNSAT.", + "description": "This series is inspired by the spirit of Sheherazade, Dhuoda, Christine de Pizan, Teresa de Cartagena, the peque\u00f1as mujeres rojas, and so many others for whom the practice of literature\u2014in many of its facets\u2014was the matter of survival. They existed in circumstances of physical and sexual violence, of civil war, of racial discrimination, of isolation; they also lived in circumstances that cannot be properly expressed outside their own experiments with literature.\u00a0Our guests write from many directions, for many audiences, for many souls: novels, reviews, the lives of afrodescendent people, dance, race, sexual violences, asylum briefs, and so many other forms of polyhedric writing that explore the limits of literature\u2014and those of survival. They are in conversation about their work, about their thought, and, certainly, about the joys and frustrations of the literary worlds they inhabit.\u00a0The thirteen nights in the series will be held from September through November. The full schedule of Iberian Nights will be posted on Canvas.\u00a0Students who would like to receive credit for attending all thirteen sessions of the Iberian Nights series should enroll in this workshop.\u00a0Graded SAT/UNSAT.", "short_title": "Iberian Nights Workshop", "title": "Iberian Nights Workshop", "school": "GS", @@ -310636,10 +635313,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90559\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90559/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -310682,7 +635387,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -310722,10 +635455,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88714\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88714/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -310762,7 +635523,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -310800,7 +635589,7 @@ "9:25", "10:15", "WTS A74 - Watson Center 60 Sachem Street A74", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Tuesday": [ @@ -310808,7 +635597,7 @@ "9:25", "10:15", "WTS A74 - Watson Center 60 Sachem Street A74", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -310816,7 +635605,7 @@ "9:25", "10:15", "WTS A74 - Watson Center 60 Sachem Street A74", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -310824,7 +635613,7 @@ "9:25", "10:15", "WTS A74 - Watson Center 60 Sachem Street A74", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Friday": [ @@ -310832,7 +635621,7 @@ "9:25", "10:15", "WTS A74 - Watson Center 60 Sachem Street A74", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -310846,10 +635635,97 @@ "classnotes": "", "final_exam": "Friday, December 15, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90368\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90368/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988248944282532, + 0.9988003969192505, + 0.9989318251609802, + 0.9922170639038086 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989098310470581, + 0.9988402724266052, + 0.9987693428993225 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989097118377686, + 0.9989317059516907, + 0.9989314675331116, + 0.9988540410995483 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 11 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -310887,7 +635763,7 @@ "10:30", "11:20", "HQ 132 - Humanities Quadrangle 132", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Tuesday": [ @@ -310895,7 +635771,7 @@ "10:30", "11:20", "HQ 132 - Humanities Quadrangle 132", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -310903,7 +635779,7 @@ "10:30", "11:20", "HQ 132 - Humanities Quadrangle 132", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -310911,7 +635787,7 @@ "10:30", "11:20", "HQ 132 - Humanities Quadrangle 132", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Friday": [ @@ -310919,7 +635795,7 @@ "10:30", "11:20", "HQ 132 - Humanities Quadrangle 132", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -310933,10 +635809,61 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90369\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90369/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986340403556824 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987138509750366 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 2, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 2 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -310974,7 +635901,7 @@ "11:35", "12:50", "WTS B39 - Watson Center 60 Sachem Street B39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -310982,7 +635909,7 @@ "11:35", "12:50", "WTS B39 - Watson Center 60 Sachem Street B39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -310996,10 +635923,38 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90370\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/90370/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -311037,7 +635992,7 @@ "11:35", "12:50", "WTS B36 - Watson Center 60 Sachem Street B36", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -311045,7 +636000,7 @@ "11:35", "12:50", "WTS B36 - Watson Center 60 Sachem Street B36", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -311061,10 +636016,38 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90371\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/90371/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -311102,7 +636085,7 @@ "9:25", "10:15", "WTS A74 - Watson Center 60 Sachem Street A74", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Tuesday": [ @@ -311110,7 +636093,7 @@ "9:25", "10:15", "WTS A74 - Watson Center 60 Sachem Street A74", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -311118,7 +636101,7 @@ "9:25", "10:15", "WTS A74 - Watson Center 60 Sachem Street A74", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -311126,7 +636109,7 @@ "9:25", "10:15", "WTS A74 - Watson Center 60 Sachem Street A74", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Friday": [ @@ -311134,7 +636117,7 @@ "9:25", "10:15", "WTS A74 - Watson Center 60 Sachem Street A74", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -311146,10 +636129,97 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90368\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90368/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988248944282532, + 0.9988003969192505, + 0.9989318251609802, + 0.9922170639038086 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989098310470581, + 0.9988402724266052, + 0.9987693428993225 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989097118377686, + 0.9989317059516907, + 0.9989314675331116, + 0.9988540410995483 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 11 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -311187,7 +636257,7 @@ "10:30", "11:20", "HQ 132 - Humanities Quadrangle 132", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Tuesday": [ @@ -311195,7 +636265,7 @@ "10:30", "11:20", "HQ 132 - Humanities Quadrangle 132", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -311203,7 +636273,7 @@ "10:30", "11:20", "HQ 132 - Humanities Quadrangle 132", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -311211,7 +636281,7 @@ "10:30", "11:20", "HQ 132 - Humanities Quadrangle 132", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Friday": [ @@ -311219,7 +636289,7 @@ "10:30", "11:20", "HQ 132 - Humanities Quadrangle 132", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -311231,10 +636301,61 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90369\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90369/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986340403556824 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987138509750366 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 2, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 2 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -311272,7 +636393,7 @@ "11:35", "12:50", "WTS B39 - Watson Center 60 Sachem Street B39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -311280,7 +636401,7 @@ "11:35", "12:50", "WTS B39 - Watson Center 60 Sachem Street B39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -311292,10 +636413,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90370\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90370/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -311333,7 +636482,7 @@ "11:35", "12:50", "WTS B36 - Watson Center 60 Sachem Street B36", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -311341,7 +636490,7 @@ "11:35", "12:50", "WTS B36 - Watson Center 60 Sachem Street B36", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -311353,10 +636502,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90371\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90371/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -311414,7 +636591,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -311486,7 +636691,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -311542,7 +636775,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -311598,7 +636859,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -311654,7 +636943,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -311701,7 +637018,35 @@ "syllabus_url": "", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -311738,7 +637083,7 @@ "13:00", "14:15", "ELM294 303 - Broadway Rehearsal Lofts 303", - "https:\/\/map.yale.edu\/?id=1910#!m\/559982" + "https://map.yale.edu/?id=1910#!m/559982" ] ], "Thursday": [ @@ -311746,7 +637091,7 @@ "13:00", "14:15", "ELM294 303 - Broadway Rehearsal Lofts 303", - "https:\/\/map.yale.edu\/?id=1910#!m\/559982" + "https://map.yale.edu/?id=1910#!m/559982" ] ] }, @@ -311759,13 +637104,126 @@ ], "regnotes": "", "rp_attr": "", - "classnotes": "T\/TH 1 \u2013 2:15 pm \n294 Elm, 303\n", + "classnotes": "T/TH 1 \u2013 2:15 pm \n294 Elm, 303\n", "final_exam": "Saturday, December 16, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89016\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89016/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989144802093506, + 0.9989029169082642, + 0.9975780844688416, + 0.9988431930541992, + 0.9992468357086182, + 0.9988062381744385, + 0.9994959831237793, + 0.9988883137702942 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.625, + "NEGATIVE": 0.375 + }, + "sentiment_overall": [ + "POSITIVE", + 0.625 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988734126091003, + 0.9989299178123474, + 0.9994990825653076, + 0.9959933757781982, + 0.9995054006576538, + 0.9983433485031128, + 0.9913055300712585, + 0.9968035221099854 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.625, + "NEGATIVE": 0.375 + }, + "sentiment_overall": [ + "POSITIVE", + 0.625 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988176226615906, + 0.9988157749176025, + 0.9995070695877075, + 0.9988663196563721, + 0.9995112419128418, + 0.9983184337615967, + 0.9994999170303345 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 4 + }, + "sentiment_distribution": { + "POSITIVE": 0.42857142857142855, + "NEGATIVE": 0.5714285714285714 + }, + "sentiment_overall": [ + "NEGATIVE", + 0.5714285714285714 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 0.5652173913043478, + "final_counts": { + "POSITIVE": 13, + "NEGATIVE": 10 + }, + "final_distribution": { + "POSITIVE": 0.5652173913043478, + "NEGATIVE": 0.43478260869565216 + } + } }, { "season_code": "202303", @@ -311802,7 +637260,7 @@ "15:30", "17:20", "YK220 001 - 220 York Street 001", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ] }, @@ -311818,10 +637276,89 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88715\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88715/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988357424736023, + 0.9989157915115356, + 0.9981924891471863 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989110231399536, + 0.9989144802093506 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989217519760132, + 0.9989388585090637 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 7 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -311861,7 +637398,7 @@ "10:30", "13:20", "YK220 101 - 220 York Street 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ] }, @@ -311875,10 +637412,103 @@ "classnotes": "All students wishing to take THST 110 must register for THST 110 Section 01. Each student of THST 110 will eventually need to sign up for one of these three TF-led discussion sections: THST Sections 02, 03 or 04 - time and meeting place to be announced. ", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88717\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88717/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998895525932312, + 0.9988514184951782, + 0.9989312291145325, + 0.9987999200820923 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9929623007774353, + 0.9987803101539612, + 0.9937532544136047, + 0.9975937008857727, + 0.9989326596260071 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994945526123047, + 0.998895525932312, + 0.9994691014289856, + 0.9989290833473206 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 0.7692307692307693, + "final_counts": { + "POSITIVE": 10, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.7692307692307693, + "NEGATIVE": 0.23076923076923078 + } + } }, { "season_code": "202303", @@ -311926,7 +637556,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -311974,7 +637632,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -312022,7 +637708,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -312062,7 +637776,7 @@ "14:30", "15:45", "LC 209 - Linsly-Chittenden Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -312070,7 +637784,7 @@ "14:30", "15:45", "LC 209 - Linsly-Chittenden Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -312086,10 +637800,123 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88538\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88538/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989283680915833, + 0.9980698227882385, + 0.9989109039306641, + 0.9989012479782104, + 0.9989288449287415, + 0.9989268183708191, + 0.9988389611244202, + 0.9987667798995972 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989386200904846, + 0.9989200830459595, + 0.9986739158630371, + 0.998127281665802, + 0.9988141059875488, + 0.99893718957901, + 0.9989105463027954, + 0.9989297986030579 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989369511604309, + 0.9975807666778564, + 0.9989223480224609, + 0.9989076852798462, + 0.9989245533943176, + 0.998906135559082, + 0.9988064765930176, + 0.9989016056060791 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 24, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 24 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -312129,7 +637956,7 @@ "13:30", "15:20", "PWG 5TH-H - Payne Whitney Gymnasium 5TH-H", - "https:\/\/map.yale.edu\/?id=1910#!m\/559944" + "https://map.yale.edu/?id=1910#!m/559944" ] ], "Wednesday": [ @@ -312137,7 +637964,7 @@ "13:30", "15:20", "PWG 5TH-H - Payne Whitney Gymnasium 5TH-H", - "https:\/\/map.yale.edu\/?id=1910#!m\/559944" + "https://map.yale.edu/?id=1910#!m/559944" ] ] }, @@ -312151,10 +637978,111 @@ "classnotes": "Location: Payne Whitney Gym 5th Floor Court H", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88722\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88722/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987894892692566, + 0.9988920092582703, + 0.9988273978233337, + 0.9989132881164551, + 0.9989367127418518, + 0.9986855387687683 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998938262462616, + 0.9989007711410522, + 0.9989332556724548, + 0.9989226460456848, + 0.9989217519760132, + 0.9989327788352966 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986396431922913, + 0.9986543655395508, + 0.9986892342567444, + 0.9989217519760132, + 0.998930037021637, + 0.9989333748817444 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 18 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -312197,7 +638125,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -312234,7 +638190,7 @@ "13:30", "15:20", "YK220 201 - 220 York Street 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ], "Wednesday": [ @@ -312242,7 +638198,7 @@ "13:30", "15:20", "YK220 201 - 220 York Street 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ] }, @@ -312256,10 +638212,95 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88724\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88724/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988818764686584, + 0.9988856911659241, + 0.9988396763801575 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988765120506287, + 0.9989295601844788, + 0.9973344802856445 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989200830459595, + 0.9988947510719299, + 0.9992274045944214 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 8, + "final_proportion": 0.8888888888888888, + "final_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + } + } }, { "season_code": "202303", @@ -312296,7 +638337,7 @@ "15:30", "17:20", "YK220 201 - 220 York Street 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ], "Wednesday": [ @@ -312304,7 +638345,7 @@ "15:30", "17:20", "YK220 201 - 220 York Street 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ] }, @@ -312318,10 +638359,93 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88725\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88725/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986699819564819, + 0.9988628625869751, + 0.9989062547683716 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9980452060699463, + 0.9989112615585327, + 0.9989281296730042 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989356398582458, + 0.9989259839057922 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 0.875, + "final_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + } + } }, { "season_code": "202303", @@ -312359,7 +638483,7 @@ "15:30", "17:20", "ELM294 303 - Broadway Rehearsal Lofts 303", - "https:\/\/map.yale.edu\/?id=1910#!m\/559982" + "https://map.yale.edu/?id=1910#!m/559982" ] ] }, @@ -312377,10 +638501,113 @@ "classnotes": "M 3:30 \u2013 5:20 pm\n294 Elm, 303\n", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89017\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89017/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987372756004333, + 0.998492956161499, + 0.9977602958679199, + 0.9989340901374817, + 0.998897910118103, + 0.9987425208091736 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989031553268433, + 0.9971206784248352, + 0.9988670349121094, + 0.9989218711853027, + 0.9989174604415894, + 0.9987412095069885 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986398816108704, + 0.9979768395423889, + 0.9988110065460205, + 0.9988381266593933, + 0.9988981485366821, + 0.9988683462142944 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 0.9444444444444444, + "final_counts": { + "POSITIVE": 17, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9444444444444444, + "NEGATIVE": 0.05555555555555555 + } + } }, { "season_code": "202303", @@ -312425,7 +638652,7 @@ "13:30", "15:20", "YK220 001 - 220 York Street 001", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ] }, @@ -312442,10 +638669,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90520\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90520/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -312482,7 +638737,7 @@ "9:25", "11:15", "YK220 201 - 220 York Street 201", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ] }, @@ -312496,15 +638751,68 @@ "classnotes": "", "final_exam": "Thursday, December 14, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92676\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92676/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "", - "description": "With its lush and fantastic landscape, fabulous carnivalesque aesthetics, and rich African Diaspora Religious traditions, the Caribbean has long been a setting where New World black artists have staged competing visions of racial and sexual utopia and dystopia. However, these foreigner-authored fantasies have often overshadowed the lived experience and life storytelling of Caribbean subjects. This course explores the intersecting performance cultures, politics, and sensual\/sexual practices that have constituted queer life in the Caribbean region and its diaspora. Placing Caribbean queer of color critique alongside key moments in twentieth and twenty-first century performance history at home and abroad, we ask how have histories of the plantation, discourses of race and nation, migration, and revolution led to the formation of regionally specific queer identifications. What about the idea of the \"tropics\" has made it such as fertile ground for queer performance making, and how have artists from the region identified or dis-identified with these aesthetic formations? This class begins with an exploration of theories of queer diaspora and queer of color critique\u2019s roots in black feminisms. We cover themes of exile, religious rites, and organizing as sights of queer political formation and creative community in the Caribbean.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988112449645996 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9995026588439941 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 0 + }, + "sentiment_distribution": { + "NEGATIVE": 1.0, + "POSITIVE": 0.0 + }, + "sentiment_overall": [ + "NEGATIVE", + 1.0 + ] + }, + "final_label": "neutral", + "final_count": 0.5, + "final_proportion": 0.5, + "final_counts": { + "POSITIVE": 1, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + } + } + }, + { + "season_code": "202303", + "requirements": "", + "description": "With its lush and fantastic landscape, fabulous carnivalesque aesthetics, and rich African Diaspora Religious traditions, the Caribbean has long been a setting where New World black artists have staged competing visions of racial and sexual utopia and dystopia. However, these foreigner-authored fantasies have often overshadowed the lived experience and life storytelling of Caribbean subjects. This course explores the intersecting performance cultures, politics, and sensual/sexual practices that have constituted queer life in the Caribbean region and its diaspora. Placing Caribbean queer of color critique alongside key moments in twentieth and twenty-first century performance history at home and abroad, we ask how have histories of the plantation, discourses of race and nation, migration, and revolution led to the formation of regionally specific queer identifications. What about the idea of the \"tropics\" has made it such as fertile ground for queer performance making, and how have artists from the region identified or dis-identified with these aesthetic formations? This class begins with an exploration of theories of queer diaspora and queer of color critique\u2019s roots in black feminisms. We cover themes of exile, religious rites, and organizing as sights of queer political formation and creative community in the Caribbean.", "short_title": "Queer Caribbean Performance", "title": "Queer Caribbean Performance", "school": "YC", @@ -312537,7 +638845,7 @@ "13:30", "15:20", "ELM294 303 - Broadway Rehearsal Lofts 303", - "https:\/\/map.yale.edu\/?id=1910#!m\/559982" + "https://map.yale.edu/?id=1910#!m/559982" ] ] }, @@ -312553,10 +638861,107 @@ "classnotes": "", "final_exam": "Wednesday, December 20, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89018\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89018/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.99886155128479, + 0.9989344477653503, + 0.998392641544342, + 0.9988904595375061 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989109039306641, + 0.9989394545555115, + 0.9989275336265564, + 0.9987421631813049, + 0.9989240765571594, + 0.9989282488822937 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989155530929565, + 0.9988629817962646, + 0.9989190101623535, + 0.9994893074035645, + 0.9989369511604309 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 0.9333333333333333, + "final_counts": { + "POSITIVE": 14, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9333333333333333, + "NEGATIVE": 0.06666666666666667 + } + } }, { "season_code": "202303", @@ -312594,7 +638999,7 @@ "13:30", "15:20", "STOECK 312 - Stoeckel Hall (renovated) 312", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ] }, @@ -312610,10 +639015,129 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88499\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88499/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988222718238831, + 0.9989332556724548, + 0.9987587928771973, + 0.9988229870796204, + 0.998887836933136, + 0.9989172220230103, + 0.9988307356834412, + 0.9988823533058167, + 0.9988420605659485 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988940358161926, + 0.9989123344421387, + 0.9985142350196838, + 0.9986957907676697, + 0.9988560676574707, + 0.9988935589790344, + 0.9988918900489807, + 0.9988779425621033, + 0.998923122882843 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984672665596008, + 0.9989233613014221, + 0.9989281296730042, + 0.9983071088790894, + 0.9986976385116577, + 0.9988781809806824, + 0.9982553124427795, + 0.9988391995429993, + 0.9988692402839661 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 27, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 27 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -312657,7 +639181,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -312701,7 +639253,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -312738,7 +639318,7 @@ "10:30", "12:20", "YK220 101 - 220 York Street 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ], "Wednesday": [ @@ -312746,7 +639326,7 @@ "10:30", "12:20", "YK220 101 - 220 York Street 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ] }, @@ -312762,10 +639342,95 @@ "classnotes": "Production seminar in the art & craft of directing a play. Text analysis & synthesis, visualization, & elements of staging including clarity, depth, & musicality. Practical work includes directing two scenes to be presented in class, each reworked. Evaluating & sharpening tools, working with actors & designers, communicating to the audience one's deepest connections with the material.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88727\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88727/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987333416938782, + 0.9989264607429504, + 0.9988769888877869 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989006519317627, + 0.9988937973976135, + 0.9988977909088135, + 0.9988800883293152 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988921284675598, + 0.9988822340965271, + 0.9989122152328491 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 10 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -312820,10 +639485,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88729\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88729/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -312863,7 +639556,7 @@ "13:30", "17:20", "YK220 101 - 220 York Street 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ] }, @@ -312877,10 +639570,101 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88796\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88796/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989198446273804, + 0.9989111423492432, + 0.9987865090370178, + 0.9988289475440979 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989331364631653, + 0.9989149570465088, + 0.9987315535545349, + 0.9989031553268433 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998936116695404, + 0.9989099502563477, + 0.9987016916275024, + 0.9988948702812195, + 0.9982798099517822 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 13 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -312926,7 +639710,7 @@ "15:30", "17:20", "HQ 209 - Humanities Quadrangle 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -312940,10 +639724,97 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88908\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88908/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988865256309509, + 0.9988441467285156, + 0.9987584352493286, + 0.9989197254180908 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989302754402161, + 0.998914361000061, + 0.9977319240570068 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988856911659241, + 0.9989079236984253, + 0.9989084005355835, + 0.9989058971405029 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 11 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -312981,7 +639852,7 @@ "13:30", "17:20", "YK220 101 - 220 York Street 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ] }, @@ -312997,10 +639868,115 @@ "classnotes": "THST 315 aims to build the actor\u2019s comprehension and confidence in Shakespeare\u2019s language while developing each artist\u2019s emotional, intellectual, and imaginative responsiveness to the demands and joys of acting Shakespeare. At the same time, we will explore how, as theater artists, we each bring our own history and psyche to Shakespeare\u2019s stories and characters so they may still speak to us and to our audiences today.\n\n\nHere are the steps to follow if you are interested in THST 315: \n(1) Set up an audition by emailing Daniela Varon, (2) Request permission to enroll in YCS, and (3) Add the course in Canvas to look over the course description, materials, etc.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88730\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88730/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988563060760498, + 0.9988881945610046, + 0.9989239573478699, + 0.9988415837287903, + 0.9989092350006104, + 0.9989228844642639 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989258646965027, + 0.9989105463027954, + 0.9987492561340332, + 0.9988270401954651, + 0.9978502988815308, + 0.9988942742347717, + 0.9989350438117981 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986012578010559, + 0.998932421207428, + 0.9981535077095032, + 0.9988724589347839, + 0.9988014698028564, + 0.9984952211380005, + 0.9988962411880493 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 20 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -313038,7 +640014,7 @@ "10:30", "12:20", "ELM294 303 - Broadway Rehearsal Lofts 303", - "https:\/\/map.yale.edu\/?id=1910#!m\/559982" + "https://map.yale.edu/?id=1910#!m/559982" ] ], "Thursday": [ @@ -313046,7 +640022,7 @@ "10:30", "12:20", "ELM294 303 - Broadway Rehearsal Lofts 303", - "https:\/\/map.yale.edu\/?id=1910#!m\/559982" + "https://map.yale.edu/?id=1910#!m/559982" ] ] }, @@ -313057,13 +640033,92 @@ "flags": [], "regnotes": "", "rp_attr": "", - "classnotes": "T\/TH 10:30 am \u2013 12:20 pm \n294 Elm, 303\n", + "classnotes": "T/TH 10:30 am \u2013 12:20 pm \n294 Elm, 303\n", "final_exam": "Wednesday, December 20, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89019\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89019/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9968749284744263, + 0.9987336993217468 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989297986030579, + 0.9988981485366821 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989234805107117, + 0.9987803101539612, + 0.9989246726036072 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 7 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -313101,7 +640156,7 @@ "13:30", "16:30", "LC 212 - Linsly-Chittenden Hall 212", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -313112,13 +640167,90 @@ ], "regnotes": "", "rp_attr": "This course meets during the Reading Period: the week between the last week of classes and finals week. Meets Reading Period", - "classnotes": "See the English department website for a list of creative writing and journalism courses that require the submission of an application by noon on April 5. https:\/\/english.yale.edu\/undergraduate\/courses\/creative-writing-journalism-courses", + "classnotes": "See the English department website for a list of creative writing and journalism courses that require the submission of an application by noon on April 5. https://english.yale.edu/undergraduate/courses/creative-writing-journalism-courses", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88070\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88070/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988276362419128 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988553524017334, + 0.9988194108009338 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.99888676404953, + 0.9982553124427795 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 4, + "final_proportion": 0.8, + "final_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + } + } }, { "season_code": "202303", @@ -313156,7 +640288,7 @@ "15:30", "17:20", "YK220 101 - 220 York Street 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ], "Wednesday": [ @@ -313164,7 +640296,7 @@ "15:30", "17:20", "YK220 101 - 220 York Street 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ] }, @@ -313178,10 +640310,125 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88732\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88732/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998870313167572, + 0.998910665512085, + 0.9985364675521851, + 0.9987447261810303, + 0.9988110065460205, + 0.9989307522773743, + 0.9989073276519775 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988551139831543, + 0.9989319443702698, + 0.9960399866104126, + 0.998708963394165, + 0.9989287257194519, + 0.9989129304885864, + 0.9988872408866882 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987682700157166, + 0.9989016056060791, + 0.998938262462616, + 0.9988812804222107, + 0.9989345669746399, + 0.9988647699356079, + 0.9989020824432373, + 0.9989160299301147, + 0.998896598815918, + 0.9988431930541992 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 23, + "final_proportion": 0.9583333333333334, + "final_counts": { + "POSITIVE": 23, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9583333333333334, + "NEGATIVE": 0.041666666666666664 + } + } }, { "season_code": "202303", @@ -313218,7 +640465,7 @@ "13:30", "15:20", "YK220 101 - 220 York Street 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ], "Wednesday": [ @@ -313226,7 +640473,7 @@ "13:30", "15:20", "YK220 101 - 220 York Street 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ] }, @@ -313240,10 +640487,111 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88734\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88734/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988393187522888, + 0.9989317059516907, + 0.9984862804412842, + 0.9988676309585571, + 0.9989223480224609, + 0.9988491535186768 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987567663192749, + 0.9979274272918701, + 0.9988665580749512, + 0.9982445240020752, + 0.9989235997200012 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983296990394592, + 0.9988933205604553, + 0.9989250302314758, + 0.9989319443702698, + 0.9987561702728271, + 0.9988654851913452 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 0.9411764705882353, + "final_counts": { + "POSITIVE": 16, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9411764705882353, + "NEGATIVE": 0.058823529411764705 + } + } }, { "season_code": "202303", @@ -313281,7 +640629,7 @@ "10:30", "12:20", "PWG 5TH-EF - Payne Whitney Gymnasium 5TH-EF", - "https:\/\/map.yale.edu\/?id=1910#!m\/559944" + "https://map.yale.edu/?id=1910#!m/559944" ] ], "Thursday": [ @@ -313289,7 +640637,7 @@ "10:30", "12:20", "PWG 5TH-EF - Payne Whitney Gymnasium 5TH-EF", - "https:\/\/map.yale.edu\/?id=1910#!m\/559944" + "https://map.yale.edu/?id=1910#!m/559944" ] ] }, @@ -313302,13 +640650,90 @@ ], "regnotes": "", "rp_attr": "This course meets during the Reading Period: the week between the last week of classes and finals week. Meets Reading Period", - "classnotes": "T\/Th 10:30 am \u2013 12:20 pm \nPWG ", + "classnotes": "T/Th 10:30 am \u2013 12:20 pm \nPWG ", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89020\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89020/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988896250724792, + 0.9988347887992859 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988969564437866, + 0.9988824725151062 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986581802368164, + 0.9985758066177368 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 6 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -313345,7 +640770,7 @@ "13:30", "17:20", "YK220 001 - 220 York Street 001", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ] }, @@ -313358,11 +640783,90 @@ "rp_attr": "", "classnotes": "220 York Street B01, Instructor Ethan Philbrick Wednesday's 1:30-5:20pm", "final_exam": "No regular final examination", - "course_home_url": "https:\/\/yale.instructure.com\/courses\/90516", + "course_home_url": "https://yale.instructure.com/courses/90516", "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9802486300468445, + 0.9987027645111084, + 0.998918890953064 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 2 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3333333333333333, + "POSITIVE": 0.6666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983618855476379 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9971700310707092, + 0.9989339709281921 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 5, + "final_proportion": 0.8333333333333334, + "final_counts": { + "NEGATIVE": 1, + "POSITIVE": 5 + }, + "final_distribution": { + "NEGATIVE": 0.16666666666666666, + "POSITIVE": 0.8333333333333334 + } + } }, { "season_code": "202303", @@ -313399,7 +640903,7 @@ "13:30", "15:20", "ELM294 303 - Broadway Rehearsal Lofts 303", - "https:\/\/map.yale.edu\/?id=1910#!m\/559982" + "https://map.yale.edu/?id=1910#!m/559982" ] ] }, @@ -313415,10 +640919,133 @@ "classnotes": "Professor Daniel Ulbricht will be the instructor for this course. \n\nM 1:30 \u2013 3:20 pm\n294 Elm, 303\n", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89021\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89021/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989217519760132, + 0.9989234805107117, + 0.9988019466400146, + 0.9988617897033691, + 0.9988468885421753, + 0.998878538608551, + 0.9989205598831177, + 0.9987940788269043, + 0.9989004135131836 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988538026809692, + 0.9989145994186401, + 0.9975737929344177, + 0.9988125562667847, + 0.9988707900047302, + 0.9989005327224731, + 0.9986005425453186, + 0.9989107847213745, + 0.9989213943481445 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989204406738281, + 0.9989383816719055, + 0.9988740086555481, + 0.9980168342590332, + 0.9989387392997742, + 0.9989174604415894, + 0.998935878276825, + 0.9988909363746643, + 0.9989333748817444, + 0.9989332556724548 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 27, + "final_proportion": 0.9642857142857143, + "final_counts": { + "POSITIVE": 27, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9642857142857143, + "NEGATIVE": 0.03571428571428571 + } + } }, { "season_code": "202303", @@ -313455,7 +641082,7 @@ "13:30", "17:20", "GR109 ROSENFELD - 109 Grove Street ROSENFELD", - "https:\/\/map.yale.edu\/?id=1910#!m\/560109" + "https://map.yale.edu/?id=1910#!m/560109" ] ] }, @@ -313472,15 +641099,118 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90118\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90118/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "", - "description": "South Asian Americans have appeared on U.S. stages since the late nineteenth century, yet only in the last quarter century have plays and performances by South Asian Americans begun to dismantle dominant cultural representations of South Asian and South Asian American communities and to imagine new ways of belonging. This seminar introduces you to contemporary works of performance (plays, stand-up sets, multimedia events) written and created by U.S.-based artists of South Asian descent as well as artists of the South Asian diaspora whose works have had an impact on U.S. audiences. With awareness that the South Asian American diaspora comprises multiple, contested, and contingent identities, we investigate how artists have worked to manifest complex representations of South Asian Americans onstage, challenge institutional and professional norms, and navigate the perils and pleasures of becoming visible. No prior experience with or study of theater\/performance required. Students in all years and majors welcome.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987605810165405, + 0.9988839030265808, + 0.9988995790481567, + 0.9988584518432617, + 0.9986978769302368 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998845100402832, + 0.9756304025650024, + 0.9987497329711914, + 0.9988588094711304, + 0.9988232254981995, + 0.9989355206489563 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988937973976135, + 0.9985435009002686, + 0.998343825340271, + 0.9989060163497925, + 0.9986857771873474, + 0.9989047050476074, + 0.9989374279975891, + 0.9989299178123474 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 19 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } + }, + { + "season_code": "202303", + "requirements": "", + "description": "South Asian Americans have appeared on U.S. stages since the late nineteenth century, yet only in the last quarter century have plays and performances by South Asian Americans begun to dismantle dominant cultural representations of South Asian and South Asian American communities and to imagine new ways of belonging. This seminar introduces you to contemporary works of performance (plays, stand-up sets, multimedia events) written and created by U.S.-based artists of South Asian descent as well as artists of the South Asian diaspora whose works have had an impact on U.S. audiences. With awareness that the South Asian American diaspora comprises multiple, contested, and contingent identities, we investigate how artists have worked to manifest complex representations of South Asian Americans onstage, challenge institutional and professional norms, and navigate the perils and pleasures of becoming visible. No prior experience with or study of theater/performance required. Students in all years and majors welcome.", "short_title": "Drama in Diaspora: South Asia...", "title": "Drama in Diaspora: South Asian American Theater and Performance", "school": "YC", @@ -313515,7 +641245,7 @@ "15:30", "17:20", "LC 204 - Linsly-Chittenden Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -313532,10 +641262,99 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89007\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89007/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988683462142944, + 0.9988677501678467, + 0.9980084300041199 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9943370223045349, + 0.997211754322052, + 0.998895525932312, + 0.9989205598831177 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998256504535675, + 0.9876799583435059, + 0.9898523688316345, + 0.9987894892692566 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 0.9090909090909091, + "final_counts": { + "POSITIVE": 10, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + } + } }, { "season_code": "202303", @@ -313576,7 +641395,7 @@ "13:30", "15:20", "STOECK 312 - Stoeckel Hall (renovated) 312", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ] }, @@ -313592,10 +641411,121 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90082\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90082/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987356066703796, + 0.9988833069801331, + 0.9988981485366821, + 0.9989221096038818, + 0.9988976716995239, + 0.9987940788269043, + 0.9989323019981384, + 0.9985860586166382 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988821148872375, + 0.9988889098167419, + 0.9989053010940552, + 0.998890221118927, + 0.9989303946495056, + 0.9989169836044312, + 0.998898983001709 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989113807678223, + 0.9989084005355835, + 0.9988080263137817, + 0.9989332556724548, + 0.9989216327667236, + 0.998910665512085, + 0.998880922794342, + 0.9988812804222107 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 23, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 23 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -313632,7 +641562,7 @@ "13:00", "16:00", "PWG 5TH-EF - Payne Whitney Gymnasium 5TH-EF", - "https:\/\/map.yale.edu\/?id=1910#!m\/559944" + "https://map.yale.edu/?id=1910#!m/559944" ] ] }, @@ -313649,15 +641579,43 @@ "classnotes": "This course will run Tuesday's 1-4pm PWG", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89022\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89022/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "Open to junior and senior Theater Studies majors, and to nonmajors with permission of the instructor.", - "description": "Topics include the Living Theater, Happenings, Cunningham\/Cage, Open Theater, Judson Dance Theater, Grand Union, Bread and Puppet Theater, Ontological-Hysteric Theater, Meredith Monk, Mabou Mines, Robert Wilson, and the Wooster Group.", + "description": "Topics include the Living Theater, Happenings, Cunningham/Cage, Open Theater, Judson Dance Theater, Grand Union, Bread and Puppet Theater, Ontological-Hysteric Theater, Meredith Monk, Mabou Mines, Robert Wilson, and the Wooster Group.", "short_title": "American Experimental Theater", "title": "American Experimental Theater", "school": "YC", @@ -313690,7 +641648,7 @@ "13:30", "15:20", "LORIA B50 - Loria Center B50", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -313701,7 +641659,7 @@ "Hu" ], "flags": [ - "YC English: 20th\/21st Century", + "YC English: 20th/21st Century", "YC English: Senior Seminar", "YC: THST Histories", "YC: THST Performance Theory" @@ -313711,10 +641669,91 @@ "classnotes": "", "final_exam": "Saturday, December 16, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88736\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88736/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9980150461196899, + 0.998849630355835 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989272952079773, + 0.9988400340080261, + 0.9987019300460815 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989379048347473, + 0.9989249110221863, + 0.9982553124427795 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 8, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 8 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -313751,7 +641790,7 @@ "15:30", "17:20", "WHC GYM - Whitney Humanities Center GYM", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -313759,7 +641798,7 @@ "15:30", "17:20", "WHC GYM - Whitney Humanities Center GYM", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -313773,13 +641812,41 @@ ], "regnotes": "", "rp_attr": "", - "classnotes": "THST 401 satisfies:\nYC: THST Dramlit\/ThHist\/PerfTh\nYC: THST Artistic Practice\nYC: THST Interarts\nYC: THST Elective", + "classnotes": "THST 401 satisfies:\nYC: THST Dramlit/ThHist/PerfTh\nYC: THST Artistic Practice\nYC: THST Interarts\nYC: THST Elective", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88738\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88738/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -313817,7 +641884,7 @@ "11:30", "13:30", "STOECK 210 - Stoeckel Hall (renovated) 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/559930" + "https://map.yale.edu/?id=1910#!m/559930" ] ] }, @@ -313833,15 +641900,92 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90205\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90205/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "", - "description": "Exploration of sex, science fiction, and the\u00a0downtown scene in New York City, through the archives and writings of Samuel R. Delany. Particular attention to the intersections of music, nightlife, avant-garde performance, literature, and visual art, within the context of social movements from feminism, gay liberation, and HIV\/AIDs activism.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988388419151306, + 0.9989207983016968 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989053010940552, + 0.9989216327667236 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989393353462219, + 0.9988183379173279 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 6 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } + }, + { + "season_code": "202303", + "requirements": "", + "description": "Exploration of sex, science fiction, and the\u00a0downtown scene in New York City, through the archives and writings of Samuel R. Delany. Particular attention to the intersections of music, nightlife, avant-garde performance, literature, and visual art, within the context of social movements from feminism, gay liberation, and HIV/AIDs activism.", "short_title": "Samuel Delany and His Worlds", "title": "Samuel Delany and His Worlds", "school": "YC", @@ -313876,7 +642020,7 @@ "15:30", "17:20", "HQ 123 - Humanities Quadrangle 123", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -313893,10 +642037,38 @@ "classnotes": "If you are interested in enrolling in this class, send a short email from your Yale account to tavia.nyongo@yale.edu giving your year, major, and a couple of sentences about what background and interests would enable you to contribute to the seminar discussion.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92366\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/92366/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -313933,7 +642105,7 @@ "15:30", "17:20", "LC 206 - Linsly-Chittenden Hall 206", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -313949,15 +642121,112 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89008\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89008/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "", - "description": "From the burgeoning field of Drama Therapy to the psychological basis of much actor training to the prevalence of theater productions being made with, for, and about people that have experienced wartime trauma, the practices of theater and therapy have long borrowed terminology, methodology, and conceptual frameworks from one another. This course traces the shared rhetoric and dramaturgical similarities between theater and psychotherapy, paying particular attention to how each\/both are being applied to the global epidemic of post-traumatic stress in the aftermath of war. Students engage with contemporary practitioners of drama therapy, study recent theater productions created with and\/or for combat veterans and refugees, and create their own research projects that explore the intersections of theater and therapy.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9965846538543701, + 0.9988749623298645, + 0.9988701939582825, + 0.9989141225814819 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987576007843018, + 0.998915433883667, + 0.9988573789596558, + 0.9989292025566101, + 0.9925453066825867, + 0.9989204406738281 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989107847213745, + 0.9987062215805054, + 0.9988983869552612, + 0.9989001750946045, + 0.9986981153488159, + 0.9989293217658997 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 16 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } + }, + { + "season_code": "202303", + "requirements": "", + "description": "From the burgeoning field of Drama Therapy to the psychological basis of much actor training to the prevalence of theater productions being made with, for, and about people that have experienced wartime trauma, the practices of theater and therapy have long borrowed terminology, methodology, and conceptual frameworks from one another. This course traces the shared rhetoric and dramaturgical similarities between theater and psychotherapy, paying particular attention to how each/both are being applied to the global epidemic of post-traumatic stress in the aftermath of war. Students engage with contemporary practitioners of drama therapy, study recent theater productions created with and/or for combat veterans and refugees, and create their own research projects that explore the intersections of theater and therapy.", "short_title": "Theater and Therapy in the Af...", "title": "Theater and Therapy in the Aftermath of War", "school": "YC", @@ -313989,7 +642258,7 @@ "13:30", "15:20", "YK220 004 - 220 York Street 004", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ] }, @@ -314003,10 +642272,103 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90350\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90350/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985370635986328, + 0.998890221118927, + 0.9989264607429504, + 0.998881995677948 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989349246025085, + 0.9989243149757385, + 0.9989246726036072, + 0.9989332556724548, + 0.9989331364631653 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988490343093872, + 0.9989253878593445, + 0.9989010095596313, + 0.9989351630210876, + 0.9989270567893982 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 14, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 14 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -314043,7 +642405,7 @@ "8:25", "12:20", "YK220 101 - 220 York Street 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ] }, @@ -314059,10 +642421,89 @@ "classnotes": "", "final_exam": "Tuesday, December 19, 2023 at 7pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88739\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88739/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986847043037415, + 0.9988954067230225 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988454580307007, + 0.9989340901374817 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989187717437744, + 0.9986746311187744, + 0.9988699555397034 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 7 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -314105,7 +642546,7 @@ "19:00", "22:00", "LC 101 - Linsly-Chittenden Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Wednesday": [ @@ -314113,7 +642554,7 @@ "15:30", "18:20", "CCAM 110 - Center for Collab Arts & Media 110", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -314128,10 +642569,81 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88288\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88288/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9981396198272705 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986857771873474 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9978218078613281 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 3, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 3 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -314171,10 +642683,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88741\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88741/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -314214,7 +642754,7 @@ "9:25", "11:15", "YK220 202 - 220 York Street 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/563696" + "https://map.yale.edu/?id=1910#!m/563696" ] ] }, @@ -314226,15 +642766,43 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88743\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88743/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "This seminar\/workshop supports senior majors in Theater, Dance, and Performance Studies who are pursuing thesis projects in three broad areas: 1) Literature, History, Theory, and Criticism; 2) Writing for Performance-based Art and Media; 3) Performance Research, Analysis, and Design. Seniors in this course present work-in-progress, receive peer and instructor feedback, and engage in discussions concerning a range of relevant topics.", + "description": "This seminar/workshop supports senior majors in Theater, Dance, and Performance Studies who are pursuing thesis projects in three broad areas: 1) Literature, History, Theory, and Criticism; 2) Writing for Performance-based Art and Media; 3) Performance Research, Analysis, and Design. Seniors in this course present work-in-progress, receive peer and instructor feedback, and engage in discussions concerning a range of relevant topics.", "short_title": "Senior Seminar in Theater, Da...", "title": "Senior Seminar in Theater, Dance, and Performance Studies", "school": "YC", @@ -314271,10 +642839,38 @@ "classnotes": "Meeting times and locations for this course will be determined during the first week of the semester. Contact the instructor with questions.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92354\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/92354/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -314312,7 +642908,7 @@ "9:25", "10:15", "WLH 205 - William L. Harkness Hall 205", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Tuesday": [ @@ -314320,7 +642916,7 @@ "9:25", "10:15", "WLH 205 - William L. Harkness Hall 205", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -314328,7 +642924,7 @@ "9:25", "10:15", "WLH 205 - William L. Harkness Hall 205", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -314336,7 +642932,7 @@ "9:25", "10:15", "WLH 205 - William L. Harkness Hall 205", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Friday": [ @@ -314344,7 +642940,7 @@ "9:25", "10:15", "WLH 205 - William L. Harkness Hall 205", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -314358,10 +642954,105 @@ "classnotes": "Fridays classes will be asynchronous.", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89281\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89281/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998439371585846, + 0.9988566637039185, + 0.9983980059623718, + 0.998855471611023, + 0.9988644123077393, + 0.9955809712409973 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989138841629028, + 0.9989163875579834, + 0.9989223480224609, + 0.998915433883667 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989179372787476, + 0.9985407590866089, + 0.9986206293106079, + 0.9989215135574341, + 0.9989349246025085 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 15 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -314400,7 +643091,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -314438,7 +643157,7 @@ "10:30", "11:20", "WLH 205 - William L. Harkness Hall 205", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Tuesday": [ @@ -314446,7 +643165,7 @@ "10:30", "11:20", "WLH 205 - William L. Harkness Hall 205", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -314454,7 +643173,7 @@ "10:30", "11:20", "WLH 205 - William L. Harkness Hall 205", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -314462,7 +643181,7 @@ "10:30", "11:20", "WLH 205 - William L. Harkness Hall 205", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Friday": [ @@ -314470,7 +643189,7 @@ "10:30", "11:20", "WLH 205 - William L. Harkness Hall 205", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -314484,10 +643203,38 @@ "classnotes": "Fridays classes will be asynchronous.", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89286\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89286/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -314525,7 +643272,7 @@ "9:25", "10:15", "WLH 205 - William L. Harkness Hall 205", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Tuesday": [ @@ -314533,7 +643280,7 @@ "9:25", "10:15", "WLH 205 - William L. Harkness Hall 205", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -314541,7 +643288,7 @@ "9:25", "10:15", "WLH 205 - William L. Harkness Hall 205", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -314549,7 +643296,7 @@ "9:25", "10:15", "WLH 205 - William L. Harkness Hall 205", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Friday": [ @@ -314557,7 +643304,7 @@ "9:25", "10:15", "WLH 205 - William L. Harkness Hall 205", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -314569,10 +643316,105 @@ "classnotes": "Fridays classes will be asynchronous.", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89281\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89281/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998439371585846, + 0.9988566637039185, + 0.9983980059623718, + 0.998855471611023, + 0.9988644123077393, + 0.9955809712409973 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989138841629028, + 0.9989163875579834, + 0.9989223480224609, + 0.998915433883667 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989179372787476, + 0.9985407590866089, + 0.9986206293106079, + 0.9989215135574341, + 0.9989349246025085 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 15 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -314610,7 +643452,7 @@ "10:30", "11:20", "WLH 205 - William L. Harkness Hall 205", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Tuesday": [ @@ -314618,7 +643460,7 @@ "10:30", "11:20", "WLH 205 - William L. Harkness Hall 205", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -314626,7 +643468,7 @@ "10:30", "11:20", "WLH 205 - William L. Harkness Hall 205", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -314634,7 +643476,7 @@ "10:30", "11:20", "WLH 205 - William L. Harkness Hall 205", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Friday": [ @@ -314642,7 +643484,7 @@ "10:30", "11:20", "WLH 205 - William L. Harkness Hall 205", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -314654,10 +643496,38 @@ "classnotes": "Fridays classes will be asynchronous.", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89286\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89286/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -314721,7 +643591,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -314785,7 +643683,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -314824,7 +643750,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -314866,7 +643820,7 @@ "11:35", "12:25", "YUAG AUD - Yale University Art Gallery AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/559918" + "https://map.yale.edu/?id=1910#!m/559918" ] ], "Thursday": [ @@ -314874,7 +643828,7 @@ "11:35", "12:25", "YUAG AUD - Yale University Art Gallery AUD", - "https:\/\/map.yale.edu\/?id=1910#!m\/559918" + "https://map.yale.edu/?id=1910#!m/559918" ] ] }, @@ -314883,7 +643837,7 @@ "Hu" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses", "YC ENRG: Energy & Environment", "YC ENRG: Energy & Society", @@ -314894,10 +643848,339 @@ "classnotes": "", "final_exam": "Friday, December 15, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89565\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89565/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988375306129456, + 0.9745486974716187, + 0.9978081583976746, + 0.9988411068916321, + 0.998700737953186, + 0.9988883137702942, + 0.9987426400184631, + 0.998898983001709, + 0.9987830519676208, + 0.9994888305664062, + 0.9988528490066528, + 0.9983839988708496, + 0.9982752799987793, + 0.9988221526145935, + 0.9988779425621033, + 0.9988971948623657, + 0.9989123344421387, + 0.9987972974777222, + 0.9988614320755005, + 0.9988412261009216, + 0.9986856579780579, + 0.9512736797332764, + 0.9911984801292419, + 0.9987909197807312, + 0.9935370087623596, + 0.9989128112792969, + 0.9988229870796204, + 0.9988051652908325, + 0.998722493648529, + 0.9988749623298645, + 0.9988431930541992, + 0.9988594055175781, + 0.9987161159515381, + 0.9988018274307251, + 0.9987325072288513, + 0.998615026473999, + 0.9988515377044678, + 0.9987990856170654, + 0.9976200461387634 + ], + "sentiment_counts": { + "POSITIVE": 34, + "NEGATIVE": 5 + }, + "sentiment_distribution": { + "POSITIVE": 0.8717948717948718, + "NEGATIVE": 0.1282051282051282 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8717948717948718 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988767504692078, + 0.9988866448402405, + 0.9988052845001221, + 0.9985508322715759, + 0.9987472295761108, + 0.9988623857498169, + 0.9987657070159912, + 0.9957031607627869, + 0.9979584217071533, + 0.9989247918128967, + 0.9984208345413208, + 0.999489426612854, + 0.9986494183540344, + 0.9994025230407715, + 0.9989386200904846, + 0.9989216327667236, + 0.9987127780914307, + 0.9988584518432617, + 0.9986187219619751, + 0.9989338517189026, + 0.9983636736869812, + 0.9993415474891663, + 0.9989307522773743, + 0.9989222288131714, + 0.999431312084198, + 0.9995033740997314, + 0.9918841123580933, + 0.9987691044807434, + 0.9851342439651489, + 0.998908281326294, + 0.9982900023460388, + 0.9944076538085938, + 0.9986935257911682, + 0.9994964599609375, + 0.997230589389801, + 0.9988928437232971, + 0.9983024597167969, + 0.9893326759338379, + 0.998908281326294, + 0.9988983869552612, + 0.9987039566040039, + 0.9988982677459717, + 0.9987058639526367, + 0.9986599683761597, + 0.9981788396835327 + ], + "sentiment_counts": { + "POSITIVE": 34, + "NEGATIVE": 11 + }, + "sentiment_distribution": { + "POSITIVE": 0.7555555555555555, + "NEGATIVE": 0.24444444444444444 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7555555555555555 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989129304885864, + 0.9980422258377075, + 0.9772031307220459, + 0.9988924860954285, + 0.9985565543174744, + 0.9988566637039185, + 0.9989244341850281, + 0.9989210367202759, + 0.9988320469856262, + 0.9988540410995483, + 0.997117280960083, + 0.9979623556137085, + 0.878170907497406, + 0.998935878276825, + 0.9982725381851196, + 0.9994218349456787, + 0.9987792372703552, + 0.9989334940910339, + 0.9989062547683716, + 0.9988899827003479, + 0.9995080232620239, + 0.9982553124427795, + 0.9989147186279297, + 0.9989333748817444, + 0.9995095729827881, + 0.9988654851913452, + 0.9987298846244812, + 0.99947589635849, + 0.9986647367477417, + 0.9988137483596802, + 0.9995065927505493, + 0.9988718628883362, + 0.8759276270866394, + 0.9994837045669556, + 0.9988135099411011, + 0.9984739422798157, + 0.9988139867782593, + 0.9987475872039795, + 0.9988629817962646, + 0.9986599683761597, + 0.9982942938804626, + 0.998596727848053, + 0.9989272952079773, + 0.9989011287689209, + 0.9987940788269043, + 0.9988528490066528, + 0.9994882345199585 + ], + "sentiment_counts": { + "POSITIVE": 38, + "NEGATIVE": 9 + }, + "sentiment_distribution": { + "POSITIVE": 0.8085106382978723, + "NEGATIVE": 0.19148936170212766 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8085106382978723 + ] + }, + "final_label": "POSITIVE", + "final_count": 106, + "final_proportion": 0.8091603053435115, + "final_counts": { + "POSITIVE": 106, + "NEGATIVE": 25 + }, + "final_distribution": { + "POSITIVE": 0.8091603053435115, + "NEGATIVE": 0.19083969465648856 + } + } }, { "season_code": "202303", @@ -314937,7 +644220,7 @@ "13:30", "15:20", "HQ 209 - Humanities Quadrangle 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -314958,10 +644241,133 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88580\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88580/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988952279090881, + 0.9987819790840149, + 0.9988018274307251, + 0.9988783001899719, + 0.9989162683486938, + 0.9987999200820923, + 0.9984064698219299, + 0.9988013505935669, + 0.9988089799880981 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9771090149879456, + 0.9987500905990601, + 0.9989207983016968, + 0.9953112006187439, + 0.9988996982574463, + 0.9975487589836121, + 0.9988985061645508, + 0.9981507658958435, + 0.998925507068634 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 7 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2222222222222222, + "POSITIVE": 0.7777777777777778 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7777777777777778 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998904824256897, + 0.9989363551139832, + 0.9988411068916321, + 0.9988229870796204, + 0.996119499206543, + 0.9988498687744141, + 0.9989210367202759, + 0.9989336133003235, + 0.9987632036209106, + 0.9989049434661865 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 26, + "final_proportion": 0.9285714285714286, + "final_counts": { + "POSITIVE": 26, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9285714285714286, + "NEGATIVE": 0.07142857142857142 + } + } }, { "season_code": "202303", @@ -314999,7 +644405,7 @@ "13:30", "15:20", "", - "https:\/\/map.yale.edu\/?id=1910#!m\/559534" + "https://map.yale.edu/?id=1910#!m/559534" ] ] }, @@ -315017,10 +644423,87 @@ "classnotes": "", "final_exam": "Saturday, December 16, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90199\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90199/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985306262969971, + 0.998781144618988 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985306262969971, + 0.9988418221473694 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985306262969971, + 0.9988732933998108 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 6 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -315059,7 +644542,7 @@ "13:30", "15:20", "LC 103 - Linsly-Chittenden Hall 103", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -315075,10 +644558,113 @@ "classnotes": "", "final_exam": "Saturday, December 16, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88934\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88934/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988527297973633, + 0.9989093542098999, + 0.9988923668861389, + 0.9987670183181763, + 0.9987779259681702, + 0.998928964138031 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987972974777222, + 0.9989270567893982, + 0.9988834261894226, + 0.9987425208091736, + 0.9988981485366821 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9995130300521851, + 0.9984610080718994, + 0.9989116191864014, + 0.9989191293716431, + 0.9987101554870605, + 0.9989287257194519, + 0.9989103078842163 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 6 + }, + "sentiment_distribution": { + "NEGATIVE": 0.14285714285714285, + "POSITIVE": 0.8571428571428571 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "final_label": "POSITIVE", + "final_count": 17, + "final_proportion": 0.9444444444444444, + "final_counts": { + "POSITIVE": 17, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9444444444444444, + "NEGATIVE": 0.05555555555555555 + } + } }, { "season_code": "202303", @@ -315131,10 +644717,38 @@ "classnotes": "", "final_exam": "Wednesday, December 20, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90346\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/90346/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -315189,10 +644803,99 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89773\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89773/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989116191864014, + 0.9987530708312988, + 0.9987710118293762 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988909363746643, + 0.9986425042152405, + 0.9988861680030823 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998916745185852, + 0.998898983001709, + 0.9993849992752075, + 0.9988930821418762, + 0.9989067316055298 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 0.9090909090909091, + "final_counts": { + "POSITIVE": 10, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + } + } }, { "season_code": "202303", @@ -315247,10 +644950,123 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88949\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88949/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987932443618774, + 0.9988179802894592, + 0.9989350438117981, + 0.9938967823982239, + 0.9987407326698303, + 0.9988868832588196, + 0.9989349246025085, + 0.9988088607788086 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9980959296226501, + 0.9957752823829651, + 0.9989320635795593, + 0.9978017210960388, + 0.9986005425453186, + 0.9959031939506531, + 0.9983739852905273, + 0.998832643032074 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988278746604919, + 0.9890825748443604, + 0.9967359900474548, + 0.9987654685974121, + 0.9994696974754333, + 0.9988564252853394, + 0.998764157295227 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "final_label": "POSITIVE", + "final_count": 22, + "final_proportion": 0.9565217391304348, + "final_counts": { + "POSITIVE": 22, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9565217391304348, + "NEGATIVE": 0.043478260869565216 + } + } }, { "season_code": "202303", @@ -315288,7 +645104,7 @@ "9:25", "11:15", "LORIA 358 - Loria Center 358", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -315307,10 +645123,38 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90121\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/90121/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -315352,7 +645196,7 @@ "13:30", "15:20", "WLH 120 - William L. Harkness Hall 120", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -315368,10 +645212,119 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89342\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89342/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9987616539001465, + 0.9988985061645508, + 0.9989351630210876, + 0.9989067316055298, + 0.9988757967948914, + 0.9988817572593689, + 0.9994889497756958 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989392161369324, + 0.9989007711410522, + 0.99892657995224, + 0.9988346695899963, + 0.9989309906959534, + 0.9985311031341553 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998862624168396, + 0.9982553124427795, + 0.9988790154457092, + 0.9989284873008728, + 0.9988844990730286, + 0.9989118576049805, + 0.9988151788711548, + 0.9989394545555115 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 0.9047619047619048, + "final_counts": { + "POSITIVE": 19, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9047619047619048, + "NEGATIVE": 0.09523809523809523 + } + } }, { "season_code": "202303", @@ -315409,7 +645362,7 @@ "13:30", "15:20", "RDH 212 - Rudolph Hall 212", - "https:\/\/map.yale.edu\/?id=1910#!m\/559534" + "https://map.yale.edu/?id=1910#!m/559534" ] ] }, @@ -315421,10 +645374,99 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88953\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88953/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998706579208374, + 0.9989205598831177, + 0.998665452003479, + 0.998872697353363 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987664222717285, + 0.9989134073257446, + 0.9989110231399536, + 0.9989284873008728 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988920092582703, + 0.9989256262779236, + 0.9932336211204529, + 0.9989198446273804 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 12 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -315461,7 +645503,7 @@ "7:40", "8:30", "WALL53 208 - 53 Wall Street 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/559554" + "https://map.yale.edu/?id=1910#!m/559554" ] ] }, @@ -315473,10 +645515,91 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89719\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89719/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988434314727783, + 0.9988495111465454, + 0.9987958669662476 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988778233528137, + 0.9985678195953369 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994351267814636, + 0.9988114833831787 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 1 + }, + "sentiment_distribution": { + "NEGATIVE": 0.5, + "POSITIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 0.8571428571428571, + "final_counts": { + "POSITIVE": 6, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + } + } }, { "season_code": "202303", @@ -315513,7 +645636,7 @@ "9:00", "9:50", "WALL53 208 - 53 Wall Street 208", - "https:\/\/map.yale.edu\/?id=1910#!m\/559554" + "https://map.yale.edu/?id=1910#!m/559554" ] ] }, @@ -315525,10 +645648,89 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89845\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89845/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998871386051178, + 0.9947389960289001 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9956955909729004, + 0.9989038705825806 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989094734191895, + 0.9991419315338135 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + }, + "sentiment_overall": [ + "neutral", + 0.5 + ] + }, + "final_label": "POSITIVE", + "final_count": 5, + "final_proportion": 0.8333333333333334, + "final_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + } + } }, { "season_code": "202303", @@ -315565,7 +645767,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -315602,7 +645832,7 @@ "8:00", "10:50", "WLH 007 - William L. Harkness Hall 007", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -315614,10 +645844,17 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89721\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89721/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -315654,7 +645891,7 @@ "13:00", "15:50", "WH55 446 - 55 Whitney Avenue 446", - "https:\/\/map.yale.edu\/?id=1910#!m\/560121" + "https://map.yale.edu/?id=1910#!m/560121" ] ] }, @@ -315666,15 +645903,68 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89721\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89721/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "", - "description": "This course is an exploration of the evolution and employment of airpower in the United States military. The course is designed to give students an understanding of what role modern airpower plays in the use of national instruments of power; how American airpower has shaped U.S. grand strategy and vice versa. The course traces the development of airpower doctrine and strategy from World War I to modern day. Applications to deterrence theory, the role of technology, counterinsurgency\/counterterrorism, and the \"information revolution\" are discussed.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987850785255432 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9839732646942139 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 0 + }, + "sentiment_distribution": { + "NEGATIVE": 1.0, + "POSITIVE": 0.0 + }, + "sentiment_overall": [ + "NEGATIVE", + 1.0 + ] + }, + "final_label": "neutral", + "final_count": 0.5, + "final_proportion": 0.5, + "final_counts": { + "POSITIVE": 1, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.5, + "NEGATIVE": 0.5 + } + } + }, + { + "season_code": "202303", + "requirements": "", + "description": "This course is an exploration of the evolution and employment of airpower in the United States military. The course is designed to give students an understanding of what role modern airpower plays in the use of national instruments of power; how American airpower has shaped U.S. grand strategy and vice versa. The course traces the development of airpower doctrine and strategy from World War I to modern day. Applications to deterrence theory, the role of technology, counterinsurgency/counterterrorism, and the \"information revolution\" are discussed.", "short_title": "Foundations of American Airpower", "title": "Foundations of American Airpower", "school": "YC", @@ -315706,7 +645996,7 @@ "8:30", "10:20", "WLH 113 - William L. Harkness Hall 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -315718,10 +646008,85 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89749\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89749/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9964134097099304, + 0.998477041721344 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989118576049805 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989058971405029, + 0.9987871050834656 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 5, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 5 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -315758,7 +646123,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -315795,7 +646188,7 @@ "9:25", "10:15", "WLH 001 - William L. Harkness Hall 001", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Tuesday": [ @@ -315803,7 +646196,7 @@ "9:25", "10:15", "WLH 001 - William L. Harkness Hall 001", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -315811,7 +646204,7 @@ "9:25", "10:15", "WLH 001 - William L. Harkness Hall 001", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -315819,7 +646212,7 @@ "9:25", "10:15", "WLH 001 - William L. Harkness Hall 001", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Friday": [ @@ -315827,7 +646220,7 @@ "9:25", "10:15", "WLH 001 - William L. Harkness Hall 001", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -315843,10 +646236,123 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88745\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88745/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9987779259681702, + 0.9989168643951416, + 0.9963538646697998, + 0.9989151954650879, + 0.9978275895118713, + 0.9988419413566589, + 0.998176097869873, + 0.9854641556739807 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9989257454872131, + 0.9988264441490173, + 0.9988446235656738, + 0.9989222288131714, + 0.9988699555397034, + 0.9989088773727417, + 0.9989314675331116, + 0.9987047910690308 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998902440071106, + 0.9989381432533264, + 0.998748779296875, + 0.9989303946495056, + 0.9986887574195862, + 0.9989225268363953, + 0.9921637773513794 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 0.8695652173913043, + "final_counts": { + "POSITIVE": 20, + "NEGATIVE": 3 + }, + "final_distribution": { + "POSITIVE": 0.8695652173913043, + "NEGATIVE": 0.13043478260869565 + } + } }, { "season_code": "202303", @@ -315883,7 +646389,7 @@ "10:30", "11:20", "WLH 001 - William L. Harkness Hall 001", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -315891,7 +646397,7 @@ "10:30", "11:20", "WLH 001 - William L. Harkness Hall 001", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Friday": [ @@ -315899,7 +646405,7 @@ "10:30", "11:20", "WLH 001 - William L. Harkness Hall 001", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -315913,10 +646419,105 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88746\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88746/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985894560813904, + 0.9989339709281921, + 0.9984716773033142, + 0.998808741569519 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9972009658813477, + 0.9958622455596924, + 0.9975594282150269, + 0.998563826084137, + 0.9987550973892212, + 0.9988872408866882 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8333333333333334, + "NEGATIVE": 0.16666666666666666 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8333333333333334 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983041286468506, + 0.998894989490509, + 0.9988390803337097, + 0.9982276558876038 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 0.9285714285714286, + "final_counts": { + "POSITIVE": 13, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9285714285714286, + "NEGATIVE": 0.07142857142857142 + } + } }, { "season_code": "202303", @@ -315953,7 +646554,7 @@ "14:30", "15:45", "WTS B62 - Watson Center 60 Sachem Street B62", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -315961,7 +646562,7 @@ "14:30", "15:45", "WTS B62 - Watson Center 60 Sachem Street B62", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -315975,10 +646576,81 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88748\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88748/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986968636512756 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9977486729621887 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988177418708801 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 3, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 3 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -316018,10 +646690,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88750\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88750/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -316059,7 +646759,7 @@ "11:35", "12:50", "HQ 213 - Humanities Quadrangle 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -316067,7 +646767,7 @@ "11:35", "12:50", "HQ 213 - Humanities Quadrangle 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -316083,10 +646783,123 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88100\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88100/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988813996315002, + 0.9988308548927307, + 0.9988503456115723, + 0.9989383816719055, + 0.9989110231399536, + 0.9987983703613281, + 0.9988721013069153, + 0.998641312122345 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988991022109985, + 0.9989137649536133, + 0.9988535642623901, + 0.9989153146743774, + 0.9988884329795837, + 0.9988142251968384, + 0.9988678693771362 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989333748817444, + 0.9985443353652954, + 0.96617192029953, + 0.9989041090011597, + 0.9989402890205383, + 0.9988597631454468, + 0.9988752007484436, + 0.9989134073257446 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "final_label": "POSITIVE", + "final_count": 22, + "final_proportion": 0.9565217391304348, + "final_counts": { + "POSITIVE": 22, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9565217391304348, + "NEGATIVE": 0.043478260869565216 + } + } }, { "season_code": "202303", @@ -316124,7 +646937,7 @@ "16:00", "17:15", "HQ 401 - Humanities Quadrangle 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -316132,7 +646945,7 @@ "16:00", "17:15", "HQ 401 - Humanities Quadrangle 401", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -316148,10 +646961,111 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88549\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88549/assignments/syllabus", "fysem": true, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987648725509644, + 0.998871386051178, + 0.9988734126091003, + 0.9989173412322998, + 0.9989240765571594, + 0.998799204826355 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988873600959778, + 0.9989163875579834, + 0.9989258646965027, + 0.9989078044891357, + 0.9989033937454224, + 0.998917818069458 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998914361000061, + 0.9853678345680237, + 0.9988364577293396, + 0.9989389777183533, + 0.998891294002533, + 0.9988930821418762 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 18 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -316189,7 +647103,7 @@ "13:30", "15:20", "WLH 115 - William L. Harkness Hall 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -316214,10 +647128,95 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88502\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88502/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987723231315613, + 0.9987708926200867, + 0.99856036901474 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989303946495056, + 0.9988523721694946, + 0.9989355206489563, + 0.9989111423492432 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989123344421387, + 0.9988864064216614, + 0.9989207983016968 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 10 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -316257,7 +647256,7 @@ "10:30", "11:20", "ML 211 - Mason Laboratory 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ], "Thursday": [ @@ -316265,7 +647264,7 @@ "10:30", "11:20", "ML 211 - Mason Laboratory 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ] }, @@ -316283,10 +647282,285 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88670\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88670/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9961251616477966, + 0.9988117218017578, + 0.9994720816612244, + 0.6994298696517944, + 0.9988449811935425, + 0.9988824725151062, + 0.9986394047737122, + 0.998656153678894, + 0.9986690282821655, + 0.9981566071510315, + 0.9986910223960876, + 0.9987651109695435, + 0.9988124370574951, + 0.9988157749176025, + 0.9988334774971008, + 0.9988893866539001, + 0.9970648884773254, + 0.9987800717353821, + 0.9987006187438965, + 0.9989007711410522, + 0.9983934760093689, + 0.9985760450363159, + 0.9987367987632751, + 0.9987850785255432, + 0.9988439083099365, + 0.998896598815918, + 0.9978004097938538, + 0.9987949132919312, + 0.998754620552063, + 0.9986506104469299, + 0.997936487197876, + 0.9988357424736023, + 0.9986048340797424 + ], + "sentiment_counts": { + "POSITIVE": 31, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.9393939393939394, + "NEGATIVE": 0.06060606060606061 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9393939393939394 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9994801878929138, + 0.9994934797286987, + 0.9906005859375, + 0.998907208442688, + 0.9989045858383179, + 0.9982424974441528, + 0.9988836646080017, + 0.9864469766616821, + 0.9995065927505493, + 0.9979323148727417, + 0.9984051585197449, + 0.998874843120575, + 0.9989272952079773, + 0.9987265467643738, + 0.9984101057052612, + 0.9984490871429443, + 0.9995095729827881, + 0.997310996055603, + 0.9956592321395874, + 0.9989131689071655, + 0.9985128045082092, + 0.998837411403656, + 0.9955137372016907, + 0.9687845706939697, + 0.998815655708313, + 0.9989320635795593, + 0.9988332390785217, + 0.9955431818962097, + 0.9987468719482422, + 0.9987927675247192, + 0.9986599683761597, + 0.9989326596260071 + ], + "sentiment_counts": { + "NEGATIVE": 10, + "POSITIVE": 22 + }, + "sentiment_distribution": { + "NEGATIVE": 0.3125, + "POSITIVE": 0.6875 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6875 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982942938804626, + 0.9965415596961975, + 0.999509334564209, + 0.9988760352134705, + 0.998279333114624, + 0.9974592328071594, + 0.9989151954650879, + 0.9988489151000977, + 0.9987271428108215, + 0.9950690269470215, + 0.9988675117492676, + 0.9987953901290894, + 0.9989244341850281, + 0.996852695941925, + 0.9988895058631897, + 0.9989113807678223, + 0.9994865655899048, + 0.9980652928352356, + 0.9989283680915833, + 0.9970291256904602, + 0.981640636920929, + 0.9977506995201111, + 0.9987664222717285, + 0.9986642599105835, + 0.9987595081329346, + 0.9986959099769592, + 0.9995043277740479, + 0.9986897110939026, + 0.9987826943397522, + 0.9989325404167175, + 0.9994943141937256, + 0.9989240765571594, + 0.9982833862304688, + 0.998880922794342, + 0.9980016350746155, + 0.9987248778343201, + 0.9987040758132935, + 0.9977750182151794, + 0.9989079236984253 + ], + "sentiment_counts": { + "POSITIVE": 32, + "NEGATIVE": 7 + }, + "sentiment_distribution": { + "POSITIVE": 0.8205128205128205, + "NEGATIVE": 0.1794871794871795 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8205128205128205 + ] + }, + "final_label": "POSITIVE", + "final_count": 85, + "final_proportion": 0.8173076923076923, + "final_counts": { + "POSITIVE": 85, + "NEGATIVE": 19 + }, + "final_distribution": { + "POSITIVE": 0.8173076923076923, + "NEGATIVE": 0.18269230769230768 + } + } }, { "season_code": "202303", @@ -316320,7 +647594,7 @@ "9:25", "10:15", "HQ 207 - Humanities Quadrangle 207", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -316341,7 +647615,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -316375,7 +647677,7 @@ "9:25", "10:15", "ML 104 - Mason Laboratory 104", - "https:\/\/map.yale.edu\/?id=1910#!m\/560056" + "https://map.yale.edu/?id=1910#!m/560056" ] ] }, @@ -316396,7 +647698,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -316430,7 +647760,7 @@ "15:30", "16:20", "BASSLB L73 - Bass Library L73", - "https:\/\/map.yale.edu\/?id=1910#!m\/564574" + "https://map.yale.edu/?id=1910#!m/564574" ] ] }, @@ -316451,7 +647781,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -316485,7 +647843,7 @@ "15:30", "16:20", "BASSLB L70 - Bass Library L70", - "https:\/\/map.yale.edu\/?id=1910#!m\/564574" + "https://map.yale.edu/?id=1910#!m/564574" ] ] }, @@ -316506,7 +647864,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -316540,7 +647926,7 @@ "19:00", "19:50", "WLH 009 - William L. Harkness Hall 009", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -316561,7 +647947,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -316595,7 +648009,7 @@ "19:00", "19:50", "WLH 210 - William L. Harkness Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -316616,14 +648030,42 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "The course introduces students to Latina\/x\/e feminist theories. We focus on historical and contemporary writings by and about Chicana, Puerto Rican, Central American, and other Latina\/x\/e feminist writers and activists. The course draws from interdisciplinary scholarship addressing the intellectual landscape of Latina\/x\/e and critical race feminist theories and social movement activist organizing.\u00a0While this course approaches Latina\/x\/e feminist theories and activism as often having emerged in relation to U.S. nation-making projects we will consider this work with the understanding that projects of Latina\/x\/e feminism should be understood as cross-border, transnational, and multi-scaler critiques of nation-state violence.", - "short_title": "Latina\/x\/e Feminism", - "title": "Latina\/x\/e Feminism", + "description": "The course introduces students to Latina/x/e feminist theories. We focus on historical and contemporary writings by and about Chicana, Puerto Rican, Central American, and other Latina/x/e feminist writers and activists. The course draws from interdisciplinary scholarship addressing the intellectual landscape of Latina/x/e and critical race feminist theories and social movement activist organizing.\u00a0While this course approaches Latina/x/e feminist theories and activism as often having emerged in relation to U.S. nation-making projects we will consider this work with the understanding that projects of Latina/x/e feminism should be understood as cross-border, transnational, and multi-scaler critiques of nation-state violence.", + "short_title": "Latina/x/e Feminism", + "title": "Latina/x/e Feminism", "school": "YC", "credits": 1.0, "extra_info": "ACTIVE", @@ -316654,7 +648096,7 @@ "13:30", "15:20", "WLH 011 - William L. Harkness Hall 011", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -316668,10 +648110,105 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89316\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89316/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989098310470581, + 0.9989357590675354, + 0.9988848567008972, + 0.9989180564880371 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989067316055298, + 0.9987136125564575, + 0.9989401698112488, + 0.9989293217658997, + 0.9989033937454224 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989307522773743, + 0.9989191293716431, + 0.9988191723823547, + 0.9989355206489563, + 0.9989118576049805, + 0.9989282488822937 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 15 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -316732,7 +648269,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -316770,7 +648335,7 @@ "13:30", "14:20", "LC 101 - Linsly-Chittenden Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -316778,7 +648343,7 @@ "13:30", "14:20", "LC 101 - Linsly-Chittenden Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -316789,17 +648354,154 @@ "Hu" ], "flags": [ - "YC English: 20th\/21st Century" + "YC English: 20th/21st Century" ], "regnotes": "", "rp_attr": "", "classnotes": "", "final_exam": "Saturday, December 16, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89274\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89274/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989070892333984, + 0.9989297986030579, + 0.9989124536514282, + 0.9987737536430359, + 0.9987819790840149, + 0.9989067316055298, + 0.9987719655036926, + 0.9985857009887695, + 0.9988381266593933, + 0.9986152648925781, + 0.9987121820449829 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9702361226081848, + 0.9928247928619385, + 0.9989111423492432, + 0.998832643032074, + 0.99834144115448, + 0.9987624883651733, + 0.9988995790481567, + 0.9988975524902344, + 0.995905876159668, + 0.9988681077957153 + ], + "sentiment_counts": { + "NEGATIVE": 2, + "POSITIVE": 8 + }, + "sentiment_distribution": { + "NEGATIVE": 0.2, + "POSITIVE": 0.8 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989205598831177, + 0.998524010181427, + 0.9988622665405273, + 0.9953398704528809, + 0.9983460903167725, + 0.9989340901374817, + 0.9989191293716431, + 0.9893873929977417, + 0.9988679885864258, + 0.9982877373695374, + 0.998815655708313, + 0.9982688426971436, + 0.9981327652931213, + 0.9983333945274353 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8571428571428571, + "NEGATIVE": 0.14285714285714285 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "final_label": "POSITIVE", + "final_count": 31, + "final_proportion": 0.8857142857142857, + "final_counts": { + "POSITIVE": 31, + "NEGATIVE": 4 + }, + "final_distribution": { + "POSITIVE": 0.8857142857142857, + "NEGATIVE": 0.11428571428571428 + } + } }, { "season_code": "202303", @@ -316831,7 +648533,7 @@ "11:35", "12:25", "BM 013 - Bingham Hall 013", - "https:\/\/map.yale.edu\/?id=1910#!m\/559569" + "https://map.yale.edu/?id=1910#!m/559569" ] ] }, @@ -316842,7 +648544,7 @@ "Hu" ], "flags": [ - "YC English: 20th\/21st Century" + "YC English: 20th/21st Century" ], "regnotes": "", "rp_attr": "", @@ -316852,7 +648554,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -316884,7 +648614,7 @@ "13:30", "14:20", "WLH 004 - William L. Harkness Hall 004", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -316895,7 +648625,7 @@ "Hu" ], "flags": [ - "YC English: 20th\/21st Century" + "YC English: 20th/21st Century" ], "regnotes": "", "rp_attr": "", @@ -316905,7 +648635,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -316937,7 +648695,7 @@ "16:00", "16:50", "WLH 004 - William L. Harkness Hall 004", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -316948,7 +648706,7 @@ "Hu" ], "flags": [ - "YC English: 20th\/21st Century" + "YC English: 20th/21st Century" ], "regnotes": "", "rp_attr": "", @@ -316958,7 +648716,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -316990,7 +648776,7 @@ "17:00", "17:50", "WLH 115 - William L. Harkness Hall 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -317001,7 +648787,7 @@ "Hu" ], "flags": [ - "YC English: 20th\/21st Century" + "YC English: 20th/21st Century" ], "regnotes": "", "rp_attr": "", @@ -317011,7 +648797,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -317043,7 +648857,7 @@ "16:30", "17:20", "WLH 004 - William L. Harkness Hall 004", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -317054,7 +648868,7 @@ "Hu" ], "flags": [ - "YC English: 20th\/21st Century" + "YC English: 20th/21st Century" ], "regnotes": "", "rp_attr": "", @@ -317064,7 +648878,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -317105,7 +648947,7 @@ "15:30", "17:20", "WLH 204 - William L. Harkness Hall 204", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -317124,10 +648966,101 @@ "classnotes": "Priority is given to students in the Education Studies program (Scholar and Certificate) and then by course year. Please indicate your interest in the course as well as major, EDST program and whether you've taken EDST 110 when you request permission. ", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88362\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88362/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998609185218811, + 0.9988056421279907, + 0.9986715316772461 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989110231399536, + 0.9983341097831726, + 0.9988967180252075, + 0.9983867406845093 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998891294002533, + 0.9986816048622131, + 0.9988476037979126, + 0.9988846182823181, + 0.9989123344421387 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 0.9166666666666666, + "final_counts": { + "POSITIVE": 11, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + } + } }, { "season_code": "202303", @@ -317165,7 +649098,7 @@ "10:30", "11:20", "HQ L01 - Humanities Quadrangle L01", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Wednesday": [ @@ -317173,7 +649106,7 @@ "10:30", "11:20", "HQ L01 - Humanities Quadrangle L01", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -317190,10 +649123,189 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89718\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/89718/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989226460456848, + 0.9987402558326721, + 0.9995079040527344, + 0.9988216757774353, + 0.9924526810646057, + 0.9986251592636108, + 0.9989036321640015, + 0.998913049697876, + 0.9985986351966858, + 0.9988297820091248, + 0.9968447685241699, + 0.998902440071106, + 0.9986924529075623, + 0.998740017414093, + 0.9987524747848511, + 0.9989091157913208 + ], + "sentiment_counts": { + "POSITIVE": 15, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9375, + "NEGATIVE": 0.0625 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9375 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9976438879966736, + 0.9958683252334595, + 0.9988584518432617, + 0.9988880753517151, + 0.9906966686248779, + 0.9968430995941162, + 0.9989088773727417, + 0.9989174604415894, + 0.9989070892333984, + 0.9989103078842163, + 0.9980913996696472, + 0.9988962411880493, + 0.9987447261810303, + 0.9989207983016968, + 0.9986220598220825, + 0.99892657995224, + 0.99294513463974, + 0.9989174604415894, + 0.9989270567893982 + ], + "sentiment_counts": { + "POSITIVE": 16, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.8421052631578947, + "NEGATIVE": 0.15789473684210525 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8421052631578947 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989269375801086, + 0.9989192485809326, + 0.9989237189292908, + 0.9984410405158997, + 0.9995038509368896, + 0.9989089965820312, + 0.9989033937454224, + 0.9989198446273804, + 0.9989225268363953, + 0.9989080429077148, + 0.9989197254180908, + 0.9989323019981384, + 0.9988860487937927, + 0.9989162683486938, + 0.9975879192352295, + 0.9989354014396667, + 0.9977418184280396, + 0.9988791346549988, + 0.9973868727684021, + 0.9989398121833801, + 0.9988893866539001 + ], + "sentiment_counts": { + "POSITIVE": 19, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.9047619047619048, + "NEGATIVE": 0.09523809523809523 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9047619047619048 + ] + }, + "final_label": "POSITIVE", + "final_count": 50, + "final_proportion": 0.8928571428571429, + "final_counts": { + "POSITIVE": 50, + "NEGATIVE": 6 + }, + "final_distribution": { + "POSITIVE": 0.8928571428571429, + "NEGATIVE": 0.10714285714285714 + } + } }, { "season_code": "202303", @@ -317225,7 +649337,7 @@ "15:30", "16:20", "WALL53 108 - 53 Wall Street 108", - "https:\/\/map.yale.edu\/?id=1910#!m\/559554" + "https://map.yale.edu/?id=1910#!m/559554" ] ] }, @@ -317245,7 +649357,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -317277,7 +649417,7 @@ "16:30", "17:20", "WALL53 108 - 53 Wall Street 108", - "https:\/\/map.yale.edu\/?id=1910#!m\/559554" + "https://map.yale.edu/?id=1910#!m/559554" ] ] }, @@ -317297,7 +649437,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -317329,7 +649497,7 @@ "9:25", "10:15", "WTS A30 - Watson Center 60 Sachem Street A30", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -317349,7 +649517,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -317381,7 +649577,7 @@ "10:30", "11:20", "WTS A74 - Watson Center 60 Sachem Street A74", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -317401,12 +649597,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "Examination of transnational debates about gender and sexuality as they unfold in specific contexts. Gender as a category that can or cannot travel; feminist critiques of liberal rights paradigms; globalization of particular models of gender\/queer advocacy; the role of NGOs in global debates about gender and sexuality.", + "description": "Examination of transnational debates about gender and sexuality as they unfold in specific contexts. Gender as a category that can or cannot travel; feminist critiques of liberal rights paradigms; globalization of particular models of gender/queer advocacy; the role of NGOs in global debates about gender and sexuality.", "short_title": "Transnational Approaches to G...", "title": "Transnational Approaches to Gender & Sexuality", "school": "YC", @@ -317455,15 +649679,116 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88551\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88551/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "", - "description": "Welcome to\u00a0Gender, Justice, Power & Institutions, a mouthful of abstractions that we work together to\u00a0comprehend and critique throughout the semester. An aspiration of this course, as political as it is pedagogic, is that students approach their world-building projects with an enriched understanding of the ways gender, justice, and power shape and are shaped by institutions, inequality, and theory.\u00a0Part I opens up some preliminary considerations of our course terms by investigating the case of abortion, abortion rights, and reproductive justice.\u00a0 The topic is politically loaded, philosophically complex, and emotionally challenging; the point is not to convince you of the permissibility or impermissibility of abortion, but to explore how the contested case configures, imbricates, and puts pressure on our course terms.\u00a0In Part II,\u00a0we examine the historical and conceptual coordinates of the courses first three titular terms: is\u00a0gender\u00a0a subjective identification, social ascription, or axis of inequality? Is\u00a0justice\u00a0a matter of redistribution, recognition, resources, capabilities, or something more hedonic? Where is\u00a0power\u00a0located, or where does it circulate? Who are what leverages power?\u00a0In Part III, we consider ways gender, justice, and power travel within and across several institutions: heterosexuality, the university, the trafficking\/anti-trafficking\u00a0industrial\u00a0complex, the prison, and the bathroom.\u00a0Part IV closes out the course by focusing on the reconfiguration of democratic institutions in late modernity; or, can institutions \"love us back\" under the the political economy we shorthand as \"neoliberalism\"?", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988478422164917, + 0.9989334940910339, + 0.9987789988517761, + 0.9986627101898193, + 0.9989334940910339, + 0.9988928437232971 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989373087882996, + 0.9989247918128967, + 0.998930037021637, + 0.9989343285560608, + 0.9989277720451355 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989351630210876, + 0.9989222288131714, + 0.9989317059516907, + 0.9989301562309265, + 0.9989344477653503, + 0.9989339709281921, + 0.9982367753982544 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 18, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 18 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } + }, + { + "season_code": "202303", + "requirements": "", + "description": "Welcome to\u00a0Gender, Justice, Power & Institutions, a mouthful of abstractions that we work together to\u00a0comprehend and critique throughout the semester. An aspiration of this course, as political as it is pedagogic, is that students approach their world-building projects with an enriched understanding of the ways gender, justice, and power shape and are shaped by institutions, inequality, and theory.\u00a0Part I opens up some preliminary considerations of our course terms by investigating the case of abortion, abortion rights, and reproductive justice.\u00a0 The topic is politically loaded, philosophically complex, and emotionally challenging; the point is not to convince you of the permissibility or impermissibility of abortion, but to explore how the contested case configures, imbricates, and puts pressure on our course terms.\u00a0In Part II,\u00a0we examine the historical and conceptual coordinates of the courses first three titular terms: is\u00a0gender\u00a0a subjective identification, social ascription, or axis of inequality? Is\u00a0justice\u00a0a matter of redistribution, recognition, resources, capabilities, or something more hedonic? Where is\u00a0power\u00a0located, or where does it circulate? Who are what leverages power?\u00a0In Part III, we consider ways gender, justice, and power travel within and across several institutions: heterosexuality, the university, the trafficking/anti-trafficking\u00a0industrial\u00a0complex, the prison, and the bathroom.\u00a0Part IV closes out the course by focusing on the reconfiguration of democratic institutions in late modernity; or, can institutions \"love us back\" under the the political economy we shorthand as \"neoliberalism\"?", "short_title": "Gender, Justice, Power, Insti...", "title": "Gender, Justice, Power, Institutions", "school": "YC", @@ -317496,7 +649821,7 @@ "10:30", "11:20", "LUCE 101 - Luce Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ], "Thursday": [ @@ -317504,7 +649829,7 @@ "10:30", "11:20", "LUCE 101 - Luce Hall 101", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ] }, @@ -317521,15 +649846,198 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88553\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88553/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "", - "description": "Welcome to\u00a0Gender, Justice, Power & Institutions, a mouthful of abstractions that we work together to\u00a0comprehend and critique throughout the semester. An aspiration of this course, as political as it is pedagogic, is that students approach their world-building projects with an enriched understanding of the ways gender, justice, and power shape and are shaped by institutions, inequality, and theory.\u00a0Part I opens up some preliminary considerations of our course terms by investigating the case of abortion, abortion rights, and reproductive justice.\u00a0 The topic is politically loaded, philosophically complex, and emotionally challenging; the point is not to convince you of the permissibility or impermissibility of abortion, but to explore how the contested case configures, imbricates, and puts pressure on our course terms.\u00a0In Part II,\u00a0we examine the historical and conceptual coordinates of the courses first three titular terms: is\u00a0gender\u00a0a subjective identification, social ascription, or axis of inequality? Is\u00a0justice\u00a0a matter of redistribution, recognition, resources, capabilities, or something more hedonic? Where is\u00a0power\u00a0located, or where does it circulate? Who are what leverages power?\u00a0In Part III, we consider ways gender, justice, and power travel within and across several institutions: heterosexuality, the university, the trafficking\/anti-trafficking\u00a0industrial\u00a0complex, the prison, and the bathroom.\u00a0Part IV closes out the course by focusing on the reconfiguration of democratic institutions in late modernity; or, can institutions \"love us back\" under the the political economy we shorthand as \"neoliberalism\"?", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988067150115967, + 0.9988301396369934, + 0.9932726621627808, + 0.9988971948623657, + 0.9995019435882568, + 0.9989131689071655, + 0.9995061159133911, + 0.9989249110221863, + 0.9988406300544739, + 0.9987732768058777, + 0.998728334903717, + 0.9988875985145569, + 0.9987615346908569, + 0.9989246726036072, + 0.9988441467285156, + 0.9986891150474548, + 0.9988756775856018, + 0.9989092350006104, + 0.998691976070404 + ], + "sentiment_counts": { + "POSITIVE": 16, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.8421052631578947, + "NEGATIVE": 0.15789473684210525 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8421052631578947 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987912774085999, + 0.9988617897033691, + 0.9994957447052002, + 0.9989109039306641, + 0.9987733960151672, + 0.8841562867164612, + 0.9977545142173767, + 0.998450517654419, + 0.9987388253211975, + 0.998902440071106, + 0.9989011287689209, + 0.9976153373718262, + 0.9988916516304016, + 0.9985124468803406, + 0.9929475784301758, + 0.9985986351966858, + 0.9989114999771118, + 0.9989117383956909 + ], + "sentiment_counts": { + "POSITIVE": 16, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989014863967896, + 0.9989308714866638, + 0.9986067414283752, + 0.9988228678703308, + 0.9988584518432617, + 0.9986961483955383, + 0.9995061159133911, + 0.9988693594932556, + 0.9945303797721863, + 0.9988400340080261, + 0.9988208413124084, + 0.9989256262779236, + 0.998881995677948, + 0.9989209175109863, + 0.9988400340080261, + 0.9989179372787476, + 0.9988082647323608, + 0.9989058971405029, + 0.9988512992858887, + 0.9980536699295044, + 0.9988530874252319 + ], + "sentiment_counts": { + "POSITIVE": 20, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9523809523809523, + "NEGATIVE": 0.047619047619047616 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9523809523809523 + ] + }, + "final_label": "POSITIVE", + "final_count": 52, + "final_proportion": 0.896551724137931, + "final_counts": { + "POSITIVE": 52, + "NEGATIVE": 6 + }, + "final_distribution": { + "POSITIVE": 0.896551724137931, + "NEGATIVE": 0.10344827586206896 + } + } + }, + { + "season_code": "202303", + "requirements": "", + "description": "Welcome to\u00a0Gender, Justice, Power & Institutions, a mouthful of abstractions that we work together to\u00a0comprehend and critique throughout the semester. An aspiration of this course, as political as it is pedagogic, is that students approach their world-building projects with an enriched understanding of the ways gender, justice, and power shape and are shaped by institutions, inequality, and theory.\u00a0Part I opens up some preliminary considerations of our course terms by investigating the case of abortion, abortion rights, and reproductive justice.\u00a0 The topic is politically loaded, philosophically complex, and emotionally challenging; the point is not to convince you of the permissibility or impermissibility of abortion, but to explore how the contested case configures, imbricates, and puts pressure on our course terms.\u00a0In Part II,\u00a0we examine the historical and conceptual coordinates of the courses first three titular terms: is\u00a0gender\u00a0a subjective identification, social ascription, or axis of inequality? Is\u00a0justice\u00a0a matter of redistribution, recognition, resources, capabilities, or something more hedonic? Where is\u00a0power\u00a0located, or where does it circulate? Who are what leverages power?\u00a0In Part III, we consider ways gender, justice, and power travel within and across several institutions: heterosexuality, the university, the trafficking/anti-trafficking\u00a0industrial\u00a0complex, the prison, and the bathroom.\u00a0Part IV closes out the course by focusing on the reconfiguration of democratic institutions in late modernity; or, can institutions \"love us back\" under the the political economy we shorthand as \"neoliberalism\"?", "short_title": "Gender, Justice, Power, Insti...", "title": "Gender, Justice, Power, Institutions", "school": "YC", @@ -317556,7 +650064,7 @@ "9:25", "10:15", "HQ C65 - Humanities Quadrangle C65", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -317576,12 +650084,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "Welcome to\u00a0Gender, Justice, Power & Institutions, a mouthful of abstractions that we work together to\u00a0comprehend and critique throughout the semester. An aspiration of this course, as political as it is pedagogic, is that students approach their world-building projects with an enriched understanding of the ways gender, justice, and power shape and are shaped by institutions, inequality, and theory.\u00a0Part I opens up some preliminary considerations of our course terms by investigating the case of abortion, abortion rights, and reproductive justice.\u00a0 The topic is politically loaded, philosophically complex, and emotionally challenging; the point is not to convince you of the permissibility or impermissibility of abortion, but to explore how the contested case configures, imbricates, and puts pressure on our course terms.\u00a0In Part II,\u00a0we examine the historical and conceptual coordinates of the courses first three titular terms: is\u00a0gender\u00a0a subjective identification, social ascription, or axis of inequality? Is\u00a0justice\u00a0a matter of redistribution, recognition, resources, capabilities, or something more hedonic? Where is\u00a0power\u00a0located, or where does it circulate? Who are what leverages power?\u00a0In Part III, we consider ways gender, justice, and power travel within and across several institutions: heterosexuality, the university, the trafficking\/anti-trafficking\u00a0industrial\u00a0complex, the prison, and the bathroom.\u00a0Part IV closes out the course by focusing on the reconfiguration of democratic institutions in late modernity; or, can institutions \"love us back\" under the the political economy we shorthand as \"neoliberalism\"?", + "description": "Welcome to\u00a0Gender, Justice, Power & Institutions, a mouthful of abstractions that we work together to\u00a0comprehend and critique throughout the semester. An aspiration of this course, as political as it is pedagogic, is that students approach their world-building projects with an enriched understanding of the ways gender, justice, and power shape and are shaped by institutions, inequality, and theory.\u00a0Part I opens up some preliminary considerations of our course terms by investigating the case of abortion, abortion rights, and reproductive justice.\u00a0 The topic is politically loaded, philosophically complex, and emotionally challenging; the point is not to convince you of the permissibility or impermissibility of abortion, but to explore how the contested case configures, imbricates, and puts pressure on our course terms.\u00a0In Part II,\u00a0we examine the historical and conceptual coordinates of the courses first three titular terms: is\u00a0gender\u00a0a subjective identification, social ascription, or axis of inequality? Is\u00a0justice\u00a0a matter of redistribution, recognition, resources, capabilities, or something more hedonic? Where is\u00a0power\u00a0located, or where does it circulate? Who are what leverages power?\u00a0In Part III, we consider ways gender, justice, and power travel within and across several institutions: heterosexuality, the university, the trafficking/anti-trafficking\u00a0industrial\u00a0complex, the prison, and the bathroom.\u00a0Part IV closes out the course by focusing on the reconfiguration of democratic institutions in late modernity; or, can institutions \"love us back\" under the the political economy we shorthand as \"neoliberalism\"?", "short_title": "Gender, Justice, Power, Insti...", "title": "Gender, Justice, Power, Institutions", "school": "YC", @@ -317608,7 +650144,7 @@ "19:00", "19:50", "BASSLB L70 - Bass Library L70", - "https:\/\/map.yale.edu\/?id=1910#!m\/564574" + "https://map.yale.edu/?id=1910#!m/564574" ] ] }, @@ -317628,12 +650164,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "Welcome to\u00a0Gender, Justice, Power & Institutions, a mouthful of abstractions that we work together to\u00a0comprehend and critique throughout the semester. An aspiration of this course, as political as it is pedagogic, is that students approach their world-building projects with an enriched understanding of the ways gender, justice, and power shape and are shaped by institutions, inequality, and theory.\u00a0Part I opens up some preliminary considerations of our course terms by investigating the case of abortion, abortion rights, and reproductive justice.\u00a0 The topic is politically loaded, philosophically complex, and emotionally challenging; the point is not to convince you of the permissibility or impermissibility of abortion, but to explore how the contested case configures, imbricates, and puts pressure on our course terms.\u00a0In Part II,\u00a0we examine the historical and conceptual coordinates of the courses first three titular terms: is\u00a0gender\u00a0a subjective identification, social ascription, or axis of inequality? Is\u00a0justice\u00a0a matter of redistribution, recognition, resources, capabilities, or something more hedonic? Where is\u00a0power\u00a0located, or where does it circulate? Who are what leverages power?\u00a0In Part III, we consider ways gender, justice, and power travel within and across several institutions: heterosexuality, the university, the trafficking\/anti-trafficking\u00a0industrial\u00a0complex, the prison, and the bathroom.\u00a0Part IV closes out the course by focusing on the reconfiguration of democratic institutions in late modernity; or, can institutions \"love us back\" under the the political economy we shorthand as \"neoliberalism\"?", + "description": "Welcome to\u00a0Gender, Justice, Power & Institutions, a mouthful of abstractions that we work together to\u00a0comprehend and critique throughout the semester. An aspiration of this course, as political as it is pedagogic, is that students approach their world-building projects with an enriched understanding of the ways gender, justice, and power shape and are shaped by institutions, inequality, and theory.\u00a0Part I opens up some preliminary considerations of our course terms by investigating the case of abortion, abortion rights, and reproductive justice.\u00a0 The topic is politically loaded, philosophically complex, and emotionally challenging; the point is not to convince you of the permissibility or impermissibility of abortion, but to explore how the contested case configures, imbricates, and puts pressure on our course terms.\u00a0In Part II,\u00a0we examine the historical and conceptual coordinates of the courses first three titular terms: is\u00a0gender\u00a0a subjective identification, social ascription, or axis of inequality? Is\u00a0justice\u00a0a matter of redistribution, recognition, resources, capabilities, or something more hedonic? Where is\u00a0power\u00a0located, or where does it circulate? Who are what leverages power?\u00a0In Part III, we consider ways gender, justice, and power travel within and across several institutions: heterosexuality, the university, the trafficking/anti-trafficking\u00a0industrial\u00a0complex, the prison, and the bathroom.\u00a0Part IV closes out the course by focusing on the reconfiguration of democratic institutions in late modernity; or, can institutions \"love us back\" under the the political economy we shorthand as \"neoliberalism\"?", "short_title": "Gender, Justice, Power, Insti...", "title": "Gender, Justice, Power, Institutions", "school": "YC", @@ -317660,7 +650224,7 @@ "17:00", "17:50", "HQ C01 - Humanities Quadrangle C01", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -317680,12 +650244,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "Welcome to\u00a0Gender, Justice, Power & Institutions, a mouthful of abstractions that we work together to\u00a0comprehend and critique throughout the semester. An aspiration of this course, as political as it is pedagogic, is that students approach their world-building projects with an enriched understanding of the ways gender, justice, and power shape and are shaped by institutions, inequality, and theory.\u00a0Part I opens up some preliminary considerations of our course terms by investigating the case of abortion, abortion rights, and reproductive justice.\u00a0 The topic is politically loaded, philosophically complex, and emotionally challenging; the point is not to convince you of the permissibility or impermissibility of abortion, but to explore how the contested case configures, imbricates, and puts pressure on our course terms.\u00a0In Part II,\u00a0we examine the historical and conceptual coordinates of the courses first three titular terms: is\u00a0gender\u00a0a subjective identification, social ascription, or axis of inequality? Is\u00a0justice\u00a0a matter of redistribution, recognition, resources, capabilities, or something more hedonic? Where is\u00a0power\u00a0located, or where does it circulate? Who are what leverages power?\u00a0In Part III, we consider ways gender, justice, and power travel within and across several institutions: heterosexuality, the university, the trafficking\/anti-trafficking\u00a0industrial\u00a0complex, the prison, and the bathroom.\u00a0Part IV closes out the course by focusing on the reconfiguration of democratic institutions in late modernity; or, can institutions \"love us back\" under the the political economy we shorthand as \"neoliberalism\"?", + "description": "Welcome to\u00a0Gender, Justice, Power & Institutions, a mouthful of abstractions that we work together to\u00a0comprehend and critique throughout the semester. An aspiration of this course, as political as it is pedagogic, is that students approach their world-building projects with an enriched understanding of the ways gender, justice, and power shape and are shaped by institutions, inequality, and theory.\u00a0Part I opens up some preliminary considerations of our course terms by investigating the case of abortion, abortion rights, and reproductive justice.\u00a0 The topic is politically loaded, philosophically complex, and emotionally challenging; the point is not to convince you of the permissibility or impermissibility of abortion, but to explore how the contested case configures, imbricates, and puts pressure on our course terms.\u00a0In Part II,\u00a0we examine the historical and conceptual coordinates of the courses first three titular terms: is\u00a0gender\u00a0a subjective identification, social ascription, or axis of inequality? Is\u00a0justice\u00a0a matter of redistribution, recognition, resources, capabilities, or something more hedonic? Where is\u00a0power\u00a0located, or where does it circulate? Who are what leverages power?\u00a0In Part III, we consider ways gender, justice, and power travel within and across several institutions: heterosexuality, the university, the trafficking/anti-trafficking\u00a0industrial\u00a0complex, the prison, and the bathroom.\u00a0Part IV closes out the course by focusing on the reconfiguration of democratic institutions in late modernity; or, can institutions \"love us back\" under the the political economy we shorthand as \"neoliberalism\"?", "short_title": "Gender, Justice, Power, Insti...", "title": "Gender, Justice, Power, Institutions", "school": "YC", @@ -317712,7 +650304,7 @@ "17:00", "17:50", "HQ 229 - Humanities Quadrangle 229", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -317732,12 +650324,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "Welcome to\u00a0Gender, Justice, Power & Institutions, a mouthful of abstractions that we work together to\u00a0comprehend and critique throughout the semester. An aspiration of this course, as political as it is pedagogic, is that students approach their world-building projects with an enriched understanding of the ways gender, justice, and power shape and are shaped by institutions, inequality, and theory.\u00a0Part I opens up some preliminary considerations of our course terms by investigating the case of abortion, abortion rights, and reproductive justice.\u00a0 The topic is politically loaded, philosophically complex, and emotionally challenging; the point is not to convince you of the permissibility or impermissibility of abortion, but to explore how the contested case configures, imbricates, and puts pressure on our course terms.\u00a0In Part II,\u00a0we examine the historical and conceptual coordinates of the courses first three titular terms: is\u00a0gender\u00a0a subjective identification, social ascription, or axis of inequality? Is\u00a0justice\u00a0a matter of redistribution, recognition, resources, capabilities, or something more hedonic? Where is\u00a0power\u00a0located, or where does it circulate? Who are what leverages power?\u00a0In Part III, we consider ways gender, justice, and power travel within and across several institutions: heterosexuality, the university, the trafficking\/anti-trafficking\u00a0industrial\u00a0complex, the prison, and the bathroom.\u00a0Part IV closes out the course by focusing on the reconfiguration of democratic institutions in late modernity; or, can institutions \"love us back\" under the the political economy we shorthand as \"neoliberalism\"?", + "description": "Welcome to\u00a0Gender, Justice, Power & Institutions, a mouthful of abstractions that we work together to\u00a0comprehend and critique throughout the semester. An aspiration of this course, as political as it is pedagogic, is that students approach their world-building projects with an enriched understanding of the ways gender, justice, and power shape and are shaped by institutions, inequality, and theory.\u00a0Part I opens up some preliminary considerations of our course terms by investigating the case of abortion, abortion rights, and reproductive justice.\u00a0 The topic is politically loaded, philosophically complex, and emotionally challenging; the point is not to convince you of the permissibility or impermissibility of abortion, but to explore how the contested case configures, imbricates, and puts pressure on our course terms.\u00a0In Part II,\u00a0we examine the historical and conceptual coordinates of the courses first three titular terms: is\u00a0gender\u00a0a subjective identification, social ascription, or axis of inequality? Is\u00a0justice\u00a0a matter of redistribution, recognition, resources, capabilities, or something more hedonic? Where is\u00a0power\u00a0located, or where does it circulate? Who are what leverages power?\u00a0In Part III, we consider ways gender, justice, and power travel within and across several institutions: heterosexuality, the university, the trafficking/anti-trafficking\u00a0industrial\u00a0complex, the prison, and the bathroom.\u00a0Part IV closes out the course by focusing on the reconfiguration of democratic institutions in late modernity; or, can institutions \"love us back\" under the the political economy we shorthand as \"neoliberalism\"?", "short_title": "Gender, Justice, Power, Insti...", "title": "Gender, Justice, Power, Institutions", "school": "YC", @@ -317764,7 +650384,7 @@ "17:00", "17:50", "HQ 225 - Humanities Quadrangle 225", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -317784,12 +650404,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "Welcome to\u00a0Gender, Justice, Power & Institutions, a mouthful of abstractions that we work together to\u00a0comprehend and critique throughout the semester. An aspiration of this course, as political as it is pedagogic, is that students approach their world-building projects with an enriched understanding of the ways gender, justice, and power shape and are shaped by institutions, inequality, and theory.\u00a0Part I opens up some preliminary considerations of our course terms by investigating the case of abortion, abortion rights, and reproductive justice.\u00a0 The topic is politically loaded, philosophically complex, and emotionally challenging; the point is not to convince you of the permissibility or impermissibility of abortion, but to explore how the contested case configures, imbricates, and puts pressure on our course terms.\u00a0In Part II,\u00a0we examine the historical and conceptual coordinates of the courses first three titular terms: is\u00a0gender\u00a0a subjective identification, social ascription, or axis of inequality? Is\u00a0justice\u00a0a matter of redistribution, recognition, resources, capabilities, or something more hedonic? Where is\u00a0power\u00a0located, or where does it circulate? Who are what leverages power?\u00a0In Part III, we consider ways gender, justice, and power travel within and across several institutions: heterosexuality, the university, the trafficking\/anti-trafficking\u00a0industrial\u00a0complex, the prison, and the bathroom.\u00a0Part IV closes out the course by focusing on the reconfiguration of democratic institutions in late modernity; or, can institutions \"love us back\" under the the political economy we shorthand as \"neoliberalism\"?", + "description": "Welcome to\u00a0Gender, Justice, Power & Institutions, a mouthful of abstractions that we work together to\u00a0comprehend and critique throughout the semester. An aspiration of this course, as political as it is pedagogic, is that students approach their world-building projects with an enriched understanding of the ways gender, justice, and power shape and are shaped by institutions, inequality, and theory.\u00a0Part I opens up some preliminary considerations of our course terms by investigating the case of abortion, abortion rights, and reproductive justice.\u00a0 The topic is politically loaded, philosophically complex, and emotionally challenging; the point is not to convince you of the permissibility or impermissibility of abortion, but to explore how the contested case configures, imbricates, and puts pressure on our course terms.\u00a0In Part II,\u00a0we examine the historical and conceptual coordinates of the courses first three titular terms: is\u00a0gender\u00a0a subjective identification, social ascription, or axis of inequality? Is\u00a0justice\u00a0a matter of redistribution, recognition, resources, capabilities, or something more hedonic? Where is\u00a0power\u00a0located, or where does it circulate? Who are what leverages power?\u00a0In Part III, we consider ways gender, justice, and power travel within and across several institutions: heterosexuality, the university, the trafficking/anti-trafficking\u00a0industrial\u00a0complex, the prison, and the bathroom.\u00a0Part IV closes out the course by focusing on the reconfiguration of democratic institutions in late modernity; or, can institutions \"love us back\" under the the political economy we shorthand as \"neoliberalism\"?", "short_title": "Gender, Justice, Power, Insti...", "title": "Gender, Justice, Power, Institutions", "school": "YC", @@ -317816,7 +650464,7 @@ "9:25", "10:15", "WTS A38 - Watson Center 60 Sachem Street A38", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -317836,7 +650484,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -317876,7 +650552,7 @@ "13:30", "15:20", "RKZ 102 - Rosenkranz Hall 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -317890,10 +650566,111 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88472\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88472/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989111423492432, + 0.9988601207733154, + 0.9989058971405029, + 0.9987803101539612, + 0.9986018538475037 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9969589710235596, + 0.9987708926200867, + 0.9988803267478943, + 0.9989339709281921, + 0.9974442720413208 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9954793453216553, + 0.9986547231674194, + 0.9989053010940552, + 0.9988651275634766, + 0.9988355040550232, + 0.9984233379364014, + 0.9989383816719055 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 6 + }, + "sentiment_distribution": { + "NEGATIVE": 0.14285714285714285, + "POSITIVE": 0.8571428571428571 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8571428571428571 + ] + }, + "final_label": "POSITIVE", + "final_count": 16, + "final_proportion": 0.9411764705882353, + "final_counts": { + "POSITIVE": 16, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9411764705882353, + "NEGATIVE": 0.058823529411764705 + } + } }, { "season_code": "202303", @@ -317931,7 +650708,7 @@ "14:30", "15:45", "WLH 002 - William L. Harkness Hall 002", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -317939,7 +650716,7 @@ "14:30", "15:45", "WLH 002 - William L. Harkness Hall 002", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -317954,13 +650731,92 @@ ], "regnotes": "", "rp_attr": "", - "classnotes": "This course may satisfy the 18th\/19th or 20th\/21st Century requirement for English majors with permission from the instructor and the DUS. The English Distribution Request Form is available at https:\/\/english.yale.edu\/undergraduate\/deadlines-and-forms.", + "classnotes": "This course may satisfy the 18th/19th or 20th/21st Century requirement for English majors with permission from the instructor and the DUS. The English Distribution Request Form is available at https://english.yale.edu/undergraduate/deadlines-and-forms.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89649\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89649/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989251494407654, + 0.9988884329795837 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989253878593445, + 0.9989187717437744 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988260865211487, + 0.9989264607429504, + 0.9988991022109985 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 7 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -317998,7 +650854,7 @@ "14:30", "15:45", "WTS B60 - Watson Center 60 Sachem Street B60", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -318006,7 +650862,7 @@ "14:30", "15:45", "WTS B60 - Watson Center 60 Sachem Street B60", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -318024,15 +650880,132 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88788\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88788/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "", - "description": "This course provides an introduction to Latinx queer\u00a0trans* studies. We approach the field of Latinx queer trans*\u00a0studies as an\u00a0ongoing political project that emerges from social justice activism, gay\/lesbian\/queer\/trans\u00a0studies, critical\u00a0race feminism, cultural practitioners, among other work. We pay particular attention to the keywords \"trans,\" \"queer,\"\u00a0\"Chicanx,\" and\u00a0\"Latinx\" by placing them in productive tension with each other through varied\u00a0critical genealogies.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988774657249451, + 0.9987429976463318, + 0.9987428784370422, + 0.9988417029380798, + 0.9988077878952026, + 0.9988316893577576, + 0.9977756142616272 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998923122882843, + 0.9989283680915833, + 0.9995044469833374, + 0.998920202255249, + 0.9989269375801086, + 0.9988901019096375, + 0.998816967010498, + 0.9987534284591675 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + }, + "sentiment_overall": [ + "POSITIVE", + 0.875 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987010955810547, + 0.9981436729431152, + 0.998630166053772, + 0.9988366961479187, + 0.9989174604415894, + 0.9989399313926697, + 0.9988386034965515, + 0.9989359974861145, + 0.9988725781440735, + 0.9989180564880371 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 24, + "final_proportion": 0.96, + "final_counts": { + "POSITIVE": 24, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.96, + "NEGATIVE": 0.04 + } + } + }, + { + "season_code": "202303", + "requirements": "", + "description": "This course provides an introduction to Latinx queer\u00a0trans* studies. We approach the field of Latinx queer trans*\u00a0studies as an\u00a0ongoing political project that emerges from social justice activism, gay/lesbian/queer/trans\u00a0studies, critical\u00a0race feminism, cultural practitioners, among other work. We pay particular attention to the keywords \"trans,\" \"queer,\"\u00a0\"Chicanx,\" and\u00a0\"Latinx\" by placing them in productive tension with each other through varied\u00a0critical genealogies.", "short_title": "Porvida: Latinx Queer Trans Life", "title": "Porvida: Latinx Queer Trans Life", "school": "YC", @@ -318066,7 +651039,7 @@ "9:25", "11:15", "WLH 209 - William L. Harkness Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -318076,7 +651049,7 @@ "So" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -318084,10 +651057,99 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88555\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88555/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988262057304382, + 0.9988682270050049, + 0.9987679123878479, + 0.9984970092773438 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9985811710357666, + 0.9989326596260071, + 0.9988020658493042, + 0.9989140033721924 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988322854042053, + 0.9989150762557983, + 0.9989326596260071, + 0.9989365935325623 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 12 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -318126,7 +651188,7 @@ "13:30", "15:20", "RKZ 241 - Rosenkranz Hall 241", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -318140,10 +651202,81 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88481\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88481/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988154172897339 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.998902440071106 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989281296730042 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 3, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 3 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -318180,7 +651313,7 @@ "15:30", "17:20", "WLH 001 - William L. Harkness Hall 001", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -318194,10 +651327,99 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88558\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88558/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989301562309265, + 0.9988766312599182, + 0.998860239982605, + 0.9989306330680847 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987378716468811, + 0.9969346523284912, + 0.9989389777183533 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.99892657995224, + 0.9988848567008972, + 0.998908519744873, + 0.9989287257194519, + 0.9987265467643738 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 12, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 12 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -318235,7 +651457,7 @@ "11:35", "12:50", "LC 319 - Linsly-Chittenden Hall 319", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ], "Thursday": [ @@ -318243,7 +651465,7 @@ "11:35", "12:50", "LC 319 - Linsly-Chittenden Hall 319", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -318254,7 +651476,7 @@ "Hu" ], "flags": [ - "YC English: 18th\/19th Century ", + "YC English: 18th/19th Century ", "YC English: Junior Seminar" ], "regnotes": "", @@ -318262,10 +651484,87 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89301\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89301/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989196062088013 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989256262779236, + 0.998855710029602, + 0.9989373087882996 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988960027694702, + 0.9989319443702698 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 6, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 6 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -318302,7 +651601,7 @@ "9:25", "11:15", "PR135 A83 - 135 Prospect Street A83", - "https:\/\/map.yale.edu\/?id=1910#!m\/560122" + "https://map.yale.edu/?id=1910#!m/560122" ] ] }, @@ -318314,10 +651613,125 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88560\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88560/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989320635795593, + 0.9988948702812195, + 0.9988054037094116, + 0.9989287257194519, + 0.9989269375801086, + 0.9988239407539368, + 0.9989066123962402 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989094734191895, + 0.9982149600982666, + 0.9988561868667603, + 0.9989368319511414, + 0.9987799525260925, + 0.9988204836845398, + 0.9987953901290894, + 0.9988981485366821, + 0.9988967180252075 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9982553124427795, + 0.9989073276519775, + 0.9989196062088013, + 0.9989309906959534, + 0.9989271759986877, + 0.9988672733306885, + 0.9987038373947144, + 0.9989179372787476 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 23, + "final_proportion": 0.9583333333333334, + "final_counts": { + "POSITIVE": 23, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9583333333333334, + "NEGATIVE": 0.041666666666666664 + } + } }, { "season_code": "202303", @@ -318357,7 +651771,7 @@ "11:35", "12:25", "LORIA 250 - Loria Center 250", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ], "Wednesday": [ @@ -318365,7 +651779,7 @@ "11:35", "12:25", "LORIA 250 - Loria Center 250", - "https:\/\/map.yale.edu\/?id=1910#!m\/560066" + "https://map.yale.edu/?id=1910#!m/560066" ] ] }, @@ -318374,7 +651788,7 @@ "Hu" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -318382,10 +651796,143 @@ "classnotes": "", "final_exam": "Sunday, December 17, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88112\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88112/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998836100101471, + 0.9976512789726257, + 0.9988808035850525, + 0.9988939166069031, + 0.9978989362716675, + 0.9989308714866638, + 0.9987949132919312, + 0.9989008903503418, + 0.9988837838172913 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998794436454773, + 0.9982981085777283, + 0.9988808035850525, + 0.9980149269104004, + 0.9989116191864014, + 0.9994109869003296, + 0.998367965221405, + 0.9980337023735046, + 0.9988916516304016, + 0.9987894892692566, + 0.9989295601844788, + 0.9989262223243713 + ], + "sentiment_counts": { + "POSITIVE": 11, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9166666666666666, + "NEGATIVE": 0.08333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9166666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988376498222351, + 0.998847246170044, + 0.9989227652549744, + 0.9988154172897339, + 0.9989237189292908, + 0.9986734390258789, + 0.9985941052436829, + 0.9988535642623901, + 0.9988871216773987, + 0.9988312125205994, + 0.9983710646629333, + 0.9986194372177124 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 32, + "final_proportion": 0.9696969696969697, + "final_counts": { + "POSITIVE": 32, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9696969696969697, + "NEGATIVE": 0.030303030303030304 + } + } }, { "season_code": "202303", @@ -318419,7 +651966,7 @@ "15:30", "16:20", "WLH 120 - William L. Harkness Hall 120", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -318428,7 +651975,7 @@ "Hu" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -318439,7 +651986,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -318473,7 +652048,7 @@ "16:30", "17:20", "WLH 113 - William L. Harkness Hall 113", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -318482,7 +652057,7 @@ "Hu" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -318493,7 +652068,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -318527,7 +652130,7 @@ "13:30", "14:20", "HQ C07 - Humanities Quadrangle C07", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -318536,7 +652139,7 @@ "Hu" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -318547,7 +652150,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -318581,7 +652212,7 @@ "14:30", "15:20", "HQ C07 - Humanities Quadrangle C07", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -318590,7 +652221,7 @@ "Hu" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -318601,7 +652232,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -318635,7 +652294,7 @@ "13:30", "14:20", "LC 212 - Linsly-Chittenden Hall 212", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -318644,7 +652303,7 @@ "Hu" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -318655,7 +652314,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -318689,7 +652376,7 @@ "15:30", "16:20", "LC 213 - Linsly-Chittenden Hall 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/560111" + "https://map.yale.edu/?id=1910#!m/560111" ] ] }, @@ -318698,7 +652385,7 @@ "Hu" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -318709,7 +652396,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -318743,7 +652458,7 @@ "14:30", "15:20", "HQ C65 - Humanities Quadrangle C65", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -318752,7 +652467,7 @@ "Hu" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -318763,7 +652478,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -318797,7 +652540,7 @@ "17:00", "17:50", "HQ C65 - Humanities Quadrangle C65", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -318806,7 +652549,7 @@ "Hu" ], "flags": [ - "YC AMST: Cultural Hist\/Studies", + "YC AMST: Cultural Hist/Studies", "YC AMST: Gateway Courses" ], "regnotes": "", @@ -318817,12 +652560,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "This interdisciplinary course surveys the history of homosexuality from a cross-cultural, comparative \u00a0perspective. Students study contexts where homosexuality and sodomy were categorized, regulated, and persecuted and examine ancient and medieval constructions of same-sex desire in light of post-modern developments, challenging ideas around what is considered normal and\/or natural. Ultimately, we ask: what has changed, and what has remained the same, in the history of homosexuality? What do gays and lesbians today have in common with pre-modern sodomites? Can this history help us ground or rethink our sexual selves and identities? Primary and secondary historical sources, some legal and religious sources, and texts in intellectual history are studied. Among the case studies for the course are ancient attitudes among Jews, early Christians, and Greeks; Christian theologians of the Middle Ages; Renaissance Florence; the Inquisition in Iberia; colonial Latin America; and the Enlightenment\u2019s condemnation of sodomy by Montesquieu and Voltaire, and its defense by Bentham.", + "description": "This interdisciplinary course surveys the history of homosexuality from a cross-cultural, comparative \u00a0perspective. Students study contexts where homosexuality and sodomy were categorized, regulated, and persecuted and examine ancient and medieval constructions of same-sex desire in light of post-modern developments, challenging ideas around what is considered normal and/or natural. Ultimately, we ask: what has changed, and what has remained the same, in the history of homosexuality? What do gays and lesbians today have in common with pre-modern sodomites? Can this history help us ground or rethink our sexual selves and identities? Primary and secondary historical sources, some legal and religious sources, and texts in intellectual history are studied. Among the case studies for the course are ancient attitudes among Jews, early Christians, and Greeks; Christian theologians of the Middle Ages; Renaissance Florence; the Inquisition in Iberia; colonial Latin America; and the Enlightenment\u2019s condemnation of sodomy by Montesquieu and Voltaire, and its defense by Bentham.", "short_title": "Sexual Minorities from Plato ...", "title": "Sexual Minorities from Plato to the Enlightenment", "school": "YC", @@ -318857,7 +652628,7 @@ "13:00", "14:15", "WLH 211 - William L. Harkness Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -318865,7 +652636,7 @@ "13:00", "14:15", "WLH 211 - William L. Harkness Hall 211", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -318884,15 +652655,90 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88563\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88563/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "", - "description": "This interdisciplinary course surveys the history of homosexuality from a cross-cultural, comparative \u00a0perspective. Students study contexts where homosexuality and sodomy were categorized, regulated, and persecuted and examine ancient and medieval constructions of same-sex desire in light of post-modern developments, challenging ideas around what is considered normal and\/or natural. Ultimately, we ask: what has changed, and what has remained the same, in the history of homosexuality? What do gays and lesbians today have in common with pre-modern sodomites? Can this history help us ground or rethink our sexual selves and identities? Primary and secondary historical sources, some legal and religious sources, and texts in intellectual history are studied. Among the case studies for the course are ancient attitudes among Jews, early Christians, and Greeks; Christian theologians of the Middle Ages; Renaissance Florence; the Inquisition in Iberia; colonial Latin America; and the Enlightenment\u2019s condemnation of sodomy by Montesquieu and Voltaire, and its defense by Bentham.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.998930037021637 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988467693328857 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988486766815186, + 0.9988548755645752, + 0.9983124732971191 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 5, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 5 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } + }, + { + "season_code": "202303", + "requirements": "", + "description": "This interdisciplinary course surveys the history of homosexuality from a cross-cultural, comparative \u00a0perspective. Students study contexts where homosexuality and sodomy were categorized, regulated, and persecuted and examine ancient and medieval constructions of same-sex desire in light of post-modern developments, challenging ideas around what is considered normal and/or natural. Ultimately, we ask: what has changed, and what has remained the same, in the history of homosexuality? What do gays and lesbians today have in common with pre-modern sodomites? Can this history help us ground or rethink our sexual selves and identities? Primary and secondary historical sources, some legal and religious sources, and texts in intellectual history are studied. Among the case studies for the course are ancient attitudes among Jews, early Christians, and Greeks; Christian theologians of the Middle Ages; Renaissance Florence; the Inquisition in Iberia; colonial Latin America; and the Enlightenment\u2019s condemnation of sodomy by Montesquieu and Voltaire, and its defense by Bentham.", "short_title": "Sexual Minorities from Plato ...", "title": "Sexual Minorities from Plato to the Enlightenment", "school": "YC", @@ -318921,7 +652767,7 @@ "14:30", "15:20", "WLH 209 - William L. Harkness Hall 209", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -318943,12 +652789,40 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", "requirements": "", - "description": "This interdisciplinary course surveys the history of homosexuality from a cross-cultural, comparative \u00a0perspective. Students study contexts where homosexuality and sodomy were categorized, regulated, and persecuted and examine ancient and medieval constructions of same-sex desire in light of post-modern developments, challenging ideas around what is considered normal and\/or natural. Ultimately, we ask: what has changed, and what has remained the same, in the history of homosexuality? What do gays and lesbians today have in common with pre-modern sodomites? Can this history help us ground or rethink our sexual selves and identities? Primary and secondary historical sources, some legal and religious sources, and texts in intellectual history are studied. Among the case studies for the course are ancient attitudes among Jews, early Christians, and Greeks; Christian theologians of the Middle Ages; Renaissance Florence; the Inquisition in Iberia; colonial Latin America; and the Enlightenment\u2019s condemnation of sodomy by Montesquieu and Voltaire, and its defense by Bentham.", + "description": "This interdisciplinary course surveys the history of homosexuality from a cross-cultural, comparative \u00a0perspective. Students study contexts where homosexuality and sodomy were categorized, regulated, and persecuted and examine ancient and medieval constructions of same-sex desire in light of post-modern developments, challenging ideas around what is considered normal and/or natural. Ultimately, we ask: what has changed, and what has remained the same, in the history of homosexuality? What do gays and lesbians today have in common with pre-modern sodomites? Can this history help us ground or rethink our sexual selves and identities? Primary and secondary historical sources, some legal and religious sources, and texts in intellectual history are studied. Among the case studies for the course are ancient attitudes among Jews, early Christians, and Greeks; Christian theologians of the Middle Ages; Renaissance Florence; the Inquisition in Iberia; colonial Latin America; and the Enlightenment\u2019s condemnation of sodomy by Montesquieu and Voltaire, and its defense by Bentham.", "short_title": "Sexual Minorities from Plato ...", "title": "Sexual Minorities from Plato to the Enlightenment", "school": "YC", @@ -318977,7 +652851,7 @@ "11:35", "12:25", "WLH 210 - William L. Harkness Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -318999,7 +652873,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -319037,7 +652939,7 @@ "15:30", "17:20", "HQ C65 - Humanities Quadrangle C65", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -319051,10 +652953,103 @@ "classnotes": "Interested students must write instructor no more than 50 words saying why they want to take the course.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88566\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88566/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998640239238739, + 0.9987898468971252, + 0.9989192485809326, + 0.9988328814506531, + 0.9989297986030579 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.997244119644165, + 0.9988112449645996, + 0.9989287257194519, + 0.9988831877708435 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.25, + "POSITIVE": 0.75 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9844126105308533, + 0.9989004135131836, + 0.9985396862030029, + 0.9987534284591675 + ], + "sentiment_counts": { + "NEGATIVE": 1, + "POSITIVE": 3 + }, + "sentiment_distribution": { + "NEGATIVE": 0.25, + "POSITIVE": 0.75 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "final_label": "POSITIVE", + "final_count": 11, + "final_proportion": 0.8461538461538461, + "final_counts": { + "POSITIVE": 11, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.8461538461538461, + "NEGATIVE": 0.15384615384615385 + } + } }, { "season_code": "202303", @@ -319092,7 +653087,7 @@ "15:30", "17:20", "WLH 203 - William L. Harkness Hall 203", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -319109,10 +653104,95 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92671\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92671/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988435506820679, + 0.9989198446273804, + 0.9969058632850647 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989120960235596, + 0.9989336133003235, + 0.998914361000061 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988526105880737, + 0.9989383816719055, + 0.9989344477653503, + 0.9988656044006348 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 10, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 10 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -319150,7 +653230,7 @@ "11:35", "12:50", "GR109 ROSENFELD - 109 Grove Street ROSENFELD", - "https:\/\/map.yale.edu\/?id=1910#!m\/560109" + "https://map.yale.edu/?id=1910#!m/560109" ] ], "Wednesday": [ @@ -319158,7 +653238,7 @@ "11:35", "12:50", "GR109 ROSENFELD - 109 Grove Street ROSENFELD", - "https:\/\/map.yale.edu\/?id=1910#!m\/560109" + "https://map.yale.edu/?id=1910#!m/560109" ] ] }, @@ -319174,10 +653254,153 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88694\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/88694/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984546899795532, + 0.9988559484481812, + 0.9984664916992188, + 0.9986365437507629, + 0.9989056587219238, + 0.9995039701461792, + 0.9989011287689209, + 0.9989194869995117, + 0.9990578293800354, + 0.9988853335380554, + 0.9989250302314758 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.8181818181818182, + "NEGATIVE": 0.18181818181818182 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8181818181818182 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989168643951416, + 0.998878538608551, + 0.998907208442688, + 0.999508261680603, + 0.9989256262779236, + 0.9995015859603882, + 0.997890055179596, + 0.9989232420921326, + 0.9987986087799072, + 0.9986044764518738, + 0.9989200830459595, + 0.9989307522773743 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.75, + "NEGATIVE": 0.25 + }, + "sentiment_overall": [ + "POSITIVE", + 0.75 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989331364631653, + 0.9989238381385803, + 0.998796820640564, + 0.9989233613014221, + 0.9981513619422913, + 0.9987627267837524, + 0.9985490441322327, + 0.9995026588439941, + 0.9989068508148193, + 0.9989093542098999, + 0.9995049238204956, + 0.9986125230789185, + 0.9989325404167175, + 0.9988505840301514, + 0.9974592328071594 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "final_label": "POSITIVE", + "final_count": 30, + "final_proportion": 0.7894736842105263, + "final_counts": { + "POSITIVE": 30, + "NEGATIVE": 8 + }, + "final_distribution": { + "POSITIVE": 0.7894736842105263, + "NEGATIVE": 0.21052631578947367 + } + } }, { "season_code": "202303", @@ -319217,7 +653440,7 @@ "13:30", "15:20", "RKZ 05 - Rosenkranz Hall 05", - "https:\/\/map.yale.edu\/?id=1910#!m\/559923" + "https://map.yale.edu/?id=1910#!m/559923" ] ] }, @@ -319236,10 +653459,121 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88792\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88792/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989345669746399, + 0.9988642930984497, + 0.9987000226974487, + 0.9989055395126343, + 0.9989038705825806, + 0.998897910118103 + ], + "sentiment_counts": { + "POSITIVE": 6, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998870313167572, + 0.9988762736320496, + 0.9985916018486023, + 0.9988872408866882, + 0.9988853335380554, + 0.998897910118103, + 0.9988659620285034 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988710284233093, + 0.9989325404167175, + 0.9898777604103088, + 0.998649537563324, + 0.9989272952079773, + 0.9988763928413391, + 0.9989022016525269, + 0.9989399313926697, + 0.999453604221344 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.7777777777777778, + "NEGATIVE": 0.2222222222222222 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7777777777777778 + ] + }, + "final_label": "POSITIVE", + "final_count": 20, + "final_proportion": 0.9090909090909091, + "final_counts": { + "POSITIVE": 20, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.9090909090909091, + "NEGATIVE": 0.09090909090909091 + } + } }, { "season_code": "202303", @@ -319277,7 +653611,7 @@ "9:25", "11:15", "HQ 213 - Humanities Quadrangle 213", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -319292,10 +653626,109 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89367\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89367/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989332556724548, + 0.9987762570381165, + 0.998852014541626, + 0.9988393187522888 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989244341850281, + 0.998875081539154, + 0.9983957409858704, + 0.9984716773033142, + 0.9988858103752136 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8, + "NEGATIVE": 0.2 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9986039996147156, + 0.9952379465103149, + 0.9989194869995117, + 0.9989394545555115, + 0.9989286065101624, + 0.998891294002533, + 0.9989350438117981 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 15, + "final_proportion": 0.9375, + "final_counts": { + "POSITIVE": 15, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9375, + "NEGATIVE": 0.0625 + } + } }, { "season_code": "202303", @@ -319333,7 +653766,7 @@ "14:30", "15:45", "HQ C07 - Humanities Quadrangle C07", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ], "Thursday": [ @@ -319341,7 +653774,7 @@ "14:30", "15:45", "HQ C07 - Humanities Quadrangle C07", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -319357,10 +653790,89 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88569\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88569/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989191293716431 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989339709281921, + 0.998927891254425 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989162683486938, + 0.9989356398582458, + 0.9989162683486938, + 0.9989197254180908 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 7 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -319401,7 +653913,7 @@ "15:30", "17:20", "WLH 202 - William L. Harkness Hall 202", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -319418,15 +653930,118 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90678\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90678/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "", - "description": "Was Sappho a feminist? This course tries to answer that question by analyzing how women\u2019s voices have been appropriated by the literary and cultural canon of the west\u2013and how in turn women writers and readers have reappropriated those voices. Students read a generous amount of literary (and in some cases, musical) works, along with a variety of contemporary theoretical approaches so as to engage in conversation about authorship, classical reception, and materiality. Following an introduction to Greek and Roman texts key for problematic female figures such as sirens and sibyls, we turn to two later historical moments to explore how women artists have both broken out of and used the western canon, redefining genre, content, and style in literary creation writ large. How did Renaissance women such as Laura Cereta, Gaspara Stampa, and Sor Juana In\u00e9s de la Cruz fashion themselves as authors in light of the classical sources they had at hand? And once we arrive in the 20th and 21st centuries, how do Sibilla Aleramo, Elsa Morante, Anna Maria Ortese, and Elena Ferrante forge a new, feminist writing via classical, queer and\/or animal viewpoints?", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998809814453125, + 0.998860239982605, + 0.9986899495124817, + 0.9989328980445862, + 0.9988508224487305, + 0.9988728165626526, + 0.9989239573478699 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987543821334839, + 0.9989011287689209, + 0.9760379791259766, + 0.9978674650192261, + 0.9987699389457703 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9983333945274353, + 0.9989117383956909, + 0.998925507068634, + 0.9988470077514648, + 0.998916506767273, + 0.9988755583763123, + 0.9981794357299805 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 19, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 19 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } + }, + { + "season_code": "202303", + "requirements": "", + "description": "Was Sappho a feminist? This course tries to answer that question by analyzing how women\u2019s voices have been appropriated by the literary and cultural canon of the west\u2013and how in turn women writers and readers have reappropriated those voices. Students read a generous amount of literary (and in some cases, musical) works, along with a variety of contemporary theoretical approaches so as to engage in conversation about authorship, classical reception, and materiality. Following an introduction to Greek and Roman texts key for problematic female figures such as sirens and sibyls, we turn to two later historical moments to explore how women artists have both broken out of and used the western canon, redefining genre, content, and style in literary creation writ large. How did Renaissance women such as Laura Cereta, Gaspara Stampa, and Sor Juana In\u00e9s de la Cruz fashion themselves as authors in light of the classical sources they had at hand? And once we arrive in the 20th and 21st centuries, how do Sibilla Aleramo, Elsa Morante, Anna Maria Ortese, and Elena Ferrante forge a new, feminist writing via classical, queer and/or animal viewpoints?", "short_title": "Dangerous Women: Sirens, Siby...", "title": "Dangerous Women: Sirens, Sibyls, Poets and Singers from Sappho through Elena Ferrante", "school": "YC", @@ -319461,7 +654076,7 @@ "11:35", "12:50", "WLH 112 - William L. Harkness Hall 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -319469,7 +654084,7 @@ "11:35", "12:50", "WLH 112 - William L. Harkness Hall 112", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -319485,10 +654100,133 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89644\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89644/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989196062088013, + 0.998461127281189, + 0.9989305138587952, + 0.9987473487854004, + 0.9988574981689453, + 0.9988310933113098, + 0.9987288117408752, + 0.9987872242927551 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9984928369522095, + 0.9987698197364807, + 0.999487042427063, + 0.9993746876716614, + 0.9989004135131836, + 0.993488073348999, + 0.9987336993217468, + 0.9982598423957825, + 0.9989217519760132, + 0.998910665512085, + 0.9988431930541992 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 3 + }, + "sentiment_distribution": { + "POSITIVE": 0.7272727272727273, + "NEGATIVE": 0.2727272727272727 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7272727272727273 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9953521490097046, + 0.9983676075935364, + 0.9995096921920776, + 0.998089611530304, + 0.9988279938697815, + 0.9987051486968994, + 0.9988396763801575, + 0.9985581040382385, + 0.9989101886749268 + ], + "sentiment_counts": { + "POSITIVE": 7, + "NEGATIVE": 2 + }, + "sentiment_distribution": { + "POSITIVE": 0.7777777777777778, + "NEGATIVE": 0.2222222222222222 + }, + "sentiment_overall": [ + "POSITIVE", + 0.7777777777777778 + ] + }, + "final_label": "POSITIVE", + "final_count": 23, + "final_proportion": 0.8214285714285714, + "final_counts": { + "POSITIVE": 23, + "NEGATIVE": 5 + }, + "final_distribution": { + "POSITIVE": 0.8214285714285714, + "NEGATIVE": 0.17857142857142858 + } + } }, { "season_code": "202303", @@ -319527,7 +654265,7 @@ "9:25", "11:15", "WLH 014 - William L. Harkness Hall 014", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -319545,10 +654283,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88176\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88176/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -319585,7 +654351,7 @@ "17:30", "19:00", "WLH 309 - William L. Harkness Hall 309", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -319603,10 +654369,93 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88915\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88915/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988866448402405, + 0.9985765218734741 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989062547683716, + 0.9995135068893433, + 0.9986380934715271 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988839030265808, + 0.9945870637893677, + 0.9985461235046387 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 0.875, + "final_counts": { + "POSITIVE": 7, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.875, + "NEGATIVE": 0.125 + } + } }, { "season_code": "202303", @@ -319648,7 +654497,7 @@ "13:30", "15:20", "WLH 115 - William L. Harkness Hall 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -319666,15 +654515,100 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88185\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88185/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false - }, - { - "season_code": "202303", - "requirements": "", - "description": "Exploration of sex, science fiction, and the\u00a0downtown scene in New York City, through the archives and writings of Samuel R. Delany. Particular attention to the intersections of music, nightlife, avant-garde performance, literature, and visual art, within the context of social movements from feminism, gay liberation, and HIV\/AIDs activism.", + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989055395126343, + 0.9988481998443604, + 0.9988681077957153 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998902440071106, + 0.9825111031532288, + 0.9989070892333984 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989234805107117, + 0.9978604912757874, + 0.9989123344421387 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 0.7777777777777778, + "final_counts": { + "POSITIVE": 7, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.7777777777777778, + "NEGATIVE": 0.2222222222222222 + } + } + }, + { + "season_code": "202303", + "requirements": "", + "description": "Exploration of sex, science fiction, and the\u00a0downtown scene in New York City, through the archives and writings of Samuel R. Delany. Particular attention to the intersections of music, nightlife, avant-garde performance, literature, and visual art, within the context of social movements from feminism, gay liberation, and HIV/AIDs activism.", "short_title": "Samuel Delany and His Worlds", "title": "Samuel Delany and His Worlds", "school": "YC", @@ -319709,7 +654643,7 @@ "15:30", "17:20", "HQ 123 - Humanities Quadrangle 123", - "https:\/\/map.yale.edu\/?id=1910#!m\/563690" + "https://map.yale.edu/?id=1910#!m/563690" ] ] }, @@ -319726,10 +654660,38 @@ "classnotes": "If you are interested in enrolling in this class, send a short email from your Yale account to tavia.nyongo@yale.edu giving your year, major, and a couple of sentences about what background and interests would enable you to contribute to the seminar discussion.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92366\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/92366/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -319770,7 +654732,7 @@ "13:30", "15:20", "WLH 115 - William L. Harkness Hall 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -319784,10 +654746,89 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89803\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89803/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989172220230103, + 0.9989120960235596 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989364743232727, + 0.9985082745552063, + 0.9988952279090881 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998925507068634, + 0.9989069700241089 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 7 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -319824,7 +654865,7 @@ "15:30", "17:20", "WLH 006 - William L. Harkness Hall 006", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -319838,10 +654879,81 @@ "classnotes": "Interested students must write instructor no more than 50 words saying why they want to take the course.", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88572\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88572/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989294409751892 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988266825675964 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989053010940552 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 3, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 3 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -319878,7 +654990,7 @@ "13:30", "15:20", "CO493 102 - 493 College Street 102", - "https:\/\/map.yale.edu\/?id=1910#!m\/560001" + "https://map.yale.edu/?id=1910#!m/560001" ] ] }, @@ -319890,10 +655002,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88575\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88575/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -319933,10 +655073,38 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89851\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89851/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -319973,26 +655141,54 @@ "9:25", "11:15", "WLH 210 - William L. Harkness Hall 210", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, "skills": [], "areas": [], "flags": [ - "PH: Global Health, Psychosocial\/Social and behavioral\/Anthropology", + "PH: Global Health, Psychosocial/Social and behavioral/Anthropology", "YC GLHTH: Hist Approaches", "YC GLHTH: Perf, Rep & Health" ], "regnotes": "", "rp_attr": "", - "classnotes": "Course requires application (posted end of July), please visit - https:\/\/jackson.yale.edu\/academics\/registrar\/ application closes on August 25.", + "classnotes": "Course requires application (posted end of July), please visit - https://jackson.yale.edu/academics/registrar/ application closes on August 25.", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/92346\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/92346/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -320029,7 +655225,7 @@ "13:30", "15:20", "WLH 009 - William L. Harkness Hall 009", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -320043,10 +655239,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88578\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88578/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -320088,7 +655312,7 @@ "13:30", "15:20", "WLH 115 - William L. Harkness Hall 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -320100,15 +655324,100 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88185\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88185/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989055395126343, + 0.9988481998443604, + 0.9988681077957153 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998902440071106, + 0.9825111031532288, + 0.9989070892333984 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "NEGATIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989234805107117, + 0.9978604912757874, + 0.9989123344421387 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.6666666666666666, + "NEGATIVE": 0.3333333333333333 + }, + "sentiment_overall": [ + "POSITIVE", + 0.6666666666666666 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 0.7777777777777778, + "final_counts": { + "POSITIVE": 7, + "NEGATIVE": 2 + }, + "final_distribution": { + "POSITIVE": 0.7777777777777778, + "NEGATIVE": 0.2222222222222222 + } + } }, { "season_code": "202303", "requirements": "Prerequisite: at least two graduate-level seminars in religion, philosophy, or WGSS, or permission of the instructor.", - "description": "In the United States, queer theory emerged out of the Reagan years, the devastation of the HIV\/AIDS pandemic, and the combined impacts of neoliberalism and gentrification (politically, geographically, and socially) on queer communities. In spring 2022, we encounter each other in the midst of two pandemics: COVID-19 and the one that is not over. This course thinks and reads queer theology with attention to the many challenges highlighted by the two pandemics, HIV\/AIDS and COVID-19, focusing on how flesh is thought and represented. Readings take up questions of ethics and moralization; stigma and fear of the other; togetherness and the risk of difference; pleasure, wisdom, foolishness, and loss; negativity, sodomy, and divine violence; race (especially anti-blackness) and gender; and the genres of queer theological writings.", + "description": "In the United States, queer theory emerged out of the Reagan years, the devastation of the HIV/AIDS pandemic, and the combined impacts of neoliberalism and gentrification (politically, geographically, and socially) on queer communities. In spring 2022, we encounter each other in the midst of two pandemics: COVID-19 and the one that is not over. This course thinks and reads queer theology with attention to the many challenges highlighted by the two pandemics, HIV/AIDS and COVID-19, focusing on how flesh is thought and represented. Readings take up questions of ethics and moralization; stigma and fear of the other; togetherness and the risk of difference; pleasure, wisdom, foolishness, and loss; negativity, sodomy, and divine violence; race (especially anti-blackness) and gender; and the genres of queer theological writings.", "short_title": "Queer Theology", "title": "Queer Theology", "school": "GS", @@ -320141,7 +655450,7 @@ "13:30", "15:20", "SDQ JE-DINING - Sterling Divinity Quadrangle JE-DINING", - "https:\/\/map.yale.edu\/?id=1910#!m\/560096" + "https://map.yale.edu/?id=1910#!m/560096" ] ] }, @@ -320153,10 +655462,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90927\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90927/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -320207,15 +655544,150 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88616\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88616/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989205598831177, + 0.9987492561340332, + 0.9987543821334839, + 0.9988629817962646, + 0.9989342093467712, + 0.9989203214645386, + 0.9988282322883606, + 0.9989063739776611 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989332556724548, + 0.9989301562309265, + 0.998849630355835, + 0.9989243149757385, + 0.9985931515693665, + 0.9989303946495056, + 0.9981458187103271, + 0.9989251494407654, + 0.9988266825675964, + 0.9988909363746643, + 0.9989258646965027, + 0.9989383816719055, + 0.9984995126724243 + ], + "sentiment_counts": { + "POSITIVE": 12, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.9230769230769231, + "NEGATIVE": 0.07692307692307693 + }, + "sentiment_overall": [ + "POSITIVE", + 0.9230769230769231 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989124536514282, + 0.9989272952079773, + 0.9964099526405334, + 0.9988825917243958, + 0.9988831877708435, + 0.9989252686500549, + 0.9783626794815063, + 0.9988290667533875, + 0.9989207983016968, + 0.9989099502563477, + 0.997117280960083, + 0.9988574981689453, + 0.997117280960083 + ], + "sentiment_counts": { + "POSITIVE": 13, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 33, + "final_proportion": 0.9705882352941176, + "final_counts": { + "POSITIVE": 33, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9705882352941176, + "NEGATIVE": 0.029411764705882353 + } + } }, { "season_code": "202303", "requirements": "Instructor permission required.", - "description": "This graduate-level course presents students with the opportunity to develop a thorough, extensive, and deep (though still not exhaustive!) understanding of the oeuvre of Michel Foucault, and his impact on late-twentieth-century criticism and intellectual history in the United States. Non-francophone and\/or U.S. American scholars, as Lynne Huffer has argued, have engaged Foucault\u2019s work unevenly and frequently in a piecemeal way, due to a combination of the overemphasis on The History of Sexuality, Vol 1 (to the exclusion of most of his other major works), and the lack of availability of English translations of most of his writings until the early twenty-first century. This course seeks to correct that trend and to re-introduce Foucault\u2019s works to a generation of graduate students who, on the whole, do not have extensive experience with his oeuvre. In this course, we read almost all of Foucault\u2019s published writings that have been translated into English (which is almost all of them, at this point). We read all of the monographs, and all of the Coll\u00e8ge de France lectures, in chronological order. This lightens the reading load; we read a book per week, but the lectures are shorter and generally less dense than the monographs. [The benefit of a single author course is that the more time one spends reading Foucault\u2019s work, the easier reading his work becomes.] We read as many of the essays he published in popular and more widely-circulated media as we can. The goal of the course is to give students both breadth and depth in their understanding of Foucault and his works, and to be able to situate his thinking in relation to the intellectual, social, and political histories of the twentieth and twenty-first centuries. Alongside Foucault himself, we read Foucault\u2019s mentors, interlocutors, and inheritors (Heidegger, Marx, Blanchot, Canguilhem, Derrida, Barthes, Althusser, Bersani, Hartman, Angela Davis, etc); his critics (Mbembe, Weheliye, Butler, Said, etc.), and scholarship that situates his thought alongside contemporary social movements, including student, Black liberation, prison abolitionist, and anti-psychiatry movements.", + "description": "This graduate-level course presents students with the opportunity to develop a thorough, extensive, and deep (though still not exhaustive!) understanding of the oeuvre of Michel Foucault, and his impact on late-twentieth-century criticism and intellectual history in the United States. Non-francophone and/or U.S. American scholars, as Lynne Huffer has argued, have engaged Foucault\u2019s work unevenly and frequently in a piecemeal way, due to a combination of the overemphasis on The History of Sexuality, Vol 1 (to the exclusion of most of his other major works), and the lack of availability of English translations of most of his writings until the early twenty-first century. This course seeks to correct that trend and to re-introduce Foucault\u2019s works to a generation of graduate students who, on the whole, do not have extensive experience with his oeuvre. In this course, we read almost all of Foucault\u2019s published writings that have been translated into English (which is almost all of them, at this point). We read all of the monographs, and all of the Coll\u00e8ge de France lectures, in chronological order. This lightens the reading load; we read a book per week, but the lectures are shorter and generally less dense than the monographs. [The benefit of a single author course is that the more time one spends reading Foucault\u2019s work, the easier reading his work becomes.] We read as many of the essays he published in popular and more widely-circulated media as we can. The goal of the course is to give students both breadth and depth in their understanding of Foucault and his works, and to be able to situate his thinking in relation to the intellectual, social, and political histories of the twentieth and twenty-first centuries. Alongside Foucault himself, we read Foucault\u2019s mentors, interlocutors, and inheritors (Heidegger, Marx, Blanchot, Canguilhem, Derrida, Barthes, Althusser, Bersani, Hartman, Angela Davis, etc); his critics (Mbembe, Weheliye, Butler, Said, etc.), and scholarship that situates his thought alongside contemporary social movements, including student, Black liberation, prison abolitionist, and anti-psychiatry movements.", "short_title": "Michel Foucault I: The Works,...", "title": "Michel Foucault I: The Works, The Interlocutors, The Critics", "school": "GS", @@ -320248,10 +655720,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88164\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88164/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -320291,7 +655791,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -320333,7 +655861,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -320374,7 +655930,7 @@ "13:30", "15:20", "WLH 115 - William L. Harkness Hall 115", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -320388,10 +655944,89 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/89803\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/89803/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989172220230103, + 0.9989120960235596 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989364743232727, + 0.9985082745552063, + 0.9988952279090881 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998925507068634, + 0.9989069700241089 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 7 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -320428,7 +656063,7 @@ "17:30", "19:00", "WLH 309 - William L. Harkness Hall 309", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -320440,10 +656075,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/88581\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/88581/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -320482,7 +656145,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -320538,7 +656229,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -320594,7 +656313,35 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -320631,7 +656378,7 @@ "10:30", "11:20", "WLH 012 - William L. Harkness Hall 012", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Tuesday": [ @@ -320639,7 +656386,7 @@ "10:30", "11:20", "WLH 012 - William L. Harkness Hall 012", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -320647,7 +656394,7 @@ "10:30", "11:20", "WLH 012 - William L. Harkness Hall 012", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -320655,7 +656402,7 @@ "10:30", "11:20", "WLH 012 - William L. Harkness Hall 012", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Friday": [ @@ -320663,7 +656410,7 @@ "10:30", "11:20", "WLH 012 - William L. Harkness Hall 012", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -320677,10 +656424,101 @@ "classnotes": "", "final_exam": "No regular final examination", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90038\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90038/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988675117492676, + 0.9988709092140198, + 0.9989150762557983, + 0.9988310933113098, + 0.9982786178588867 + ], + "sentiment_counts": { + "POSITIVE": 5, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989330172538757, + 0.9987896084785461, + 0.9989200830459595, + 0.9989350438117981 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989270567893982, + 0.9989249110221863, + 0.9989249110221863, + 0.9989394545555115 + ], + "sentiment_counts": { + "POSITIVE": 4, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 13, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 13 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -320717,7 +656555,7 @@ "9:25", "10:15", "WLH 012 - William L. Harkness Hall 012", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Tuesday": [ @@ -320725,7 +656563,7 @@ "9:25", "10:15", "WLH 012 - William L. Harkness Hall 012", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Wednesday": [ @@ -320733,7 +656571,7 @@ "9:25", "10:15", "WLH 012 - William L. Harkness Hall 012", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Thursday": [ @@ -320741,7 +656579,7 @@ "9:25", "10:15", "WLH 012 - William L. Harkness Hall 012", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ], "Friday": [ @@ -320749,7 +656587,7 @@ "9:25", "10:15", "WLH 012 - William L. Harkness Hall 012", - "https:\/\/map.yale.edu\/?id=1910#!m\/560127" + "https://map.yale.edu/?id=1910#!m/560127" ] ] }, @@ -320766,7 +656604,78 @@ "syllabus_url": "", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988873600959778 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989356398582458 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989234805107117 + ], + "sentiment_counts": { + "POSITIVE": 1, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 3, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 3 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -320804,7 +656713,7 @@ "10:30", "11:20", "WTS B31 - Watson Center 60 Sachem Street B31", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Tuesday": [ @@ -320812,7 +656721,7 @@ "10:30", "11:20", "WTS B31 - Watson Center 60 Sachem Street B31", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -320820,7 +656729,7 @@ "10:30", "11:20", "WTS B31 - Watson Center 60 Sachem Street B31", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -320828,7 +656737,7 @@ "10:30", "11:20", "WTS B31 - Watson Center 60 Sachem Street B31", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Friday": [ @@ -320836,7 +656745,7 @@ "10:30", "11:20", "WTS B31 - Watson Center 60 Sachem Street B31", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -320850,10 +656759,133 @@ "classnotes": "", "final_exam": "Friday, December 15, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90244\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/90244/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987345337867737, + 0.9981328845024109, + 0.9988358616828918, + 0.9988417029380798, + 0.9985498785972595, + 0.9988670349121094, + 0.997951328754425, + 0.9987174272537231, + 0.9820868968963623 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988839030265808, + 0.9988414645195007, + 0.99893718957901, + 0.9986013770103455, + 0.998847484588623, + 0.9988747239112854, + 0.9968695044517517, + 0.9987956285476685, + 0.9980440139770508 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988603591918945, + 0.996606707572937, + 0.998026430606842, + 0.9983124732971191, + 0.9987001419067383, + 0.9989103078842163, + 0.9988239407539368, + 0.9984245300292969, + 0.9985583424568176, + 0.9982553124427795 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 27, + "final_proportion": 0.9642857142857143, + "final_counts": { + "POSITIVE": 27, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9642857142857143, + "NEGATIVE": 0.03571428571428571 + } + } }, { "season_code": "202303", @@ -320891,7 +656923,7 @@ "9:25", "10:15", "WTS B31 - Watson Center 60 Sachem Street B31", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Tuesday": [ @@ -320899,7 +656931,7 @@ "9:25", "10:15", "WTS B31 - Watson Center 60 Sachem Street B31", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -320907,7 +656939,7 @@ "9:25", "10:15", "WTS B31 - Watson Center 60 Sachem Street B31", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -320915,7 +656947,7 @@ "9:25", "10:15", "WTS B31 - Watson Center 60 Sachem Street B31", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Friday": [ @@ -320923,7 +656955,7 @@ "9:25", "10:15", "WTS B31 - Watson Center 60 Sachem Street B31", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -320937,10 +656969,89 @@ "classnotes": "", "final_exam": "Friday, December 15, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90245\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90245/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998747706413269, + 0.9988563060760498 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989187717437744, + 0.9987329840660095 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989209175109863, + 0.9989274144172668, + 0.998868465423584 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 7 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -320978,7 +657089,7 @@ "13:00", "14:15", "WTS A39 - Watson Center 60 Sachem Street A39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -320986,7 +657097,7 @@ "13:00", "14:15", "WTS A39 - Watson Center 60 Sachem Street A39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -321000,10 +657111,38 @@ "classnotes": "", "final_exam": "Saturday, December 16, 2023 at 2pm", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90246\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/90246/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -321041,7 +657180,7 @@ "13:00", "14:15", "WTS B31 - Watson Center 60 Sachem Street B31", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -321049,7 +657188,7 @@ "13:00", "14:15", "WTS B31 - Watson Center 60 Sachem Street B31", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -321065,10 +657204,38 @@ "classnotes": "", "final_exam": "Wednesday, December 20, 2023 at 9am", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90247\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/90247/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -321106,7 +657273,7 @@ "10:30", "11:20", "WTS B31 - Watson Center 60 Sachem Street B31", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Tuesday": [ @@ -321114,7 +657281,7 @@ "10:30", "11:20", "WTS B31 - Watson Center 60 Sachem Street B31", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -321122,7 +657289,7 @@ "10:30", "11:20", "WTS B31 - Watson Center 60 Sachem Street B31", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -321130,7 +657297,7 @@ "10:30", "11:20", "WTS B31 - Watson Center 60 Sachem Street B31", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Friday": [ @@ -321138,7 +657305,7 @@ "10:30", "11:20", "WTS B31 - Watson Center 60 Sachem Street B31", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -321150,10 +657317,133 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90244\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90244/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9987345337867737, + 0.9981328845024109, + 0.9988358616828918, + 0.9988417029380798, + 0.9985498785972595, + 0.9988670349121094, + 0.997951328754425, + 0.9987174272537231, + 0.9820868968963623 + ], + "sentiment_counts": { + "POSITIVE": 9, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "NEGATIVE" + ], + "sentiment_scores": [ + 0.9988839030265808, + 0.9988414645195007, + 0.99893718957901, + 0.9986013770103455, + 0.998847484588623, + 0.9988747239112854, + 0.9968695044517517, + 0.9987956285476685, + 0.9980440139770508 + ], + "sentiment_counts": { + "POSITIVE": 8, + "NEGATIVE": 1 + }, + "sentiment_distribution": { + "POSITIVE": 0.8888888888888888, + "NEGATIVE": 0.1111111111111111 + }, + "sentiment_overall": [ + "POSITIVE", + 0.8888888888888888 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9988603591918945, + 0.996606707572937, + 0.998026430606842, + 0.9983124732971191, + 0.9987001419067383, + 0.9989103078842163, + 0.9988239407539368, + 0.9984245300292969, + 0.9985583424568176, + 0.9982553124427795 + ], + "sentiment_counts": { + "POSITIVE": 10, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 27, + "final_proportion": 0.9642857142857143, + "final_counts": { + "POSITIVE": 27, + "NEGATIVE": 1 + }, + "final_distribution": { + "POSITIVE": 0.9642857142857143, + "NEGATIVE": 0.03571428571428571 + } + } }, { "season_code": "202303", @@ -321191,7 +657481,7 @@ "9:25", "10:15", "WTS B31 - Watson Center 60 Sachem Street B31", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Tuesday": [ @@ -321199,7 +657489,7 @@ "9:25", "10:15", "WTS B31 - Watson Center 60 Sachem Street B31", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -321207,7 +657497,7 @@ "9:25", "10:15", "WTS B31 - Watson Center 60 Sachem Street B31", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -321215,7 +657505,7 @@ "9:25", "10:15", "WTS B31 - Watson Center 60 Sachem Street B31", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Friday": [ @@ -321223,7 +657513,7 @@ "9:25", "10:15", "WTS B31 - Watson Center 60 Sachem Street B31", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -321235,10 +657525,89 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90245\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90245/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.998747706413269, + 0.9988563060760498 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC403": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989187717437744, + 0.9987329840660095 + ], + "sentiment_counts": { + "POSITIVE": 2, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "YC409": { + "sentiment_labels": [ + "POSITIVE", + "POSITIVE", + "POSITIVE" + ], + "sentiment_scores": [ + 0.9989209175109863, + 0.9989274144172668, + 0.998868465423584 + ], + "sentiment_counts": { + "POSITIVE": 3, + "NEGATIVE": 0 + }, + "sentiment_distribution": { + "POSITIVE": 1.0, + "NEGATIVE": 0.0 + }, + "sentiment_overall": [ + "POSITIVE", + 1.0 + ] + }, + "final_label": "POSITIVE", + "final_count": 7, + "final_proportion": 1.0, + "final_counts": { + "POSITIVE": 7 + }, + "final_distribution": { + "POSITIVE": 1.0 + } + } }, { "season_code": "202303", @@ -321276,7 +657645,7 @@ "13:00", "14:15", "WTS A39 - Watson Center 60 Sachem Street A39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Thursday": [ @@ -321284,7 +657653,7 @@ "13:00", "14:15", "WTS A39 - Watson Center 60 Sachem Street A39", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -321296,10 +657665,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90246\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90246/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -321337,7 +657734,7 @@ "13:00", "14:15", "WTS B31 - Watson Center 60 Sachem Street B31", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ], "Wednesday": [ @@ -321345,7 +657742,7 @@ "13:00", "14:15", "WTS B31 - Watson Center 60 Sachem Street B31", - "https:\/\/map.yale.edu\/?id=1910#!m\/559919" + "https://map.yale.edu/?id=1910#!m/559919" ] ] }, @@ -321357,10 +657754,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90247\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90247/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -321398,7 +657823,7 @@ "11:35", "12:25", "LUCE B13 - Luce Hall B13", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ], "Tuesday": [ @@ -321406,7 +657831,7 @@ "11:35", "12:25", "LUCE B13 - Luce Hall B13", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ], "Wednesday": [ @@ -321414,7 +657839,7 @@ "11:35", "12:25", "LUCE B13 - Luce Hall B13", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ], "Thursday": [ @@ -321422,7 +657847,7 @@ "11:35", "12:25", "LUCE B13 - Luce Hall B13", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ], "Friday": [ @@ -321430,7 +657855,7 @@ "11:35", "12:25", "LUCE B13 - Luce Hall B13", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ] }, @@ -321444,10 +657869,38 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90039\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/90039/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -321485,7 +657938,7 @@ "9:25", "10:15", "LUCE B13 - Luce Hall B13", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ], "Tuesday": [ @@ -321493,7 +657946,7 @@ "9:25", "10:15", "LUCE B13 - Luce Hall B13", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ], "Wednesday": [ @@ -321501,7 +657954,7 @@ "9:25", "10:15", "LUCE B13 - Luce Hall B13", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ], "Thursday": [ @@ -321509,7 +657962,7 @@ "9:25", "10:15", "LUCE B13 - Luce Hall B13", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ], "Friday": [ @@ -321517,7 +657970,7 @@ "9:25", "10:15", "LUCE B13 - Luce Hall B13", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ] }, @@ -321531,10 +657984,17 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90040\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90040/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -321572,7 +658032,7 @@ "13:00", "14:15", "LUCE B13 - Luce Hall B13", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ], "Wednesday": [ @@ -321580,7 +658040,7 @@ "13:00", "14:15", "LUCE B13 - Luce Hall B13", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ] }, @@ -321594,10 +658054,38 @@ "classnotes": "", "final_exam": "HTBA", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90041\/assignments\/syllabus", - "fysem": false, - "sysem": false, - "colsem": false + "syllabus_url": "https://yale.instructure.com/courses/90041/assignments/syllabus", + "fysem": false, + "sysem": false, + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -321635,7 +658123,7 @@ "11:35", "12:25", "LUCE B13 - Luce Hall B13", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ], "Tuesday": [ @@ -321643,7 +658131,7 @@ "11:35", "12:25", "LUCE B13 - Luce Hall B13", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ], "Wednesday": [ @@ -321651,7 +658139,7 @@ "11:35", "12:25", "LUCE B13 - Luce Hall B13", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ], "Thursday": [ @@ -321659,7 +658147,7 @@ "11:35", "12:25", "LUCE B13 - Luce Hall B13", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ], "Friday": [ @@ -321667,7 +658155,7 @@ "11:35", "12:25", "LUCE B13 - Luce Hall B13", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ] }, @@ -321679,10 +658167,38 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90039\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90039/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -321720,7 +658236,7 @@ "9:25", "10:15", "LUCE B13 - Luce Hall B13", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ], "Tuesday": [ @@ -321728,7 +658244,7 @@ "9:25", "10:15", "LUCE B13 - Luce Hall B13", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ], "Wednesday": [ @@ -321736,7 +658252,7 @@ "9:25", "10:15", "LUCE B13 - Luce Hall B13", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ], "Thursday": [ @@ -321744,7 +658260,7 @@ "9:25", "10:15", "LUCE B13 - Luce Hall B13", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ], "Friday": [ @@ -321752,7 +658268,7 @@ "9:25", "10:15", "LUCE B13 - Luce Hall B13", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ] }, @@ -321764,10 +658280,17 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90040\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90040/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } }, { "season_code": "202303", @@ -321805,7 +658328,7 @@ "13:00", "14:15", "LUCE B13 - Luce Hall B13", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ], "Wednesday": [ @@ -321813,7 +658336,7 @@ "13:00", "14:15", "LUCE B13 - Luce Hall B13", - "https:\/\/map.yale.edu\/?id=1910#!m\/559960" + "https://map.yale.edu/?id=1910#!m/559960" ] ] }, @@ -321825,9 +658348,37 @@ "classnotes": "", "final_exam": "", "course_home_url": "", - "syllabus_url": "https:\/\/yale.instructure.com\/courses\/90041\/assignments\/syllabus", + "syllabus_url": "https://yale.instructure.com/courses/90041/assignments/syllabus", "fysem": false, "sysem": false, - "colsem": false + "colsem": false, + "sentiment_info": { + "YC401": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC403": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "YC409": { + "sentiment_labels": [], + "sentiment_scores": [], + "sentiment_counts": {}, + "sentiment_distribution": {}, + "sentiment_overall": "" + }, + "final_label": "", + "final_count": 0, + "final_proportion": 0.0, + "final_counts": {}, + "final_distribution": {} + } } ] \ No newline at end of file